diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml
new file mode 100644
index 0000000..b6849ce
--- /dev/null
+++ b/.github/workflows/ruff.yml
@@ -0,0 +1,21 @@
+# .github/workflows/ruff.yml
+name: Ruff Check
+
+on: [push, pull_request]
+
+jobs:
+ lint:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Install Python & Ruff
+ run: |
+ pip install ruff
+
+ - name: Lint
+ run: ruff check .
+
+ - name: Format check
+ run: ruff format --check .
+
diff --git a/.gitignore b/.gitignore
index 68bc17f..8d65512 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,19 @@
-# Byte-compiled / optimized / DLL files
+# Customized utilities log files
+lohrasb.log
+
+# macOS system files
+.DS_Store
+.AppleDouble
+.LSOverride
+
+# macOS folder attributes
+Icon?
+._*
+.Spotlight-V100
+.Trashes
+*.swp
+
+# Python bytecode
__pycache__/
*.py[cod]
*$py.class
@@ -6,155 +21,65 @@ __pycache__/
# C extensions
*.so
-# Distribution / packaging
-.Python
-build/
-develop-eggs/
-dist/
-downloads/
-eggs/
-.eggs/
-lib/
-lib64/
-parts/
-sdist/
-var/
-wheels/
-share/python-wheels/
-*.egg-info/
-.installed.cfg
-*.egg
-MANIFEST
+# Virtual environments
+.venv/
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+.python-version
-# PyInstaller
-# Usually these files are written by a python script from a template
-# before PyInstaller builds the exe, so as to inject date/other infos into it.
-*.manifest
-*.spec
+# Poetry local config
+poetry.toml
-# Installer logs
-pip-log.txt
-pip-delete-this-directory.txt
+# VS Code settings
+.vscode/
+
+# Jupyter and IPython
+.ipynb_checkpoints/
+profile_default/
+ipython_config.py
-# Unit test / coverage reports
-htmlcov/
+# Testing and coverage
+.coverage
+.cache/
+.pytest_cache/
.tox/
.nox/
-.coverage
-.coverage.*
-.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
-.pytest_cache/
-cover/
-# Translations
-*.mo
-*.pot
+# Build artifacts
+build/
+dist/
+*.egg-info/
+.eggs/
+*.egg
+MANIFEST
-# Django stuff:
+# Logs and misc
*.log
-local_settings.py
-db.sqlite3
-db.sqlite3-journal
-
-# Flask stuff:
-instance/
-.webassets-cache
-
-# Scrapy stuff:
-.scrapy
-
-# Sphinx documentation
-docs/_build/
-
-# PyBuilder
-.pybuilder/
-target/
-
-# Jupyter Notebook
-.ipynb_checkpoints
-
-# IPython
-profile_default/
-ipython_config.py
-
-# pyenv
-# For a library or package, you might want to ignore these files since the code is
-# intended to run in multiple environments; otherwise, check them in:
-# .python-version
-
-# pipenv
-# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
-# However, in case of collaboration, if having platform-specific dependencies or dependencies
-# having no cross-platform support, pipenv may install dependencies that don't work, or not
-# install all needed dependencies.
-#Pipfile.lock
-
-# poetry
-# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
-# This is especially recommended for binary packages to ensure reproducibility, and is more
-# commonly ignored for libraries.
-# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
-#poetry.lock
-
-# pdm
-# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
-#pdm.lock
-# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
-# in version control.
-# https://pdm.fming.dev/#use-with-ide
-.pdm.toml
-
-# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
-__pypackages__/
-
-# Celery stuff
-celerybeat-schedule
-celerybeat.pid
-
-# SageMath parsed files
-*.sage.py
-
-# Environments
-.env
-.venv
-env/
-venv/
-ENV/
-env.bak/
-venv.bak/
-
-# Spyder project settings
-.spyderproject
-.spyproject
-
-# Rope project settings
-.ropeproject
+*.pot
+*.mo
+*.spec
+*.pyd
+*.pyo
-# mkdocs documentation
+# Site builds
/site
-# mypy
+# Static analysis
.mypy_cache/
.dmypy.json
-dmypy.json
-
-# Pyre type checker
.pyre/
-
-# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
-# PyCharm
-# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
-# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
-# and can be added to the global gitignore or merged into this file. For a more nuclear
-# option (not recommended) you can uncomment the following to ignore the entire idea folder.
-#.idea/
+# Environment variables
+.env
diff --git a/.ruff.toml b/.ruff.toml
new file mode 100644
index 0000000..17a2c6f
--- /dev/null
+++ b/.ruff.toml
@@ -0,0 +1,14 @@
+# .ruff.toml
+
+line-length = 120
+target-version = "py310"
+
+[lint]
+select = ["E", "F", "I", "B", "UP", "SIM"]
+ignore = ["F541"]
+
+[format]
+docstring-code-format = true
+
+[lint.per-file-ignores]
+"data/make_cardio_train_pickle.py" = ["UP009"]
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..aee06d6
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,22 @@
+# hash:sha256:6b212c24ad89ce60c5ad110a4239f9ecf823f2ab367e9fff719539640ecd4b5b
+FROM registry.codeocean.com/codeocean/py-r:python3.10.12-R4.3.2-JupyterLab4.0.10-RStudiorstudio-server-2023.12.0-369-ubuntu22.04
+
+ARG DEBIAN_FRONTEND=noninteractive
+
+RUN pip3 install -U --no-cache-dir \
+ catboost==1.2.5 \
+ category-encoders==2.6.3 \
+ fasttreeshap==0.1.6 \
+ lightgbm==4.5.0 \
+ lohrasb==4.2.0 \
+ matplotlib==3.8.4 \
+ numpy==1.21.6 \
+ optuna-integration==3.6.0 \
+ pandas==1.3.5 \
+ ray==2.7.1 \
+ scikit-learn==1.0.2 \
+ seaborn \
+ shap==0.42.1 \
+ tune-sklearn==0.5.0 \
+ xgboost==2.1.1 \
+ zoish==5.0.4
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..05f86b7
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+# Makefile
+
+format:
+ ruff format .
+
+lint:
+ ruff check .
+
+check: format lint
diff --git a/README.md b/README.md
index 79d4248..1160d2c 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,129 @@
-# CAD_meta_prediction
+
+
+Meta-Prediction of Coronary Artery Disease Risk
+
-CAD Meta-Prediction is a machine learning pipeline for the meta-prediction of coronary artery disease (CAD), focusing on assessing the 10-year risk. It integrates clinical, genetic, and lifestyle data, employing advanced algorithms for accurate risk prediction. The project features a risk stratification system, model interpretability, comprehensive validation, and a user-friendly interface. It serves as a valuable tool for researchers and clinicians in understanding and managing CAD risk.
+[](https://doi.org/)
+[](https://github.com/TorkamaniLab/CAD_meta_prediction)
+[](https://github.com/TorkamaniLab/CAD_meta_prediction/blob/main/LICENSE)
+[](https://github.com/TorkamaniLab/CAD_meta_prediction/blob/main/LICENSE)
+[](https://github.com/TorkamaniLab/CAD_meta_prediction/commits)
+
+
+
+
+## Description
+
+This repository provides the core **machine learning codebase** used in our *Nature Medicine* publication:
+**“Meta-prediction of coronary artery disease risk”**
+🔗 [https://www.nature.com/articles/s41591-025-03648-0](https://www.nature.com/articles/s41591-025-03648-0)
+
+Our study introduces a novel **meta-prediction framework** that integrates genetic and non-genetic factors - unmodifiable and modifiable risk profiles - into a unified prediction system for 10-year incident CAD. This repository shares **key components of the ML pipeline**.
+
+
+
+
+### Cite us
+> Chen SF, et al. *Meta-prediction of coronary artery disease risk*. Nature Medicine. 2025. [DOI: 10.1038/s41591-025-03648-0](https://doi.org/10.1038/s41591-025-03648-0).
+
+📎 BibTeX
+
+```bibtex
+@article{chen2025metapred,
+ title={Meta-prediction of coronary artery disease risk},
+ author={Chen, Shang-Fu and Lee, Sang Eun and Sadaei, Hossein Javedani and Park, Jun-Bean and Khattab, Ahmed and Chen, Jei-Fu and Henegar, Corneliu and Wineinger, Nathan E. and Muse, Evan D. and Torkamani, Ali},
+ journal={Nature Medicine},
+ year={2025},
+ month={Apr},
+ publisher={Nature Portfolio},
+ doi={10.1038/s41591-025-03648-0},
+ url={https://www.nature.com/articles/s41591-025-03648-0}
+}
+```
+
+
+
+## Assets
+
+This codebase includes components for **training individual prediction models**, such as CAD diagnoses and biomarker estimations. A consistent pipeline used across multiple prediction tasks to enable meta-feature generation, which feeds into our final CAD risk model and trained the final model:
+
+- Compatible with tested tree-based ML models: **XGBoost**, **LightGBM**, **CatBoost**
+- Custom utilities:
+ - [`zoish`](https://github.com/TorkamaniLab/zoish): SHAP-based feature importance wrapper built on `fasttreeshap`
+ - [`lohrasb`](https://github.com/TorkamaniLab/lohrasb): Optuna-based hyperparameter tuner (TPE + Hyperband)
+
+These individual models were used to generate meta-features feeding into our final CAD risk prediction framework.
+
+
+## Environment Configuration
+
+This project requires **Python >=3.10** and uses [Poetry](https://python-poetry.org/) for dependency management. If you prefer `pip`, a `requirements.txt` is also provided.
+
+### Using Poetry
+```bash
+poetry install
+```
+
+### Using pip
+```bash
+pip install -r requirements.txt
+```
+
+### Dependencies
+Main runtime dependencies:
+```
+catboost==1.2.5
+category-encoders==2.6.3
+fasttreeshap==0.1.6
+lightgbm==4.5.0
+lohrasb==4.2.0
+matplotlib==3.8.4
+numpy==1.21.6
+optuna-integration==3.6.0
+pandas>=1.3.5
+ray==2.7.1
+scikit-learn==1.0.2
+seaborn
+shap==0.42.1
+tune-sklearn==0.5.0
+xgboost==1.7.5
+zoish==5.0.4
+```
+
+## Usage
+
+You may either run the provided notebook or invoke the command-line interface:
+
+### Option 1: Run the tutorial notebook
+A reproducible example is provided in [`Tutorial_Notebook.ipynb`](./Tutorial_Notebook.ipynb), demonstrating model training and SHAP analysis.
+
+### Option 2: Run the pipeline via CLI
+The CLI expects a `.pkl` file containing a preprocessed `pandas.DataFrame` with appropriate data types. It must include:
+- A target column matching `--y_label`
+- An ID column matching `--id_col`
+
+
+Sample Data
+
+This project uses the publicly available [Cardiovascular Disease dataset](https://www.kaggle.com/datasets/sulianova/cardiovascular-disease-dataset) as an example. The input file `data/typed_cardio_train.pkl` is generated by `data/make_cardio_train_pickle.py` and tracked with Git LFS.
+
+
+
+
+#### Example command:
+```bash
+python -u meta_prediction_estimator.py \
+ --y_label "cardio" \
+ --input_pickle_fp "data/typed_cardio_train.pkl" \
+ --id_col "id" \
+ --pkg "xgb" \
+ --estimator_type "classifier" \
+ --n_features 5 \
+ --n_trials 100
+```
+
+The pipeline will produce:
+1. A trained pipeline object (including the best estimator):
+`final_pipeline__xgb_classifier__cardio.joblib`
+1. A SHAP-based feature importance file (mean absolute SHAP values per feature):
+`shap__xgb_classifier__cardio__preselect.tsv`
diff --git a/Tutorial_Notebook.ipynb b/Tutorial_Notebook.ipynb
new file mode 100644
index 0000000..9c929d2
--- /dev/null
+++ b/Tutorial_Notebook.ipynb
@@ -0,0 +1,756 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "82af4cd9-96cb-48b6-b8c8-6598da74a25e",
+ "metadata": {},
+ "source": [
+ "# Tutorial Notebook"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "95951a04-00f8-423e-9fc5-151fe59fe814",
+ "metadata": {},
+ "source": [
+ "## 0. Setup"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "id": "f5e5754f-8cf5-4733-9711-e07681c064b6",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T09:34:38.162890Z",
+ "iopub.status.busy": "2025-04-14T09:34:38.162395Z",
+ "iopub.status.idle": "2025-04-14T09:34:38.283110Z",
+ "shell.execute_reply": "2025-04-14T09:34:38.281571Z",
+ "shell.execute_reply.started": "2025-04-14T09:34:38.162851Z"
+ }
+ },
+ "outputs": [],
+ "source": [
+ "%load_ext autoreload\n",
+ "%autoreload 2"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "id": "ca03021c-ea04-4003-bf2e-b84ceb7c25f2",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T09:34:48.877935Z",
+ "iopub.status.busy": "2025-04-14T09:34:48.877090Z",
+ "iopub.status.idle": "2025-04-14T09:34:48.978165Z",
+ "shell.execute_reply": "2025-04-14T09:34:48.977342Z",
+ "shell.execute_reply.started": "2025-04-14T09:34:48.877887Z"
+ }
+ },
+ "outputs": [],
+ "source": [
+ "import fasttreeshap\n",
+ "import matplotlib.pyplot as plt\n",
+ "import pandas as pd\n",
+ "import shap\n",
+ "\n",
+ "from src.utils import _eval_pred, _fit_pipeline, _get_X_y_idx, _set_train_test"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "id": "20f5c7f5-97f4-4058-9e4e-089b1ba9bc32",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T09:34:50.390916Z",
+ "iopub.status.busy": "2025-04-14T09:34:50.390314Z",
+ "iopub.status.idle": "2025-04-14T09:34:50.473422Z",
+ "shell.execute_reply": "2025-04-14T09:34:50.472687Z",
+ "shell.execute_reply.started": "2025-04-14T09:34:50.390839Z"
+ }
+ },
+ "outputs": [],
+ "source": [
+ "y_label = \"cardio\"\n",
+ "id_col = \"id\"\n",
+ "trainer = (\"xgb\", \"classifier\")\n",
+ "n_features = 5\n",
+ "n_trials = 100"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "id": "ba548b09-7631-4854-af28-e3189403988d",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T09:34:51.107892Z",
+ "iopub.status.busy": "2025-04-14T09:34:51.107287Z",
+ "iopub.status.idle": "2025-04-14T09:34:51.323275Z",
+ "shell.execute_reply": "2025-04-14T09:34:51.321923Z",
+ "shell.execute_reply.started": "2025-04-14T09:34:51.107847Z"
+ }
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " id \n",
+ " age \n",
+ " gender \n",
+ " height \n",
+ " weight \n",
+ " ap_hi \n",
+ " ap_lo \n",
+ " cholesterol \n",
+ " gluc \n",
+ " smoke \n",
+ " alco \n",
+ " active \n",
+ " cardio \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 0 \n",
+ " 18393 \n",
+ " 2 \n",
+ " 168 \n",
+ " 62.0 \n",
+ " 110 \n",
+ " 80 \n",
+ " 1 \n",
+ " 1 \n",
+ " 0 \n",
+ " 0 \n",
+ " 1 \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 1 \n",
+ " 20228 \n",
+ " 1 \n",
+ " 156 \n",
+ " 85.0 \n",
+ " 140 \n",
+ " 90 \n",
+ " 3 \n",
+ " 1 \n",
+ " 0 \n",
+ " 0 \n",
+ " 1 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 2 \n",
+ " 18857 \n",
+ " 1 \n",
+ " 165 \n",
+ " 64.0 \n",
+ " 130 \n",
+ " 70 \n",
+ " 3 \n",
+ " 1 \n",
+ " 0 \n",
+ " 0 \n",
+ " 0 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " 3 \n",
+ " 17623 \n",
+ " 2 \n",
+ " 169 \n",
+ " 82.0 \n",
+ " 150 \n",
+ " 100 \n",
+ " 1 \n",
+ " 1 \n",
+ " 0 \n",
+ " 0 \n",
+ " 1 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " 4 \n",
+ " 17474 \n",
+ " 1 \n",
+ " 156 \n",
+ " 56.0 \n",
+ " 100 \n",
+ " 60 \n",
+ " 1 \n",
+ " 1 \n",
+ " 0 \n",
+ " 0 \n",
+ " 0 \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id age gender height weight ap_hi ap_lo cholesterol gluc smoke alco \\\n",
+ "0 0 18393 2 168 62.0 110 80 1 1 0 0 \n",
+ "1 1 20228 1 156 85.0 140 90 3 1 0 0 \n",
+ "2 2 18857 1 165 64.0 130 70 3 1 0 0 \n",
+ "3 3 17623 2 169 82.0 150 100 1 1 0 0 \n",
+ "4 4 17474 1 156 56.0 100 60 1 1 0 0 \n",
+ "\n",
+ " active cardio \n",
+ "0 1 0 \n",
+ "1 1 1 \n",
+ "2 0 1 \n",
+ "3 1 1 \n",
+ "4 0 0 "
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df = pd.read_csv(\"data/cardio_train.csv\", sep=\";\")\n",
+ "categorical_cols = [\"gender\", \"cholesterol\", \"gluc\", \"smoke\", \"alco\", \"active\", \"cardio\"]\n",
+ "df[categorical_cols] = df[categorical_cols].astype(\"object\")\n",
+ "df.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "275cd86f-ad93-4bd3-8b5b-271505813198",
+ "metadata": {},
+ "source": [
+ "## 1. ML pipeline execution"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "id": "5842c3ef-ee21-4fd8-b85b-08999d151737",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T09:34:52.194305Z",
+ "iopub.status.busy": "2025-04-14T09:34:52.193719Z",
+ "iopub.status.idle": "2025-04-14T09:34:52.316950Z",
+ "shell.execute_reply": "2025-04-14T09:34:52.316163Z",
+ "shell.execute_reply.started": "2025-04-14T09:34:52.194263Z"
+ }
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "input data shape: (70000, 12)\n",
+ "input outcome shape: (70000, 1)\n"
+ ]
+ }
+ ],
+ "source": [
+ "X, y, idx = _get_X_y_idx(df=df, id_col=id_col, y_label=y_label, trainer=trainer)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "id": "57410856-e664-4d1f-afa8-e1561b21b234",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T09:34:53.106601Z",
+ "iopub.status.busy": "2025-04-14T09:34:53.106004Z",
+ "iopub.status.idle": "2025-04-14T09:34:53.509942Z",
+ "shell.execute_reply": "2025-04-14T09:34:53.509201Z",
+ "shell.execute_reply.started": "2025-04-14T09:34:53.106557Z"
+ }
+ },
+ "outputs": [],
+ "source": [
+ "X_train, X_test, y_train, y_test, _, idx_test = _set_train_test(trainer, X, y, idx)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "id": "67b45d5e-be39-44a0-845f-d96eae7fd9ea",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T09:34:53.843497Z",
+ "iopub.status.busy": "2025-04-14T09:34:53.843057Z",
+ "iopub.status.idle": "2025-04-14T10:09:19.599445Z",
+ "shell.execute_reply": "2025-04-14T10:09:19.598030Z",
+ "shell.execute_reply.started": "2025-04-14T09:34:53.843459Z"
+ }
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "measure_of_accuracy = f1_score(y_true, y_pred, average='macro')\n",
+ "\n",
+ "pre-SHAP init:\n",
+ "- X_train.shape:(56000, 12)\n",
+ "- y_train.shape(56000, 1)\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "[I 2025-04-14 02:34:54,303] A new study created in memory with name: feature_selection\n",
+ "[I 2025-04-14 02:34:58,723] Trial 0 finished with value: 0.39237277234486095 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.13103143857073918, 'max_bin': 18, 'max_depth': 7, 'min_child_weight': 5, 'n_estimators': 101, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 1, 'scale_pos_weight': 17.485604649374103}. Best is trial 0 with value: 0.39237277234486095.\n",
+ "[I 2025-04-14 02:35:17,571] Trial 1 finished with value: 0.6141272396326733 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.21295346204423066, 'max_bin': 17, 'max_depth': 15, 'min_child_weight': 1, 'n_estimators': 160, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 5, 'scale_pos_weight': 12.890009117909408}. Best is trial 1 with value: 0.6141272396326733.\n",
+ "[I 2025-04-14 02:35:20,435] Trial 2 finished with value: 0.4916348062611655 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.2097761202517568, 'max_bin': 5, 'max_depth': 3, 'min_child_weight': 7, 'n_estimators': 148, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 2, 'scale_pos_weight': 5.118779399302703}. Best is trial 1 with value: 0.6141272396326733.\n",
+ "[I 2025-04-14 02:35:33,543] Trial 3 finished with value: 0.44167796263132786 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.04826665953630829, 'max_bin': 4, 'max_depth': 10, 'min_child_weight': 6, 'n_estimators': 201, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 0, 'scale_pos_weight': 15.943464579862205}. Best is trial 1 with value: 0.6141272396326733.\n",
+ "[I 2025-04-14 02:36:03,626] Trial 4 finished with value: 0.6709452020067602 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.21855431773996847, 'max_bin': 12, 'max_depth': 11, 'min_child_weight': 4, 'n_estimators': 381, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 3, 'scale_pos_weight': 2.8569973589089903}. Best is trial 4 with value: 0.6709452020067602.\n",
+ "[I 2025-04-14 02:36:16,095] Trial 5 finished with value: 0.6070954429498815 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.15270873179335853, 'max_bin': 8, 'max_depth': 6, 'min_child_weight': 8, 'n_estimators': 292, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 5, 'scale_pos_weight': 3.5053840953815008}. Best is trial 4 with value: 0.6709452020067602.\n",
+ "[I 2025-04-14 02:36:27,245] Trial 6 finished with value: 0.5498990855233392 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 0, 'learning_rate': 0.08875193773242167, 'max_bin': 7, 'max_depth': 11, 'min_child_weight': 4, 'n_estimators': 134, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 0, 'scale_pos_weight': 7.194046896082027}. Best is trial 4 with value: 0.6709452020067602.\n",
+ "[I 2025-04-14 02:36:47,886] Trial 7 finished with value: 0.5593058128844335 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.05515358833959278, 'max_bin': 15, 'max_depth': 12, 'min_child_weight': 7, 'n_estimators': 233, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 5, 'scale_pos_weight': 5.422197066627347}. Best is trial 4 with value: 0.6709452020067602.\n",
+ "[I 2025-04-14 02:36:54,328] Trial 8 finished with value: 0.6896100889762675 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.11854857706667998, 'max_bin': 12, 'max_depth': 6, 'min_child_weight': 3, 'n_estimators': 152, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 1, 'scale_pos_weight': 2.034739088094842}. Best is trial 8 with value: 0.6896100889762675.\n",
+ "[I 2025-04-14 02:37:01,141] Trial 9 finished with value: 0.5675239942564929 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.058206993267502054, 'max_bin': 10, 'max_depth': 3, 'min_child_weight': 6, 'n_estimators': 332, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 5, 'scale_pos_weight': 3.5387843031212034}. Best is trial 8 with value: 0.6896100889762675.\n",
+ "[I 2025-04-14 02:37:11,087] Trial 10 finished with value: 0.7243495473392597 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.2891443836497367, 'max_bin': 13, 'max_depth': 7, 'min_child_weight': 12, 'n_estimators': 209, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 0.6137157311801136}. Best is trial 10 with value: 0.7243495473392597.\n",
+ "[I 2025-04-14 02:37:21,072] Trial 11 finished with value: 0.7405451661545805 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.29482067319308236, 'max_bin': 13, 'max_depth': 7, 'min_child_weight': 12, 'n_estimators': 213, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 1.029757704013222}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:37:37,102] Trial 12 finished with value: 0.3334920257081647 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.29406527233485336, 'max_bin': 14, 'max_depth': 8, 'min_child_weight': 11, 'n_estimators': 251, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 0.10472650104974235}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:37:43,727] Trial 13 finished with value: 0.4097542776659833 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.29980340824103385, 'max_bin': 20, 'max_depth': 5, 'min_child_weight': 12, 'n_estimators': 211, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 9.314832089207}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:37:58,218] Trial 14 finished with value: 0.3334920257081647 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.2587733786190034, 'max_bin': 14, 'max_depth': 8, 'min_child_weight': 10, 'n_estimators': 275, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 2, 'scale_pos_weight': 0.06124061830375138}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:38:04,935] Trial 15 finished with value: 0.4408372853865777 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.2504832667707889, 'max_bin': 10, 'max_depth': 5, 'min_child_weight': 9, 'n_estimators': 205, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 4, 'scale_pos_weight': 8.732277755161672}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:38:21,855] Trial 16 finished with value: 0.47414813207177536 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.17617004198765548, 'max_bin': 17, 'max_depth': 9, 'min_child_weight': 12, 'n_estimators': 301, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 12.955058236660353}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:38:39,030] Trial 17 finished with value: 0.5911765447524543 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.2640159845400743, 'max_bin': 8, 'max_depth': 14, 'min_child_weight': 10, 'n_estimators': 183, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 4, 'scale_pos_weight': 11.431022779181633}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:38:48,011] Trial 18 finished with value: 0.434549093219834 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.014014662385747223, 'max_bin': 2, 'max_depth': 5, 'min_child_weight': 10, 'n_estimators': 243, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 2, 'scale_pos_weight': 6.334432154161513}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:39:07,799] Trial 19 finished with value: 0.7115879920873454 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 1, 'learning_rate': 0.1788340813662981, 'max_bin': 12, 'max_depth': 8, 'min_child_weight': 12, 'n_estimators': 351, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 1.7421796992346834}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:39:14,914] Trial 20 finished with value: 0.38750189255033207 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.27670002310269254, 'max_bin': 15, 'max_depth': 4, 'min_child_weight': 9, 'n_estimators': 268, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 1, 'scale_pos_weight': 19.132391083152687}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:39:36,394] Trial 21 finished with value: 0.689735467826676 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 1, 'learning_rate': 0.2397135428463856, 'max_bin': 12, 'max_depth': 8, 'min_child_weight': 12, 'n_estimators': 392, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 2.3034392792983187}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:39:55,184] Trial 22 finished with value: 0.7348272193981074 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 0, 'learning_rate': 0.18238204231848942, 'max_bin': 13, 'max_depth': 7, 'min_child_weight': 11, 'n_estimators': 338, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 0.832484649778614}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:40:10,993] Trial 23 finished with value: 0.7044401146545871 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 0, 'learning_rate': 0.23349433124494837, 'max_bin': 14, 'max_depth': 7, 'min_child_weight': 11, 'n_estimators': 327, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 0.37157020628328397}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:40:19,386] Trial 24 finished with value: 0.5287016743712776 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.18921548163869245, 'max_bin': 10, 'max_depth': 6, 'min_child_weight': 11, 'n_estimators': 224, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 4, 'scale_pos_weight': 4.852803968975351}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:40:37,533] Trial 25 finished with value: 0.5730089689821234 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.27916547915700124, 'max_bin': 16, 'max_depth': 9, 'min_child_weight': 9, 'n_estimators': 303, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 2, 'scale_pos_weight': 7.497565554864861}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:40:46,158] Trial 26 finished with value: 0.7214427489867274 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.279759013119584, 'max_bin': 13, 'max_depth': 7, 'min_child_weight': 11, 'n_estimators': 178, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.5132901657777231}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:41:06,369] Trial 27 finished with value: 0.6446589973684607 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.15236294308908144, 'max_bin': 19, 'max_depth': 10, 'min_child_weight': 8, 'n_estimators': 264, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 3, 'scale_pos_weight': 4.1024339208683305}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:41:19,112] Trial 28 finished with value: 0.7363838004207072 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.22799367869621906, 'max_bin': 9, 'max_depth': 4, 'min_child_weight': 10, 'n_estimators': 370, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 1.3331129157317816}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:41:30,492] Trial 29 finished with value: 0.38106768130981206 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.19692446054174584, 'max_bin': 9, 'max_depth': 4, 'min_child_weight': 10, 'n_estimators': 370, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 15.932561532877216}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:41:33,602] Trial 30 finished with value: 0.7273422428868102 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.11858741107142724, 'max_bin': 6, 'max_depth': 4, 'min_child_weight': 8, 'n_estimators': 103, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 5, 'scale_pos_weight': 1.536545856900006}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:41:37,677] Trial 31 finished with value: 0.7372163008635854 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.13097588927799048, 'max_bin': 6, 'max_depth': 4, 'min_child_weight': 8, 'n_estimators': 112, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 5, 'scale_pos_weight': 1.37581608304257}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:41:45,314] Trial 32 finished with value: 0.6152025427506718 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.14255760147872315, 'max_bin': 3, 'max_depth': 3, 'min_child_weight': 9, 'n_estimators': 360, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 5, 'scale_pos_weight': 2.944480603484223}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:41:49,411] Trial 33 finished with value: 0.5432957867851946 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.16806644805502802, 'max_bin': 6, 'max_depth': 5, 'min_child_weight': 11, 'n_estimators': 112, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 4.231049929415737}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:41:58,137] Trial 34 finished with value: 0.5136383514179383 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.2146716227478589, 'max_bin': 5, 'max_depth': 4, 'min_child_weight': 10, 'n_estimators': 340, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 5, 'scale_pos_weight': 5.811276429163006}. Best is trial 11 with value: 0.7405451661545805.\n",
+ "[I 2025-04-14 02:42:04,599] Trial 35 finished with value: 0.7421222992904408 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.09230363704434028, 'max_bin': 11, 'max_depth': 6, 'min_child_weight': 1, 'n_estimators': 131, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.1616839101368512}. Best is trial 35 with value: 0.7421222992904408.\n",
+ "[I 2025-04-14 02:42:10,820] Trial 36 finished with value: 0.6304269765352283 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.08935659981979346, 'max_bin': 8, 'max_depth': 6, 'min_child_weight': 2, 'n_estimators': 128, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 5, 'scale_pos_weight': 2.8676236897128167}. Best is trial 35 with value: 0.7421222992904408.\n",
+ "[I 2025-04-14 02:42:14,557] Trial 37 finished with value: 0.5137257252457444 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.08407433048301544, 'max_bin': 11, 'max_depth': 3, 'min_child_weight': 1, 'n_estimators': 174, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 4, 'scale_pos_weight': 4.500054398200298}. Best is trial 35 with value: 0.7421222992904408.\n",
+ "[I 2025-04-14 02:42:19,864] Trial 38 finished with value: 0.7313627215280392 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.11525724624714644, 'max_bin': 9, 'max_depth': 5, 'min_child_weight': 5, 'n_estimators': 133, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 5, 'scale_pos_weight': 1.4262430279676686}. Best is trial 35 with value: 0.7421222992904408.\n",
+ "[I 2025-04-14 02:42:27,468] Trial 39 finished with value: 0.46351540202545327 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.1033790599952069, 'max_bin': 7, 'max_depth': 6, 'min_child_weight': 7, 'n_estimators': 160, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 7.052914810344706}. Best is trial 35 with value: 0.7421222992904408.\n",
+ "[I 2025-04-14 02:42:30,763] Trial 40 finished with value: 0.6203505681969592 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.13388478657478833, 'max_bin': 4, 'max_depth': 4, 'min_child_weight': 5, 'n_estimators': 118, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 5, 'scale_pos_weight': 2.9521636656283796}. Best is trial 35 with value: 0.7421222992904408.\n",
+ "[I 2025-04-14 02:42:43,059] Trial 41 finished with value: 0.7439058525305812 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.16268508453984695, 'max_bin': 11, 'max_depth': 6, 'min_child_weight': 8, 'n_estimators': 315, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.063392299294632}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:42:49,249] Trial 42 finished with value: 0.6629058007916742 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.1633638326034083, 'max_bin': 11, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 147, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 2.4099911013866615}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:43:10,033] Trial 43 finished with value: 0.7376784961449765 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.20200170735643458, 'max_bin': 11, 'max_depth': 7, 'min_child_weight': 8, 'n_estimators': 399, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.1958868352919119}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:43:26,103] Trial 44 finished with value: 0.5869040391918792 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.06672226330452884, 'max_bin': 10, 'max_depth': 7, 'min_child_weight': 8, 'n_estimators': 316, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 2, 'scale_pos_weight': 3.699488288001313}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:43:33,685] Trial 45 finished with value: 0.7387952302631579 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.03864523625144625, 'max_bin': 11, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 192, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 0.8038965275968406}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:43:45,808] Trial 46 finished with value: 0.7329550045839273 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.03229110793944815, 'max_bin': 11, 'max_depth': 8, 'min_child_weight': 3, 'n_estimators': 226, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 0.7654442022696697}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:43:53,487] Trial 47 finished with value: 0.3334920257081647 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.03894015948842601, 'max_bin': 12, 'max_depth': 6, 'min_child_weight': 4, 'n_estimators': 194, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 3, 'scale_pos_weight': 0.07081766453718363}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:44:15,234] Trial 48 finished with value: 0.5969794471074923 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.010342553480359166, 'max_bin': 15, 'max_depth': 10, 'min_child_weight': 1, 'n_estimators': 290, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 2, 'scale_pos_weight': 3.561898064673101}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:44:34,208] Trial 49 finished with value: 0.5400025474357782 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.0715662531118895, 'max_bin': 12, 'max_depth': 7, 'min_child_weight': 7, 'n_estimators': 394, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 0, 'scale_pos_weight': 5.453630052420559}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:44:50,758] Trial 50 finished with value: 0.5498586351373544 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.2072457881761453, 'max_bin': 13, 'max_depth': 9, 'min_child_weight': 3, 'n_estimators': 249, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 13.57377710862719}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:44:56,355] Trial 51 finished with value: 0.6788961142672956 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.13409911146165504, 'max_bin': 11, 'max_depth': 5, 'min_child_weight': 7, 'n_estimators': 155, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 2.144759009973888}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:45:03,475] Trial 52 finished with value: 0.7372405458912035 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.09965943821289265, 'max_bin': 9, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 171, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 0.7572797865130816}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:45:11,897] Trial 53 finished with value: 0.7375525349632432 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.031226461528122834, 'max_bin': 9, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 194, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 0.8450469459441056}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:45:23,400] Trial 54 finished with value: 0.6776605256377901 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.032348832066210254, 'max_bin': 10, 'max_depth': 8, 'min_child_weight': 4, 'n_estimators': 194, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 2.3104564871299367}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:45:34,090] Trial 55 finished with value: 0.38423840937285475 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.023623363516909426, 'max_bin': 10, 'max_depth': 7, 'min_child_weight': 5, 'n_estimators': 214, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 2, 'scale_pos_weight': 11.327061363031536}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:45:56,279] Trial 56 finished with value: 0.7379554498729357 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.0547738269706729, 'max_bin': 14, 'max_depth': 14, 'min_child_weight': 6, 'n_estimators': 234, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 1, 'scale_pos_weight': 1.0284411897579895}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:46:24,139] Trial 57 finished with value: 0.6624608807038204 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.07297870793961478, 'max_bin': 14, 'max_depth': 15, 'min_child_weight': 2, 'n_estimators': 236, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 1, 'scale_pos_weight': 3.1152091329322156}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:46:46,466] Trial 58 finished with value: 0.33380952380952383 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.05430840894718866, 'max_bin': 13, 'max_depth': 13, 'min_child_weight': 7, 'n_estimators': 255, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 1, 'scale_pos_weight': 0.09673847395532242}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:47:09,608] Trial 59 finished with value: 0.6938981130361275 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.05099869472453346, 'max_bin': 16, 'max_depth': 12, 'min_child_weight': 5, 'n_estimators': 281, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 2.024877032955197}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:47:30,259] Trial 60 finished with value: 0.736499852251703 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.04364784271020409, 'max_bin': 12, 'max_depth': 14, 'min_child_weight': 6, 'n_estimators': 216, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 0, 'scale_pos_weight': 1.0819973829956304}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:47:38,062] Trial 61 finished with value: 0.7426143336239135 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.025575386164338104, 'max_bin': 14, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 188, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 1.0663071659526557}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:47:46,112] Trial 62 finished with value: 0.679299121178031 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.0017021442748272053, 'max_bin': 14, 'max_depth': 7, 'min_child_weight': 6, 'n_estimators': 143, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 2.2256070711393185}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:47:53,217] Trial 63 finished with value: 0.7384804654760527 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.06268182831284592, 'max_bin': 16, 'max_depth': 5, 'min_child_weight': 4, 'n_estimators': 203, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 0.8741014085445625}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:48:00,411] Trial 64 finished with value: 0.7279513845591108 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.023757001125945948, 'max_bin': 17, 'max_depth': 5, 'min_child_weight': 4, 'n_estimators': 201, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 2, 'scale_pos_weight': 0.6387612553493472}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:48:07,866] Trial 65 finished with value: 0.6957498521195888 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.06205071955089392, 'max_bin': 16, 'max_depth': 5, 'min_child_weight': 2, 'n_estimators': 235, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 1.926617983272921}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:48:14,883] Trial 66 finished with value: 0.6485692831376011 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.08296742105849092, 'max_bin': 18, 'max_depth': 5, 'min_child_weight': 5, 'n_estimators': 226, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 2.644976789293894}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:48:22,432] Trial 67 finished with value: 0.5479315724284306 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.013969577574511727, 'max_bin': 15, 'max_depth': 6, 'min_child_weight': 3, 'n_estimators': 182, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 1, 'scale_pos_weight': 3.7360448340755017}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:48:34,707] Trial 68 finished with value: 0.7157611762466795 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.04471698416539935, 'max_bin': 13, 'max_depth': 11, 'min_child_weight': 7, 'n_estimators': 163, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 2, 'scale_pos_weight': 1.6189330214804585}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:48:46,530] Trial 69 finished with value: 0.7148750822108865 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.07520603674746293, 'max_bin': 16, 'max_depth': 9, 'min_child_weight': 4, 'n_estimators': 203, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 0.42276701271316297}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:48:54,256] Trial 70 finished with value: 0.5140655286361538 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.059146581209679146, 'max_bin': 14, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 185, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 4.776280217439901}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:49:03,981] Trial 71 finished with value: 0.7373133787677614 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.2000379028429198, 'max_bin': 12, 'max_depth': 7, 'min_child_weight': 8, 'n_estimators': 215, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.213077336894334}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:49:16,321] Trial 72 finished with value: 0.3334920257081647 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.2449626545043656, 'max_bin': 15, 'max_depth': 7, 'min_child_weight': 9, 'n_estimators': 244, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 0.07019025191742312}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:49:30,523] Trial 73 finished with value: 0.7402522363772325 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.15811722538617348, 'max_bin': 11, 'max_depth': 8, 'min_child_weight': 5, 'n_estimators': 257, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.0166503592208773}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:49:45,123] Trial 74 finished with value: 0.7106960720360611 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.16068015861186585, 'max_bin': 13, 'max_depth': 8, 'min_child_weight': 5, 'n_estimators': 266, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 1.72308145510172}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:49:51,849] Trial 75 finished with value: 0.6123183002160801 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.09403143341179873, 'max_bin': 18, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 167, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 3.1058230000799467}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:50:02,696] Trial 76 finished with value: 0.7373351527851923 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.11085328682737822, 'max_bin': 11, 'max_depth': 8, 'min_child_weight': 5, 'n_estimators': 187, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 0.8470109960621885}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:50:12,181] Trial 77 finished with value: 0.4242609370748825 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.22502399776540946, 'max_bin': 17, 'max_depth': 5, 'min_child_weight': 6, 'n_estimators': 258, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 15.312930259082474}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:50:26,697] Trial 78 finished with value: 0.681656661557626 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 1, 'learning_rate': 0.1446720650291529, 'max_bin': 14, 'max_depth': 9, 'min_child_weight': 3, 'n_estimators': 221, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 2.5691101741930282}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:50:39,206] Trial 79 finished with value: 0.7099357444280334 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.12297815916203207, 'max_bin': 12, 'max_depth': 8, 'min_child_weight': 1, 'n_estimators': 207, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 1.8237892345364317}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:50:50,876] Trial 80 finished with value: 0.7204477133172102 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.1854479097144611, 'max_bin': 15, 'max_depth': 6, 'min_child_weight': 7, 'n_estimators': 302, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 5, 'scale_pos_weight': 0.5596008223472583}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:51:08,704] Trial 81 finished with value: 0.7374437044473438 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.16856719681744928, 'max_bin': 11, 'max_depth': 7, 'min_child_weight': 8, 'n_estimators': 386, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.1420736102169524}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:51:19,480] Trial 82 finished with value: 0.728582778950003 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.26826511737256875, 'max_bin': 10, 'max_depth': 7, 'min_child_weight': 5, 'n_estimators': 238, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.322613915333819}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:51:31,448] Trial 83 finished with value: 0.41096176390294037 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.17419863430779686, 'max_bin': 12, 'max_depth': 6, 'min_child_weight': 7, 'n_estimators': 319, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 18.086925096923252}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:51:50,594] Trial 84 finished with value: 0.642508925284238 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.15853103674979077, 'max_bin': 13, 'max_depth': 8, 'min_child_weight': 9, 'n_estimators': 351, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 3.2569354635714336}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:52:04,324] Trial 85 finished with value: 0.5527065527065527 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.021763028704660178, 'max_bin': 11, 'max_depth': 7, 'min_child_weight': 4, 'n_estimators': 273, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 4.035498487627706}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:52:12,704] Trial 86 finished with value: 0.719208786849712 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.14954502796182484, 'max_bin': 10, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 228, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 0.490071426337774}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:52:25,820] Trial 87 finished with value: 0.5140808073857872 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.19395325148009424, 'max_bin': 12, 'max_depth': 10, 'min_child_weight': 6, 'n_estimators': 195, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 5, 'scale_pos_weight': 9.562839013771887}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:52:39,254] Trial 88 finished with value: 0.6509720245269126 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.03766480621887633, 'max_bin': 11, 'max_depth': 5, 'min_child_weight': 7, 'n_estimators': 371, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 2.598917807744111}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:52:47,533] Trial 89 finished with value: 0.47550725803054844 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.2878460659081885, 'max_bin': 14, 'max_depth': 6, 'min_child_weight': 5, 'n_estimators': 210, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 0, 'scale_pos_weight': 8.016931038525838}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:52:57,057] Trial 90 finished with value: 0.7101683681778962 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.07977099218865147, 'max_bin': 9, 'max_depth': 5, 'min_child_weight': 2, 'n_estimators': 293, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 1.6999131955739268}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:53:06,213] Trial 91 finished with value: 0.7360918870727016 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.027583336058310676, 'max_bin': 8, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 189, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 0.8283436798439637}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:53:15,684] Trial 92 finished with value: 0.7399032599369868 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.006169905084081943, 'max_bin': 8, 'max_depth': 7, 'min_child_weight': 6, 'n_estimators': 180, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 1.1114561176192133}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:53:23,839] Trial 93 finished with value: 0.7367816518596779 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.0074510510903536865, 'max_bin': 7, 'max_depth': 7, 'min_child_weight': 7, 'n_estimators': 139, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 2, 'scale_pos_weight': 1.221572611515837}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:53:34,478] Trial 94 finished with value: 0.6947346535682728 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.06717921617240874, 'max_bin': 20, 'max_depth': 7, 'min_child_weight': 6, 'n_estimators': 177, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 1.9745963530052761}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:53:58,102] Trial 95 finished with value: 0.703741109906145 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.0193794627722133, 'max_bin': 11, 'max_depth': 8, 'min_child_weight': 5, 'n_estimators': 400, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 0.3366345032829303}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:54:04,799] Trial 96 finished with value: 0.7424006073772087 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.049503464302748615, 'max_bin': 10, 'max_depth': 7, 'min_child_weight': 4, 'n_estimators': 127, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 3, 'scale_pos_weight': 1.0990095105441555}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:54:12,617] Trial 97 finished with value: 0.6745165083121132 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.04829526127632755, 'max_bin': 10, 'max_depth': 8, 'min_child_weight': 4, 'n_estimators': 129, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 3, 'scale_pos_weight': 2.3615479046482655}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:54:18,988] Trial 98 finished with value: 0.7250217059486399 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.05777251839445368, 'max_bin': 7, 'max_depth': 6, 'min_child_weight': 4, 'n_estimators': 157, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 3, 'scale_pos_weight': 1.5156148062196992}. Best is trial 41 with value: 0.7439058525305812.\n",
+ "[I 2025-04-14 02:54:40,548] Trial 99 finished with value: 0.7379921505590868 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.037236960044751743, 'max_bin': 8, 'max_depth': 15, 'min_child_weight': 12, 'n_estimators': 220, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 2, 'scale_pos_weight': 0.968753749367888}. Best is trial 41 with value: 0.7439058525305812.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "pre-SHAP done - 1200.2079238891602 seconds\n",
+ "\n",
+ "SHAP init:\n",
+ "- X_train.shape:(56000, 12)\n",
+ "- y_train.shape(56000, 1)\n",
+ "SHAP done - 296.5625960826874 seconds\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "[I 2025-04-14 02:59:51,210] A new study created in memory with name: LohrasbOptimizer_xgb_classifier\n",
+ "[I 2025-04-14 02:59:53,960] Trial 0 finished with value: 0.3870430924698454 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.13103143857073918, 'max_bin': 18, 'max_depth': 7, 'min_child_weight': 5, 'n_estimators': 101, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 1, 'scale_pos_weight': 17.485604649374103}. Best is trial 0 with value: 0.3870430924698454.\n",
+ "[I 2025-04-14 03:00:03,127] Trial 1 finished with value: 0.513984168155378 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.21295346204423066, 'max_bin': 17, 'max_depth': 15, 'min_child_weight': 1, 'n_estimators': 160, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 5, 'scale_pos_weight': 12.890009117909408}. Best is trial 1 with value: 0.513984168155378.\n",
+ "[I 2025-04-14 03:00:04,992] Trial 2 finished with value: 0.48323462643907866 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.2097761202517568, 'max_bin': 5, 'max_depth': 3, 'min_child_weight': 7, 'n_estimators': 148, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 2, 'scale_pos_weight': 5.118779399302703}. Best is trial 1 with value: 0.513984168155378.\n",
+ "[I 2025-04-14 03:00:12,465] Trial 3 finished with value: 0.41121177074293713 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.04826665953630829, 'max_bin': 4, 'max_depth': 10, 'min_child_weight': 6, 'n_estimators': 201, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 0, 'scale_pos_weight': 15.943464579862205}. Best is trial 1 with value: 0.513984168155378.\n",
+ "[I 2025-04-14 03:00:26,630] Trial 4 finished with value: 0.6457610486251923 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.21855431773996847, 'max_bin': 12, 'max_depth': 11, 'min_child_weight': 4, 'n_estimators': 381, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 3, 'scale_pos_weight': 2.8569973589089903}. Best is trial 4 with value: 0.6457610486251923.\n",
+ "[I 2025-04-14 03:00:33,033] Trial 5 finished with value: 0.5799814553508216 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.15270873179335853, 'max_bin': 8, 'max_depth': 6, 'min_child_weight': 8, 'n_estimators': 292, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 5, 'scale_pos_weight': 3.5053840953815008}. Best is trial 4 with value: 0.6457610486251923.\n",
+ "[I 2025-04-14 03:00:38,359] Trial 6 finished with value: 0.5126247067936395 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 0, 'learning_rate': 0.08875193773242167, 'max_bin': 7, 'max_depth': 11, 'min_child_weight': 4, 'n_estimators': 134, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 0, 'scale_pos_weight': 7.194046896082027}. Best is trial 4 with value: 0.6457610486251923.\n",
+ "[I 2025-04-14 03:00:47,677] Trial 7 finished with value: 0.5188531440252065 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.05515358833959278, 'max_bin': 15, 'max_depth': 12, 'min_child_weight': 7, 'n_estimators': 233, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 5, 'scale_pos_weight': 5.422197066627347}. Best is trial 4 with value: 0.6457610486251923.\n",
+ "[I 2025-04-14 03:00:51,195] Trial 8 finished with value: 0.7030313982183772 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.11854857706667998, 'max_bin': 12, 'max_depth': 6, 'min_child_weight': 3, 'n_estimators': 152, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 1, 'scale_pos_weight': 2.034739088094842}. Best is trial 8 with value: 0.7030313982183772.\n",
+ "[I 2025-04-14 03:00:54,951] Trial 9 finished with value: 0.5634917491512812 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.058206993267502054, 'max_bin': 10, 'max_depth': 3, 'min_child_weight': 6, 'n_estimators': 332, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 5, 'scale_pos_weight': 3.5387843031212034}. Best is trial 8 with value: 0.7030313982183772.\n",
+ "[I 2025-04-14 03:01:00,961] Trial 10 finished with value: 0.7097663032298283 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.2891443836497367, 'max_bin': 13, 'max_depth': 7, 'min_child_weight': 12, 'n_estimators': 209, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 0.6137157311801136}. Best is trial 10 with value: 0.7097663032298283.\n",
+ "[I 2025-04-14 03:01:06,017] Trial 11 finished with value: 0.7365687271937125 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.29482067319308236, 'max_bin': 13, 'max_depth': 7, 'min_child_weight': 12, 'n_estimators': 213, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 1.029757704013222}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:01:13,608] Trial 12 finished with value: 0.3334920257081647 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.29406527233485336, 'max_bin': 14, 'max_depth': 8, 'min_child_weight': 11, 'n_estimators': 251, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 0.10472650104974235}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:01:17,080] Trial 13 finished with value: 0.39346009224542783 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.29980340824103385, 'max_bin': 20, 'max_depth': 5, 'min_child_weight': 12, 'n_estimators': 211, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 9.314832089207}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:01:24,543] Trial 14 finished with value: 0.3334920257081647 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.2587733786190034, 'max_bin': 14, 'max_depth': 8, 'min_child_weight': 10, 'n_estimators': 275, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 2, 'scale_pos_weight': 0.06124061830375138}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:01:28,446] Trial 15 finished with value: 0.4068823934055126 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.2504832667707889, 'max_bin': 10, 'max_depth': 5, 'min_child_weight': 9, 'n_estimators': 205, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 4, 'scale_pos_weight': 8.732277755161672}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:01:38,352] Trial 16 finished with value: 0.41104023929754213 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.17617004198765548, 'max_bin': 17, 'max_depth': 9, 'min_child_weight': 12, 'n_estimators': 301, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 12.955058236660353}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:01:47,976] Trial 17 finished with value: 0.48261628722947214 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.2640159845400743, 'max_bin': 8, 'max_depth': 14, 'min_child_weight': 10, 'n_estimators': 183, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 4, 'scale_pos_weight': 11.431022779181633}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:01:52,792] Trial 18 finished with value: 0.43776624128284897 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.014014662385747223, 'max_bin': 2, 'max_depth': 5, 'min_child_weight': 10, 'n_estimators': 243, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 2, 'scale_pos_weight': 6.334432154161513}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:02:02,838] Trial 19 finished with value: 0.7173751282585983 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 1, 'learning_rate': 0.1788340813662981, 'max_bin': 12, 'max_depth': 8, 'min_child_weight': 12, 'n_estimators': 351, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 1.7421796992346834}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:02:16,687] Trial 20 finished with value: 0.4961347569710661 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 0, 'learning_rate': 0.17920741942754753, 'max_bin': 10, 'max_depth': 9, 'min_child_weight': 9, 'n_estimators': 398, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 1, 'scale_pos_weight': 19.132391083152687}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:02:26,216] Trial 21 finished with value: 0.6831860232858534 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 1, 'learning_rate': 0.2397135428463856, 'max_bin': 13, 'max_depth': 7, 'min_child_weight': 12, 'n_estimators': 327, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 2.3034392792983187}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:02:34,957] Trial 22 finished with value: 0.7304950426325032 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.27204877348384154, 'max_bin': 15, 'max_depth': 8, 'min_child_weight': 11, 'n_estimators': 338, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 0.832484649778614}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:02:44,418] Trial 23 finished with value: 0.5424927783613445 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.27087584842674894, 'max_bin': 16, 'max_depth': 8, 'min_child_weight': 11, 'n_estimators': 360, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 4.277677123480968}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:02:54,370] Trial 24 finished with value: 0.7106811218016522 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 1, 'learning_rate': 0.18455457669169803, 'max_bin': 19, 'max_depth': 9, 'min_child_weight': 11, 'n_estimators': 346, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 4, 'scale_pos_weight': 1.733572838003334}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:03:05,407] Trial 25 finished with value: 0.565694899660744 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.23761313491403172, 'max_bin': 15, 'max_depth': 10, 'min_child_weight': 9, 'n_estimators': 314, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 2, 'scale_pos_weight': 7.497565554864861}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:03:11,251] Trial 26 finished with value: 0.7313524569426726 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.274592391585741, 'max_bin': 11, 'max_depth': 6, 'min_child_weight': 11, 'n_estimators': 274, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.5132901657777231}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:03:15,118] Trial 27 finished with value: 0.49927269896851195 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.2764702923447681, 'max_bin': 11, 'max_depth': 4, 'min_child_weight': 8, 'n_estimators': 274, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 4.93512813376498}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:03:20,265] Trial 28 finished with value: 0.731982980165738 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.22799367869621906, 'max_bin': 9, 'max_depth': 6, 'min_child_weight': 11, 'n_estimators': 266, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 1.4315257877736876}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:03:25,505] Trial 29 finished with value: 0.38617373582250997 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.2340069086952928, 'max_bin': 7, 'max_depth': 6, 'min_child_weight': 10, 'n_estimators': 265, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 5, 'scale_pos_weight': 15.932561532877216}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:03:27,663] Trial 30 finished with value: 0.5638968612170341 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.20526618277554157, 'max_bin': 9, 'max_depth': 6, 'min_child_weight': 11, 'n_estimators': 103, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 4, 'scale_pos_weight': 3.7994777209581843}. Best is trial 11 with value: 0.7365687271937125.\n",
+ "[I 2025-04-14 03:03:32,693] Trial 31 finished with value: 0.7369640760236575 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.276705806015854, 'max_bin': 11, 'max_depth': 7, 'min_child_weight': 11, 'n_estimators': 225, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 1.2301547010590816}. Best is trial 31 with value: 0.7369640760236575.\n",
+ "[I 2025-04-14 03:03:38,325] Trial 32 finished with value: 0.7297759118879015 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.2825637700164559, 'max_bin': 11, 'max_depth': 7, 'min_child_weight': 10, 'n_estimators': 228, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 1.5555920433501955}. Best is trial 31 with value: 0.7369640760236575.\n",
+ "[I 2025-04-14 03:03:41,130] Trial 33 finished with value: 0.6258653129583168 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.25179804046714355, 'max_bin': 6, 'max_depth': 4, 'min_child_weight': 8, 'n_estimators': 178, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 5, 'scale_pos_weight': 2.886255345587764}. Best is trial 31 with value: 0.7369640760236575.\n",
+ "[I 2025-04-14 03:03:45,398] Trial 34 finished with value: 0.4666404099187348 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.21176521428222486, 'max_bin': 9, 'max_depth': 4, 'min_child_weight': 2, 'n_estimators': 257, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 4, 'scale_pos_weight': 5.811276429163006}. Best is trial 31 with value: 0.7369640760236575.\n",
+ "[I 2025-04-14 03:03:50,623] Trial 35 finished with value: 0.7351023373276269 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.22682798087492667, 'max_bin': 13, 'max_depth': 5, 'min_child_weight': 11, 'n_estimators': 288, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 1.1616839101368512}. Best is trial 31 with value: 0.7369640760236575.\n",
+ "[I 2025-04-14 03:03:54,918] Trial 36 finished with value: 0.5129906154731039 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.22900834301957523, 'max_bin': 13, 'max_depth': 5, 'min_child_weight': 9, 'n_estimators': 227, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 2, 'scale_pos_weight': 4.556389311797756}. Best is trial 31 with value: 0.7369640760236575.\n",
+ "[I 2025-04-14 03:03:58,190] Trial 37 finished with value: 0.6277928486978412 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.19610555004816338, 'max_bin': 4, 'max_depth': 3, 'min_child_weight': 12, 'n_estimators': 294, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 3, 'scale_pos_weight': 2.880895295614895}. Best is trial 31 with value: 0.7369640760236575.\n",
+ "[I 2025-04-14 03:04:02,926] Trial 38 finished with value: 0.7371226958584289 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.14357562512053712, 'max_bin': 9, 'max_depth': 7, 'min_child_weight': 5, 'n_estimators': 186, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 0.954649553463295}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:04:06,982] Trial 39 finished with value: 0.4520955388836055 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.13450814714025686, 'max_bin': 17, 'max_depth': 7, 'min_child_weight': 5, 'n_estimators': 179, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 2, 'scale_pos_weight': 7.139297544141311}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:04:11,912] Trial 40 finished with value: 0.6447882861770482 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.10538823485135408, 'max_bin': 12, 'max_depth': 10, 'min_child_weight': 5, 'n_estimators': 134, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 2.8105467467493503}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:04:16,457] Trial 41 finished with value: 0.7366163626382729 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.15833021759900293, 'max_bin': 8, 'max_depth': 6, 'min_child_weight': 4, 'n_estimators': 222, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 1.0952269969087163}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:04:22,419] Trial 42 finished with value: 0.7361238374108996 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.1511452628224711, 'max_bin': 8, 'max_depth': 7, 'min_child_weight': 4, 'n_estimators': 220, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 0.9160480290132469}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:04:27,517] Trial 43 finished with value: 0.5943182590998546 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.14655351176541923, 'max_bin': 7, 'max_depth': 7, 'min_child_weight': 4, 'n_estimators': 193, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 0.2209625548192038}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:04:31,509] Trial 44 finished with value: 0.5634095896853962 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.160340994719275, 'max_bin': 5, 'max_depth': 7, 'min_child_weight': 3, 'n_estimators': 167, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 2, 'scale_pos_weight': 3.699488288001313}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:04:37,827] Trial 45 finished with value: 0.6846610244481337 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.08632593001866325, 'max_bin': 8, 'max_depth': 8, 'min_child_weight': 4, 'n_estimators': 217, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 3, 'scale_pos_weight': 2.2888338168011426}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:04:44,031] Trial 46 finished with value: 0.7297950727230829 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.12128315831631142, 'max_bin': 9, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 241, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 1, 'scale_pos_weight': 0.7874793749795296}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:04:52,312] Trial 47 finished with value: 0.3334920257081647 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.16494007754851497, 'max_bin': 6, 'max_depth': 15, 'min_child_weight': 7, 'n_estimators': 195, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 0.07157304315695578}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:04:58,930] Trial 48 finished with value: 0.3989760811500864 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.08993953927989604, 'max_bin': 8, 'max_depth': 8, 'min_child_weight': 3, 'n_estimators': 220, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 3, 'scale_pos_weight': 13.698969320827997}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:05:04,761] Trial 49 finished with value: 0.6277941019152592 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.14705449195982115, 'max_bin': 10, 'max_depth': 11, 'min_child_weight': 6, 'n_estimators': 164, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 0, 'scale_pos_weight': 3.082866963644852}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:05:07,692] Trial 50 finished with value: 0.38598063527893167 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.1345169940026478, 'max_bin': 6, 'max_depth': 6, 'min_child_weight': 2, 'n_estimators': 147, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 2, 'scale_pos_weight': 10.6949766723372}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:05:11,001] Trial 51 finished with value: 0.7320572097676066 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.2972070688866334, 'max_bin': 12, 'max_depth': 5, 'min_child_weight': 5, 'n_estimators': 200, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 0.8460754141670052}. Best is trial 38 with value: 0.7371226958584289.\n",
+ "[I 2025-04-14 03:05:16,824] Trial 52 finished with value: 0.7372978976337516 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.10753878059153839, 'max_bin': 11, 'max_depth': 7, 'min_child_weight': 5, 'n_estimators': 242, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 1.3001691837553009}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:05:22,512] Trial 53 finished with value: 0.6985077038980247 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.07767445051957608, 'max_bin': 10, 'max_depth': 7, 'min_child_weight': 5, 'n_estimators': 236, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 2, 'scale_pos_weight': 2.1317295680361443}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:05:28,104] Trial 54 finished with value: 0.5349119455430612 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.1095405427496539, 'max_bin': 7, 'max_depth': 7, 'min_child_weight': 4, 'n_estimators': 252, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 4.114120854135798}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:05:34,773] Trial 55 finished with value: 0.6831146884805113 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.03735098455359187, 'max_bin': 11, 'max_depth': 9, 'min_child_weight': 4, 'n_estimators': 215, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 2.298571030137123}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:05:40,287] Trial 56 finished with value: 0.7369003960920618 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.12378496188774557, 'max_bin': 8, 'max_depth': 9, 'min_child_weight': 7, 'n_estimators': 189, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 4, 'scale_pos_weight': 1.049031932763487}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:05:45,619] Trial 57 finished with value: 0.5906363224637682 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.12121966326149733, 'max_bin': 14, 'max_depth': 9, 'min_child_weight': 7, 'n_estimators': 190, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 5, 'scale_pos_weight': 3.451716767612226}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:05:53,660] Trial 58 finished with value: 0.5185889693184191 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.061762097644460084, 'max_bin': 9, 'max_depth': 13, 'min_child_weight': 6, 'n_estimators': 172, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 4, 'scale_pos_weight': 5.579690779223962}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:02,231] Trial 59 finished with value: 0.7116145833333334 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.09734877596758283, 'max_bin': 11, 'max_depth': 11, 'min_child_weight': 2, 'n_estimators': 205, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 5, 'reg_lambda': 4, 'scale_pos_weight': 0.6831587464439648}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:08,451] Trial 60 finished with value: 0.6876593163352887 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.1309191077685006, 'max_bin': 10, 'max_depth': 8, 'min_child_weight': 5, 'n_estimators': 187, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 4, 'scale_pos_weight': 2.248262470119418}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:13,983] Trial 61 finished with value: 0.736186326348984 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.16615146045163454, 'max_bin': 8, 'max_depth': 7, 'min_child_weight': 3, 'n_estimators': 225, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 3, 'scale_pos_weight': 1.1444631144493214}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:19,223] Trial 62 finished with value: 0.3334920257081647 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.16836100369012152, 'max_bin': 8, 'max_depth': 6, 'min_child_weight': 1, 'n_estimators': 241, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 3, 'scale_pos_weight': 0.05267049393339929}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:27,195] Trial 63 finished with value: 0.7339115273710799 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.14014760940303803, 'max_bin': 12, 'max_depth': 10, 'min_child_weight': 6, 'n_estimators': 229, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 4, 'scale_pos_weight': 1.429058293502454}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:32,436] Trial 64 finished with value: 0.7289307638660562 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.11030389128477573, 'max_bin': 10, 'max_depth': 8, 'min_child_weight': 3, 'n_estimators': 206, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 3, 'scale_pos_weight': 1.530457065391025}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:37,127] Trial 65 finished with value: 0.6090246918826079 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.07021025514568655, 'max_bin': 9, 'max_depth': 6, 'min_child_weight': 3, 'n_estimators': 251, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 2, 'scale_pos_weight': 3.104134307749297}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:40,959] Trial 66 finished with value: 0.6695195846592756 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 7, 'learning_rate': 0.19430676994970972, 'max_bin': 5, 'max_depth': 8, 'min_child_weight': 8, 'n_estimators': 150, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 2.499907032913329}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:47,167] Trial 67 finished with value: 0.711384159985808 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 8, 'learning_rate': 0.12549392228275102, 'max_bin': 7, 'max_depth': 9, 'min_child_weight': 3, 'n_estimators': 210, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 3, 'scale_pos_weight': 0.6547306799991637}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:51,953] Trial 68 finished with value: 0.7140519548982887 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 6, 'learning_rate': 0.28635144033167853, 'max_bin': 8, 'max_depth': 7, 'min_child_weight': 12, 'n_estimators': 224, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 0, 'reg_lambda': 5, 'scale_pos_weight': 1.856650911903064}. Best is trial 52 with value: 0.7372978976337516.\n",
+ "[I 2025-04-14 03:06:56,879] Trial 69 finished with value: 0.7379189096282495 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.0014903302387747064, 'max_bin': 2, 'max_depth': 5, 'min_child_weight': 5, 'n_estimators': 264, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.075604867635037}. Best is trial 69 with value: 0.7379189096282495.\n",
+ "[I 2025-04-14 03:07:01,296] Trial 70 finished with value: 0.4991924177993097 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.037894882855985496, 'max_bin': 3, 'max_depth': 5, 'min_child_weight': 5, 'n_estimators': 259, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 4.776280217439901}. Best is trial 69 with value: 0.7379189096282495.\n",
+ "[I 2025-04-14 03:07:04,754] Trial 71 finished with value: 0.7410711313316558 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.02344062907152425, 'max_bin': 3, 'max_depth': 4, 'min_child_weight': 4, 'n_estimators': 237, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.2415723358366075}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:09,781] Trial 72 finished with value: 0.7087602168637808 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.04633829217986245, 'max_bin': 2, 'max_depth': 4, 'min_child_weight': 4, 'n_estimators': 281, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.9304614393214563}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:13,193] Trial 73 finished with value: 0.7057676665185197 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.0168743451468435, 'max_bin': 3, 'max_depth': 4, 'min_child_weight': 5, 'n_estimators': 238, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 5, 'scale_pos_weight': 0.5557939932381591}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:18,046] Trial 74 finished with value: 0.7394642109431727 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.0011953338820124833, 'max_bin': 4, 'max_depth': 5, 'min_child_weight': 5, 'n_estimators': 246, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 1.2374585501456683}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:21,153] Trial 75 finished with value: 0.5393462390808255 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.006318265547918901, 'max_bin': 3, 'max_depth': 3, 'min_child_weight': 6, 'n_estimators': 267, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 3.5615333643097706}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:25,876] Trial 76 finished with value: 0.7375435854748126 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.023973915108853862, 'max_bin': 4, 'max_depth': 5, 'min_child_weight': 7, 'n_estimators': 264, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 1.348850131231461}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:29,983] Trial 77 finished with value: 0.6515004461090086 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.02309440687468479, 'max_bin': 4, 'max_depth': 4, 'min_child_weight': 7, 'n_estimators': 300, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 2.6086223006483804}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:34,184] Trial 78 finished with value: 0.35060521816598933 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.030549638600729623, 'max_bin': 2, 'max_depth': 5, 'min_child_weight': 7, 'n_estimators': 247, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 5, 'scale_pos_weight': 16.632914241875348}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:37,241] Trial 79 finished with value: 0.7165314412073225 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.006870217285567471, 'max_bin': 5, 'max_depth': 3, 'min_child_weight': 6, 'n_estimators': 285, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 4, 'scale_pos_weight': 1.7574486730642827}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:40,964] Trial 80 finished with value: 0.6959840205045317 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.02120462442109239, 'max_bin': 3, 'max_depth': 4, 'min_child_weight': 8, 'n_estimators': 262, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 0.4463714195171047}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:45,240] Trial 81 finished with value: 0.7366163626382729 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.012990244956265405, 'max_bin': 4, 'max_depth': 5, 'min_child_weight': 5, 'n_estimators': 233, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 1.1619246717058282}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:51,332] Trial 82 finished with value: 0.7370300215551673 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.032494918966717745, 'max_bin': 4, 'max_depth': 5, 'min_child_weight': 4, 'n_estimators': 274, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.1472553539649475}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:07:56,690] Trial 83 finished with value: 0.5766096216604691 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.0033623280120388312, 'max_bin': 2, 'max_depth': 5, 'min_child_weight': 4, 'n_estimators': 273, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 3.225499669603637}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:01,844] Trial 84 finished with value: 0.7346938775510203 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.027491635972856355, 'max_bin': 4, 'max_depth': 4, 'min_child_weight': 5, 'n_estimators': 312, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 1.5007571667237214}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:06,921] Trial 85 finished with value: 0.3334920257081647 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.05034265174837831, 'max_bin': 3, 'max_depth': 6, 'min_child_weight': 6, 'n_estimators': 256, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 4, 'reg_lambda': 5, 'scale_pos_weight': 0.05884506716710369}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:11,377] Trial 86 finished with value: 0.3331745653727078 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.001411243166700552, 'max_bin': 4, 'max_depth': 5, 'min_child_weight': 5, 'n_estimators': 270, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 19.540098480392118}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:15,274] Trial 87 finished with value: 0.5358687502539233 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.03833770258332289, 'max_bin': 5, 'max_depth': 4, 'min_child_weight': 4, 'n_estimators': 280, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 4.065309536710209}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:19,494] Trial 88 finished with value: 0.3904200097996869 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 2, 'learning_rate': 0.016196044113437988, 'max_bin': 6, 'max_depth': 5, 'min_child_weight': 7, 'n_estimators': 246, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 4, 'scale_pos_weight': 8.40675138902801}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:22,612] Trial 89 finished with value: 0.6405177023815158 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.03070337715233086, 'max_bin': 2, 'max_depth': 3, 'min_child_weight': 8, 'n_estimators': 294, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 2.7014466044111205}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:32,228] Trial 90 finished with value: 0.6974774913466375 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.0620640309853482, 'max_bin': 3, 'max_depth': 12, 'min_child_weight': 4, 'n_estimators': 255, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 2, 'reg_lambda': 5, 'scale_pos_weight': 2.0673021990371963}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:36,506] Trial 91 finished with value: 0.7376781615506989 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.15781855998523955, 'max_bin': 4, 'max_depth': 6, 'min_child_weight': 4, 'n_estimators': 231, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 1.2154858660788115}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:41,124] Trial 92 finished with value: 0.7374490637788276 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.04482619031011083, 'max_bin': 4, 'max_depth': 6, 'min_child_weight': 4, 'n_estimators': 233, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 1.1715357514929627}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:45,716] Trial 93 finished with value: 0.6961077554107893 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.04474785656790753, 'max_bin': 4, 'max_depth': 6, 'min_child_weight': 4, 'n_estimators': 234, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 0.4040951108138071}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:51,875] Trial 94 finished with value: 0.7380216713784944 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.010284632803555864, 'max_bin': 5, 'max_depth': 6, 'min_child_weight': 4, 'n_estimators': 242, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 1.2809691551851037}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:08:57,769] Trial 95 finished with value: 0.7154859514410077 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.011109138518224385, 'max_bin': 4, 'max_depth': 6, 'min_child_weight': 4, 'n_estimators': 245, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 1.8235952989758}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:09:02,772] Trial 96 finished with value: 0.7092734037667263 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.022153524256389747, 'max_bin': 5, 'max_depth': 5, 'min_child_weight': 5, 'n_estimators': 264, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 0.6310052278178637}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:09:07,569] Trial 97 finished with value: 0.6683961384881458 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 3, 'learning_rate': 0.032433943458492986, 'max_bin': 3, 'max_depth': 6, 'min_child_weight': 4, 'n_estimators': 241, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 3, 'reg_lambda': 4, 'scale_pos_weight': 2.4804591205289337}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:09:12,018] Trial 98 finished with value: 0.7396428571428572 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 4, 'learning_rate': 0.056447190543533504, 'max_bin': 6, 'max_depth': 5, 'min_child_weight': 3, 'n_estimators': 260, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 4, 'scale_pos_weight': 1.254311158279325}. Best is trial 71 with value: 0.7410711313316558.\n",
+ "[I 2025-04-14 03:09:16,047] Trial 99 finished with value: 0.36632514010155104 and parameters: {'objective': 'binary:logistic', 'eval_metric': 'auc', 'gamma': 5, 'learning_rate': 0.053578357702418124, 'max_bin': 5, 'max_depth': 5, 'min_child_weight': 3, 'n_estimators': 250, 'n_jobs': -1, 'random_state': 19920722, 'reg_alpha': 1, 'reg_lambda': 5, 'scale_pos_weight': 14.890087509730698}. Best is trial 71 with value: 0.7410711313316558.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "######################################\n",
+ "- final_pipeline__xgb_classifier__cardio.joblib saved.\n",
+ "######################################\n"
+ ]
+ }
+ ],
+ "source": [
+ "fitted_pipeline = _fit_pipeline(\n",
+ " X_train=X_train,\n",
+ " y_train=y_train,\n",
+ " trainer=trainer,\n",
+ " fname=f\"{trainer[0]}_{trainer[1]}__{y_label}\",\n",
+ " n_features=n_features,\n",
+ " n_trials=n_trials,\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "id": "8919de13-5d25-4c3e-8291-66550dbb73b9",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T10:09:19.602618Z",
+ "iopub.status.busy": "2025-04-14T10:09:19.601821Z",
+ "iopub.status.idle": "2025-04-14T10:09:19.958398Z",
+ "shell.execute_reply": "2025-04-14T10:09:19.957412Z",
+ "shell.execute_reply.started": "2025-04-14T10:09:19.602550Z"
+ }
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "F1 score : 0.7285255677224505\n",
+ "Classification report : \n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.74 0.71 0.72 7004\n",
+ " 1 0.72 0.75 0.73 6996\n",
+ "\n",
+ " accuracy 0.73 14000\n",
+ " macro avg 0.73 0.73 0.73 14000\n",
+ "weighted avg 0.73 0.73 0.73 14000\n",
+ "\n",
+ "Confusion matrix : \n",
+ "[[4955 2049]\n",
+ " [1750 5246]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "y_pred, acc = _eval_pred(pip=fitted_pipeline, trainer=trainer, X=X_test, y=y_test)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "id": "73b3b2fb-8326-4b70-b8a2-301d6f2b6832",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T10:09:24.504626Z",
+ "iopub.status.busy": "2025-04-14T10:09:24.504036Z",
+ "iopub.status.idle": "2025-04-14T10:09:24.579983Z",
+ "shell.execute_reply": "2025-04-14T10:09:24.578873Z",
+ "shell.execute_reply.started": "2025-04-14T10:09:24.504578Z"
+ }
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "array([0.5470864 , 0.27265266, 0.39682922, ..., 0.7691408 , 0.24796712,\n",
+ " 0.51386374], dtype=float32)"
+ ]
+ },
+ "execution_count": 11,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "y_pred"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "id": "078ffe8a-01dd-424c-94a2-57757059ebb9",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T10:09:24.581594Z",
+ "iopub.status.busy": "2025-04-14T10:09:24.581047Z",
+ "iopub.status.idle": "2025-04-14T10:09:24.657213Z",
+ "shell.execute_reply": "2025-04-14T10:09:24.656445Z",
+ "shell.execute_reply.started": "2025-04-14T10:09:24.581539Z"
+ }
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "0.7285255677224505"
+ ]
+ },
+ "execution_count": 12,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "acc"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b7b70505-5809-497d-999d-e46fe58ff1d7",
+ "metadata": {},
+ "source": [
+ "## 2. SHAP explanation of the best estimator"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "id": "d4de4207-a691-4fc7-98d2-2d1e3dcec3ef",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2025-04-14T10:09:19.960330Z",
+ "iopub.status.busy": "2025-04-14T10:09:19.959648Z",
+ "iopub.status.idle": "2025-04-14T10:09:24.501148Z",
+ "shell.execute_reply": "2025-04-14T10:09:24.500420Z",
+ "shell.execute_reply.started": "2025-04-14T10:09:19.960289Z"
+ }
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "No data for colormapping provided via 'c'. Parameters 'vmin', 'vmax' will be ignored\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAvMAAAFUCAYAAACp9LMcAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAC0lklEQVR4nOzdd5wcdf348dfMbN+93tMrBFIIEAkoTelCgB+hKyJKpKogovhFFBEUFaSIICJSRamCFEF6QicQaoAQ0u+S62X7Tvn8/ti9vd27veRyaXfJ+/l4LGSnfOYzs3s77/nM+/MZTSmlEEIIIYQQQgw7+raugBBCCCGEEGJwJJgXQgghhBBimJJgXgghhBBCiGFKgnkhhBBCCCGGKQnmhRBCCCGEGKYkmBdCCCGEEGKYkmBeCCGEEEKIYUqCeSGEEEIIIYYpCeaFEEIIIYQYpiSYF0IIIYQQ24XLL7+cUCi0wXkrVqxA0zQeeuihjSp/sOttSa5tXQEhhBBCCCG2prq6Ol5//XV22mmnbV2VTSbBvBBCCCGE2KF4vV723nvvbV2NzULSbIQQQgghxA6lULpMKpXiBz/4AeXl5ZSWlnLWWWdx3333oWkaK1asyFs/kUhw/vnnU1ZWRl1dHT/+8Y+xLGsr70WaBPNCCCGEEGK7YllWn5fjOOtd55JLLuHWW2/lpz/9Kffffz+O43DJJZcUXPbSSy9F13UeeOABzj77bK699lr+9re/bYld2SBJsxFCCCGEENuNaDSK2+0uOC8YDBac3tbWxi233MLPf/5zfvrTnwJw2GGHcfDBB7N69eo+y8+ePZsbb7wRgEMOOYQXX3yRhx56iLPPPnsz7cXASTAvhBDbmGma3HHHHQCcccYZ/Z6EhBBih6Udl/9ePdLvon6/n/nz5/eZ/te//pX77ruv4DoffvghiUSCo48+Om/6Mcccw/PPP99n+UMPPTTv/a677soLL7zQb522JAnmhRBCCCHEEKcNeEld15k1a1af6U888US/66xduxaAqqqqvOnV1dUFly8tLc177/F4SCQSA67j5iQ580IIIYQQYojTer02r7q6OgCam5vzpjc1NW32bW1uEswLIYQQQoghbssG89OmTcPn8/HYY4/lTX/00Uc3+7Y2N0mzEUIIIYQQQ9zmD+BzVVRUcM4553DVVVfh8/mYOXMmDz74IEuWLAHSqTtD1dCtmRBCCCGEEFvJ1Vdfzfe+9z1++9vfcsIJJ2CaZnZoypKSkm1cu/5pSim1rSshhBA7MhnNRgghNkA7Kf+9un+rbPa0007jlVdeYfny5Vtle4MhaTZCCCGEEGKI27JpNgAvv/wyr776KnvuuSeO4/DEE0/wj3/8gz/+8Y9bfNubQoJ5IYQQQggxxG35YD4UCvHEE0/wu9/9jng8zvjx4/njH//IBRdcsMW3vSkkmBdCCCGEEEPclg/m99xzT1577bUtvp3NTYJ5IYQQQggxxG35YH64kmBeCCGEEEIMcRLM90eCeSGEEEIIMaSpXsG8hPY9ZJx5IYQQQgghhikJ5oUQQgghhBimJM1GCCGEEEIMcZJY0x8J5oUQQgghxJAmOfP9k2BeCCGEEEIMcRK+90eCeSGEEEIIMcRJMN8fCeaFEEIIIcSQ1jvNRvSQYF4IIYQQQgxxEsz3R4J5IYQQQggxpKltXYEhTIJ5IYQQQggxxEnLfH8kmBdCCCGEEEOa5Mz3T4J5IYQQQggxxEkw3x8J5oUQWamkw+ov4ti2Q6TDJFDkYefdgmja+n9EI10mrz7TRme7STKmiEYcvn5yFWMmBbZSzYUQQmzPpGW+fxLMCyF444U2/nlTAzG3C8NReG07L4A/91dj2WlaqM96/7lnHS882lqwzE8XRRg5zsPF107eYvUWQgixo5Bgvj/6tq6AEGLbWv1FlLv+vJaWgB9DgaOB06sl/uZfruyz3ieLwv0G8t3qV6RY8kFks9ZXCCHEjkeh5b1ED2mZF2IH99Df1pHwuKmKJ9a73AVzPwZA8+sc+/2RvPC3hgGV/+wjjew0o2+rvhBCCCE2nQTzQuzg1q1KEEoNbNkul4E/4fDI71ejD/DXY+1qc/CVE0IIIZCc+fWRYF6IHVwqteF8u6Sm8WRVOasDPtyOw94dYaZ3RXAPoHzHcjZHNYUQQuzQJJjvj+TMC7GDU86GfyI9SnFcUyvHr23GpRQLykto8wwglFeKcZP9m6WeQgghdlySM98/aZkXQqBYf0DfPW9kMsUxja3EdX1gj9ZWisWLYtl8+0IOnFPGsd8eMfDKCiGE2AFJAN8fCeaF2EHVr4jz9P1NG71eTSonB14p2MAY9Bvy0uPtBIt1DjmudpPKEUIIsf2S1vj+STAvxDDWEXf45yKTlR+FSSxooj2p0VHs5aCvl3HuMaW4jL4/fs0NSX73o6VYZrpFXrEJ+XYbCuT1gZX85D9aJZgXQgghBkGCeSGGqXVdDrv+vgsrbFGRSHFAUqPMdihrj/P5P+Ls+0KU734twGF7+AkFDEor3ei6xnWXfIGVaVzXkBuX26tVz69lzauNGD4dK2ox5eQJFI0O4gm5cWyFXuBCTwghhippme+fBPNCDFNH3x6mI6ZQhkGZoVNqO6z0eeh0uYgaOuNaY9z6uMWDj3VSkTJJ4XDcnApi0QFlu6+X5jgoTdvkFJtcV1/4OYmow6wDSjjshGrcHumfP1gPHPI04eWxvGmf/mNFv8u7QganLZyD7pJjLoQYqiSY748E80IMUjjpMP3mBCsbTTDzA2TdBXtO8HDgaJ2bF1pEUwoSNtleoy44eieDf58RQtfTP1DtMYd/vBnnhcUmdVU6b6x0+KjBwc6sYus6fhd8fVcXf5kb4O01PfnqFYkUYUNnbCIFpHCAF0ZX4jVtdl3Xnk2neePhJroMgzLbpjcHaPV7KE6aeJ0NB/xlXWEiAT+meyADVG7YulXpwe6fe6SVhQs6ufwvO2+WcncUHcvCfPbAMhrfaesTyG+IFbG5Y5dHOeH5w0i0J6mcViYt96Kvpg7U52vRpo7G6kiidcUxZoxa7yoqZRF97DPanl6LbigCRhQ7qSjavRQr6Cd19TM4rTG6Ju1KxVVfo+Tg0VtpZ8RwIy3z/dOUUpveTCc2yuWXX84TTzzBwoULN7hsQ0MDRx99NPPmzeOss87aCrUT3RylaI4qakLp1squuMOhd8dZ2AC2aacbCXxu6EgWLkADgm4IetL/jqQg0usBSroG5V5IOhBwp9+bdrrMQuOzd/+55rSIV6RMjl/bjC8zr9XtYq3XQ7Fts7y6mANWNucVYWeqltsG2xj08sROI9itsZPp69oxHDWgK32XZWG5tkybwHm/GsvkaTvGk2NN0+SOO+4A4IwzzsC9ERdITe+38fjxLzGw4YUGSCnQNYp3ChBvSOEpdjP9u5PY+YTxGF6DaGMcl9fAV+7djBsVW0L4jkV0XfTf9Nej3Ecy4ULtNg7HhtSSDgLlCiOg4Tt2OlXnTEf39/w9q0gc1ZVEGTqJnX9CoLMZDUUKHw1MoItyyliH3x3HNPyY1ZWYM6YQ2KuOqu9PI3bT66y57G0CRAkRJUIJ7ZShMHATZxKL8JO+8DTx8Blfyvw22XhJEaKdYtahoYhrFRgqiaPrpHYeizuawC4KEfz1YcQ/6UL7bB3eveuwEoqutaB/sJxQ/VL4opWkFcB1+K4U3/8NdL8bkiZ4N08jhNh6wtqP8t4XqT9uo5oMPdIyL0RGV1IRcCs0NE56MMXDKzQwdHBs6EyCW08H5kUaOCoddKf6tnBnuQ0oygQ7SatvIA/pcrqS6XItJ70NtwFlPmgu0LqqaeDR04G/5UDEZHQ8iZEJ5BcWh3i1vCS7+Oh4IjvsZBLQNA1PzvV797znJ9YysT3KrIa2jTpmlssFjjPgjq4DKlMD0Ljn1gZOOL2G6hKD6olBNF1aZbpZcYvGRW2E6vw8cdJLmzeQh/T3TEHXZ5lAK2zxxq8+4I1ffZC/TDcDfFVuqmZWMf30SVTPLMNwG5u5UmJD2h9fxsrjn8ZJOaQv17v/XwooXO0WLkzM+hXYuBjB51QvX4WOIrrgBT6+aCoBI0HKdlFJPZWsBRQd1NFFNV5CVLOaOEEUBn6SKIJETS+tZg2s0mHVGjqfWMPaX7yFnwgT+QQPXYQppY0JdKdKmPhZyVQm8hEKF10U4aBj4cFHFC8xPCRYy05EKMJQJgYWPidGzScf4sJCx8Y+7h3C7IyGSfhum2bG5hyRamqJEiAMj39AV+BDXMQI0AIoUp4KkqNH4C7S0UI+9JCOUxpEb2zD8Bs4cYV2+j7os6egjylF83ugvhVqy8Al328xdEgwP8TV1dXx6quvYhjyw1FI0lJoGjz5hc2qMBwxHvwGJB2NSWUGKcvhmrcd/rQI1vWKjd1AscuhNeoAGhikW8a1TLt1d5qBrkGxJx3Yd9MzAX2hAL2bL+czi61nOVNBe6Z1361DuR9ces82cnkyFxRJC+IWAO+VhGjxuDiiuZ03yorzFl/t9/FkVTlHNbexIuBn51i8z+YtDZqDPvZbvvHDVAKbLW+++8LC0TRemFCD37Tp/O0aNKXSFwyGgdubfsiVpUPlniXMqDLweDUm7Rpi3JQALvf2m/Od7ExheA0W/ekTPrh1ydavwPo+ZxsS60xWP93A6qcbeqYrhTdu4/XrWLV+HFPhr/Yx89wpjD9iJFbMxh0cPqeh2LvNJFdHSDVGIKnwTSrBMR20Eg/mJ214RwbwzapF8xq4y33Z9ZTtoBk6ZlMMpRQkHfRSD4n3mnG6Enh2qSTxcTuaz8BsTtD5ny/Q6tsp3slF6WGjaXl0DeE3W4mvTOBTcRy3Qcp0oyubIlqJUoKJFxs36eC9++8g9+9Bw8KNlXlucwnNlNNKnBo0bHx0MobP+cKeQTWrqSL9OTYwiUbGUcMKKqlHATGKaKca0Aj3e7Q0SokSpxqLAGsZSW7Os46FQiPMCEy81FOXnZ8gRIIQBtXYeAAw8WVKVXhJ5JRkUkE9OnEamNCnDk2MYWcWYRDFJIhJER0UoWOipTTUFxFMkoRowMAhTCmdVFDLCgwMrBc/Jk4pDm56Lo4MQOGlBYMkqiiECvpRKIygm2TKi2Fa6GYCdqlFP/dw8Hmg3I9mgz6pHPvtelxfm4heFtjwF08AkmazPsPnV3QHpWkaXu+OcSu7I6E4/zmbF1ZDTQDGF8PTK9J3/Cv80JWCcO+YWCmwVXZ8xQs0LR0EowCT9XWYMZWiNabSQXpux7/csdNNJ90CjwZerSfAVwrCqfXvkD3A5tLcxUwHomY6PadQ3nq5P31hELOykzSlmN3RRafLwC4QcH0R8NFlGDS7DXpnoSvApeAb7y2nOLmeC4712UzBfHcpHkfx1eVN/G3PiZTFU8xo6oTMxayZueZJ6RqNr3XyAoBSGKoZTSmUpmFpGtGgh1WlftaMLGXiJD/f2U3n2Eka2kbU9YNmxX+XKcaVwP+brOHplUOeshX//lyxohOOmKAxqRQe/EzRFIO96xS3fgAtcbholsYh49Lfr6ao4oHP0hegJ+6sURVIl7m00eLT98bjRA2uKIkwxWvz/vNNNLTa7LS0gRFtUbq/1Zs0lOhWpNuKisY4biv9Pbbr47TW+OlqSvDxyc/zmt+N5XXjGBpKKTxJBwOFbjn44w6WSyNR5sU7uZigW8P6sANPwsZb4aXykBHoU0vpXB7B05rAXBYBDXSXTqo9RWjnYurmjoFVndidSVI+H80vN+EfG2TcuTsTeX4Nq27+hMSKCFrCxI+VOabdn7HK+a+WPfa5Cn+T0p+QjoOeeU6lmW4l6FO2nwR+kmiAjUaYIDYKHRsHL6DR8SqsuqM5u66GTjFNlKUacXDRyFjaGEGQCAqFvYFvho5JkA7CVFJCJy2Mo4MSHHSCRKliKSU0EqCTpcwkTCkKg3LWMpKl2XLqWIGNm6a8VvC+TFz4AZMQXmyimemVrGEkSzBwcNBpymmxz9UdyOfyEc1bUkeRwgOUEyCOSRelNGHhppUR2LhJUkQx9SQpznw+Gho6XtpxEwEcFB7SlxEd+LBQlGTK19BwUShcsgjipQs9nIQwOGg4uPHgJX2P1yL+igdeuT+zhoOfJlxEcPARpgaFgU4ic7RMNDQcPCgUFiZudLxE0DBJUgS4cLxuqCjBNbkcz62nosdTqEffJrUmhRpVjfvE3TB2rVnvZyO2LztsMB+NRrnrrrt48803WbNmDbFYjJqaGg466CDmzZuHz5duBVi4cCFnn302v/zlL4lGozzwwAOsW7eO2tpaTjzxRE4++eRB1yESifCnP/2JF154gWg0ypQpU/jRj37EtGnTssvsKDnz9WHFxL/ZJDNZK2uj8F5Oqnd9tPB6aBq4+gvQNhC4aRp4et3xyA3kUzZEe4JmUjYUedIBvWLDwXrMTKfDuHTwudIdYAfCtKGrQL48pIP9XncDlKbR5PUyoyuCx7ZJ9b6Lo2nEDZ26ZP8XH5XxDVyYbGVe22FSa5jJbel2P0U6r//tkeXsvq6DUV1x3qspYUpLmKBpZdOMUApdKbRoiiLDxScuP5+sgCdWOHx/d40bDxrYHa7bP3SY94yTDeC+PAJePMnIBvSmrfjaAzav1qfnX7IA6oLp721vz6xQXPFlxdyddPb9l017Ij39F6/Cq6cYfLImxUdnLmBqewQA57UXuf3L03hx+k4wFi5d3pT9Jg+noUSDYTMbyAMYDhR1pGiv8qGhkQp6UTmpU5amUdqcwEil2988KYUnlaBZKTzNSdymwgFiHSarv1hC5n5aweMRXtTG2n+twOeYOEBK78mPXv3XJZkLPx1snVpSKHp/L7Sc/5L3by9JDGwSeHEKrqcoJZJd3kaji1DOshoGFgqdDorRcfCTIESMToozLcB96wJQywpqWZl9P46PMXFTRpRGNhy8ObgpJ/19WsfoTBCcLj+Fl3b2QsMmRikm/ux6ZTT2KauMxg0E8wo/iey7AFHaqMRNgtF8hpb569JxqGI5axmDGsBlqguLGFXYeDFI4KMNDzG6KKaMNdSyLHvEqljNUvZA4SPCaJzsxYFDiDUY5P6WJrI1Ag82bhwMDEy8RIlRQu9vhIMnW+N0ipCfGDWZMgpdeuvEqcHAwk2CAC1EqcMh3Tqf6vUsbg0TP2vQM8MgBOhMH9mkRqxBkWiwsab8hgCNmf1Lf3cSV71A8KHTcB8zdYPHc3gZLr9+W99waODZIpqbm3nsscfYddddOfPMM7nwwguZMmUKd999Nz/+8Y/7LH///fdz1113ccQRR3DeeecRCoW45ppr+Otf/zroOpx//vk0NTVx5pln8u1vf5svvviCH/7wh0Sj/UWu268rXusJ5Lep3Jbb3sG3Ip3eAj0dUddHAS0x6EisP7e+t5SdTaHpozNZsMU+oafbjo5obkunpeQoMS2qUyYTEn0D9qH6A5DSNQ5c0YQ/0wlYA2qjSb62rIknJ9fR5XHhtxwW1Zai99pfDdCVYmQ4jsfqOe43v6doHMCwnLaj+L8FPYE8wGsN8OjnPVMeW6qygXy3QoF8t6vfUlz9lpMN5AHaEnD1Ww4P3LKSEZlAHkBXcMAnPQHbmJbODdZ5KHKZfS9Iu6dFgu68QB7AMXQ0K/9GustSFHdauHNGi+qen9vW3Z+E7s4L5LtLUFr6m1/pRAYUQOaycOEnRQkRNPruo5dUXr0MFMGcoDZbN7yZANBFmGCmZv1cxGeUFwyqm4hjkMTXa053MJmvlVq6qCKVaf3vTWHkBfIAZp8LDLAKtJp303CoohU3Pb9jKbz46SRIZzaQ72Zg4yPSu5gCFB50UpRg4yNFKVHqCNJFHUtwY+btkZcEo1maTt/Lqa+bSK9Avrve4GBk0nyKSBEgTgkWnj51TtfGlbOuQ5wqen5Vew8z0LNkMtPq7yJK/meU/3ko3AW/nxqKAE2Ag0WQBOX5F4GWQ/yX/yuw7eEtfa+r5yV67LAt8yNHjuTJJ5/ElTMSx4knnsgtt9zC7bffzkcffZTXQr5q1SoefPBBampqsst+97vf5fbbb+eYY47JTt8YU6ZM4ZJLLsm+nzBhApdccglPP/00c+fO3YS92/La2toIBoPZFKBIJIJSiqKiIgBSqRThcJiKiorsOmvXrqWurq7g+082rt/l1lEoYE/a6Q6rA+1wqOg/MIf0X2Dv2esru9AIN4A7E+CPS6Q4cW0zL1aU0uZ2UZtM8dW2zmHxs9fdJmWT3p9CJ8+gZTOhI8YX5UW0BL10ePv/Ceu9z7ZKp724k+v/7nbGTJpifU+gK7t6/v3Bmi5g4CPtxC3FF2029GrJXdkFNU19OzpXhnum2bqOYa8/yBuKUj4Df9zuMw2lcPUzUpNRYLLb3HJX+QGSBYLggdFReEmR6LW+i771NXr9kdsFWvQTeDYYoNgFTtk2LuIF90HDR5xETmBukCJC+Xq3UUgTYymjCSOzbw4aTYzEIIELhyR+cv/iDCz89PTPSeChmSoCxAseH4WWKaPvnNxyfSRw9fpdsPFj48EglW3BzuUh1edSSl/PRZODu096T6pg3bqD8e71XAxsDDCyAXp6+fV/5um7RoUuPBQGycz+973YUmt6GgF6n3vXrVtHTU1NNu1wMOfzbUEC+P4N1Ya5Lc7tdmcDecuy6OrqoqOjg7322guAjz76KG/5ww8/PC9gd7vdnHrqqdi2zYIFCwZVh1NPPTXv/axZswBYvXr1oMrbmsrLy/Ny+UOhUPYPH8Dj8fT5w8/9Men9/rSpQ/CPtHcKDqSD6c05cohhQHUA/K7MSDaD+5OM5oysUJsyOWVtM+euWsvcxlbKzcIXEwldo9k9dK7nNSBh6MQ8xnp/sl2OQ2PQy+KqYkoTJo7WuzUr3Yl2bchHKue47FwGu1Zs+LtbHvJwQK+hszXgiPE92zlpt5KNOq3sVK5x9OS+J9wjJ2h4Z9f2mf7+2J5pr+48PMfdjoZcxAJG9s8l6dXpKvWgO4qqtnjfi2UFToGDGvdvwndUqfXeRUtq7oIB4Pr46BmKttAFp1Uwt3rD+5Bu/V7/t6qdurwtOuiEKcNL347tOjY1NFFGGwE6KWMtIdo3uI30uvm/GQlCfMJs1jKedYzjU2ZTQgszeJWpvMYU3sKTUwcLD6sYxVqqaaCWBupQGEQJEaaCBKXZZRUQpwp3wc+hd137q7vqd66ZueuR7rxqZern7vdnvG/qVHfJuaUr3ETw05MLqmOh9WmZKVxXDx2Z/d7QhZWTyacvVIqWudug8NDVZ35uik3vc29tbW1e/6HBnM+3Da3XS3QbOmfybeDBBx/k4YcfZtmyZThO/pV6OJzfR3/8+PF91p8wId1zvr6+vs+8gRg5cmTe+9LSUgA6O4fnbfVNceZ0naeW2Ty6dMPLbhW20zMaTcpOp994DYirflvHByXoTnfALc20rEVTYG58/vrOkb6tu/391H0YCrDa72WlP73NPToj1CaTjEqkCp7G1iu3j8Fm4LMdfOuJrZKGztKyEDGvG7ftsP+KJmwtHVLpOR1gNS3dqbI4kaLL62bPWo37jjQG3AH27q8bnP5fh5dWK2qD8Nv9dKZV9aw7tVLjjsN1LlngsC4KB4yC/UZq3Py+oiMJlT5ojqdDjNFF8OzxOrVBjZVdGn//KN0B9jvTNC7YU2PdlBquXL0ru7z4OYGUyZK6CtZUFeNNWSQ9LhaNr+NLn9fjs210R+Xk6A7x1hhNo6PSR5edDqidTCfzks4EKY+BL2aSCHpAKTRHUdyZwvZokFLomT7tpkcjGnKBBkVdJpqTLRpzVACrLYU/WjiAMoIGxU4SFbfocqdH0kGDgDfdpyKqe2jWihinmogRzEtnUJnui+l/Z8rDJkACb6aVVAHJAqkmZmakk+6/QAudWJ+W3d7fQ9VPEKlwkaKGRnQ03DhEGImHMAqdBMWMYTExSmkl/6KvgjYMFGV04SKGjxY+ZVbBY5XfAu4wkiWsZte8JVIEWMtEAEpppJqe816AMKP5jC+YmbdOnL4jtSTx0kUdKYoxSGHhQ+HCg5l3l8TA6nMnIoGXJO7sZwDgIpZNmbHRsAjiyaTspChCoeMiikUAExdNVOMliYc2vJkLs9y9dxMn3uuOQG9uugjQjI0HhZ0NLQM0EqM205reXYbKeenopLDxkaQSm+4AOv/4k2l1B40YI/DRhk4KDSdbYpxKwME3owhvyRhY0EBCr0BpBu4Td8N/3Zx+6z9cyUOR+rfDBvP33nsv119/PXvvvTcnn3wylZWVuN1umpubufzyy/sE91tCf8NN7ojP8dI0jX8f6yJlOayNKkYX6+iaxkdNNoau8BoarzYo7v4Y3m9Mt69U+2FVF8R7fVR+FGjpwM50tP7b3XofZ8cBpWUGZbfTreXdr26RzdhRNOiG3mkiqY3/3tUmktSmBj4Sja1pfB7sOcmu8HvZJRLb+EAeMuORb96AvpCUrtHh87CorhSX7VDTFePA5Y3pJ9VqGo6WzjYePcnL/kdWMnKyn9VNNvft6sU9iPHOxxRrvHiSQcxU+FygF9i/06fpnDZVI2FBwJ2ef/lXFCkb/G4N01aYjiKQc7fl5kMMrv9a+nvX3Zl2VBH86bqJ3PS3N0jZFld+bw5ej5twl0WTrWG0F7OwsZSGlTF80RiZZ+wM7UA+h6NDNlBRio6Ql9ToEL4SL/rKCHpK4a52U/P1kVTuW4Pu0zFXRrA1mPStnfCXeVBKEVsZQZkK/9ggulvPXpjZCRulFHbEwlPhxUnYWFELT7kHzdBRTjqItyImrpAbFMQ/agUNPKOLiC/routv7xN5dg2uPWrwjAyRWNFF6rNOUu0mnl1KKJ5eTmJxO/azS7EyY9XE8eL4PdArlUgD4poP29CxfB5szQUJJz0EbffohtnO81qv/yvSSSwqk1KgYeGhnpHUsBovYWxCxPEDNkHWZlJCfJTQTCeV2bI0en6rLAJ0MXY9aQo900fzKVU00MrITKfPvkJ0FJjW3m+ZfbemcPBk89jTwakPDZsg8cyIPjoRivqsGSWAN9MRVCOFn/SQuiYeVjGFEpK4MPHSiYsEHiIkKQU0QrTioY21TOIzZlNOMwFiJDEoZw1uUjgoNCIoQqSPv4GRCdjTbHx0YOMmTkXmQimdyugiTpAVpCjCIoiBjYdONGziVGDjxdEMTFcRjnKjlftxHTgO3YrhtFoYE8vxfG0M5uet8NZqtG/tg/1BM3Y8BrvXwfIm9I4OtNP2x1tRgW9EEXrm7qo3msDr96QvCzbjcz+GEkmz6d8OG8w/9dRTjBgxghtvvBE954v/2muvFVx++fLlfaYtW7YM6NvCLgbP49IZm3P+mFbdE4hNKIPTBtk5vzmmeOQzm+dXpQeXGVsMU8s19hutMbJYpyWu+Mt7Og996rCi3SaaSKVb4ItzhgVNWGBtxvxdPScQViqdW58YyG3aHEoxJp7cqJ+4XcJR/LbDqESSqKETtB2CA7x4LdhetZGBvCeZJFVouFWlKIrFSHg8mIaRfRCVpsFuuwUor3Fz9mSDmiledq51AcV9y8gxom69swekO0jvj65pBHKyZwxdw5/5OXEbGm6j7/q9h7jsFjRSYGRGVgWKil3pUKYsxLh/7Z9dLtGR5I2rPqR+QSNm1MTufTW7LXWntWgarpDBqANqmHn2FDylHjAVviJX3vjrA6VpGsFxvQO7NCNzB82Vueg2Ai6MQE7HxMwBdRdlWtE1CMyozM4v2qOKopsP3ug6bSvmyjbaf7kANbYCV42bpnu+IBlRhLqa2HXVK8QoxkschU4n1QSwcIB1mfHcDcxsjnX6EU1xEpmgOUQ7pTRnOquGiWX/xjRcmJl0IY1EgRb3eIE+JBpmn7zwAFFcWFjouHCw0WijPDv+fYRgplXejYcYNkZeC7Y3J80pnWAymlaKSeHGJIhGhHI6SVKW0+5uYxDBQyc6AepoQmGgYZLCg4abCKPw0UwkM2pNiCZ0DPzY6CRJUoKFH08ggT1tMsa00bjKa7DXxUlMKsd3ylS0nUb1M4glfS5L1ifv17GfAfP6NFEEu8fh355t33u3KXbYYN4wjOyt+G6WZXHnnXcWXP7pp5/mu9/9bjZv3jRN7rvvPgzDYN99990aVRaboCqgcdbuLs7avfD82qDG5V+By79ikG4+8/HKGpO5d8fpsHQMxyGuGVAVTI8os6Gg262nW/QjZnr0me57o7nCqfTLpaeXKTSu/PooRV0iialpmJlaZ2fR/8+eF7IPj1pfEF+ojE3+KVWKUDJFp8uF3fvOlFLYuoHSNNB1DjuhkiNOlrGSe/OVejnwDz3pEi/96G2++M9W6mejg7fSjUqCO+SidlYlI/erpnrPClwunWCdPABnS3OPLaf6zmOy70Pnzs7+WyVTMOdGrNVhUvvvgfleFyve6sxp0dSwsfHTgYcUNlp2JJkSWtEnVrBmj9OxLQi/UA8Rk5KiKP5wCy47ikMxDi4MIEEQX6YDqI1BPZPo+ZFLDwZZx3LCVNFOVSYNJUIxnbQToIMKKqknTHleB9MgnVSxAg0NLzHClNLAJEoJU0IYE50wfgxsLFxoKMqJoLDpIkqcEtoJUEYbHhJomJgUY+Mn7KrFqA2htVvo1T6CL/wUfUx53hOsgxTWt8cL/XSLFVuKtMz3b4cN5g866CBuuukmfvCDH/DVr36VaDTKM888kze6Ta4xY8bw7W9/m7lz5xIIBHj66adZvHgxZ555JrW1fTuwieFv31FuGv8v/yf8qS9smuM+YmGbK56Osy5CpuOqkf+UV7eezoUvcqcDdp8rfWs9afc0vWrgchTzvqSza7XGJf81ieZm8WwofUXTKLYd9u/o2/lpfT95688G3bJ8KZOUu3Agj64T8/e02n750I0fdWNHtN/Ve+Kv9LL4ni/SeeGbwki3ZPurvHz5VzOpnlGBy2cMq6e07sg0rwff/3qGVi4HxgFEE6jOGLbmwqgpIrmsC8+IAHqgb4hatp7yw/96n6bvPYcRjtOqz6RYNeExLNzf25eJVx6BUeTBbIzhrgtm74gElndhnv0C9oLP8MXDxHGhYzKWxbRTm7kgUJj48BAj6Ilh7bIb7mINfd8xlNaFKDdN9Gk1qJJS0MD40uiC/V9yu2g6cRM9nkB5PHjjJnrVwEefEkOTBPP922F/oU877TSUUjz22GNce+21VFRUcMghh3D00Udzwgkn9Fn+pJNOIhqNcv/992cfGnXRRRdxyimnbIPai23l6xO7g1AX5+zj5e2VKU64O07Uspg03qA6oBhTavCD/XxMrupeNsCrK0x+9LRJR1LjoFGQdHSOm+ri67u4syel8/fvu70VbTaftCpeWaNY25xiXafFD77i4/BdvXh+0sHygA+L/D9kB7D1dKdQT6/W/u4H7QzE5v7Z9KZSFCUStIf6tn11P70VwHBpnHhWHSXlhdrCRG+GR2f2/81g9v/NAMBKWNw17T8bXc7I/ao5/A65y7hdCvrQgr7s74RvUuFc+A0pOnk3ik7ebb3LeEbmB83e8cVMfObYPssppajYgn1tdL8b/O50z4PQjvEUdbHj0tSO2NtyI+Q+AXbOnO2vd7gYvq5+LsbPnkpSm0yxfyRC0LRYUxzglbFVxN0uQus6OXlFI8HMn3jtKA/zLh3LFed8vt5APalpfB70Y2sak2JxgpthjHPDsiiPpntutgeDWK6+LfPXPTwV5YDeT0759sw0Te644w4AzjjjDNzuTbuQafm4nSe/NR+rs8CY5wEdb7kHszN9J6loZJCv/GYPqmfInRAhxNDVrP08732VunIb1WTo2WFb5oUY7i45OIDPrfHzJxRvESRcHaI16EN3HCas6+Dag3SOPWLXPuvtMjPA4vdi2QeO54bOYUPngboqIpl0s9fKijluXQs1GzFaTiEpt5sun49AKoU3lcJy9co2zQwnqQ1qSB3RW+XUMk5/55gNLyiEEMOEpNn0T4L5zSQWixGL9R3rO5dhGJSVrS8jUYiNc8EBfi44IB0Yd7WbfNypSCXhgJ0r+13ne/83jgfua+J/T7VTlLLzAvpFxaFsIA+Q0nXeLC3i6Ka+j+iNGTpflAWY0dSF6j0UWk6+vwM4ukbM6yHpLfwI+JJy+SkSQgixPhLM90fOoJvJPffcw2233bbeZerq6nj88ce3Uo3Ejqa4zM0+A7hW1A2Nk0+r4eTT0iPF/GDux9mfyK4CHcALTQP4oqKIlOZQGonSXhTKBu/eVIqky5Ue/x2wDR1NKfR+OvTqOvzshkkD2kchhBA7JskJ758E8xswa9YsFi5cuMHljjzySGbOnLneZbyFxtYWYhuLaRDKPHxpXDzBF8H8FJhx8cKPE9eUYnVZCJ9pUt3eQdLtxuU46I5Dc2lJdpkSP/zmrl359L0wb7zQjq5peLwayaRi9y8XM2P24DrjCSGE2HFImk3/JJjfTEaNGsWoUaO2dTWE2GjpB3SmfySnRmK0u118UBTE0TQmR+PM7ggXXG9SW4Q3R1fy8oQ69lu2lkAqha1pdOS00muaRiCUTsGZMrOIKTM35tEpQgghRJoE8/2TYF6IHZw3596lBuzX3sU+7V0oTcO9nsGuUprGCR+upCXko7m0FMOxMTPpNbmSQ+kJpUIIIYYpCeb7I8G8EDu4QgPIuCDdibUABYQ9BmWpJDYuitujOIaOY+gFl/cFZIgaIYQQm0Za5vsnwbwQOzhfABLrH4gJAJcb9jqsjJ32KWPGTj7u+d1yFi2Mb3C9mV+WnHghhBCbRjrA9q9wU5oQYodx0R8mFpxuATHABE45r45r/jWVE88YwcwpfnRd45sXj8flWOstW9NgvyPkYURCCCE2jULLe4keEswLsYOrqvUx7/9GgpZu+XCAhoCHN2pLKZoU4sIrxjH7a30DcsOlcfUD0xk30Y3mOH3SckaM8/CzGydRXLZpTzMVQggh0jnzuS/RTdJshBBM3bOU6x8q3ej1XG6dC36/0+avkBBCCJFDWuP7J8G8EEIIIYQY0iRnvn8SzAshhBBCiCFNWub7J8G8EEIIIYQY0iSY758E80IIIYQQYoiTYL4/MpqNEEIIIYQQw5QE80IIsZUl2xKEW5PbuhpCCDFsqF4v0UPSbIQQYivpWNLJkwc+hz+RBA1MQ6etPMCht++1rasmhBBDmuTM909a5oUQYiuwUw7//cpT+FIpNF1D0zQ8jqKqNcrzZ7xJMiVtK0II0R95Amz/JJgXQoit4M0/foQZcKPT86RdB9AUuFImzU+N3bYVFEKIIUyC+f5JMC+EEFvBJ/cuB3LyPXOeSh6Mm/ha5OQkhBD9kZz5/kkwL4TYYTn21jslWJYi6TVQ3UF8DpcDnmRqq9VFCCGGH63XS3STJE0hxA7FshQ/+tZiAm1RShLpEWVsXadkhI9vXTuNkhrvRpVnW4qXHm3kozuWQlMUu8THPhfvyj6HVWWXSYZNEi4Dv2UT9bkIJqz8QpQCzdnkfdsSlGljr2jFidi4d61C88ppQwix9UlqTf/kV1kIsUP52Tc/orapK31a0HXavF4+riqnOhIlfMYifvbkbDRtYCcN03T4xWkfU720gZTXi+0P4O+I88ali3jtP6O46M+78sody3j/+k9xazpGMoXHtFD0aldyFCPWthPZ/Lu7SToOupX4C/VYeDJ5/jquYoPa987ENb5iW1dPCLEDkWC+fxLMCyF2GMpRFLWEAUi5XMTcbtaGAjQG/KwuCtLUGWbFh12Mn1EyoPKevmctofpW2irLQU9nLcZDAQJdYaxPOnjyu6/RsKCJYMqmoimO4SgUEC52YXoNXJaDy1a4HQjEbFL1W2rPN17q9teJvVCPTfpOhQboOFhdsG7GXxkV/tm2raAQYociefL9k2BeCLFDePvBem56sI2Vo0fgtx0mdUYIe1wsLS3GMQwMFGtKivjPQ40cbeisKwmigC+P6r9r0VuPrcNruEHXSRgGrQE/mlKU6TpTFq+gvl6nfmQVe7y9AsNJn4o0oKjLYt0IDwm/G3fKxvDqdBUHKP57nA9f/x97/O9IUmujLD32v0Q/bEN3O2Br+HavYad/H4a70p9Xj9Tnbaw58kESn3fhwsKrW5SdM5OiG45EMwbXNSpx3v1YpFOF0qNHdGeqKqyIhr20CWNS9aDKFkKIjbU9tMzX19czf/58mpqamDt3LqNGjcK2bTo7OykpKcEwjEGVK8G8EGK7t+aDTi5+1qJ+5Ah2a+lkl9Z2UrrOa5XVOJkWdQ0Nj+PQ+WoLd77WykcVpbw0aQRUBfjouwZ1RX2D4lBzJ5GiEGGPm08qK3D09MmmviiEv7WTWFUpo1Y14rby8+E1wBe3MBRojmLpTqNorikDoHFlE5PfbuTjvR5Cx8FPClfcwcAm+UqYD6pWgsuF8mm43AahXYqxX1tNG8UoSgCHcqcD9ed3sO9+m9L2y/sE9Kk1EVKNMVrv/gxP0KDirGl4xhbnLWMmtcyoET2dzdL/dtBwSD77OQEJ5oUQW8lwDuaVUlx00UXcdNNNWJaFpmlMnz6dUaNGEYlEGDduHFdccQUXXHDBoMqX0WyEENu95x9ay8IRVYyIpaiNxABo93qygXw3W9d5d1QdLS4XzR4vobCJUR/lyAftguW6LRvTcagvCmUDeQDb0PliwihC0RihWAynwDkoFDEJRi0CcZsZ769k1MpmANaMqeKRE15FM8CHTYIAEUIk8RPCpIIY5VYntZF1jGhfifHaEtoowsLARsfGRQsVpPCyLhxiuesqGn70AspycJI2S4/9Lx+M/jtrZ/0d741P4/3to4THXUXzAX/P1k2lLGIE8gL5HhoeEjj3vt3v8VaxFLFfP0/4mDuJ/L+/kfjZf1DR5Ho+ISGEWL/hPDTlH/7wB2644QZ+/OMf8+yzz6JUzx6UlJRw3HHH8fDDDw+6fGmZF0Js9xatdhhfGkGD9NCQQNC0+i6oFDG3G7u4iENWNdC6tpFHd5lEw9IY0JNH39picu0lS6lUDlWdYT4cVdenKNPQCUXjKF2jo9xLWWsyGxbbOui9guTJn9WzckwlNU2djFnXAbaOhUExUYxepy8NDYUbL3FSuIjjwZ0zX6HRRCVebCKAdt0nNP55MTW/3JvwY59RRzsJfLRQiY6DmxSV8z8l+ugn+MYFSO7+O4rxEUMnSaDPvlm4YW1nwWNtLaontsfV+OjAhcIkiIkHdfWjaGcdgvePc9ECnoLrCiFEf4Zzy/xtt93Gt771LX7zm9/Q2traZ/6MGTP473//O+jyJZgXYhuKm4qdb7dZ3WsYk6+NhudONAY8qopYP184ScibIqUZNISClCWShCyLikSSVl/PUJR+x0Fp6bbohppKJq5cw/TGFj7wVKOUItJh8r9PUiy8ZglVa1qJhUJ0el0sLQowJmHmbbOutQOXaaOAaLEXZWiUtiUzFxNagfZumLXwCyatbgLSI8cUkchZTsPGwEX6LoGNCweNIuKU0UWEIjQUQRK4sUliUEE7zVSiMPCnIsQufYEiHGL4iRDKhv9JPPiI45z+OBVdq1H4sDHQshcRubVVuEniLO8iMesKPA+fjTaiHPXo20ROvg8cRRENAMSpxCSEQsfCh+vWBTi3LsA4cireJ87btA9VCLFDGc7B/OrVq/nyl7/c7/xgMEhXV9egy5dgXohtaPRfbFoLZB+8sBr2vNvm3dPlT/S/n1u8vsqhNaUxpkzjmInw9bsT1Dda2JbC0TVcHo1bjvXy3b18eeu+vNTk3D+1U1xSQRSDaW0dNBaF+LiynMmt7ezW1MLCETVYmoZLKVzAqPZOxq9rYnVNNZGAn8mdXVQ6Fief3IRjGIS9XgKBYlSFTXEsziehEpYGfbgdRVUq3dq/y+oGpq5ID02j0EApvEkHZaRPRg6gO/khctxvMLq+Jfveg1ng1JXbEdXJvIMKuogQoopOvKTrEAK82NTSxDpqcNBwk8RLkhg+HHq2r+Ng4iHY1YLKlBzHjxsTAwcHHQXoKHRsgnThJoH+zhqscZfiYJKkFIWbItagATEqSVCeV3ubAAob88ml6Jf/B/flR2/s12GzUo1dKMdGS1gwshTN495yG+uIwLm3QcANe+0Ex3wJMv0khBAbNtxSa3JVV1ezevXqfue/8847jBkzZtDlayo3cUcIscWlLJvSGxXxATwjaN50OHAUnLiLgUvfPK0Sb9Q7LO9UfG2M4pMWhdcFL6xS2Jm08E/aYGUn7FoB//gYcp9vpOswvhR+uAeMKtbxu2DPOp2qYOHuN6bl8I2Hk7y9FpRLAwWNHTYJE8q88KMv68wc4eawiTpuV34Zb662OOA+m2TCAdNJP1jJY4DPgEgKopmWcKXQNXAMnfIKN2ZS4YpZYDmMjMaZGIlSG4nR4vWhXC4aAz5K4gn2XtuIoWBtUYgV5aWkDIOqSJTdV67B5Th0BQKYbheunMOeMAxeGT2ClGFQ29HFwYs/55UJoxmZMik2TWKGgR5LMLG+Gbdpo3SNlNsgHPJT1RShtCsBQNKjk/C5CEQtdEeR9BlEgy5GrItQHEs/CdaDSRnRXkdUYWCjoQgQxUsKBXRRQhQvfnrn9itKaCWODwMbLyZJvHRSjIWBiRtFevQEHZtSIpmAP4WGjcImSnle27yPGEV0YOHCxoOLJB7C6MQxMFFAimKi1NA7314nhQsnU14SR/fjHW/gmTMV7cqTIZh/MaZaw2jRJIwsg8woD2pNK+rVJaiv7IReVYzmLRyAq84YyudC64invzdeN1ogfRfGaovg1F4MpoVOCnBw0MDlRX/hJxCNof71BvoFh2PMHIuzsgW+dxe8/AkkUyi9e89sKHGj33AGnHZAwXoA8MPb4MYCt9BnjoNFf+x/PSFE1vvan/Le76a+v41qsvEuuOAC7rvvPt544w1KSkqoqqri+eef56tf/Sr/+9//OOqoo/jJT37ClVdeOajyJZgXYit4o97miIcVHalNL8sFGBpUB0DTYHwJhDwQcCk8BtQF4bEvwKOBR4cvOiFlgekobAfQtZ4mDqUyvYlywjU9swFNA0dl5nXLTOteN1fKBjtTngG4dLDp2ZZBJigvsFM64DXSVwtJC1IO+DNBe8pJ19ltpOvk0fGjSEVNNKXwWU56c0pRqRQB2yGpaZQkEsxo76DN72FkZ4z369Ijr+y1Zi0lyfQHoYCUYdBeXISdGfElEIszorkV02UQCQXpPVDYJxVlrC4Kcey7H/FZTRnL6qqY0tJJXSQOQKgjSt2almwY6wAJvxtHg4qWOBpgGRrt5T40R2HYCitzxVDdHKUs3J1bryglmm1pTx99Gxc2XmL4SGGjk8CPiRcdG6fAzdYSWjGwUBgk8dBALSpn7AMNB5XJ4PeRIEiMEtrRcTIdb4PZZQ1MymlCR+GgY5IeIjPEKgzy04zamZi9UOjmow2VHjwTH+24SWSOkIGDBwd3pj4aGnEMLBz8KAwUSfRMF9/00bHR0p88KpsO5ALcOOiZcu3MNAuNGHqmh4DCl727ASYKH+m7Hir7vUjPdWMQQc/2cFCZC5GeG/4KhU4iU+vuL3fP0rmXM/nJVf2cet0umDYaqophdQvUlUNlMUwfCwfumi67JABTR2efbSDEjuA97aa89zPV+duoJhuvs7OT/fffn+XLl7Pffvvx9NNPc8ghhxCJRHj99dfZfffdmT9/PoFA3z5KAyHB/CBEo1Huuusu3nzzTdasWUMsFqOmpoaDDjqIefPm4fP1tC51dHRwww03MH/+fFKpFFOnTuWCCy7gj3/8I2vXruXxxx/PK3vx4sX8/e9/Z9GiRcRiMerq6jjyyCM5/fTTcbkk5WI4mnGHxYd9+7tsGSo/mMiZQeYRnuTHG5npuctnoxSVDs41wJUJ7rvn25l5uXcLNAVRq6d8l943XnEyQVd3WbkXEw7pqw8zc8siYfZcOHRv1+tOX2jopJfTNDTHoTRp4QZSHoNUwE1tOElpPMV7dWXoSlEbSTCuK84uTS2M78jPS4x53LQXFwHgTabwJ5IE4glW+71UZdJvcrV4PNQHfDSU+pnY0kmX30NHKEhtJM70xnbGL6nHk0m3MUwHl+lkD2nSo+NJOdl/e5MOugJHg6RXx2MrXCmLUMLEY1sYWPiwM+Fv+gLEQiOJmxZKqaGDEN15Wj0JON0MTEpoR6FQuGijjE7yh6DUcLBxAwovScbzBW4sLFw0M4LeKliLCzvTAh8k3fq/rM9yEWpIUZytj4ZNMStRuIgwGh2TIJ04aFi4ULgzyyoMUhgkyR3hXpHCRU9OWvqbFIDMBYODkRcsq+za6WOSvhDqQOFDZR6E1TPyv5ZZuuezSq+fRM/WK/fr7GSXTdcukZm2Pnq21A3ToVdNcusJGoythMd+CruNG0B5Qgx/i3oF87sPo2AeIB6Pc+211/LQQw/x+eef4zgOEydO5MQTT+Tiiy/G7/dvuJB+SDA/CCtWrOCss87ia1/7GmPGjMEwDN59912ef/55Zs+ezU03pb9wqVSKb3/72yxZsoQ5c+YwdepUPv/8c5577jmKi4uxLCsvmH/llVe4+OKLGT16NEcccQTFxcV8+OGHPPXUU3z1q1/ld7/73bbaZTFIa8MWI27dBhsu9FftqF6BfO68/qar9EsD3DmtgLbqu5zp5E/X6Anas/UqULHugL57XQ1wnPz8nm4eV7oeOUG+7ig8jkNRysKlwNY1mqtD7LOyhektbdTEEnR63CwvLWGn5lbKE/mdFJIug5bSEso6uqhq7xmh5dOyEj6vLMfRIGRZTOsK47UdStq7eG9kFXusbsLWddrLS1CZFlKlFOO+aKAokkjnycftPoe0s8iNP2HhSea32irAcUFRNIXX7EmX8ZKigk5cmQ9JARYGoGOhZXLrs+PkZEJGHYMUDhDHj5cUJYRpo5SufoP5dArNZD5PHxc8tFHb5yMooo0AUXRM4pQCGkWsyLaYd4tRTYoiFBoeuvDRhoGFhZcI6dzQIG1oOKQI0LuTrYeuTMt7NwudSK+l0l1+00fSoPcX2KH7MVfpPTWIAm66R2VOT+9+zkBPH4Se8p3Msc1th+9eR2W2YKMR77NuXwb0SYMqpHtf8vekZ16OPSfAQjkviB3Du9qf897voaQTfTdp6h2EkSNH8uSTT+a1lJ944onccsst3H777Xz00UdMmzaNxx57jCVLlnDOOefw3e9+N7vspEmT+N3vfkddXc9wdslkkl//+tdMmzaNW265JVv23LlzmTx5Mtdddx0LFy5k1qxZW29HxSa75f1tXYMc3Y16GzMvr3Ew06JeKCDvbq0fLJUTyK+HoRS2BhR5IJoCBxxdI6EbpHSd6ngKw1H4Eiaz1zVTlEqnfpSkTGY0tdDm8fQJ5i1dR3ccKnq12E9p7+SZUbWsKQ4B8EZFGd//4BMifh+7rk3faokFfNlAHkDTNJpqyyla2oCmCu+OP2kR97sIF+kYtiIYsfBkWu8Ny8kL5AFcWJi4IZOlng71bGw0XJkPzUUSAwd3ptOsBjRSTkfOcJpdhKilhS6KICf0zL2ksLOnBIUnk9bi5LQSK6CTckK0oqPhIomJB7tXyGvhxySEBnjoIkBTdhup7MWEk03xKXykeqeQ9H0yYjoxpjuVpn/dX2+VHaEnl2L9fwBar/e5V8QGZJKCNtziPtC/j0LHop/y31kG8ST4vX3nCbHdGb6j2WxpknA3CG63OxtsW5ZFV1cXHR0d7LXXXgB89NFHACxYsADDMDjllFPy1j/22GMJhUJ50958801aW1uZM2cOkUiEjo6O7OsrX/lKdpmhoq2tjWSyJyiKRCKEw+Hs+1Qq1Wcs1bVr1673/bp16/IepLA9bOP4nWDI9MEfTDXy0uW1nlb0ga470Bt/3Q2P3Yvren4KD+BRCtxaOrdey1mnuwhdI5VZpyKRygby3XSgxLKIunsCPwXUF4dwmRZ6gbpWJns6OXR43Lw4fixNVRV4Mr2Fez90CsD0uGgvDuBofQ+VAqIBN6bHQOkalluns9SNnclIMpz8NdzYOLiJEKSdEqL4sy3DRiaTPP1vCy9JkriIZbqvdvRqgY8SxEanjia8JDKt2gYqJxDuGYpSYePChYWBQscBHGwMHFwkKCJJMJMz7yLGGCKMJkEFcaqJUo2TyXBPd7T1Y+ElRhUpSkhfLHTm5K33PVJ9B+/s71Tu5Fxq5B/rvuubmZSYngSbntb2gW4vf6rKTX1Zr035HSicnuNMrCFs9XxHh8Nvomxj+9jGttCdNteTPjd8fOc739ngK7fRd2NJms0gPfjggzz88MMsW7YMx8mPKs466yzmzZvH3LlzSSQSPPnkk33WP/XUUwmHw9k0m7vuuos//elPfZbLdfTRR/OLX/xi8+2E2CoC11nEB3J3fXPo8+ec07Teuw65ufG5efO9c+Yhk6eeCeYLBNIF02y618ud1L2t3G1YvVJzuuc7Dt6kBY7CA3hdGi01ofS2UzbE+6bhlMdTGJpGMuTm++98itGrOpZhoFkWhu3gcdI59/8dN5LZTe2MaGrBbfccJEvT+M2s6YRzhiuc2RVl764I5S1tlIejJHxewsX5F+ahrghFHV0UdyZIeHwUheP4Uhamy2BNXRlF8V4PFQCCYRNPygYdKtvj2eQQH733UVFBJ70DRxubFsqwcJHOD3cKBsMjaaCYGPXUkcDXa67CR4LRrMBHghZG9OpQq0jiATSqWYNN7/xOhZG5M2DiRsfOpPq4sPD0Ov06BGjFQMdBI0kgM/hl+gvgIpHJmc/fvp65AMiV7iDrxsZVoIW8J8zXSeIikqlPKHM/IB0kp7PldYy8vHcbSEGv/ewd+Gsk0Ykz8DSagchNGUqn8/S5SxDwwCMXw2EzN9M2hRjaFmq35L2fpc7ZRjXZeOPGjevz3Bjbtlm7di22bVNVVUUwGGTZsr79jwZC0mwG4d577+X6669n77335uSTT6ayshK3201zczOXX355n+B+ILqvqX74wx+y0047FVymqqpqk+otto3YhS5OfcLin59umfIrvVAdhHVRRakXdiqFl9ZkUs4z3ytNA6XTkzevQfrpRapnmgHZaFopsk9P0nMCedvJTFc5nVgzL7cO2JlB1MlpZc9JzXFlOrh2xyWGDl4glblI0BUk09vXnXT3Ro+ukfS7aC3yQtLJ9A0s0CqjFKbHSI/005Hg49ISZuTkwDuahtI0VpaW8GlZCXXRGLuva+arDc0ARIpChMIR3LZNzOXi9RHVeYE8wLhMik57eSk64I8nCERixAM+FBqBWJxQVxgNSPhcvD1zMnGvm6JIgmjAi9I09nvz/T4BqW2A6dVxdI3WMh+lXUk8dqHfEa1gm3UXRemnsnYfCro7neYdILyZEWfSQXl+a68GlNCBjwQmngIj42jo2UDbLhC29gTOHmL4iGXnpPASpzgnxUUnRSgzWo2Bjo2NgYGJhzbSp6buoZBckMn+z9+b7q3GUSTRCKKwMyPteDNHygQs0nnybmyKM2k56csdI5Mg1H2HwEFhkCCdn58+/k7myPXsY+5RtTLb716yp269k3P6yg3Weyn1pv9OUjaMrUqPbFNdDKcfCC1RKAvC16ZBeVHBkoXYHg231vhcK1asKDjdNE1uvfVWrr/+ep599tlBly/B/CA89dRTjBgxghtvvBE95zb7a6+9lrfciBEjeOutt4jFYnnDDVmWRUNDA0VFPT/E3Q8L8Pv9zJ49ewvvgdja7jvKxX1Hpf/94gqLrz00sPVmVkLQA4eOhUPG6ewzctMz47qSilvfs3h9tcJCI5zSmFGpMG2NV+oV9WGwbEhaiqTq9eOpp7sklvk1RgfhiInws6+4CHn75jMrpbjsRZPrX7eIKR1NU+lwx6WBk75R+q1dNNA0Lt7Pw9TqdBmW7dARd/jzaylu/dDD2jDpoCZspi8KdC2dM9+boRFzIK7pJLwuVHkJJabJqFgiHbZq6VBybTA9pufaUJCq4gRNQT9u22FcOILldvFyTTm7dETYKWmyPBzl81CAgGUzNRqjNpO6o3Sdlspy/MkkpZ1d1DY0pgO4TGqRAmIBL7FMLnNXcc/ff8znI5hI9FTbcvAnu0dGUaTcLtZVGlS3RvBavcNClQlC8wPAFL3HWtcy7c09y6Xbx01sdNykSOHpE+wn8KDQMp1Z+6aOhGinhDZ6DzmZlg57NRTenEAewEOSFClUTj0dwEMcI+hFv/kbaLMmYOxUB6YNfg9qRRP89TnUrqPQj9sLAj5ULInztxfRuqIwcyxayAf774qh6xiOkx6D1dAhlsRZ3ohz/ztQW4wxYyza9BFQHkJFk6h/vY164C3s5xZnQ/nufbIOnQljS9Cf+xBt2gj0a7+B9vpS7EsfhoZ2NKfns9OxoCiEWvAr9N3Gpx8M5Si0oC898hJAaxh2vxBWt/U6Xpnje+vZMO+QwheoQois7TGNxO12c/7557N48WLOP//8gpkcAyHB/CAYhoGmaXk5Z5Zlceedd+Ytt99++/H666/zz3/+My8X6t///jeRSCQvmN9nn30oLy/nzjvv5JBDDqGkpCSvrEQigW3bBINBxPD21XEu1I/h3XUWpz4Bn3UUXm50CBZ9e/P/iRZ7NS6e7YYtfM2oaRpXfs3DlV8rEHivh8vQqQzp/PJQF788FD5uNPnWw4r6Loevjtc5a7aP4x5M0e7WM3cK0uv9dLbO1Ufnt1Rec6fOq/9rZ2IkRtzlYllxiE5vT30+qK7I/rshFOArDY3MbOuixEyntxyzthkFPDBhBP5UEi2ZxPGmA3S3ZeJPpUh5PViGgcu0+rQbWfT9kQ1FLULRFCm3juEoPKme1A4N8KRsSiNxQlYSD3bmwU7p1BkvJhYu9Jynw0bwksRVMLw2cp7zqtBZwSiSuPt9umyUAO1UECKMjwgJeo6nhxhltOKgESOAhk13p1QF+GjFRTzTybTvZ67j5LTmK/w/3R/31Sf0rbQrXaY2rhp+c2p+C3fAi/aDwwvsKel+Fr7Mdktc6DMnoM+c0Hcvi/zo8/aHefujYins/7yH82kDRtCP9sOvoRd6CuzkOlzf2q/wdsm55CkN9Z1ZUQSr/gbL1sHFd0F9G0QScNze8JNjITT44eiE2JFsaPDX4Wy33XbjnnvuGfT6kjM/CHfeeSc33XQTs2fP5qtf/SrRaJRnnnkGl8vF4sWLmTdvHmeddRapVIpvfetbLF26tODQlLZt85///Cdb7uuvv86Pf/xj/H4/Rx99NKNHjyYcDrNixQpefPFF/vCHP8hoNtuZzqTim0/aPNErTc6jw4rv6dSFpI/6pmpdl+Dn5y+h3eVlaXnpeped0NHFzr1GtbE0DXcqyUFXTacooPNau86N93dQXxzkoJUNHLB0NcFoPL+/gqbxeU0l70wcw4EfL2f8miYcTWPpqGpmf7giu5jSQBV4sq8/Eme02ZXNAE/nfDu4sUjhIYGLsObD0XSSmhvdsQkqk9zUDRc2I1hLM1WkcGe6Omh4s/ndfb9b/mqd0qZVuNBwZbZk4sVNCi8xYoTooIIymnCwsQmijyoh8PC30P/6LKnb3wUUblKZHPju2kCEcrrHe3efvgeBO7+53s9CCCFyva79Ne/9Pup726gmm9/xxx/PggULaGxsHNT60jI/CKeddhpKKR577DGuvfZaKioqOOSQQzj66KM54YSeliaPx8Mtt9zCDTfcwMsvv8yzzz7LtGnTuPnmm7nyyitJ5Nxqh3Tr/F133cVdd93Ff//7X9rb2ykuLmbUqFF84xvfYPLkyVt7V8UWVuLVePy49J+h7SjeWmtT6deYXF6onVUMRkWtj5bKImobOvi0ohRXJsbUHafPaDQxt5uYx00gk05jaxpaysTwGxywV7rVdQ+gzlfKDbeso9HvwxfPjAKRkyahgLjXza7L1zJ9yers9D0+W0XUbxDIjD9fqClFdxxCtpnXWp/+t05H9iFJGm6liGk6mlIUE2M0DaylFgs3PhJU04aBoowoCkXc56PqkCqcx1fQSC1W9qmmPbUe9eAxqPvfpv3m9wmRxEccX06ueoAIPqIY2HRWjaS8KefR43udietvoO5bQPQb9+LJjH3joGHiw0sM7ScH4/vdcQP41IQQIt9wbnm+4oorCk7v6Ohg/vz5vPvuu1xyySWDLl9a5rcB27Y5+OCDmTZt2gZHsBFCbLoffH8pT5sBlpYX852PlzIikWRpWQlLysuyyyigNJVibCyB23bQlYNm2UxeVc9+185i1gEVeWVatuKmvf6Ly1K4enVWXVccIoHOqJYwde3hvHkpt45uKxxDw5O0MXKfB6QUumVTnEhSY+WPeqOAVLqXcF5nVwOLkTTgI38oThsDEzdd+Ald9lVqr/gyAB3nPU7rzYvoohQbI9v6X3r0GCY9NgeAxDvriM76PaV0kq/ndBE3AoSsmyhErWgmcd4DmK+tRBUH8B02Cff1x6MHeo+gI4QQA/Nar5b5Lw+jlnm9wDDGAGVlZUycOJEzzzyTefPm9RnxZqCkZX4LSyQS+Hz5J7CHH36YcDgsHV2F2Eou+UEtS69oZE1JiCLLwq0UU9o6MJSiPhREU4oWr5tlAS9hQ2d6WydVXREq2zoIfqm6TyAP4DI0LJcHXbNxHDM7Tr0CPhlRgw3ssrq5z3qOrhEuzoyOohTFXSl8cSvTf1SxdEItZ/x9Jitn/QtvJstcATHcqMyY8j4iqMwjo7TaAOY6F+5MS3g6LUfHQcdyuZhkXpq3/dI/z6H4yoNpveIVWh9YhnevEYz919fRczox+/aspYkgRYQzefd9WUb/gbk2rgr/k+f1GbxSCCEGaziPZjOYUQ43hgTzW9hVV11FMplkxowZeDwePvzwQ55++mlGjx7N//t//29bV0+IHcKIySGOHbma4PIGgplWdA3Yqb2Tndo7iRkGb9ZUcfLipYw6eTzJzywC43wc+38HECjr/+maps+LOxbH8rrRnHQYbRkG9WXF+G2HWMBDMGHmZLKnh6zM0jQiITe+iEnKY7BqXBW7xzso27OaQMOZfPK1xzA/bQMUhluj6oczGPHzL2GU5Ncp+twKWo57AF+4Izteu7ZLDXUffL9gvfUyP1XXHULVdf0fM+9YP00rR1JMB17iuHJa/m10tCOn9r+yEEJsZsM5mN/SJM1mC3viiSd48MEHWbVqFbFYjIqKCr7yla9w9tlnU1HRt7VPCLHldDYluO6b7/cZ2rHL7WZ+XTUz2js59/IJ7D490E8J+W4+9S0iq+N4E8l0B1MNFo4ewac1VUzsCnNCoI3O59fgsdIXELrpEC3uO9JL9ZoIpkcjNTfGiTd/G7e7wIgqW5n55goa9r4blRmZxk8YH1FsDCygsuly9CoZ51wIsXUs0P6W934/deY2qsmGrVq1alDrdQ9TvrGkZX4LO+qoozjqqKO2dTWEEEBJtQ9X0MCJ9gwj6aCxvDiEz3ZoLgkNOJAHmPf3PfntnLcx3S5avV4+qywj4vMyJhxl+gw/x/9kLxZcarDknyvwmIpQl9k3mFcq/awsn0HsS0OnbcU9exylh1TS+WwzDh5ihIgTJKS3U/HoNyWQF0JsVcOpZb7QE18HwrYH9xRpCeaFEDuUH921G3849X1MOx04rw4GaPT7mJhKcvkVozaqLLfP4IL7ZnLzGYsoSphMa2kj7tf57kVj2e0rlQDsd9We7PGDXXl4n6fxpBzKmhN0lnvTHWATNt6Elc75cQ2dQL5byf/OpSiSIvynt8BxKPrBbPSi/tOOhBBiSxlOwfzf//73QXdmHQxJsxFC7JAal0dJmYrKsQHspCJUvGWHA/3zzP8yYXELkM6dd/TMADaGhmVAbKxD5PsJzjjjjCGRZiOEEEPJS9rf894fqL6zjWoy9EjLvBBih1QzPudpyluhsTnUHiXu0/El0s8x1B1wXOkHRzmGRrxaHhAmhBD9GU4t81ubBPNCCLEVhDRIBgxcjkLrHsZS00DXcDQNVbaBAoQQYge2PaSRvPrqq7z77rt0dnb2Ga5S0zQuu+yyQZUrwbwQQmwFe14/i0Wnv4oytHRzfIbSoKvYjTOr9wOahBBCdBvOLfNtbW0ceeSRvPXWWyil0DSN7iz37n9vSjAv93WFEGIrGHfsOCZduCsO6Xx5MjF9wgWzL94VyrfsQ0WEEGI4U2h5r+Hk4osv5oMPPuC+++5j2bJlKKV45plnWLJkCWeffTYzZ86koaFh0OVLB1ghhNiKlFJ0fdZJ1/IwgWIPZV+qxNYc7rjjDgDpACuEEAX8T7sr7/2h6vRtVJONV1dXxymnnMIf//hHWltbqaqq4tlnn+Wggw4C4LjjjsPr9fLPf/5zUOVLmo0QQmxFmqZRMqWUkiml2Wm2Ka3yQgixPkofXq3xuTo6Opg6Nf3U7FAoBEAkEsnOP/TQQ/m///u/QZcvaTZCCCGEEGJIU1r+azgZMWIE69atA8Dr9VJdXc3777+fnV9fX79J49JLy7wQQgghhBjShnPL/P7778+zzz7LpZdeCsBJJ53E73//ewzDwHEcrr/+eg477LBBly/BvBBCCCGEGNLUMM4l+dGPfsSzzz5LMpnE6/Vy+eWX8/HHH2dHr9l///3505/+NOjyJZgXQgghhBBDmjKGb8v89OnTmT59evZ9WVkZzz33HB0dHRiGQVFR0SaVP4yvc4QQQgghxI7A0bW813CyePHigtNLS0s3OZAHaZkXQohB2+VvFp929J1e5oHW7xub1KFJCCFEj+GcZjNt2jSmTZvGySefzIknnsikSZM2a/nD+NAIIcS2E7yucCAP0J4C/x/trVofIYTYnildy3sNJ7fccgtVVVX84he/YOedd2bPPffkD3/4AytXrtws5UswL4QQG8m0FbENxOpJeRyfEEJsNsN5aMqzzjqL559/nvr6em644QaCwSCXXHIJEyZMYJ999uGGG27YpCfASjAvhBAbaUmbtLoLIcTWNJxb5rvV1NRw/vnnM3/+fFatWsW1116LpmlcdNFFjB07dtDlSjAvhBAb6a3BN6AIIYQYBEfLfw13dXV1TJ06lV122YVAIIDjDP5J4NIBVgghNlJbcmDLLVjjsN8oaTMRQohNNVxb43MppXjppZe4//77+fe//01LSwtlZWWcfPLJnHTSSYMuV4J5IYTYSLuUD2y5/y1LB/MPfWZxwuPpaRqw6JuwW638/AohxEANtzz5XAsWLOCBBx7goYceoqmpieLiYo499lhOOukkDj74YFyuTTsfyNlECCE2wnefsvh74SGD+7CA0LUW0ZzOsAqYeS/sV2sx/5vyEyyEEAOhhvFQvwcccAChUIg5c+Zw0kkncfjhh+PxeDZb+XImEUKIAXKUGnAgD7BPLVzdz6g2C9ZBynLwuCQNRwghNmQ458k/+OCDHHnkkfh8vi1SvpxFhBBigP7x8caNYnPN2+uff/sHg+/wJIQQYniYO3fuFgvkQVrmhRBiQD5osvnW0xu3zuct65//ftPg6yOEEDuS7aED7JYiwbwQQgzAbndv/FOg1pnrn2/IvVEhhBiQ4dwBdkvbIqeSW2+9lVmzZm3S06z6M2vWLC6//PLNXu5Q1tDQwKxZs7j11lu3dVWE2CGt7toyj3ONprZIsUIIsd1Rmpb3Ej2kXaiAhQsXcuuttxIOh7d1VYQQQ8CbDfLEVyGE2Ja2t4dGbU6SZlPAO++8w2233cacOXMoKira1tURQmxDZzxhceenW6bsLzo2vYyu+ij/OvI5VM6DrMYcVcMRf9h70wsXQoghQlrj+yfB/FZm2zamaW7RXs1CiM3jk1Z7iwXym8N7dy3lzas/7jN91RON3PrEYwXXCYz14Am68Ra5aV8axvBCfIB3Hqr2KOGIm/fBMRXeEjd23Gb5y2vBUVTsUoon6CKxvI0lP3iKMYvfozbZhIOLBn8ltcl2DGXzRdF4EoaXCeEVBK0o9b5amgPlBEhRVqkRHT0SNw7BAyfi/ryBjuk7E6kdwYTDRxGs9APppyhqmoZjK3RDy5u2Rdg2dMXS/y4rgmQKTAtCgfS/Wzrht49APAUrGmH+J2D1Ss0KekA5ELPArUN1CXTGoNQPNWWwx3j456sQTaanXf1NCPqhsQOOmgU7jSKzo9C9n0pB9yPgDSN/nhDbmeGeM9/V1cXNN9/Miy++SFNTE7feeit77bUXbW1t3HnnnRx99NFMmjRpUGVvdDBvmib33XcfzzzzDCtXrsTlcjFmzBiOOuqoPo+iTaVS/PnPf+bJJ5+kvb2dcePGcd5557HvvvvmLWdZFvfeey9PPvkk9fX1+P1+dt99d84+++wB79ibb77J3Xffzccff0wqlWLMmDEcf/zxHH/88XnLvf/++9x+++189tlnhMNhSkpKmDx5MvPmzWP69OlcfvnlPPHEEwAcffTR2fXmzZvHWWedBUAkEuHvf/87L7zwAo2NjQSDQfbaay/OPfdcRo0alV3n8ccf51e/+hV//vOf+fDDD3n88cdZt24dP//5z5kzZw7xeJzbb7+dZ599NvtEsNmzZ3POOedQV1c38A9FCLFZNXTZjPzrlsmTz1XqHdx6rUs7eejol9JPoNpIsZUpYgwuWb/53U7u3rufIX1UujJeO0FFQhEKVhHAosFXzbjYGoJO+tbBrl2f031OVkCpHeNz307UdSwhsDxKzZKluHDg+ZdxgFVlq3ij5ku8dmX+RUtNvJED176GoRwWl07mvYoZGwxkR+9fzcHXzsLj1+GKB+GelyHkg2O+BE+9Cx+tSj+i17TB2cyff24HCdOB+vb0vyNJWNMB7yzvmd8eh7Nu63l/0d2bty6FuAyoLoaG9p5pQS+8eAVc/wTc/yrYDnhcUFWcXv6U/eCKk8Et7YJiy3OG8YXqmjVrOOCAA1i9ejWTJ0/m008/JRKJAFBeXs6tt97KypUrueGGGwZV/kb9BZqmyfnnn88777zD3nvvzRFHHIHH42Hp0qW8+OKLfYL5yy+/HJfLxTe/+U1M0+Sf//wnP/7xj3nkkUcYMWJEdrnLLruMZ599ltmzZzN37lxaW1t58MEHOeOMM7jtttuYMmXKeuv1yCOP8Nvf/pbp06fzne98B7/fz5tvvsnVV19NfX09P/zhDwFYsWIF5513HhUVFZx88smUl5fT1tbGe++9x5IlS5g+fTrHHXcc0WiUF198kR/96EeUlpYCMHnyZCAdyH/nO99h3bp1HH300UyYMIGWlhYeeughvv3tb3PPPff0CcRvuOEGLMvi//2//0cwGGTs2LFYlsX555/P+++/z0EHHcQ3v/lNVq1axcMPP5y9MKmpqdmYj0cIsZmM3gqBPMDKzo1fRynFI3PnDyqQ36IyJ9qky09DyE9DaARvKcXuLR9QYkZ6FstdBSgzOzmk4WUKnaZ1YLf2xaz1V7OyeGzevMZALWtCI5nW/imzW97DNDx8XLbLequ4en4Tz//4HY4YuQqueKBnxocrN25ft0eWnR/IQ/ouweyf5n/XUhbUt6X/ffUj6f//9ptbpYpixzacW+YvvvhiwuEw7733HtXV1VRXV+fNP/bYY7MNyYOxUcH8fffdxzvvvMMZZ5zBeeedlzfPcfo+/KS0tJTrrrsue+tz1qxZnH766TzyyCOcf/75ALzxxhs8++yzHHLIIfzmN7/JLnvIIYdw2mmncc011/C3v/2t3zq1tLRwzTXXcOihh3LVVVdlp59wwglcc801/OMf/2Du3LmMGjWKN954g0QiwVVXXcW0adMKljdjxgwmTZrEiy++yIEHHph30QHwl7/8hfr6eu644w522mmn7PQ5c+Zw8sknc+utt/YZbSeRSHDfffflpdb8+9//5v333+e0007LXmwAzJ49mwsuuICbbrqJX//61/3utxBiy2hPKLbWo5w+7Nj4ddqWdOGkhsnDpjQNFxtO4dnQOXpK59I+wTzA58UTmNaezoOa1LV8g8E8wKr5jVjOq5JjOlAbumj8x3wJ5sVWMZxz5v/3v/9x4YUXsuuuu9La2tpn/oQJE1i9evWgy9+o0WyefvppiouLOfPMM/sWpPct6uSTT87LYZw6dSqBQIBVq1Zlp7300ksAfOc738lbdqeddmK//fbjvffeo729V2tBjueee45UKsUxxxxDR0dH3mu//fbDcRzeeustAEKhEAAvv/wyyWSy3zL7o5Tiv//9L7vvvjvV1dV52/L7/UybNo033nijz3rHH398nxz5F198EV3XOeOMM/Km77vvvuy0007Mnz+/4AXSUNHW1pZ3DCORSN7oP6lUqs8Xdu3atet9v27dOpTqOXPINmQb22Ibmm2yLZq9a2tr8973tx/eYs/WrNYmWx0cseGFNiDsDhWc7nF6BvJP6gPLWTK8Oio0vI7hkFYaHJZ/57KNTdvGtjCch6aMx+NUVVX1O39TR0/cqMaJVatWsfPOO+P1DuxHMzd/vFtJSQmdnT33lhsaGtB1nfHjx/dZdsKECbz00kvU19dTVlZWcBsrVqwA4Nxzz+23Hm1t6VuChx56KE899RR33HEH9913H9OnT2fvvffmsMMOG1COent7O52dnbzxxhscfPDBBZcpdFEzZsyYPtMaGhqoqqqiuLi4z7yJEyeyZMkSOjo6KC8v32C9toXe9eq+UOrm8XioqKjIm9b7GPd+3zuYkW3INrbFNkqDHsaELFZF2OJ+vU/Pv9etW5c3r7/9CNX5KR4TpGtVdIvXb3No85Qyv3YfZjUvwmcnafOUUpbqwBjgBZOpGXxQMbXPdE05zGhL59Hb6LxfYJlCdvvOJNwjq+D4P2Tz/NEYemlLQ0VJIN1Rtz8/PXZY/p3LNjZtG9vCcE6z2XXXXZk/f36272Vvjz76KLvvvvugy9+idxoLBbZA3hXhpuou61e/+hWVlZUFlxk5ciSQ/kLefPPNfPTRR7zxxhu8++673Hrrrdx2221ceeWVfPWrXx3Qtvbaay9OP/30AddRRq4RYnhZebaLaX+z+Lhjy27n+VXw869s/HonPXUQD859no7PhlBAn/l91JSD0nTQNHxWggPqF+BzknxWPJEiM8L4yGriuHBpCq+ySOlumrwV+J0kCg0HDbeTwtEMTN3Np8WT0GybCrOJsDuEZaRb1UuTnUQNH58WT+Sj0im0Bnr9/mvg8utYcQdNh6JRAWadN4XJc0an5y+4Eu6dn+4Ae/K+8J+3051gfW6IJOC95Wy3DB1cOiSt9Hu3ATPHwVd2gX+9Ak2doOtw6G7w0MXw/Ifw07vTI+tMGQW7jAJdS3eAPbBwyqoQm5vSh280f8EFF3D66aczY8YMTjjhBCCdnr506VJ+9atf8frrr/Pwww8PuvyNCubHjh3LihUrSKVSeDyb5zblyJEjcRyH5cuXZzuZdlu+fHl2mf6MHp3+YS4tLWX27NkD2ua0adOyOfPr1q3jG9/4Brfccks2mO9veLOysjKKioqIRqMD3lZ/Ro4cyeuvv044HO4zlv2yZcsIBoPZzrdCiK3vozPTP4/aNdYW20a1f3Dr6YbGSY8ejHIUf536nwGsAHucP5k95k3BcOU3sji2QtkOjR+0EW2JUzW1lFhTkmX/q2f58+swYybeYjeHXb83lVNKB1S/ZEMHKy77HzXxZqzWOLGEm5GxtaAU75XtQtLlZXLbUlZ5S6g4cDQj7z0LvazwMz0GMq7X+odI6MdXdkm/uu05EX518mBKyqcUvPEZrG6FEj+Mr4GaEigJQTgGa9thUl06WO7t84Z0R9SyINRuo7uy132n77SjZqVfQmxDwy21Jtc3v/lNVq5cyc9//nMuvfRSAA4//HCUUui6zm9+8xuOPfbYQZe/UcH84Ycfzo033sjtt9/OOeeckzdvsGP8HnDAATz44IPccccdXHXVVdkyli5dyvz585k5c2a/KTaQ7ih78803c+utt7Lnnnv2aQWPRCJ4PB48Hg8dHR19AuSamhrKysryUn8CgQCQHhM0twOsruscfvjhPPjggzz33HMFU23a2toGlBpz4IEH8uqrr3LnnXfy/e9/Pzv91Vdf5bPPPuOII47o986GEGLrue9IOPXJLVP2pt6j1HSNsz45hrblXTx4zItggqtc44wFRw3490M3NDAMRszqyecsHQ0j9qxi358Nrl7eEaXsfPuJBefljuHQfwbpMKZpsM8U2KfAvKJA+tWfyZvev0CI7dVwbpkHuPTSSznttNN4+OGHWbp0KY7jMHHiRI477jgmTJiwSWVvVDB/yimnsGDBAm6//XYWL17M7Nmz8Xq9LFu2jJUrV3LzzTdvdAX23ntvDjnkEP73v/8RDofZd999s0NTejwefvzjH693/ZqaGi655BKuvPJKTjjhBL7+9a9TV1dHe3s7S5cu5aWXXuLBBx9kxIgR3H777bzxxhvsu+++jBw5EqUUCxYsYMWKFXzrW9/Kltndan/jjTdmh9+cOHEikyZN4rzzzuP999/nZz/7Gc8//zzTp0/H7Xazdu1aXn31VXbZZZc+o9kUMmfOHJ544gnuuusuGhoa2GOPPVi9ejUPPfQQFRUVfUYLEkJsG6fs4mKnMotZ927+so3NdL1ePr6Ysz44ZvMUJoQQQ9EwbZmPxWLst99+zJs3j7PPPpsLL7xws29jo4J5t9vNTTfdxL333sszzzzDzTffjMfjYcyYMcyZM2fQlfj1r3/NzjvvzBNPPMH111+P3+9njz324JxzzhnQQ6OOPvpoxowZw7333ssjjzxCOBymtLSUsWPHcs4552Q7bhxwwAG0tLTw3HPP0dbWhtfrZfTo0fz85z/nmGN6ToQzZ87k+9//Po888ghXXnkltm0zb948Jk2aRCgU4u9//zv33nsvzz77LPPnz8cwDKqrq5k5c+aAb5O4XC5uuumm7EOjXnzxRYqKijjooIM499xz+3RQEUJsO9MrddgCA1ZaQ3fAKiGEGFKGa8t8IBBg+fLlW+4J1YCmNmdvVCGE2E65rrEGMGJ6vikh+HQ9o+LsXQuvf9OFaZrccccdAJxxxhm43e7BV1QIIbZDN++Wn+947vtHbqOabLxTTz2VRCLBI488skXKl6RsIYQYgMSPDIyNXCe+gZb3ketJnxZCCNFDaXreazi57LLLWLJkCaeddhqvvPIK9fX1tLW19XkNljwETwghBsClazSdp1Hx54HfzJxSBivXM0T31zecRSiEEILhm2YD6YemAixevJj77ruv3+Vse2Pv/6ZJMC+EEANU7jeAgQ9VecpUeKa+//nfmSE/wUIIMRDDeWjKX/ziF1s0Z17OJEIIsRE+Oh2m3TWwZSuDcPoUuOvTvvP+eOBmrZYQQmzfhm8sP6BRDjeFBPNCCLERpla5+P2+Fj95ZcPLruyCO49ycedRcP3bFis74ZjJcMAYY4u20gghxPZmOLfMb2kSzAshxEbaayCPJQXG5jzU9IIvyc+tEEIM1nDOmb/iiis2uIymaVx22WWDKl/OLkIIsZFWr2e4yVyfd2zRagghxA5jOLfMry/NRtM0lFKbFMwPr7F9hBBiCDh03MBOKrtVDd+TjxBCDCVK0/Jew4njOH1elmXxxRdfcOGFFzJr1iyampoGXb4E80IIsZGqgwMbcf7AMfITK4QQm8NwDuYL0XWd8ePHc8011zB58mS+//3vD76szVgvIYTYYXx7l/XPr/AgnVyFEEJs0P77789TTz016PUlmBdCiEG440gXi79deLS0s2dAyw+kS5IQQmwu21vLfK6FCxei64MPyeVsI4QQg7RLpQvnx9u6FkIIsf0bzgH83XffXXB6R0cH8+fP55FHHuHMM88cdPkSzAshhBBCiCFtOAfz3/72t/udV1lZySWXXMIvfvGLQZcvwbwQQgghhBjShvM488uXL+8zTdM0ysrKKCoqKrDGxpFgXgghhBBCDGnDuWVe0zSqqqrw+/0F58fjcZqbmxkzZsygypcOsEIIIYQQYkgbzh1gx48fz7///e9+5//nP/9h/Pjxgy5fWuaFEEIIIcSQNtwC+FxKqfXON01TRrMRQojhpn5Nkl9fvhLVlsKNonaXcqrHtm3ragkhxJA03IL5rq4uOjo6su9bW1tZtWpVn+U6Ojr417/+RV1d3aC3JcG8EEJsZVff0MjLi+KMi1roukbE5WHxshlE1jbBGdu6dkIIMfQMt2D+uuuu44orrgDSOfMXXHABF1xwQcFllVJceeWVg96WBPNCCLEVKaV44kOTWZ1hyJycfMkknS6DJcmabVw7IYQYmoZbMH/ooYcSCoVQSvGTn/yEU045hT322CNvGU3TCAaD7LnnnsyaNWvQ25JgXgghtqKVq1OMi0YhJz/S0TSKLJsut4vWhhi1Y0u2YQ2FEGLoUcMrlmefffZhn332ASAajTJ37lymTZu2RbYlo9kIIcRWVFqkU5ayAPCYJmXhMOVdYXwpk0kdYW4/7X26WhPbuJZCCDG0DOfRbH75y19usUAepGVeCCG2KpdLAxRu06YsHKH7lOSxLNpCQeIBP9efuohfPLPPtqymEEIMKcMtgC/k1Vdf5d1336WzsxPHcfLmaZrGZZddNqhyJZgXQoit6O2lCRr9PnaKtqEBmuPgMi10x6E6ZbK6qpLKjs5tXU0hhBhSnGEczLe1tXHkkUfy1ltvoZRC07TscJXd/96UYF7SbIQQYit58YM4//fXCB1eL20+LyiFO2ViOA4a4LJtRjc1E/H7tnVVhRBiSFFoea/h5OKLL+aDDz7gvvvuY9myZSileOaZZ1iyZAlnn302M2fOpKGhYdDlSzAvhBBbyc/+0o7uOPgtmy/KSkEp9F4PE3E5Drpj88Ap83nuorfoWhHZNpUVQoghZDjnzD/11FOcddZZnHTSSRQVFQGg6zqTJk3iz3/+M+PGjet32MqBkGBeCCG2Em/KwWc7lCSTaLrOJ9WVFHouYEk0zsrVDh8u6OSO//cK/9zjMRzTKbCkEELsGIZzMN/R0cHUqVMBCIVCAEQiPQ01hx56KM8888ygy5dgXgghtoCnF5vUXdqB8dMOJvyui7aog9+2MAG3pjEuGsdvuGguCuWtZ+k6btOirLGd0pYuijujdEXhgckP8snv38sul2pPEm+Mbd2dEkKIbWQ4B/MjRoxg3bp1AHi9Xqqrq3n//fez8+vr69E2YZ+kA6wQQmxmu13VweJODSszMPLyZoeKX4U5EI0x8QTunOb4lN9HxHZw2Ra2YZD0eBixci2G7WAbOrZh4DZNjC6HT6/6mOWXvUuk2Ifl0vHFbcoSXVSY7Yz42xwqz5i+jfZYCCG2rOE2znyu/fffn2effZZLL70UgJNOOonf//73GIaB4zhcf/31HHbYYYMuX1rmN8Ljjz/OrFmzWLhw4aDLmDVrFpdffvnmq5QQYkiZ/ccuPu2EsqRJVcokZNnpGY4i4jII2fnpMl7LJuX1EAsESHq9oGl4UiaRkiDtNWV0VZXQVltOIuSmJJrE9HlwWTYV7VH8KZOkCuA4fmLfeYAXiv/E5xe9tNX3WQghtjRH0/Jew8mPfvQjjj76aJLJJACXX345e++9N5dddhm//OUv2XPPPfnTn/406PKlZX4Ie+mll/jss88466yztnVVhBADMO6qME2disqERaPXja1roEi3susa75WGKDMtih1Fi8+L0mCkBhM7uvLGZogFfCRC/ux7peu01ZQyZnUnZV1JWsr9REJ+dAUVyS4qUl2ESDArvIymP7fw9l9eZ/xhlVTc8y1sU7F8xHXocQcDC0e3qHj5e5TsO3rrHyAhhBik4ZZak2v69OlMn95z57SsrIznnnuOjo4ODMPIdoodLAnmN8LXv/51Dj30UNxu91bZ3ksvvcQTTzwhwbwQQ0w0YXHJcyb3vmtT5NW45Ug3R07zsDKqUawU63weHF2jO0K3NQ1SNhbwdnGInbtb64FlZSW4HIdxXenOUJrj5AXy3VI+N7ah47IdiiIpWioDVEc66fQEKYp24iZdZl2ygzpsvP9+l87QO0Qpx0UINwlKaCTktBLd7zKiWDgE8T5+Hp6jZmzxYyaEEJtiOAfz/SktLd0s5UgwvxEMw8AwjG1dDSHEADTHbEJuDUdBQ9jhi07Yd6SG16VjOfD05yl+9YqDS4c9q+HzTphZrXH7IoeuVPqkUeNRNCdtHFsHXQeXBroGDmBrgIuuTov/d1cMizjoGraeuQWsZ14Ahg4KMG0qHYekln4KrDeTO19fHKIsZVIUi1McjaGh+oxy44unMDIpOnamXJ+TYnp4aTaQ72Gwhp1xE8EigIHCwUc7Y7HxUMI6EpRgYBKeczsJ/Cg0/HTiJ4JRU4w9ZTSuo/fEff6B2J804kQTGGU+jF1GboFPSwgh1m+4pdb0tmrVKn7zm9/w4osv0tzczKOPPsr+++9PS0sLV1xxBWeccQa77777oMreLoL5tWvXMmfOHObNm5fXin3++efzxhtvcOGFF/KNb3wjO/30008nGo3y0EMPAdDS0sJtt93GK6+8QmtrK6Wlpey3336cc845lJeXZ9d7/PHH+dWvfsVf/vIXZs2alZ3e0NDAddddx1tvvQXAnnvuyUUXXcTZZ59NXV0df/3rX/vU+YMPPuCmm25i8eLFeL1eDjzwQC666CICgQAA3/ve93j33XcB8rb1y1/+kjlz5myOwyZ2cLaj+McnivlrFFMrNObN0Ah5en4sX61X3PeJQ5EHvjdDZ+E6xWNfKBqjijIvNMXh83bwGjCmCJa0QXOcPmHlVqMKDfKYmW5DNjp22aBpgA4mkHJ4ZzXg0XmxITNddwCNRhtwGz29i1waWCodzGc4jsLpboJ3FFEjs7De68TjNsC0qfe4iWeWKbVsJiVNDKXwmCaVnV1AuiXflUhieT2gaRimzfilzWiZ3WiqKSIUSVKV6sCnEn13GVjLKLyYVNKVNy9CJX4iuFCAQYg4igAaFj4SRKmCRhN/4yeEX16H56KHMAlh4UfDJkAzHrpwYabrikGSEjQcPHRh0OsR5YU/lb5cOoysgPIQFPthz4lw9mEwecRASxBCbMeGcwfYxYsXs99+++E4DrNnz2bp0qVYlgVAZWUlr7zyCtFolNtvv31Q5W8XwXxdXR0jR47k7bffzgbzpmny3nvvoes6CxcuzAbzkUiETz/9lOOOOw6AdevWccYZZ2CaJscccwyjRo1i9erVPPzwwyxcuJB77rknOyZoIR0dHcybN4/W1lbmzp3L+PHjWbRoEWeffTbxeLzgOkuWLOHCCy9kzpw5HHbYYbzzzjs89thj6Lqe7en8ne98B6UUixYt4oorrsiuO2OG3A4Xm8fZzzr87cPuCFdx/2fw2qkGuqbx0GcOJz7uZOPf69+xSa4nSl/R1f+8rWa9rTaZPdFIt7B38xjg1tMBf+50Q4OomS7TbYCeuSAwFTgqXVz3xYOhQ3enVo10UGoXGBNe08DjIu70XHR0uAzW2Q67tsdxdJ2OohAeyyLYESYQiaOhgaaT9LuJBdwkfC7aKoLEQh52bl9NbaoND+0ogjh4suUmcOHGwk8yrwoBWqlgZbbl38EPBPARJUYJblJUspx1TGYtNYygiThlOJlThcIgSi0eItkg3YWNQRttTCJFMaWsWs/nsB6WAyub0y+AlxfDbc/BW7+DKaMGV6YQYrsx3J76musnP/kJpaWlvPHGG2iaRnV1dd78I488kvvvv3/Q5W8XwTzAl770JZ544gkSiQQ+n48PP/yQRCLBEUccwfz587EsC5fLxbvvvott29nW7t///vdYlsU//vEPampqsuUdfPDBnHHGGfzjH/9Yb876XXfdRWNjI7/+9a854ogjADj++OO54YYbuOeeewqu8/nnn3PHHXcwbdo0AObOnUs0GuU///kPF154IYFAgL333punn36aRYsW8fWvf31zHSYhAGiMKv7+UX5L9ptr4YVVioPHavzuLScvzWN9gfyQp2lgkG5RNwqcDApdBHQH8XEr/W+XDqie1v3cuwAuHTAgZfe0xutaepneZbuN9MWA2XNAbeVQkkwRTKZwK4UyDCIVpaAbFLeHsVxg+j00jPHkFeXXkrS4iqlxmgg4TZiEcHBjkELhZhxr0FAk8GHjwUWUYhrQMjuRvgcRx8GLnrmfYuPGA5TQRJhKongpdJpIEcKdc6GgAT7aiVKLhQcXqb7HdDDCcfjTU/Dn722e8oQQw9ZwTrOZP38+v/jFL6iqqqK1tbXP/DFjxlBfXz/o8reboSlnzZqFZVksWrQIgLfffpvy8nJOOeUUotEoixcvBmDhwoVomsasWbOIRCK88sor7L///ni9Xjo6OrKvESNGMGrUKN588831bnfBggVUVlb2GR/0tNNO63ed6dOnZwP5bl/60pewbZuGhobB7P5W19bWlh1iCdJ3PMLhcPZ9KpXq84Vdu3btet+vW7cOlRMkyTa23DbCqXRM2VtHJmOjI9l33rC2oXNAwYA+83+rdyt7gQOXTa3Re8rr78ST0zEWoNS0sDUNr51/xRQtCaI0MCwHnPw6TGn6gsldSxhvfY6hDDTAQxgfbbiJ4MbBTxwfCUrowESjjWo+48t8we6YmVZ8DdCwSOEDHLz0PJFQYeBgoNH3LoNRIFjvvkhQm/m0YreFt8u/QdmGbGM4b2NbGM4PjXIcJ5tGXUhzczNer3fQ5W9XLfOQDuL32WcfFi5cyJ577smUKVMoLi7m7bffZsaMGSxcuJDJkydTUlLCRx99hOM4PPbYYzz22GMFyx05cv2dvRoaGpg6dSq6nn8CKy8v73eooUJllpSUANDZ2bnBfR0KcvsSAH1SkTweDxUVFXnT6urq1vu+trZWtrGVtjGpTGNWDSxszCnDB4eNT/9AnjJF49dv9JODPhx1x6OO6pvLDn1b0ZXquR2hkd8Sr2t9r4S63w/0/KKlW+49jsOkTKt8nyplTliaUgQ7Y8RDPpShU9XVxqHLF2RDZp+yMCnCATx0YeLHoufzjxEklve+hAYmM5aPUUCcYmx0SlidbaFvpw4HCBHDwp0J9tM75yaKl54TPaQvbxKUomUy6Dcn45sHbJd/g7IN2cZw3obYOHvssQdPPvkk5557bp95lmXxr3/9i7333nvQ5W83wXxFRQUTJkxg4cKFJBIJPvroIy6++GJ0XWePPfbg7bffZu7cuXz++eeceuqpeeseccQRHHXUUQXL3ZQrpf6sb0Qc1V8nPiE2s0ePNfjRSw4vr1ZMq9T43f46RZkOsL/4so6Dwz0fK4q9cM5uGm+uhce/UJhOOqyzHEhk4l23DqkCaeJDglI9wbhDuuLd6TaZoDod5Oe8T9hg5+bE55Tn0tLzclNu7MxBUWwwoNcdRVUihQbUmDbl8SS2y6C5uAi3ZVMUj2MohTeeRM9cJBimjTtp4bgMxnWt6dP27caijRGsdo8nZCYoIpadF6fvMJcRSlGARRE2Lsr4AhM/UYrppI4w5ZTTmGm5tylmDQ4edEy89DQ4KNIdYMOkGyhKMvn4m8TQ0+lIoyrgkuPgyFkbXkcIsd0bbq3xuX72s59x1FFHcc4553DyyScD0NjYyHPPPcdvfvMbPvnkE2666aZBl7/dBPOQTrV56KGHmD9/PqZpstdeewHpVvsbbriB1157DaVUthV/1KhRaJqGZVnMnj17UNusq6tj9erVOI6T1zrf1taWd5tqMLRh/MUVQ9/IIo375xS+sHTpGlfua3Dlvj3Tzh3ciFkFre60KfNDyGPwRZvNNQsVyzvhtkOhyKuTMB1ufBfWRdIN5KOK4JhJ6f6nt38An7TAzuXpRvKTd4HdquCfn0FLFKIp2HcUXPkmrO4C09awNUXShiIXVASgMeIQT6qcgF1LB+mZ8eCxVDood+s9+e92JuB39PR0JzMtYUHKotq2aQr2tGBn1zG07EWCy1HURhP4bYfapEnQcSgxLezMBb7pdtGFnxGNLRS3duJoGrpSWB4Xjiu9TMTd91atk74SocyMEyGYF8y7C6TEeInRQSWKAAYp4hTjJQ5o+OlAJ0qSIDY+3CU6yUgVfjrRVZLUrhNJ7TcTz+JlGJ0dcMhMSn9yNFplCSxaBhOrUV1J1Isfob3+Kf+/vfsOj6pKHzj+vTOTmfRCKj2hhN6RTijSdlWk2hACIujKLkVYFfSn6KpgQVgLyqoQAXVVQEBFpCxNEFCKAkonSC/pfZKZ8/sjZGCYGUgjmYT38zzzwD333HvPPTkz8865556rbTsIb42Ebk3hbBIE+4JBDx6Gm9y0LIQQV1kr8MfFX/7yF+Li4pgwYYJthsOHH34YpRT+/v4sXLiQmJiYYu+/UgXzd9xxB19++SUffvghERER1KhRw5ZuNpuJi4tDr9fb5vEMDAykc+fO/O9//2Pfvn12T+eC/F7y5ORkgoKCXB4zJiaGRYsW8cMPP9hugAVc3vxaFF5e+T1qKSkptmE4QlQGNQOu/oioW0XP+32uy+Cp49VuzrftVst5+pR29sv3Nyl++VzZcCKXxb9Z+f6Y4lxyHsasPFAK/yADKx420XGeJX/mm4Ig1WrN79XXwCvPQt/EVDzzLATkmEkzeuCVl+fQkZ/nYSDV1xtTdg7GbDO6XAtW/dWOgmMBtbjodZCwrERbWhb+kD/3DVasWFFY0aHQ8OUiGZjIxh/gyvSSCRiwko2ZRI8QavwxAUPdYAxAYa5FuszTqk7+Mfx90YZ3g+HX/RFrhhRi70II4agi98xD/r2UgwYNYs2aNRw9ehSr1UrdunXp27evPAH2Wm3atEGn03HixAm7udjr1KlDcHAwx48fp1mzZvj4+NjWPfPMMzz66KOMGTOGu+66iwYNGmC1Wjlz5gybN2/mr3/96w1ns4mNjWX16tW8+OKLHDhwgMjISPbs2cNvv/1GYGBgiXrXmzVrxpdffsnMmTPp0qULBoOBpk2b3nQcvxDi1ugR5UGPKNfrTZZEcjTD1RtgjXqCM80Y86zUzDZzyuhBQ3Mu+4MDydPpCMrOoUHKdVfwlCLXaEBpGnlGA/pcC7o8K5YrD5626vQsq9eb1mcO0jTxOLl4YrkSXuvII4REIBc9ueR6+ZJVK5KwQ8exYsCCAW+SyAqPwPf32fhV8SP01lSVEEKUKmuhb0pyD9OmTeOBBx6wm1Lcx8eHgQMHlvqxKlUw7+/vT3R0NAcPHrR70BLk986vXr3aIT0iIoLFixfzySefsGnTJr7//nuMRiPh4eF07dqV3r173/CYgYGBfPTRR8yZM4eVK1eiaRpt2rThgw8+YMSIESUac9+3b18OHTrEmjVrWL9+PVarlRdeeEGCeSHcVOLLAfi8kAbalSkoPQ0kePvgYbZwIcNAtWwzwRZP8q4MyUsyGUnzMOCXm2fbh8FqBU1HnkGPxaBHWVR+D71Bh9Uj/yPblGNBl+rNn9TFnzRMZGMgF408Thmr0yj7qRt2JLieU0EIIdxTReuZnzlzJk2bNrUF8wkJCYSFhbF27Vp69uxZqsfSlNxxeUskJyfTq1cvBg0axLRp08q7OEKIMlRl8mWSvL3yp6pUCsx5YLbQNCubQKsi95qb4DWlqJ2aTvWMTHRK5d/8mp2Db1Y2ZoOBNF9vasafwzc5nVxPI95p2URfuIzpyvgdPWaqcIlcH2/C9k/AFBlYbucthBC3ytgHD9st/+fz6HIqSeHodDoWL15sm3QlISGB0NBQ1q1bV+rBfKWZZ748ZWc7Pk79k08+ASj2jbVCiIorcVYIrb1zINMMGTloeRY2Pe6FxclcL0rT0CsrHlYreqXQrFYMuXlkeXigz8kl8ugpvNMy0VsgJCGdvgs70+TPEWQ2CSEj0oeApfcSoV6jZvoLEsgLISotq6bZvcRVlWqYTXmZMGECVatWpWHDhlitVn7++We2bNlC8+bN6d69e3kXTwhRDnZNreKQlqHX8M8yo/c0oSmF15WHQaWZTJxVUCslDatSKE2j2p/n0Vvzp8DUWxT3HxmEh8/Vj+z2+4eV2bkIIUR5q2jDbMqSBPOloGvXrnz33Xds2LCBnJwcwsPDefjhhxkzZswN55QXQtxmrIqTXiY6Z+aATrPdzmUB0jxN6JJTseo0sjw8yPI24pmVR80OQfSZ3xWdh1xIFULcviri1JTx8fHs3r0buPpQ0CNHjhAYGOg0f+vWrYt1HBkzL4QQZWTGJ4n83x7FwOQ0hznWPfIs1LucSLaHAc1i5bXvivehLoQQldHIh4/ZLcctrltOJSkcnU7nMBGBUsrp5AQF6RaLxWFdYUjPvBBClJGpsVXYd/ws5mTnD4rN1WmY9Xq88or3gS6EEJVVRRsnv2DBgjI7lgTzQghRhj58JpxhT5zG47p0DUj19sY7JwedspZH0YQQwm1VtGA+Nja2zI4lgzCFEKIMZabkkeThgc6q8qetVAoPixU9YMjLw5ibxyOv1invYgohhFuxavYvcZX0zAshRBmy5FkwWK1YAU9Lfg+8BugsFsxK0ekuf+q2Ci7XMgohhLupaE+ALUvSMy+EEGUoONSTsKwsLhk9SPYwkK3TkasUNROSMCkrfR6LKu8iCiGE21GaZvcSV0nPvBBClCEPkw4MOuomp+CZm4evORcPqwWzwYCXzvEBdEIIIWRozY1Iz7wQQpSxzz+piyXMm5OB/pwJ8CXFyxPfoEtE/eW38i6aEEK4JXkCrGvSMy+EEOUg7r1I2/9zc3NZsGB7+RVGCCHcnIyZd02CeSGEEEII4dYsEsu7JMG8EEIIIYRwazK0xjUJ5oUQQgghhFuTG2Bdk2BeCCGEEEK4NRkz75oE80IIIYQQwq1ZZJiNSxLMCyFEOfhm0Vk2rEgiIBAmvVWnvIsjhBBuTYbZuCbBvBBClKGMNDPPxh7OX9A0khIVz488BlobGvfdVb6FE0IIN2WRYTYuSTAvhBBl6NmRR+Day8WaBkqBMpF62af8CiaEEG5MpqZ0TZ4AK4QQZUkpx7Qrwf3pXU3KuDBCCCEqOumZF0IId6BpSP+KEEI4J/PMuybBvBBCCCGEcGsym41rEswLIYS7kOkahBDCqbzyLoAbk2BeCCGEEEK4NemZd02CeSGEcBcyZF4IIZzKk1jeJQnmhRDCbTiZ6UYIIQR5Ms+8SxLMCyGE25AvKyGEcCZXPh5dkmBeCCGEEEK4tVwZM++SjNAUQogypG70haQ03nzqcNkVRgghKojc617iKgnmy8G8efNo27YtZ8+eLe+iCCHKSG6uldiHDt04k6Zx4U/INVvKplBCCFFBZGqa3UtcJcNshBCimEL/ncdl8zU3rVosvNvTwLh2+R+tp09m8PqT8WgqP0+gphVqVPzuH5Np3zO4yOU5N20jSW9sRxkNhExrx4VX9mDJykXDAwAvEjGRgc7fk1oJL4JBX+RjCCFEeciS+N0lCeaFEKIIUrPyGLhU8b8zVtDp4NoeIoOBv29S/H1T/kXggfvOUYurQ2sK+130zafnCx3Mp7yxngtPbSQHH/IwovCGPB1nntsH6AEDCg0TGQSTgB4D5tRcjni8BuQSwEVygkKoeel50EtwL4RwT2aZIMAlCeaFECWSkm1h0kaF1Qpda8CFTB07zlrZchr8jTC5HdxdR8/ui4o24RrVfRVv71akmuHJthoBphuP9jNbFOtPKjz0isQs+O44tAlXDG2gY8c52PSnlYW/Q6AJkrIhwwzmop6Eum5KyIIAvSDd2fL1gfz12wKpXkbIyHH+FaQU/ukZeJrNWPR6Unx8yDPo0VmspCfqWF9lNgFJeeTiSTDnqVs/jZNHPLFgxJ9UsvAhmTB0WMkjnPyfCtcf6eqyQpGLF6DHhJVQkknFCx0aEUkHOG54nmTCMZCLkTSy8ceKDj0KC3q7fXmQjUcNH4Kndyd0dGOUUlx6fx/p7+3AP1IjuKkJrWE1slo3I3NfErknkvFduwnPIIX5kb+SneNJzqFktEtJhEZbyU3KJcsrGNPpk2T9cpnMxo0IeLAhfmFWtOU74dRlGNwRwgPg6HmoEZyfptPyry7UDoUj56BDNAT6wPrfICUT1v0GSenwaG9oFQU7j0DLKIgKg00HIMsMberC5gNwIQUaVoceTeVHjRDuSGJ5lzSlrv8Wuz1kZGTwySefsGPHDk6fPk1mZibh4eHceeedjBkzBk9PTwB++eUXHn/8cV544QUyMjL48ssvOX/+PBEREdx333088MADRT72vHnz+PDDD1m5ciXVqlWzpZ89e5b333+fHTt2kJaWRlhYGH369GH06NG28gjhTlYetXDv8sJ/hOi0/Fee9eryqkE6+kY5D+hPJCt6fGnhZGpplLZs6S1WHvv5KB4uPmKrJKfgk51jW7ZoGudDg7FqGlit3LlpP1WSMwCwXnlFcYyaHLZ9p2Xiy2HaYr1pv4wiiHNE8TtmTFymNn6kYSCLPOAYLbBeGYpTkN/+m/P65fy0cE6QULsZKjUXS1L+TygPsonkN3xIJRdPTlOfOuyzbW1FYz+dySP/M81EBvXYwznqkEgEeixYrpTFmxTqsxs9hbyHQK8DLyOkZ984X9UgOJeU/38N++n9G9eA/70E4YGFO6YQokxoTybZLau3gsqpJO7ntu2Zv3TpEitWrKBnz57069cPvV7P7t27WbhwIYcOHeLdd9+1y//FF1+QkJDAoEGD8Pb25ocffuDNN98kNTWVsWPHlrg8586dIzY2lvT0dIYMGUKtWrXYtWsXCxYs4Ndff2Xu3LkYDLftn0u4qRGritYXYFX5r2uXR/9g5fTjzoP5F7ZZK2QgD1A/Ic1lIK9ZrXhfE8gD6JXCKzuHDG8vNE2zBfKQP1OBFR3VOWoXUnuTThXOc5kaNymNRhLV8CWFUM7gz3mMZGPETCZ+Tn4MuO7ht99nONrJy+ThZUvNxZOLRFKDw5jIJpIDdlvrUASQQALVAcjBhwtX8icRbgvkATIJ4CI1qUr8Tc7vCov15oE8XA3kwfE5Xb+fhte+hrdGFe6YQghRzm7b2WyqV6/Od999x9NPP82DDz7Ifffdx8yZM3nkkUfYvn07+/fvt8v/559/EhcXx5gxYxg2bBgff/wxjRs35uOPP+bChQslLs97771HUlISb7zxBpMnT2bo0KHMnDmT4cOHs3v3br799tsSH6M0JSYmkpNzNRhJT08nLS3Ntmw2m0lISLDb5ty5czdcPn/+PNdeKJJjuP8xUs0lv7B3MfPq/68/xp4LFXdWlzpJ6a5X3mQmBuUkeNah0GF1SDeSVegyJVAVAB9SSSYMgGRCKe71azOeaE6eWpuFH3ryAJyW2Yv06/L7YiAPI46BeBZ+xSpbifwaX2Heg3IMOUZ5HKNcaJr9S9jctsNsrpWXl0dmZiZWq5Vjx47x2GOPMWXKFB544AHbMJtBgwYxbdo0u+1Wr17Nc889xzPPPMOQIUMKfbzrh9lYrVa6d+9OzZo1+fTTT+3ypqSk0Lt3bzp16sScOXNK43SFKDXhc/PsgvHiqB8Ihx91ftVp3DoLc/dWzI+ojn9eot2ZRJfrg1LS8M26GohbdDrOhVRB6XQYcnIZ+N3Pdvnz0NGZHzBcCZILHKINGRTucnMAF6jLPjLw5wz1iGY3l6jOKRoV4cyu8iQVC0ZysR8GGMQ5qnEME9nk4oHHdbNCH6cZyYTblsOIJ4w/2U8Xru9jqsEhwjhVrPIV2/P3wYtFH0IphLh1tCnJdsvqzcByKYc7uq3HbXz11VcsXbqU48ePY7Xa9x5d+6sUICoqymH7OnXqAHDmzJkSlSMpKYnMzEzb/q4VEBBASEhIiY8hxK2wZrBG28WKvJvE2wXDkv2NoNcg6UonkI8HLL3X9QXCFzvp2HvRwjYnj2TQa2BxxzhfKdA0fgsPpOW5JIxW54VM8vcl16DHM8dMnkFPmrc3SpdfFxa9jstBvoRc6d23omHATDxNiGIfOqxYMHCOOoUO5MFKOH+SiwenaIDlysd/Fc5zkVrk4GOX1z6odjZm3oovieTc2x3doWRyDiYD4EUqIZzGSDbpWiCnVH2i2YX+Sg+9FY0M/G178SWREE5zkqboyMODXFtZArlICKevHlKn5Y/Nun6ce0F6oA/4e8Gflx1P30MPuRbwMUGD6rD7eH660QDma34g9W0J/7z3xlUphCgH0hvvym0bzC9evJg5c+bQoUMHHnjgAUJCQvDw8ODSpUtMnz7dIbgXQjhqEa4ndzLE7begoWgdpuNiFiRkWJm/H2r6w9iWGo2q6DicBA2CwMeosfW0lVQz/KXOjUf6hXhrbH3IwKFEhVEHWRbFtjOKJsEa7atp7LsECZkWXtoO3avB1nP5IeiaQnTkegBeOkh19VYvuGiprgSyuutmtAHHS71XAnnvnFxankvCrNPsgnm7kFjTSPfxJt3H2/HQOg0TSZhIxYw3kcEXqf5IfS6uMnLgwB2EcposvMjBFyMpWK/0fuvJJRcTFozkYbLbp5FszlGHdAJR6Am90tutw0ItDnCc5ljwwEgGPiSQiT+56NDpPNFaVyX3UDJkAzrwCoGABxoT8sxojCH54+UzDySQ9N4uAu8IwCesF1QPxrN2VWodTyUzdTi6rfvxClBYB3ai7iUzeQnZqMR0AuoYsKSYqa73xZSXRvrmM1ia1MGnQwQmfw32noCzCdCzOXgY8mexqR0K8RfB3xuyzVArFI6eg8Y1weQBB/4Egw5+OgQZ2TCwIwT5wsHTUL8a+Hnlb59thvpVYd+fkJUDYYFQN+LGDUcIUT4klnfptg3mV61aRbVq1Xj77bfR6a4GFNu2bXOa/8SJEw5px4/n9+xUr169RGUJCgrCx8fHtr9rpaamcvnyZaKjo0t0DCFupZFNr5/KT8d9je1TWl8dVUHnGkW7XadBlYJPcY3G10y/3iIMwEDPyCLtrsTSzRZax1k4kur47aLPs4BSbK0ZTPTFlPwA3mpFoXHGz5PqrqaqLKAUne/ypd/XTzisingdrg81zZuPcvrVn8j+4RTZ+AIaeRjwIgUAA9lkEogZb8x4AwoPskjCHwt1Uejw6htNi9Wji1kb+bybBOM9t49dmgEwtLkyBKdH/k26OsBw3f26eqDgJ01Ar6b2K3s0s18OudKrX+W6sfSt6179f9Pa+f82rOk6T2TY1f+3dLzyKoRwMxLMu3TbBvN6vR5N0+xuAsnLyyMuLs5p/tWrVzN69GjCw/MjktzcXD777DP0ej1dunQpUVl0Oh1du3Zl9erVbNu2jU6dOtnWxcXF2cbUCyHcg69Rz+Gxesavy+Wd3epql7uC5El6fE35veI5OdE8/dBBsgw6jFZuHshf0bpTaKHLYoypR52YegDkJWZwaep6PEMg4IFWnBnzPZYdRwgiHQ8sgAULGp7d6xG8/kk0nXw7CiEqCvm8cuW2DebvvPNO3n33XcaPH0+PHj3IyMjghx9+cDn9Y61atRg5ciSDBw/G29ub1atX8/vvv/Poo48SEVHyy7Ljxo1jx44dTJkyhSFDhlCzZk12797N2rVrad26NXfffXeJjyGEKF1v9/Lg7V6u15tMeuYsbWJbnjj4wI13eGWYTt3GvsUqj6GKD1Xn9bct19xe8mlzhRDCLUgs79JtG8wPHz4cpRQrVqxg1qxZBAcH07t3b/r378/QoUMd8t9///1kZGTwxRdf2B4aNXnyZB588MFSKU/VqlWJi4vjgw8+4PvvvyctLY3w8HBGjRrF6NGjZY55ISqBOUubMGHwAdffSRq06OQ4hl4IIYRE867I1JQ3ce0TYO+5557yLo4QooKbOGj/DeZItvLGfxvi4eHhYr0QQtyetGfsZxlUM8vhGRRuSrp7hRBCCCGEe5OOeZckmC8lmZmZZGbe+Ok5er2eoKDCzgkthLj9yIVSIYRwTqJ5VySYLyWLFi3iww8/vGGeqlWr8s0335RRiYQQFY8E80IIIYpGgvmbaNu2Lb/88stN89111120bNnyhnlMJtMN1wshbmNKgSYPqxNCCKekY94lCeZLSY0aNahRo8bNMwohhEvybSWEEE65nDhAFO0xjEIIIW4N+aISQghRDNIzL4QQbkMCeiGEcEo+Hl2SnnkhhHAHFguaV3J5l0IIIdyUdt1LFJBgXgghypKmocuz2KcphSE3l+jOh8unTEII4e4klndJgnkhhChDr3zSAKVpeKVnYDDn4pWeiU96BkHNj6HXy9SUQgjhlATzLsmYeSGEKEM+vgZmL29GWrKZ1V+dp8kdvtRv4seCBb+Wd9GEEMKNSQTvigTzQghRDvwCjQwdUwuA3Nzcci6NEEK4OYnlXZJhNkIIIYQQQlRQ0jMvhBBCCCHcm/TMuyTBvBBCCCGEcG/yYD2XZJiNEEIIIYQQFZT0zAshhBBCCPcmHfMuSTAvhBBCCCHcnETzrkgwL4QQQggh3JvE8i7JmHkhhBBCCCEqKOmZF0IIIYQQ7k165l2SnnkhhBBCCCEqKOmZF0IIIYQQ7k3mmXdJgnkhhBBCCOHeJJZ3SYbZCCGEEEIIUUFJz7wQQgghhHBv0jPvkgTzQgghhBDCzUk074oE80IIIYQQwr1JLO+SjJkXQgghhBCigpKeeSGEEEII4d6kZ94l6ZkXQgghhBCVwvTp0/H19S3vYpQpCeaFEEIIIYSooGSYjRBCCCGEcG8yzMYl6ZkXQgghhBC3hX379tG3b198fHwICAhgyJAh/Pnnn7b1o0ePpmvXrrbly5cvo9PpuOOOO2xp6enpeHh48NVXX5Vp2V2RYF4IIYQQQrg3TbN/FcOpU6eIiYkhISGBxYsX88EHH7B79266detGWloaADExMfz8889kZ2cDsHnzZkwmE3v27LHl2bZtG3l5ecTExJTOuZWQDLMRRaaUsjVoIUTJ5ebmkpWVBUBqaioeHh7lXCIhhHDk5+eHVsxAusRK4bCzZ88mNzeXNWvWUKVKFQBatWpF48aNiYuL4x//+AcxMTHk5OSwY8cOunXrxubNmxk4cCBr1qxh69at9OvXj82bNxMdHU14eHjJC1UKJJgXRZaWlkZAQEB5F0OISmnixInlXQQhhHAqJSUFf3//cjm2mlLykHXLli307NnTFsgDNGzYkBYtWvDjjz/yj3/8g6ioKGrUqMHmzZttwfzjjz9OVlYWmzZtsgXz7tIrDxLMi2Lw8/MjJSXF6br09HTuuusuvvvuu9tuaihXpE4cSZ04kjpxJHXiSOrEkdSJo1tVJ35+fqW2r/KQlJREy5YtHdLDw8NJTEy0LRcE8ampqfz666/ExMSQkZHBkiVLyMnJYefOnYwZM6YMS35jEsyLItM0zeUvc51Oh16vx9/fXz5Ur5A6cSR14kjqxJHUiSOpE0dSJ46kTpyrUqUKFy9edEi/cOEC0dHRtuWYmBiefPJJNm7cSEhICA0bNiQjI4Onn36aDRs2kJOTY3eTbHmTG2CFEEIIIUSl16VLF9avX09SUpIt7dChQ/z222906dLFllbQE//WW2/ZhtO0bNkSLy8vZs6cSc2aNYmMjCzr4rskPfNCCCGEEKLSsFgsLFmyxCF9woQJLFiwgD59+vDss8+SnZ3Nc889R61atRg5cqQtX8OGDQkLC2PTpk28/fbbAOj1ejp37sz333/PsGHDyupUCkWCeVGqjEYjY8aMwWg0lndR3IbUiSOpE0dSJ46kThxJnTiSOnF0u9dJdnY2Q4cOdUhftGgRmzZtYsqUKQwbNgy9Xk/v3r156623HO4HiImJYcmSJXY3unbr1o3vv//erW5+BdCUUqq8CyGEEEIIIYQoOhkzL4QQQgghRAUlwbwQQgghhBAVlIyZFyWyfft2vvnmG/bv38+ZM2cYOnQoTz/99E23O3v2LP3793dIb9q0KXFxcbegpGWnuHUC+XMDv/XWW2zcuJG8vDw6dOjAU089RUhIyC0u9a23efNm3n//fU6ePElERAQjR4502gauVVnaSXx8PK+//jq//fYbPj4+/PWvf+WJJ5646ZNelVJ88sknfPXVVyQnJxMdHc2TTz5Js2bNyqjkt05x6+See+7h3LlzDulbt27FZDLdquKWiVOnTrFo0SL279/PsWPHqF27Nl9++eVNt6vM7aS4dVJZ28m6detYtWoVBw8eJDU1lVq1anH//ffTv3//Gz6ZtTK3ESHBvCihn376iSNHjtC6dWtSU1OLvP24ceNo27atbdnb27s0i1cuSlInU6dO5fjx40ydOhWj0cjcuXMZP348CxcuxGCouG/XvXv38s9//pN7772XyZMn8/PPP/Ovf/0Lb29vevXqddPtK3I7SU1N5fHHH6dWrVq88cYbXLx4kdmzZ5OdnX3TH3mffPIJ8+bN4+9//zv169fnq6++4u9//zuffvopNWrUKKMzKH0lqROAO++8k4cfftgurTLc6Hfs2DG2bt1KkyZNsFqtWK3WQm1XWdsJFL9OoHK2k08//ZSqVasyceJEgoKC2LFjB6+88goXLlxg7NixLrerzG1EAEqIErBYLLb/33333WrmzJmF2u7MmTOqTZs2au3atbeqaOWmuHXy66+/qjZt2qiffvrJlnbixAnVtm1btWbNmlIvZ1kaN26cGjVqlF3atGnT1JAhQ264XWVoJ/Pnz1ddunRRycnJtrSlS5eqdu3aqYsXL7rcLjs7W8XExKh3333XlmY2m9Xdd9+tZsyYcUvLfKsVt06UKtp7qqK59rPjhRdeUEOHDr3pNpW5nShVvDpRqvK2k6SkJIe0l19+WcXExNjV1bUqexsRSsmYeVEiOp00oesVt062bduGn58f7du3t6VFRkYSHR3N1q1bS6t4Zc5sNvPLL7849MD36dOHEydOcPbs2XIqWdnYtm0b7dq1IyAgwJbWu3dvrFYr27dvd7ndb7/9RkZGhl29eXh40KNHjwrdHqD4dVLZFeezozK3E5DvmOsFBgY6pDVo0ICMjAyysrKcblPZ24iQG2BFOZs5cybt2rWjd+/evPzyy6SkpJR3kcpNfHw8tWvXdhj3GBUVRXx8fPkUqhScPn2avLw8h6flRUVFARTq3CpyO4mPj3c4dz8/P0JCQm547gXrnNXb+fPnyc7OLt2ClqHi1kmB1atX07FjR7p27cr48eM5evTorSloBVCZ20lJ3S7tZO/evYSFheHj4+N0vbSRyq/iDsIVFZrRaGTIkCF06NABPz8/9u/fz/z58/n9998r/Pjw4kpNTXV4aAXkBznFuR/BXRSU/fpz8/f3t1vvTGVoJ8X9u6ampmI0Gh1u1vPz80MpRVpaGp6enqVe3rJQkrYeExND06ZNiYiI4MyZM8yfP5/Ro0fftmN/K3M7KYnbpZ3s3buXNWvWMHHiRJd5pI1Ufu7/TSjKVHp6OpcvX75pvurVq9901okbCQkJ4ZlnnrEtt2nThrp16zJx4kQ2bNhA7969i73v0lZWdVKRFKVOSqIitRNRNv75z3/a/t+qVSs6dOjA4MGDWbx4sV1bEbe326GdXLhwgalTp9K2bVseeOCB8i6OKEcSzAs769at4+WXX75pviVLljhcsiupzp074+XlxR9//OFWQVpZ1Ym/vz8XLlxwSE9LS7P1YruLotRJQdnT09Pt1hX0wBb13Ny1nbji7+/vcO5w87+rv78/ZrOZnJwcux61tLQ0NE1z2rNdURS3TpwJCQmhZcuW/PHHH6VVvAqlMreT0lTZ2klaWhrjx48nICCA119//Yb3FkgbqfwkmBd2BgwYwIABA8q7GG6lrOokMjKSnTt3opSyGzcfHx9PvXr1bvnxi6IodWI2mzEYDMTHx9OxY0dbuqtxnJVNZGSkwzjwgisbNzr3gnUnT54kOjralh4fH09ERESFvixe3DoRjipzOxHOZWdnM3HiRNLT01mwYAG+vr43zC9tpPKTG2CF29iyZQtZWVk0bty4vItSLjp16kRqaio7d+60pZ08eZJDhw7RuXPncixZyRiNRtq2bcv69evt0teuXUtUVBTVqlUr0v4qWjvp1KkTO3fuJC0tzZa2bt06dDodHTp0cLld8+bN8fHxYd26dba0vLw8NmzYUKHbAxS/Tpy5dOkSe/furTDtobRV5nZSmipLO8nLy2Pq1KnEx8fzzjvvEBYWdtNtpI1UftIzL0rk3LlzHDhwAMjvLThz5oztA+PaabDat2/PXXfdxfPPPw/A7Nmz0el0NG3aFD8/Pw4cOEBcXByNGzeme/fuZX4epam4ddK8eXM6duzISy+9xKRJk2wPjapfvz49evQo+xMpRY8++iiPPfYYM2fOpFevXuzatYvVq1czY8YMu3yVsZ0MHjyYL774gsmTJ/PII49w8eJF/v3vfzNo0CBCQ0Nt+f72t79x7tw5li9fDoDJZGLUqFH85z//ISgoiHr16vHVV1+RkpLi8CCciqa4dbJ69Wp+/PFHOnfuTGhoKKdPnyYuLg69Xl/h6wTyPy9+/PFHIP9zJCMjw/bZ0aZNG4KCgm6rdgLFq5PK3E5ee+01tmzZwsSJE8nIyGDfvn22dQ0aNMBoNN52bURIMC9K6JdffuHFF1+0LW/bto1t27bZ1hWwWCx2T+6LiopiyZIlLFu2jOzsbMLCwujfvz+PPfZYhZih5EaKWycAM2bM4K233uKVV17BYrHQvn17nnrqqQpfJy1btuT111/n/fffZ8WKFURERPDcc885zD1fGduJv78/77//Pm+88QaTJ0/Gx8eHAQMG8MQTT9jls1gsWCwWu7TY2FiUUixevJikpCSio6N55513KvxsHMWtk+rVq3Pp0iVmzZpFWloafn5+3HHHHTz22GMlvtnaHSQmJjrcnFmw/MEHH9C2bdvbqp1A8eqkMreTgucwzJkzx2HdypUrqVat2m3XRgRoSilV3oUQQgghhBBCFJ2MmRdCCCGEEKKCkmBeCCGEEEKICkqCeSGEEEIIISooCeaFEEIIIYSooCSYF0IIIYQQooKSYF4IIYQQQogKSoJ5IYQQQgghKigJ5oUQQgghhKigJJgXQlRYI0eORNO08i4GAPv378dgMLB27Vpb2saNG9E0jbi4uPIrmHALcXFxaJrGxo0bi7W9tCXn9u7di06nY9OmTeVdFCHKjQTzQriZ48ePM3bsWBo2bIi3tzdBQUE0atSI2NhYNmzYYJc3MjKSpk2butxXQbB7+fJlp+v/+OMPNE1D0zS2bNnicj8FeQpenp6e1K9fnyeffJLExMTinWgl8+STT9K5c2d69+5d3kUpE/Hx8UyfPp29e/eWd1FEGUlOTmb69OnF/kFSXDdqay1btmTAgAFMnjwZeaC9uF0ZyrsAQoirfvnlF7p164aHhwcjRoygSZMmZGVlceTIEdasWYOfnx89evQoteN9/PHH+Pn54eXlxfz58+natavLvC1btmTy5MkAJCYmsmrVKmbPns3atWvZtWsXRqOx1MpV0fz000+sXbuW5cuX26XHxMSQlZWFh4dH+RTsFoqPj+fFF18kMjKSli1blndxRBlITk7mxRdfBKB79+5ldtybtbWJEyfSrVs3Vq1axV133VVm5RLCXUgwL4QbefHFF8nMzGTv3r20aNHCYf358+dL7Vi5ubksWrSIoUOHEhAQwH/+8x/efvtt/Pz8nOavXr06Dz/8sG15/Pjx3HPPPXz77besWLGCoUOHllrZKpq5c+cSEhLCX//6V7t0nU6Hp6dnOZVKiNtD165diYyM5IMPPpBgXtyWZJiNEG7kyJEjBAcHOw3kASIiIkrtWN988w0XL14kNjaWkSNHkpGRwRdffFGkffTt2xeAo0ePuszz/vvvo2kaK1eudFhntVqpUaOGXW/bmjVruP/++6lTpw5eXl4EBgbSp0+fQo+J7d69O5GRkQ7p8fHxaJrG9OnT7dKVUrz//vu0adMGb29vfH196dGjh8OQJlfy8vJYvnw5vXr1cuiBdzbO+dq0uXPn0qBBAzw9PWnWrBnffvstAPv27aNfv374+/sTHBzM+PHjyc3NdXqex48f59577yUgIAB/f38GDhzI8ePH7fJarVZeeeUVYmJiiIiIwGg0UqtWLf72t7+RkJDg9LyWLl1K9+7dCQwMxNvbmwYNGjB+/HjMZjNxcXG2K0SjRo2yDb8qTG9tfHw8w4cPJzw8HJPJRN26dZk2bRqZmZl2+aZPn46maRw6dIhp06ZRo0YNTCYTLVq0YNWqVTc9Dlwdp75+/XpeeuklateujZeXF+3bt2f79u0AbNq0iS5duuDj40PVqlX517/+5XRfy5cvp3Pnzvj4+ODr60vnzp1ZsWKF07wffvghDRs2xGQyUa9ePebMmeNyCEhKSgpPP/009erVw2QyERoayoMPPujwNyyqwtbzje470TSNkSNHAvntNioqCsjvdCj4mxe81659f33++ec0b94cT09PatWqxfTp08nLy7Pbd2Hfp4Vpa5qm0bdvX1avXk16enoRa0qIik965oVwI3Xr1uXQoUMsW7aMQYMGFWobi8Xickx8Tk6Oy+0+/vhjoqKi6Nq1K5qm0apVK+bPn8+jjz5a6PIeOXIEgJCQEJd5HnjgASZNmsTChQvp37+/3br169dz5swZ2/AdyP/yTkxMZMSIEdSoUYMzZ87w0Ucfceedd7Jhw4YbDgUqjuHDh/P5558zZMgQRo0aRU5ODp9++im9e/dm2bJlDmW+3q5du0hPT6ddu3ZFOu57771HUlISjz76KJ6enrz99tsMHDiQr776ijFjxvDggw8yYMAA1qxZwzvvvENYWBjPPfec3T4yMjLo3r077du3Z8aMGRw5coS5c+eyfft29uzZY/vxZzabeeONNxg8eDD33nsvPj4+/Pzzz3z88cf8+OOPDsOknn32WV599VUaN27MpEmTqFq1KseOHWPp0qW89NJLxMTEMG3aNF599VXGjh1r+5uEh4ff8JxPnjxJu3btSElJ4YknnqB+/fps3LiRGTNmsHXrVtavX4/BYP+1FBsbi4eHB1OmTMFsNjNnzhwGDBjA4cOHnQaDzjzzzDNYLBYmTJiA2Wxm1qxZ9OnTh4ULFzJ69GjGjh3LsGHD+PLLL3n++eeJioqyuwo1d+5cxo0bR8OGDXn++eeB/HY6YMAA5s2bx9ixY21558yZw6RJk2jRogWvvvoqmZmZvPnmm4SFhTmUKyUlhU6dOvHnn3/yyCOP0KRJE86dO8fcuXNp3749v/zyC7Vr1y7UOZa0nm+mUaNGzJ49m0mTJjFw4EDb55Ovr69dvpUrV3L8+HHGjRtHREQEK1eu5MUXX+TkyZMsWLCgyOdS2LbWsWNH5s2bx48//ki/fv2KfBwhKjQlhHAb27ZtUx4eHgpQ9evXV6NGjVJz585Vv//+u9P8tWvXVsBNX5cuXbLb7syZM0qv16sXXnjBljZnzhwFOD0WoPr06aMuXbqkLl26pA4fPqzeeust5eHhoQICAtSFCxdueF5DhgxRJpNJJSYm2qU//PDDymAw2G2fnp7usP358+dVcHCw+stf/mKXHhsbq67/GOvWrZuqXbu2wz5OnDihALtzXrZsmQLUvHnz7PLm5uaqNm3aqMjISGW1Wm94bvPnz1eAWrFihcO6DRs2KEAtWLDAIa1atWoqOTnZlv7rr78qQGmappYuXWq3n9atW6uIiAiH8wTUhAkT7NILzumxxx6zpVmtVpWZmelQvo8++kgB6osvvrCl7dixQwGqR48eKisryy6/1Wq11Yezc7uZhx56SAHqu+++s0ufMmWKAtRHH31kS3vhhRcUoO666y67v8HOnTsVoJ555pmbHm/BggUKUK1atVI5OTm29BUrVihAGQwG9fPPP9vSc3JyVEREhOrQoYMtLTExUfn4+Ki6deuqlJQUW3pKSoqqU6eO8vX1VUlJSUoppZKSkpS3t7dq1KiRysjIsOU9deqU8vHxUYDasGGDLX38+PHK09NT7d27167c8fHxys/PT8XGxtrSilLfRalnZ++hAoBdGZy9h65fp9Pp1K5du2zpVqtVDRgwQAHqp59+sqUX5X1amHPfsmWLAtSbb77pMo8QlZUMsxHCjXTs2JFdu3YRGxtLSkoKCxYs4IknnqBx48bExMQ4vfQeGRnJ2rVrnb769Onj9DhxcXFYrVZGjBhhSxs2bBgeHh7Mnz/f6TZr1qwhNDSU0NBQoqOjefLJJ2ncuDFr1qxx2ut4rdjYWHJycuyG8aSnp/P111/Tr18/u+19fHzs8iQkJKDX62nfvj07duy44XGKavHixfj5+TFgwAAuX75seyUnJ3PPPfcQHx9vu/rgyqVLlwCoUqVKkY49cuRIAgICbMvNmzfH39+fatWqOVyV6dKlC+fPn3c6hOCZZ56xWx44cCANGjSwuxlX0zS8vLyA/Cs5ycnJXL58mZ49ewLY1eunn34KwIwZMxzG+xcMcSgOq9XKypUradWqlcO9BVOnTkWn0/H11187bDdhwgS7Y95xxx34+vre9O9yrb/97W92Vx4Kenfbt29P27ZtbelGo5F27drZ7Xvt2rVkZGQwfvx4/P39ben+/v6MHz+e9PR01q1bB+S/RzIzMxk3bhze3t62vDVq1GDYsGF2ZVJK8emnnxITE0P16tXt2p+Pjw8dOnRgzZo1hT7HAsWt59LSu3dvWrdubVvWNI2nnnoK4JYeNzg4GICLFy/esmMI4a5kmI0QbqZZs2a2MdYnT55k06ZNfPTRR2zZsoV7773XYUiEj48PvXr1crqvxYsXO6QppZg/fz7NmzfHarXajXfv3LkzixYtYsaMGQ6X4du3b8/LL78MgMlkonbt2tSqVatQ51QQsC9cuJDHH38cyB+TnZGRYfeDAuDYsWM8++yz/PDDDyQnJ9utK+055f/44w/S0tJuODzkwoULREdHu1xfUCZVxGnx6tSp45AWFBREzZo1naYDJCQk2A1rCAwMdHofRaNGjVi+fDkZGRm2H0dffvkls2bNYs+ePQ7j75OSkmz/P3LkCJqmubxvo7guXbpEeno6TZo0cVhXpUoVqlat6vTHqrN6Cg4OdjnW35nr91FQnwVjwK9fd+2+T5w4AeC03AVpBeUu+Ldhw4YOeRs3bmy3fOnSJRISEmw/kp3R6Yre31bcei4tjRo1ckgrOPdbedyC95+7PHdCiLIkwbwQbqx27dqMGDGC4cOH07VrV7Zu3crOnTvp0qVLsfe5adMmjh07BkD9+vWd5vn2228ZMGCAXVpISIjLHw03YzAYeOihh5gzZw5Hjx6lXr16LFy4kKCgILsx6enp6cTExJCRkcHEiRNp1qwZfn5+6HQ6ZsyYwf/+97+bHsvVl/n1N+BBfgAQGhrKZ5995nJ/N5rHH7AFYkWdb1+v1xcpHYr+g6HAsmXLuP/++2nXrh3//ve/qVmzJp6enlgsFvr164fVarXLX5Ie+NLmqj6KUhfFqetbraD8vXr14umnny63chTl/eLOxy14/7n6YSREZSbBvBAVgKZptG/fnq1bt3LmzJkS7Wv+/PmYTCYWLlzotOfvscce4+OPP3YI5ksqNjaWOXPmsHDhQsaMGcPGjRsZO3YsJpPJlmf9+vWcPXuW+fPnM2rUKLvtr7/505UqVaqwa9cuh3RnvYL169fn8OHDdOjQweFGvsIqCPaLMuyjtCQnJ3P+/HmH3vk//viDsLAwW6/8okWL8PT0ZMOGDXbDPw4ePOiwz+joaL7//nt+/fXXG97UW9RgPzQ0FD8/Pw4cOOCwLikpiXPnzrnlfPUFvfoHDhzgzjvvtFv3+++/2+Up+PfgwYMu8xYIDQ0lMDCQ1NTUYv9Idqao9VwwPCwxMdFuqJiz90th/uZ//PGHQ9r19VRw3MK+Twtz3IIrjDf78S1EZSRj5oVwI2vXrnXaM5WVlWUbP3v95fqiSElJYcmSJfTp04f77ruPIUOGOLz69+/P999/z7lz54p9HGdatmxJ8+bNWbx4MYsWLcJqtRIbG2uXp6Cn9Ppe1zVr1hR6vHx0dDRpaWns3LnTlma1Wpk9e7ZD3hEjRmC1Wpk6darTfV24cOGmx2vVqhX+/v62qQ7L2syZM+2Wv/76aw4dOmT3Y0yv16Npml0PvFLKNmzqWg899BAA06ZNw2w2O6wv+NsU/Pgp7BUJnU7HPffcw549e1i9erXDOVitVgYOHFiofZWl3r174+PjwzvvvENaWpotPS0tjXfeeQdfX1/bU3979+6Nl5cX7733nt0UkKdPn3a4+qPT6Rg2bBg7d+5kyZIlTo9dnPHfRa3ngiFkBeP+C8yaNcth34X5m69du5bdu3fblpVSvP766wB2bbIo79PCHHf79u0YDAY6d+7sMo8QlZX0zAvhRiZNmkRCQgL9+/enWbNmeHt7c+rUKT777DMOHz7MiBEjaNasWbH3//nnn5OVlcXgwYNd5hk8eDBxcXF88sknDjdXllRsbCyTJ0/mtddeIzo6mg4dOtit79KlCxEREUyePJn4+Hhq1KjB3r17WbRoEc2aNWPfvn03PcbYsWOZNWsWAwcOZMKECRiNRpYsWeL0R1LBdJTvvvsuu3fv5u677yYkJITTp0/z008/cfTo0ZuO89Xr9QwaNIjly5eTk5Njd6XhVgsJCWHZsmWcPXuW7t2726amDA8Pt5tPf8iQISxdupSePXsyYsQIcnNzWb58ucOc4wDt2rXj6aef5rXXXqN169bcf//9REREcOLECZYsWcLOnTsJDAykcePG+Pn5MXfuXLy9vQkMDCQsLMx2U60zr776KmvXrmXAgAE88cQT1KtXj82bN/PFF18QExPj8OPOHQQGBvL6668zbtw42rdvb5t3PS4ujqNHjzJv3jzbjcxBQUH861//YsqUKXTq1IkRI0aQmZnJBx98QP369dmzZ4/dvl955RW2bt3Kfffdx3333UeHDh0wGo2cPHmSVatW0aZNG7tnFBRWUer5wQcfZNq0aYwdO5aDBw9SpUoVVq9e7XS62+DgYOrVq8d///tf6tatS3h4OD4+Ptxzzz22PC1atKBnz56MGzeOqlWrsmLFCtatW8fw4cPp2LGjLV9R3qc3a2tKKVavXk2/fv2KfYVNiAqtXObQEUI49cMPP6gnnnhCNW/eXAUHByu9Xq+qVKmiunfvrj7++GNlsVjs8teuXVs1adLE5f4Kpp0rmJqybdu2ymAwOEwRea3s7Gzl5+enoqOjbWlcmSKwpM6fP68MBoMC1Msvv+w0z6+//qr69u2rAgMDla+vr+rWrZvavHmz0yn0XE2r991336kWLVooo9Goqlatqp566il18OBBl9PqLVy4UHXp0kX5+fkpk8mkateurQYOHKj++9//Fuq8CqZzXLJkiV36jaamdDbNXu3atVW3bt0c0gumaTxx4oQtrWBqv2PHjqn+/fsrPz8/5evrq/r376+OHDnisI///Oc/qlGjRspkMqmIiAg1ZswYlZCQ4DD9YIHPPvtMderUSfn6+ipvb2/VoEEDNWHCBLspHr/77jvVqlUrZTKZFOC07Nc7fvy4evjhh1VoaKjy8PBQUVFRaurUqXZTObo655vV0/UKpqa8djrIAq7O21WbWrZsmerYsaPy9vZW3t7eqmPHjurrr792etwPPvhARUdHK6PRqOrWratmz55tm8L0+rJkZGSol156STVt2lR5enoqX19f1bBhQ/Xoo4+q7du32/IVdSrQwtazUkpt375dderUSZlMJhUcHKzGjBmjkpKSnNbRjh07VKdOnZS3t7cCbNNLXjul5GeffaaaNWumjEajqlGjhvq///s/ZTabHY5blPfpjdraxo0bFaC+/fbbQtWNEJWNplQx76gSQghh069fPzIyMtiyZUuZHK979+7Ex8cTHx9fJscT4kbi4+OJiorihRdecHjK8q02cOBATp06xc8//+w2N24LUZZkzLwQQpSCWbNm8dNPPxVrbnAhRPHs2bOHFStWMGvWLAnkxW1LxswLIUQpaNKkyS2fzk8IYa9Vq1YOU6sKcbuRnnkhhBBCCCEqKBkzL4QQQgghRAUlPfNCCCGEEEJUUBLMCyGEEEIIUUFJMC+EEEIIIUQFJcG8EEIIIYQQFZQE80IIIYQQQlRQEswLIYQQQghRQUkwL4QQQgghRAUlwbwQQgghhBAVlATzQgghhBBCVFD/D9X5uaABbV7aAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.cla()\n",
+ "plt.clf()\n",
+ "fig = plt.gcf()\n",
+ "\n",
+ "scaled_X_test = fitted_pipeline[:-1].transform(X_test)\n",
+ "estimator = fitted_pipeline[-1].best_estimator\n",
+ "explainer = fasttreeshap.TreeExplainer(estimator, algorithm=\"v2\", n_jobs=-1)\n",
+ "shap_values = explainer.shap_values(scaled_X_test)\n",
+ "\n",
+ "shap.summary_plot(shap_values, scaled_X_test, max_display=n_features, show=True)\n",
+ "plt.close()\n",
+ "plt.cla()\n",
+ "plt.clf()"
+ ]
+ }
+ ],
+ "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.10.13"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/data/cardio_train.csv b/data/cardio_train.csv
new file mode 100644
index 0000000..6b06c88
--- /dev/null
+++ b/data/cardio_train.csv
@@ -0,0 +1,70001 @@
+id;age;gender;height;weight;ap_hi;ap_lo;cholesterol;gluc;smoke;alco;active;cardio
+0;18393;2;168;62.0;110;80;1;1;0;0;1;0
+1;20228;1;156;85.0;140;90;3;1;0;0;1;1
+2;18857;1;165;64.0;130;70;3;1;0;0;0;1
+3;17623;2;169;82.0;150;100;1;1;0;0;1;1
+4;17474;1;156;56.0;100;60;1;1;0;0;0;0
+8;21914;1;151;67.0;120;80;2;2;0;0;0;0
+9;22113;1;157;93.0;130;80;3;1;0;0;1;0
+12;22584;2;178;95.0;130;90;3;3;0;0;1;1
+13;17668;1;158;71.0;110;70;1;1;0;0;1;0
+14;19834;1;164;68.0;110;60;1;1;0;0;0;0
+15;22530;1;169;80.0;120;80;1;1;0;0;1;0
+16;18815;2;173;60.0;120;80;1;1;0;0;1;0
+18;14791;2;165;60.0;120;80;1;1;0;0;0;0
+21;19809;1;158;78.0;110;70;1;1;0;0;1;0
+23;14532;2;181;95.0;130;90;1;1;1;1;1;0
+24;16782;2;172;112.0;120;80;1;1;0;0;0;1
+25;21296;1;170;75.0;130;70;1;1;0;0;0;0
+27;16747;1;158;52.0;110;70;1;3;0;0;1;0
+28;17482;1;154;68.0;100;70;1;1;0;0;0;0
+29;21755;2;162;56.0;120;70;1;1;1;0;1;0
+30;19778;2;163;83.0;120;80;1;1;0;0;1;0
+31;21413;1;157;69.0;130;80;1;1;0;0;1;0
+32;23046;1;158;90.0;145;85;2;2;0;0;1;1
+33;23376;2;156;45.0;110;60;1;1;0;0;1;0
+35;16608;1;170;68.0;150;90;3;1;0;0;1;1
+36;14453;1;153;65.0;130;100;2;1;0;0;1;0
+37;19559;1;156;59.0;130;90;1;1;0;0;1;0
+38;18085;1;159;78.0;120;80;1;1;0;0;1;0
+39;14574;2;166;66.0;120;80;1;1;0;0;1;0
+40;21057;2;169;74.0;130;70;1;3;0;0;0;0
+42;18291;1;155;105.0;120;80;3;1;0;0;1;1
+43;23186;1;169;71.0;140;90;3;1;0;0;1;1
+44;14605;1;159;60.0;110;70;1;1;0;0;1;0
+45;20652;1;160;73.0;130;85;1;1;0;0;0;1
+46;21940;2;173;82.0;140;90;3;1;0;0;0;1
+47;20404;1;163;55.0;120;80;1;1;0;0;1;0
+49;18328;2;175;95.0;120;80;1;1;0;0;1;0
+51;17976;1;164;70.0;130;90;1;1;0;0;1;0
+52;23388;2;162;72.0;130;80;1;1;1;0;1;1
+53;18126;1;165;70.0;140;90;1;1;0;0;1;1
+54;19848;1;157;62.0;110;70;1;1;0;0;0;0
+56;18274;1;178;68.0;110;80;1;1;0;0;1;1
+57;21475;2;171;69.0;140;90;1;1;0;0;1;1
+58;20556;2;159;63.0;120;60;1;1;0;0;1;1
+59;19764;1;154;50.0;170;80;3;1;0;0;1;1
+60;17471;1;162;64.0;140;90;1;1;0;0;1;1
+61;18207;1;162;107.0;150;90;2;1;0;0;1;1
+62;18535;2;168;69.0;120;80;1;1;0;0;0;0
+63;16864;2;175;70.0;120;80;2;1;0;0;1;0
+64;16045;1;170;69.0;120;70;1;1;0;0;1;0
+65;18238;1;160;75.0;100;60;1;1;0;0;0;0
+66;18338;1;169;84.0;150;100;1;1;0;0;1;1
+67;19575;2;166;85.0;150;100;1;1;0;0;1;1
+68;14507;1;165;77.0;135;90;3;3;0;0;1;1
+69;19679;1;152;79.0;130;90;1;1;0;0;1;1
+70;21787;2;165;73.0;125;90;1;1;0;0;0;0
+71;17407;1;171;76.0;90;60;1;2;0;0;1;0
+72;22748;1;165;90.0;120;80;1;1;0;0;0;1
+73;15901;2;172;84.0;140;90;1;1;1;0;1;1
+74;20431;1;164;64.0;180;90;1;1;1;0;1;1
+77;19105;1;159;58.0;110;70;1;1;0;0;1;0
+79;20960;2;165;75.0;180;90;3;1;0;0;1;1
+81;20330;2;187;115.0;130;90;1;1;0;1;1;0
+83;22587;1;170;85.0;120;80;1;1;0;0;1;0
+86;20649;2;169;71.0;120;80;1;1;0;0;1;1
+87;21752;1;148;80.0;130;90;1;1;0;0;1;1
+88;19148;2;170;69.0;130;80;1;1;0;0;1;0
+90;22099;2;171;97.0;150;100;3;1;1;0;1;1
+92;19739;1;152;76.0;160;100;1;2;0;0;1;1
+94;20882;1;157;53.0;110;70;1;1;0;0;0;1
+95;23589;1;155;57.0;120;80;1;1;0;0;1;1
+96;21874;2;179;95.0;150;90;1;1;0;0;1;1
+97;23433;1;156;58.0;110;70;1;1;0;0;1;0
+100;21934;1;157;77.0;140;90;1;1;0;0;1;1
+103;16039;2;180;90.0;140;90;2;2;0;0;0;0
+104;20484;1;158;75.0;130;90;1;1;0;0;0;1
+105;20397;2;188;105.0;120;80;1;1;0;0;1;1
+106;21865;1;160;68.0;140;90;1;1;0;0;1;1
+107;18241;1;173;82.0;140;90;1;1;0;0;1;1
+108;20370;2;164;74.0;140;85;1;1;0;0;0;1
+109;16591;1;159;49.0;120;70;1;1;0;0;1;0
+111;19029;1;155;64.0;120;70;1;1;0;0;1;0
+113;19642;1;158;75.0;120;80;1;1;0;0;1;1
+114;19570;1;152;110.0;160;90;1;1;0;0;1;1
+115;22636;1;178;93.0;130;90;1;1;0;0;0;1
+116;18352;1;156;55.0;100;60;1;1;0;0;1;0
+117;21909;1;156;75.0;150;90;2;2;0;0;1;1
+119;19663;2;166;94.0;140;90;2;3;0;0;1;1
+121;23204;1;151;92.0;130;90;1;1;0;0;0;1
+122;19480;2;172;87.0;120;80;1;1;0;0;0;0
+123;23230;1;160;82.0;140;100;1;1;0;0;1;0
+124;19557;1;164;103.0;140;90;3;3;0;0;0;1
+125;18752;2;173;76.0;150;90;1;1;0;0;1;1
+126;22821;2;168;80.0;160;100;1;1;0;0;1;0
+127;15946;2;185;88.0;133;89;2;3;0;0;1;0
+129;21076;1;158;53.0;110;70;1;1;0;0;1;0
+131;19258;2;165;65.0;110;70;1;1;0;0;1;0
+132;18410;1;165;99.0;150;110;1;1;0;0;0;1
+133;21860;2;170;100.0;120;80;1;1;0;0;0;1
+134;17363;1;167;71.0;120;80;2;1;0;1;1;1
+135;14684;2;171;61.0;110;70;1;1;0;0;1;0
+136;18718;1;167;80.0;190;90;2;1;0;1;0;0
+137;17015;1;168;77.0;100;70;1;1;0;0;1;0
+138;18128;2;183;95.0;125;80;1;3;1;0;1;0
+139;21903;1;170;72.0;120;80;1;1;0;0;0;1
+140;20627;2;168;78.0;140;90;2;1;1;0;1;1
+141;14448;2;162;60.0;120;80;2;1;0;0;1;1
+142;14499;2;164;48.0;110;70;1;2;1;1;1;1
+143;15440;2;174;54.0;130;80;2;2;0;0;1;1
+144;16066;1;157;51.0;100;70;2;1;0;0;1;1
+145;23296;2;168;75.0;110;80;1;1;0;0;0;1
+146;21140;2;159;78.0;120;80;3;3;0;0;1;1
+148;16633;1;158;78.0;110;70;1;1;0;0;1;0
+149;18938;1;157;79.0;125;65;1;2;0;0;1;1
+154;22055;1;167;84.0;130;80;1;1;0;0;1;0
+157;21900;2;160;57.0;170;110;1;1;0;0;1;1
+158;19109;2;180;84.0;120;80;1;1;0;0;0;0
+161;19782;1;160;90.0;120;80;1;1;0;0;1;1
+162;14321;2;173;75.0;110;70;1;1;0;0;1;0
+163;18170;1;156;63.0;100;70;1;1;0;0;1;0
+164;21605;1;156;71.0;120;80;2;2;0;0;1;1
+166;19507;2;174;77.0;120;80;1;1;1;0;1;1
+167;18247;1;170;70.0;140;90;1;1;0;0;1;1
+168;14493;1;167;66.0;110;70;1;1;0;0;1;0
+169;21758;1;165;65.0;140;90;1;1;0;0;1;1
+170;19656;2;153;47.0;130;80;3;1;1;0;1;0
+171;21145;1;170;66.0;120;80;1;1;0;0;0;0
+172;21865;1;152;67.0;160;90;1;1;0;0;0;1
+173;22111;1;176;74.0;120;80;1;1;0;0;1;1
+174;18276;1;159;84.0;160;100;1;1;0;0;1;1
+175;21987;2;169;59.0;130;80;1;1;0;0;0;1
+176;20442;2;170;65.0;120;80;1;1;0;0;1;0
+177;22585;2;164;84.0;150;89;2;2;0;0;1;0
+178;21259;2;160;57.0;110;80;2;1;0;0;1;0
+180;21473;2;174;90.0;140;80;1;1;1;1;0;1
+182;20393;1;161;67.0;120;80;1;1;0;0;1;1
+183;17213;1;153;50.0;120;80;1;1;0;0;1;0
+184;22536;2;184;82.0;130;80;1;1;0;0;1;0
+185;16889;1;156;60.0;120;80;1;1;0;0;1;0
+186;18283;1;170;60.0;120;80;1;1;0;0;1;0
+189;19529;1;158;55.0;120;90;1;1;0;0;1;0
+190;22019;1;165;55.0;140;80;1;1;0;0;1;1
+191;23376;2;169;73.0;140;90;1;1;0;0;1;1
+192;21857;2;169;58.0;110;80;1;1;0;0;1;1
+196;16728;2;178;91.0;120;80;1;1;0;0;0;1
+197;18461;1;152;57.0;120;80;1;1;0;0;1;0
+199;18068;1;160;90.0;130;90;1;1;0;1;1;0
+200;23470;2;166;69.0;130;90;2;1;0;0;1;1
+201;20395;1;164;70.0;120;70;1;1;0;0;1;0
+202;17473;1;162;71.0;110;80;1;1;0;0;0;0
+203;16017;2;167;82.0;120;80;3;3;0;0;0;1
+204;21695;1;160;67.0;120;60;1;1;0;0;1;1
+206;20533;2;169;79.0;120;80;2;2;1;0;1;0
+207;20465;2;168;72.0;120;80;1;1;0;0;0;1
+208;18912;1;167;80.0;140;80;1;1;0;0;1;1
+209;18860;1;168;62.0;140;90;1;1;0;0;1;1
+210;22428;1;159;73.0;130;100;3;1;0;0;1;1
+211;19792;2;169;87.0;130;80;2;1;0;0;0;0
+213;16028;1;157;69.0;120;80;1;1;0;1;1;1
+215;17939;1;154;67.0;110;70;1;1;0;0;1;1
+216;23117;2;180;104.0;120;85;2;2;0;0;1;0
+217;15885;1;165;66.0;110;70;1;1;0;0;0;0
+218;18293;1;158;72.0;120;80;1;1;0;0;1;0
+219;17539;1;153;73.0;120;80;2;1;0;0;1;0
+220;20533;2;171;70.0;110;70;1;1;1;0;1;0
+223;21135;1;148;53.0;120;80;1;1;0;0;1;1
+224;19570;1;170;68.0;130;80;3;3;0;0;1;1
+225;15268;1;160;60.0;120;80;1;1;0;0;0;0
+227;22650;1;165;70.0;170;100;1;1;0;0;0;1
+229;20603;1;170;70.0;140;90;1;1;0;0;1;1
+230;22620;1;165;68.0;150;80;2;1;0;0;0;1
+231;21191;1;153;78.0;140;90;2;1;0;0;1;1
+234;16771;1;169;64.0;120;80;3;1;0;0;1;1
+235;21137;2;172;94.0;120;80;2;1;0;0;1;0
+237;19769;1;180;70.0;120;80;2;2;0;0;1;1
+238;16748;1;158;58.0;110;80;1;1;0;0;1;0
+239;16621;1;177;81.0;120;63;1;1;0;0;1;0
+240;21848;2;170;69.0;120;80;1;1;1;1;1;0
+241;18915;1;170;60.0;120;80;1;1;0;0;1;0
+242;18859;2;171;98.0;110;90;1;1;0;0;1;1
+244;18949;1;153;63.0;110;70;2;1;0;0;1;0
+245;21712;2;165;65.0;120;80;1;1;0;0;1;1
+248;22671;2;174;74.0;130;80;3;1;1;0;1;1
+250;23312;1;148;50.0;120;80;2;1;0;0;1;0
+251;23225;1;155;74.0;150;90;2;1;0;0;1;1
+252;21305;2;157;51.0;120;80;1;1;1;0;1;0
+253;19631;2;169;55.0;120;80;1;1;1;0;1;0
+254;19081;2;175;53.0;140;80;1;1;1;0;1;1
+255;22527;1;165;67.0;90;60;1;1;0;0;1;0
+257;14557;2;182;75.0;120;80;1;1;0;0;1;0
+258;18987;2;169;68.0;110;80;1;1;1;0;1;0
+259;15326;1;172;55.0;110;80;1;1;0;0;1;0
+260;21166;2;162;59.0;140;90;2;1;1;0;1;1
+261;14638;2;185;94.0;120;80;1;1;0;0;1;0
+264;21989;1;162;62.0;140;80;3;1;0;0;1;1
+265;19635;2;174;88.0;120;80;2;2;0;0;0;0
+267;22675;1;176;108.0;140;90;1;1;0;0;0;0
+271;21796;2;171;71.0;120;80;1;1;0;0;1;0
+272;15212;2;183;85.0;120;80;1;1;0;0;1;0
+275;18825;1;170;67.0;110;70;1;1;0;0;0;0
+276;20578;1;165;70.0;120;80;1;1;0;0;1;1
+277;19802;1;158;58.0;120;80;1;1;0;0;0;0
+278;14624;1;167;79.0;150;100;2;1;0;0;1;1
+279;23109;2;166;63.0;140;90;1;1;0;0;1;1
+281;18901;1;157;55.0;120;80;1;2;0;0;1;1
+283;17325;1;168;65.0;120;80;1;1;0;0;1;1
+285;17548;2;156;60.0;110;70;1;1;1;0;1;0
+286;21086;1;161;68.0;120;70;3;3;1;0;1;1
+287;15954;2;183;92.0;100;70;1;1;0;0;1;0
+288;18169;2;172;62.0;80;70;1;1;0;0;1;0
+289;21014;2;169;75.0;150;100;1;1;0;0;1;1
+290;18347;1;159;57.0;125;70;1;1;0;0;0;1
+291;22570;1;162;105.0;140;90;3;1;0;0;0;1
+292;19085;1;154;64.0;110;65;1;1;0;0;1;0
+293;16739;2;170;95.0;120;70;1;1;0;0;1;0
+294;21381;2;173;73.0;120;80;1;1;0;0;1;1
+295;18807;1;160;88.0;150;100;1;1;0;0;0;1
+296;23341;2;167;68.0;140;90;1;1;0;0;1;1
+297;18839;1;158;70.0;120;80;1;1;0;0;1;1
+299;21179;1;164;67.0;120;80;1;1;0;0;1;1
+303;19675;1;164;57.0;120;80;2;1;0;0;1;0
+305;17591;1;157;70.0;160;100;3;1;0;0;0;1
+306;19829;1;158;83.0;130;80;1;2;0;0;1;1
+308;15296;1;165;70.0;160;90;1;1;0;0;1;1
+309;21800;2;76;55.0;120;80;1;1;0;0;1;0
+310;17471;1;156;65.0;120;80;1;1;0;0;1;0
+311;15825;2;166;70.0;110;70;1;1;1;0;1;0
+312;14373;1;168;68.0;120;79;1;1;0;0;1;1
+314;17489;2;183;98.0;160;1100;1;2;1;0;1;1
+316;20259;2;169;65.0;130;80;1;1;0;0;0;0
+318;23376;2;175;75.0;180;100;3;1;1;1;1;1
+320;19545;2;168;72.0;120;80;3;1;0;0;1;1
+321;18444;2;173;75.0;130;80;2;1;1;1;0;0
+322;20490;2;185;81.0;110;70;1;1;0;0;1;1
+324;21377;1;149;60.0;120;80;1;1;0;0;0;0
+325;20421;2;170;68.0;150;100;1;1;0;0;1;1
+327;23444;1;158;69.0;120;80;1;1;0;0;1;0
+328;17326;2;180;90.0;130;80;1;1;1;0;1;1
+329;16799;1;153;60.0;120;70;1;1;0;0;0;0
+330;22573;1;170;65.0;120;80;1;1;0;0;1;1
+332;21971;2;170;82.0;120;80;1;1;0;0;1;0
+334;21932;2;157;60.0;160;1000;2;1;0;0;0;1
+335;18825;2;179;79.0;140;80;1;1;0;0;1;1
+336;16060;1;154;56.0;120;70;1;1;0;0;1;0
+337;17460;2;162;66.0;150;100;3;1;1;0;0;1
+338;18943;1;161;85.0;140;90;2;1;0;0;1;1
+340;14684;2;172;73.0;120;80;1;1;1;0;0;0
+341;21681;1;160;63.0;120;70;1;1;0;0;1;0
+342;21727;2;158;53.0;160;90;1;1;0;0;1;0
+343;18220;1;142;61.0;120;80;1;1;0;0;1;0
+344;17679;2;160;89.0;130;80;1;1;0;0;1;1
+345;19089;1;159;79.0;120;80;1;1;0;0;1;0
+346;21127;1;175;70.0;120;80;1;1;0;0;1;0
+347;23250;1;156;93.0;120;80;3;1;0;0;1;1
+350;14543;1;168;69.0;120;80;1;1;0;0;1;0
+351;22141;1;172;87.0;150;100;3;1;0;0;1;1
+352;21751;1;158;78.0;140;80;2;1;0;0;1;0
+354;21363;1;170;90.0;140;90;1;1;0;0;1;1
+355;22764;1;161;72.0;120;80;1;1;0;0;1;1
+356;18772;1;165;100.0;120;80;1;1;0;0;1;0
+357;18217;1;150;83.0;140;800;1;1;0;0;1;1
+358;21059;1;154;98.0;140;90;2;1;0;0;1;0
+359;21897;1;160;55.0;120;80;1;1;0;0;1;1
+360;19788;1;165;80.0;130;90;1;1;0;0;1;1
+361;21896;1;154;54.0;160;90;1;1;0;0;1;1
+362;20225;1;150;67.0;120;80;3;3;0;0;0;1
+363;20285;1;153;49.0;110;60;1;1;0;0;1;0
+366;17460;1;165;115.0;150;100;1;1;0;0;1;1
+369;19715;1;160;89.0;140;90;2;2;0;0;0;0
+371;22031;2;170;69.0;130;90;1;1;0;0;1;1
+372;16117;2;168;84.0;100;60;1;1;1;0;1;0
+373;16468;1;149;50.0;120;80;2;2;0;0;0;0
+374;22585;1;166;58.0;140;80;1;1;0;0;0;1
+375;16003;1;162;74.0;140;100;2;1;0;0;1;0
+376;19216;2;178;78.0;120;80;1;1;0;0;0;0
+377;19644;1;157;80.0;150;90;3;1;0;0;1;1
+378;23372;1;169;68.0;120;80;1;1;0;0;0;1
+379;22068;1;169;70.0;100;70;1;1;0;0;0;1
+380;15229;1;150;55.0;120;70;1;1;0;0;0;0
+382;21711;2;159;85.0;110;70;1;2;0;0;1;1
+383;20383;1;152;72.0;160;90;3;1;0;0;1;1
+384;20509;1;160;76.0;110;80;1;1;0;0;0;0
+385;18784;1;159;95.0;120;80;1;1;0;0;1;1
+386;21833;2;176;82.0;140;90;3;1;0;0;1;1
+388;21274;1;155;65.0;150;80;2;1;0;0;1;1
+389;20705;2;163;68.0;110;80;1;1;0;0;0;0
+390;22510;2;170;115.0;120;80;2;2;0;0;1;0
+391;20311;1;159;101.0;135;90;2;1;0;0;0;1
+396;21974;1;163;65.0;110;80;1;1;0;0;1;1
+398;21257;1;149;56.0;140;90;1;1;0;0;1;1
+399;18936;1;154;62.0;120;80;1;1;0;0;1;1
+400;20310;1;159;79.0;140;90;2;2;0;0;1;1
+402;21233;1;157;63.0;140;90;2;1;0;0;1;1
+403;21187;1;152;54.0;170;80;1;1;0;0;1;1
+404;18067;1;158;56.0;120;80;1;1;0;0;1;0
+408;16646;2;170;76.0;110;70;1;1;0;0;1;0
+409;20948;2;169;76.0;170;110;1;1;0;0;0;1
+410;22415;2;173;70.0;130;70;2;1;1;1;1;0
+412;18189;1;160;70.0;150;90;1;1;0;0;1;1
+413;23357;2;173;85.0;140;80;3;1;0;0;1;1
+414;19074;2;167;72.0;130;80;1;1;1;0;0;0
+415;21809;1;178;80.0;120;80;1;1;0;0;1;1
+416;23335;2;160;52.0;120;80;1;1;0;0;1;0
+417;18291;2;171;74.0;150;80;3;3;1;0;1;1
+420;17426;2;185;105.0;120;80;1;1;0;0;0;1
+422;23613;2;181;99.0;130;90;1;1;0;0;1;1
+423;22577;1;157;100.0;120;80;1;1;0;0;1;1
+426;17512;2;160;60.0;110;70;1;1;0;0;1;0
+427;17976;1;166;78.0;120;80;1;1;0;0;1;1
+428;19470;1;162;87.0;120;80;1;1;0;0;1;0
+431;17622;1;166;105.0;110;70;1;1;0;0;1;0
+432;16596;1;169;69.0;110;80;1;1;0;0;1;0
+434;14683;1;161;75.0;110;70;1;1;0;0;1;0
+438;21197;2;167;92.0;140;80;1;1;0;0;1;1
+440;21245;1;165;65.0;120;79;1;1;0;0;0;1
+441;20593;1;156;50.0;120;70;1;3;0;0;1;1
+442;19070;1;158;73.0;110;70;1;2;0;0;1;0
+443;21411;1;170;68.0;120;80;1;1;0;0;1;0
+446;19766;2;170;101.0;170;90;1;1;0;0;1;1
+447;19532;1;164;80.0;140;90;1;1;0;0;1;1
+449;18341;1;159;51.0;100;70;1;1;0;0;1;0
+450;14421;1;165;62.0;140;80;1;1;0;0;1;1
+451;18391;1;170;65.0;120;80;1;1;0;0;1;0
+452;18293;1;165;90.0;160;100;1;1;0;0;0;1
+453;16711;2;172;86.0;120;80;1;1;0;0;1;0
+454;19767;1;167;74.0;135;90;1;1;0;0;1;0
+455;19004;2;174;63.0;140;90;1;1;1;0;1;0
+456;22583;2;170;65.5;150;80;1;1;1;0;1;1
+457;20649;1;154;78.0;120;80;1;1;0;0;1;0
+458;23407;1;176;63.0;160;1000;2;2;0;0;0;1
+459;16299;2;160;58.0;110;70;1;1;0;0;1;0
+461;16069;2;160;85.0;120;80;1;1;0;1;1;0
+464;21168;2;160;68.0;170;90;1;1;0;0;0;1
+465;20595;1;160;60.0;150;90;1;3;0;0;1;1
+466;15222;2;169;86.0;120;80;1;1;0;0;0;0
+467;20531;1;162;57.0;100;80;2;1;0;0;1;0
+469;21417;1;173;99.0;140;80;2;2;0;0;1;1
+473;20597;1;160;70.0;130;100;3;1;0;0;1;1
+474;21078;1;157;142.0;120;80;1;1;0;0;1;1
+475;22007;1;159;97.0;120;80;1;3;0;0;1;0
+476;14767;1;170;68.0;120;80;1;1;0;0;1;0
+477;21234;2;182;91.0;160;90;3;1;0;0;1;1
+478;17021;1;165;70.0;130;70;1;1;0;0;1;0
+480;19780;1;172;104.0;120;80;1;1;0;0;1;1
+481;15186;1;170;81.0;120;79;1;1;0;0;1;0
+482;18704;1;154;81.0;140;1000;2;1;0;0;1;1
+483;18115;2;175;89.0;120;80;1;1;0;0;1;0
+484;20398;2;173;86.0;150;89;2;1;0;0;0;1
+485;21776;2;174;84.0;140;80;1;1;0;0;1;0
+486;22742;1;154;75.0;125;70;1;1;0;0;1;0
+487;16778;1;175;80.0;160;90;1;1;0;0;1;1
+488;23392;1;153;69.0;140;80;3;3;0;0;1;1
+490;15253;2;175;85.0;120;80;1;1;0;0;1;1
+491;16021;1;156;60.0;90;60;1;1;0;0;1;0
+492;20235;2;169;70.0;120;80;3;3;0;0;1;1
+493;23094;1;158;73.0;180;100;3;1;0;0;1;1
+494;22655;2;166;78.0;110;70;1;1;0;0;1;0
+495;21862;1;163;69.0;100;70;1;1;0;0;1;0
+500;20585;1;165;65.0;122;80;1;3;0;0;0;1
+502;18731;2;173;96.0;120;80;1;1;0;0;1;1
+506;19803;1;144;44.0;130;80;1;1;0;0;1;0
+508;23282;2;170;84.0;120;70;1;1;0;0;1;0
+510;16209;2;168;72.0;120;70;1;1;0;0;1;0
+511;23444;1;175;76.0;120;80;1;1;0;1;1;1
+513;18996;1;167;69.0;120;80;1;1;0;0;1;0
+514;19047;2;169;87.0;130;80;1;1;0;0;1;0
+518;18458;1;166;71.0;160;90;1;1;0;0;1;1
+519;22641;1;160;83.0;120;80;3;3;0;0;1;1
+520;14631;2;166;90.0;120;80;1;1;0;0;1;0
+521;19574;1;160;58.0;140;80;1;1;0;0;1;1
+522;19758;1;160;74.0;120;80;1;1;0;0;1;0
+524;16664;2;173;93.0;130;80;1;1;1;0;1;0
+525;15215;2;172;71.0;160;120;3;3;1;1;0;1
+526;19834;1;158;68.0;120;80;1;1;0;0;0;0
+527;17740;1;158;74.0;120;80;2;2;0;0;0;0
+528;15383;2;170;69.0;120;80;1;1;0;0;0;1
+531;16845;2;160;60.0;150;90;1;1;0;0;0;1
+533;22705;1;158;84.0;120;80;2;2;0;0;1;1
+537;16320;2;168;75.0;120;80;1;1;0;0;1;0
+538;19038;1;163;67.0;140;80;1;1;0;0;0;1
+539;19549;1;152;60.0;120;80;1;1;0;0;1;0
+540;21760;1;164;55.0;120;80;1;1;0;0;1;1
+542;19590;1;148;61.0;140;90;3;3;0;0;1;0
+543;19517;1;147;41.0;80;50;1;1;0;0;1;0
+545;22531;2;164;81.0;150;90;2;2;0;0;1;1
+546;15912;2;171;74.0;120;80;1;1;1;1;1;0
+548;23529;1;167;78.0;120;80;1;1;0;0;1;1
+550;21085;1;162;74.0;120;80;2;2;0;0;1;0
+551;20943;2;158;52.0;90;60;1;1;1;0;0;0
+552;16718;2;165;169.0;120;80;1;1;0;0;1;0
+553;16772;1;170;116.0;130;70;1;1;0;0;1;0
+555;18178;1;144;59.0;120;80;2;2;0;0;1;1
+558;21151;2;175;65.0;140;80;1;1;0;0;0;1
+559;18282;1;163;108.0;150;100;3;3;0;0;1;1
+562;16939;1;162;89.0;120;80;1;1;0;0;1;0
+563;23661;2;160;78.0;140;90;1;1;0;0;1;0
+564;22493;1;164;75.0;130;90;2;1;0;0;1;1
+565;21257;1;164;86.0;150;100;1;1;0;0;0;1
+566;14492;1;163;82.0;110;70;1;1;0;0;1;0
+567;22148;1;156;68.0;120;80;3;3;0;0;1;1
+568;18188;1;150;62.0;120;80;1;1;0;0;1;0
+569;18397;1;175;75.0;120;80;1;1;0;0;1;1
+572;15136;1;164;75.0;110;70;1;1;0;0;1;0
+573;21203;1;156;88.0;140;80;1;1;0;0;1;1
+574;23451;1;158;71.0;120;80;1;1;0;0;1;1
+577;19122;1;157;94.0;120;80;2;1;0;0;1;0
+580;20004;1;155;69.0;140;90;2;1;0;0;1;0
+581;23262;2;162;70.0;130;70;1;1;1;1;1;1
+582;18350;1;168;70.0;120;80;2;2;0;0;0;1
+583;18135;1;163;75.0;130;80;1;1;0;0;1;1
+584;21742;1;163;70.0;120;70;3;3;0;0;0;1
+585;20295;1;164;50.0;100;60;1;1;1;0;1;0
+586;21788;1;153;77.0;110;70;1;1;0;0;1;0
+587;22906;1;156;55.0;110;60;1;1;0;0;1;0
+589;21281;1;156;95.0;140;90;3;2;0;0;1;1
+591;21952;2;170;78.0;150;80;3;1;0;0;1;1
+592;21364;1;161;72.0;120;80;3;1;0;0;1;1
+593;17300;1;158;70.0;170;90;3;1;0;0;0;1
+594;16658;1;157;72.0;150;30;1;1;0;0;1;1
+596;20248;1;164;86.0;120;80;3;3;0;0;1;1
+599;20314;1;160;73.0;160;90;3;3;0;0;1;1
+600;22691;1;159;86.0;130;90;1;1;0;0;1;0
+602;19789;1;162;93.0;130;80;1;1;0;0;1;1
+604;21894;1;157;86.0;169;109;3;1;0;0;1;1
+605;23203;1;165;64.0;140;90;2;1;0;0;1;1
+606;22577;2;182;91.0;120;80;1;1;1;0;1;0
+608;17505;1;158;80.0;150;80;1;1;0;0;1;1
+609;21726;1;160;55.0;120;80;1;1;0;0;0;0
+610;16667;1;158;53.0;110;70;1;1;0;0;1;0
+611;18187;1;156;74.0;160;90;1;1;0;0;1;1
+612;20608;1;165;69.0;120;80;1;1;0;0;0;0
+613;17432;2;164;78.0;120;80;3;3;0;0;1;0
+614;17425;1;165;47.0;110;80;1;2;0;0;1;0
+615;23324;1;160;62.0;140;90;1;1;0;0;1;1
+616;18106;2;176;95.0;140;90;2;2;0;0;0;1
+618;16765;1;186;200.0;130;70;1;1;0;0;0;0
+620;19011;1;158;65.0;130;80;1;1;0;0;0;0
+622;20954;2;180;84.0;180;90;3;3;0;0;1;1
+623;21865;1;156;82.0;120;70;1;1;0;0;1;1
+625;20255;2;179;64.8;126;84;1;3;0;0;1;0
+627;19046;1;163;58.0;120;80;1;1;0;0;1;0
+628;22620;1;147;66.0;100;70;1;1;0;0;1;0
+630;18978;2;175;86.0;120;80;1;1;1;1;0;0
+631;17423;1;162;84.0;110;90;1;1;0;0;1;1
+632;16657;1;167;74.0;90;60;1;1;0;0;1;0
+633;21856;2;177;80.0;160;90;2;1;0;0;1;1
+634;21237;2;178;120.0;160;90;1;3;0;0;1;1
+638;19589;1;156;60.0;120;90;1;1;0;0;1;0
+641;19011;1;160;73.0;140;90;2;1;0;0;1;1
+647;18230;1;171;74.0;130;80;1;2;0;0;1;0
+649;20057;1;162;70.0;120;80;1;3;0;0;1;1
+650;14895;1;169;65.0;120;80;1;1;0;0;0;0
+651;21163;2;167;61.0;120;80;1;1;0;0;1;1
+652;22630;2;180;100.0;130;90;3;1;0;0;1;1
+653;19474;1;152;68.0;110;70;1;1;0;0;1;1
+655;19863;1;152;50.0;130;80;1;1;0;0;1;1
+656;21901;1;160;54.0;120;80;1;1;0;0;1;1
+657;16115;2;159;74.0;120;70;1;1;0;0;0;0
+658;18273;2;176;98.0;120;80;1;1;0;0;1;0
+659;19093;1;160;70.0;150;80;1;1;0;0;1;1
+660;18353;2;157;63.0;160;90;1;1;0;0;1;1
+661;19782;2;156;52.0;120;80;1;1;0;0;0;1
+662;21993;2;175;92.0;120;80;3;1;1;1;1;1
+663;20286;1;156;64.0;160;90;1;1;0;0;1;0
+664;15192;1;166;98.0;120;80;1;1;0;0;1;0
+665;20631;1;162;85.0;120;70;3;3;0;0;1;1
+667;20412;2;175;57.0;120;80;1;1;0;0;1;0
+669;20302;1;172;78.0;120;80;1;1;0;0;1;1
+670;18107;1;170;68.0;130;90;1;1;0;0;0;1
+672;21907;1;160;70.0;140;90;3;3;0;0;1;1
+677;16864;2;165;75.0;120;80;1;1;1;0;1;0
+678;18032;1;164;54.0;110;90;1;1;0;0;1;0
+679;14610;2;171;88.0;140;90;2;2;0;0;1;1
+680;15226;1;150;95.0;150;1033;1;1;0;0;1;1
+681;19099;1;156;65.0;120;150;2;1;0;0;1;0
+682;19649;1;165;68.0;120;80;1;1;0;0;1;0
+683;18825;2;164;68.0;140;100;1;1;0;1;1;1
+684;19756;1;152;60.0;120;60;1;1;0;0;1;0
+686;19136;1;165;92.0;120;80;2;1;0;0;1;1
+688;19115;1;170;101.0;120;80;1;1;0;0;1;1
+689;21966;1;159;101.0;170;90;1;1;0;0;1;1
+691;19589;1;158;86.0;160;50;2;3;0;0;1;1
+692;14681;1;174;84.0;120;80;1;1;0;0;0;0
+693;18983;1;164;73.0;120;80;1;1;0;0;0;0
+694;19066;1;160;75.0;120;80;1;1;0;0;1;0
+695;16091;1;172;52.0;110;70;2;1;0;0;1;0
+696;21939;2;160;85.0;130;90;2;1;1;0;0;1
+697;15975;1;158;69.0;110;80;1;3;0;1;1;0
+699;16822;1;147;61.0;110;80;1;1;0;0;1;0
+700;21681;2;167;73.0;180;80;3;3;0;0;0;1
+701;18056;1;170;90.0;120;80;1;1;0;0;1;0
+704;18958;1;149;62.0;180;110;2;1;0;0;1;1
+705;19801;1;168;80.0;120;80;1;1;0;0;1;0
+706;20571;1;159;68.0;120;80;1;1;0;0;1;1
+708;22464;1;161;62.0;140;80;2;2;0;0;1;0
+711;21791;1;150;88.0;120;80;1;1;0;0;1;0
+712;17381;1;151;117.0;160;90;2;1;0;0;0;1
+713;20449;1;151;53.0;120;80;1;1;0;0;1;0
+714;21197;1;162;60.0;120;80;1;1;0;0;0;0
+716;21985;1;168;65.0;158;91;1;1;0;0;1;1
+718;20463;1;166;69.0;120;80;1;1;0;0;1;0
+720;22616;2;168;69.0;120;80;1;1;0;0;0;0
+721;18387;1;148;59.0;150;100;1;1;0;0;0;1
+722;14549;2;182;60.0;110;80;1;1;1;0;0;0
+723;16987;2;170;74.0;120;80;3;3;0;0;1;0
+724;20389;1;158;60.0;130;60;1;1;0;0;1;1
+725;22505;2;162;73.0;120;70;1;1;0;0;1;1
+728;16822;1;165;64.0;140;40;1;1;0;0;1;1
+732;22737;1;166;76.0;120;80;1;1;0;0;1;0
+733;19740;2;173;74.0;110;70;2;3;0;0;1;0
+734;21179;1;162;70.0;110;70;1;1;0;0;1;0
+736;22061;1;169;62.0;120;80;1;1;0;0;1;0
+737;21013;2;164;62.0;120;80;1;1;0;0;1;0
+738;19632;1;167;90.0;140;100;3;1;0;0;1;1
+739;16943;2;169;75.0;120;80;1;1;1;0;1;1
+740;21016;1;162;84.0;120;80;1;1;0;0;0;1
+741;21161;2;170;65.0;120;80;1;1;1;0;1;0
+744;15214;1;159;104.0;140;90;2;1;0;0;1;0
+745;19924;1;167;70.0;110;70;2;1;0;0;0;0
+748;19005;2;176;90.0;140;100;1;1;0;0;1;1
+749;21398;1;170;88.0;140;90;1;1;0;0;1;0
+750;15991;1;156;60.0;120;80;1;1;0;0;1;0
+751;19484;2;170;70.0;120;80;1;1;0;0;1;0
+752;15922;1;158;76.0;150;100;3;1;0;0;1;0
+754;22023;1;148;50.0;120;80;1;2;0;0;1;1
+755;14365;1;170;67.0;120;80;2;1;0;0;1;0
+756;21239;1;165;69.0;120;70;1;1;0;0;1;0
+759;21025;1;162;78.0;150;90;2;1;0;0;0;1
+760;21863;1;152;54.0;130;90;1;1;0;0;1;1
+761;20647;2;171;78.0;110;70;3;3;0;0;0;0
+764;19436;2;165;68.0;120;80;1;1;0;0;1;1
+765;19731;1;164;85.0;110;80;1;1;0;0;1;1
+766;16729;1;169;73.0;120;80;1;1;0;0;0;1
+767;21090;1;147;64.0;110;80;1;1;0;0;1;0
+768;18163;1;159;62.0;120;80;1;1;0;0;0;0
+769;20369;2;161;83.0;140;80;1;3;0;0;1;0
+770;15337;1;160;52.0;120;70;1;3;0;0;1;0
+771;19650;1;164;85.0;145;90;1;1;0;1;1;1
+772;18021;1;165;67.0;150;90;2;1;0;0;1;1
+773;15447;1;171;75.0;110;70;1;1;0;0;0;0
+774;19460;1;170;76.0;110;70;1;1;0;0;1;0
+775;23307;1;164;80.0;130;80;1;1;0;0;0;0
+776;18980;2;178;85.0;120;80;1;1;0;0;0;1
+777;23334;1;147;110.0;140;90;3;1;0;0;0;1
+778;22781;1;167;100.0;140;80;3;1;0;0;1;1
+779;21159;2;160;55.0;120;80;1;1;1;1;1;0
+781;18015;2;171;98.0;120;80;1;2;1;0;1;0
+783;19481;1;156;72.0;180;90;2;1;0;0;1;1
+784;23291;1;167;87.0;130;80;1;1;0;0;1;0
+786;17580;1;168;79.0;140;70;2;1;0;0;1;1
+789;19908;1;147;60.0;110;80;1;1;0;0;1;0
+791;19834;2;175;70.0;120;90;1;1;0;0;1;0
+792;20705;1;159;55.0;120;80;1;1;0;0;1;0
+796;14480;1;165;74.0;120;80;1;1;0;0;0;0
+797;23578;1;157;69.0;110;90;1;2;0;0;1;0
+798;18115;1;160;84.0;120;80;1;2;0;0;1;1
+800;15357;1;160;90.0;110;80;1;1;0;0;0;1
+802;18390;1;158;60.0;140;90;3;1;0;0;1;1
+803;16758;1;166;62.0;110;70;1;1;0;0;1;0
+805;20430;2;173;101.0;200;1000;1;1;0;0;1;1
+806;16719;1;153;63.0;100;70;1;1;0;0;1;0
+807;16216;1;160;82.0;110;70;1;2;0;0;1;0
+809;19586;2;164;59.0;120;80;1;1;0;0;0;0
+810;14824;1;165;80.0;120;90;1;1;0;1;0;1
+811;22564;1;159;60.0;110;70;1;1;0;0;1;0
+812;16488;2;175;95.0;120;90;1;1;1;1;1;1
+813;18382;1;161;87.0;110;90;1;1;1;0;1;1
+815;21281;1;168;78.0;14;90;2;1;0;0;1;1
+816;16034;1;176;96.0;110;80;3;3;0;0;1;0
+817;17420;2;175;88.0;140;90;2;1;1;1;0;1
+818;21974;2;161;71.0;120;70;1;3;0;0;1;1
+819;19734;1;160;76.0;140;90;1;1;0;0;0;1
+820;17487;1;168;72.0;120;80;1;1;0;0;0;0
+821;18131;1;154;55.0;110;70;1;1;0;0;0;0
+822;22574;2;174;74.0;150;70;1;1;0;0;0;1
+823;17528;2;165;60.0;120;80;1;1;0;0;1;0
+826;16543;1;154;87.0;130;100;1;1;0;0;1;1
+829;15291;1;161;73.0;120;80;1;1;0;0;1;1
+830;17434;2;169;73.0;120;80;1;3;0;0;1;1
+831;20606;2;178;95.0;150;90;2;2;0;0;1;1
+833;19692;1;160;57.0;150;90;2;1;0;0;1;1
+836;18935;2;160;63.0;170;90;1;1;0;0;0;1
+837;21102;2;164;58.0;120;80;1;1;0;0;0;0
+838;21430;1;165;78.0;120;80;1;1;0;0;1;1
+839;23281;1;170;95.0;140;80;1;1;0;0;0;1
+840;20280;1;160;91.0;110;80;1;1;0;0;0;1
+841;15378;1;164;79.0;150;90;1;1;0;0;1;1
+842;17612;1;158;59.0;120;80;1;1;0;0;1;0
+843;19010;2;173;77.0;110;70;1;1;0;0;1;0
+844;19669;1;150;65.0;120;80;2;3;0;0;1;1
+845;16037;1;164;70.0;120;80;1;1;0;0;1;0
+846;14705;1;164;125.0;130;90;1;1;0;0;0;0
+847;18441;2;157;60.0;120;80;1;1;0;0;1;1
+848;19126;1;156;73.0;100;70;1;1;0;0;1;0
+851;19734;1;168;69.0;110;70;1;1;0;0;1;0
+855;20339;1;163;66.0;160;110;1;1;0;0;1;1
+856;16654;1;151;70.0;110;70;1;2;0;0;1;1
+857;23493;2;165;79.0;140;90;3;1;0;0;1;1
+859;14489;2;170;97.0;123;80;1;1;1;0;1;0
+860;23296;1;155;65.0;120;80;3;1;0;0;1;1
+864;21154;2;168;91.0;130;90;2;2;0;0;1;0
+866;18158;1;162;76.0;130;80;1;1;0;0;1;0
+869;18911;1;160;67.0;120;80;1;1;0;0;0;0
+870;23455;1;157;64.0;110;70;1;1;0;0;1;0
+871;19547;1;169;70.0;120;80;1;1;0;0;0;0
+872;17999;2;178;81.0;150;100;1;1;0;0;0;1
+874;21933;1;163;65.0;130;90;1;1;0;0;1;1
+875;22552;2;160;74.0;140;100;1;1;0;0;1;1
+877;20344;2;165;78.0;130;90;1;1;1;0;1;0
+879;23424;2;161;50.0;120;80;1;1;0;0;1;0
+883;18314;1;167;67.0;100;60;2;1;0;0;1;0
+884;18486;1;161;80.0;110;70;2;1;0;0;1;1
+885;17503;2;167;70.0;120;80;1;1;0;0;1;0
+886;18963;1;165;92.0;140;1000;1;1;1;0;1;1
+887;21122;1;163;106.0;140;90;2;1;0;0;1;1
+888;17388;1;166;60.0;120;80;1;1;0;0;1;0
+890;22738;1;151;70.0;130;79;3;3;0;0;1;0
+892;16018;2;166;58.0;125;80;1;1;1;1;1;0
+893;19674;2;170;81.0;130;90;2;1;1;0;1;0
+894;19042;1;165;62.0;125;80;1;1;0;0;1;0
+895;21122;1;162;60.0;150;100;1;1;0;0;1;1
+896;18946;1;153;99.0;110;70;1;1;0;0;1;1
+899;20661;2;168;73.0;130;90;1;1;0;0;0;1
+900;16756;1;158;64.0;90;60;1;1;0;0;1;0
+901;20411;1;161;75.0;120;80;1;1;0;0;1;1
+902;19786;2;184;84.0;120;80;1;1;0;0;0;0
+903;14533;1;168;47.0;120;70;1;1;0;0;1;0
+904;15283;2;178;103.0;120;80;1;1;0;0;1;0
+905;16675;1;160;114.0;110;80;1;1;0;0;1;0
+906;21287;2;174;95.0;130;90;3;3;0;0;1;1
+907;16229;1;160;72.0;150;110;1;1;0;0;1;1
+908;18761;1;158;89.0;140;90;1;1;0;0;1;1
+909;21644;1;160;85.0;140;100;1;1;0;0;0;1
+910;21738;1;165;78.0;130;80;1;1;0;0;0;0
+911;16677;2;174;83.0;140;90;2;1;0;0;1;1
+912;21406;1;167;80.0;130;80;3;3;0;0;1;0
+913;20457;2;169;68.0;70;110;1;1;0;0;1;0
+914;18209;1;165;55.0;100;80;1;1;0;0;1;0
+915;23370;1;165;70.0;150;90;1;2;0;0;0;1
+916;23391;1;170;92.0;120;80;1;2;0;0;1;1
+918;18470;1;168;72.0;130;80;1;1;0;0;1;1
+919;17370;2;173;95.0;140;100;1;1;1;0;1;1
+920;19593;1;152;62.0;120;80;1;1;0;0;1;0
+921;23653;1;154;79.0;130;80;1;1;0;0;1;0
+922;17329;1;170;70.0;120;80;1;1;0;0;1;1
+923;20284;1;158;86.0;160;100;2;1;0;0;1;0
+925;22048;1;163;72.0;120;80;1;1;0;0;1;1
+926;18314;2;178;80.0;140;90;3;1;0;0;1;1
+927;21257;1;158;85.0;140;90;3;3;0;0;1;1
+928;18190;1;166;57.0;190;1100;1;1;0;0;1;1
+929;19646;1;160;78.0;140;70;1;1;0;0;0;1
+930;15440;2;169;65.0;120;80;1;1;0;0;0;0
+931;18288;2;172;77.0;130;80;2;1;1;0;0;1
+932;21842;1;156;72.0;180;1000;2;1;0;0;0;1
+933;21068;1;165;67.0;140;90;1;1;0;0;0;1
+934;15423;1;165;63.0;120;80;1;1;0;0;1;0
+935;20339;2;160;66.0;120;80;1;1;0;0;1;0
+936;20311;1;154;69.0;110;70;2;1;0;0;1;0
+937;23463;2;170;72.0;120;80;1;1;0;0;1;0
+938;18235;1;162;62.0;110;70;1;1;0;0;1;0
+939;18117;1;162;71.0;120;80;1;1;0;0;1;0
+941;15377;1;168;75.0;120;80;1;1;0;0;1;0
+942;19203;1;160;48.0;130;80;2;1;0;0;1;0
+943;18779;1;162;56.0;120;80;1;1;0;0;1;0
+945;20281;1;160;60.0;120;80;1;1;0;0;1;0
+946;21094;2;167;90.0;130;85;2;2;1;1;1;0
+947;16871;2;179;74.0;120;60;1;1;0;0;1;0
+948;18119;1;156;93.0;140;90;1;1;0;0;1;1
+949;20508;1;160;55.0;130;80;1;1;0;0;0;1
+950;23155;2;174;86.0;120;80;1;1;0;0;0;0
+951;21252;2;176;97.0;140;90;3;1;0;0;1;0
+952;16231;1;150;70.0;145;110;1;1;0;0;1;1
+953;15928;2;163;70.0;110;70;1;1;0;0;1;0
+954;23259;2;170;69.0;120;80;3;3;0;0;1;1
+955;19054;1;150;61.0;150;90;3;3;0;0;1;1
+956;15970;1;162;88.0;100;80;1;1;0;0;1;0
+958;18265;2;168;75.0;110;80;1;1;1;1;1;0
+959;14598;2;176;82.0;120;80;1;1;0;0;1;0
+960;14611;1;152;57.0;120;80;1;1;0;0;1;0
+962;17511;2;172;70.0;110;70;1;1;1;0;1;0
+963;20310;1;169;75.0;130;90;1;1;0;0;1;0
+964;14562;2;175;72.0;120;70;1;1;0;0;1;0
+965;21921;1;157;78.0;150;100;3;3;0;0;1;1
+966;23320;2;170;89.0;130;90;2;1;0;0;1;1
+968;15282;1;162;78.0;100;60;1;1;0;0;1;0
+969;21221;1;158;94.0;140;90;2;1;0;0;0;1
+970;23391;2;157;71.0;150;80;1;2;0;0;1;1
+972;17053;2;176;79.0;140;90;2;2;0;0;1;1
+973;19676;1;161;91.0;120;80;1;1;0;0;0;1
+974;15878;1;160;95.0;130;80;1;1;0;0;0;0
+977;14650;2;168;68.0;140;90;1;1;0;0;1;1
+978;23638;1;165;60.0;120;80;1;1;0;0;0;1
+979;18816;1;162;68.0;120;80;1;1;0;0;1;0
+980;22542;1;160;55.0;150;80;1;1;0;0;1;1
+982;21101;2;170;90.0;110;70;1;1;1;1;1;0
+983;19687;1;150;55.0;110;70;1;1;0;0;1;0
+984;21802;2;162;62.0;130;80;1;1;0;0;0;1
+986;22615;2;171;108.0;161;73;1;1;1;0;1;1
+987;23475;1;165;68.0;120;80;1;1;0;0;0;1
+988;22469;1;155;69.0;130;80;2;2;0;0;1;0
+989;14648;1;163;71.0;110;70;1;1;0;0;1;1
+990;21901;1;165;70.0;120;80;1;1;0;0;1;0
+991;14549;2;165;85.0;120;80;1;1;1;1;1;0
+992;23393;1;155;62.0;120;80;1;1;0;0;1;0
+995;21143;1;164;61.0;100;70;1;1;0;0;1;0
+996;18085;1;162;72.0;100;70;1;1;0;0;1;0
+997;22547;1;161;93.0;140;90;2;1;0;0;1;1
+999;21250;1;157;68.0;110;80;1;1;0;0;1;0
+1000;22446;1;158;65.0;140;90;3;1;0;0;1;1
+1001;16621;1;153;57.0;120;80;3;2;0;0;1;1
+1002;20442;2;169;82.0;130;90;1;1;0;0;1;1
+1003;23168;2;150;56.0;130;80;2;1;0;0;1;1
+1004;22598;1;176;72.0;130;90;1;3;0;0;1;1
+1006;20317;1;154;85.0;160;100;3;1;0;0;1;1
+1008;23558;1;159;60.0;120;80;1;1;0;0;1;1
+1010;20219;2;146;45.0;120;80;1;1;0;0;1;0
+1011;19559;1;165;90.0;140;90;1;1;0;0;1;1
+1013;20006;2;167;65.0;120;80;1;1;0;0;0;0
+1014;19054;1;154;70.0;110;70;1;1;0;0;1;0
+1015;23407;2;170;74.0;140;1000;1;1;0;0;1;1
+1017;22833;1;150;56.0;130;80;1;1;0;0;1;1
+1018;20465;1;162;88.0;160;90;2;1;0;0;1;1
+1019;21737;2;167;74.0;110;70;1;1;0;0;0;0
+1021;19881;2;167;95.0;110;70;1;1;0;0;1;0
+1022;23587;1;163;103.0;140;100;1;1;0;0;1;1
+1023;17569;1;162;80.0;120;80;1;1;0;0;1;0
+1024;23385;1;151;63.0;120;80;2;2;0;0;0;1
+1026;16073;1;161;55.0;100;60;1;1;0;0;0;0
+1027;14647;2;183;91.0;130;80;2;1;0;0;1;1
+1028;14790;2;160;62.0;120;80;1;1;0;0;1;0
+1029;21126;1;164;77.0;110;80;1;2;0;1;1;0
+1031;21382;2;170;71.0;130;80;1;1;1;0;1;1
+1032;21652;2;167;70.0;160;90;2;1;1;1;1;1
+1033;15289;2;169;103.0;120;80;1;1;0;0;1;0
+1034;21163;1;155;83.0;120;80;2;1;0;0;1;1
+1035;16931;2;178;91.0;120;80;1;1;0;0;1;1
+1036;16151;1;169;69.0;110;70;1;1;0;0;1;0
+1037;16808;1;160;77.0;140;90;2;2;1;0;0;1
+1038;18879;2;171;113.0;130;80;1;1;0;0;1;0
+1039;15180;1;151;71.0;120;79;1;1;0;0;1;0
+1040;18996;1;179;129.0;140;90;3;3;0;0;0;1
+1041;21298;1;159;63.0;110;70;3;3;0;0;1;1
+1042;19624;1;170;60.0;120;80;1;1;0;0;1;0
+1043;19681;2;165;72.0;120;80;1;1;0;0;1;1
+1044;19086;1;165;65.0;120;80;1;1;0;0;1;0
+1045;21023;1;170;81.0;170;90;3;3;0;0;0;1
+1046;18152;1;174;94.0;140;90;3;2;0;0;1;0
+1047;17025;2;169;62.0;100;80;3;1;0;0;1;0
+1048;16012;2;162;76.0;120;80;1;1;0;0;0;0
+1049;17460;2;180;96.0;130;80;1;1;0;0;1;1
+1050;19750;1;170;69.0;130;70;1;1;0;0;1;0
+1051;19662;2;183;114.0;120;80;1;1;0;0;0;0
+1052;22801;1;164;79.0;130;80;3;2;0;0;1;1
+1053;19930;2;167;78.0;120;80;1;1;0;0;0;0
+1054;21128;2;168;73.0;160;80;1;1;0;0;1;1
+1055;15978;1;162;86.0;120;80;1;1;0;0;0;0
+1056;22442;1;161;94.0;140;80;3;2;0;0;1;1
+1057;20479;1;166;71.0;130;90;1;1;0;0;1;1
+1058;20927;2;163;96.0;130;60;1;1;0;0;0;0
+1059;22093;1;149;58.0;130;90;3;3;0;0;1;1
+1060;15381;2;160;68.0;120;80;1;1;0;0;0;0
+1062;14668;1;163;95.0;130;80;2;2;0;0;1;0
+1063;19203;1;160;71.0;160;100;3;1;0;0;1;1
+1064;19172;2;174;65.0;120;80;1;1;0;0;1;0
+1065;16542;2;170;96.0;140;80;2;1;0;0;1;1
+1066;18992;2;169;71.0;140;90;1;1;0;0;1;1
+1067;23406;1;151;58.0;120;70;1;1;0;0;1;1
+1069;22723;1;155;58.0;130;90;1;1;0;0;1;1
+1070;14572;1;161;82.0;150;80;2;1;0;0;1;1
+1071;19723;1;156;60.0;120;80;1;1;0;0;1;0
+1073;21103;1;166;70.0;140;80;1;1;0;0;0;0
+1074;22760;2;156;64.0;110;70;1;1;0;0;1;0
+1075;16208;2;179;87.0;140;78;1;1;1;1;1;1
+1076;15873;1;147;55.0;120;90;1;1;0;0;1;0
+1077;21276;2;171;86.0;160;110;1;2;0;0;1;1
+1078;19748;1;151;75.0;160;90;3;1;0;0;1;1
+1081;21336;1;174;65.0;120;80;1;1;0;0;1;1
+1082;21970;1;156;78.0;130;90;3;1;0;0;0;1
+1083;16884;2;174;68.0;160;100;1;1;0;0;1;0
+1084;17519;2;170;70.0;170;100;1;1;0;0;1;1
+1085;14539;1;152;72.0;110;70;1;2;0;0;1;1
+1086;23301;1;141;60.0;120;80;1;1;0;0;1;1
+1087;14473;1;173;73.0;160;100;1;1;0;0;0;1
+1092;21292;1;160;90.0;147;84;2;1;0;1;1;1
+1093;18112;2;169;74.0;120;80;1;1;0;0;0;0
+1094;16805;1;160;67.0;120;80;1;1;0;0;0;0
+1098;18946;1;152;124.0;120;80;2;2;0;0;1;1
+1100;19885;1;150;63.0;110;70;1;1;0;0;1;0
+1101;17285;1;167;75.0;100;70;1;1;0;0;1;0
+1102;21890;1;165;80.0;120;70;1;1;0;0;1;1
+1103;20307;1;165;95.0;130;80;1;1;0;0;1;0
+1104;23253;1;158;88.0;130;80;1;2;0;0;1;1
+1106;16003;1;159;77.0;120;80;1;1;0;0;1;0
+1107;22826;1;162;65.0;140;90;3;3;0;0;1;0
+1109;20488;1;176;120.0;150;90;1;1;0;0;0;0
+1110;15174;2;177;75.0;150;110;1;1;0;0;1;1
+1111;23203;2;172;74.0;140;70;2;1;1;0;1;0
+1112;22711;2;171;68.0;120;80;1;1;0;0;0;0
+1113;23222;2;173;90.0;120;80;1;1;0;0;1;1
+1115;21952;1;165;65.0;140;90;3;3;0;0;1;1
+1116;20415;1;165;75.0;140;80;2;1;0;0;1;1
+1118;14525;2;176;87.0;120;80;1;1;0;0;1;0
+1119;15433;2;172;90.0;160;90;3;1;0;0;1;1
+1120;18470;1;167;74.0;120;80;1;1;0;0;1;0
+1121;17317;1;168;68.0;140;90;3;3;0;0;1;1
+1122;20477;1;160;78.0;120;80;1;3;0;0;1;0
+1123;18173;1;164;84.0;120;80;1;1;0;0;1;0
+1124;15925;1;168;84.0;130;90;1;1;0;0;1;1
+1125;15472;2;170;80.0;110;70;1;1;1;0;0;0
+1126;21154;2;169;81.0;120;80;1;1;0;0;1;0
+1127;15393;2;178;79.0;110;70;2;2;1;0;1;0
+1128;20495;1;164;68.0;140;90;3;3;0;0;1;1
+1129;19811;1;163;63.0;120;80;3;3;0;0;1;0
+1130;20388;1;165;65.0;120;80;1;1;0;0;1;1
+1131;19700;2;160;58.0;120;80;1;1;1;0;1;0
+1133;21854;2;175;86.0;115;75;3;2;0;0;1;1
+1134;23194;1;152;64.0;140;90;1;1;0;0;1;1
+1135;19747;2;173;83.0;150;100;3;3;1;0;1;1
+1136;18235;1;156;60.0;110;70;1;1;0;0;1;0
+1137;17449;1;170;64.0;130;80;1;1;0;0;1;1
+1138;21817;2;164;75.0;150;90;3;1;0;0;0;1
+1141;23616;1;156;98.0;130;90;3;3;0;0;1;1
+1143;17405;1;155;79.0;110;70;2;1;0;0;1;1
+1144;19835;1;166;73.0;110;70;2;1;0;1;1;0
+1145;19639;2;163;51.0;140;90;1;1;1;0;1;1
+1147;15977;1;161;88.0;150;80;3;1;0;0;1;1
+1148;16068;2;174;61.0;120;80;1;1;0;0;0;0
+1150;23117;1;147;64.0;160;100;3;1;0;0;1;1
+1152;18873;1;174;86.0;120;80;1;1;0;0;0;0
+1158;15206;2;168;62.0;140;90;1;1;0;0;1;1
+1159;20345;2;167;84.0;110;75;1;1;0;0;1;1
+1160;15324;1;160;65.0;120;80;1;1;0;0;1;0
+1162;22552;1;160;67.0;130;80;1;1;0;0;0;1
+1163;21847;2;167;75.0;140;90;1;1;0;0;1;1
+1164;14635;1;166;105.0;110;70;1;1;0;0;1;0
+1166;19454;1;170;68.0;120;80;1;1;0;0;1;0
+1167;17360;2;172;90.0;110;70;1;1;1;0;1;0
+1168;14659;1;148;42.0;90;60;1;1;0;0;1;0
+1169;16307;2;171;115.0;150;90;1;1;0;0;1;1
+1171;20221;1;160;73.0;120;80;1;1;0;0;0;1
+1172;21297;1;173;88.0;150;90;2;1;0;0;1;1
+1174;20200;1;158;75.0;160;90;2;1;0;0;0;1
+1176;14890;2;165;60.0;120;80;1;1;0;0;0;0
+1177;19783;1;159;65.0;150;90;1;1;0;0;1;1
+1178;19068;1;170;70.0;120;80;1;1;0;0;0;1
+1179;18070;1;166;75.0;110;80;1;1;0;0;1;0
+1180;21232;1;167;75.0;110;70;1;1;0;0;1;0
+1182;15768;2;165;64.0;140;90;1;1;0;0;1;0
+1183;14373;1;169;67.0;120;80;1;1;0;0;1;0
+1184;18787;1;155;86.0;130;80;1;1;0;0;1;0
+1185;23154;1;165;95.0;150;80;3;3;0;0;1;1
+1187;15968;1;162;115.0;110;70;1;3;0;0;1;1
+1189;18187;1;158;69.0;120;80;1;1;0;0;1;0
+1190;21270;1;166;92.0;180;110;1;1;0;0;1;1
+1191;17545;1;156;116.0;110;70;2;1;0;0;1;0
+1192;20370;1;168;80.0;120;80;1;1;0;0;0;1
+1193;18131;1;160;83.0;110;80;1;1;0;0;0;0
+1194;23473;2;164;74.0;120;80;1;1;1;1;0;1
+1195;19671;1;162;75.0;120;80;1;1;0;0;1;0
+1196;23329;1;150;50.0;150;90;1;1;0;0;1;1
+1197;18227;1;167;70.0;120;80;1;1;0;0;0;0
+1198;19797;1;165;68.0;120;80;1;1;0;0;1;0
+1201;16182;2;171;71.0;120;80;1;1;0;0;0;0
+1203;15961;2;170;72.0;120;80;1;1;0;0;1;0
+1204;16882;1;166;100.0;110;70;1;1;0;0;1;0
+1205;18787;1;164;70.0;150;90;3;1;1;0;1;1
+1206;18332;2;160;67.0;120;80;1;1;0;0;1;0
+1207;19640;1;161;63.0;140;90;1;1;0;0;1;0
+1208;20631;1;161;68.0;120;90;1;1;0;0;1;0
+1209;15219;2;172;58.0;140;90;1;1;0;0;1;1
+1210;22149;2;178;107.0;150;80;3;1;0;0;1;1
+1211;19556;2;170;85.0;130;90;3;1;0;0;1;0
+1212;17476;2;174;75.0;140;90;3;1;0;0;1;1
+1213;22900;2;170;78.0;120;70;3;3;0;0;1;0
+1216;19905;1;165;75.0;120;80;1;3;0;0;1;0
+1220;22038;1;156;60.0;130;80;3;3;0;0;1;1
+1221;15207;2;174;105.0;130;90;1;1;0;0;1;0
+1222;16788;1;162;80.0;160;80;1;1;1;0;1;1
+1223;18297;1;165;83.0;120;90;1;1;0;0;1;0
+1225;18287;1;165;65.0;120;80;1;1;0;0;0;0
+1227;23190;2;168;80.0;160;90;1;1;0;0;1;0
+1229;17405;2;170;84.0;150;1100;1;1;1;0;0;1
+1231;18296;1;170;59.0;120;80;1;1;0;0;1;1
+1232;15985;2;170;70.0;110;70;1;1;0;0;1;0
+1233;22415;1;169;68.0;120;80;1;1;0;0;1;1
+1235;22571;1;164;66.0;120;80;1;1;0;0;0;1
+1236;22562;1;160;72.0;170;90;1;2;0;0;0;0
+1237;15297;2;170;65.0;120;80;1;1;1;1;1;0
+1238;18856;1;153;69.0;130;60;1;1;0;0;1;1
+1239;21211;1;156;55.0;100;70;1;1;0;0;0;0
+1240;19532;1;160;79.0;130;90;2;1;0;0;1;0
+1242;17493;2;169;73.0;120;70;1;1;0;0;1;0
+1244;23206;1;164;92.0;130;90;1;1;0;0;1;1
+1245;15209;2;160;78.0;110;80;1;1;0;0;1;0
+1246;23363;1;164;74.0;120;80;1;1;0;0;1;0
+1247;21068;2;152;49.0;130;80;1;1;0;0;1;0
+1248;19722;2;167;78.0;150;90;2;2;0;0;0;1
+1250;18018;2;160;85.0;120;60;1;1;0;0;1;0
+1252;16709;1;156;62.0;120;80;1;1;0;0;1;0
+1253;20994;1;156;72.0;140;100;2;1;0;0;1;1
+1254;19614;1;163;63.0;120;80;3;3;0;0;0;1
+1255;19092;1;159;63.0;150;80;2;1;0;0;1;1
+1256;14404;1;166;64.0;110;70;1;1;0;0;1;0
+1257;23606;1;162;62.0;120;80;1;3;0;0;1;0
+1258;21192;1;159;74.0;160;100;3;1;0;0;0;1
+1264;20460;1;159;80.0;140;100;1;1;0;0;1;1
+1266;23350;1;159;60.0;130;80;3;2;0;1;1;1
+1269;20465;2;167;74.0;130;70;1;1;1;0;1;1
+1270;14636;1;172;93.0;110;75;2;2;0;0;0;0
+1271;19113;1;163;65.0;150;90;2;1;0;0;1;1
+1272;18094;1;154;65.0;120;80;1;1;0;0;1;0
+1273;23496;2;160;86.0;120;80;1;1;0;0;1;0
+1274;21978;1;169;65.0;120;80;1;1;0;0;1;0
+1275;22722;2;160;57.0;150;80;1;2;1;1;1;0
+1276;17599;1;164;80.0;140;90;2;1;0;0;1;1
+1277;22649;2;160;67.0;120;80;1;1;0;0;1;1
+1278;19890;2;163;71.0;130;80;1;1;1;1;1;0
+1280;16775;1;179;75.0;120;80;1;1;0;0;0;1
+1281;20211;1;167;68.0;100;60;1;1;0;0;1;0
+1283;18502;1;167;64.0;120;80;1;1;0;0;0;0
+1284;20433;1;168;65.0;160;100;1;1;0;0;1;1
+1285;19619;1;153;75.0;140;80;1;1;0;0;1;1
+1288;20180;1;158;74.0;110;70;1;1;0;0;0;0
+1289;19865;1;156;105.0;130;80;2;1;0;0;1;1
+1290;18275;2;174;92.0;140;90;1;2;0;0;0;1
+1292;16761;2;171;69.0;120;80;2;1;1;0;1;1
+1293;19792;1;163;60.0;120;80;1;1;0;0;0;0
+1294;21867;2;175;70.0;14;90;3;1;0;0;1;1
+1295;21114;1;163;62.0;110;90;1;1;0;0;1;0
+1298;22844;1;156;54.0;110;70;1;1;0;0;0;0
+1299;19724;1;169;85.0;120;90;2;1;0;0;0;1
+1300;23180;1;161;72.0;120;80;2;1;0;0;1;1
+1301;16759;1;159;56.0;110;70;1;1;0;0;1;0
+1302;15898;1;163;98.0;120;80;1;1;1;0;1;0
+1304;18894;1;159;63.0;110;70;1;1;0;0;1;0
+1306;19698;2;167;72.0;120;80;1;1;0;0;0;0
+1307;23406;2;175;90.0;160;80;3;3;0;0;1;1
+1308;21105;1;154;70.0;120;60;1;1;0;0;1;0
+1309;21282;2;170;63.0;100;60;1;1;0;0;1;1
+1310;19764;2;175;82.0;150;100;2;2;1;1;1;1
+1311;15970;1;167;69.0;110;70;1;1;0;0;1;0
+1312;22408;2;164;68.0;120;80;1;1;1;0;1;1
+1313;23319;1;151;55.0;120;80;1;1;0;0;0;0
+1314;15051;2;175;76.0;120;80;1;1;0;0;1;0
+1315;19843;2;167;87.0;120;85;1;1;1;0;1;0
+1317;18202;2;178;91.0;125;80;1;1;0;0;1;1
+1319;21184;1;165;88.0;150;90;1;1;0;0;1;1
+1321;18177;1;155;83.0;140;90;1;1;0;0;1;0
+1322;16835;2;178;86.0;120;80;2;3;0;0;1;0
+1323;19123;1;156;75.0;120;80;3;3;0;0;1;1
+1324;18287;1;160;59.0;120;80;1;1;0;0;1;0
+1325;15791;1;169;90.0;135;90;1;1;0;0;0;1
+1326;18369;1;167;81.0;120;80;2;1;0;1;1;0
+1327;14445;1;167;67.0;120;80;1;1;0;0;1;0
+1328;19700;1;161;94.0;120;90;1;1;0;0;0;1
+1329;21644;1;168;90.0;140;90;3;2;0;0;1;1
+1330;19080;1;156;123.0;150;90;1;1;0;0;0;1
+1333;18936;2;175;90.0;150;90;1;1;0;0;1;1
+1334;18002;2;175;89.0;120;80;1;1;0;0;1;0
+1335;16825;1;158;76.0;130;90;1;1;0;0;1;1
+1336;14568;2;174;68.0;120;80;1;1;1;1;1;0
+1337;14511;1;165;80.0;120;80;1;1;0;0;1;0
+1338;23376;1;162;84.0;120;80;2;1;0;0;0;1
+1339;18989;2;163;55.0;120;80;3;1;1;0;1;1
+1340;17081;2;162;60.0;120;80;1;1;0;0;1;0
+1341;19756;1;155;83.0;190;90;2;2;0;0;1;1
+1342;23077;1;144;73.0;137;86;3;1;0;0;1;0
+1344;21770;1;163;57.0;150;90;1;1;0;0;1;1
+1345;23544;2;165;67.0;120;80;1;1;0;0;1;0
+1346;19845;1;162;67.0;120;80;1;1;0;0;1;1
+1348;20959;1;160;65.0;120;80;1;2;0;1;0;1
+1349;19702;2;177;68.0;130;80;1;1;0;0;1;0
+1350;21969;2;178;92.0;153;87;3;3;0;0;1;1
+1351;21083;2;168;67.0;110;70;2;1;0;0;1;0
+1353;19653;2;160;75.0;120;80;1;1;0;0;1;0
+1354;19186;2;165;67.0;120;80;3;3;0;0;0;0
+1355;22518;2;164;72.0;130;90;2;1;0;0;0;1
+1356;16717;2;170;78.0;110;70;1;3;0;0;1;0
+1357;16195;1;160;100.0;120;80;1;1;1;0;1;0
+1360;18225;1;172;65.0;11;80;1;3;0;0;1;0
+1362;20926;2;168;68.0;120;80;1;1;0;0;1;1
+1363;20380;1;166;67.0;120;80;1;1;0;0;1;1
+1364;18380;1;163;60.0;110;70;1;3;0;0;1;0
+1365;14784;1;166;52.0;90;60;1;1;0;0;0;0
+1367;20474;1;156;76.0;150;90;1;1;0;0;0;1
+1368;15377;2;174;85.0;140;90;1;1;0;0;1;1
+1369;19554;1;158;87.0;130;90;1;1;0;1;1;0
+1372;21023;2;172;81.0;120;80;1;1;0;0;0;0
+1373;16898;2;169;68.0;120;80;1;1;0;0;1;1
+1374;19914;1;158;68.0;150;90;1;1;0;0;1;1
+1375;20116;2;185;116.0;150;90;3;1;0;0;1;1
+1376;23445;2;179;66.0;120;80;1;1;0;0;1;0
+1378;21897;1;154;110.0;110;70;1;1;0;0;0;0
+1379;15248;1;162;68.0;145;80;2;1;0;0;0;1
+1380;14672;1;160;62.0;110;60;1;1;0;0;1;0
+1381;19640;2;167;64.0;110;70;1;1;0;0;0;0
+1383;18951;1;168;78.0;120;80;1;1;0;0;1;1
+1385;18751;1;149;56.0;140;80;1;1;0;0;1;1
+1386;17371;1;156;74.0;150;90;1;1;0;0;0;1
+1387;20254;1;150;68.0;120;80;2;2;0;0;0;1
+1389;21043;2;168;82.0;160;1000;2;1;0;0;0;1
+1390;23505;1;170;80.0;160;100;3;1;0;0;1;1
+1391;16174;1;160;58.0;110;80;1;1;0;0;1;0
+1393;20515;1;176;65.0;140;80;1;1;0;0;1;0
+1395;17554;1;156;50.0;120;80;1;3;0;0;1;1
+1396;15994;2;177;65.0;130;90;1;1;0;0;0;0
+1397;20468;1;164;95.0;120;80;2;1;0;0;1;0
+1398;15567;2;176;76.0;120;80;2;1;1;1;1;0
+1399;16513;2;163;84.0;130;90;1;1;1;0;0;1
+1400;19024;2;170;68.0;120;80;1;1;0;0;0;0
+1402;15355;1;163;76.0;180;100;1;1;0;0;1;1
+1403;16790;1;156;58.0;100;60;2;2;0;0;1;1
+1404;18283;2;170;65.0;120;80;3;3;0;0;1;1
+1405;22581;2;181;104.0;150;90;1;2;0;0;1;1
+1407;18261;2;174;82.0;100;70;1;1;1;1;0;1
+1409;17594;1;162;72.0;120;80;1;1;0;0;1;0
+1410;18199;1;164;95.0;90;60;1;1;0;0;1;0
+1411;19097;2;169;68.0;130;80;1;1;1;0;1;1
+1412;18182;2;177;77.0;160;100;2;2;1;0;1;1
+1419;18245;1;156;55.0;140;90;1;1;0;0;1;1
+1421;14715;1;166;64.0;110;70;1;1;0;0;1;0
+1423;22401;1;158;80.0;130;90;1;2;0;0;1;1
+1426;18398;2;165;62.0;150;90;1;1;0;0;1;0
+1427;23362;2;171;68.0;120;80;1;1;0;0;1;0
+1429;21118;1;158;79.0;130;80;1;1;0;0;0;0
+1430;23306;2;180;108.0;170;100;1;1;0;0;1;1
+1431;15973;1;163;60.0;110;70;1;1;0;0;1;0
+1432;15220;2;195;111.0;148;86;1;1;0;0;1;1
+1433;16781;1;163;68.0;150;90;1;1;0;0;1;1
+1434;14594;1;160;59.0;120;80;1;2;0;0;1;0
+1435;23247;1;160;76.0;140;90;1;2;0;0;1;1
+1436;16973;1;151;50.0;120;80;1;1;0;0;0;0
+1437;21874;1;168;64.0;120;80;1;1;0;0;1;0
+1438;15906;1;167;71.0;150;1001;2;1;0;0;1;1
+1439;17277;2;165;53.0;120;70;1;1;0;0;1;0
+1440;21167;1;168;95.0;110;80;3;3;0;0;1;1
+1441;15933;1;170;65.0;120;80;1;1;0;0;1;0
+1442;16709;1;168;73.0;120;80;1;1;0;0;1;0
+1443;19439;1;161;59.0;120;80;1;1;0;0;1;1
+1444;19068;1;162;47.0;90;60;3;1;0;0;1;0
+1445;18302;1;160;66.0;110;70;1;1;0;0;1;0
+1448;21223;1;172;75.0;120;80;1;1;0;0;1;1
+1449;23097;2;171;79.0;120;80;3;3;0;0;1;1
+1451;21207;1;168;70.0;120;80;3;3;0;0;1;1
+1452;19691;1;149;65.0;120;80;1;1;0;0;1;0
+1453;19764;2;160;60.0;120;80;1;2;0;0;1;1
+1454;16025;1;160;60.0;110;60;1;1;0;0;1;0
+1455;17552;1;171;80.0;100;80;2;1;0;0;1;0
+1456;14722;1;140;68.0;100;70;1;1;0;0;0;0
+1457;18849;1;170;108.0;150;100;2;2;0;0;0;1
+1458;18818;1;165;78.0;110;70;1;1;0;0;0;0
+1459;18395;1;162;64.0;120;80;2;1;0;0;0;0
+1460;19710;2;178;66.0;120;80;1;1;1;1;1;0
+1461;16307;2;172;72.0;120;80;1;1;0;0;1;0
+1462;21379;2;170;65.0;120;70;1;1;0;0;1;1
+1465;17745;2;171;73.0;120;80;1;1;0;0;1;1
+1467;20421;1;147;55.0;110;70;3;3;0;0;0;0
+1468;15470;1;160;60.0;140;90;1;1;0;0;1;1
+1470;22029;1;180;102.0;140;90;1;1;0;0;1;1
+1471;20975;2;165;68.0;160;100;1;1;0;0;1;1
+1472;19096;2;174;70.0;120;80;1;1;0;0;1;0
+1474;22624;2;182;96.0;140;82;2;2;1;0;1;1
+1475;14453;1;158;59.0;140;90;1;1;0;0;0;1
+1476;15302;1;158;94.0;135;85;1;1;0;0;1;0
+1477;15558;2;174;65.0;120;90;1;1;0;0;1;0
+1481;18779;1;164;82.0;100;70;1;1;0;0;0;0
+1482;17481;1;165;93.0;130;80;1;1;0;0;1;0
+1484;18133;1;160;47.0;110;70;1;1;0;0;1;0
+1485;20555;2;168;72.0;120;80;3;3;0;0;0;0
+1486;21089;1;169;72.0;120;70;1;1;0;0;0;0
+1487;15344;2;170;87.0;120;80;1;1;0;0;0;0
+1490;19714;1;152;63.0;130;80;1;2;0;0;1;1
+1492;14537;2;165;68.0;140;100;1;1;0;0;1;1
+1493;14731;1;172;69.0;110;70;1;1;0;0;1;0
+1494;21107;2;169;76.0;140;1000;3;3;1;0;1;1
+1495;20702;2;174;65.0;120;80;1;1;0;0;1;0
+1496;17500;2;170;90.0;120;80;1;1;0;0;0;1
+1497;21949;1;165;65.0;150;100;1;1;0;0;1;1
+1498;23414;1;160;81.0;150;90;3;2;0;0;1;1
+1500;21248;1;165;80.0;120;80;2;2;0;0;0;1
+1501;16720;1;167;66.0;100;70;1;1;0;0;1;0
+1502;23348;1;160;62.0;120;80;1;1;0;0;0;0
+1504;16715;2;165;65.0;150;80;1;1;0;0;1;1
+1505;16619;2;174;75.0;110;70;2;2;0;0;1;1
+1510;14780;1;156;55.0;120;80;1;1;0;0;1;0
+1511;19818;1;165;62.0;110;70;1;1;0;0;1;0
+1513;22474;2;175;74.0;120;80;1;1;0;0;1;1
+1514;22019;1;168;78.0;148;85;3;3;0;0;1;1
+1515;23297;2;175;70.0;120;80;1;1;0;1;1;1
+1516;20472;1;160;74.0;120;80;2;1;0;0;1;0
+1517;18165;2;168;92.0;125;80;2;1;0;0;1;0
+1518;20550;2;167;63.0;130;90;1;1;0;0;0;0
+1519;20344;1;152;55.0;140;1000;3;3;0;0;1;1
+1520;19765;1;169;66.0;120;80;1;1;0;0;1;0
+1521;21740;1;172;70.0;130;90;1;2;0;0;1;1
+1523;18316;1;168;75.0;120;80;1;1;0;0;1;1
+1525;17458;2;170;75.0;120;70;2;2;0;0;1;0
+1527;23214;2;175;70.0;120;80;1;1;0;0;1;0
+1529;20779;2;175;66.0;120;80;1;1;0;0;1;0
+1530;18316;1;164;52.0;110;70;1;1;0;0;1;0
+1531;20374;2;175;69.0;120;80;1;2;0;0;1;0
+1534;16835;1;162;74.0;130;95;2;1;0;0;1;0
+1535;23195;1;172;85.0;120;80;1;1;0;0;1;0
+1536;18880;2;176;80.0;110;70;1;1;0;0;1;1
+1537;20451;2;165;65.0;120;80;1;1;0;0;1;1
+1538;22569;1;160;88.0;130;80;1;1;0;0;0;0
+1539;16758;2;170;84.0;130;90;1;1;0;0;1;1
+1540;18388;1;161;59.0;130;80;1;1;0;0;0;1
+1542;23373;2;170;69.0;140;80;1;1;0;0;1;1
+1544;20349;1;160;68.0;100;70;1;1;0;0;1;0
+1545;18284;2;175;88.0;140;90;1;1;0;1;1;1
+1546;23364;2;160;70.0;120;80;2;2;0;0;1;1
+1547;21092;2;174;100.0;160;100;1;2;0;0;0;1
+1548;21880;1;144;62.0;110;69;1;1;0;0;1;0
+1550;21021;2;176;70.0;130;80;1;1;0;1;0;0
+1551;16731;2;175;90.0;140;90;1;1;0;0;1;1
+1552;18934;1;155;60.0;90;60;1;2;0;0;1;0
+1554;22156;2;198;68.0;120;80;1;1;0;0;1;1
+1555;16100;1;170;65.0;120;80;1;1;0;0;1;0
+1556;17820;2;166;76.0;120;90;1;1;0;0;1;0
+1557;22670;1;154;92.0;140;90;3;1;0;0;0;1
+1558;18823;2;170;70.0;120;80;1;1;0;0;1;0
+1559;16991;1;168;70.0;120;80;1;1;0;0;0;0
+1560;19004;2;178;82.0;120;80;1;1;0;0;1;1
+1562;22678;2;169;69.0;120;80;1;1;0;0;1;1
+1563;15532;2;179;67.0;120;80;1;1;0;0;0;1
+1564;18027;1;158;90.0;130;90;1;1;0;0;0;1
+1565;22761;1;164;78.0;130;79;3;1;0;0;0;1
+1566;17608;2;168;68.0;130;90;1;1;0;0;1;0
+1568;20522;1;175;105.0;130;90;2;3;0;0;1;1
+1569;23260;1;165;68.0;120;80;1;1;0;0;1;1
+1570;20198;2;169;74.0;150;74;1;1;0;0;1;1
+1572;20207;2;170;70.0;120;70;1;1;0;0;1;0
+1573;20889;2;165;83.0;140;90;2;2;1;0;0;1
+1574;15303;2;158;63.0;120;80;1;1;0;1;1;0
+1576;18294;1;165;80.0;120;80;1;1;0;0;1;0
+1578;23485;1;157;69.0;140;100;1;1;0;0;1;1
+1579;15376;2;176;89.0;140;90;1;1;0;0;1;1
+1581;21029;1;165;75.0;100;70;3;1;0;0;1;1
+1582;16648;1;169;72.0;130;90;1;1;0;0;0;1
+1583;18188;1;165;83.0;120;90;1;1;0;0;0;0
+1584;14307;2;172;88.0;130;70;1;1;0;0;1;0
+1585;17493;2;169;74.0;120;80;1;1;0;0;1;1
+1586;23351;1;150;90.0;150;90;3;2;0;0;1;1
+1587;22678;1;169;71.0;120;80;1;1;0;0;0;1
+1588;15298;1;167;84.0;100;70;2;1;0;0;1;0
+1589;19769;2;166;72.0;120;80;1;1;0;0;1;1
+1590;21781;2;174;86.0;120;80;1;1;0;0;1;1
+1591;15243;1;165;65.0;110;70;1;1;0;0;1;0
+1592;21967;1;157;66.0;130;80;1;1;0;0;0;1
+1595;19136;2;160;60.0;120;80;1;1;0;0;1;0
+1596;14418;2;168;72.0;120;80;1;1;0;0;1;0
+1597;17983;1;164;82.0;150;70;1;1;0;0;0;1
+1601;21337;2;165;78.0;120;80;3;1;1;1;1;1
+1603;14505;2;176;83.0;120;80;1;1;0;1;1;0
+1604;21265;2;171;100.0;120;80;1;1;0;0;1;1
+1605;16100;1;159;58.0;110;70;1;2;0;0;0;0
+1608;22147;1;151;60.0;140;80;1;1;0;0;1;0
+1611;18978;2;174;82.0;110;70;1;1;0;0;0;0
+1612;19078;1;160;61.0;120;90;1;1;0;0;0;0
+1613;19625;2;186;83.0;110;80;1;1;0;0;1;0
+1614;16919;1;160;80.0;120;80;2;1;0;0;1;0
+1616;21046;2;180;85.0;130;80;3;3;0;0;1;1
+1618;15996;2;175;78.0;100;80;1;1;0;0;1;0
+1619;19505;1;154;52.0;130;90;1;1;0;0;1;1
+1621;19645;1;155;78.0;126;82;1;1;0;1;1;0
+1623;23376;1;165;73.0;120;80;1;1;0;0;1;0
+1625;22733;2;167;78.0;90;70;2;1;1;0;1;1
+1626;19931;1;163;73.0;160;80;1;1;0;1;1;1
+1627;19706;2;183;79.0;150;80;1;1;0;0;1;1
+1628;16097;2;173;99.0;130;80;2;1;0;0;1;0
+1629;18054;2;165;59.0;150;90;1;1;0;0;0;1
+1631;16647;1;145;70.0;110;70;1;1;0;0;1;0
+1632;20975;2;165;77.0;110;70;1;2;1;0;0;1
+1633;20982;1;162;109.0;160;90;3;2;1;0;1;1
+1634;20974;1;158;92.0;160;97;1;1;0;0;1;1
+1635;14553;1;162;75.0;120;80;1;1;0;0;0;0
+1643;20666;1;169;84.0;120;80;3;1;0;0;1;0
+1644;18290;2;165;100.0;140;100;3;1;0;0;1;1
+1645;18180;2;163;70.0;120;80;1;1;0;0;1;0
+1647;22035;1;162;88.0;100;70;1;1;0;0;0;1
+1649;21356;2;172;72.0;120;80;1;1;0;0;1;1
+1650;22124;1;167;68.0;120;80;1;1;0;0;1;0
+1652;21314;2;170;93.0;140;80;2;1;0;0;1;1
+1653;21087;1;160;80.0;120;80;2;1;0;0;0;1
+1654;21167;1;158;58.0;115;75;1;1;0;0;1;0
+1655;18251;1;152;109.0;105;65;2;1;0;1;1;0
+1656;18949;1;167;68.0;110;70;1;1;0;0;1;0
+1657;18925;2;170;60.0;120;80;1;1;0;0;1;0
+1658;18218;1;163;65.0;120;80;2;1;0;0;1;0
+1662;20641;1;163;63.0;120;80;3;3;0;0;1;0
+1663;19668;1;157;69.0;110;70;1;1;0;0;0;1
+1665;22705;1;156;78.0;130;80;1;1;0;0;1;1
+1667;21223;1;160;80.0;120;80;1;1;0;0;0;0
+1669;15276;1;155;46.0;120;70;1;1;0;0;1;0
+1670;21232;1;160;65.0;120;80;1;1;0;0;1;0
+1672;23379;2;173;78.0;120;80;3;1;0;0;1;1
+1673;19822;1;171;139.0;140;90;1;1;0;0;1;1
+1674;18091;1;165;98.0;140;90;1;1;0;0;1;1
+1675;20895;1;162;61.0;130;80;1;1;0;0;1;1
+1676;19811;2;176;101.0;120;80;1;1;1;0;1;1
+1677;20261;2;174;83.0;100;70;1;1;0;0;0;0
+1682;20979;2;165;65.0;120;80;1;1;0;0;1;0
+1683;16046;2;180;120.0;150;100;1;1;0;0;0;1
+1685;16793;1;165;68.0;120;80;1;1;0;0;1;0
+1686;18395;1;160;84.0;120;70;1;1;0;0;1;0
+1687;18731;2;172;68.0;110;70;1;1;0;0;1;0
+1689;14667;1;168;58.0;100;70;1;1;0;0;0;0
+1690;22025;2;168;78.0;130;90;1;1;0;0;0;1
+1691;15142;1;164;67.0;90;60;1;2;0;0;1;1
+1692;19890;2;166;71.0;130;90;2;2;1;1;1;0
+1694;21159;2;169;65.0;120;80;3;3;0;0;1;1
+1695;22653;2;172;88.0;120;80;1;1;0;0;1;0
+1696;18269;1;160;72.0;90;60;1;3;0;0;0;1
+1699;20984;1;158;61.0;120;80;1;1;0;0;1;1
+1700;18337;1;165;84.0;110;80;1;1;0;0;1;0
+1703;22392;1;161;68.0;150;100;2;1;0;0;1;1
+1704;21926;2;164;66.0;150;100;1;1;1;1;0;1
+1705;19589;1;155;69.0;110;80;2;1;0;0;1;1
+1707;16825;1;158;74.0;160;90;2;1;0;0;1;1
+1708;14811;2;165;62.0;110;70;1;1;0;0;1;0
+1709;22337;1;163;68.0;120;80;1;1;0;0;1;1
+1710;15114;2;175;68.0;120;80;1;1;1;1;1;0
+1711;15828;1;155;51.0;100;70;2;2;0;0;0;0
+1712;23242;2;173;108.0;150;90;3;3;1;0;1;1
+1714;18022;1;157;63.0;120;80;1;1;0;0;0;0
+1715;21200;2;158;74.0;120;80;1;1;0;0;1;1
+1717;21023;1;160;58.0;120;80;1;1;0;0;1;0
+1718;15680;1;170;74.0;140;90;2;1;0;0;1;1
+1720;20610;1;165;82.0;130;80;2;1;0;0;1;0
+1721;15126;2;173;125.0;120;80;1;1;1;0;0;0
+1722;21437;1;165;56.0;120;80;2;1;0;0;1;0
+1724;21226;1;168;69.0;120;80;1;1;0;0;1;0
+1727;15324;2;164;70.0;130;80;1;1;0;0;1;1
+1728;21627;1;165;62.0;120;80;1;1;0;0;1;1
+1729;16167;1;158;60.0;120;80;1;1;0;0;1;0
+1730;18189;2;186;87.0;170;110;1;1;0;0;1;1
+1732;19519;1;152;77.0;120;80;1;1;0;0;1;0
+1733;19111;1;166;82.0;140;90;3;3;0;0;0;0
+1734;20348;2;176;70.0;140;100;1;1;0;0;1;1
+1737;21839;1;164;96.0;90;60;3;1;0;0;0;0
+1739;17816;1;154;87.0;130;80;1;1;0;0;1;0
+1740;20414;1;151;62.0;120;80;2;1;0;0;1;1
+1741;18482;1;164;51.0;110;70;1;1;0;0;1;0
+1742;20261;1;156;83.0;120;80;1;1;0;0;0;1
+1743;20499;1;156;63.0;130;80;3;3;0;0;1;1
+1744;16787;2;175;94.0;120;80;1;1;1;0;1;0
+1746;17511;2;176;72.0;120;80;1;1;0;0;1;0
+1748;17547;1;151;58.0;110;60;2;1;0;0;1;0
+1749;17394;1;168;77.0;120;80;1;1;0;0;0;0
+1752;18836;1;160;84.0;120;80;1;1;0;0;0;1
+1754;21992;1;159;80.0;110;80;1;1;0;0;0;0
+1756;18787;1;167;82.0;110;70;2;2;1;0;0;1
+1757;21776;1;156;76.0;100;60;1;1;0;0;1;1
+1759;18024;1;171;62.0;130;80;2;1;0;0;1;0
+1763;22580;2;162;75.0;120;80;1;1;0;0;0;0
+1764;22727;1;166;76.0;160;90;3;1;0;0;1;1
+1765;15184;1;170;63.0;120;80;1;1;0;0;1;0
+1768;18217;1;159;60.0;100;70;1;1;0;0;1;0
+1769;20566;1;165;69.0;130;90;3;1;0;0;1;1
+1770;14705;1;157;79.0;160;100;1;1;0;0;0;1
+1773;19795;1;167;59.0;110;80;1;1;0;0;1;0
+1774;14464;1;159;91.0;120;80;1;1;0;0;1;0
+1775;19789;1;168;70.0;140;90;3;1;0;0;1;1
+1776;20269;1;163;67.0;120;80;1;1;0;0;1;1
+1777;18358;2;186;110.0;120;80;1;1;0;0;1;0
+1778;15279;1;165;54.0;120;80;1;1;0;0;1;0
+1782;19894;1;160;70.0;120;80;1;3;0;0;1;0
+1783;23397;2;165;69.0;140;90;1;1;0;0;0;1
+1784;19625;1;170;75.0;120;80;1;1;0;0;1;0
+1785;19022;2;175;150.0;180;120;2;1;0;1;1;1
+1786;18944;1;169;67.0;120;80;1;1;0;0;1;0
+1787;19639;1;162;70.0;150;100;1;1;0;0;0;1
+1788;16010;2;185;78.0;120;90;1;1;0;0;1;0
+1789;19775;2;170;70.0;130;80;3;1;0;0;1;1
+1793;23563;1;162;81.0;100;80;1;1;0;0;0;1
+1794;21042;1;170;138.0;140;90;1;1;0;0;1;1
+1796;18758;1;171;104.0;140;90;3;3;0;0;1;1
+1798;19585;1;155;62.0;120;80;3;1;0;0;1;1
+1799;21173;2;172;70.0;130;80;1;1;0;0;1;0
+1800;20444;1;150;71.0;120;80;2;3;0;0;0;0
+1803;23578;2;169;86.0;130;1000;1;1;0;0;1;1
+1804;16148;1;169;73.0;100;70;1;1;1;0;1;0
+1805;21275;1;164;70.0;130;80;1;1;0;0;1;0
+1806;19625;2;168;95.0;130;80;3;1;0;1;1;1
+1807;17292;1;158;62.0;110;70;1;1;0;0;1;0
+1808;19654;1;160;62.0;120;80;1;1;0;0;1;0
+1809;19856;1;164;65.0;110;60;1;1;0;0;0;1
+1810;22556;2;178;99.0;150;90;1;1;0;0;0;1
+1811;15964;1;166;72.0;120;80;1;1;0;0;1;0
+1812;18894;1;164;48.0;100;80;1;1;0;0;1;0
+1814;19592;1;168;62.0;120;80;1;1;0;0;1;0
+1815;19661;1;167;48.0;120;80;1;1;0;0;1;0
+1817;21049;2;161;74.0;120;80;3;1;0;0;1;1
+1818;21933;1;160;95.0;120;90;3;3;0;0;1;0
+1819;22458;1;173;76.0;130;85;1;1;0;0;1;0
+1820;17729;2;173;86.0;120;80;1;1;0;0;0;0
+1821;21000;1;158;86.0;110;70;1;1;0;0;1;1
+1823;20201;1;164;82.0;110;80;1;1;0;0;1;0
+1825;18383;2;167;67.0;120;80;1;1;0;0;1;1
+1826;19476;2;169;68.0;160;90;1;1;0;0;0;1
+1827;18846;1;166;97.0;160;110;1;1;0;0;1;1
+1828;18513;1;166;78.0;120;80;1;1;0;0;1;0
+1829;19045;2;167;61.0;120;80;1;1;0;0;1;0
+1830;18318;1;166;65.0;110;60;1;1;0;0;1;0
+1831;19753;1;158;50.0;120;80;1;1;0;0;1;0
+1832;23604;2;159;70.0;130;80;1;1;0;0;1;1
+1834;19617;2;170;74.0;110;70;1;1;0;0;1;1
+1835;20348;2;166;86.0;120;90;1;1;1;0;1;1
+1836;17310;2;178;80.0;120;80;1;1;0;0;1;0
+1837;15123;1;157;80.0;160;100;1;2;0;0;1;1
+1838;22560;1;165;68.0;140;90;1;1;0;0;1;1
+1839;15197;2;172;72.0;120;80;1;1;0;0;1;0
+1840;19665;2;170;80.0;140;70;1;1;0;1;1;1
+1841;22511;1;153;63.0;120;80;1;1;0;0;1;0
+1842;18108;1;159;101.0;130;80;1;1;0;0;0;1
+1843;14606;1;156;59.0;120;80;1;1;0;0;0;0
+1844;21271;2;175;68.0;120;80;1;1;0;0;1;0
+1845;18723;1;160;62.0;120;80;1;1;0;0;1;0
+1848;21057;1;165;65.0;120;80;3;3;0;0;0;0
+1850;18992;1;162;64.0;120;80;1;1;0;0;1;1
+1851;22712;2;161;58.0;120;70;1;1;0;0;1;0
+1852;18455;2;165;68.0;110;70;1;1;1;1;1;0
+1854;20541;1;163;69.0;110;90;1;1;0;0;1;1
+1859;16818;2;150;60.0;120;80;1;1;0;0;1;0
+1860;15332;2;169;65.0;120;80;1;1;0;0;1;0
+1861;20945;1;158;75.0;130;70;1;1;0;0;1;0
+1862;19829;2;164;93.0;140;90;1;1;0;0;1;1
+1863;21063;2;174;106.0;220;120;3;3;0;0;1;0
+1864;23318;2;157;84.0;150;90;1;1;1;0;1;1
+1865;15438;1;159;64.0;110;70;1;1;0;0;1;0
+1868;19932;1;163;66.0;120;80;3;3;0;0;1;1
+1869;20328;1;160;69.0;140;90;1;2;0;0;1;1
+1871;20961;1;168;75.0;130;90;1;1;0;0;0;1
+1874;22485;1;160;80.0;110;80;1;1;0;0;0;1
+1875;22535;1;158;65.0;130;80;1;1;0;0;1;1
+1876;20585;1;163;89.0;140;90;3;2;0;0;1;0
+1877;22432;2;166;60.0;140;90;3;1;0;0;1;0
+1878;21951;1;167;73.0;120;80;1;1;0;0;1;0
+1879;20485;1;162;64.0;120;80;1;1;0;0;1;0
+1880;21965;1;163;75.0;140;80;2;2;0;0;1;1
+1881;18886;1;163;59.0;120;80;1;1;0;0;0;0
+1883;14599;2;155;65.0;120;80;1;1;0;0;1;0
+1884;14704;2;169;70.0;119;80;1;3;0;0;1;0
+1887;18103;2;164;50.0;100;60;1;1;1;0;1;0
+1888;20311;1;153;85.0;140;90;3;3;0;0;1;1
+1889;21095;1;162;78.0;120;80;1;1;0;0;1;0
+1890;15841;1;162;84.0;120;80;1;1;0;0;1;0
+1892;15400;2;170;80.0;120;70;1;1;1;0;0;0
+1893;23339;2;176;95.0;150;90;1;1;1;0;1;1
+1895;22767;1;153;58.0;150;90;3;1;0;0;1;1
+1896;17445;2;170;65.0;100;80;1;1;0;0;1;0
+1897;18189;1;154;79.0;120;80;1;2;0;0;1;0
+1899;21984;1;150;71.0;150;90;1;1;0;0;1;1
+1900;23280;2;172;79.0;130;80;1;1;0;0;1;1
+1901;21758;1;166;80.0;120;80;1;1;0;0;1;1
+1902;21030;2;167;58.0;110;60;1;1;1;0;1;0
+1903;17475;1;164;71.0;120;80;1;1;0;0;1;1
+1904;21216;2;170;74.0;120;80;1;1;0;0;0;0
+1909;22475;2;164;87.0;140;90;3;3;0;0;1;0
+1912;22605;2;169;65.0;120;80;1;1;0;0;1;1
+1914;18278;1;168;74.0;140;90;1;1;0;0;1;1
+1915;20999;2;169;62.0;130;80;2;1;1;1;1;0
+1916;21238;1;153;90.0;120;80;1;3;0;0;1;1
+1917;21657;2;165;72.0;120;80;1;1;0;0;1;0
+1918;21177;1;161;104.0;170;100;2;2;0;0;1;1
+1919;18205;1;156;69.0;120;80;1;1;0;0;1;1
+1920;21089;2;175;91.0;120;80;1;1;1;1;1;0
+1921;21769;2;162;74.0;120;80;3;1;0;0;1;1
+1922;15205;1;162;71.0;140;80;1;1;0;0;0;0
+1924;18446;1;170;74.0;130;80;1;1;0;0;0;0
+1925;22423;1;164;79.0;120;80;2;2;0;0;0;1
+1927;21645;1;153;56.0;110;80;1;1;0;0;1;0
+1928;21111;1;163;91.0;130;80;3;3;0;0;1;1
+1930;23121;2;174;67.0;110;80;1;1;0;0;1;0
+1932;22597;2;166;55.0;120;80;1;1;0;0;1;0
+1933;22112;1;160;53.0;120;80;2;1;0;0;1;0
+1934;21140;2;186;89.0;120;90;2;2;0;1;1;0
+1935;16558;1;169;79.0;120;80;1;1;0;0;0;0
+1938;23289;1;160;113.0;120;60;1;1;0;0;1;1
+1939;15479;1;161;60.0;110;80;1;1;0;0;1;0
+1940;18209;1;162;95.0;120;80;1;1;0;0;0;0
+1942;18266;1;162;64.0;120;80;1;1;0;0;0;0
+1944;21066;1;167;70.0;130;90;1;1;0;0;0;0
+1945;22635;1;170;70.0;120;80;1;1;0;0;1;1
+1946;23368;1;161;71.0;120;80;3;3;0;0;1;1
+1948;18193;1;163;56.0;120;90;2;1;0;0;1;0
+1949;22345;2;170;67.0;150;90;1;1;0;0;1;1
+1951;21853;2;152;57.0;110;70;1;1;1;0;1;0
+1952;23532;2;162;71.0;120;80;1;1;0;0;1;0
+1953;20190;2;170;75.0;120;80;3;1;0;0;1;0
+1954;20995;1;158;59.0;180;90;1;1;0;0;1;1
+1955;16772;1;158;78.0;130;90;1;1;0;0;1;0
+1956;18403;1;167;69.0;120;80;1;1;0;0;0;0
+1958;14416;1;155;68.0;140;90;3;3;0;0;1;0
+1959;21893;1;163;66.0;130;80;3;1;0;0;1;1
+1961;19745;1;152;72.0;110;80;3;3;0;0;0;0
+1962;21815;2;170;85.0;120;80;3;1;0;0;1;0
+1963;19638;1;170;79.0;140;90;1;1;0;0;1;1
+1965;22644;1;166;131.0;120;80;3;3;0;0;0;0
+1966;18925;1;157;84.0;140;100;2;3;0;0;1;0
+1967;17066;1;159;79.0;120;80;1;1;0;0;1;1
+1968;14540;2;172;64.0;110;70;1;1;1;1;1;0
+1970;23193;1;165;86.0;140;90;1;1;0;0;0;0
+1971;20961;2;171;65.0;120;80;1;1;0;0;1;1
+1972;17539;2;167;84.0;120;80;1;1;0;0;1;0
+1973;18337;2;163;70.0;120;80;1;1;0;0;1;0
+1974;19762;1;158;62.0;110;80;1;1;0;0;1;0
+1975;19588;1;178;85.0;120;80;1;1;0;0;1;1
+1976;17475;2;173;70.0;110;70;1;1;1;1;1;0
+1977;21929;1;165;65.0;120;90;1;1;0;0;1;1
+1979;19596;1;158;78.0;130;80;2;1;0;0;1;0
+1981;23261;2;170;77.0;140;80;3;1;0;0;1;1
+1982;20172;1;158;90.0;130;80;1;1;0;0;1;0
+1983;21657;1;150;46.0;120;80;1;1;0;0;1;0
+1985;20410;1;153;83.0;120;80;1;1;0;0;0;0
+1986;19159;1;159;62.0;160;90;1;1;0;0;1;1
+1990;19580;2;178;112.0;100;80;1;1;0;0;1;1
+1991;19634;1;174;65.0;150;80;2;2;0;0;1;1
+1992;17601;2;187;103.0;150;100;2;1;0;0;1;0
+1994;16232;2;170;70.0;120;80;1;1;0;0;1;0
+1997;19122;2;168;75.0;140;80;1;1;1;1;1;1
+1998;16857;1;160;85.0;140;90;1;1;0;0;1;1
+1999;21078;1;150;80.0;140;90;2;1;0;0;0;1
+2000;20492;2;175;72.0;110;70;1;1;0;0;1;1
+2002;16785;2;171;74.0;120;80;1;1;0;0;1;0
+2003;21673;2;170;88.0;130;100;1;1;0;0;1;1
+2004;20409;1;167;71.0;141;90;1;1;0;0;1;1
+2006;16874;1;153;65.0;100;60;1;1;0;1;1;0
+2007;21680;1;170;70.0;120;70;1;1;0;0;1;1
+2009;21836;1;160;62.0;120;80;1;1;0;0;1;1
+2010;18976;1;163;67.0;140;80;1;1;0;0;1;1
+2012;15947;1;161;55.0;120;80;1;1;0;0;1;0
+2013;19041;1;155;72.0;120;80;1;1;0;0;1;0
+2014;21143;2;169;85.0;180;100;1;1;1;1;0;0
+2016;17850;2;178;91.0;120;90;1;1;0;0;1;1
+2017;18210;1;173;70.0;120;80;3;1;0;0;0;0
+2019;21677;2;171;78.0;120;80;1;2;1;1;1;0
+2020;23333;1;166;71.0;130;80;1;1;0;0;1;1
+2022;16783;1;164;87.0;140;90;3;2;0;0;1;1
+2024;22606;1;165;70.0;165;100;1;1;0;0;1;1
+2025;14393;1;178;76.0;120;90;1;1;0;0;1;0
+2027;21909;1;162;90.0;160;90;2;1;0;0;1;1
+2028;20497;2;179;106.0;120;80;3;1;0;0;1;1
+2029;22644;1;159;58.0;130;80;1;1;0;0;1;0
+2031;14590;1;175;65.0;120;80;1;1;0;0;1;1
+2032;19808;2;173;72.0;120;70;1;1;0;0;1;0
+2034;15176;1;168;56.0;120;80;2;1;0;0;0;0
+2035;20572;2;175;71.0;120;80;1;1;0;0;1;0
+2038;16670;1;164;78.0;120;80;1;1;0;0;1;0
+2041;21709;1;155;58.0;140;90;1;2;0;0;1;0
+2043;17739;2;169;69.0;120;80;1;1;0;0;0;0
+2044;14402;1;151;63.0;90;60;1;1;0;0;1;0
+2046;20534;1;160;96.0;130;80;1;1;0;0;1;0
+2047;16803;1;156;74.0;130;90;1;1;1;1;1;1
+2048;20369;2;178;105.0;120;80;1;1;1;0;1;0
+2049;17378;1;167;89.0;120;80;2;3;1;0;1;0
+2050;18171;2;159;75.0;140;90;1;1;0;0;1;1
+2054;22651;1;168;66.0;140;90;3;1;0;0;1;1
+2055;22627;1;150;68.0;140;80;2;1;0;0;1;1
+2056;21911;1;166;90.0;120;80;1;1;0;0;1;0
+2057;22556;2;174;74.0;120;80;1;1;0;0;0;1
+2058;18989;1;165;62.0;120;80;1;1;0;0;1;0
+2059;16562;1;160;85.0;120;80;1;2;0;0;1;0
+2060;21601;1;173;94.0;140;90;2;1;0;0;1;1
+2061;19116;2;171;71.0;110;80;1;1;0;0;0;0
+2062;14612;1;171;52.0;120;80;1;1;0;0;1;0
+2064;20495;2;162;80.0;140;81;1;1;0;0;1;1
+2065;21644;1;162;77.0;110;80;1;1;0;0;0;0
+2066;18086;1;160;64.0;140;90;2;1;0;0;1;1
+2067;20264;1;156;52.0;100;70;1;1;0;1;1;0
+2068;20441;1;170;70.0;120;80;1;1;0;0;1;1
+2069;21820;1;160;55.0;120;80;1;1;0;0;0;1
+2070;18370;1;158;70.0;120;70;1;1;0;0;1;0
+2071;16786;2;171;72.0;130;80;3;3;0;0;1;1
+2081;20407;1;165;64.0;130;80;3;3;0;0;1;1
+2083;18104;2;168;63.0;110;70;1;1;1;1;1;0
+2086;22082;1;164;84.0;120;80;3;1;0;0;1;1
+2090;16737;1;162;68.0;100;60;2;1;0;0;1;0
+2091;16237;2;159;65.0;90;60;1;1;0;0;1;0
+2092;23479;2;180;70.0;140;90;1;1;0;0;1;1
+2093;20258;1;157;116.0;150;90;3;3;0;0;0;1
+2094;16065;1;163;82.0;140;80;1;1;0;0;1;1
+2095;22737;1;150;45.0;110;80;2;1;0;0;1;1
+2096;18051;1;168;66.0;120;80;1;1;0;0;1;1
+2097;19816;1;148;81.0;170;90;1;3;0;0;1;1
+2100;17719;2;180;80.0;120;80;2;1;0;0;1;0
+2102;21307;1;145;52.0;130;70;1;1;0;0;1;0
+2103;18045;1;158;59.0;110;70;1;1;0;0;1;0
+2104;20502;1;163;93.0;120;80;1;3;0;0;1;1
+2106;21062;2;168;94.0;120;100;1;1;0;0;0;0
+2107;18345;1;157;83.0;160;100;1;1;0;0;1;1
+2108;19657;1;154;92.0;120;80;2;2;0;0;1;1
+2110;15283;1;153;49.0;170;1000;2;1;0;0;1;1
+2111;18286;2;173;86.0;130;90;2;1;0;1;1;1
+2113;16166;1;161;65.0;110;70;1;1;0;0;1;0
+2114;18275;1;157;58.0;120;80;3;2;0;0;1;1
+2115;23614;1;157;78.0;110;80;1;1;1;1;1;1
+2116;19704;1;160;102.0;140;90;3;1;0;0;1;1
+2117;23204;1;152;66.0;130;80;3;1;0;0;1;0
+2119;19858;1;165;64.0;120;80;2;1;0;0;1;0
+2120;21786;1;155;60.0;120;80;1;1;0;0;1;0
+2121;21115;1;166;67.0;120;80;1;1;0;0;1;1
+2122;16534;1;164;73.0;164;73;1;1;0;0;1;1
+2123;22841;1;160;59.0;120;80;1;1;0;0;1;1
+2125;18954;1;165;105.0;160;80;1;1;0;1;1;1
+2127;15193;2;163;67.0;120;80;1;2;0;0;0;0
+2129;19714;1;165;99.0;110;70;1;1;0;0;1;0
+2130;21645;2;171;84.0;130;90;1;1;0;0;1;1
+2131;20490;1;162;60.0;90;70;1;1;0;0;1;0
+2132;14531;1;160;69.0;100;60;2;2;0;0;1;1
+2133;20537;1;149;54.0;140;100;3;3;0;0;1;1
+2135;17042;1;160;80.0;120;80;1;1;0;0;1;1
+2136;21804;1;147;71.0;140;90;3;3;0;0;1;1
+2138;22604;1;160;65.0;110;70;2;1;0;0;0;0
+2139;23094;1;164;102.0;150;90;2;1;0;0;1;1
+2140;22516;1;164;75.0;100;70;1;1;0;0;0;1
+2141;20394;2;165;88.0;180;100;3;1;0;0;1;0
+2143;21917;1;160;66.0;160;90;1;1;0;0;0;1
+2144;14449;2;170;67.0;120;70;1;1;1;0;0;0
+2145;18131;1;167;67.0;150;100;1;1;0;0;1;1
+2147;15952;1;157;50.0;140;90;1;1;0;0;0;1
+2148;21179;2;171;68.0;140;1000;2;1;0;0;0;1
+2151;18382;2;170;78.0;110;80;2;1;0;0;1;0
+2153;21075;1;168;80.0;120;70;1;1;0;0;0;0
+2154;21973;2;159;51.0;150;90;1;1;0;0;1;0
+2155;16714;2;185;86.0;100;70;2;1;1;0;1;0
+2157;15071;1;168;70.0;120;80;1;1;0;0;1;0
+2158;22018;1;170;70.0;120;80;1;1;0;0;1;1
+2159;22124;1;160;72.0;120;80;1;1;0;0;1;0
+2160;21614;2;180;99.0;120;80;1;1;1;1;1;0
+2162;19515;1;155;100.0;120;80;3;1;0;0;1;1
+2163;15895;1;168;70.0;120;80;1;1;0;0;1;0
+2164;20193;1;171;76.0;120;80;1;1;0;1;1;1
+2165;18229;2;170;90.0;150;89;1;1;1;0;0;1
+2166;23462;2;162;63.0;120;70;1;1;0;0;1;0
+2169;20622;1;155;95.0;120;80;1;1;0;0;1;0
+2171;18395;1;159;77.0;140;100;1;1;0;0;1;1
+2172;15216;1;165;65.0;140;90;1;1;0;0;0;0
+2175;18305;1;148;51.0;130;80;1;1;0;0;1;0
+2178;18782;1;168;65.0;120;80;1;1;0;0;0;0
+2179;16618;1;166;67.0;120;80;1;1;0;0;1;0
+2181;15902;1;165;61.0;120;80;1;1;0;0;0;0
+2182;15398;1;160;68.0;110;70;1;1;0;0;1;0
+2184;19072;1;150;60.0;120;80;3;2;0;0;1;0
+2185;21047;1;156;65.0;120;80;1;1;0;0;0;1
+2188;19742;1;146;75.0;130;80;1;1;0;0;1;0
+2191;21324;1;164;64.0;120;80;1;1;0;0;1;0
+2192;20381;1;171;79.0;110;70;3;3;0;0;1;1
+2193;22541;2;162;95.0;120;80;1;1;0;0;1;0
+2194;23488;2;164;70.0;120;80;3;3;0;0;1;0
+2196;21831;1;157;64.0;135;80;1;1;0;0;1;0
+2197;18038;1;165;75.0;120;80;1;1;0;0;1;1
+2198;16903;1;158;65.0;110;70;1;1;0;0;1;0
+2199;20464;2;177;80.0;110;70;1;1;0;0;0;1
+2200;20583;2;170;70.0;120;80;1;1;0;0;1;0
+2203;20174;1;153;57.0;120;80;3;1;0;0;1;0
+2204;19055;2;170;72.0;120;80;1;1;0;0;1;0
+2205;22580;1;174;92.0;120;80;1;1;0;0;1;1
+2206;17317;2;165;70.0;160;90;1;1;0;0;1;1
+2211;17056;1;164;58.0;110;70;1;1;0;0;1;1
+2215;19094;2;165;65.0;165;80;1;1;0;0;1;0
+2216;18935;2;174;76.0;120;80;1;1;1;0;1;0
+2217;23343;1;143;52.0;140;90;1;1;0;0;1;1
+2218;23459;2;156;53.0;110;70;1;1;0;0;1;0
+2219;18463;2;180;78.0;140;90;1;1;0;0;0;1
+2221;21102;2;177;75.0;140;90;1;1;0;0;1;0
+2222;19022;1;154;60.0;100;70;1;1;0;0;0;0
+2223;21945;1;165;60.0;120;80;1;1;0;0;1;0
+2224;22876;1;162;72.0;140;80;1;1;0;0;1;0
+2225;22597;2;173;89.0;150;100;1;1;0;0;0;1
+2226;16594;2;170;72.0;120;80;1;1;1;1;1;0
+2227;19810;1;166;85.0;120;80;1;3;0;0;1;0
+2228;18977;1;155;65.0;120;80;1;1;0;0;1;0
+2230;19840;1;163;43.0;120;80;1;2;0;0;1;0
+2231;18958;1;172;68.0;170;1200;1;1;0;0;1;1
+2232;18847;2;165;66.0;120;80;1;1;0;0;1;1
+2233;14454;2;170;60.0;140;100;1;1;0;0;1;0
+2234;19727;1;154;90.0;160;100;2;1;0;0;1;1
+2236;17289;2;168;63.0;150;1100;1;1;1;1;1;0
+2238;21985;1;155;60.0;140;90;1;1;0;0;1;1
+2239;21107;1;162;61.0;150;90;2;1;0;0;1;1
+2240;22545;1;161;67.0;130;80;1;1;0;0;1;1
+2242;19626;1;149;90.0;160;100;3;1;0;0;1;1
+2243;18921;1;163;75.0;140;90;1;1;0;0;1;1
+2244;17282;1;160;94.0;160;100;2;2;0;0;1;1
+2246;19804;1;155;77.0;130;80;2;2;0;0;1;0
+2247;21302;1;153;54.0;110;70;1;1;0;0;1;1
+2248;16629;2;163;72.0;120;80;1;1;0;0;1;0
+2249;19600;1;165;85.0;120;80;1;1;0;0;1;0
+2250;19426;1;160;77.0;120;80;1;1;0;0;0;0
+2251;19090;1;156;50.0;110;70;1;1;0;0;1;0
+2252;23488;1;166;69.0;120;80;1;1;0;0;1;1
+2253;20259;2;169;65.0;120;70;1;1;0;0;1;1
+2254;19764;1;164;68.0;120;90;2;1;0;1;1;0
+2255;19605;1;166;72.0;120;80;1;1;0;0;1;0
+2256;19189;1;164;68.0;120;80;1;1;0;0;1;0
+2257;20187;2;174;68.0;120;80;1;1;0;0;0;1
+2258;16109;1;160;150.0;120;80;2;1;0;0;1;1
+2259;15179;2;169;90.0;120;80;1;1;0;0;1;1
+2260;19201;1;165;66.0;12;80;1;1;0;0;1;0
+2261;14572;2;170;113.0;120;80;1;1;0;0;1;0
+2264;21478;1;155;53.0;120;80;1;1;0;0;1;0
+2265;15323;1;164;65.0;130;90;1;1;0;1;1;0
+2266;20982;1;165;65.0;120;80;1;1;0;0;1;1
+2267;20530;1;165;70.0;120;80;1;1;0;0;0;0
+2270;15942;2;162;56.0;120;80;1;1;0;0;1;1
+2271;23370;1;164;70.0;120;80;1;1;0;0;0;0
+2274;15268;1;168;67.0;110;70;1;1;0;0;1;0
+2276;20917;1;164;75.0;120;80;1;1;0;0;1;0
+2278;21772;1;164;64.0;140;80;2;2;0;0;1;1
+2281;22353;2;169;68.0;150;100;1;1;0;0;1;1
+2283;20293;1;162;70.0;110;70;1;1;0;0;1;0
+2284;19588;2;166;62.0;140;90;3;3;0;0;1;1
+2285;14369;2;170;79.0;150;1100;1;1;0;0;0;1
+2286;19201;2;166;70.0;140;90;1;1;0;0;1;1
+2287;23344;2;165;85.0;140;80;3;1;0;0;0;1
+2288;16717;2;170;72.0;120;80;1;1;0;0;1;0
+2289;22655;2;169;101.0;140;80;3;1;1;0;1;1
+2290;21132;1;165;63.0;120;80;1;1;0;0;0;0
+2291;15959;2;177;70.0;120;80;1;1;1;1;1;1
+2292;17757;1;159;64.0;120;80;1;1;0;0;1;0
+2293;20219;1;154;50.0;110;70;1;1;0;0;1;1
+2294;22391;1;156;67.0;120;70;3;3;0;0;1;1
+2296;21917;2;166;70.0;120;80;1;1;0;0;0;0
+2298;20997;2;174;76.0;130;80;3;3;0;0;1;0
+2299;21966;1;168;112.0;160;90;1;1;0;0;1;1
+2301;22591;1;165;71.0;14;80;1;1;0;0;1;1
+2302;18176;1;165;65.0;110;70;1;1;0;0;0;0
+2303;21383;1;164;62.0;120;80;1;1;0;0;1;0
+2305;21769;1;156;89.0;140;90;1;1;0;0;1;1
+2306;20665;1;160;89.0;150;80;3;1;0;0;1;1
+2307;20588;2;160;55.0;180;1000;1;1;0;0;1;1
+2308;16602;1;156;70.0;110;70;1;1;0;0;1;0
+2309;21987;1;165;80.0;120;80;1;1;0;0;1;1
+2311;19812;1;152;62.0;120;80;1;1;0;0;1;1
+2312;18168;1;162;72.0;130;80;2;1;0;0;1;0
+2314;21015;2;176;84.0;120;80;1;1;1;0;0;0
+2315;18878;2;171;75.0;120;70;1;1;1;0;1;0
+2316;21847;2;174;68.0;120;80;1;1;1;1;1;0
+2317;19905;1;169;73.0;120;90;1;1;0;0;1;0
+2318;17427;2;159;58.0;120;80;1;1;0;0;1;0
+2319;19599;1;157;72.0;120;80;2;2;0;0;1;1
+2322;20892;1;163;93.0;120;70;1;1;0;0;1;1
+2323;14575;1;157;84.0;100;80;1;1;0;0;1;0
+2324;21156;2;178;90.0;120;80;2;1;0;0;1;1
+2325;23525;1;156;89.0;150;100;1;3;0;0;1;1
+2326;19769;2;176;89.0;130;90;3;3;1;0;1;0
+2327;15965;2;162;86.0;120;80;1;1;0;0;1;0
+2328;19652;1;160;56.0;110;70;2;1;0;0;1;0
+2329;17546;1;168;85.0;150;80;1;1;0;0;0;1
+2330;14785;1;168;65.0;120;80;1;1;0;0;1;0
+2331;20670;1;159;52.0;100;70;1;1;0;0;1;0
+2332;19134;2;170;68.0;110;60;1;1;0;0;1;0
+2333;21251;1;160;96.0;120;83;1;1;0;0;0;1
+2334;20612;2;174;79.0;130;90;1;1;0;0;1;1
+2335;16121;1;177;96.0;120;80;1;1;0;0;1;0
+2336;21061;1;170;83.0;120;80;1;1;0;0;1;1
+2338;20239;1;157;78.0;110;70;1;2;0;0;0;0
+2339;23273;1;164;58.0;110;70;1;1;0;0;1;0
+2340;19910;2;173;78.0;120;80;1;1;0;0;1;0
+2341;20016;2;166;87.0;140;90;2;2;0;0;1;1
+2342;21994;1;160;63.0;110;75;2;1;0;0;1;1
+2343;18157;1;165;82.0;150;90;1;1;0;0;1;1
+2344;16617;2;165;73.0;100;70;1;1;1;0;1;0
+2345;19103;1;150;75.0;120;80;1;1;0;0;0;0
+2346;14450;1;155;85.0;130;90;1;1;0;0;1;1
+2347;18377;1;170;76.0;130;80;1;1;0;0;1;0
+2348;19489;2;169;102.0;120;80;2;2;0;0;1;0
+2351;15948;2;160;73.0;100;60;1;1;0;0;1;0
+2352;23146;1;162;73.0;120;80;1;1;0;0;0;1
+2354;15864;1;164;79.0;130;90;1;1;0;0;1;1
+2355;21882;1;165;84.0;130;80;1;1;0;0;1;1
+2356;22549;1;158;75.0;120;80;1;1;0;0;1;0
+2357;19802;1;168;94.0;120;80;1;1;0;0;1;1
+2358;22047;2;159;64.0;100;60;1;1;0;0;1;0
+2359;19794;2;179;115.0;160;90;2;1;0;1;0;1
+2360;19560;1;182;92.0;145;90;1;1;0;1;1;1
+2361;16154;2;172;67.0;130;70;2;1;0;0;1;0
+2362;21572;2;170;76.0;120;80;1;1;0;0;1;0
+2364;23228;1;147;56.0;110;70;3;3;0;0;1;0
+2365;15926;1;150;54.0;110;70;1;1;0;0;1;0
+2366;21780;1;170;67.0;130;90;1;1;0;0;1;1
+2368;14502;1;168;69.0;120;90;1;1;0;0;1;0
+2369;21118;1;155;63.0;140;90;1;1;0;0;1;1
+2371;22588;1;160;88.0;120;80;2;1;0;0;0;1
+2373;14598;2;170;81.0;120;80;1;1;0;0;1;0
+2374;21904;1;153;71.0;140;90;1;1;0;0;1;1
+2377;21012;1;163;79.0;130;80;1;2;0;0;1;0
+2379;19517;1;162;94.0;120;80;2;1;0;0;1;0
+2380;18117;1;162;58.0;110;70;1;1;0;0;1;1
+2384;19535;1;171;83.6;110;70;1;1;0;0;1;1
+2385;18224;1;165;69.0;130;80;1;2;0;0;1;0
+2387;18288;1;157;73.0;130;60;1;1;0;0;1;1
+2388;19019;1;157;80.0;110;70;1;1;0;0;1;1
+2389;21814;1;155;69.0;110;80;1;2;0;0;1;0
+2392;20316;1;155;58.0;100;70;1;1;0;0;0;0
+2393;18193;2;165;80.0;120;80;1;2;0;0;1;1
+2394;15881;1;150;64.0;120;80;1;1;0;0;1;1
+2395;22577;1;158;79.0;150;100;3;2;0;0;1;1
+2398;21105;1;172;88.0;120;80;1;1;0;0;1;1
+2399;23496;1;158;59.0;120;80;1;1;0;0;0;1
+2401;17403;1;161;109.0;160;1000;2;1;0;0;1;1
+2407;14830;2;165;56.0;180;100;1;1;0;0;1;1
+2408;23354;2;176;95.0;120;80;1;3;0;0;1;0
+2409;20989;2;160;70.0;140;90;3;3;0;0;0;1
+2411;23312;1;157;80.0;120;80;2;1;0;0;1;1
+2412;20279;1;175;80.0;120;80;1;1;0;0;1;1
+2413;16635;1;161;54.0;120;70;1;1;0;0;1;0
+2415;23323;2;163;62.0;110;70;1;1;1;0;1;0
+2417;22605;1;157;108.0;130;80;3;1;0;0;1;1
+2418;21833;1;151;56.0;120;80;1;1;0;0;1;1
+2419;20506;1;157;83.0;130;90;2;1;0;0;0;0
+2421;18009;1;158;60.0;90;60;2;1;0;0;1;0
+2423;21082;2;169;70.0;110;80;1;1;1;1;1;0
+2424;16649;1;155;45.0;120;80;1;1;0;0;1;0
+2426;14462;1;153;50.0;100;60;1;1;0;0;1;0
+2427;22622;1;150;66.0;150;90;1;1;0;0;1;1
+2428;20420;1;168;88.0;140;100;1;1;0;0;0;0
+2430;20584;1;147;52.0;150;90;3;1;0;0;1;1
+2431;16047;1;168;70.0;130;90;1;1;0;0;0;1
+2435;16266;1;162;72.0;145;90;3;3;0;0;1;1
+2436;16644;2;176;70.0;110;70;1;1;0;0;1;1
+2438;20389;2;177;105.0;130;80;1;1;0;0;1;0
+2440;21222;1;163;75.0;120;80;1;1;0;0;1;1
+2441;18399;1;154;71.0;120;70;1;1;0;0;1;0
+2442;15971;2;168;76.0;120;90;1;1;0;0;1;0
+2445;18931;2;175;80.0;120;80;1;1;1;0;1;0
+2446;21236;2;177;80.0;120;80;2;3;1;0;1;0
+2448;20582;2;186;77.0;110;90;1;1;0;0;0;1
+2449;21050;1;159;71.0;140;90;1;1;0;0;1;1
+2451;19815;1;158;74.0;120;80;1;1;0;0;1;1
+2452;19908;1;180;80.0;120;80;1;1;0;0;0;0
+2453;22638;2;170;71.0;140;90;1;1;0;0;0;1
+2454;20392;2;171;69.0;130;100;3;1;0;0;0;1
+2455;19034;1;159;62.0;110;70;1;1;0;0;1;0
+2456;23233;2;172;74.0;124;80;1;1;0;0;0;1
+2457;20503;2;175;71.0;120;80;3;3;0;0;1;0
+2458;22798;1;151;55.0;120;90;1;1;0;0;1;1
+2459;22564;1;157;97.0;120;80;1;1;0;0;1;1
+2460;20223;1;163;120.0;130;90;1;1;0;0;1;1
+2462;21258;1;145;59.0;150;100;3;3;0;0;1;1
+2463;20193;1;160;60.0;130;80;1;1;0;0;1;1
+2464;22108;2;165;85.0;120;80;1;1;0;0;1;1
+2465;21234;1;159;59.0;110;70;2;1;0;0;0;1
+2466;16729;1;151;61.0;140;90;3;3;0;0;1;1
+2467;18146;1;160;60.0;120;80;1;2;0;0;1;1
+2468;20437;1;167;100.0;140;80;3;3;0;0;1;1
+2469;21693;1;159;95.0;160;90;3;1;0;0;1;1
+2470;19691;1;159;75.0;180;100;1;1;0;0;1;1
+2474;14436;1;168;60.0;120;80;1;1;0;0;1;0
+2476;16743;2;183;80.0;120;80;1;1;0;0;0;0
+2477;17690;2;178;70.0;120;80;1;1;0;0;1;1
+2478;21814;1;164;66.0;160;90;2;1;0;0;1;0
+2480;20971;1;158;68.0;160;100;2;1;0;0;1;1
+2482;19976;2;173;80.0;130;80;1;1;0;0;1;1
+2483;15815;1;157;54.0;120;70;1;1;0;0;1;1
+2484;21259;1;150;68.0;120;80;2;3;0;0;1;0
+2485;15317;2;170;70.0;140;90;2;1;0;0;1;0
+2486;23466;1;169;69.0;120;80;1;1;0;0;0;1
+2487;16121;1;176;87.0;140;90;1;1;0;0;1;1
+2488;20401;1;160;65.0;120;80;1;1;0;0;0;0
+2489;20898;2;174;86.0;140;80;3;1;0;0;1;1
+2493;19764;2;182;83.0;140;90;1;1;0;0;1;1
+2494;22703;1;159;73.0;150;87;1;1;0;0;1;1
+2496;20010;1;167;76.0;120;80;1;1;0;0;1;1
+2497;16201;1;166;68.0;100;60;1;1;0;0;1;1
+2498;19118;2;166;86.0;120;80;1;1;0;0;1;0
+2500;14543;2;183;120.0;150;100;1;1;0;0;0;1
+2501;15335;1;164;61.0;130;90;1;1;0;0;1;0
+2503;21804;1;150;62.0;120;80;1;1;0;0;1;0
+2504;21748;1;165;80.0;100;69;1;1;0;0;1;0
+2505;14365;2;168;64.0;11;60;1;1;1;1;1;0
+2506;23417;1;166;78.0;110;70;2;1;0;0;1;1
+2507;23208;1;163;69.0;160;70;3;3;0;0;1;1
+2510;19814;2;165;62.0;140;90;1;1;0;0;1;1
+2511;16009;1;155;66.0;100;70;1;1;0;0;1;0
+2512;22086;1;162;64.0;120;80;1;1;0;0;0;0
+2513;22483;2;165;70.0;120;90;1;1;0;0;1;1
+2515;16133;2;172;90.0;120;80;1;1;1;0;1;1
+2516;23293;1;153;98.0;170;100;2;3;0;0;1;1
+2517;19730;1;157;57.0;120;80;1;1;0;0;0;0
+2519;20536;1;164;87.0;120;79;1;3;0;0;1;0
+2520;20194;1;158;75.0;110;80;1;1;0;0;1;0
+2521;19716;2;178;75.0;110;70;1;1;0;0;1;0
+2522;19719;2;168;66.0;110;70;1;1;0;0;1;0
+2523;17543;1;154;58.0;140;100;1;1;0;0;1;1
+2524;22127;1;161;88.0;110;60;2;1;0;0;0;1
+2525;18334;1;163;76.0;110;70;2;1;0;0;1;0
+2528;18016;1;161;47.0;150;90;1;1;0;0;1;1
+2529;21228;2;165;75.0;110;70;1;1;0;0;1;0
+2531;21241;1;175;90.0;120;80;1;1;0;0;1;0
+2534;21269;2;161;60.0;140;90;3;3;1;0;1;1
+2536;21299;2;175;75.0;130;80;1;1;1;0;1;0
+2537;18496;1;172;60.0;100;60;1;1;0;0;1;0
+2538;19593;1;157;61.0;120;80;1;1;0;0;1;0
+2540;18843;1;163;63.0;120;80;3;3;0;0;0;1
+2541;21139;2;174;95.0;110;80;3;1;0;1;1;0
+2542;22477;1;158;93.0;180;1000;1;1;0;0;1;1
+2544;17578;2;180;90.0;120;80;1;1;0;0;1;0
+2545;22582;2;168;100.0;120;80;1;1;0;0;1;1
+2546;19227;1;169;80.0;140;70;1;1;0;0;0;1
+2547;20190;1;150;88.0;120;80;1;1;0;0;1;1
+2548;14700;1;155;55.0;160;100;1;1;0;0;1;1
+2549;16970;1;169;68.0;120;80;1;1;0;0;0;0
+2550;20453;1;158;54.0;120;80;1;1;0;0;1;0
+2551;18141;1;158;62.0;120;80;1;1;0;0;0;0
+2552;20705;2;167;54.0;120;80;1;1;0;0;0;0
+2554;22789;1;158;68.0;160;100;1;1;0;0;1;1
+2555;20492;2;163;100.0;172;119;2;1;0;0;0;0
+2558;18855;2;175;94.0;130;90;2;2;0;1;1;1
+2559;20406;1;162;89.0;150;70;1;3;0;0;1;1
+2560;16648;1;155;67.0;100;60;1;1;0;0;1;0
+2561;21742;2;160;60.0;120;80;1;1;0;0;1;1
+2563;20918;1;154;70.0;130;90;1;1;0;0;1;0
+2564;15242;1;162;68.0;140;90;1;1;0;0;1;1
+2565;17636;2;157;52.0;150;100;1;1;1;0;1;1
+2566;22629;1;154;57.0;120;80;1;1;0;0;1;1
+2569;19742;1;160;102.0;140;90;2;1;0;0;1;1
+2570;23158;1;156;76.0;120;80;1;1;0;0;0;0
+2571;19821;1;165;62.0;120;80;1;1;0;0;1;0
+2572;17552;1;165;60.0;120;80;1;1;0;0;1;0
+2573;23204;2;178;87.0;140;80;3;3;0;0;1;0
+2574;21297;1;156;59.0;160;90;1;1;0;0;0;1
+2577;21040;1;162;60.0;120;80;1;2;0;0;1;0
+2578;20512;1;168;65.0;120;80;1;1;0;0;1;1
+2579;20311;2;169;86.0;130;80;2;3;1;1;1;0
+2580;23207;2;168;88.0;120;80;3;1;0;0;1;1
+2581;21088;1;169;68.0;120;80;1;1;0;0;1;0
+2582;18218;2;167;89.0;130;90;1;3;1;1;1;1
+2584;20490;2;170;84.0;120;80;1;1;1;0;0;0
+2585;20264;1;154;68.0;120;80;3;1;0;0;1;0
+2587;19718;1;170;75.0;130;90;3;3;0;1;0;1
+2588;21410;1;160;58.0;120;80;1;1;0;0;1;0
+2589;16751;1;166;80.0;120;80;2;1;0;0;1;0
+2590;21709;2;163;90.0;120;80;3;1;0;0;1;1
+2591;22520;2;168;68.0;140;90;3;1;0;0;1;1
+2592;21012;1;169;68.0;140;80;1;3;0;0;1;0
+2594;17554;1;159;65.0;135;85;1;1;0;0;1;1
+2595;19614;2;168;65.0;130;90;1;1;0;0;1;1
+2596;19073;2;167;93.0;120;80;1;1;0;0;1;0
+2597;17220;2;178;82.0;120;80;1;1;0;0;0;1
+2598;18973;1;167;110.0;130;90;1;1;0;0;1;0
+2601;17587;1;169;65.0;120;80;1;1;0;0;1;0
+2602;20340;1;169;74.0;120;80;1;1;0;0;0;1
+2604;18198;1;161;68.0;120;80;1;1;0;0;1;0
+2607;20551;2;174;88.0;120;80;1;1;1;1;1;0
+2608;19618;1;151;68.0;120;80;1;1;1;0;1;0
+2611;20425;1;168;63.0;130;80;1;1;0;0;1;0
+2613;19697;1;168;68.0;120;90;1;1;0;0;1;0
+2614;16821;1;169;95.0;140;100;1;1;0;0;0;1
+2616;16831;2;158;60.0;120;70;1;1;0;0;1;1
+2618;22724;1;161;92.0;160;80;1;1;0;0;0;1
+2619;19121;1;169;75.0;120;80;1;1;0;0;1;0
+2620;23179;1;152;57.0;120;80;1;1;0;0;1;1
+2622;21192;1;165;78.0;120;80;1;1;0;0;1;1
+2623;20274;2;172;78.0;140;80;1;1;0;0;1;1
+2625;23253;1;157;60.0;120;80;1;1;0;1;1;1
+2627;18128;2;168;74.0;120;80;1;1;0;0;0;0
+2628;19034;1;156;72.0;120;80;1;1;0;0;0;1
+2629;22878;1;156;75.0;120;80;1;1;0;0;1;1
+2632;15216;1;170;69.0;120;69;1;1;0;0;1;0
+2634;17293;1;165;63.0;120;80;1;1;0;0;1;0
+2636;23249;2;172;82.0;120;80;1;1;1;0;1;1
+2638;22529;2;165;65.0;130;90;1;1;0;0;0;1
+2639;19740;1;161;102.0;120;80;3;3;0;0;0;1
+2640;20603;2;165;80.0;120;70;2;1;0;0;0;1
+2642;19833;2;175;90.0;120;80;1;1;1;1;1;1
+2644;22644;1;178;69.0;140;80;3;1;0;0;1;1
+2645;15355;1;166;79.0;120;80;1;1;0;0;1;0
+2647;18125;2;179;106.0;150;100;3;3;0;1;1;1
+2648;18984;1;155;69.0;110;70;1;1;0;0;1;0
+2650;17552;1;165;65.0;120;80;1;1;0;0;1;0
+2651;21144;1;160;70.0;130;90;1;1;0;0;1;0
+2652;18161;1;152;68.0;110;80;1;1;0;0;0;0
+2653;17258;2;176;71.0;100;70;1;2;0;0;1;0
+2654;15116;1;160;60.0;902;60;1;1;0;0;1;0
+2655;17370;2;170;62.0;110;80;1;1;0;0;1;0
+2656;14871;2;171;78.0;110;80;1;1;0;0;0;1
+2657;21960;2;163;74.0;140;90;1;1;0;0;1;1
+2658;19014;1;168;64.0;140;80;3;1;0;0;1;1
+2660;21132;1;160;60.0;130;80;1;1;0;0;0;1
+2661;17656;1;160;95.0;110;90;2;1;0;0;1;0
+2664;21870;2;165;65.0;120;60;1;1;0;0;1;0
+2665;19637;2;170;110.0;150;90;1;1;0;0;1;0
+2666;19759;1;163;68.0;130;90;1;1;0;0;1;1
+2667;19787;1;160;60.0;110;80;2;1;0;0;1;1
+2669;18819;2;172;76.0;160;100;1;1;0;0;1;1
+2670;15135;1;151;69.0;140;90;1;1;0;0;1;1
+2671;19650;1;167;52.0;130;90;1;1;0;0;1;0
+2673;14601;1;157;57.0;90;60;1;1;0;0;0;0
+2676;15217;1;162;54.0;90;60;1;1;0;0;0;0
+2677;21989;1;167;65.0;120;80;1;1;0;0;1;1
+2678;21137;2;167;82.0;150;90;1;1;0;0;1;1
+2679;15338;1;165;81.0;130;90;1;1;0;0;0;1
+2680;20898;1;155;88.0;150;90;2;1;0;0;1;1
+2681;21831;1;159;74.0;130;90;1;1;0;0;1;1
+2683;17575;1;169;66.0;100;60;1;1;0;0;0;0
+2685;21142;1;160;58.0;120;80;1;1;0;0;1;0
+2686;16070;1;157;74.0;110;70;2;1;0;0;1;1
+2688;15439;2;170;84.0;120;80;1;1;0;0;0;1
+2689;19073;1;168;59.0;120;80;1;1;0;0;0;0
+2690;22050;1;174;65.0;140;80;2;2;0;0;1;0
+2691;21796;2;165;68.0;120;70;1;1;0;0;1;0
+2692;19837;2;164;95.0;130;90;3;1;1;0;1;1
+2693;20586;1;159;75.0;90;60;2;2;0;0;1;0
+2694;15109;1;166;77.0;160;1000;1;2;1;0;1;0
+2696;20190;2;170;86.0;160;90;1;1;0;0;1;1
+2698;19476;2;162;71.0;150;90;1;2;0;0;1;1
+2699;16698;1;160;55.0;110;80;1;1;0;0;1;1
+2700;14728;1;166;88.0;130;100;1;1;0;0;1;1
+2701;21141;2;166;61.0;160;100;1;1;0;0;1;1
+2702;16158;2;161;58.0;110;70;1;1;0;0;1;0
+2703;17279;1;157;75.0;140;90;2;1;0;0;1;1
+2704;21177;2;176;102.0;120;80;3;1;1;1;1;0
+2706;21283;1;165;65.0;120;80;1;1;0;0;1;0
+2708;17530;1;166;120.0;120;80;2;1;0;0;0;1
+2709;22099;1;167;79.0;120;80;1;1;0;0;1;1
+2711;17273;1;167;82.0;110;80;1;1;0;0;1;0
+2712;21089;2;180;85.0;130;90;3;1;1;1;1;0
+2713;15877;1;163;65.0;110;70;1;1;0;0;1;0
+2714;19007;2;168;70.0;120;80;1;1;1;0;1;0
+2715;20265;1;162;69.0;140;90;1;1;0;0;1;1
+2716;19639;1;164;91.0;110;80;1;1;0;0;1;0
+2717;23341;1;150;72.0;130;90;1;1;0;0;1;0
+2718;23227;1;154;72.0;180;100;3;3;0;0;1;1
+2719;19459;2;180;108.0;140;80;1;1;0;0;1;0
+2720;15761;2;179;98.0;130;80;2;1;0;0;0;0
+2721;19705;1;152;68.0;120;80;1;1;0;0;1;0
+2722;19655;1;167;75.0;140;90;1;1;0;0;0;1
+2725;15505;1;165;62.0;100;60;1;1;0;0;1;0
+2728;23503;1;165;63.0;120;80;1;1;0;0;1;0
+2729;14931;1;165;66.0;140;90;3;3;0;0;0;0
+2730;19745;2;168;75.0;150;80;1;1;0;0;1;1
+2731;14764;1;162;74.0;120;80;1;1;0;0;1;1
+2734;17753;2;180;134.0;160;90;1;3;1;1;1;0
+2735;18230;1;162;53.0;100;70;1;1;0;0;1;0
+2736;14691;1;152;51.0;110;70;1;1;0;0;1;0
+2737;22121;1;170;68.0;120;70;1;1;0;0;1;0
+2738;14656;1;170;58.0;110;60;1;1;0;0;1;0
+2739;17561;1;152;58.0;90;60;1;1;0;0;1;0
+2740;21798;2;170;74.0;140;80;1;1;0;0;1;1
+2741;18285;1;165;68.0;130;90;1;1;0;0;1;0
+2742;22593;2;165;76.0;150;90;3;1;0;0;1;1
+2743;19786;1;170;70.0;100;60;1;1;0;0;1;0
+2746;19030;1;175;74.0;120;80;1;1;0;0;1;1
+2748;21990;2;168;68.0;120;80;1;1;0;0;0;1
+2749;18416;2;158;60.0;120;90;1;1;0;0;1;0
+2750;22055;2;169;64.0;120;80;1;1;0;0;0;1
+2751;19624;2;176;59.0;120;80;1;1;0;0;1;0
+2752;14461;1;165;65.0;120;80;1;1;0;0;1;0
+2755;23617;2;179;70.0;120;70;3;3;0;0;1;1
+2757;15908;2;176;86.0;130;80;1;1;0;0;1;0
+2758;18254;2;180;100.0;130;90;1;1;1;0;1;0
+2760;23189;1;152;70.0;180;100;3;3;0;0;1;1
+2762;14493;1;170;85.0;110;70;1;1;0;0;0;1
+2765;19059;1;160;88.0;160;90;1;2;0;0;1;0
+2766;20446;1;158;59.0;120;80;2;1;0;0;1;1
+2767;19911;1;166;66.0;120;80;1;1;0;0;1;1
+2768;22603;1;158;66.0;120;80;3;1;0;0;1;1
+2769;17458;1;155;50.0;90;50;1;1;0;0;1;0
+2770;21293;1;168;64.0;120;80;1;1;0;0;1;1
+2772;15355;1;154;102.0;130;90;2;1;0;0;1;1
+2773;21212;1;149;69.0;110;80;3;1;0;0;1;0
+2774;21839;1;151;58.0;110;80;2;2;0;0;1;0
+2777;18953;1;161;60.0;120;80;2;1;0;0;1;0
+2778;15296;1;174;67.0;120;80;1;1;0;0;1;0
+2779;23298;2;159;77.0;180;100;1;1;0;0;0;1
+2780;20599;2;170;113.0;150;100;3;3;0;0;1;1
+2782;15269;2;175;59.0;110;70;2;1;1;0;1;0
+2783;20402;2;167;65.0;140;90;1;3;0;0;1;0
+2784;18040;1;163;68.0;130;90;1;1;0;0;1;1
+2785;20338;1;156;73.0;110;80;1;1;0;0;1;0
+2786;21094;1;158;68.0;110;70;2;1;0;0;1;0
+2787;19867;2;165;65.0;120;80;1;1;0;0;1;0
+2788;14445;1;165;60.0;120;80;1;1;0;0;1;0
+2790;16080;2;172;70.0;120;90;1;1;0;0;1;0
+2791;21004;2;161;91.0;140;90;1;1;1;0;1;0
+2794;15319;1;153;82.0;120;80;1;1;0;0;0;1
+2795;14652;2;168;82.0;100;80;1;1;0;0;1;0
+2798;20495;1;162;78.0;140;80;2;2;0;0;0;0
+2799;15882;2;183;71.0;100;70;1;1;1;0;1;0
+2800;19870;1;165;70.0;120;80;1;1;0;0;0;1
+2801;19643;1;154;81.0;110;70;3;1;0;0;1;0
+2805;18238;1;169;78.0;110;70;1;1;0;0;1;1
+2807;19808;1;151;76.0;120;80;1;1;0;0;1;0
+2808;16192;2;168;72.0;110;70;1;1;0;0;1;0
+2810;21916;2;182;94.0;162;90;1;1;0;0;1;0
+2811;17558;1;165;65.0;120;70;1;1;0;0;0;1
+2812;21979;2;170;78.0;120;60;1;1;0;0;1;0
+2813;18897;1;171;82.0;120;90;1;1;0;0;1;0
+2814;22071;1;156;85.0;160;90;1;1;0;0;1;0
+2815;19148;1;159;69.0;120;80;1;1;0;0;1;0
+2817;21843;1;163;80.0;140;90;1;1;0;0;1;1
+2818;18841;2;168;78.0;140;80;3;3;1;0;1;1
+2819;21895;2;167;75.0;130;80;1;1;0;0;1;0
+2820;18199;1;157;72.0;110;70;1;1;0;0;1;0
+2823;18067;1;156;52.0;150;80;1;1;1;0;0;1
+2825;17729;2;168;69.0;120;80;2;1;0;0;0;1
+2826;18989;1;160;65.0;120;80;1;1;0;0;1;0
+2827;21014;1;154;60.0;120;80;1;1;0;0;1;0
+2828;21911;1;160;62.0;120;80;1;1;0;0;1;0
+2831;21183;2;159;75.0;140;80;3;3;0;0;1;1
+2833;15380;1;150;74.0;150;100;1;1;1;0;1;1
+2834;18953;1;156;55.0;140;80;1;1;0;0;1;1
+2835;20618;2;170;70.0;130;90;1;1;0;0;1;0
+2836;21073;1;168;80.0;120;80;1;1;0;0;1;0
+2837;20370;1;160;66.0;150;90;1;1;0;0;1;1
+2838;21041;1;159;61.0;100;70;1;1;0;0;1;0
+2839;23119;1;155;66.0;140;90;2;2;0;0;1;0
+2840;17525;2;165;68.0;120;80;1;1;0;0;1;0
+2842;22719;2;170;69.0;120;80;3;1;1;0;1;1
+2843;21050;1;160;65.0;140;100;1;1;0;0;1;1
+2844;22371;1;163;92.0;120;80;3;1;0;0;1;0
+2845;22712;2;167;59.0;906;0;1;1;0;0;1;0
+2846;20689;1;165;62.0;120;80;1;1;0;0;1;0
+2847;20246;1;158;74.0;120;80;1;1;0;0;1;0
+2849;19868;2;186;70.0;120;80;2;2;1;0;1;0
+2850;23345;1;159;106.5;130;80;3;1;0;0;1;1
+2853;16972;1;168;58.0;120;80;3;3;0;0;1;0
+2857;14617;1;154;67.0;90;60;1;1;0;0;1;0
+2858;18980;1;165;63.0;120;80;1;1;0;0;0;0
+2859;21857;1;164;71.0;130;70;1;1;0;0;0;1
+2860;18261;1;160;58.0;120;80;1;1;0;0;1;1
+2861;14503;2;176;75.0;160;100;1;1;1;1;1;1
+2862;16590;1;164;74.0;120;60;1;1;0;0;0;0
+2863;19722;2;164;75.0;120;70;2;3;0;0;1;0
+2864;22469;1;155;72.0;160;90;2;1;0;0;1;1
+2865;20691;1;165;65.0;120;80;1;1;0;0;0;0
+2867;21398;1;160;75.0;130;90;1;1;0;0;1;0
+2868;21803;1;173;142.0;140;90;1;2;0;0;1;1
+2870;15459;1;158;78.0;90;60;1;1;0;0;1;0
+2871;18798;1;156;106.0;130;90;1;1;0;0;1;0
+2874;19159;2;165;69.0;150;100;1;1;0;0;1;1
+2876;19172;1;165;65.0;120;80;1;1;0;0;1;1
+2877;18023;1;172;75.0;110;70;1;1;0;0;1;0
+2878;21776;1;160;72.0;110;80;1;1;0;0;1;1
+2881;15962;2;167;80.0;120;80;1;1;0;0;1;0
+2882;16990;2;169;75.0;120;80;2;1;0;0;1;1
+2883;20300;1;165;95.0;110;70;2;2;0;0;1;1
+2884;20308;1;174;72.0;120;70;3;1;0;0;1;1
+2888;23602;2;168;69.0;120;80;1;1;0;0;0;1
+2890;19224;1;165;63.0;120;80;1;1;0;0;1;0
+2891;19125;1;157;70.0;120;80;1;3;0;0;1;0
+2892;23273;1;155;79.0;120;80;3;1;0;0;1;1
+2893;18885;2;172;84.0;140;80;1;2;0;0;1;1
+2894;22577;1;163;105.0;130;80;1;1;0;0;1;0
+2897;23384;1;165;71.0;120;80;1;1;0;0;1;1
+2898;18827;1;157;90.0;125;80;1;1;0;0;1;1
+2899;14359;2;169;68.0;110;80;1;1;0;0;1;0
+2900;23399;2;172;89.0;120;90;1;1;0;0;1;0
+2902;18498;1;165;68.0;120;80;1;1;0;0;1;1
+2904;21265;2;163;97.0;117;90;2;1;0;1;1;1
+2906;16748;2;166;64.0;120;80;1;1;0;1;1;1
+2907;18171;2;176;90.0;140;100;1;1;1;0;1;1
+2909;21015;1;155;72.0;120;80;2;1;0;0;1;0
+2910;14813;2;165;48.0;100;60;1;1;1;0;1;0
+2911;15941;1;164;87.0;140;89;1;1;0;0;0;1
+2912;18113;2;179;75.0;140;80;1;1;0;0;1;0
+2914;21340;1;171;60.0;140;100;1;1;0;0;0;1
+2918;19648;1;156;67.0;120;80;1;1;0;0;0;0
+2919;20322;1;165;64.0;120;70;1;1;0;0;1;0
+2920;18305;1;154;47.0;100;70;2;1;0;0;1;0
+2921;21229;2;165;87.0;150;100;1;1;0;0;1;1
+2922;21742;1;156;79.0;130;80;1;2;0;0;1;0
+2923;19640;1;160;60.0;150;90;2;2;0;0;0;1
+2924;20376;1;172;75.0;120;80;1;1;0;0;1;0
+2925;14566;2;172;76.0;120;70;1;1;0;0;1;0
+2926;16720;2;170;65.0;120;80;1;3;0;0;0;0
+2928;21831;1;162;68.0;160;1100;1;1;0;0;1;1
+2929;20203;2;153;72.0;140;90;3;1;0;1;0;1
+2930;21107;1;178;70.0;140;90;1;1;0;0;0;1
+2931;19830;1;152;66.0;130;90;1;1;0;0;1;0
+2932;21338;2;162;75.0;110;70;1;1;0;1;1;0
+2934;19561;1;164;59.0;110;70;1;1;0;0;0;0
+2935;19052;1;163;70.0;120;80;1;1;0;0;1;0
+2936;18201;1;156;80.0;130;80;1;1;0;0;1;0
+2938;18873;1;163;61.0;100;70;1;1;0;0;0;0
+2939;21206;1;151;70.0;120;80;1;1;0;0;1;1
+2942;20553;1;169;79.0;130;90;1;1;0;0;1;0
+2945;20228;2;164;82.0;130;80;3;1;0;0;1;1
+2946;22186;1;167;102.0;134;84;2;1;0;0;1;0
+2947;18252;1;158;94.0;120;80;1;1;0;0;0;1
+2949;21073;1;164;80.0;120;80;3;1;0;0;1;1
+2950;21321;1;170;82.0;110;80;1;1;0;0;1;0
+2951;22002;2;174;75.0;120;80;1;1;0;0;1;0
+2952;21919;1;155;56.0;140;90;1;1;0;0;1;1
+2954;19622;1;158;56.0;120;60;1;1;0;0;0;0
+2956;19829;2;180;76.0;100;70;1;1;0;0;1;0
+2957;18888;1;164;80.0;120;80;1;1;0;0;1;0
+2958;15964;2;175;105.0;120;80;2;2;0;1;1;1
+2959;18231;1;158;65.0;120;80;1;1;0;0;1;0
+2960;20469;2;174;85.0;150;90;1;1;0;0;0;1
+2961;16544;2;177;84.0;170;120;3;1;0;1;0;1
+2962;18955;1;159;66.0;110;80;1;1;0;0;0;0
+2963;21280;1;163;102.0;120;80;3;1;0;0;1;1
+2964;20399;1;165;65.0;120;80;1;3;0;0;0;1
+2966;19651;1;155;73.0;160;100;1;1;0;0;1;1
+2967;18919;2;175;65.0;120;80;1;1;0;0;1;0
+2969;20509;1;163;59.0;120;80;1;1;0;0;0;0
+2971;22710;2;170;72.0;125;80;1;1;0;0;1;0
+2972;18801;1;166;68.0;110;80;1;1;0;0;1;0
+2973;21040;1;160;59.0;120;90;1;1;0;0;1;0
+2974;20602;2;163;60.0;120;80;1;2;0;0;1;0
+2975;19718;1;162;73.0;120;80;1;1;0;0;0;0
+2976;23288;2;174;104.0;140;80;1;1;0;0;0;1
+2977;23438;2;165;62.0;120;80;3;3;0;0;0;1
+2978;18259;1;162;71.0;120;80;1;1;0;0;1;1
+2979;22852;2;167;78.0;130;80;1;1;1;0;1;1
+2980;19802;1;155;71.0;120;80;2;2;1;0;0;1
+2981;23027;1;150;100.0;120;70;3;1;0;0;1;0
+2984;21206;1;163;65.0;130;80;1;1;0;0;1;0
+2986;20264;2;162;78.0;135;85;1;1;1;0;1;0
+2988;19192;2;182;88.0;120;90;3;1;1;0;1;1
+2989;23431;1;154;85.0;166;93;1;1;0;0;1;0
+2990;19776;1;163;84.0;130;90;1;1;0;0;1;0
+2991;23231;1;156;92.0;150;90;3;1;0;0;1;1
+2993;15359;1;170;89.0;110;70;1;1;0;0;1;0
+2994;21270;2;165;65.0;120;80;1;1;0;0;1;0
+2995;21214;1;175;98.0;150;90;1;1;0;0;1;1
+2996;21064;1;170;74.0;120;80;1;1;0;0;1;1
+2998;18817;2;176;81.0;120;80;1;1;1;0;0;0
+2999;23426;2;163;90.0;140;100;3;2;0;1;0;1
+3000;21780;1;149;70.0;120;80;1;1;0;0;1;1
+3001;21050;1;159;95.0;130;90;2;1;0;0;1;1
+3002;17486;1;151;73.0;110;70;1;1;0;0;1;0
+3003;19779;1;154;60.0;120;70;1;1;0;0;1;1
+3005;18205;1;156;78.0;130;70;2;2;0;0;1;0
+3006;20357;1;165;63.0;120;80;1;1;0;0;1;0
+3010;21311;1;165;65.0;110;70;1;1;0;0;1;0
+3011;19127;1;169;64.0;120;80;1;1;0;0;1;1
+3012;19591;2;180;90.0;120;80;1;1;0;0;1;0
+3013;19809;1;175;85.0;130;80;1;1;0;0;1;1
+3014;22347;1;160;92.0;110;70;2;1;0;0;1;1
+3015;18307;1;161;73.0;150;100;1;2;0;0;1;0
+3016;14640;1;160;73.0;140;80;1;1;0;0;1;1
+3017;22513;1;156;74.0;140;90;2;1;0;0;0;1
+3019;21769;1;154;82.0;120;80;2;1;0;0;1;0
+3021;22039;1;160;56.0;120;80;1;1;0;0;0;1
+3022;22651;2;165;54.0;130;70;3;1;0;0;1;0
+3023;20713;2;180;82.0;120;80;2;1;0;0;1;0
+3024;20340;1;157;95.0;160;120;3;1;0;0;1;1
+3026;15384;2;174;113.0;210;1100;1;1;0;0;1;1
+3028;17437;1;159;57.0;140;90;1;1;0;0;1;0
+3029;21165;2;174;74.0;120;80;1;1;0;0;1;0
+3030;17391;2;174;75.0;140;80;1;2;0;0;0;1
+3032;21934;2;182;88.0;130;90;2;1;1;0;1;1
+3034;22646;1;170;68.0;120;80;1;1;0;0;1;1
+3035;16520;1;166;63.0;120;80;2;1;0;0;1;1
+3037;18254;1;160;71.0;120;80;1;1;0;1;1;0
+3038;22471;1;165;100.0;150;100;1;3;0;0;0;1
+3040;16713;1;169;75.0;110;70;1;1;0;0;0;0
+3041;16690;1;161;69.0;117;70;1;1;0;0;1;0
+3042;21104;1;155;65.0;130;90;1;1;0;0;1;0
+3043;21879;2;174;79.0;150;90;1;1;0;0;1;0
+3044;16022;2;169;98.0;120;80;1;1;0;0;1;0
+3045;16611;2;169;64.0;120;80;1;1;0;0;0;0
+3046;19495;2;172;70.0;110;90;1;1;1;0;1;0
+3047;19706;2;179;80.0;120;80;1;1;0;0;1;1
+3048;19803;1;154;66.0;140;90;1;1;0;0;0;1
+3049;16160;2;196;74.0;140;90;1;1;1;1;1;1
+3050;15887;1;156;85.0;120;80;1;1;0;0;1;1
+3052;19652;1;160;75.0;140;90;1;1;0;0;1;1
+3053;15577;1;168;65.0;90;70;1;1;0;0;1;1
+3054;17404;2;172;74.0;120;80;1;1;0;0;0;0
+3055;20302;1;158;110.0;140;80;3;3;0;0;1;1
+3056;23572;1;170;70.0;160;80;3;1;0;0;1;1
+3057;21945;2;169;75.0;14;80;2;1;0;0;1;1
+3058;19044;1;152;69.0;150;100;1;1;0;0;1;1
+3059;17276;2;173;95.0;130;90;3;1;0;0;1;1
+3060;19610;2;177;71.0;120;80;1;1;0;0;1;1
+3063;19510;1;165;65.0;120;80;1;1;0;0;1;0
+3064;23233;1;156;67.0;110;70;3;1;0;0;1;1
+3065;21185;2;164;88.0;135;85;2;2;0;0;1;1
+3067;20366;1;162;58.0;120;80;1;3;0;0;1;0
+3069;18910;1;158;69.0;160;100;1;1;0;0;1;1
+3074;17548;2;170;68.0;120;80;1;1;0;0;1;0
+3075;23434;1;160;63.0;140;80;3;1;1;0;1;1
+3076;19244;1;148;69.0;90;70;1;1;0;0;0;0
+3077;21259;1;169;68.0;120;80;1;1;0;0;1;0
+3078;17635;1;162;61.0;120;80;1;1;0;0;0;1
+3079;15341;1;152;54.0;120;80;3;1;0;0;1;1
+3080;18533;1;162;68.0;120;80;3;3;0;0;1;0
+3082;22704;2;174;65.0;110;50;1;1;1;0;1;1
+3083;23403;1;165;80.0;120;80;1;3;0;0;0;1
+3088;17514;2;170;70.0;110;79;1;1;0;0;0;1
+3089;20373;1;155;64.0;130;80;3;1;0;1;1;1
+3091;21096;2;170;61.0;150;100;1;1;0;0;0;1
+3092;16572;1;173;70.0;100;60;1;1;0;0;1;0
+3093;22566;2;174;76.0;180;110;1;1;0;0;1;1
+3095;19815;1;165;65.0;120;80;1;1;0;0;1;0
+3096;20573;2;167;80.0;160;90;1;1;0;0;1;1
+3097;15092;2;170;71.0;120;80;1;1;0;0;1;1
+3098;15471;1;157;50.0;120;80;2;1;0;0;1;0
+3100;21960;2;168;68.0;160;80;3;1;0;0;1;1
+3101;22092;2;168;75.0;120;80;1;1;0;0;1;0
+3102;20396;1;158;76.0;130;100;3;3;0;0;1;0
+3103;23460;1;164;82.0;140;90;3;3;0;0;1;1
+3104;18676;1;158;117.0;130;90;1;1;0;0;1;1
+3105;19682;1;155;57.0;90;60;2;1;0;0;1;0
+3106;19100;1;150;65.0;140;80;1;1;0;0;1;0
+3108;22775;1;165;65.0;110;70;1;1;0;0;1;0
+3109;14759;1;157;59.0;120;70;1;1;0;0;1;0
+3112;21776;2;187;80.0;12;80;1;1;1;0;1;0
+3113;20406;1;169;65.0;120;80;1;1;0;0;1;1
+3115;19930;1;156;62.0;120;80;1;1;1;0;1;0
+3117;22853;2;163;62.0;130;80;1;1;0;0;1;1
+3118;21193;1;160;86.0;120;80;3;1;0;0;1;0
+3119;20563;1;164;105.0;140;90;1;1;0;1;0;1
+3120;20441;2;168;71.0;110;70;1;1;0;0;1;1
+3122;18818;1;160;78.0;120;80;1;1;0;0;0;0
+3123;23450;2;178;98.0;120;90;1;2;0;0;0;1
+3124;21752;2;167;74.0;120;80;1;1;0;0;0;1
+3125;19820;1;165;86.0;140;90;1;1;0;0;1;1
+3126;19584;1;169;78.0;140;80;1;1;0;0;1;0
+3128;20553;2;174;80.0;120;80;1;1;1;0;1;0
+3130;19802;1;161;62.0;110;90;2;1;0;0;1;0
+3131;19941;1;167;55.0;120;80;1;1;0;0;1;1
+3132;20491;1;172;89.0;130;80;1;1;0;0;1;1
+3134;22573;1;160;70.0;120;80;3;1;0;0;1;1
+3135;15944;1;170;92.0;120;80;1;1;0;0;1;0
+3136;21171;1;172;74.0;120;80;1;1;0;0;0;0
+3138;22165;1;165;63.0;100;60;1;1;0;0;1;0
+3139;20957;1;160;70.0;120;80;1;1;1;0;1;1
+3140;21706;1;155;61.0;130;80;1;1;0;0;1;1
+3141;16805;2;170;64.0;110;80;1;1;0;0;1;0
+3142;16876;1;160;60.0;100;70;1;1;0;0;1;0
+3145;21100;2;169;70.0;140;90;2;2;1;0;1;1
+3146;15105;2;169;79.0;120;80;1;2;0;0;1;0
+3147;20552;1;154;108.0;120;80;3;2;0;0;0;1
+3149;20390;1;160;121.0;150;100;1;1;0;0;1;1
+3150;14781;1;164;70.0;120;80;1;1;0;0;1;0
+3151;17436;2;177;75.0;120;79;1;1;0;0;1;0
+3152;14478;2;182;80.0;120;70;1;1;0;0;1;0
+3153;15282;2;169;72.0;110;70;2;1;1;0;1;0
+3154;22506;2;168;75.0;120;80;1;1;0;0;1;1
+3155;15172;1;169;85.0;120;80;1;1;0;0;0;0
+3157;23235;2;178;77.0;120;80;1;1;0;0;1;1
+3159;22025;1;162;74.0;110;60;2;2;0;0;1;0
+3160;18503;1;150;61.0;120;80;1;1;0;0;1;0
+3161;20503;1;168;74.0;120;80;1;1;1;1;1;1
+3162;16563;1;151;84.0;90;70;1;1;0;0;1;0
+3163;15403;1;164;62.0;120;80;1;1;0;0;1;0
+3164;23356;2;165;85.0;180;1100;3;1;0;0;1;1
+3166;20295;1;168;82.0;120;60;1;1;0;0;0;1
+3167;18174;1;157;81.0;130;75;1;1;0;1;1;1
+3168;15983;1;154;69.0;130;90;1;1;0;0;1;0
+3169;19781;1;168;72.0;120;80;1;1;0;0;0;1
+3170;19727;1;175;65.0;110;70;1;1;0;0;1;1
+3171;23529;2;165;65.0;120;80;1;1;0;0;1;1
+3172;20998;1;169;68.0;130;80;1;1;0;0;1;1
+3173;23253;2;172;120.0;170;1100;2;1;0;0;1;1
+3174;14495;1;155;56.0;110;80;1;1;0;0;1;0
+3175;17322;2;179;79.0;130;80;1;1;0;0;1;0
+3176;19144;2;182;107.0;117;84;1;1;1;0;1;1
+3177;19786;1;165;65.0;120;80;3;3;0;0;0;0
+3179;21108;2;174;84.0;140;90;1;2;0;0;1;1
+3181;18186;2;178;99.0;170;90;1;1;0;0;1;1
+3182;22343;1;149;58.0;130;80;2;3;0;0;1;1
+3183;20454;1;155;87.0;150;1000;1;1;0;0;1;1
+3185;18338;1;165;65.0;120;80;1;1;0;0;1;0
+3186;20482;1;163;72.0;120;80;2;1;0;0;1;0
+3187;15285;1;152;40.0;110;60;1;1;0;0;1;0
+3188;16177;1;160;60.0;120;80;1;1;0;0;0;0
+3189;19548;1;156;86.0;150;100;1;1;0;0;0;1
+3190;21022;1;168;99.0;100;60;1;1;0;0;0;0
+3192;23292;1;164;80.0;140;90;3;3;0;0;1;0
+3193;15190;2;179;59.0;110;70;1;1;0;0;1;0
+3194;16802;1;166;62.0;110;80;1;1;0;0;1;0
+3195;22635;2;160;56.0;120;90;1;1;0;0;0;1
+3196;15474;2;175;76.0;140;90;1;1;0;0;0;1
+3198;21193;2;168;100.0;140;90;1;1;1;0;0;1
+3199;23153;1;159;61.0;130;80;1;1;0;0;1;0
+3201;18944;1;168;76.0;150;90;1;1;0;0;1;1
+3203;17480;1;163;72.0;110;80;2;2;0;0;1;1
+3204;14702;1;169;65.0;140;90;1;1;0;0;1;1
+3205;22781;1;163;67.0;140;90;1;1;0;0;1;1
+3207;15938;1;152;48.0;110;80;2;1;0;0;1;0
+3208;22636;1;156;101.0;220;110;1;2;0;0;0;1
+3210;14612;1;165;74.0;110;70;1;1;0;0;1;0
+3211;19771;1;178;85.0;119;80;1;1;0;0;1;0
+3212;17397;1;152;65.0;120;80;2;3;0;0;1;1
+3214;17602;1;158;74.0;140;90;1;1;0;0;0;1
+3215;23280;1;164;62.0;130;80;1;1;0;0;0;0
+3216;15836;1;152;71.0;130;90;1;1;0;0;1;0
+3217;23519;2;170;74.0;130;80;1;1;0;0;1;1
+3220;19121;2;169;82.0;120;80;2;1;1;1;1;1
+3221;19581;1;165;66.0;120;80;1;2;0;0;1;0
+3222;23229;1;163;85.0;120;70;3;3;0;0;0;1
+3224;19500;2;162;70.0;120;80;2;1;1;0;1;0
+3227;18281;2;170;75.0;120;80;1;1;0;0;1;0
+3229;22045;1;170;67.0;130;80;2;1;0;0;0;0
+3231;22129;1;164;64.0;130;80;1;1;0;0;1;1
+3232;22376;2;170;71.0;130;80;1;1;0;0;0;1
+3233;14478;1;165;74.0;120;80;1;1;1;0;1;0
+3235;22522;1;165;65.0;120;82;1;1;0;0;1;0
+3236;19734;2;172;83.0;120;80;1;1;0;0;0;1
+3238;18498;2;183;88.0;130;90;1;1;0;0;1;1
+3239;21276;1;158;104.0;130;90;1;1;0;0;1;0
+3240;17603;1;165;80.0;140;100;1;2;0;0;1;1
+3241;17336;1;172;74.0;120;80;1;1;0;0;1;0
+3242;22435;1;158;105.0;160;1000;3;3;0;0;1;1
+3244;15234;1;157;55.0;120;80;1;1;0;0;1;0
+3245;21890;1;160;64.0;110;70;2;1;0;0;0;0
+3246;20984;2;174;70.0;120;80;1;1;0;0;1;1
+3247;20495;1;165;70.0;120;80;1;1;0;0;1;0
+3248;18773;1;152;65.0;120;80;1;1;0;0;0;1
+3250;14625;1;170;72.0;140;90;1;3;0;0;1;1
+3251;22067;1;163;60.0;120;80;1;1;0;0;1;0
+3253;22457;2;163;72.0;140;90;2;1;0;0;0;1
+3254;15916;1;172;63.0;120;80;1;1;0;0;1;0
+3256;19013;2;164;73.0;130;90;2;1;0;0;1;0
+3257;20960;2;173;73.0;150;100;1;1;0;0;1;0
+3260;20510;2;167;62.0;120;80;1;1;0;0;1;0
+3261;22020;1;163;65.0;130;80;1;1;1;0;1;0
+3262;22494;2;174;68.0;110;70;1;1;1;0;1;0
+3263;18905;1;162;67.0;120;80;1;1;0;0;1;1
+3264;19045;2;174;82.0;120;80;1;1;1;0;1;0
+3266;20486;1;151;61.0;130;80;1;3;0;0;1;1
+3267;17506;2;165;78.0;120;80;1;1;0;0;1;0
+3271;22457;1;156;50.0;120;90;3;1;0;0;1;1
+3272;20621;1;153;67.0;110;70;1;1;0;0;0;0
+3273;20331;2;175;93.0;140;90;3;1;1;1;1;1
+3275;21799;1;163;71.0;140;90;1;1;0;0;0;1
+3278;17454;2;172;69.0;110;80;1;1;0;0;1;0
+3279;19577;1;159;72.0;130;80;1;2;0;0;1;1
+3280;21903;1;171;69.0;100;70;1;1;0;0;1;0
+3281;17492;2;168;75.0;130;100;3;1;0;0;1;1
+3282;21786;2;169;81.0;140;90;3;1;0;0;1;1
+3283;18932;1;160;78.0;120;70;1;1;0;0;1;0
+3284;19670;1;174;69.0;130;70;1;1;0;0;0;0
+3286;19021;1;154;71.0;120;80;1;1;0;0;1;0
+3288;18861;1;163;69.0;120;80;1;1;0;0;1;0
+3289;14447;1;170;60.0;90;60;1;1;0;0;1;0
+3290;21608;1;164;87.0;130;90;1;1;0;0;1;1
+3293;21058;1;154;73.0;160;100;1;3;0;0;1;1
+3294;22482;2;170;70.0;120;80;1;1;0;0;1;0
+3295;22038;1;164;141.0;120;80;1;1;0;0;1;0
+3296;16796;2;169;88.0;140;90;1;1;1;0;1;1
+3297;23277;1;156;59.0;140;100;1;1;0;0;0;1
+3298;20988;1;160;150.0;160;75;1;1;0;0;1;1
+3299;18028;1;174;69.0;117;73;2;2;0;0;1;0
+3301;21824;1;155;66.0;160;90;2;1;0;0;1;1
+3303;15896;1;156;54.0;140;90;1;1;0;1;1;1
+3304;19080;1;162;76.0;120;80;1;1;0;0;1;1
+3307;22482;1;168;62.0;120;80;2;2;0;0;1;1
+3308;20210;2;154;61.0;120;80;1;1;0;0;0;0
+3309;22515;1;156;66.0;140;70;1;1;0;0;1;1
+3313;21048;1;165;98.0;140;90;2;1;0;1;1;0
+3314;19679;1;164;68.0;110;80;2;1;0;0;1;0
+3315;16728;1;170;68.0;110;70;1;1;0;0;1;0
+3316;21322;2;165;100.0;160;90;2;2;0;0;1;1
+3317;18204;1;157;50.0;130;90;1;1;0;0;0;0
+3318;16031;2;164;48.0;150;100;1;1;0;0;1;1
+3319;19048;1;161;56.0;100;70;1;1;0;0;1;0
+3320;19100;1;158;65.0;130;80;2;1;0;0;1;1
+3321;20220;1;164;64.0;110;70;1;1;0;0;1;0
+3323;19798;1;166;82.0;150;90;2;3;0;0;1;1
+3324;22348;1;159;86.0;150;90;1;1;0;0;1;0
+3325;17733;1;163;80.0;120;80;1;1;0;0;0;0
+3326;14682;1;163;92.0;110;80;1;1;0;0;1;0
+3327;16922;1;157;69.0;180;100;1;1;0;0;1;1
+3328;18010;1;168;68.0;120;90;1;1;0;0;1;1
+3329;20418;2;178;129.0;140;90;3;3;0;0;1;1
+3330;21881;1;158;59.0;160;80;3;3;0;0;0;1
+3331;20456;1;156;109.0;120;80;1;1;0;0;1;0
+3332;15207;1;160;75.0;110;80;1;1;0;0;1;0
+3333;17606;2;171;77.0;140;100;3;1;0;0;1;1
+3335;18302;1;159;119.0;140;100;1;1;0;0;1;1
+3336;22012;1;165;72.0;140;70;1;2;0;1;0;1
+3337;16023;2;162;103.0;140;80;3;2;0;0;1;1
+3340;22659;2;160;63.0;110;70;1;1;0;0;1;1
+3341;18964;1;160;60.0;120;80;3;3;0;0;1;0
+3342;20373;2;176;78.0;140;90;1;1;1;0;1;1
+3343;19123;1;168;89.0;120;90;1;1;0;0;1;0
+3344;14570;1;161;96.0;160;89;1;1;0;0;0;0
+3345;21195;2;172;108.0;130;79;2;2;0;0;1;0
+3346;18259;1;164;78.0;120;80;2;1;0;0;1;1
+3348;17654;1;159;95.0;176;105;1;1;0;0;1;1
+3349;16820;1;153;100.0;140;90;3;1;0;0;1;1
+3350;18794;1;167;90.0;130;89;1;1;0;0;0;1
+3352;20994;2;186;105.0;140;10000;1;1;0;0;1;1
+3353;19789;1;165;65.0;120;80;1;1;0;0;0;0
+3355;19672;2;170;84.0;150;100;1;1;1;1;1;1
+3356;23361;1;154;102.0;90;150;1;1;0;0;0;1
+3358;16833;1;162;71.0;120;80;1;1;0;0;1;1
+3359;21820;1;168;65.0;120;80;1;1;0;0;1;0
+3360;16211;2;176;68.0;100;70;1;1;0;0;1;0
+3361;22692;2;170;75.0;120;80;1;1;0;0;0;0
+3362;20399;1;160;62.0;100;60;1;1;0;0;1;0
+3365;23162;2;173;76.0;110;80;1;1;0;0;0;1
+3366;22048;1;158;56.0;110;70;1;1;0;0;0;1
+3367;15399;1;149;70.0;130;80;1;1;0;0;1;0
+3368;15783;1;166;82.0;110;70;2;1;0;0;0;0
+3369;18783;1;156;76.0;148;90;1;2;0;0;1;0
+3371;16049;1;173;72.0;120;80;1;1;0;0;0;0
+3373;19752;1;162;58.0;110;100;2;1;0;0;1;0
+3375;21991;1;156;62.0;140;90;1;1;0;0;1;1
+3376;20411;1;160;52.0;120;80;1;1;0;0;0;0
+3379;23469;2;176;98.0;150;80;1;1;0;0;1;1
+3380;15886;1;160;80.0;120;80;1;1;0;0;1;1
+3381;15406;1;160;75.0;140;90;2;1;0;0;1;1
+3384;21961;1;156;78.0;110;70;2;1;0;0;1;0
+3385;19556;2;169;84.0;120;80;2;2;0;0;1;1
+3386;21264;2;165;65.0;120;80;2;1;0;0;1;0
+3387;22461;2;163;54.0;130;60;1;1;0;0;1;1
+3389;23499;1;165;126.0;130;100;1;1;0;0;1;1
+3391;22796;2;166;61.0;130;100;3;3;0;0;1;1
+3392;21902;1;165;70.0;140;90;1;1;0;0;1;1
+3393;18147;2;170;76.0;120;70;1;1;0;0;1;0
+3394;14584;1;165;52.0;110;70;1;1;0;0;1;0
+3396;22017;1;166;117.0;170;1000;2;1;0;0;1;1
+3399;22629;2;138;52.0;140;100;1;1;0;0;1;1
+3400;22442;1;156;86.0;120;80;2;1;0;0;1;1
+3401;21174;2;170;93.0;120;80;1;1;0;0;1;1
+3402;20936;1;160;56.0;120;80;1;1;0;0;1;0
+3403;21123;1;153;92.0;110;70;1;1;0;0;1;0
+3405;18978;1;155;83.0;150;90;2;2;0;0;1;1
+3407;21866;1;165;67.0;120;80;1;1;0;0;1;1
+3409;22098;1;157;88.0;120;80;1;1;0;0;0;1
+3410;21806;1;153;64.0;120;70;1;1;0;0;1;0
+3413;18356;2;169;65.0;120;80;1;1;0;0;1;0
+3414;20288;2;169;70.0;145;60;1;1;1;1;0;1
+3415;21208;1;165;72.0;160;1001;2;1;0;0;0;1
+3416;15166;1;158;98.0;90;60;1;1;0;0;1;1
+3417;15900;1;158;63.0;130;90;1;1;0;0;1;1
+3418;23077;1;162;67.0;150;80;2;1;0;0;1;1
+3419;15531;2;172;76.0;130;90;2;1;0;0;1;1
+3420;20548;1;165;76.0;120;60;1;1;0;0;1;1
+3421;18218;2;164;53.0;130;80;1;2;1;0;1;0
+3422;22137;2;163;69.0;120;80;1;1;0;0;1;1
+3424;18472;2;165;84.0;14;80;1;1;0;0;1;1
+3426;17427;1;156;60.0;120;70;1;2;0;0;1;0
+3427;19844;1;162;60.0;133;80;1;1;0;0;0;1
+3428;19874;2;156;64.0;110;70;1;1;0;0;1;0
+3431;23244;1;156;54.0;140;90;1;1;0;0;1;1
+3432;14619;2;174;76.0;110;70;1;1;1;0;1;0
+3433;23216;2;168;84.0;120;80;1;1;0;0;1;1
+3434;20552;2;170;70.0;120;80;1;1;0;0;0;1
+3436;19708;1;162;50.0;130;90;3;1;0;0;1;1
+3437;18818;1;154;55.0;140;90;2;3;0;0;1;0
+3438;19171;2;177;177.0;130;90;1;1;0;0;1;1
+3442;15998;1;168;74.0;150;120;1;1;0;0;1;1
+3444;21098;1;153;53.0;120;80;3;1;0;0;1;0
+3447;15491;2;175;65.0;120;80;1;1;0;0;1;0
+3450;20449;2;176;92.0;130;80;2;1;1;1;1;0
+3452;19030;1;168;78.0;130;70;2;1;0;0;0;0
+3453;14520;1;168;82.0;120;80;1;1;0;0;0;0
+3454;15363;1;169;98.0;120;80;2;1;0;0;1;0
+3455;17431;1;162;73.0;100;70;1;1;0;0;1;0
+3456;23556;1;164;92.0;120;80;1;1;0;0;1;0
+3460;14786;2;180;89.0;120;60;1;1;0;0;1;0
+3461;20553;1;168;68.0;130;80;1;1;0;0;0;0
+3462;22624;2;180;106.0;140;90;1;1;0;1;1;1
+3464;14454;1;169;70.0;120;70;1;2;0;0;1;0
+3466;20678;1;169;103.0;150;80;2;2;0;0;1;1
+3468;20869;1;160;66.0;130;80;3;1;0;0;1;1
+3469;14600;1;156;76.0;140;80;1;1;0;0;1;1
+3470;23646;2;159;165.0;130;70;1;1;0;0;0;0
+3471;14713;1;174;64.0;160;90;2;2;0;0;1;1
+3472;21143;2;164;80.0;150;100;1;1;1;0;1;1
+3473;23156;1;163;65.0;130;70;1;1;0;0;1;1
+3474;18003;1;158;64.0;90;60;3;3;0;0;1;0
+3477;17615;2;187;100.0;150;90;1;1;1;0;1;1
+3478;20425;2;162;93.0;120;80;3;1;0;0;1;1
+3479;22466;2;165;70.0;120;70;2;1;0;0;1;0
+3480;23527;2;178;90.0;150;80;1;1;1;0;1;1
+3481;19735;2;167;88.0;130;80;1;1;0;0;1;0
+3484;23414;1;152;95.0;140;90;3;1;0;0;0;1
+3486;20223;1;153;66.0;130;90;1;1;0;0;1;1
+3488;20584;1;175;69.0;120;80;1;1;0;0;0;0
+3489;23139;2;167;81.0;140;80;1;1;0;0;1;1
+3490;14829;1;152;40.0;120;80;1;1;0;0;0;0
+3491;19770;1;170;75.0;150;100;2;1;0;0;1;1
+3493;15344;1;159;62.0;120;70;1;1;0;0;1;0
+3494;17568;2;165;66.0;120;70;1;1;0;0;1;0
+3497;21005;2;176;98.0;140;90;1;2;1;0;1;1
+3498;19627;1;168;70.0;120;80;1;1;0;0;1;0
+3500;20709;1;165;65.0;120;80;3;3;0;0;0;1
+3501;17499;2;168;70.0;130;80;1;1;0;0;1;0
+3503;21710;1;161;86.0;130;90;1;1;0;1;1;0
+3504;21275;1;165;69.0;110;60;1;1;0;0;1;1
+3505;21747;2;176;122.0;170;90;1;2;0;0;1;1
+3508;19098;2;178;85.0;130;80;1;1;0;1;1;0
+3509;23387;2;166;75.0;170;120;3;3;0;1;0;1
+3510;18219;1;157;50.0;110;70;2;1;0;0;1;0
+3511;23294;2;163;100.0;140;90;1;1;0;0;1;1
+3512;17062;2;176;61.0;150;90;1;1;0;0;1;0
+3514;18985;1;152;72.0;120;70;1;1;0;0;1;0
+3515;23378;1;152;56.0;110;70;1;1;0;0;1;0
+3516;20525;2;170;75.0;120;80;1;1;0;0;1;1
+3517;15349;1;160;54.0;160;90;1;1;0;0;1;1
+3518;19678;1;156;56.0;120;80;1;1;0;0;1;0
+3521;19011;1;155;82.0;140;90;1;1;0;0;0;1
+3522;22036;1;155;72.0;150;90;1;1;0;0;1;1
+3524;18933;1;148;62.0;150;1000;1;1;0;0;1;1
+3525;19189;1;161;74.0;120;80;1;1;0;0;0;1
+3526;18927;1;161;80.0;130;80;3;1;0;0;1;1
+3528;21722;1;162;90.0;140;90;3;3;1;0;1;0
+3529;21265;1;161;90.0;120;80;3;3;0;0;1;1
+3530;21270;1;156;71.0;130;80;2;1;0;0;0;0
+3533;17741;2;180;91.0;120;80;1;1;0;0;0;0
+3534;20489;2;178;72.0;120;79;1;2;0;0;1;0
+3535;18993;1;178;76.0;110;80;1;1;0;0;1;0
+3536;23329;1;159;95.0;130;80;1;1;0;0;1;1
+3537;20494;2;172;86.0;120;70;1;1;1;0;1;0
+3542;23290;1;159;59.0;110;70;1;1;0;0;1;1
+3543;16491;1;165;82.0;120;80;1;3;1;0;1;0
+3544;20375;1;161;89.0;140;90;2;2;0;0;1;1
+3546;21698;1;163;65.0;110;70;1;1;0;0;1;1
+3547;15860;2;167;75.0;130;90;1;1;1;1;1;0
+3548;14957;2;168;68.0;120;80;1;1;0;0;1;0
+3549;22674;1;145;51.0;130;80;1;1;0;0;1;1
+3552;18227;1;167;110.0;140;90;1;1;0;0;1;0
+3553;21728;1;160;67.0;120;80;1;1;0;0;1;1
+3554;14454;1;155;63.0;120;80;2;1;0;0;1;0
+3555;16617;2;170;71.0;120;80;1;1;0;0;1;0
+3556;20414;1;157;76.0;140;90;3;3;0;0;1;1
+3557;23324;1;154;75.0;130;60;1;1;0;0;1;0
+3558;14592;1;154;56.0;110;70;3;3;0;0;1;0
+3560;22346;2;165;65.0;110;70;1;1;0;0;1;1
+3561;19736;2;162;74.0;120;80;1;1;0;0;1;0
+3563;19046;1;147;41.0;170;80;1;1;0;0;0;1
+3564;23407;2;173;65.0;110;80;3;1;1;0;0;0
+3565;18841;2;169;65.0;110;80;1;1;0;0;1;0
+3567;19664;1;170;91.0;160;80;2;2;1;0;1;1
+3568;21398;2;175;85.0;120;80;3;3;0;1;0;0
+3569;21118;2;166;68.0;140;90;1;1;0;0;1;1
+3572;15267;1;163;86.0;12;80;1;1;0;0;0;0
+3573;16899;2;165;63.0;150;80;1;1;0;0;1;0
+3575;21865;1;167;68.0;130;80;1;1;0;0;1;1
+3577;16146;1;170;78.0;110;80;1;1;0;0;1;0
+3581;20255;2;167;65.0;120;80;1;1;1;1;1;0
+3582;18325;1;158;65.0;120;90;2;1;0;0;0;0
+3583;16291;1;170;66.0;120;80;3;3;0;0;1;1
+3584;14366;1;152;67.0;100;70;1;1;0;0;1;0
+3586;16109;2;183;85.0;130;100;2;1;0;0;1;0
+3587;22836;2;169;64.0;120;80;1;1;0;0;1;0
+3590;21083;1;178;78.0;120;80;1;1;0;0;0;0
+3591;18988;1;156;80.0;120;80;3;1;0;0;1;1
+3593;19908;2;160;70.0;140;100;1;1;0;0;1;1
+3594;20292;2;176;81.0;130;90;1;2;1;1;1;0
+3595;18323;2;178;90.0;120;80;2;2;0;0;1;1
+3596;17679;2;160;64.0;150;90;1;1;0;0;1;1
+3597;16128;1;158;56.0;116;69;1;1;0;0;1;0
+3598;21809;1;156;65.0;140;90;1;1;0;0;1;1
+3599;18086;1;159;58.0;120;80;1;1;0;0;1;0
+3600;20675;1;161;60.0;120;80;1;1;0;0;1;1
+3601;19880;2;175;70.0;120;80;1;1;0;0;1;1
+3602;16673;1;151;72.0;90;60;1;1;0;0;1;1
+3603;22706;1;157;83.0;120;80;1;1;0;0;0;0
+3605;22021;2;175;95.0;140;90;1;2;0;0;0;1
+3607;14557;1;170;85.0;120;80;1;1;0;0;1;0
+3608;21156;2;178;85.0;120;60;1;1;0;0;1;1
+3609;21207;1;156;101.0;120;80;1;1;0;0;1;1
+3610;18226;1;156;72.0;115;70;1;1;0;1;0;0
+3611;14756;1;150;56.0;110;70;1;1;1;0;1;0
+3613;23108;2;172;68.0;120;80;3;3;0;0;1;1
+3614;16630;1;161;58.0;145;90;1;1;0;0;1;1
+3615;20621;1;158;62.0;120;80;3;3;0;0;1;0
+3616;19211;1;178;85.0;120;80;1;2;0;0;0;0
+3617;19741;1;182;99.0;160;90;1;1;0;0;1;1
+3618;21144;1;171;82.0;120;80;1;1;0;0;1;0
+3619;18779;1;163;93.0;140;90;3;3;0;0;1;0
+3620;18112;1;165;65.0;140;80;1;1;0;0;1;0
+3621;20205;2;176;76.0;120;80;1;1;0;0;1;0
+3622;22491;2;168;71.0;130;90;1;1;0;0;1;1
+3623;23305;1;166;73.0;120;80;3;1;0;0;0;1
+3624;14483;1;169;104.0;100;70;2;2;0;1;1;0
+3625;19807;1;158;65.0;120;80;1;1;0;0;1;0
+3626;16648;1;174;76.0;110;70;1;1;0;0;1;0
+3628;16181;1;156;80.0;180;100;2;1;0;0;1;1
+3632;21027;2;166;72.0;110;70;1;1;1;0;1;0
+3634;23554;1;157;71.0;120;80;1;1;0;0;1;1
+3635;16766;1;157;68.0;180;100;2;1;0;0;1;0
+3636;22528;1;160;88.0;120;80;1;1;0;0;0;1
+3637;22825;1;153;95.0;120;80;2;1;0;0;1;1
+3639;19576;1;160;70.0;169;99;3;1;0;0;1;0
+3642;19607;1;161;109.0;130;80;1;1;0;0;1;1
+3643;17627;1;170;69.0;140;90;1;1;0;0;1;1
+3644;19806;1;165;63.0;120;80;1;1;0;0;0;0
+3645;16691;2;165;69.0;120;90;2;1;0;0;1;1
+3646;21111;1;160;71.0;140;90;1;2;0;0;1;0
+3649;19655;1;168;82.0;120;90;1;1;0;0;1;0
+3651;15951;2;172;80.0;120;70;2;1;0;0;1;0
+3653;14343;2;169;89.0;120;80;1;1;1;0;1;0
+3654;21337;1;157;99.0;170;100;3;1;0;0;1;1
+3655;19594;2;174;54.0;120;80;2;2;1;0;1;0
+3656;21241;2;168;68.0;120;80;1;2;0;0;1;0
+3657;19711;1;162;100.0;120;80;3;1;0;0;1;1
+3658;23440;2;165;68.0;110;70;1;1;1;1;0;1
+3659;18367;1;170;65.0;120;80;1;3;0;0;1;0
+3660;21220;2;174;103.0;140;1000;1;1;1;0;1;1
+3662;20384;1;168;58.0;120;80;1;2;0;0;1;1
+3663;20989;1;153;64.0;130;80;3;3;0;0;1;1
+3664;16929;1;160;72.0;120;80;1;1;1;0;1;1
+3665;17563;1;170;85.0;110;80;1;1;0;0;1;0
+3666;18086;2;162;59.0;90;60;1;1;0;0;1;0
+3669;18108;1;155;94.0;130;80;2;2;0;0;0;0
+3670;21652;1;156;60.0;120;70;1;1;0;0;1;1
+3671;14768;1;166;56.0;110;80;1;1;0;0;1;0
+3672;19232;2;170;72.0;140;80;3;1;0;0;1;1
+3673;21242;2;168;79.0;130;90;1;1;0;0;1;0
+3674;21088;1;153;83.0;120;80;1;1;0;0;1;0
+3675;19880;1;158;85.0;110;70;1;1;0;0;1;0
+3676;18933;2;174;117.0;130;80;1;1;0;0;1;1
+3677;19797;1;154;45.0;120;80;2;1;0;0;1;0
+3678;14508;1;160;100.0;110;70;2;2;0;0;1;0
+3679;19275;1;166;66.0;120;80;1;1;0;0;0;0
+3680;20398;1;165;79.0;125;90;1;3;0;0;1;1
+3681;15406;1;165;68.0;120;80;1;1;0;0;0;0
+3682;21100;1;158;61.0;140;95;3;1;0;0;0;1
+3683;23445;1;170;64.0;10;70;1;1;0;0;1;1
+3684;21765;2;183;96.0;130;90;1;1;0;0;1;0
+3685;21158;1;152;61.0;140;90;3;3;0;0;1;1
+3686;15172;1;157;67.0;120;80;1;1;0;0;1;0
+3687;22654;1;162;69.0;140;80;1;1;0;0;1;0
+3689;17705;1;159;63.0;120;80;1;1;0;0;1;1
+3690;17578;2;167;70.0;120;80;1;1;1;0;1;1
+3691;15421;2;162;66.0;110;70;1;1;0;0;1;0
+3692;16869;1;170;72.0;120;80;1;1;0;0;0;0
+3693;20387;1;152;75.0;120;80;1;1;0;0;0;0
+3694;21239;2;179;80.0;120;80;1;1;0;0;1;1
+3695;20904;2;176;63.0;120;80;1;1;0;0;1;0
+3698;21098;1;163;73.0;140;90;1;1;0;0;1;1
+3700;16642;2;177;84.0;130;90;1;1;1;1;1;1
+3701;16587;1;162;75.0;100;70;1;1;0;0;0;1
+3702;18829;1;158;51.0;120;80;1;1;0;0;1;0
+3703;22734;1;157;55.0;190;100;2;1;0;0;1;1
+3705;20378;2;168;69.0;170;100;1;1;0;0;1;1
+3706;15211;2;170;68.0;140;90;1;1;1;0;1;1
+3707;23240;1;148;59.0;125;70;1;1;0;1;1;1
+3710;19626;2;169;63.0;130;80;1;1;0;0;1;1
+3712;18891;1;169;66.0;120;80;1;1;0;0;1;0
+3713;19908;1;162;64.0;120;80;1;1;0;0;0;0
+3714;18999;1;158;80.0;120;80;1;1;0;0;1;0
+3715;21992;2;163;60.0;110;70;2;1;1;0;1;1
+3717;19031;2;171;73.0;110;70;1;1;1;0;1;0
+3719;17631;1;168;78.0;130;90;1;1;0;0;0;0
+3720;19802;1;159;54.0;130;80;1;1;0;0;1;1
+3721;23267;1;170;65.0;120;80;1;2;0;0;1;0
+3722;16547;2;168;68.0;110;60;1;1;1;0;1;0
+3723;19636;1;144;81.0;170;100;2;2;0;0;1;1
+3724;18368;1;165;71.0;120;80;1;1;0;0;1;1
+3725;19484;1;164;73.0;130;70;3;1;0;0;1;1
+3726;20627;1;169;70.0;120;80;1;1;0;0;1;0
+3727;14539;1;167;76.0;120;80;2;1;0;0;0;1
+3729;16742;1;159;89.0;130;80;3;1;0;0;1;1
+3731;19037;1;158;64.0;120;80;2;1;0;0;1;0
+3733;19782;1;161;85.0;120;70;1;1;0;0;1;0
+3735;20389;2;161;75.0;90;60;1;2;0;0;1;1
+3736;20259;2;171;80.0;170;100;1;1;0;0;1;1
+3737;14654;2;170;84.0;140;90;1;2;0;0;1;1
+3738;17423;2;176;89.0;110;70;1;1;0;0;1;1
+3739;22799;1;160;100.0;140;90;1;1;0;0;1;1
+3741;16911;2;173;77.0;120;80;1;1;0;0;0;1
+3742;17429;2;184;97.0;150;1000;1;1;0;1;1;1
+3743;20572;1;160;58.0;120;80;1;1;0;0;1;0
+3744;14617;2;175;85.0;140;80;1;3;1;1;1;1
+3745;19595;1;162;67.0;120;80;1;1;0;0;1;0
+3746;21123;1;165;69.0;130;70;1;1;0;0;1;0
+3747;20391;2;176;85.0;140;90;1;1;0;0;1;1
+3749;15338;1;157;57.0;120;90;1;1;0;0;1;0
+3753;20584;1;142;40.0;135;90;2;1;0;0;1;1
+3755;20422;2;170;90.0;160;90;1;1;0;0;0;1
+3756;18099;1;165;85.0;120;80;1;1;0;1;1;1
+3759;21452;2;170;92.0;120;80;1;1;0;0;1;0
+3760;20332;1;169;72.0;110;80;1;1;0;0;1;1
+3761;20439;1;144;89.0;150;90;1;1;0;0;1;1
+3763;21816;1;169;77.0;140;90;2;2;0;0;1;1
+3764;22882;1;166;64.0;120;80;1;1;0;0;1;0
+3766;14629;1;164;80.0;120;70;1;1;0;0;1;0
+3767;21238;1;153;75.0;140;80;1;1;0;0;1;1
+3768;15162;2;166;69.0;100;70;1;1;1;0;1;0
+3771;19562;1;167;61.0;110;70;1;1;0;0;1;0
+3772;14808;1;157;65.0;110;80;1;1;0;0;1;0
+3773;20410;1;153;85.0;150;80;1;1;0;0;1;0
+3774;22077;1;175;69.0;120;80;1;1;0;0;1;1
+3775;18401;1;178;85.0;120;80;1;1;0;0;0;1
+3776;19509;1;168;69.0;120;80;1;1;0;0;1;1
+3778;18992;2;194;89.0;110;70;1;1;0;0;1;0
+3779;18989;2;168;65.0;120;70;1;1;0;0;1;1
+3780;18390;1;163;97.0;150;90;1;1;0;0;1;1
+3783;21845;1;160;80.0;130;80;3;1;0;0;1;1
+3784;20507;1;153;60.0;120;60;1;1;0;0;1;1
+3785;21153;1;165;70.0;120;80;3;3;0;0;0;1
+3787;20348;1;159;56.0;120;80;2;1;0;0;1;0
+3789;23485;1;163;90.0;130;80;3;1;0;0;1;1
+3791;19162;1;160;68.0;120;70;1;1;0;0;0;1
+3792;23521;1;159;90.0;160;100;1;1;0;0;1;0
+3794;23448;1;153;100.0;140;1000;1;3;0;0;1;1
+3796;22744;2;158;67.0;120;80;1;1;0;0;1;0
+3798;18343;1;164;76.0;120;80;3;3;0;0;1;1
+3799;21906;2;170;94.0;160;90;1;1;1;1;1;0
+3800;14462;2;178;87.0;120;80;1;1;0;0;1;0
+3801;21963;2;168;60.0;140;90;1;1;0;0;1;0
+3802;18072;1;166;78.0;110;80;1;1;0;0;1;0
+3804;19773;1;165;79.0;120;80;2;1;0;0;0;1
+3805;23290;1;162;81.0;110;80;1;1;0;0;1;0
+3806;22635;1;158;70.0;130;1000;1;2;0;0;0;0
+3807;20401;1;167;90.0;110;80;1;1;0;0;1;0
+3808;14507;1;157;64.0;120;80;1;1;0;0;1;0
+3809;22868;1;167;78.0;120;80;1;1;0;0;1;0
+3810;20441;2;162;93.0;130;80;1;2;0;0;0;1
+3811;21116;1;165;62.0;120;80;2;1;0;0;1;1
+3812;20409;1;168;87.0;130;80;2;1;0;0;1;1
+3813;16107;2;186;90.0;110;80;1;1;0;0;1;0
+3814;19640;2;163;75.0;120;80;1;1;0;0;1;0
+3815;19792;2;165;74.0;120;79;1;1;1;0;1;0
+3817;21104;1;165;65.0;120;80;1;1;0;0;0;1
+3821;21019;1;153;78.0;140;90;1;1;0;0;1;0
+3823;15340;2;168;74.0;120;80;1;1;0;1;0;0
+3824;18309;2;176;96.0;120;80;3;1;0;0;1;1
+3826;16058;1;168;57.0;120;60;1;1;0;0;0;0
+3829;19768;1;168;83.0;120;80;1;1;0;0;1;0
+3830;14297;2;175;70.0;150;1000;1;1;0;0;1;1
+3831;18405;1;165;90.0;110;90;2;1;0;0;1;1
+3832;20503;1;153;64.0;110;70;1;1;0;0;1;1
+3833;23112;1;153;76.0;120;80;1;1;0;0;1;0
+3836;19671;1;168;89.0;110;70;1;1;0;0;0;0
+3837;20161;2;169;80.0;130;90;1;1;0;0;0;1
+3838;19012;1;178;78.0;110;70;1;1;0;0;0;0
+3839;18909;1;159;59.0;140;90;1;1;0;0;0;0
+3840;15285;1;165;62.0;120;80;1;1;0;0;0;0
+3841;17397;2;175;92.0;120;80;1;1;1;0;1;1
+3842;19007;2;167;63.0;120;80;1;1;0;0;1;0
+3843;19012;2;169;67.0;140;90;3;3;1;0;1;1
+3844;18023;1;157;75.0;120;80;2;1;0;0;1;1
+3845;21252;2;167;65.0;120;80;1;1;0;0;1;0
+3846;22718;1;149;84.0;130;70;3;3;0;0;0;1
+3847;21970;1;160;66.0;150;100;1;1;0;0;1;1
+3848;14421;1;156;67.0;110;70;1;2;0;0;1;0
+3850;16727;1;165;71.0;110;70;1;1;0;1;1;0
+3852;21892;1;156;86.0;120;80;1;1;0;0;1;1
+3855;17333;2;171;74.0;180;100;1;2;0;0;1;1
+3856;20269;1;152;79.0;100;70;2;1;0;0;1;0
+3857;21820;1;168;78.0;130;90;2;1;0;0;0;0
+3858;19557;2;170;72.0;130;80;1;1;0;0;1;0
+3859;19754;1;156;62.0;120;80;1;1;0;0;1;0
+3860;21043;2;170;94.0;140;80;2;1;0;0;1;1
+3862;22098;2;159;61.0;120;80;1;1;0;0;1;0
+3863;18441;1;167;79.0;140;90;1;1;0;0;0;1
+3865;16778;1;157;57.0;110;70;1;1;0;0;1;0
+3866;17335;2;163;65.0;120;80;1;1;0;0;0;0
+3868;18158;1;164;56.0;110;80;1;1;0;0;1;1
+3869;19650;1;158;56.0;120;80;1;1;0;0;0;0
+3870;21070;1;148;84.0;160;100;3;3;0;0;1;1
+3871;20428;2;165;72.0;121;80;3;1;0;0;1;1
+3873;19697;2;175;86.0;120;80;1;1;1;0;1;0
+3875;22601;1;160;106.0;120;90;3;3;0;0;1;1
+3879;21927;2;154;55.0;120;90;1;1;0;0;1;0
+3880;18980;1;162;81.0;110;70;1;1;0;0;1;0
+3881;18969;2;164;71.0;120;80;1;1;0;0;1;0
+3882;21337;2;166;67.0;140;90;1;1;0;0;1;1
+3883;22201;1;160;97.0;130;80;3;1;0;0;0;1
+3884;16896;1;164;62.0;120;80;1;1;0;0;1;0
+3886;20940;2;175;79.0;130;80;2;1;0;0;1;1
+3887;21235;2;165;51.0;150;90;1;1;0;0;1;0
+3888;20558;1;174;72.0;120;80;3;3;0;0;1;0
+3890;21731;2;174;88.0;130;90;2;2;0;0;1;0
+3891;20246;1;168;80.0;140;90;3;1;0;0;1;1
+3893;21747;1;157;96.0;120;80;1;1;0;0;1;0
+3895;22066;1;157;60.0;100;60;2;1;0;0;1;0
+3896;16734;1;160;78.0;140;90;1;1;0;0;1;1
+3898;20376;1;158;58.0;130;80;1;1;0;0;1;0
+3901;14737;1;159;52.0;110;70;1;1;0;0;1;1
+3902;20484;2;185;93.0;120;80;1;1;1;0;1;0
+3903;22070;2;158;76.0;120;80;1;1;0;1;0;0
+3904;16742;1;166;63.0;115;70;2;1;0;0;1;0
+3905;19062;2;172;65.0;120;80;1;1;0;0;1;0
+3907;20332;1;170;72.0;110;70;1;1;0;0;1;1
+3908;20526;1;153;48.0;140;80;2;1;0;0;0;1
+3909;20296;1;163;74.0;120;80;1;1;0;0;1;0
+3910;18922;1;168;65.0;180;100;1;1;0;0;1;1
+3911;21124;1;168;100.0;110;80;1;1;0;0;1;0
+3912;19724;1;158;54.0;110;70;1;1;0;0;1;0
+3914;21253;1;149;78.0;120;80;2;1;0;0;1;1
+3915;14674;1;175;95.0;120;80;1;1;0;0;1;0
+3916;19044;1;165;65.0;110;70;1;1;0;0;1;1
+3917;21231;1;162;95.0;170;1000;3;3;0;0;1;1
+3918;21656;1;146;66.0;160;70;3;1;0;0;1;1
+3919;21970;2;163;74.0;130;80;1;1;0;0;1;0
+3922;20491;2;168;81.0;110;80;1;2;1;1;1;1
+3925;20143;1;161;79.0;110;70;1;1;0;0;0;0
+3927;14374;2;170;61.0;120;80;1;1;0;0;1;0
+3928;18574;1;156;54.0;160;80;1;1;0;0;1;1
+3930;21799;2;171;94.0;160;100;2;2;1;0;1;1
+3932;20479;1;162;70.0;120;80;1;1;0;0;0;1
+3933;17921;1;150;46.0;120;80;1;1;0;0;1;0
+3934;20504;1;152;59.0;120;80;1;1;0;0;1;0
+3935;21338;1;163;76.0;120;90;1;3;0;0;0;1
+3936;16820;2;172;76.0;100;70;1;1;1;1;1;1
+3937;22624;2;179;83.0;120;80;1;1;0;0;1;0
+3938;20299;1;161;92.0;150;90;3;3;0;0;1;1
+3939;19560;1;154;83.0;140;90;2;2;0;0;1;0
+3940;18341;1;158;78.0;120;80;3;1;0;0;1;1
+3941;20708;1;168;66.0;120;80;1;1;0;0;0;1
+3942;16846;1;169;75.0;120;80;2;1;0;0;1;1
+3943;15393;2;172;72.0;120;80;1;1;1;0;1;0
+3944;23309;2;166;58.0;100;60;1;1;0;0;1;1
+3945;22544;1;160;67.0;130;80;1;2;0;0;1;0
+3947;21009;1;157;79.0;110;80;1;1;0;0;0;0
+3948;18752;2;172;91.0;170;1200;1;1;0;0;0;1
+3949;19271;1;165;71.0;120;80;1;1;0;0;0;0
+3953;15427;1;158;65.0;160;110;1;1;0;0;1;1
+3954;21696;1;167;85.0;180;100;1;1;0;0;1;1
+3955;22610;1;165;90.0;110;70;3;3;0;0;0;1
+3957;17733;2;166;70.0;150;90;1;1;0;0;0;1
+3961;19665;2;173;75.0;190;90;1;1;0;0;1;1
+3962;18985;1;155;62.0;100;70;1;1;0;0;1;0
+3963;19483;1;157;65.0;120;80;1;1;0;0;1;1
+3964;21157;1;157;65.0;100;75;1;1;1;0;0;1
+3966;21392;2;169;89.0;140;90;2;1;0;0;1;0
+3967;19787;1;159;78.0;130;90;1;1;0;1;1;0
+3968;18915;2;164;69.0;140;90;1;1;0;0;0;1
+3969;14563;1;160;70.0;120;80;2;1;0;0;1;0
+3970;16120;1;165;69.0;120;77;1;1;0;0;1;1
+3971;20357;2;160;95.0;150;100;2;2;0;1;1;1
+3972;17351;1;162;61.0;120;80;1;1;0;0;1;0
+3973;21962;2;166;85.0;140;90;2;1;0;0;1;1
+3974;18308;1;165;76.0;140;80;1;1;0;0;1;1
+3975;22653;1;149;81.0;150;90;3;2;0;0;1;1
+3976;18439;1;174;65.0;120;80;1;1;0;0;1;0
+3977;17480;2;165;80.0;140;80;2;1;0;0;1;1
+3978;20452;1;158;81.0;130;90;3;1;0;0;1;1
+3979;21978;1;161;62.0;140;90;2;2;0;0;1;1
+3980;23566;1;158;68.0;120;80;1;1;0;0;1;0
+3981;21218;1;180;70.0;120;80;1;1;0;0;1;1
+3982;22467;1;156;85.0;120;80;1;1;0;0;0;1
+3984;14405;2;176;93.0;140;90;1;1;0;0;1;1
+3985;20314;1;165;71.0;120;80;1;1;0;0;1;0
+3987;18870;1;165;65.0;120;80;1;1;0;0;1;0
+3988;21166;1;158;100.0;120;80;2;2;0;0;1;0
+3989;16094;2;175;58.0;100;80;1;1;1;0;1;0
+3991;22738;2;162;70.0;130;90;1;1;0;0;1;1
+3993;20261;1;160;93.0;130;80;3;3;0;0;1;1
+3994;20409;1;158;90.0;110;70;1;1;0;0;1;0
+3995;21984;1;158;80.0;120;80;1;1;0;0;1;1
+3996;15840;1;173;89.0;100;70;1;1;0;0;1;0
+3997;21869;2;162;82.0;120;80;1;1;0;0;1;1
+3999;19684;1;163;89.0;120;80;1;1;0;0;0;0
+4000;15063;2;168;63.0;110;70;1;1;1;1;1;0
+4001;18022;2;168;72.0;120;80;1;1;0;0;1;1
+4004;22025;1;163;58.0;120;80;3;3;0;0;1;1
+4005;18315;1;164;70.0;120;80;1;3;0;0;1;0
+4007;19917;1;159;65.0;110;70;1;3;0;0;1;0
+4008;23455;2;166;84.0;140;90;1;1;0;0;1;1
+4010;18138;2;168;70.0;120;80;1;1;0;0;1;0
+4011;20273;1;166;83.0;120;80;2;1;0;0;1;0
+4012;21237;1;158;56.0;145;90;3;1;1;0;0;1
+4013;18871;1;164;51.0;115;80;2;1;0;0;1;1
+4014;23398;1;155;75.0;120;80;1;1;0;0;1;0
+4016;18259;1;160;62.0;110;70;1;1;0;0;0;0
+4017;22824;1;156;87.0;16;90;1;1;0;0;0;1
+4020;16733;2;160;62.3;120;80;1;2;0;1;1;0
+4021;19934;1;164;66.0;120;80;3;3;0;0;1;1
+4022;19620;2;167;74.0;120;80;1;1;0;0;1;0
+4023;21026;1;161;73.0;130;80;1;3;0;0;1;1
+4024;15912;1;159;100.0;130;100;2;1;0;0;1;1
+4025;19587;2;178;109.0;130;80;3;1;0;0;1;1
+4026;22854;1;165;67.0;120;80;1;1;0;0;1;0
+4027;23329;1;158;85.0;160;90;2;1;0;0;0;1
+4029;20707;1;184;52.0;120;80;1;1;0;0;0;1
+4032;20158;2;172;80.0;120;90;3;1;0;0;1;1
+4033;16755;1;166;62.0;120;85;1;1;0;0;1;0
+4034;22699;1;165;71.0;120;60;2;1;0;0;1;1
+4035;15180;2;165;59.0;110;70;1;1;1;0;1;1
+4036;18972;2;176;129.0;140;90;2;1;0;0;1;1
+4037;22434;1;160;64.0;120;70;1;3;0;0;1;1
+4038;22377;2;165;65.0;140;90;3;2;1;0;1;1
+4039;23362;2;169;107.0;130;90;3;3;0;0;0;1
+4040;18845;1;163;70.0;120;80;1;1;0;0;1;0
+4042;18732;1;156;73.0;120;80;1;1;0;0;1;0
+4043;19635;1;163;77.0;130;90;3;1;0;0;1;1
+4044;14521;2;167;68.0;120;80;1;1;0;0;1;0
+4045;21851;1;162;78.0;150;80;1;1;0;0;1;1
+4047;18190;1;153;63.0;110;80;1;3;0;0;1;0
+4048;16112;1;160;53.0;120;80;3;3;0;0;0;0
+4051;19722;2;171;75.0;120;60;1;1;0;0;1;1
+4052;22890;1;156;70.0;120;80;1;1;0;0;0;1
+4053;18899;1;164;87.0;120;80;1;1;0;0;1;1
+4055;18270;1;168;56.0;120;80;2;1;0;0;1;0
+4056;21887;2;175;78.0;120;80;1;1;0;0;1;0
+4058;20360;1;190;74.0;120;80;1;1;0;0;1;0
+4061;17359;2;178;95.0;120;80;1;3;0;0;1;0
+4062;19669;1;155;79.0;90;60;1;1;0;0;1;0
+4064;16058;2;173;106.0;180;100;1;1;0;0;1;1
+4066;15122;2;180;84.0;120;70;1;1;0;0;1;0
+4067;19574;1;162;65.0;140;90;3;3;0;0;1;1
+4068;20383;1;160;63.0;120;80;1;1;0;0;1;1
+4069;19171;1;168;78.0;120;80;1;1;0;0;1;0
+4070;15354;2;169;75.0;120;80;1;1;0;0;1;0
+4071;23351;2;163;64.0;150;80;1;1;0;0;1;1
+4073;17027;1;160;66.0;120;80;1;1;0;0;1;0
+4075;18067;1;162;87.0;110;70;1;1;0;0;1;0
+4077;18203;1;162;82.0;120;80;1;1;0;0;1;1
+4078;21805;1;176;76.0;120;80;1;1;0;0;1;1
+4080;20401;1;157;67.0;140;90;1;1;0;0;1;1
+4081;21341;1;167;69.0;130;80;1;1;0;0;1;1
+4082;21156;1;168;84.0;190;1000;3;1;0;0;0;1
+4083;23249;1;163;66.0;100;60;1;1;0;0;1;1
+4086;21900;2;170;72.0;120;80;1;1;0;0;1;0
+4088;21302;1;157;57.0;140;90;2;2;0;0;1;1
+4089;16002;1;161;93.0;150;90;2;1;0;0;1;1
+4092;23549;1;159;69.0;120;90;2;1;0;1;1;0
+4093;18858;1;160;83.0;130;90;1;1;0;0;1;0
+4094;21504;1;167;89.0;180;100;2;2;0;0;1;1
+4095;19732;1;168;74.0;120;80;1;1;0;0;1;0
+4096;19800;2;176;71.0;130;80;1;1;0;0;1;1
+4099;21221;1;162;95.0;140;90;1;1;0;0;1;1
+4100;18850;1;162;76.0;110;80;1;2;0;0;1;0
+4101;23365;1;154;82.0;130;80;3;2;0;1;1;0
+4102;16731;1;174;75.0;130;90;1;1;0;0;1;1
+4103;19129;1;165;70.0;120;80;3;3;0;0;1;1
+4104;23235;2;168;72.0;140;90;1;1;0;0;0;1
+4105;21876;1;172;85.0;130;80;2;1;0;0;1;1
+4107;18762;1;163;75.0;140;80;3;3;0;0;1;1
+4108;16761;2;175;90.0;120;90;1;1;0;0;1;0
+4110;21770;2;171;67.0;160;100;1;1;0;0;0;1
+4111;16614;1;161;73.0;100;70;1;1;0;0;1;0
+4114;14417;2;170;82.0;120;80;1;1;0;0;0;0
+4116;20258;1;154;59.0;110;59;1;1;0;0;1;1
+4117;22475;1;162;60.0;120;80;1;1;0;0;1;1
+4118;18976;1;157;100.0;130;80;1;1;0;0;1;0
+4119;22682;1;164;90.0;130;80;2;1;0;1;1;1
+4121;18179;1;163;90.0;120;80;3;3;0;0;0;1
+4122;19903;2;175;68.0;120;80;1;1;0;0;1;1
+4124;21227;2;174;70.0;120;80;1;1;0;0;1;0
+4125;17628;2;167;87.0;150;90;1;1;0;0;1;1
+4126;23584;1;164;106.0;180;100;3;3;0;0;1;0
+4128;23218;1;151;75.0;150;100;2;1;0;0;1;1
+4129;18917;1;158;82.0;140;80;1;1;0;0;1;1
+4130;16758;2;174;106.0;110;80;1;1;1;1;0;1
+4131;19934;1;174;81.0;140;90;2;1;0;0;1;1
+4133;18830;1;154;120.0;120;89;3;3;0;0;1;0
+4134;19108;1;159;87.0;130;85;1;1;0;0;1;1
+4139;23655;2;156;60.0;140;90;1;1;0;0;1;1
+4141;19882;1;160;75.0;140;90;1;2;0;0;1;1
+4142;19594;2;172;80.0;120;80;1;1;0;0;1;0
+4144;22028;2;168;105.0;140;80;3;3;0;0;1;0
+4145;19522;1;159;65.0;120;80;1;1;0;0;0;1
+4147;18167;1;164;67.0;120;70;1;1;0;0;1;0
+4148;21278;1;153;85.0;130;80;3;2;0;0;1;1
+4149;21100;1;158;60.0;120;80;1;1;0;0;1;0
+4150;19591;1;134;52.0;120;70;1;1;0;0;0;0
+4151;21198;1;150;65.0;110;80;1;1;0;1;1;0
+4153;20409;2;165;77.0;120;80;1;1;0;0;1;0
+4154;19527;1;158;82.0;140;90;1;1;0;0;1;1
+4155;20405;1;162;56.0;100;80;1;1;0;0;1;0
+4156;17459;2;180;105.0;120;90;1;1;0;0;0;1
+4157;15558;2;178;63.0;120;80;1;1;0;0;1;1
+4159;20987;2;175;90.0;130;90;1;2;1;1;1;1
+4161;21851;1;152;60.0;140;90;1;1;0;0;1;1
+4162;19989;2;167;115.0;160;100;1;1;0;0;1;1
+4163;15246;1;170;107.0;110;80;3;3;0;0;0;1
+4166;18247;1;163;88.0;130;1000;1;1;0;0;1;1
+4167;23425;1;153;53.0;150;80;3;1;0;0;1;1
+4168;18871;2;179;69.0;120;80;1;1;0;0;1;0
+4170;18248;1;168;69.0;120;80;1;1;0;0;1;0
+4172;18726;2;162;56.0;90;70;2;2;0;0;0;0
+4173;21232;1;156;96.0;120;80;1;3;0;0;0;1
+4175;14378;1;167;67.0;110;80;1;1;0;0;1;0
+4176;22744;2;170;70.0;120;80;1;3;0;0;1;1
+4177;16775;1;157;62.0;130;80;1;1;0;0;1;1
+4178;16744;1;159;79.0;120;70;1;1;0;0;1;1
+4179;18251;1;156;59.0;90;70;1;1;0;0;1;0
+4180;18874;1;169;89.0;110;80;2;1;0;0;1;0
+4182;19618;2;170;98.0;140;90;1;3;0;1;1;0
+4184;19437;2;180;116.0;130;80;1;1;0;0;0;0
+4185;18325;2;165;65.0;120;80;1;1;0;0;1;0
+4187;19705;1;164;66.0;120;80;1;1;0;0;1;0
+4188;23229;1;146;77.0;130;90;1;3;0;0;1;0
+4192;18166;2;170;80.0;140;90;1;1;0;0;1;1
+4194;20667;1;159;66.0;110;70;1;1;0;0;1;0
+4195;21762;2;170;85.0;140;80;1;1;1;1;1;1
+4197;17688;1;175;65.0;120;80;1;1;0;0;1;0
+4198;18261;2;173;92.0;120;80;2;1;0;0;1;0
+4199;17368;2;180;70.0;120;80;1;1;0;0;0;1
+4201;19628;1;169;66.0;110;90;1;1;0;0;0;1
+4202;21013;2;157;56.0;170;90;1;1;0;0;0;1
+4203;18807;1;165;95.0;130;90;1;1;0;0;1;1
+4204;22566;1;158;52.0;110;80;1;1;0;0;1;0
+4205;20353;1;148;52.0;110;70;2;1;0;0;0;1
+4206;18150;1;161;69.0;120;80;1;1;0;0;1;0
+4207;15990;1;155;64.0;100;60;1;1;0;0;1;0
+4208;20398;1;168;78.0;140;8044;3;3;0;0;0;1
+4209;19817;1;169;62.0;130;80;2;2;0;0;1;1
+4211;17534;2;176;63.0;120;80;1;1;0;0;1;1
+4212;19746;1;162;73.0;140;80;1;1;0;0;1;1
+4213;20422;1;170;97.0;145;60;1;1;0;0;1;0
+4214;21957;2;182;90.0;80;140;3;3;0;0;1;1
+4215;19193;2;170;71.0;120;80;1;1;0;0;0;0
+4217;17600;2;180;73.0;120;80;1;1;1;0;1;1
+4218;21347;2;172;63.0;120;80;1;1;0;0;0;1
+4220;22914;1;165;68.0;120;80;1;1;0;0;1;0
+4221;17664;2;172;96.0;150;90;1;1;0;0;1;1
+4222;18349;1;172;67.0;120;80;1;1;0;0;1;0
+4223;14583;1;168;61.0;140;90;1;1;0;0;0;1
+4224;20410;2;169;89.0;140;90;3;3;0;0;1;1
+4228;20290;2;173;79.0;130;90;1;1;0;0;0;1
+4229;15832;1;158;81.0;130;90;3;1;0;0;1;1
+4230;17579;1;158;60.0;120;80;1;1;0;0;1;0
+4232;16039;1;165;63.0;120;80;1;1;0;0;0;1
+4233;19675;2;169;66.0;120;80;1;1;0;0;1;0
+4234;17403;1;170;70.0;120;80;2;1;0;0;0;0
+4237;22922;2;168;81.0;120;80;1;1;0;0;0;0
+4242;16737;2;170;70.0;140;90;1;1;1;0;1;1
+4243;18321;2;177;116.0;140;110;1;1;0;0;1;1
+4246;20306;1;175;80.0;120;80;1;1;0;0;1;0
+4247;19702;1;169;73.0;120;70;3;3;0;1;1;0
+4248;15764;1;150;59.0;110;70;1;1;0;0;1;0
+4249;16191;2;175;59.0;120;90;1;1;1;0;1;0
+4251;16519;2;182;82.0;120;80;1;1;0;0;1;0
+4252;19074;1;163;103.0;160;100;2;1;0;0;1;1
+4253;14414;1;161;58.0;110;70;1;1;0;0;1;0
+4254;21411;1;174;65.0;160;100;2;2;0;0;1;1
+4255;15166;2;165;68.0;120;80;1;1;0;0;1;0
+4256;19477;1;170;69.0;140;90;1;1;0;0;0;1
+4257;17457;2;166;78.0;140;90;2;2;0;0;1;1
+4259;20463;1;160;60.0;120;80;1;1;0;0;1;1
+4260;23224;1;161;85.0;150;92;2;1;0;0;0;1
+4261;15804;1;161;60.0;125;80;1;1;0;0;1;0
+4262;23287;2;175;80.0;120;80;1;1;0;0;1;0
+4266;16693;2;168;75.0;110;80;2;1;1;0;1;0
+4267;15948;2;166;68.0;120;80;1;1;0;0;1;0
+4268;21816;1;164;77.0;130;79;1;2;0;0;0;0
+4269;16619;2;164;55.0;112;79;1;1;0;0;1;1
+4270;20356;1;160;60.0;120;80;1;1;0;0;1;1
+4273;19515;1;164;75.0;120;80;3;1;0;0;1;1
+4274;18346;2;158;54.0;120;80;2;1;0;0;0;0
+4275;23470;2;171;67.0;120;80;3;1;1;0;1;1
+4276;20307;1;161;107.0;180;100;3;1;0;1;1;1
+4277;20365;2;160;62.0;120;80;1;1;1;1;1;0
+4279;18738;1;154;64.0;130;80;1;1;0;0;1;1
+4280;18110;1;165;84.0;150;90;1;1;0;0;1;1
+4281;19595;1;170;72.0;120;90;1;1;0;0;1;0
+4282;21893;1;158;60.0;120;80;1;1;0;0;1;1
+4283;15070;1;158;103.0;110;80;1;1;0;0;1;0
+4285;22534;1;161;54.0;120;80;1;1;0;0;1;1
+4286;20345;1;159;62.0;130;80;1;1;0;0;1;0
+4287;18166;1;160;70.0;110;80;1;1;0;0;1;0
+4288;16746;1;160;77.0;110;60;1;1;0;0;1;1
+4289;19673;1;170;82.0;120;80;1;1;0;0;0;0
+4290;18570;1;165;60.0;120;80;3;3;0;0;0;0
+4291;19992;1;170;70.0;120;80;1;1;0;0;1;0
+4293;19804;1;160;58.0;100;70;1;1;0;0;1;0
+4294;19041;1;155;71.0;140;80;1;1;0;0;1;1
+4295;21077;1;170;82.0;120;80;1;1;0;0;1;0
+4296;16864;1;175;65.0;120;70;1;1;0;0;1;0
+4298;19870;1;168;86.0;120;80;1;1;0;0;1;0
+4299;22488;1;156;66.0;110;70;1;1;0;0;0;0
+4300;21805;1;162;78.0;140;90;1;1;0;0;1;1
+4301;21319;2;170;95.0;90;60;3;1;1;1;1;1
+4302;19854;2;170;75.0;110;70;1;1;0;0;1;0
+4303;18296;2;172;75.0;120;80;2;1;1;0;0;0
+4304;20018;1;169;78.0;120;80;1;1;0;0;0;0
+4305;16673;1;162;54.0;110;80;1;1;0;0;1;0
+4306;19593;1;163;97.0;140;90;1;1;0;0;1;1
+4307;17500;2;168;67.0;110;80;1;1;0;0;1;0
+4308;21687;2;176;107.0;120;80;3;1;1;0;1;1
+4309;18202;2;168;94.0;140;100;1;1;1;0;1;0
+4310;23340;1;165;62.0;140;90;1;1;0;0;1;1
+4312;16647;1;168;65.0;120;80;2;2;0;0;1;0
+4313;15286;2;168;90.0;150;90;1;1;0;0;1;1
+4314;21195;1;165;73.0;130;80;3;3;0;0;1;1
+4315;18542;1;162;58.0;120;80;1;1;0;0;1;0
+4317;19037;1;171;74.0;110;70;2;1;0;0;1;1
+4318;17400;1;149;51.0;100;70;1;1;0;0;1;0
+4321;18875;1;155;72.0;140;80;1;1;0;0;1;0
+4322;15452;1;170;65.0;120;80;1;1;0;0;1;0
+4323;19869;2;158;74.0;120;80;1;1;0;0;1;0
+4325;19662;1;152;118.0;150;80;2;2;0;0;1;1
+4328;21964;1;153;79.0;110;70;2;2;0;0;1;0
+4330;19114;2;158;58.0;130;80;1;1;0;0;0;0
+4331;20352;1;150;72.0;140;80;3;1;0;0;1;0
+4332;17059;1;165;60.0;120;80;1;1;0;0;0;0
+4333;21183;1;160;55.0;120;80;1;1;0;0;1;0
+4334;23266;1;154;97.0;120;80;1;1;0;0;0;1
+4336;15130;1;166;71.0;110;70;1;1;0;0;1;0
+4338;20409;1;168;58.0;120;80;1;1;0;0;1;0
+4340;14370;2;175;58.0;120;80;1;1;1;0;1;0
+4342;18155;1;157;61.0;100;70;1;1;0;0;0;0
+4343;23094;1;161;51.0;120;90;1;1;0;0;0;0
+4344;15272;1;151;87.0;150;90;1;1;0;0;0;1
+4346;15328;2;176;74.0;120;80;1;1;0;0;1;0
+4347;15634;1;161;62.0;120;80;1;1;0;0;1;0
+4349;23199;1;152;96.0;160;90;2;1;0;0;1;1
+4350;21130;2;163;72.0;120;80;1;1;0;0;1;1
+4352;23516;2;169;68.0;140;100;1;1;0;0;0;1
+4353;20346;1;167;74.0;119;82;3;1;0;0;1;0
+4354;16937;1;159;60.0;120;80;1;1;0;0;1;0
+4355;21324;1;170;70.0;120;80;1;1;0;0;0;0
+4359;14344;1;163;82.0;100;60;1;2;0;0;1;0
+4362;18755;2;185;108.0;160;90;1;1;1;0;1;1
+4363;21871;1;155;75.0;110;70;1;1;0;0;1;1
+4366;20911;1;164;66.0;140;90;1;1;0;0;1;1
+4367;19107;2;183;80.0;110;70;1;3;0;0;1;1
+4368;21986;1;167;64.0;110;70;1;1;0;0;1;1
+4369;23137;2;153;74.0;160;90;1;2;0;0;1;1
+4370;20310;1;156;72.0;140;90;3;1;0;0;1;1
+4371;19039;1;164;64.0;110;70;1;1;0;0;1;0
+4372;19641;1;160;70.0;120;80;1;1;0;0;1;0
+4373;18384;1;162;94.0;150;80;1;3;0;0;1;1
+4374;14535;1;160;93.0;110;70;2;2;0;0;1;0
+4375;15202;2;169;59.0;120;80;1;1;0;0;1;0
+4376;20246;1;160;72.0;120;80;1;1;0;0;1;1
+4380;18722;1;157;80.0;120;80;1;1;0;0;1;0
+4381;18825;1;165;80.0;100;70;2;1;0;0;1;1
+4383;21418;1;169;62.0;120;80;3;3;0;0;1;1
+4384;19554;2;170;90.0;130;89;3;1;0;0;1;1
+4385;23465;1;164;63.0;150;89;1;1;0;0;1;1
+4388;20284;2;168;95.0;120;80;1;1;0;0;0;1
+4389;20456;1;165;92.0;160;80;3;1;0;0;1;1
+4392;21193;1;168;73.0;120;80;1;1;0;0;1;1
+4393;18219;1;180;83.0;120;80;1;1;0;0;1;1
+4395;19838;2;171;75.0;120;80;1;1;1;1;1;0
+4396;19631;2;173;79.0;160;100;1;1;1;0;1;0
+4397;17710;2;164;68.0;140;90;1;1;0;1;1;1
+4398;21829;1;175;80.0;140;90;1;1;0;0;0;1
+4399;20373;2;170;78.0;120;80;1;1;0;0;1;0
+4401;19190;1;164;85.0;160;100;1;1;0;0;1;1
+4403;21898;1;176;81.0;120;90;1;1;0;0;1;0
+4404;21211;1;158;56.0;120;80;1;2;0;0;0;0
+4406;14716;1;169;54.0;110;80;1;1;0;0;1;0
+4410;18807;1;157;64.0;110;70;1;2;0;0;1;0
+4411;23392;2;175;90.0;140;80;2;3;0;1;1;1
+4413;21077;2;176;100.0;130;90;2;2;0;0;1;1
+4414;20395;1;170;70.0;130;80;2;2;0;0;1;0
+4415;21418;1;164;54.0;120;80;1;1;0;0;0;0
+4416;21019;1;178;59.0;150;90;2;1;0;0;1;1
+4418;14457;1;163;71.0;90;60;1;1;0;0;0;1
+4420;21853;2;168;67.0;120;80;1;1;0;0;1;1
+4421;21800;1;140;50.0;110;70;1;1;0;0;1;1
+4422;18181;2;171;80.0;120;80;1;1;1;0;1;0
+4425;15114;1;182;94.0;130;80;1;1;0;0;0;0
+4426;21319;1;165;65.0;120;80;1;1;0;0;0;1
+4428;18426;1;156;58.0;100;70;2;1;0;0;1;0
+4430;18230;1;160;73.0;110;70;2;1;0;0;1;0
+4431;21906;1;156;82.0;150;100;2;2;0;0;0;1
+4435;21940;1;176;86.0;120;90;1;1;0;1;1;1
+4437;23208;1;168;70.0;150;90;2;1;0;0;1;1
+4438;17701;1;157;63.0;120;80;1;1;0;0;1;0
+4439;20957;1;165;54.0;130;80;1;1;0;0;0;0
+4440;17566;2;162;79.0;140;90;1;1;1;0;0;1
+4441;21880;1;154;64.0;110;70;1;1;0;0;1;0
+4442;22678;1;149;71.0;159;1044;1;1;0;0;1;0
+4443;21801;1;160;60.0;120;80;1;1;0;0;1;1
+4444;16519;1;164;58.0;120;80;2;2;0;0;0;0
+4446;18337;1;165;95.0;140;90;1;1;0;0;0;1
+4447;14697;1;164;74.0;110;60;1;1;0;0;1;0
+4448;22478;1;150;64.0;140;80;1;3;0;1;1;1
+4451;22547;2;162;56.0;120;80;1;1;0;0;1;1
+4452;20291;2;165;75.0;120;70;1;1;0;0;1;1
+4455;18779;1;156;82.0;120;80;1;1;0;0;0;0
+4456;16624;1;154;82.0;120;80;1;1;0;0;1;1
+4457;18354;1;167;75.0;120;80;1;1;0;0;1;0
+4458;21078;2;170;72.0;130;70;3;3;0;0;1;1
+4460;21089;1;152;102.0;140;100;1;1;0;0;0;1
+4461;18443;1;171;68.0;120;80;1;1;0;0;1;0
+4462;20569;2;180;117.0;125;80;3;1;0;0;1;1
+4463;18790;1;146;64.0;150;1000;1;1;0;0;1;1
+4464;21851;1;156;58.0;150;100;1;1;0;0;1;1
+4465;17604;1;158;60.0;130;80;1;2;0;0;1;1
+4466;21104;2;170;90.0;140;80;3;1;0;0;1;0
+4467;19561;2;173;96.0;160;100;3;1;0;0;1;0
+4468;17341;1;156;58.0;120;80;1;1;0;0;1;0
+4469;22826;2;175;82.0;125;80;1;2;0;0;1;1
+4470;22164;1;160;76.0;130;90;2;1;0;0;1;1
+4471;19787;1;166;70.0;130;80;1;1;0;0;0;0
+4472;21119;1;165;65.0;130;80;1;1;0;0;1;1
+4473;22051;2;176;103.0;130;70;3;2;0;0;0;1
+4474;16972;2;170;72.0;120;80;1;1;0;0;1;0
+4475;20481;1;158;60.0;120;80;2;1;0;0;1;1
+4476;21908;1;172;98.0;130;80;2;1;0;0;0;1
+4477;19547;1;162;60.0;120;80;1;1;0;0;1;0
+4478;17528;1;167;69.0;150;80;2;2;0;0;1;1
+4479;21935;2;175;69.0;110;80;1;1;1;0;1;0
+4480;20471;1;164;81.0;110;80;2;3;0;0;1;0
+4481;21409;2;174;70.0;110;70;1;1;0;0;1;0
+4483;20379;2;174;78.0;140;90;1;1;0;0;1;1
+4485;19553;1;159;62.0;120;80;1;1;0;0;1;0
+4487;16938;2;180;90.0;122;80;1;1;1;1;1;0
+4488;16727;1;157;68.0;110;90;1;2;0;0;1;0
+4489;20586;1;152;57.0;120;80;3;1;0;0;1;1
+4492;21881;1;160;64.0;90;60;3;1;0;0;0;1
+4493;17570;2;158;97.0;120;80;1;1;0;0;1;0
+4494;14701;1;158;73.0;90;60;1;1;0;0;0;0
+4495;18909;1;164;85.0;130;90;1;1;0;0;1;0
+4496;18417;2;170;72.0;110;70;1;1;0;0;1;1
+4498;20384;1;164;72.0;140;90;2;1;1;0;0;1
+4501;18412;1;168;82.0;140;80;1;1;0;0;0;1
+4502;22749;1;160;62.0;90;60;1;1;0;0;1;0
+4504;18925;1;162;72.0;120;80;1;1;0;0;1;0
+4505;20410;2;168;56.0;100;70;1;1;0;0;1;1
+4506;19422;1;157;51.0;110;70;1;1;0;0;0;0
+4507;22522;1;149;64.0;110;60;1;1;0;0;1;1
+4508;23501;1;155;89.5;150;80;2;2;0;0;1;1
+4509;16940;1;154;55.0;120;80;1;2;0;0;1;0
+4510;19069;2;168;59.0;100;70;1;1;1;0;0;0
+4511;18461;2;165;67.0;100;60;1;1;0;0;1;0
+4512;14676;1;173;86.0;110;70;1;1;0;0;1;0
+4513;21198;1;158;105.0;150;100;2;1;0;0;1;1
+4514;16082;1;156;74.0;110;70;1;1;0;0;1;0
+4515;19123;1;165;78.0;130;80;3;1;0;0;0;1
+4516;14587;1;163;59.0;110;60;1;1;0;0;1;0
+4518;20653;1;160;64.0;120;80;1;1;0;0;1;0
+4521;18417;1;164;132.0;160;90;1;1;0;0;0;1
+4522;20402;1;162;63.0;120;80;1;1;0;0;1;0
+4523;18285;1;136;57.0;120;80;1;1;0;0;1;0
+4524;14321;2;172;83.0;130;80;1;1;1;0;1;0
+4525;21083;1;167;111.0;130;80;1;1;0;0;1;1
+4526;23257;2;177;95.0;170;90;3;1;0;0;1;1
+4527;16836;2;195;117.0;130;80;3;3;0;0;1;1
+4528;16687;1;180;76.0;120;80;1;1;0;0;1;1
+4531;16142;1;153;63.0;120;80;1;1;0;0;0;0
+4532;15944;1;166;70.0;160;110;1;1;0;0;0;1
+4533;18184;2;175;80.0;120;80;1;1;0;0;1;1
+4535;14377;2;169;113.0;150;100;1;1;1;0;1;1
+4537;18290;1;163;62.0;120;80;1;1;0;0;1;0
+4538;19436;1;170;76.0;120;80;1;1;0;0;1;0
+4539;19628;1;153;63.0;130;80;1;1;0;0;1;1
+4541;15254;1;170;68.0;120;80;1;1;0;0;1;1
+4542;17482;1;164;65.0;110;70;2;1;0;0;1;1
+4543;15085;2;169;73.0;120;70;1;1;0;0;1;0
+4546;20508;1;146;71.0;150;90;1;1;0;0;1;1
+4547;15808;1;159;56.0;110;70;2;1;0;0;1;0
+4548;19707;2;169;78.0;140;80;1;1;0;1;1;1
+4550;14305;2;172;80.0;140;90;1;1;0;0;1;0
+4552;14616;2;176;96.0;120;80;2;1;0;0;1;1
+4553;15091;1;165;50.0;100;80;1;1;0;0;1;0
+4554;21670;2;168;77.0;130;90;1;1;0;0;1;1
+4555;18383;2;168;60.0;110;70;3;1;0;0;1;1
+4556;19627;1;175;68.0;120;70;1;1;0;0;0;0
+4557;22635;2;170;92.0;105;90;3;1;0;1;0;1
+4558;21056;2;168;82.0;120;80;1;1;0;0;1;0
+4559;19628;1;156;68.0;140;90;1;1;0;0;0;1
+4560;19165;2;170;80.0;120;80;1;1;1;1;1;0
+4561;16072;2;198;61.0;110;70;1;1;0;0;1;1
+4563;16763;1;166;64.0;110;70;1;1;0;0;1;0
+4564;18158;2;168;65.0;120;79;1;1;0;0;1;1
+4565;16035;2;180;79.0;110;70;1;1;1;0;1;1
+4566;19125;1;154;97.0;150;80;1;1;0;1;1;1
+4567;19830;1;157;74.0;125;89;1;1;0;0;1;0
+4569;20285;1;157;66.0;110;70;1;1;0;0;0;1
+4570;15217;2;175;117.0;105;80;3;1;1;0;1;1
+4571;14485;2;173;63.0;120;70;1;1;0;0;1;0
+4572;16248;1;165;56.0;160;100;2;1;0;0;1;1
+4573;16774;2;180;62.0;150;90;2;1;1;0;0;1
+4574;19133;2;167;54.0;110;70;1;2;1;0;1;0
+4575;17428;1;170;70.0;110;70;1;1;0;0;0;0
+4576;19081;2;166;75.0;130;80;1;1;0;0;1;0
+4577;16656;1;162;71.0;120;70;1;1;0;0;1;0
+4580;18312;2;175;111.0;110;70;1;2;1;0;1;1
+4581;22061;2;170;87.0;120;80;1;1;0;0;0;1
+4583;21950;1;165;90.0;140;90;1;1;0;0;1;1
+4585;18378;1;154;84.0;120;80;1;1;0;0;1;1
+4587;14503;1;162;58.0;110;80;2;2;0;0;1;0
+4588;21416;1;185;85.0;150;100;1;1;0;0;0;0
+4589;20247;2;184;93.0;140;90;3;1;1;0;1;1
+4590;20901;1;168;51.0;110;70;1;1;1;0;1;0
+4591;23254;1;157;93.0;160;100;1;1;0;0;1;1
+4592;19803;2;172;95.0;140;100;1;1;0;0;1;1
+4594;22634;1;153;80.0;120;80;1;1;0;0;0;0
+4595;16254;1;171;65.0;120;80;1;1;0;0;1;0
+4599;21200;1;157;70.0;160;90;1;1;0;0;1;1
+4600;22420;1;173;77.0;120;80;2;2;0;0;1;0
+4602;21948;2;170;84.0;160;100;1;1;0;0;1;1
+4603;20335;1;160;76.0;100;50;1;1;0;0;1;1
+4604;20425;1;154;84.0;130;90;1;1;0;0;0;1
+4606;18986;1;171;84.0;140;108;1;1;0;0;1;1
+4607;22541;2;166;75.0;140;90;1;1;0;0;1;1
+4608;19696;1;169;98.0;120;70;1;1;0;0;1;0
+4609;21812;1;150;73.0;110;80;3;2;0;0;0;1
+4610;14512;1;156;56.0;100;70;1;1;0;0;1;0
+4611;20745;1;168;70.0;140;60;2;1;0;0;1;1
+4612;21964;2;160;58.0;120;60;2;1;0;0;0;0
+4615;15337;1;170;56.0;110;70;2;1;0;0;1;0
+4616;20953;1;158;76.0;140;90;3;1;0;0;1;1
+4618;19001;1;167;63.0;120;80;1;1;0;0;1;0
+4619;21157;2;174;94.0;140;89;1;1;0;0;1;1
+4622;22640;2;167;78.0;160;100;1;1;0;0;1;1
+4623;21895;1;165;60.0;120;80;1;1;0;0;0;0
+4624;18303;2;180;75.0;120;80;1;1;0;0;1;0
+4625;19633;1;153;63.0;120;70;1;1;0;0;1;0
+4626;16093;2;168;65.0;120;80;1;1;0;0;1;0
+4627;16851;1;163;98.0;150;90;1;1;0;0;1;1
+4628;18439;1;156;70.0;120;80;1;1;0;0;0;0
+4629;20935;1;158;72.0;140;70;1;1;0;0;0;1
+4630;20326;1;165;68.0;113;79;1;1;0;0;0;0
+4632;21477;1;156;65.0;120;80;1;1;0;0;1;0
+4635;21118;1;159;69.0;140;90;1;2;0;0;1;1
+4636;22038;2;164;67.0;120;80;1;1;0;0;1;0
+4638;22212;1;168;71.0;110;70;2;1;0;0;1;1
+4639;23430;1;153;62.0;140;90;1;1;0;1;1;1
+4640;21965;2;161;61.0;160;1000;1;1;0;0;0;1
+4641;14635;1;158;72.0;120;80;1;1;0;0;0;0
+4643;19712;1;150;70.0;130;70;2;1;0;0;1;0
+4649;23164;1;150;101.0;170;80;3;3;0;0;1;1
+4650;14523;1;170;72.0;110;70;1;1;0;0;1;0
+4652;17638;1;166;97.0;125;80;1;1;0;0;1;0
+4653;19176;1;163;67.0;110;70;2;2;0;0;1;0
+4654;21901;1;164;72.0;120;80;3;1;0;0;1;0
+4655;18733;1;154;55.0;120;80;1;3;0;0;1;0
+4660;20645;1;160;84.0;150;70;1;2;0;0;1;1
+4661;19592;1;171;100.0;140;100;3;1;0;1;0;1
+4663;22008;1;155;60.0;110;80;2;1;0;0;1;0
+4664;20324;1;170;68.0;120;80;1;1;0;0;1;0
+4665;17439;1;170;85.0;140;90;3;3;0;0;1;0
+4666;15433;1;155;82.0;110;69;2;1;0;0;1;1
+4667;22010;2;167;65.0;120;70;1;1;0;0;1;0
+4669;20503;1;158;98.0;130;80;3;3;0;0;0;0
+4670;14507;2;157;56.0;120;80;1;1;0;0;1;0
+4671;16073;1;157;59.0;120;80;1;1;0;0;1;0
+4672;17545;1;155;155.0;160;1000;1;1;0;0;1;1
+4673;16171;1;165;62.0;110;60;1;1;0;0;1;0
+4674;17448;1;158;108.0;120;90;1;1;0;0;1;0
+4675;21200;1;158;82.0;140;80;1;1;0;0;1;1
+4676;16072;1;162;58.0;110;70;1;1;0;0;0;0
+4681;22259;2;160;62.0;120;80;1;1;0;0;0;1
+4682;19655;1;156;80.0;120;80;1;1;0;0;1;0
+4683;15908;2;182;90.0;130;80;2;1;1;1;1;1
+4684;19756;1;157;70.0;120;80;1;1;0;0;1;1
+4686;21238;1;161;73.0;140;90;3;1;0;0;1;1
+4687;21057;2;170;79.0;130;90;1;1;0;0;1;1
+4688;21873;1;163;82.0;120;80;1;1;0;0;1;0
+4689;20517;1;162;80.0;150;100;1;1;0;0;1;1
+4693;23467;2;179;100.0;140;90;1;1;0;0;1;0
+4694;18340;1;159;82.0;120;80;2;2;0;0;1;1
+4696;16707;2;163;63.0;120;80;1;1;0;0;0;1
+4698;20572;1;178;78.0;120;80;1;1;0;0;0;1
+4699;19659;1;156;83.0;110;70;1;1;0;0;1;0
+4700;19115;1;162;69.0;150;100;1;1;0;0;1;1
+4701;22444;2;171;90.0;140;80;1;1;0;0;1;1
+4704;18155;1;154;58.0;140;100;1;1;0;0;1;1
+4705;21236;1;155;96.0;120;80;2;1;0;0;1;1
+4706;23281;2;170;80.0;160;80;1;1;0;0;1;1
+4707;21252;2;170;95.0;120;90;2;1;0;0;1;0
+4708;16086;1;166;80.0;120;90;1;1;0;0;1;0
+4709;19074;1;157;66.0;130;90;2;1;1;1;1;1
+4710;14490;1;158;53.0;120;90;1;1;0;0;1;0
+4714;16097;1;175;80.0;110;70;1;1;0;0;1;0
+4715;19014;1;165;68.0;120;80;1;1;0;0;0;1
+4717;19004;1;159;68.0;160;100;2;1;0;0;1;1
+4718;20284;2;180;82.0;150;110;1;1;1;1;1;1
+4719;16173;1;162;130.0;110;70;3;1;0;1;1;1
+4720;16578;2;180;85.0;110;70;1;1;0;0;1;0
+4722;20517;1;171;71.0;120;80;1;1;0;0;0;1
+4725;18141;1;156;56.0;110;70;1;1;1;0;1;0
+4727;16232;2;172;73.0;120;70;2;1;0;0;1;0
+4731;15965;1;153;66.0;110;80;1;1;0;0;1;0
+4732;19733;2;166;64.0;120;80;1;1;0;0;1;1
+4733;20270;1;164;125.0;140;90;1;1;0;0;1;1
+4734;21241;1;156;62.0;110;80;1;1;0;0;0;0
+4735;23196;1;160;60.0;160;80;1;1;0;0;1;1
+4736;22748;1;159;61.0;120;80;1;3;0;0;1;1
+4738;16585;1;165;67.0;130;80;2;1;0;0;1;1
+4739;15105;1;160;68.0;100;70;2;1;0;0;1;1
+4741;19625;1;159;74.0;120;80;1;1;0;0;1;0
+4742;21913;1;156;91.0;115;70;3;1;0;0;0;1
+4743;16517;1;157;69.0;140;90;3;3;0;0;1;1
+4747;16766;2;170;89.0;110;80;1;1;0;0;1;0
+4748;22754;2;165;73.0;120;80;1;2;0;0;1;1
+4749;20573;1;156;60.0;120;70;1;1;1;0;0;1
+4753;21168;1;160;72.0;130;80;3;1;0;0;1;1
+4754;18412;2;170;72.0;140;90;2;1;0;0;1;1
+4755;21059;1;164;94.0;120;80;1;1;0;0;1;1
+4756;15230;1;158;52.0;110;70;1;1;0;0;1;0
+4757;22462;2;157;84.0;180;100;3;1;0;0;0;1
+4758;18060;1;157;72.0;140;90;1;1;0;0;1;0
+4759;18231;1;149;48.0;130;80;1;1;0;0;1;0
+4762;20452;2;169;79.0;120;80;1;1;1;1;1;0
+4763;21368;1;164;70.0;130;80;1;1;0;0;1;1
+4764;19063;1;168;70.0;110;70;1;1;0;0;0;1
+4768;22223;2;172;82.0;120;80;1;1;0;0;0;0
+4769;14654;1;161;60.0;120;80;1;1;0;0;1;0
+4770;16068;2;159;79.0;120;80;1;1;0;0;1;1
+4771;20445;1;156;68.0;150;90;2;2;0;0;1;0
+4772;14645;1;156;59.0;130;60;1;1;0;0;1;0
+4777;20442;1;165;69.0;120;80;1;1;0;0;1;0
+4778;20622;2;181;89.0;130;90;2;1;0;0;0;1
+4779;22641;1;173;69.0;170;80;3;1;0;0;0;1
+4780;14740;1;153;57.0;120;80;1;1;0;0;1;0
+4781;19771;2;183;98.0;130;80;1;1;1;0;1;1
+4782;15450;1;160;86.0;120;80;1;1;0;0;1;0
+4784;19509;1;161;65.0;110;70;2;1;0;0;1;0
+4785;21838;1;163;66.0;110;70;1;1;0;0;1;0
+4786;21950;1;159;55.0;110;70;1;1;0;0;1;0
+4787;18941;2;165;81.0;120;80;3;1;0;0;0;1
+4788;21308;1;166;69.0;120;80;1;1;0;0;1;0
+4789;21067;1;154;60.0;120;80;1;3;0;0;1;0
+4791;20886;2;176;76.0;140;80;1;1;0;0;1;0
+4792;20473;1;160;75.0;110;80;1;1;0;0;0;0
+4794;21071;2;171;78.0;120;80;1;1;0;0;1;1
+4795;20573;1;159;78.0;110;70;1;1;0;0;1;1
+4797;19942;1;168;69.0;120;80;1;1;0;0;1;0
+4798;17996;1;168;77.0;120;80;1;1;0;0;1;0
+4800;21803;2;178;97.0;110;70;1;1;0;0;1;1
+4801;21887;1;156;54.0;120;70;1;1;0;0;0;0
+4805;19680;1;168;65.0;120;80;2;1;0;0;0;0
+4806;14582;1;155;59.0;120;80;3;3;0;0;1;0
+4807;16111;2;153;62.0;120;70;1;1;0;0;0;1
+4808;20593;2;187;92.0;140;90;2;1;1;0;0;1
+4809;20965;2;167;75.0;120;70;1;1;0;0;1;0
+4810;18092;1;159;78.0;135;90;2;1;0;0;1;0
+4812;16041;2;172;69.0;120;80;1;1;0;0;1;0
+4814;22754;2;167;69.0;150;100;1;1;0;0;1;1
+4815;18146;2;174;76.0;110;60;1;2;0;0;1;0
+4816;19804;1;161;87.0;150;100;1;1;0;0;1;1
+4818;18829;1;165;66.0;140;80;3;3;0;0;1;1
+4820;14426;1;178;67.0;120;80;1;1;0;0;1;0
+4821;21824;2;180;90.0;100;79;1;1;0;0;1;0
+4822;19686;1;152;71.0;140;90;1;1;0;0;1;1
+4824;23398;2;165;63.0;150;80;1;1;0;0;1;1
+4825;14585;1;159;159.0;100;80;1;1;0;0;1;0
+4826;18997;1;166;78.0;140;90;1;1;0;0;1;1
+4827;19096;1;162;58.0;120;80;1;1;0;0;1;0
+4829;19025;2;180;80.0;120;80;1;1;0;1;0;1
+4833;20395;2;172;88.0;110;70;1;1;0;0;1;0
+4835;18087;1;150;57.0;120;80;1;1;0;0;1;0
+4836;20431;2;158;81.0;120;80;2;3;1;0;1;0
+4838;14516;1;100;70.0;100;70;1;1;0;0;1;0
+4839;21905;2;165;79.0;150;80;1;1;0;0;1;1
+4840;21698;1;161;68.0;130;80;3;3;0;0;1;1
+4842;16621;2;165;83.0;140;90;3;1;0;0;1;1
+4843;14471;2;172;77.0;160;110;2;2;1;0;1;1
+4844;15112;2;168;75.0;110;70;1;1;0;0;1;1
+4845;14727;1;168;55.0;120;80;1;1;0;1;1;0
+4846;20449;1;165;76.0;120;80;3;3;0;0;1;1
+4848;19814;1;156;62.0;110;60;2;2;0;0;0;0
+4849;19722;1;169;68.0;130;80;3;1;0;0;0;1
+4853;20289;2;180;105.0;170;100;1;1;1;0;1;1
+4854;15246;1;176;65.0;110;70;1;2;1;0;1;0
+4856;19774;1;160;65.0;140;90;1;1;0;0;1;1
+4858;21932;1;166;75.0;120;90;1;1;0;0;1;0
+4860;15457;1;176;74.0;120;80;1;1;0;0;1;0
+4862;15183;1;168;69.0;120;80;1;1;0;0;1;0
+4863;15996;1;163;67.0;120;80;1;1;0;0;1;0
+4864;16203;2;165;94.0;120;90;1;1;1;1;1;0
+4865;14743;1;150;50.0;140;90;1;1;0;0;1;0
+4866;20614;1;169;65.0;130;80;2;1;0;0;1;0
+4868;21918;1;149;49.0;150;90;1;1;0;0;1;1
+4870;19927;1;179;76.0;110;70;1;1;0;0;1;0
+4871;21780;1;155;52.0;125;80;3;1;0;0;0;1
+4873;20642;1;165;65.0;120;80;1;1;0;0;1;0
+4875;15830;2;163;75.0;120;80;1;1;0;0;1;0
+4878;14362;1;158;59.0;150;90;1;2;0;0;1;1
+4879;20481;1;156;123.0;160;1000;1;1;0;0;1;1
+4880;19992;2;180;80.0;80;125;3;3;1;1;1;1
+4881;17479;1;170;63.0;120;80;1;1;0;0;1;0
+4882;17619;1;159;57.0;12;80;1;1;0;0;1;0
+4884;16687;1;158;74.0;120;70;1;1;0;0;1;0
+4885;21990;1;164;72.0;130;80;1;1;0;0;1;1
+4888;14417;2;182;81.0;110;70;1;1;0;0;1;0
+4890;21266;1;158;83.0;140;90;1;2;0;0;1;1
+4891;16083;1;160;62.0;100;80;1;1;0;0;1;0
+4892;20615;1;158;95.0;130;90;1;3;0;0;1;1
+4894;18579;1;164;76.0;120;80;3;3;0;0;1;0
+4895;18113;2;175;120.0;140;60;1;2;1;0;1;0
+4896;15177;1;167;70.0;100;70;1;2;0;0;1;0
+4898;23166;2;162;65.0;150;80;1;1;0;0;1;1
+4899;22047;2;166;76.0;140;100;1;1;1;0;0;1
+4900;22511;1;164;70.0;130;80;1;3;0;0;1;1
+4901;21118;1;165;65.0;120;80;1;1;0;0;0;0
+4902;15338;2;176;80.0;120;80;1;1;0;0;1;1
+4904;22568;1;158;91.0;140;100;1;1;0;0;0;1
+4905;23392;1;152;69.0;110;60;1;1;0;0;1;1
+4906;14505;1;155;85.0;110;70;1;1;0;0;1;1
+4907;16791;1;168;66.0;130;80;2;1;0;0;0;1
+4908;18237;1;164;65.0;120;80;1;1;0;0;1;0
+4909;14462;1;169;70.0;140;80;1;1;0;0;1;0
+4910;19754;1;175;74.0;120;85;1;1;0;0;0;0
+4911;18191;2;159;88.0;120;80;1;2;0;0;0;1
+4912;22720;2;176;76.0;120;80;1;1;0;0;1;0
+4913;21281;1;164;72.0;140;80;1;1;0;0;1;0
+4915;22818;2;170;70.0;120;80;1;1;0;0;1;0
+4916;21841;2;175;94.0;120;80;1;1;0;0;0;1
+4917;19812;1;162;58.0;140;90;3;3;0;0;1;1
+4918;21945;2;178;69.0;120;80;3;1;0;0;0;1
+4920;15338;1;163;72.0;110;70;2;1;0;0;1;0
+4925;23645;1;167;66.0;120;80;3;3;0;0;1;1
+4926;18041;2;175;85.0;100;90;1;1;0;1;1;0
+4927;18010;2;176;85.0;120;80;2;2;0;0;0;0
+4929;22385;2;172;70.0;130;70;1;1;0;0;1;1
+4931;20401;1;155;56.0;120;80;1;1;0;0;1;0
+4932;15233;2;172;81.0;120;80;1;1;0;0;1;0
+4934;16750;1;170;66.0;140;70;1;1;0;0;1;0
+4935;20583;1;160;89.0;160;80;3;1;0;0;1;1
+4936;21077;2;162;88.0;120;80;3;3;0;0;0;0
+4938;20712;1;155;71.0;150;1100;1;1;0;0;0;1
+4939;20415;1;159;79.0;110;70;1;1;0;0;0;0
+4942;20511;2;164;87.0;160;100;1;2;0;1;1;1
+4945;21070;1;164;81.0;105;80;2;2;0;0;1;0
+4946;22707;2;177;79.0;110;70;1;1;0;0;0;1
+4947;22167;1;174;65.0;120;80;1;1;0;0;1;0
+4948;22370;1;162;113.0;180;100;3;3;0;0;1;1
+4950;14362;1;159;67.0;110;70;1;1;0;0;1;0
+4951;20285;2;171;82.0;120;80;1;1;0;0;1;0
+4952;20144;1;170;89.0;140;80;1;1;0;0;0;1
+4953;17747;2;169;55.0;100;60;1;1;1;0;1;0
+4954;17680;1;155;70.0;110;70;2;1;0;0;0;1
+4955;22529;2;176;68.0;110;70;1;1;1;0;1;0
+4957;14800;1;167;67.0;100;90;1;1;0;0;1;0
+4960;17003;1;159;71.0;120;80;1;1;0;0;1;0
+4962;21056;1;151;62.0;125;90;1;1;0;0;1;0
+4963;21183;1;164;93.0;150;100;2;1;0;0;1;1
+4964;17540;2;175;106.0;130;80;3;2;1;0;1;1
+4966;16925;2;175;72.0;120;80;1;1;0;0;1;0
+4967;19032;2;170;58.0;100;60;1;1;0;0;1;0
+4968;21143;2;166;75.0;120;80;1;3;0;0;1;0
+4971;18798;2;162;54.0;110;80;1;1;0;0;1;0
+4974;19867;1;163;59.0;100;80;1;1;0;0;1;0
+4975;19712;1;157;66.0;120;80;1;1;0;0;0;0
+4976;14424;2;170;105.0;140;90;2;1;0;0;1;1
+4978;18017;1;157;62.0;140;90;1;1;0;0;0;1
+4979;18045;1;167;70.0;120;80;1;1;0;0;1;0
+4981;19789;1;164;78.0;130;80;1;3;0;0;1;1
+4985;19667;1;158;60.0;110;70;1;1;0;0;1;0
+4987;22701;1;146;61.0;120;60;1;1;1;0;1;0
+4988;22775;1;155;65.0;140;90;1;1;0;0;0;1
+4990;19211;1;155;90.0;165;100;1;1;0;0;1;1
+4991;19859;1;180;75.0;120;80;1;1;0;0;1;1
+4992;20551;1;168;60.0;140;90;1;1;0;0;1;1
+4994;23335;2;167;68.0;120;80;1;1;0;0;1;1
+4995;18079;1;169;69.0;120;80;1;1;0;0;0;1
+4996;19567;1;168;69.0;130;80;1;1;0;0;1;1
+4997;16956;1;158;71.0;90;60;1;1;0;0;1;0
+4998;23532;1;150;60.0;150;100;1;2;0;0;1;0
+4999;17395;1;160;50.0;120;80;1;1;0;0;1;0
+5000;20590;2;170;105.0;135;90;1;3;0;0;1;0
+5001;16030;2;164;65.0;130;70;1;1;0;0;1;1
+5002;15550;2;170;75.0;120;80;1;1;0;0;1;0
+5004;20526;2;172;75.0;120;80;1;1;0;0;0;0
+5005;15925;1;157;89.0;160;100;1;1;0;0;1;1
+5006;16644;1;165;43.0;90;60;1;2;0;0;1;0
+5008;22531;1;161;77.0;130;80;1;3;0;0;1;1
+5009;21175;2;178;65.0;120;80;1;1;1;0;1;0
+5010;22582;1;170;63.0;120;80;2;1;0;0;1;0
+5012;18884;1;163;62.0;120;80;1;1;0;0;1;0
+5013;21857;1;152;84.0;130;90;1;2;0;0;1;1
+5015;21194;1;168;63.0;120;80;1;1;0;0;1;1
+5017;22618;2;159;62.0;120;70;1;1;0;0;1;0
+5019;21141;1;169;71.0;120;70;1;1;0;0;1;0
+5020;20139;1;160;86.0;120;80;3;3;0;0;1;1
+5021;20416;1;167;82.0;120;80;1;1;0;0;1;0
+5022;16776;1;156;60.0;120;80;1;1;0;0;0;0
+5023;22818;1;156;94.0;120;80;1;1;0;0;1;0
+5024;21333;2;172;62.0;120;80;1;1;0;0;1;0
+5026;19847;1;159;78.0;130;100;3;1;0;0;1;1
+5028;19799;1;170;79.0;110;60;1;1;1;0;1;1
+5029;16822;1;163;63.0;110;70;1;1;0;0;1;0
+5030;20457;1;157;71.0;120;80;1;1;0;0;1;1
+5031;21061;2;170;75.0;120;70;1;1;0;0;1;1
+5033;18835;2;175;88.0;150;90;1;1;0;0;1;1
+5034;23096;1;150;64.0;150;80;2;1;0;0;1;1
+5037;18714;2;176;89.0;120;70;1;1;1;1;1;1
+5038;16745;2;175;80.0;120;80;1;1;0;0;1;0
+5039;16059;2;168;85.0;140;80;1;1;0;0;0;1
+5040;23215;1;178;85.0;150;80;2;2;0;0;0;1
+5042;14660;1;168;60.0;110;80;1;1;0;0;1;0
+5043;19830;2;169;70.0;130;90;1;2;1;1;1;1
+5044;20538;1;150;65.0;140;80;3;3;0;0;1;1
+5045;17415;2;182;91.0;110;90;1;1;0;0;1;1
+5046;18134;1;170;79.0;150;90;1;1;0;0;1;1
+5047;16597;2;164;80.0;150;100;1;1;1;0;1;1
+5048;18429;1;162;68.0;120;80;2;1;0;0;1;0
+5049;14584;2;174;96.0;140;90;1;1;0;0;0;1
+5050;21184;1;161;76.0;120;80;3;1;0;0;1;1
+5051;19432;1;150;61.0;120;80;1;1;0;0;1;1
+5052;15195;2;175;88.0;110;70;1;1;0;0;1;0
+5053;21012;1;163;62.0;130;90;3;1;0;0;0;1
+5055;22888;1;165;67.0;130;80;1;1;0;0;1;1
+5056;20526;1;167;63.0;120;80;1;1;0;0;1;0
+5057;23280;2;165;79.0;140;90;1;1;0;0;1;1
+5058;14670;2;176;85.0;120;80;1;1;0;0;1;1
+5059;22322;1;166;62.0;130;90;1;1;0;0;0;1
+5062;17755;2;176;84.6;130;90;2;1;1;0;1;1
+5065;23215;1;154;85.0;130;90;2;1;0;0;0;1
+5066;19656;1;156;66.0;120;80;1;1;0;0;1;0
+5067;16356;1;170;72.0;100;60;1;1;0;0;1;0
+5068;21403;1;175;70.0;150;90;1;1;0;0;0;1
+5069;16844;1;151;73.0;120;80;1;1;0;0;1;0
+5070;19024;1;168;70.0;140;70;2;1;0;0;1;0
+5071;22553;2;171;94.0;140;90;1;1;0;0;0;1
+5074;15346;2;172;80.0;120;60;1;1;1;1;1;0
+5075;20343;1;165;87.0;120;80;1;1;0;0;1;1
+5077;21165;2;170;79.0;120;80;2;1;0;0;1;1
+5078;23401;1;156;99.0;160;90;2;1;0;0;1;1
+5079;16846;2;170;79.0;130;80;1;1;0;0;1;1
+5081;22726;1;164;63.0;130;90;1;1;0;0;1;0
+5083;18923;2;169;59.0;150;90;1;2;0;0;0;0
+5084;19831;1;169;58.0;120;80;1;1;0;0;0;1
+5086;21310;1;161;140.0;120;80;3;1;0;0;0;1
+5088;18355;1;152;60.0;120;80;1;1;0;0;1;0
+5089;21977;1;160;60.0;120;80;1;1;0;0;0;1
+5091;16032;1;161;75.0;110;80;2;1;0;0;1;0
+5092;21709;1;165;83.0;120;80;1;1;0;0;1;0
+5093;18903;1;158;85.0;110;70;2;1;0;0;0;1
+5094;16730;1;160;60.0;120;80;1;1;0;0;1;1
+5097;20382;1;152;80.0;120;80;1;1;0;0;1;0
+5098;18349;1;151;63.0;110;70;1;1;0;0;1;0
+5100;19846;1;157;60.0;140;1000;3;1;0;0;0;1
+5101;14579;1;158;74.0;140;90;1;1;0;0;1;1
+5102;15513;2;163;63.0;120;80;1;1;0;0;1;0
+5103;15953;2;173;96.0;130;100;1;1;1;1;0;1
+5104;23251;1;154;72.0;120;80;1;1;0;0;1;0
+5107;20588;1;160;59.0;110;70;2;2;0;1;0;0
+5109;22115;1;167;64.0;120;80;1;1;0;0;1;0
+5110;17013;2;170;64.0;130;90;1;1;0;0;1;1
+5111;16925;1;159;54.0;110;70;1;1;0;0;1;0
+5112;17538;1;153;60.0;150;90;1;1;0;0;1;1
+5113;19469;1;164;78.0;130;90;2;1;0;0;0;1
+5114;21980;2;156;80.0;140;80;1;1;0;0;1;1
+5115;15925;1;166;70.0;120;80;1;1;0;0;0;0
+5116;19011;1;172;76.0;100;70;1;1;0;0;1;0
+5117;22686;1;162;75.0;120;80;1;1;0;0;1;0
+5118;21050;1;162;73.0;130;80;1;3;0;0;1;1
+5120;21296;1;169;60.0;120;80;1;1;0;0;1;1
+5121;21165;2;167;98.0;150;80;1;1;0;0;1;1
+5123;20981;1;157;94.0;160;80;1;1;0;0;0;1
+5124;19846;2;170;85.0;120;80;1;1;0;0;1;1
+5125;21837;1;160;80.0;140;75;1;2;0;0;1;0
+5126;21153;2;190;105.0;120;80;1;1;0;0;1;1
+5128;18456;1;156;72.0;120;80;1;1;0;0;1;0
+5130;21874;1;160;83.0;80;120;1;1;0;0;1;0
+5131;22048;1;163;56.0;130;80;1;1;0;0;1;0
+5132;18871;1;162;92.0;150;85;1;1;0;0;0;1
+5133;21129;1;166;84.0;170;100;1;1;0;0;1;1
+5135;22465;1;160;80.0;130;90;3;1;0;0;1;1
+5137;17475;1;162;95.0;120;80;1;1;0;0;1;1
+5140;21760;2;190;90.0;130;80;1;1;0;0;1;1
+5141;21776;1;160;78.0;110;70;3;2;0;0;1;1
+5143;19866;1;157;85.0;130;80;1;3;0;0;0;1
+5144;21952;1;165;68.0;150;90;1;1;0;0;0;1
+5145;21731;1;165;74.0;120;70;1;1;0;0;1;0
+5146;21183;1;170;80.0;120;80;1;1;0;0;0;1
+5147;19669;1;165;72.0;140;80;1;1;0;0;0;1
+5148;23462;1;158;91.0;160;100;1;1;0;0;1;1
+5149;19787;1;159;75.0;110;70;1;1;0;0;1;0
+5151;14587;1;161;71.0;120;80;1;1;0;0;0;0
+5152;20431;1;156;81.0;140;90;1;1;0;0;1;1
+5153;21238;1;158;90.0;140;90;1;3;0;0;1;1
+5154;19699;1;156;84.0;150;1100;1;1;0;0;1;1
+5155;16202;1;161;71.0;120;80;1;1;0;0;1;0
+5156;20551;1;167;81.0;150;90;1;1;0;0;1;1
+5158;18263;1;157;73.0;130;70;1;1;0;0;1;0
+5159;16664;2;172;64.0;120;80;1;1;0;0;1;0
+5160;17707;2;170;62.0;120;80;1;1;0;0;1;0
+5161;18997;2;183;90.0;120;70;3;3;0;0;1;0
+5164;22800;2;170;70.0;150;90;1;1;0;0;1;1
+5165;16571;2;175;74.0;140;90;1;1;0;0;1;1
+5166;21994;1;168;79.0;120;80;1;1;0;0;0;1
+5167;20506;1;156;84.0;120;80;1;1;0;0;0;1
+5168;17012;2;166;58.0;100;60;1;1;0;0;1;0
+5169;21668;2;173;80.0;150;90;1;1;0;1;1;1
+5170;17371;2;174;77.0;110;80;1;1;1;0;1;0
+5171;21923;1;160;61.0;140;90;1;1;0;0;0;1
+5173;14625;1;158;58.0;120;70;1;1;0;0;1;0
+5174;21899;1;153;70.0;120;90;3;3;0;0;1;1
+5176;19164;2;169;51.0;110;70;1;1;0;0;1;0
+5178;19696;2;155;52.0;120;80;2;2;0;0;1;1
+5179;20448;2;180;92.0;110;70;1;1;0;0;1;1
+5180;18336;1;168;138.0;120;80;2;1;0;0;1;1
+5181;18146;2;170;76.0;120;80;1;1;0;0;1;0
+5182;19821;1;153;67.0;120;80;1;1;0;0;1;0
+5183;22438;2;184;100.0;140;90;1;1;0;0;1;1
+5184;20283;1;160;50.0;110;60;1;3;0;0;1;0
+5186;21334;2;170;60.0;130;90;3;3;0;0;1;1
+5187;17339;1;160;96.0;160;90;3;3;0;0;1;0
+5189;16300;2;182;109.0;120;85;1;1;0;0;1;1
+5190;14461;2;170;77.0;120;80;1;1;0;0;1;0
+5191;21152;2;172;72.0;140;90;1;1;0;0;0;1
+5192;15294;2;170;65.0;110;60;1;1;0;0;0;0
+5193;20398;1;172;86.0;130;90;1;1;1;0;1;1
+5194;22501;1;157;83.0;120;80;3;3;0;0;1;1
+5195;22627;1;160;76.0;130;90;1;1;0;0;0;1
+5196;19713;1;157;79.0;118;79;1;1;0;0;0;0
+5197;18948;1;165;105.0;150;100;2;1;0;1;1;1
+5198;23271;1;150;67.0;160;90;1;1;0;0;1;1
+5199;18346;2;172;75.0;120;80;1;1;0;1;1;0
+5200;18244;2;167;70.0;100;80;1;1;1;0;1;0
+5203;21734;1;157;77.0;160;100;1;1;0;0;1;1
+5204;18233;2;165;61.0;120;80;1;1;0;0;0;0
+5206;17572;2;165;62.0;140;90;2;1;0;0;0;1
+5208;19079;1;154;52.0;14;90;1;1;0;0;1;1
+5210;19702;1;160;58.0;120;80;1;1;0;0;1;0
+5211;22497;1;156;81.0;150;100;1;1;0;0;1;1
+5212;22427;2;161;51.0;120;80;1;1;0;0;1;0
+5213;18108;1;165;70.0;120;80;1;1;0;0;1;0
+5214;18256;1;155;64.0;120;80;1;1;0;0;1;0
+5215;19671;2;170;65.0;120;80;1;1;1;1;0;0
+5216;14607;2;179;79.0;100;70;1;1;1;0;1;0
+5218;19863;2;176;83.0;120;80;1;1;0;0;1;0
+5219;21899;2;167;59.0;120;80;1;1;0;0;1;1
+5220;21225;2;174;87.0;120;80;1;1;0;0;1;1
+5221;17561;2;168;85.0;130;80;1;3;0;0;1;1
+5224;20640;2;160;78.0;120;80;3;3;0;0;1;1
+5225;19649;1;168;68.0;120;80;1;1;0;0;0;1
+5228;20713;1;170;85.0;140;90;2;1;0;0;1;1
+5229;21872;1;158;74.0;120;80;1;1;0;0;1;0
+5230;23387;1;163;70.0;120;80;1;1;0;0;0;1
+5231;22053;2;174;88.0;120;80;1;1;1;1;1;0
+5232;20320;1;170;58.0;120;70;1;1;0;0;1;0
+5233;20995;2;169;79.0;135;90;3;3;0;0;1;1
+5235;18964;1;170;70.0;120;80;1;1;0;0;1;1
+5236;19729;1;164;72.0;180;100;1;1;0;0;0;1
+5237;18857;1;162;54.0;120;80;1;1;0;0;1;0
+5238;16689;2;176;69.0;110;70;1;1;1;0;0;1
+5239;16299;2;171;84.0;140;90;2;1;0;0;1;1
+5240;22659;2;170;73.0;110;80;1;1;0;0;1;0
+5242;19670;2;164;64.0;160;90;2;1;0;0;1;0
+5243;22026;1;162;105.0;140;90;1;3;0;0;1;1
+5244;20290;1;161;78.0;120;80;3;1;0;0;1;0
+5245;21024;1;166;61.0;130;90;1;1;0;0;1;1
+5247;20439;2;170;69.0;130;80;1;1;0;0;1;1
+5248;19001;1;167;82.3;120;80;3;3;0;0;1;1
+5249;15459;1;153;60.0;110;60;1;1;0;0;1;0
+5250;21850;1;180;72.0;130;80;1;1;1;0;1;1
+5251;21088;2;173;59.0;90;70;1;1;1;0;1;0
+5253;14753;2;165;65.0;120;80;1;1;0;0;1;0
+5254;21696;2;170;71.0;130;80;1;1;0;0;1;0
+5255;15142;1;160;75.0;110;80;1;1;0;0;0;0
+5259;16001;2;174;80.0;140;80;1;1;0;1;1;1
+5260;18253;1;158;56.0;100;70;1;1;0;0;0;0
+5261;17472;2;177;83.0;133;115;2;1;0;0;1;1
+5263;20422;2;168;74.0;120;80;1;1;0;0;1;0
+5264;20558;1;162;65.0;120;80;1;1;0;0;1;1
+5265;15295;2;171;68.0;120;80;1;1;0;0;1;0
+5267;17365;2;172;75.0;110;80;1;1;0;0;0;0
+5268;20470;1;168;65.0;140;80;1;1;0;0;1;1
+5269;22737;2;172;94.0;110;70;2;1;0;1;1;1
+5270;16261;1;168;72.0;110;70;1;1;0;0;1;0
+5272;18973;1;161;74.0;150;100;2;1;1;0;1;1
+5273;19914;1;163;104.0;160;90;1;1;0;0;0;1
+5275;21252;1;159;82.0;110;80;1;1;0;0;1;0
+5277;22031;1;159;71.0;160;100;1;1;0;0;1;1
+5278;17642;1;120;70.0;120;70;1;1;0;0;1;0
+5280;16821;1;167;63.0;110;70;1;1;0;0;1;0
+5281;16591;1;153;78.0;140;90;2;1;0;0;1;1
+5282;14640;1;165;77.0;100;80;1;1;0;0;1;0
+5285;22440;2;172;64.0;140;80;3;1;1;1;1;1
+5289;19005;2;174;65.0;130;80;1;1;0;0;1;0
+5290;16157;2;162;72.0;140;90;1;1;1;0;1;1
+5291;19790;2;174;74.0;120;80;1;1;0;0;1;1
+5292;20592;1;170;66.0;120;80;1;1;0;0;1;0
+5293;21783;1;160;90.0;140;90;1;1;0;0;1;1
+5295;17290;2;176;89.0;120;80;2;2;1;1;1;0
+5296;21904;1;155;82.0;120;85;1;1;0;0;1;1
+5297;18487;1;167;69.0;120;80;1;1;0;0;1;0
+5298;19620;2;163;63.0;150;80;3;3;0;0;1;0
+5301;18280;1;158;43.0;120;80;1;1;0;0;1;0
+5302;18050;2;176;77.0;120;80;1;2;0;0;1;0
+5304;21209;1;159;65.0;140;90;2;1;0;0;1;1
+5306;15400;1;120;30.0;110;70;1;1;0;0;1;0
+5307;23389;1;166;59.0;150;1000;1;1;0;0;1;1
+5308;14400;1;153;70.0;120;70;1;1;0;0;1;0
+5309;22697;1;152;72.0;180;80;2;2;0;0;1;1
+5310;21921;1;155;64.0;120;80;1;1;0;0;1;1
+5311;21140;1;172;66.0;140;80;1;1;0;0;1;1
+5312;17679;1;175;73.0;145;100;1;1;0;0;0;0
+5313;19037;1;164;65.0;130;80;3;1;0;0;0;1
+5314;22055;1;165;60.0;120;80;1;1;0;0;1;1
+5316;19025;2;174;89.0;130;90;1;1;0;0;1;1
+5317;18764;1;159;66.0;120;80;1;1;0;0;1;1
+5318;15906;2;169;78.0;140;100;1;1;1;0;1;1
+5319;18167;1;167;95.0;120;80;1;1;0;1;1;0
+5320;16914;2;160;61.0;140;100;1;1;0;0;1;1
+5321;21194;2;167;68.0;120;80;1;1;1;0;1;1
+5322;20191;2;176;83.0;150;100;1;1;0;0;1;1
+5323;19482;1;157;67.9;120;80;2;2;0;0;0;0
+5324;17502;1;168;64.0;140;90;1;3;0;0;1;1
+5325;20228;1;164;90.0;120;80;1;1;0;0;1;0
+5327;15082;2;166;69.0;130;80;1;1;0;0;1;0
+5328;22674;2;160;62.0;120;80;1;1;0;0;1;0
+5329;16824;2;167;96.0;110;70;1;3;0;1;1;0
+5331;18775;1;155;60.0;120;80;1;1;0;0;1;0
+5332;18823;1;169;81.0;100;60;1;1;0;0;0;0
+5333;23329;2;172;90.0;200;100;2;2;0;0;0;0
+5334;23416;1;155;67.0;140;70;1;1;0;0;1;1
+5335;16963;1;156;61.0;90;70;1;1;0;0;1;0
+5336;22499;2;171;70.0;130;90;2;1;1;0;1;0
+5339;19675;1;159;56.0;120;80;2;2;0;0;1;0
+5340;20995;1;164;75.0;130;100;3;3;0;0;1;0
+5341;21924;1;161;84.0;130;80;1;1;0;0;0;1
+5342;20394;2;168;63.0;120;80;1;1;0;0;1;0
+5343;19741;2;168;79.0;140;100;2;3;0;0;1;0
+5345;22768;1;156;75.0;120;80;1;1;0;0;0;0
+5348;19053;1;164;72.0;110;70;1;1;0;0;1;0
+5352;21626;1;167;88.0;130;68;1;1;0;0;1;0
+5356;17563;1;169;73.0;120;80;1;1;0;0;0;0
+5360;22667;1;168;62.0;110;70;3;3;0;0;1;1
+5361;17386;1;171;90.0;140;80;2;1;0;0;1;1
+5363;16040;2;168;61.0;100;60;1;1;0;0;1;0
+5364;21069;2;166;69.0;120;80;3;3;1;0;0;1
+5365;21234;1;155;95.0;140;80;1;1;0;0;0;0
+5367;18132;2;171;98.0;140;100;1;1;0;0;0;1
+5368;17716;1;168;65.0;140;80;1;1;0;0;0;1
+5371;18197;1;150;53.0;120;80;1;1;0;0;1;0
+5372;18404;1;160;74.0;140;90;3;3;0;0;1;1
+5374;21885;1;156;60.0;160;90;3;1;0;0;0;1
+5378;23434;1;150;61.0;150;61;1;3;0;0;1;1
+5379;20483;2;166;74.0;160;90;2;1;0;0;1;1
+5380;19678;1;160;75.0;130;80;1;1;0;0;1;0
+5382;19634;2;169;96.0;120;80;2;1;1;0;0;0
+5384;23500;1;145;54.0;160;100;1;1;0;0;1;1
+5387;18233;1;170;70.0;120;80;1;3;0;0;1;0
+5390;21858;1;156;109.0;120;80;1;1;0;0;1;1
+5391;20336;1;165;106.0;160;100;1;1;0;0;0;1
+5393;14352;1;166;55.0;120;80;1;1;0;0;1;1
+5394;16558;1;153;70.0;170;80;2;1;0;0;0;0
+5396;18928;2;168;70.0;110;80;1;1;0;0;1;0
+5397;14539;1;164;60.0;90;70;1;1;0;0;1;0
+5398;20317;1;158;62.0;120;80;1;1;0;0;1;0
+5399;19878;1;165;102.0;140;90;2;1;0;0;1;1
+5400;19626;1;151;72.0;200;110;1;1;0;0;1;1
+5401;19873;2;184;85.0;120;80;1;1;0;0;0;1
+5402;17511;1;172;87.0;140;90;2;1;0;0;1;1
+5403;17271;2;180;89.0;150;100;1;1;0;0;1;0
+5404;15903;1;150;45.0;120;80;1;1;0;0;1;0
+5406;15090;1;150;69.0;120;80;1;2;0;0;1;0
+5408;21684;1;155;78.0;140;90;1;1;0;0;1;1
+5409;17994;1;160;69.0;110;70;1;1;0;0;1;0
+5410;23327;1;158;60.0;120;70;1;2;0;0;1;1
+5411;23388;1;153;64.0;120;80;3;1;0;0;0;1
+5412;21177;1;152;127.0;150;100;3;3;0;0;1;0
+5413;22484;1;165;75.0;155;90;1;1;0;0;1;1
+5414;18358;2;169;63.0;130;90;1;1;1;1;1;0
+5416;14549;2;163;80.0;120;80;1;1;0;0;1;0
+5417;18126;1;160;74.0;110;80;1;1;0;0;1;0
+5419;15189;2;172;82.0;110;80;1;1;0;0;1;1
+5421;21673;1;167;66.0;120;70;1;1;0;0;1;0
+5422;16734;1;151;58.0;120;80;1;1;0;0;1;0
+5423;21827;2;180;98.0;190;110;3;2;0;0;1;1
+5425;19856;1;170;78.0;120;80;2;1;0;0;1;1
+5426;16161;1;158;63.0;120;80;1;1;0;0;1;0
+5428;19644;2;173;58.0;80;60;1;1;1;0;1;0
+5430;16703;1;169;93.0;120;80;1;1;0;0;1;0
+5431;18981;1;173;115.0;130;90;1;1;0;0;1;1
+5432;15825;2;175;88.0;130;100;1;1;0;0;1;1
+5433;20260;1;155;55.0;100;80;2;1;0;0;1;1
+5436;16012;1;144;53.0;90;60;1;1;0;0;1;0
+5437;19850;2;168;75.0;120;80;1;1;0;0;1;1
+5439;16529;1;165;81.0;120;80;1;2;0;0;1;1
+5441;23314;2;169;78.0;130;80;1;1;0;0;1;1
+5442;20403;1;152;59.0;110;70;1;1;0;0;0;0
+5445;18877;1;170;73.0;150;90;1;1;1;0;1;1
+5446;16846;1;167;69.0;120;80;1;1;0;0;1;0
+5448;21206;2;170;76.0;12;80;1;3;0;0;0;0
+5449;16847;2;176;97.0;140;90;2;1;1;1;1;1
+5450;18282;2;170;70.0;140;90;2;1;0;0;1;1
+5451;22472;1;161;100.0;150;80;2;1;0;0;1;1
+5452;14568;1;151;50.0;100;90;2;1;0;0;0;1
+5453;20635;1;168;64.0;120;80;1;1;0;0;0;1
+5454;20201;1;158;95.0;140;90;3;1;0;0;0;1
+5456;17404;1;164;69.0;130;80;1;1;0;0;1;0
+5457;20552;1;179;70.0;130;80;1;1;0;0;1;1
+5459;19028;1;164;63.0;110;70;2;1;1;0;1;1
+5460;23095;1;156;68.0;142;77;1;1;0;0;0;0
+5461;22583;1;165;63.0;130;90;1;1;0;0;1;0
+5462;20927;2;160;49.0;80;60;1;1;1;0;0;0
+5464;22339;2;159;66.0;120;80;1;1;0;0;1;0
+5465;17337;2;171;79.0;150;100;1;1;0;0;1;1
+5466;19521;2;171;65.0;120;80;1;1;0;0;0;0
+5467;18253;2;169;84.0;110;70;1;1;0;0;1;1
+5469;19916;2;165;67.0;120;80;1;1;0;0;1;0
+5470;18952;1;153;70.0;100;70;1;1;0;0;1;0
+5471;22566;2;158;68.0;120;80;1;1;1;0;1;1
+5472;19109;2;167;63.0;140;90;1;1;0;0;1;1
+5473;22677;1;168;70.0;120;80;3;1;0;0;0;0
+5475;17436;2;169;61.0;140;80;1;1;1;0;1;1
+5476;14707;1;160;78.0;160;1100;1;1;0;0;1;1
+5477;15083;1;162;58.0;110;70;1;1;0;0;1;1
+5478;21250;1;162;70.0;120;80;1;1;0;0;0;0
+5479;17238;1;158;80.0;140;90;1;1;0;0;0;1
+5481;20321;1;164;73.0;140;80;3;1;0;0;1;1
+5482;20423;2;172;70.0;130;90;3;1;0;0;1;1
+5483;15329;1;167;68.0;140;100;2;1;0;0;1;1
+5485;20179;1;160;70.0;120;80;1;1;0;0;1;1
+5486;20930;1;161;85.0;120;90;1;1;0;0;1;1
+5487;20589;1;165;77.0;100;60;1;2;0;0;0;0
+5488;21050;1;156;79.0;172;106;1;1;0;0;0;0
+5490;23110;1;160;60.0;120;80;1;1;0;0;0;1
+5491;19823;1;154;52.0;120;80;1;1;0;0;0;0
+5492;18735;2;174;101.0;160;80;1;1;1;1;1;0
+5493;21290;2;156;72.0;110;70;1;1;1;0;1;0
+5494;15983;1;160;78.0;120;70;1;1;0;0;1;0
+5495;19951;1;174;78.0;140;90;1;1;0;0;1;0
+5501;22542;1;156;64.0;140;90;3;3;0;0;1;1
+5502;22643;1;178;85.0;140;90;1;1;0;0;1;1
+5504;19549;1;158;48.0;140;80;3;1;0;0;1;1
+5505;19019;1;164;85.0;120;80;3;1;0;0;1;0
+5506;23449;1;150;60.0;150;100;1;1;0;0;0;1
+5507;21224;1;170;65.0;130;90;1;1;0;0;0;1
+5508;20504;1;153;69.0;140;80;1;1;0;0;1;1
+5509;16096;2;171;87.0;130;90;1;1;0;0;1;0
+5510;14870;1;159;67.0;100;60;2;1;0;0;1;0
+5511;19602;1;160;80.0;140;90;1;1;0;0;1;0
+5512;21764;1;154;109.0;120;60;2;2;0;0;1;1
+5513;23411;2;169;67.0;110;70;1;1;1;0;0;0
+5514;17722;1;160;54.0;120;80;1;1;0;0;1;0
+5515;21891;1;165;75.0;150;80;1;1;0;1;1;1
+5516;21184;1;152;70.0;160;100;2;1;0;0;1;1
+5519;23304;1;169;94.0;150;90;1;1;0;0;0;1
+5520;14440;2;170;95.0;140;100;1;1;0;0;1;1
+5521;14500;2;172;108.0;130;90;3;1;0;0;1;1
+5522;15473;2;169;65.0;120;80;1;1;0;0;1;0
+5523;20991;1;162;72.0;12;80;1;3;0;0;1;0
+5524;22096;2;168;75.0;120;80;1;1;0;0;1;1
+5527;16700;2;187;99.0;110;90;3;1;0;0;1;1
+5528;16653;1;164;82.0;130;80;1;1;0;0;1;1
+5529;18844;2;165;68.0;150;100;2;1;0;0;1;1
+5530;15310;2;168;68.0;110;70;1;1;0;0;1;0
+5531;23065;2;165;51.0;140;90;3;1;0;0;1;1
+5533;19111;1;172;75.0;120;80;1;1;0;0;1;0
+5534;21134;1;170;70.0;120;80;1;1;0;0;1;0
+5536;18928;1;175;72.0;160;100;1;1;0;0;1;1
+5537;19889;1;161;74.0;130;90;1;2;0;0;1;1
+5538;18323;1;159;64.0;120;80;1;1;0;0;1;0
+5539;20391;2;165;78.0;120;80;1;1;1;1;1;1
+5541;19706;2;175;70.0;130;80;1;1;0;1;0;1
+5542;19757;2;166;76.0;140;80;1;1;0;0;1;1
+5543;14752;2;172;71.0;120;80;1;1;1;1;1;0
+5545;19252;2;170;70.0;140;80;1;1;0;0;0;0
+5546;15300;2;165;70.0;120;80;1;1;0;0;0;0
+5548;21399;1;156;62.0;120;70;1;1;0;0;1;0
+5549;14696;1;164;61.0;100;69;1;1;0;0;1;0
+5551;14522;1;169;76.0;120;90;1;1;0;0;0;0
+5552;16074;1;160;63.0;110;70;1;1;0;0;1;0
+5553;22657;1;152;92.0;110;70;3;1;0;0;1;1
+5554;22848;2;160;57.0;110;70;1;1;0;0;1;1
+5555;16803;1;160;57.0;120;80;1;1;1;0;1;0
+5556;19057;1;162;53.0;120;80;1;1;0;0;1;0
+5557;19025;2;160;70.0;120;80;2;1;1;0;0;1
+5558;18345;1;160;60.0;120;80;1;1;0;0;1;1
+5560;16826;1;153;73.0;122;85;2;1;0;0;1;0
+5562;20463;1;163;78.0;120;80;1;1;0;0;0;0
+5563;18353;1;154;68.0;110;80;1;1;0;0;1;0
+5564;19020;2;180;95.0;110;80;3;1;0;0;1;0
+5565;21936;1;157;62.0;140;100;1;1;0;0;0;1
+5566;21089;2;165;72.0;120;80;1;1;0;0;1;0
+5567;18193;1;158;56.0;140;90;1;1;0;0;1;0
+5569;21326;1;158;71.0;120;80;1;1;0;0;1;0
+5572;16922;1;169;80.0;130;90;1;1;0;0;1;1
+5573;20518;1;160;75.0;140;90;3;1;0;0;1;1
+5574;18967;1;169;70.0;120;80;1;1;0;0;1;1
+5576;19101;1;162;70.0;140;80;1;2;0;0;1;1
+5581;14518;1;164;78.0;131;59;1;1;0;1;1;0
+5583;22712;2;158;98.0;140;90;3;3;0;0;1;0
+5584;20619;1;159;67.0;150;100;2;2;0;0;0;1
+5586;14822;2;155;53.0;120;79;1;1;0;0;0;0
+5588;16697;1;160;62.0;12;80;1;1;0;0;1;0
+5592;18931;1;158;79.0;100;60;1;1;0;0;0;0
+5593;16778;1;170;61.0;110;70;1;1;0;0;1;0
+5594;19161;1;164;80.0;140;90;2;1;0;0;1;1
+5595;20338;1;167;68.0;150;90;1;3;0;0;1;1
+5598;22783;1;169;69.0;120;80;1;1;0;0;1;0
+5599;16799;1;156;70.0;110;70;1;2;0;0;1;0
+5600;21913;2;167;67.0;120;90;1;1;0;0;0;1
+5601;20471;2;170;90.0;130;79;3;3;0;0;1;1
+5602;21269;1;155;52.0;120;80;1;1;0;0;1;1
+5606;19749;1;166;86.0;150;100;2;1;0;0;1;1
+5609;18526;2;179;89.0;130;90;1;1;0;0;1;0
+5610;20557;1;158;88.0;150;80;2;1;0;0;1;1
+5611;16093;1;166;68.0;140;90;1;1;0;0;1;1
+5612;19825;1;166;70.0;120;80;1;1;0;0;1;1
+5614;17981;2;170;93.0;130;80;1;1;0;0;1;1
+5615;23158;1;175;76.0;140;90;3;1;0;0;1;0
+5617;21134;1;168;60.0;120;80;1;1;0;0;0;0
+5618;23148;1;164;94.0;160;90;3;3;0;0;1;1
+5620;21411;1;157;107.0;140;80;1;1;0;0;0;1
+5622;23402;1;155;69.0;120;80;3;1;0;0;1;1
+5623;23360;1;162;68.0;150;80;2;3;0;0;1;0
+5624;19822;1;159;68.0;140;80;1;1;0;0;1;1
+5625;22775;2;169;68.0;110;70;1;1;0;0;0;0
+5629;16059;2;170;62.0;120;80;1;1;1;0;1;0
+5631;19578;2;169;78.0;140;90;1;1;0;0;1;0
+5632;18267;1;164;86.0;160;100;1;1;0;0;1;1
+5634;23253;1;155;53.0;125;80;2;1;0;0;1;1
+5635;21911;1;168;69.0;120;80;1;1;0;0;1;0
+5636;20310;1;150;69.0;150;100;2;1;0;0;1;1
+5637;20445;1;165;69.0;90;60;1;1;0;0;1;1
+5639;17756;1;163;69.0;120;80;1;1;0;0;0;1
+5640;16224;2;171;75.0;140;90;1;1;0;0;1;1
+5642;23217;1;152;81.0;180;90;1;1;0;0;1;1
+5643;20692;1;161;83.0;130;90;2;1;0;0;1;1
+5644;19657;1;158;66.0;110;80;1;1;0;0;0;1
+5645;23251;1;155;76.0;130;80;1;3;0;0;1;0
+5647;20359;2;175;92.0;140;1000;1;1;0;0;1;1
+5648;21339;2;173;76.0;110;70;1;1;0;0;1;0
+5649;17473;2;162;64.0;130;90;1;1;0;0;0;0
+5650;18755;2;178;96.0;140;80;1;1;1;0;0;1
+5651;22186;1;159;63.0;120;80;1;1;0;0;1;0
+5653;23417;1;160;59.0;110;80;1;1;0;0;0;0
+5654;19745;1;167;60.0;120;75;1;1;0;1;1;0
+5655;18138;1;157;69.0;160;90;1;1;0;0;1;1
+5656;15303;2;170;73.0;120;80;1;1;0;0;1;0
+5657;15385;2;176;90.0;120;90;2;1;0;0;1;1
+5658;19016;1;158;67.0;140;80;2;1;0;0;0;1
+5659;14510;2;162;72.0;120;90;1;1;0;1;1;0
+5661;15471;2;160;68.0;120;80;1;1;1;0;1;0
+5662;17247;1;167;76.0;120;80;1;1;0;0;1;0
+5664;14347;2;170;81.0;140;60;1;1;1;0;1;0
+5665;15887;1;170;72.0;120;80;2;2;1;0;1;1
+5666;21674;1;157;85.0;130;80;3;1;0;1;1;0
+5667;23465;2;178;72.0;130;80;1;1;0;1;1;0
+5668;21025;1;176;150.0;160;110;2;1;0;0;0;0
+5670;21892;1;166;56.0;160;90;1;1;0;0;1;0
+5671;15377;1;170;69.0;110;70;1;1;0;0;1;0
+5672;20598;2;160;78.0;110;70;1;3;1;1;1;0
+5673;18853;1;161;89.0;120;80;1;1;0;0;0;0
+5674;19483;1;169;75.0;120;80;1;1;0;0;1;0
+5675;22754;2;165;65.0;140;60;1;1;0;0;1;0
+5676;21990;1;168;74.0;120;80;1;1;0;0;1;0
+5679;15332;1;147;56.0;110;70;1;1;0;0;1;0
+5680;23340;1;166;82.0;160;100;2;2;0;0;0;1
+5681;15796;1;168;74.0;110;70;1;1;0;0;1;0
+5682;21772;2;170;67.0;110;80;1;1;1;0;1;0
+5683;21054;2;176;80.0;120;80;1;1;0;0;1;0
+5684;15984;2;168;79.0;120;80;1;1;0;0;0;0
+5686;19060;1;153;68.0;120;80;1;1;0;0;0;0
+5687;18878;1;154;63.0;120;80;1;1;0;0;1;1
+5690;16554;1;169;65.0;110;70;2;1;0;0;1;1
+5691;23499;1;168;79.0;120;80;1;1;0;0;1;0
+5694;19880;1;157;92.0;140;90;2;2;0;0;1;1
+5695;18982;1;156;103.0;160;110;1;1;0;0;0;1
+5696;17371;1;165;62.0;120;80;1;1;0;0;1;0
+5697;18161;2;172;73.0;150;90;1;1;0;0;1;1
+5698;16672;2;158;69.0;100;70;1;2;0;1;1;0
+5701;21130;1;156;82.0;110;80;3;1;0;0;1;1
+5702;20436;1;161;70.0;120;80;1;1;0;0;1;1
+5705;19395;1;167;77.0;120;80;1;1;0;0;0;1
+5706;22398;2;152;50.0;130;90;1;1;0;0;1;1
+5707;18253;1;165;82.0;110;80;1;1;0;0;1;0
+5708;19941;2;165;65.0;120;80;1;1;0;0;1;0
+5709;18919;2;168;67.0;120;70;1;1;0;0;0;1
+5711;19005;1;154;73.0;110;70;1;1;0;0;1;0
+5712;14485;1;156;84.0;150;90;1;1;0;0;1;1
+5715;19692;1;153;73.0;120;80;1;1;0;0;1;1
+5717;15947;2;176;85.0;200;120;2;1;1;0;1;0
+5718;20407;1;159;69.0;150;80;1;1;0;0;1;1
+5719;14472;1;156;57.0;110;70;1;1;0;0;0;0
+5720;18880;1;164;115.0;130;80;1;1;0;0;1;0
+5724;20303;2;168;67.0;120;80;1;1;0;0;1;0
+5725;16013;2;179;94.0;110;80;2;1;0;0;1;1
+5726;20515;1;157;82.0;140;80;1;1;0;0;1;1
+5727;22565;2;174;78.0;120;80;1;1;0;0;1;0
+5728;20952;1;159;57.0;90;60;1;2;0;0;1;0
+5729;18879;2;169;68.0;150;80;1;1;0;0;1;1
+5730;22559;1;167;64.0;120;80;1;1;0;0;1;1
+5732;23318;2;168;77.0;157;90;2;1;0;1;1;1
+5734;21361;2;168;65.0;120;80;1;1;0;0;1;1
+5735;15279;1;163;113.0;125;85;1;1;0;0;1;0
+5737;18359;1;157;73.0;90;60;1;1;0;0;1;0
+5739;15794;1;170;50.0;110;80;1;1;0;0;1;0
+5740;21062;1;158;96.0;120;80;1;1;0;0;1;1
+5742;18262;1;173;69.0;110;80;2;1;0;0;1;0
+5744;18820;1;172;75.0;120;80;1;1;0;0;0;0
+5745;18947;2;184;87.0;140;80;1;2;0;0;0;0
+5746;18274;1;166;49.0;100;70;1;1;0;0;0;0
+5747;20590;1;169;82.0;140;80;1;3;0;0;1;1
+5748;18855;2;168;98.0;120;80;1;1;0;0;1;0
+5749;18842;1;157;82.0;110;80;2;1;0;0;1;0
+5750;20410;1;160;64.0;120;80;1;1;0;0;0;1
+5751;16756;2;170;67.0;140;80;3;3;0;0;1;1
+5754;22561;1;168;130.0;180;100;2;2;0;0;1;1
+5755;15969;1;149;56.0;90;70;1;1;0;0;1;0
+5756;22660;1;156;74.0;120;80;1;1;0;0;1;1
+5759;21218;1;161;67.0;140;90;1;1;0;0;1;1
+5760;16791;2;173;86.0;120;70;1;1;0;0;1;1
+5761;16832;1;157;77.0;110;80;1;2;0;0;1;1
+5762;23328;2;170;93.0;140;90;2;1;0;1;1;1
+5764;22035;1;172;78.0;130;80;1;1;0;0;1;1
+5765;16070;2;172;66.0;120;80;3;3;0;0;1;1
+5766;18049;1;159;56.0;90;60;2;1;0;0;1;1
+5767;22657;1;165;65.0;120;90;1;1;0;0;1;0
+5768;15338;2;168;69.0;110;80;1;1;0;0;1;0
+5771;18363;1;170;125.0;160;100;1;1;0;0;1;1
+5774;20465;2;167;68.0;120;80;1;1;0;1;0;1
+5775;21961;1;168;70.0;120;90;1;1;0;0;1;1
+5776;15462;1;158;47.0;100;60;1;1;0;0;1;0
+5777;17485;1;160;85.0;120;80;2;1;0;0;0;1
+5778;21319;1;166;76.0;160;100;1;1;0;0;1;1
+5779;21730;1;153;53.0;120;80;1;1;0;0;0;1
+5781;21316;1;156;82.0;110;70;1;1;0;0;1;0
+5782;14424;1;170;80.0;140;100;1;1;0;0;1;1
+5783;17552;1;164;88.0;140;90;1;1;0;0;1;1
+5787;20160;2;176;83.0;130;80;1;1;0;0;1;1
+5789;15229;1;165;72.0;125;85;3;3;0;0;1;1
+5790;23441;1;176;69.0;140;80;3;1;0;0;1;1
+5791;17664;1;170;76.0;120;80;1;1;0;0;0;0
+5794;16512;2;172;62.0;120;70;1;1;1;0;1;0
+5795;21989;1;162;99.0;150;90;1;1;0;0;1;1
+5796;18209;2;170;72.0;136;102;3;1;0;1;1;1
+5797;19847;1;171;58.0;120;80;1;3;0;0;0;0
+5798;22125;2;165;60.0;120;80;1;1;0;0;0;0
+5799;19660;1;165;67.0;160;80;1;1;0;0;1;1
+5800;21393;1;165;72.0;120;80;1;1;0;0;1;0
+5801;21789;1;150;47.0;140;91;1;1;0;0;0;1
+5802;23564;1;164;65.0;120;80;1;1;0;0;1;0
+5805;21872;1;175;78.0;140;80;2;1;0;0;1;0
+5807;19749;2;183;85.0;180;110;2;1;1;0;1;1
+5808;15054;1;173;60.0;100;60;1;1;0;0;1;0
+5809;20578;2;176;80.0;160;80;1;1;1;1;1;1
+5812;19727;1;162;62.0;120;80;1;1;0;0;1;0
+5813;22048;1;170;86.0;120;80;1;1;0;0;1;0
+5814;19807;1;153;70.0;150;90;2;2;0;0;1;0
+5816;20530;2;167;77.0;140;90;1;1;0;0;1;1
+5817;21896;1;174;74.0;130;70;2;2;0;0;1;1
+5818;23297;1;168;80.0;120;80;1;1;0;0;1;0
+5819;22010;1;165;68.0;150;90;1;1;0;0;1;0
+5820;16896;2;168;68.0;120;80;1;2;0;0;1;1
+5821;16137;1;153;85.0;150;89;1;1;0;0;1;1
+5822;22515;2;163;64.0;120;80;1;1;0;0;0;0
+5823;21959;1;157;62.0;120;80;1;1;0;0;1;0
+5824;18348;1;169;68.0;120;80;2;1;0;0;0;1
+5825;14380;1;162;64.0;110;70;1;1;0;0;1;0
+5826;14429;2;166;70.0;110;70;1;1;0;0;0;0
+5827;18832;2;172;70.0;120;75;3;2;1;1;0;1
+5828;21217;2;166;72.0;150;100;1;1;0;0;1;1
+5830;19669;2;180;73.0;120;80;1;1;1;0;1;0
+5832;16716;1;164;64.0;120;80;1;1;0;0;0;0
+5834;21029;2;165;63.0;120;80;1;1;0;0;1;0
+5835;20302;1;162;52.0;120;80;1;1;0;0;1;0
+5836;23451;1;156;87.0;140;80;2;1;0;0;1;1
+5837;22118;1;145;54.0;120;80;1;1;0;0;1;1
+5838;15354;1;160;75.0;120;80;1;1;0;0;0;1
+5839;22666;2;178;78.0;130;70;1;1;1;0;1;1
+5841;19766;2;176;75.0;130;80;3;1;0;0;1;0
+5842;21942;1;158;102.0;120;80;2;1;0;0;1;1
+5843;21781;1;170;70.0;120;70;1;1;0;0;1;1
+5844;21863;1;155;75.0;140;70;1;1;0;0;1;1
+5846;23306;1;152;62.0;110;70;1;1;0;0;1;1
+5847;18137;2;175;76.0;120;80;3;3;1;0;1;0
+5848;23336;1;157;68.0;140;90;3;3;0;0;1;1
+5849;19037;2;179;76.0;120;80;1;1;0;0;0;0
+5850;15360;1;172;67.0;120;80;1;3;0;0;1;0
+5851;19241;1;166;85.0;160;70;1;1;0;0;1;1
+5852;23080;2;162;57.0;160;90;1;1;0;0;0;1
+5853;20322;2;176;84.0;150;100;1;2;0;0;0;1
+5854;15240;1;155;60.0;120;80;1;1;0;0;1;1
+5855;18780;2;173;71.0;120;80;1;1;0;0;1;0
+5857;19568;1;167;69.0;120;80;1;1;0;0;1;1
+5858;21955;2;169;73.0;130;90;1;1;0;0;1;0
+5859;22675;2;168;64.0;140;80;1;1;0;0;1;1
+5860;16796;2;170;74.0;120;70;1;1;0;0;1;0
+5861;23266;2;168;80.0;140;80;1;1;1;1;1;0
+5862;17458;1;164;79.0;140;90;1;1;0;0;0;1
+5863;14494;1;163;80.0;110;70;2;2;0;0;1;0
+5864;22523;1;158;73.0;130;80;1;1;0;0;1;0
+5865;22066;1;170;68.0;130;80;1;1;0;0;1;1
+5866;22089;1;161;85.0;120;80;1;1;0;0;1;0
+5867;21842;1;166;105.0;120;80;3;1;0;0;1;1
+5868;19160;2;176;109.0;190;100;1;1;0;0;1;1
+5869;21980;1;164;68.0;120;80;1;1;0;0;1;0
+5870;18972;1;161;66.0;160;100;1;3;0;1;1;1
+5871;19149;2;159;87.0;120;80;1;1;0;0;0;1
+5872;17588;2;171;82.0;120;80;2;1;1;1;1;1
+5873;14687;2;168;67.0;120;80;1;1;0;0;1;0
+5875;22596;1;150;53.0;110;70;2;2;0;0;0;1
+5876;19671;2;171;87.0;150;1000;1;1;0;0;1;1
+5877;19470;1;163;68.0;130;90;1;1;0;0;0;1
+5878;20297;2;166;92.0;140;90;1;1;0;0;1;1
+5879;23202;1;165;88.0;130;90;3;3;0;0;0;1
+5880;20442;1;153;69.0;120;70;2;1;0;0;0;0
+5882;22692;1;153;70.0;130;80;2;1;0;0;1;1
+5884;20561;2;172;76.0;120;80;1;1;0;0;1;1
+5885;16580;2;162;76.0;140;1100;1;1;0;0;0;0
+5887;22135;2;169;75.0;160;100;1;1;0;0;1;1
+5889;18354;2;169;61.0;120;80;1;1;0;1;1;1
+5890;19198;1;155;82.0;130;80;1;3;0;0;1;0
+5891;18820;2;177;87.0;110;80;1;1;0;0;1;1
+5892;17574;2;171;95.0;120;80;1;1;0;0;1;0
+5893;19668;1;162;80.0;130;80;3;3;0;0;1;1
+5894;16918;1;174;93.0;170;90;1;1;0;0;0;1
+5895;17415;1;160;100.0;120;80;2;1;0;0;1;1
+5897;23279;1;169;65.0;120;80;1;1;0;0;1;0
+5898;15320;2;160;78.0;160;90;1;1;1;1;1;1
+5899;22031;2;174;89.0;110;70;1;1;0;0;1;0
+5900;21232;2;164;76.0;120;80;1;1;0;0;1;0
+5901;15115;1;170;66.0;160;1100;3;1;0;0;1;1
+5902;18964;2;170;80.0;120;80;1;1;0;0;1;0
+5903;14576;2;175;72.0;110;80;1;1;0;0;1;0
+5904;18271;2;170;65.0;100;60;1;1;0;0;1;0
+5905;18178;1;153;83.0;100;70;1;1;0;1;0;0
+5906;17469;2;165;63.0;120;80;1;1;0;0;1;0
+5907;23130;2;152;56.0;130;90;1;1;0;0;1;1
+5908;22025;1;167;74.0;120;80;1;1;0;0;0;0
+5910;16594;2;162;56.0;100;70;1;1;0;0;1;0
+5911;14458;2;171;111.0;130;90;1;1;0;0;0;1
+5912;19849;1;163;71.0;120;80;1;1;0;0;1;0
+5913;19696;1;169;68.0;100;70;1;1;0;0;1;0
+5914;16585;2;174;85.0;120;80;1;1;0;0;1;0
+5915;15060;1;160;65.0;130;80;3;2;0;0;1;1
+5917;17519;2;179;74.0;110;70;1;1;0;0;1;0
+5918;19673;1;160;93.0;140;80;1;1;0;0;1;1
+5919;17668;2;164;59.0;100;80;1;1;0;0;0;0
+5920;18912;2;172;88.0;160;90;1;1;0;0;1;1
+5921;21074;1;155;72.0;120;80;2;1;0;0;1;0
+5922;21874;1;164;80.0;130;80;1;1;0;0;1;0
+5923;23448;1;165;80.0;120;90;1;1;0;0;1;0
+5924;23413;1;174;75.0;120;80;1;1;0;0;0;0
+5926;21874;1;165;80.0;120;80;1;1;0;0;1;1
+5927;15908;1;158;68.0;140;80;2;1;0;0;1;1
+5928;19796;2;175;78.0;130;80;1;1;0;0;1;0
+5929;18370;1;169;71.0;160;100;1;2;0;0;0;1
+5930;18235;1;165;74.0;110;70;3;1;0;0;1;1
+5933;20327;2;172;88.0;120;80;1;1;0;0;1;0
+5934;22501;1;162;70.0;150;100;1;1;0;0;1;0
+5937;21118;1;165;65.0;120;79;2;2;0;0;0;0
+5938;18314;1;166;71.0;120;80;1;1;0;0;1;0
+5939;17481;1;168;65.0;140;90;1;1;0;0;0;1
+5941;19777;1;156;58.0;90;60;1;1;0;0;1;0
+5942;17968;2;178;73.0;130;90;1;1;0;0;1;0
+5946;16110;1;120;80.0;120;80;1;1;0;0;1;0
+5947;22713;2;175;73.0;146;89;2;2;0;0;1;1
+5948;23554;2;168;64.0;160;90;1;1;0;0;1;0
+5949;21054;1;158;94.0;150;100;1;1;1;0;1;0
+5950;19063;2;175;94.0;170;110;3;3;1;0;0;1
+5952;21862;2;168;71.0;120;80;1;1;0;1;1;0
+5953;15174;2;167;70.0;100;80;1;1;0;0;1;0
+5955;17339;1;164;102.0;120;80;2;1;0;0;1;1
+5956;22729;1;153;55.0;110;70;2;1;0;0;1;1
+5958;19857;2;154;62.0;120;80;1;1;0;0;1;0
+5959;23222;1;147;59.0;110;70;1;1;0;0;1;0
+5960;20196;1;164;55.0;110;70;1;1;0;0;1;0
+5962;20687;1;158;69.0;140;80;1;1;0;0;1;1
+5964;18940;1;169;65.0;150;100;1;1;0;0;0;1
+5966;23104;1;158;74.0;140;90;3;3;0;0;1;1
+5967;20318;1;165;65.0;120;80;1;1;0;0;1;0
+5968;21991;1;161;89.0;120;80;3;3;0;0;1;0
+5970;16055;2;160;65.0;120;80;1;1;1;0;1;0
+5972;21936;1;156;87.0;110;70;3;1;0;0;1;1
+5973;14527;2;176;78.0;120;80;1;1;1;1;1;0
+5976;15329;1;171;65.0;110;70;1;1;0;0;1;0
+5977;19603;2;175;97.0;160;100;2;1;0;0;1;1
+5978;20294;2;158;63.0;120;80;1;1;0;0;1;0
+5980;15325;2;174;82.0;120;80;2;1;0;1;1;0
+5981;17999;2;178;103.0;120;80;2;1;0;1;1;0
+5982;19566;2;179;94.0;130;80;2;1;0;0;1;1
+5983;21191;1;170;63.0;120;80;1;1;0;0;1;0
+5985;18529;1;163;75.0;130;90;1;1;0;0;1;1
+5986;14786;2;175;95.0;130;70;1;1;0;0;0;1
+5987;18446;1;155;69.0;110;70;1;2;0;0;1;0
+5988;21022;1;163;68.0;160;100;2;2;0;0;1;1
+5990;14473;1;162;88.0;120;80;1;1;0;0;1;0
+5991;23341;2;178;100.0;130;100;2;3;0;0;1;1
+5992;21688;2;163;63.0;140;80;1;1;0;0;0;1
+5993;16027;2;177;122.0;140;90;1;1;1;0;0;1
+5995;18251;2;170;58.0;110;80;1;1;0;0;1;0
+5996;22831;1;156;78.0;140;90;3;3;0;0;1;1
+5997;14399;1;163;62.0;120;80;1;3;0;0;1;0
+5998;18699;1;155;55.0;120;80;1;1;0;0;1;1
+6000;14405;1;160;74.0;100;60;1;1;0;0;1;0
+6002;17499;2;178;104.0;120;80;1;1;0;0;1;0
+6003;22372;1;160;73.0;140;120;1;1;0;0;1;0
+6005;22638;2;175;95.0;140;80;1;1;0;0;1;1
+6008;14695;2;185;80.0;120;80;1;1;0;0;1;0
+6009;17536;2;167;80.0;120;90;1;1;0;0;1;0
+6010;21873;1;156;66.0;140;90;1;1;0;0;1;1
+6011;20589;1;167;62.0;120;80;1;1;0;1;1;1
+6012;18213;2;168;80.0;140;90;1;1;1;1;1;1
+6013;22486;2;156;62.0;140;90;3;1;1;1;1;1
+6014;15340;1;168;66.0;120;65;1;1;0;0;0;1
+6015;20394;1;170;79.0;120;80;1;1;0;0;1;0
+6016;21703;2;171;75.0;130;80;3;1;0;0;1;1
+6017;20580;1;170;90.0;150;90;2;1;0;0;1;1
+6019;18953;2;170;70.0;141;94;2;2;1;0;1;1
+6020;17421;2;167;71.0;120;80;1;1;1;1;1;0
+6021;20512;2;166;73.0;140;90;1;1;0;0;1;1
+6022;22034;1;162;68.0;130;80;1;1;0;0;1;0
+6024;22498;1;159;53.0;120;80;1;1;0;0;1;1
+6027;16739;2;160;52.0;120;80;1;1;0;1;1;0
+6028;19689;1;172;82.0;140;80;2;2;0;0;0;0
+6030;18315;1;162;64.0;130;80;1;1;0;0;0;1
+6031;18150;1;164;82.0;160;80;1;1;0;0;1;1
+6032;17533;1;164;63.0;130;80;1;3;0;0;1;1
+6033;15797;1;169;63.0;120;60;1;1;0;0;1;0
+6034;17518;1;165;96.0;110;60;1;2;0;0;1;1
+6035;18232;2;180;80.0;120;90;1;1;0;0;0;0
+6036;18764;2;168;86.0;130;80;1;1;1;0;1;0
+6037;19208;1;163;75.0;120;80;1;1;0;0;1;1
+6038;23417;1;163;89.0;11;70;1;1;0;0;1;0
+6039;15804;1;147;53.0;140;90;1;1;0;0;0;0
+6040;20374;1;155;56.0;150;1000;1;1;0;0;1;1
+6041;23261;1;150;85.0;140;80;1;1;0;0;1;1
+6042;18127;2;170;75.0;100;60;1;1;0;0;1;0
+6043;19863;2;170;67.5;130;80;1;1;0;0;0;0
+6045;18085;2;178;51.0;110;70;1;1;0;0;1;0
+6048;20708;1;155;54.0;110;60;1;1;0;0;0;1
+6049;21882;1;160;62.0;120;80;1;2;1;0;1;0
+6050;23331;1;164;96.0;140;90;2;1;0;0;1;1
+6051;21373;1;163;93.0;160;90;1;1;0;0;1;1
+6052;22551;2;160;95.0;140;80;3;1;0;0;1;0
+6053;16662;1;172;76.0;110;70;1;1;0;0;1;0
+6054;21785;2;167;77.0;120;100;2;1;0;0;0;1
+6059;19792;2;165;85.0;120;80;1;2;0;0;1;0
+6060;23670;1;169;75.0;120;80;1;1;0;0;1;0
+6062;16771;2;165;76.0;130;80;2;1;1;0;0;0
+6064;15991;1;168;75.0;120;80;1;1;0;0;1;0
+6065;16644;2;159;49.0;120;80;1;1;0;0;0;0
+6066;19658;1;174;106.0;138;90;1;1;0;0;0;0
+6067;22535;1;158;72.0;160;100;1;1;0;0;1;1
+6068;15795;1;148;83.0;140;100;1;1;0;0;1;1
+6069;18443;2;170;80.0;120;80;1;1;0;0;1;0
+6070;22166;1;175;75.0;120;80;1;1;0;0;0;1
+6071;14534;1;170;67.0;140;90;1;1;0;0;1;1
+6073;21782;2;174;73.0;120;70;1;1;0;0;1;0
+6075;19074;2;159;60.0;130;80;1;1;0;0;1;0
+6077;23404;2;170;92.0;130;80;3;2;0;0;1;1
+6079;20285;1;160;91.0;120;80;3;3;0;0;1;1
+6080;14723;1;170;60.0;120;80;1;1;0;0;0;0
+6082;22625;2;172;73.0;100;70;1;1;0;0;1;1
+6083;17475;2;178;80.0;120;80;1;1;0;0;1;1
+6084;20483;2;171;93.0;120;80;1;1;0;0;0;1
+6085;23248;2;185;85.0;120;80;1;1;0;0;1;1
+6086;18990;1;155;90.0;150;100;1;1;0;0;1;1
+6087;19911;1;156;68.0;120;80;1;1;0;0;1;0
+6088;20521;1;159;76.0;110;90;3;3;0;0;1;1
+6090;15878;1;160;78.0;140;90;1;1;0;0;1;1
+6091;19655;2;168;76.0;140;80;1;2;0;0;1;1
+6092;14559;1;165;109.0;131;78;1;1;0;0;0;0
+6094;20457;1;157;71.0;120;80;3;1;0;0;1;0
+6095;18756;1;160;75.0;110;80;1;1;0;0;0;0
+6096;19514;1;147;47.0;120;80;1;1;0;0;1;1
+6101;18293;2;168;73.0;120;80;1;1;0;0;1;1
+6102;17410;2;174;67.0;110;80;1;1;0;0;1;0
+6104;16696;2;178;110.0;130;90;3;3;0;0;1;1
+6105;23167;2;170;82.0;120;90;1;1;0;0;1;1
+6106;20471;1;165;87.0;120;80;1;1;0;0;1;1
+6108;23387;1;165;98.0;150;90;2;1;0;0;1;1
+6109;14660;1;154;63.0;150;100;1;1;0;0;1;0
+6114;22709;1;161;85.0;140;90;1;1;0;0;1;1
+6116;16120;2;165;72.0;150;100;1;1;1;1;1;1
+6117;20196;1;164;62.0;140;80;1;1;0;0;0;1
+6119;16982;1;167;63.0;100;70;1;1;0;0;1;0
+6120;23379;1;156;77.0;150;90;2;1;0;0;1;1
+6122;20438;1;158;104.0;130;70;1;1;0;0;1;1
+6123;15274;1;168;68.0;120;80;1;1;0;0;1;0
+6124;20379;1;167;104.0;120;80;1;1;0;0;1;0
+6126;19554;1;155;60.0;140;80;3;1;0;0;1;1
+6128;18971;1;164;75.0;120;60;1;1;0;0;1;0
+6129;15509;1;165;62.0;110;70;1;1;0;0;1;0
+6130;18061;1;170;92.0;130;70;1;1;0;0;0;1
+6131;16059;2;181;69.0;120;90;1;1;0;0;1;0
+6132;14656;1;165;75.0;130;90;1;1;0;0;0;1
+6133;21686;1;150;79.0;130;70;3;1;0;1;1;1
+6134;21067;1;164;110.0;180;90;1;1;0;0;1;1
+6135;21316;1;149;68.0;120;80;1;1;0;0;0;1
+6137;21654;1;155;52.0;80;50;1;1;0;0;1;0
+6140;21686;1;164;90.0;120;80;3;1;0;0;1;1
+6141;17991;1;174;74.0;150;100;2;1;0;0;1;1
+6142;20598;1;163;70.0;150;100;1;1;0;0;1;1
+6143;21170;1;165;70.0;140;90;3;1;0;0;1;1
+6144;14638;2;157;55.0;110;70;1;1;0;0;1;0
+6145;20289;1;153;93.0;110;80;3;1;0;0;1;1
+6148;14406;2;170;63.0;120;80;1;1;0;0;1;1
+6150;18110;2;168;74.3;110;80;3;1;0;0;1;1
+6151;23154;2;168;76.0;160;1000;3;3;0;0;1;1
+6152;21049;1;154;75.0;120;80;1;1;0;0;0;0
+6155;22614;1;164;67.0;120;70;2;1;0;0;1;0
+6157;15109;1;170;70.0;120;80;1;1;0;0;1;0
+6158;20538;2;177;103.0;140;90;3;3;0;0;0;0
+6159;20446;1;165;80.0;120;80;3;1;0;0;1;0
+6160;14420;1;175;90.0;130;90;1;1;0;0;1;1
+6161;17489;1;151;47.0;100;70;1;1;0;0;1;0
+6163;22772;2;165;65.0;120;80;3;3;0;0;1;1
+6164;23325;2;170;72.0;120;80;1;1;1;0;1;0
+6169;22627;2;175;99.0;130;90;3;3;1;0;1;0
+6170;14356;2;170;95.0;140;80;2;1;0;0;1;1
+6172;23302;1;163;82.0;140;90;3;1;0;0;1;1
+6173;18006;1;157;64.0;110;70;1;1;0;0;1;0
+6176;20461;2;185;80.0;120;70;1;1;0;0;1;1
+6177;18385;2;178;65.0;120;80;1;1;0;0;0;0
+6178;14521;1;152;60.0;110;80;1;1;0;0;0;0
+6182;16637;1;163;83.0;160;100;1;1;0;0;0;1
+6183;17331;1;159;75.0;130;80;1;3;0;0;1;0
+6184;18086;1;150;64.0;120;80;2;1;1;0;1;0
+6185;23564;2;170;79.0;140;90;3;1;0;0;1;1
+6187;21034;1;156;87.0;120;80;1;1;0;0;1;0
+6188;15247;1;162;71.0;110;70;1;1;0;0;1;0
+6189;21004;2;180;101.0;140;90;1;1;0;0;1;0
+6191;21052;1;165;70.0;120;80;1;1;0;0;1;0
+6193;21674;2;162;71.0;130;80;2;1;0;0;1;0
+6194;22126;2;165;70.0;12;70;1;1;0;0;0;1
+6196;15392;1;172;70.0;110;70;1;1;0;0;1;0
+6197;17633;2;175;91.0;130;89;1;1;0;0;0;0
+6198;23481;1;156;87.0;140;80;3;3;0;0;1;1
+6199;20969;2;172;73.0;125;85;1;1;1;1;1;0
+6201;17456;1;165;75.0;120;80;1;1;0;0;1;0
+6202;18507;2;175;76.0;120;80;1;1;0;0;1;0
+6203;16908;2;173;90.0;100;70;1;2;1;1;1;1
+6207;21193;1;150;79.0;140;80;3;1;0;0;1;1
+6208;22714;1;154;52.0;115;66;1;1;0;0;0;0
+6209;22161;2;170;88.0;120;70;1;1;0;0;1;0
+6210;18277;1;156;60.0;120;80;1;1;0;0;1;0
+6211;19814;2;174;106.0;110;80;1;1;0;0;1;1
+6214;21960;1;163;73.0;120;80;1;1;0;0;1;0
+6215;20383;1;169;93.0;110;70;1;1;0;0;1;0
+6216;21962;1;162;76.0;160;100;1;1;0;0;1;1
+6217;17483;2;170;70.0;140;90;1;1;0;0;1;1
+6218;21160;2;168;53.0;130;90;2;1;1;0;1;1
+6219;20490;2;169;70.0;120;80;1;2;0;0;1;1
+6220;18849;2;167;85.0;120;70;3;1;0;0;1;0
+6221;18233;2;175;95.0;120;90;1;1;0;0;1;1
+6223;23233;1;162;60.0;110;80;1;1;0;0;1;0
+6225;18999;2;175;80.0;120;80;1;1;0;0;1;0
+6227;21960;1;174;85.0;130;90;1;1;0;0;1;1
+6228;22112;1;166;78.0;140;90;2;2;0;0;1;1
+6229;20269;1;157;70.0;120;80;1;1;0;1;1;1
+6231;17295;1;157;80.0;110;80;1;1;0;0;1;0
+6233;22048;1;160;65.0;130;80;1;1;0;0;1;1
+6234;17461;1;165;65.0;120;80;1;1;0;0;0;1
+6235;21891;1;160;70.0;130;80;1;1;0;0;0;1
+6236;19495;1;162;58.0;120;70;1;1;0;0;1;0
+6237;18149;1;170;106.0;120;80;1;1;0;0;1;1
+6238;20567;1;165;79.0;140;90;3;3;0;0;1;0
+6242;19465;2;165;60.0;120;80;1;1;0;0;1;0
+6243;16043;1;170;77.0;120;80;3;3;0;0;1;1
+6244;19295;1;160;70.0;120;80;1;1;0;0;1;1
+6245;15377;2;174;78.0;110;70;1;1;0;0;1;1
+6246;20959;2;182;105.0;170;80;3;1;0;0;1;1
+6248;21312;1;163;50.0;110;70;1;2;0;0;1;0
+6249;18775;1;170;77.0;120;80;1;1;0;0;1;0
+6250;20176;1;164;64.0;120;80;1;1;0;0;1;1
+6251;16926;1;156;80.0;100;70;1;1;0;0;0;1
+6255;22569;2;165;65.0;180;1000;3;3;1;0;1;1
+6259;21246;1;152;100.0;130;80;2;1;0;1;1;0
+6260;20931;1;165;85.0;120;70;1;1;0;0;0;1
+6264;21186;1;170;74.0;130;80;1;1;0;0;1;1
+6267;18843;1;159;88.0;140;90;1;1;0;0;1;1
+6268;19681;2;174;67.0;150;90;2;1;0;0;0;1
+6270;17486;1;160;79.0;140;90;1;1;0;0;0;0
+6273;23316;1;154;52.0;140;90;1;1;0;0;1;1
+6274;17732;1;155;99.0;130;80;3;1;0;0;1;1
+6275;21155;2;165;65.0;120;80;1;1;0;0;1;0
+6280;21831;2;175;90.0;140;80;3;1;0;0;1;1
+6283;17409;2;175;98.0;120;80;1;1;0;0;1;0
+6285;22040;2;170;77.0;120;80;1;1;0;0;1;0
+6286;14718;1;165;65.0;130;70;1;1;0;0;1;0
+6287;21956;2;164;73.0;160;90;2;2;1;1;1;1
+6288;18762;1;160;83.0;150;90;3;3;0;0;1;1
+6289;14479;1;152;69.0;140;90;1;1;0;0;1;0
+6290;18835;2;181;110.0;140;90;3;3;0;0;1;1
+6291;18819;1;172;82.0;120;80;1;1;0;0;1;0
+6292;19891;2;169;75.0;120;80;1;1;1;0;1;0
+6293;19516;2;175;63.0;140;80;3;1;0;0;1;1
+6295;21918;1;174;75.0;120;80;1;1;0;0;1;0
+6296;18138;2;169;88.0;120;80;1;1;0;0;1;0
+6298;19844;2;186;87.0;120;70;1;1;0;0;1;1
+6299;14327;1;164;69.0;120;90;2;1;0;0;0;1
+6301;15382;1;167;58.0;120;80;1;1;0;0;0;0
+6302;21935;1;160;77.0;140;90;1;1;0;0;0;0
+6303;22755;1;144;51.0;130;80;1;1;0;0;1;1
+6304;17602;1;154;50.0;120;70;1;1;0;0;1;0
+6305;18297;1;165;67.0;140;80;1;1;0;0;1;0
+6306;22360;1;152;81.0;150;80;2;1;0;0;1;1
+6310;21967;1;168;89.0;120;80;1;1;0;0;1;0
+6311;23490;1;164;65.0;120;80;1;1;0;0;1;1
+6313;20255;2;170;65.0;130;80;1;1;0;0;1;1
+6314;17405;1;170;54.0;110;70;1;1;0;0;1;0
+6316;19056;2;160;65.0;120;80;1;1;1;0;0;0
+6317;14608;1;155;58.0;110;70;1;1;0;0;1;0
+6319;18215;1;175;85.0;140;90;1;2;0;0;1;1
+6320;21929;1;160;80.0;120;80;2;1;0;0;1;0
+6323;19815;1;158;58.0;120;80;1;1;0;0;1;0
+6325;20171;1;160;80.0;140;90;3;3;0;0;0;0
+6326;14606;1;165;66.0;12;80;1;1;0;0;1;0
+6327;19415;1;163;114.0;140;90;1;1;0;0;0;1
+6328;21119;1;157;52.0;120;80;2;2;0;0;0;1
+6329;19718;1;160;75.0;120;80;2;1;0;0;1;1
+6331;20498;1;161;81.0;120;80;1;2;0;0;0;0
+6332;16062;1;165;66.0;120;80;1;1;0;0;1;0
+6333;23339;1;156;46.0;140;60;1;1;0;0;0;1
+6334;17372;1;168;85.0;120;90;3;1;0;0;0;1
+6335;21774;1;170;93.0;140;90;1;1;0;0;1;1
+6337;17482;1;162;79.0;150;100;1;1;0;0;1;1
+6338;20320;1;160;63.0;140;80;1;1;0;0;1;1
+6339;21634;2;172;53.0;100;60;1;1;0;0;1;0
+6340;20672;1;169;70.0;120;80;3;3;0;0;0;1
+6341;21058;2;172;92.0;160;100;1;1;0;1;1;1
+6343;21190;2;170;67.0;120;80;1;1;0;0;0;0
+6345;20407;1;163;59.0;140;90;1;1;0;0;0;0
+6346;18492;2;189;95.0;120;80;3;1;0;0;1;1
+6347;20921;2;168;80.0;140;90;1;1;0;0;1;1
+6348;22515;2;170;74.0;140;90;3;1;0;0;1;1
+6350;21147;2;172;58.0;110;70;1;1;0;0;1;1
+6351;21117;1;160;82.0;160;100;1;1;0;0;1;1
+6352;19031;1;157;87.0;120;60;1;1;0;0;1;0
+6353;21213;1;159;78.0;110;70;1;1;0;0;1;0
+6354;23564;2;161;75.0;120;80;1;1;0;0;1;0
+6355;20476;2;166;73.0;120;80;2;1;0;0;1;0
+6356;21292;1;159;73.0;130;90;1;1;0;1;1;0
+6361;18374;2;174;86.0;120;80;1;1;0;0;0;1
+6362;17575;1;156;95.0;120;80;1;1;0;0;1;0
+6364;16020;1;164;84.0;120;70;1;2;0;0;1;0
+6365;19601;2;168;68.0;120;80;1;1;0;0;1;0
+6366;19601;1;164;88.0;140;90;2;1;0;0;0;1
+6367;19801;2;171;83.0;120;80;1;3;1;0;1;0
+6369;15212;2;170;85.0;130;80;3;3;1;0;1;1
+6370;16871;1;157;62.0;120;80;1;1;0;0;1;1
+6371;21112;2;170;59.0;100;70;1;1;0;0;1;0
+6372;16081;2;173;75.0;110;70;1;1;0;0;1;0
+6375;23470;1;150;76.0;140;90;2;1;0;0;1;1
+6376;19033;1;164;67.0;110;69;1;1;0;0;1;0
+6377;20234;2;175;111.0;160;100;1;2;0;0;1;1
+6379;21357;2;168;70.0;110;70;2;2;0;0;1;0
+6380;20376;1;163;80.0;100;70;1;1;0;0;1;0
+6381;22367;1;165;65.0;120;80;1;1;0;0;0;0
+6382;21891;2;160;64.0;160;90;3;1;1;0;1;1
+6383;17651;1;154;88.0;120;80;1;1;0;0;1;0
+6384;16615;2;163;77.0;110;80;1;1;0;0;1;0
+6385;19590;2;170;77.0;110;90;1;1;0;1;1;0
+6387;16040;1;160;82.0;120;80;1;1;0;0;1;0
+6388;17366;1;143;50.0;170;100;1;1;0;0;1;1
+6391;16223;2;178;82.0;110;70;1;1;0;0;1;0
+6392;23121;2;163;63.0;120;70;1;1;0;0;1;0
+6394;19858;1;169;66.0;120;80;1;1;0;0;1;0
+6395;18324;1;152;80.0;140;90;1;1;0;0;1;1
+6396;20527;1;160;94.0;120;80;2;1;0;0;1;1
+6397;19994;1;165;68.0;120;80;1;1;0;0;0;0
+6399;19010;1;168;66.0;110;80;1;1;0;0;1;0
+6400;22706;2;165;70.0;120;80;1;1;0;0;1;0
+6401;19614;2;169;75.0;120;80;1;1;1;0;1;1
+6402;19660;1;165;70.0;120;80;3;1;0;0;1;1
+6403;21675;1;163;72.0;120;90;1;2;0;0;1;1
+6404;20332;2;169;67.0;160;70;1;1;0;0;1;1
+6405;18893;1;160;58.0;130;90;1;1;0;0;1;1
+6408;19084;1;157;89.0;140;90;2;2;0;0;1;1
+6409;14541;2;185;87.0;140;80;1;1;1;0;1;1
+6410;19527;2;165;64.0;120;80;1;1;0;0;1;0
+6411;18166;1;168;72.0;120;80;1;1;0;0;1;0
+6412;20253;1;150;48.0;140;90;1;1;0;0;1;1
+6413;23456;2;174;70.0;120;80;1;1;0;0;1;1
+6414;19867;1;170;72.0;120;80;1;1;0;0;0;1
+6415;17412;2;172;86.0;130;80;1;1;0;0;1;0
+6417;15479;1;170;70.0;120;80;1;1;0;0;1;0
+6418;17412;1;149;65.0;100;70;1;1;0;0;1;0
+6419;18143;1;163;58.0;120;80;1;2;0;0;1;0
+6420;19877;1;160;68.0;130;90;1;2;0;0;1;0
+6422;21824;2;180;75.0;120;80;3;1;0;0;1;0
+6424;19082;1;157;97.0;140;90;1;1;0;0;1;1
+6426;18060;2;172;106.0;160;110;1;1;1;0;1;1
+6427;21070;1;160;59.0;120;80;1;1;0;0;1;0
+6428;23633;2;175;78.0;100;60;1;1;0;1;1;0
+6429;21132;1;166;71.0;180;100;1;1;0;0;1;1
+6430;19820;1;170;59.0;140;80;2;1;0;0;1;1
+6431;15452;1;170;60.0;120;80;1;1;0;0;1;0
+6432;21282;2;171;84.0;140;100;1;1;1;0;1;1
+6433;20238;1;153;75.0;110;70;2;2;0;0;1;1
+6436;22121;1;170;80.0;110;80;1;1;0;0;1;1
+6438;20587;2;172;69.0;120;80;2;1;1;0;0;1
+6439;20280;1;159;60.0;120;80;1;1;0;0;0;0
+6440;19648;2;176;68.0;110;80;1;1;0;0;1;0
+6441;22159;1;154;76.0;130;80;3;1;0;0;1;1
+6443;17364;2;170;89.0;140;70;2;1;0;0;0;1
+6447;17506;1;156;52.0;90;60;1;1;0;0;1;0
+6451;18788;2;165;65.0;120;80;1;1;0;0;1;0
+6452;20480;2;158;56.0;150;80;1;1;0;0;0;1
+6454;18218;1;155;59.0;140;90;1;1;1;0;1;1
+6455;17467;2;171;60.0;110;70;1;1;0;0;1;0
+6456;19016;2;177;71.0;110;80;1;1;0;0;1;0
+6457;19608;1;170;75.0;120;80;1;1;0;0;0;1
+6458;18210;2;177;89.0;130;90;1;1;0;0;1;0
+6459;20476;1;161;71.0;130;80;1;1;0;0;1;0
+6460;20426;1;178;85.0;120;80;1;1;0;0;1;1
+6461;21242;1;167;65.0;140;100;1;1;0;0;1;1
+6463;19071;1;163;60.0;120;90;2;1;0;0;1;0
+6464;15993;1;154;74.0;100;60;1;2;0;0;1;0
+6465;21275;2;172;94.0;170;90;1;1;0;0;1;1
+6466;14748;1;165;66.0;110;70;1;1;0;0;0;0
+6469;22686;2;159;67.0;150;90;1;1;0;0;1;1
+6471;15358;1;175;65.0;110;70;1;1;0;0;1;0
+6472;18236;1;168;130.0;180;1100;1;1;0;0;0;1
+6473;16857;2;166;64.0;140;90;1;1;1;1;1;1
+6475;21178;1;164;108.0;160;1000;1;1;0;0;0;1
+6476;14713;1;166;71.0;120;80;1;1;0;0;0;0
+6477;18350;2;177;94.0;110;70;1;1;1;0;1;0
+6478;18931;1;163;65.0;110;80;1;1;0;0;1;0
+6479;23620;2;168;64.0;130;80;2;1;0;0;1;1
+6480;15348;1;148;75.0;120;80;1;1;0;0;0;0
+6481;21240;1;158;80.0;140;90;1;1;0;0;1;1
+6483;16724;2;178;82.0;150;90;1;1;0;1;1;1
+6484;18299;1;170;80.0;120;80;1;1;0;0;1;0
+6485;23289;2;174;83.0;12;80;1;1;0;0;0;1
+6486;21360;2;170;76.0;120;80;2;2;0;0;1;0
+6488;21302;2;169;69.0;120;80;1;1;0;0;1;1
+6489;16955;2;182;91.0;120;80;1;1;0;0;1;0
+6491;21141;2;175;83.0;130;90;1;1;1;0;1;0
+6492;22702;1;154;71.0;150;95;3;2;0;0;0;0
+6493;14676;2;172;90.0;125;90;1;2;0;0;0;1
+6495;22602;1;154;73.0;130;80;1;1;0;0;1;1
+6497;14550;1;151;58.0;110;70;1;1;0;0;1;0
+6498;22711;1;156;68.0;130;90;1;1;0;0;1;1
+6502;21823;2;172;69.0;170;90;1;1;1;0;1;1
+6503;20430;1;157;70.0;110;80;2;2;0;1;1;0
+6505;20420;1;169;74.0;170;100;1;1;0;0;1;0
+6508;20387;2;158;58.0;12;80;1;1;1;1;1;0
+6509;18948;1;163;77.0;120;80;1;1;0;0;1;0
+6511;21981;1;154;82.0;130;80;1;1;0;0;1;1
+6513;21105;1;157;94.0;120;80;1;1;0;0;0;1
+6515;19670;1;164;70.0;110;70;2;2;0;1;0;0
+6516;23451;1;162;79.0;150;95;3;2;0;0;1;0
+6518;21874;1;163;70.0;150;80;1;3;0;0;1;0
+6519;21878;2;158;64.0;120;80;1;1;0;0;1;0
+6520;16111;1;161;70.0;100;70;2;1;0;0;0;1
+6521;16789;1;145;57.0;140;80;3;3;0;0;1;1
+6523;16225;1;156;52.0;90;60;1;1;0;0;1;0
+6524;20299;1;170;120.0;140;80;1;2;0;0;1;0
+6525;15281;1;165;78.0;-100;80;2;1;0;0;1;0
+6526;21909;2;169;64.0;160;100;1;1;0;0;0;1
+6527;18738;2;173;70.0;120;80;1;1;0;0;1;0
+6528;18847;2;162;61.0;130;90;1;1;0;0;0;0
+6529;21776;1;155;65.0;150;90;2;1;0;0;1;1
+6530;23194;1;152;89.0;160;70;1;1;0;0;0;1
+6531;16147;1;165;68.0;110;80;1;1;0;0;1;0
+6532;19793;1;165;70.0;120;80;2;1;0;0;0;0
+6533;21750;1;159;80.0;150;90;1;1;0;0;0;0
+6534;14743;1;152;55.0;80;60;1;1;0;0;1;0
+6535;18329;2;169;59.0;120;80;1;1;0;0;1;0
+6536;15953;1;156;57.0;110;70;2;1;0;0;1;0
+6537;16079;2;171;85.0;160;100;1;1;1;0;0;1
+6539;22596;1;154;94.0;159;99;3;1;0;0;1;1
+6540;21055;1;159;56.0;120;80;1;1;0;0;0;1
+6541;19199;2;167;66.0;130;90;1;1;0;1;1;1
+6543;22730;2;165;74.0;130;80;3;3;1;0;0;1
+6546;19902;1;154;70.0;120;80;1;1;0;0;1;0
+6547;17462;1;153;80.0;120;80;1;1;0;0;1;1
+6549;22666;2;166;80.0;140;90;1;1;0;0;1;0
+6551;18873;1;153;72.0;130;80;1;1;0;0;1;0
+6552;17462;2;166;65.0;120;60;1;1;0;0;1;0
+6554;21658;1;150;67.0;130;90;1;1;0;0;1;0
+6556;17334;1;156;70.0;160;100;2;2;0;0;1;1
+6557;23225;1;152;68.0;140;90;1;3;0;0;1;1
+6558;20442;1;166;69.0;110;60;1;1;0;0;1;0
+6559;14849;2;172;75.0;120;90;2;2;0;0;0;0
+6560;18881;1;165;63.0;120;80;1;1;0;0;1;0
+6561;20346;1;168;94.0;90;80;1;1;0;0;1;1
+6562;19896;1;160;72.0;140;90;1;1;0;0;0;1
+6563;20448;2;172;70.0;150;100;1;1;0;0;1;1
+6564;18242;1;161;60.0;120;80;1;1;0;0;1;0
+6566;21239;2;178;87.0;120;80;1;1;0;0;1;0
+6568;19246;1;163;92.0;120;80;2;2;0;1;1;0
+6569;19134;2;158;94.0;130;80;1;1;0;0;1;0
+6570;22834;1;165;78.0;130;80;2;1;0;0;1;0
+6571;16032;2;163;65.0;130;80;1;1;0;0;1;1
+6572;18920;1;154;78.0;150;80;2;1;0;0;1;1
+6574;15978;1;163;94.0;110;80;2;1;0;0;1;0
+6575;18892;1;148;52.0;120;90;1;1;0;0;1;1
+6576;17666;2;174;97.0;140;90;1;1;0;0;1;0
+6577;23441;2;165;69.0;120;80;1;1;0;1;0;0
+6578;15884;2;172;65.0;120;80;1;3;0;0;1;0
+6579;19157;1;161;71.0;130;85;3;1;0;0;1;1
+6581;20301;1;160;69.0;120;80;1;1;0;0;1;0
+6582;21028;1;157;61.0;120;70;1;1;0;0;0;0
+6583;19464;1;164;66.0;160;90;1;1;0;0;1;0
+6585;19659;1;160;78.0;140;100;1;1;0;0;1;1
+6586;21810;1;156;93.0;180;110;1;1;0;0;1;1
+6587;22715;2;179;69.0;120;80;1;1;0;0;1;1
+6588;18862;1;180;79.0;140;100;1;1;0;0;1;1
+6589;20615;2;166;66.0;120;60;1;1;0;0;1;1
+6590;16085;2;175;85.0;120;90;1;1;0;0;1;1
+6591;22632;2;161;55.0;120;80;1;1;0;0;1;0
+6593;21708;1;168;65.0;120;80;1;1;0;0;1;0
+6594;20488;2;170;82.0;120;70;1;1;0;1;1;0
+6596;15336;2;175;76.0;110;70;1;1;0;0;0;0
+6598;14921;1;168;78.0;120;70;1;3;0;0;0;0
+6599;19200;1;168;97.0;120;80;1;1;0;0;1;0
+6600;18190;1;163;63.0;120;80;1;1;0;0;1;0
+6602;20399;1;158;69.0;120;80;1;1;0;0;0;0
+6605;21257;2;165;80.0;130;80;1;1;1;0;1;1
+6607;21065;1;160;56.0;130;80;1;1;0;0;1;1
+6610;21886;2;169;79.0;130;69;3;3;0;0;0;1
+6614;18435;2;170;69.0;115;80;2;1;1;0;1;0
+6616;22047;1;165;100.0;140;80;3;3;0;0;0;1
+6617;20641;2;171;63.0;150;90;1;1;0;0;1;0
+6618;14495;1;165;95.0;110;80;1;1;0;0;1;0
+6620;20391;1;153;94.0;140;90;1;1;0;0;1;1
+6622;21904;1;161;73.0;160;95;2;1;0;0;1;1
+6623;19626;1;152;72.0;120;80;1;1;0;0;1;0
+6624;16814;1;154;48.0;100;60;1;1;0;0;1;0
+6626;23117;1;157;77.0;130;80;2;1;0;0;1;1
+6627;18882;1;159;88.0;150;100;1;1;0;0;1;1
+6628;16304;2;178;85.0;120;80;1;1;0;0;0;1
+6629;19746;1;165;91.0;140;80;1;1;0;0;0;1
+6630;18959;2;175;78.0;120;100;3;3;0;0;1;1
+6631;19792;2;176;85.0;125;100;1;1;0;0;1;0
+6633;20367;1;165;65.0;12;80;1;1;0;0;1;0
+6636;21006;1;165;90.0;120;80;1;1;0;0;0;1
+6637;21811;2;170;68.0;140;80;2;1;0;0;1;1
+6638;21115;1;151;72.0;160;100;2;2;0;0;1;1
+6639;22075;2;170;75.0;170;80;1;1;0;0;1;1
+6640;23265;1;162;65.0;150;90;1;1;0;0;1;0
+6642;23386;1;164;65.0;120;80;1;1;0;0;1;0
+6643;16055;2;172;85.0;150;80;2;1;0;0;1;1
+6644;17576;2;175;77.0;120;80;1;1;0;0;1;0
+6648;20430;1;161;64.0;120;80;2;1;0;0;1;0
+6649;16861;2;158;60.0;130;80;1;1;0;0;0;1
+6651;16750;1;165;90.0;150;90;3;3;0;0;1;1
+6652;15277;1;161;64.0;110;80;1;1;0;0;1;0
+6656;19763;2;175;63.0;120;70;1;1;0;0;1;0
+6657;18091;2;175;67.0;150;100;1;1;0;1;1;1
+6658;23225;1;157;82.0;140;90;2;1;0;0;0;1
+6659;22038;1;160;60.0;120;80;1;1;0;0;1;0
+6661;17998;2;164;90.0;130;1000;2;1;0;0;0;0
+6662;19671;2;172;84.0;140;80;3;1;0;0;1;1
+6663;16651;1;160;80.0;120;90;1;1;0;0;1;0
+6664;23172;1;154;73.0;140;90;1;1;0;1;0;0
+6665;21118;2;165;69.0;150;90;2;1;0;0;1;1
+6667;18440;2;167;85.0;150;80;1;1;0;0;1;1
+6668;23323;1;162;65.0;120;80;1;1;0;0;1;0
+6670;19699;2;168;60.0;120;80;1;1;0;0;1;0
+6671;17601;2;169;70.0;110;90;1;1;0;0;1;0
+6673;16650;1;164;75.0;140;90;1;1;0;0;1;1
+6674;16719;2;164;62.0;110;80;1;1;0;0;1;0
+6675;15960;1;158;62.0;140;90;1;1;0;0;1;1
+6676;18268;2;175;92.0;110;70;1;1;0;0;1;0
+6678;18013;1;160;82.0;140;80;1;1;0;0;1;0
+6679;21801;1;165;76.0;165;52;1;2;0;0;1;0
+6680;20403;1;156;93.0;180;100;1;1;0;0;1;1
+6682;16002;2;174;86.0;120;80;1;1;0;0;1;1
+6684;15925;1;163;78.0;130;90;1;1;0;0;1;0
+6686;16110;1;162;68.0;120;80;1;1;0;0;1;0
+6687;23393;1;166;75.0;160;90;1;1;0;0;1;1
+6689;14457;1;156;57.0;140;90;2;1;0;0;1;1
+6690;22552;2;175;69.0;110;80;1;1;1;0;1;1
+6692;23343;2;172;96.0;140;90;1;3;0;0;1;1
+6693;21332;2;172;103.0;120;80;1;1;0;0;1;1
+6695;19500;1;158;78.0;120;80;1;1;0;0;1;1
+6696;19000;1;165;73.0;120;80;1;1;0;0;1;0
+6697;18936;1;156;80.0;100;60;1;1;0;0;0;0
+6698;15267;2;163;63.0;120;80;1;1;0;0;1;0
+6699;22638;1;164;80.0;130;90;1;1;0;0;0;1
+6702;21647;1;175;85.0;130;90;3;1;0;0;1;1
+6703;19868;1;164;149.0;120;80;2;2;0;0;1;1
+6704;19254;1;160;60.0;120;80;1;1;0;0;1;0
+6705;20701;2;169;79.0;140;90;3;3;1;0;1;1
+6706;18905;2;158;57.0;140;90;2;2;0;0;1;1
+6707;17407;2;177;83.0;140;80;2;1;0;0;0;1
+6709;16044;2;171;86.0;120;80;1;1;1;1;1;0
+6710;14619;1;163;58.0;110;70;1;1;0;1;1;0
+6712;21711;2;162;72.0;120;80;2;2;1;1;1;0
+6713;16091;2;170;75.0;110;80;1;1;1;1;1;0
+6714;22592;1;148;79.0;140;80;3;1;0;0;1;1
+6715;20320;1;156;60.0;110;70;2;2;0;0;1;0
+6716;17218;2;176;180.0;140;90;1;1;0;0;1;1
+6717;21203;2;169;75.0;120;80;1;1;0;0;1;0
+6720;21629;1;165;65.0;120;80;1;1;0;0;1;0
+6722;19714;1;162;68.0;140;90;1;1;0;0;1;1
+6723;21098;1;160;77.0;120;80;1;1;0;0;1;0
+6724;21124;1;162;100.0;130;70;3;3;0;0;1;1
+6725;16825;2;177;82.0;170;90;3;1;1;1;1;1
+6726;23648;1;164;76.0;130;80;1;1;0;0;1;1
+6727;18784;1;157;59.0;120;80;1;1;0;0;0;0
+6728;21409;2;170;70.0;120;80;1;1;1;0;1;1
+6729;22595;1;164;69.0;120;80;1;3;0;0;1;0
+6730;18138;1;157;62.0;120;80;1;1;0;0;1;0
+6731;20696;2;170;80.0;120;80;1;1;1;0;0;0
+6732;15393;2;168;70.0;120;80;1;1;0;0;1;0
+6733;21958;1;162;60.0;130;80;1;1;0;0;1;1
+6734;22359;2;164;77.0;140;90;1;1;0;0;1;1
+6735;18177;1;165;65.0;120;80;1;2;0;0;1;0
+6736;14480;1;164;81.0;100;70;1;1;0;0;1;0
+6737;16708;1;165;61.0;120;80;3;3;0;0;1;1
+6739;18261;2;176;78.0;120;80;1;1;0;0;1;0
+6740;21790;1;154;51.0;90;70;1;1;0;0;1;0
+6743;20423;2;169;72.0;120;90;2;1;0;0;0;1
+6744;19606;1;157;63.0;200;100;1;1;0;0;1;1
+6746;18846;1;170;70.0;120;80;1;1;0;0;1;0
+6749;18786;2;175;107.0;140;90;2;1;0;0;1;1
+6750;22716;2;172;75.0;120;80;1;1;0;0;1;1
+6751;23490;1;162;65.0;120;80;1;1;0;0;1;0
+6753;19756;1;156;58.0;120;80;1;1;0;0;1;0
+6754;20304;2;162;80.0;140;90;1;1;0;0;0;1
+6755;18761;1;165;65.0;120;79;1;1;0;0;0;1
+6756;19601;1;166;99.0;170;100;2;1;0;0;1;1
+6757;22033;1;156;83.0;150;90;1;1;0;0;0;1
+6758;14588;1;162;52.0;110;70;1;1;0;0;0;0
+6759;15162;2;168;90.0;130;90;1;1;1;0;0;1
+6761;15215;1;159;43.0;90;60;1;1;0;0;1;0
+6764;19641;1;179;68.0;120;80;1;1;0;0;0;1
+6767;20539;1;160;83.0;120;80;1;3;0;0;0;0
+6768;15902;1;168;65.0;100;60;1;1;0;0;1;0
+6769;18961;1;158;74.0;200;170;1;1;0;0;1;1
+6770;19617;1;156;105.0;125;90;1;1;0;0;1;1
+6771;21667;1;158;67.0;140;90;1;1;0;0;1;1
+6772;17392;2;168;71.0;120;80;1;1;0;0;1;0
+6773;21064;1;151;45.0;140;90;3;1;0;0;1;1
+6775;17372;2;171;76.0;120;80;1;3;0;0;1;0
+6776;14413;1;156;61.0;130;70;2;2;0;0;1;0
+6778;22695;1;156;80.0;160;90;2;2;0;0;1;0
+6779;20571;1;163;63.0;120;80;2;1;0;0;0;1
+6780;17429;1;152;68.0;110;70;2;1;0;0;1;0
+6781;18953;1;159;67.0;120;80;1;1;0;0;1;0
+6782;21867;1;163;94.0;120;80;3;2;0;1;0;1
+6783;21060;1;156;82.0;140;90;1;1;0;0;1;1
+6787;18774;2;174;101.0;120;80;1;1;0;0;0;0
+6789;23350;2;170;74.0;150;90;1;1;0;0;1;1
+6791;20597;2;173;94.0;150;100;2;1;0;0;1;0
+6792;23369;2;169;65.0;110;80;1;1;0;0;1;0
+6794;19654;1;158;49.0;120;80;1;1;0;0;1;0
+6797;21133;1;167;77.0;120;90;2;1;0;0;1;0
+6798;21309;2;174;105.0;120;90;1;1;0;0;0;1
+6799;15248;1;166;69.0;120;80;1;1;0;0;1;0
+6800;18114;1;158;67.0;120;80;1;1;0;0;1;0
+6801;20534;2;168;75.0;130;80;1;1;0;0;1;0
+6802;23173;1;160;96.0;130;90;1;1;0;0;0;1
+6803;19829;2;180;77.0;120;80;1;1;0;0;0;1
+6804;19244;1;167;64.0;100;70;1;1;0;0;1;0
+6805;21789;2;172;74.0;140;90;1;1;0;0;1;1
+6806;20616;2;168;70.0;120;80;2;1;0;0;0;0
+6808;18871;2;162;83.0;150;90;3;1;0;0;1;1
+6811;21154;1;162;74.0;180;100;3;3;0;0;1;1
+6812;21183;1;168;101.0;140;90;3;2;0;0;1;0
+6813;18904;1;156;86.0;110;69;1;1;0;0;1;1
+6816;16279;2;167;72.0;120;80;1;1;1;0;1;0
+6818;16892;2;160;60.0;130;80;1;1;0;0;0;1
+6819;14592;1;158;63.0;120;80;1;1;0;0;1;0
+6821;18125;1;162;83.0;140;90;1;1;0;0;1;1
+6822;14425;1;168;63.0;909;60;2;1;0;0;1;0
+6824;14461;2;171;71.0;110;80;1;1;0;0;1;0
+6825;19678;1;154;91.0;140;100;2;1;0;0;0;1
+6826;21195;1;162;67.0;120;80;1;3;0;0;1;0
+6828;18797;1;171;75.0;120;80;1;1;0;0;1;0
+6831;22584;1;153;66.0;110;60;1;3;0;0;1;0
+6833;20461;1;167;75.0;120;80;1;1;0;0;0;1
+6834;19758;1;157;79.0;120;80;1;1;0;0;1;0
+6836;19618;2;164;89.0;90;140;2;2;0;0;1;1
+6839;21930;2;189;85.0;130;70;1;1;0;0;0;0
+6840;19569;2;163;86.0;140;100;2;1;0;1;1;1
+6841;20947;1;169;108.0;140;80;1;1;0;0;1;1
+6842;20628;2;173;93.0;150;100;2;1;0;0;1;1
+6843;16969;2;159;68.0;70;100;1;1;0;0;0;0
+6846;16068;1;168;68.0;120;80;1;1;0;0;1;0
+6847;21839;1;154;91.0;140;90;1;1;0;0;1;1
+6848;18953;2;178;72.0;120;80;1;1;1;1;1;0
+6851;14772;1;165;60.0;110;70;1;1;0;0;1;0
+6852;20757;2;178;82.0;120;80;1;3;0;0;1;0
+6853;14685;2;181;60.0;120;80;1;1;0;0;1;0
+6854;21980;1;166;79.0;120;80;1;3;0;0;1;1
+6855;19052;2;173;78.0;160;90;1;1;0;0;1;1
+6857;18863;1;156;64.0;120;80;1;1;0;0;1;0
+6858;17573;2;166;70.0;120;80;1;1;0;1;1;1
+6861;21959;1;162;56.0;120;80;1;1;0;0;1;0
+6862;15429;1;166;62.0;120;80;1;1;0;0;1;0
+6863;16064;2;175;80.0;130;90;1;1;0;0;1;1
+6864;20402;1;162;84.0;130;90;2;1;0;0;1;1
+6865;16072;1;160;65.0;120;80;2;1;0;0;1;1
+6866;18043;1;166;53.0;120;80;1;1;0;0;1;0
+6867;21145;1;165;60.0;120;80;1;1;0;0;1;1
+6868;20313;1;176;70.0;110;80;2;1;1;0;1;0
+6871;14486;1;158;59.0;120;80;1;1;0;0;1;0
+6872;22477;2;169;79.0;120;80;1;1;0;0;1;0
+6874;17518;1;163;74.0;110;70;1;1;0;0;1;0
+6875;22672;2;174;72.0;120;80;1;1;0;0;0;1
+6876;15187;2;182;87.0;110;70;1;1;0;0;0;0
+6877;17446;1;170;90.0;140;90;2;1;0;0;0;1
+6879;18775;1;168;89.0;130;90;1;1;1;0;0;1
+6881;23293;1;162;77.0;140;90;2;1;0;0;1;1
+6883;20415;1;160;94.0;135;80;3;1;0;0;1;1
+6884;19696;1;159;87.0;140;90;2;1;0;0;0;1
+6885;17576;2;170;65.0;110;70;2;1;0;0;1;0
+6886;17954;1;149;73.0;140;80;1;1;0;0;1;1
+6887;17390;2;173;86.0;120;80;1;1;0;0;0;0
+6888;16953;1;165;68.0;120;80;1;1;0;0;1;1
+6891;19891;2;166;65.0;110;70;2;1;0;1;1;0
+6892;19695;1;154;77.0;140;90;2;1;0;0;0;0
+6893;20929;1;155;58.0;140;90;3;3;0;0;1;1
+6894;18033;2;170;68.0;120;80;1;1;0;0;0;0
+6895;16041;1;170;65.0;140;90;1;1;0;0;0;0
+6896;18175;1;153;56.0;109;76;1;1;0;0;1;0
+6897;21866;2;159;66.0;120;70;2;1;0;0;1;0
+6898;21778;1;162;55.0;120;80;2;2;0;0;1;1
+6899;19121;2;174;76.0;150;90;1;1;1;1;1;1
+6900;22411;1;156;80.0;140;80;3;1;0;0;1;1
+6901;20189;2;168;90.0;120;80;1;1;0;0;1;1
+6902;14704;1;158;74.0;170;100;1;1;1;0;1;1
+6903;19659;2;171;89.0;120;80;3;1;0;0;1;1
+6904;19233;1;159;83.0;140;90;1;1;0;0;1;1
+6905;20497;1;154;92.0;130;100;2;2;1;0;1;0
+6906;17399;1;160;76.0;120;80;3;1;0;0;1;1
+6907;20962;1;152;63.0;130;90;1;1;0;0;1;1
+6909;15320;2;180;72.0;110;70;1;1;0;0;1;0
+6910;21649;1;162;64.0;120;80;1;1;0;0;1;1
+6911;23333;2;151;45.0;120;80;1;1;1;0;1;0
+6913;18065;2;165;67.0;120;80;1;1;0;0;1;0
+6914;16539;1;164;70.0;90;80;1;1;0;0;1;0
+6915;21870;1;159;72.0;110;70;2;1;0;0;1;1
+6916;22735;1;170;96.0;170;90;1;1;0;0;1;1
+6917;17593;1;160;68.0;140;90;3;3;1;1;1;1
+6918;23449;2;160;59.0;120;80;1;1;0;0;0;1
+6919;16741;2;167;65.0;110;60;1;1;1;0;1;0
+6923;19604;2;180;89.0;130;80;1;1;1;0;1;0
+6924;21411;1;167;63.0;120;80;1;1;0;0;1;0
+6925;20486;2;169;78.0;120;90;1;1;0;1;1;1
+6926;18183;1;163;78.0;140;90;1;1;0;0;1;1
+6927;23437;2;180;90.0;150;80;1;1;0;0;1;1
+6928;18756;2;168;65.0;120;80;1;1;0;0;1;0
+6930;18917;1;161;72.0;130;90;1;1;0;0;1;0
+6931;18304;2;172;90.0;120;80;1;1;0;0;1;0
+6933;23414;2;170;90.0;140;90;1;1;0;0;1;1
+6934;16699;1;169;70.0;140;90;1;1;0;0;1;1
+6935;19953;2;172;60.0;120;80;1;1;0;0;1;1
+6936;22535;1;149;91.0;160;90;1;1;0;0;1;1
+6937;18318;2;171;78.0;110;90;1;1;1;1;1;1
+6939;20474;1;165;115.0;170;100;3;1;1;0;1;1
+6940;23487;2;160;65.0;120;80;1;1;0;0;0;1
+6943;19738;2;174;68.0;120;80;1;1;0;0;0;0
+6945;19798;2;172;88.0;120;80;2;1;0;0;1;0
+6946;15381;1;165;75.0;110;70;1;1;0;0;1;0
+6948;17523;1;158;83.0;130;90;3;2;0;0;0;1
+6949;20506;1;163;67.0;120;70;1;1;0;0;0;0
+6950;23276;2;146;106.0;140;80;3;1;0;0;1;0
+6951;17752;2;187;86.0;110;80;1;1;0;0;0;1
+6952;19218;2;170;68.0;120;80;1;1;0;0;1;0
+6953;19624;2;160;68.0;120;80;1;1;0;0;1;0
+6956;19696;1;165;65.0;120;80;1;1;0;0;1;0
+6958;18999;2;170;92.0;140;90;2;1;1;0;1;1
+6959;20775;1;165;80.0;120;80;1;1;0;0;0;0
+6961;21210;1;157;106.0;140;100;1;1;0;0;1;1
+6962;19616;2;168;67.0;140;90;2;3;0;0;1;1
+6963;18194;2;178;80.0;120;70;1;1;0;0;1;0
+6966;19949;2;175;65.0;130;90;1;1;0;0;1;1
+6967;22523;2;163;69.0;110;80;2;1;0;0;1;0
+6968;18117;2;160;62.0;120;70;1;1;0;0;1;0
+6969;19471;1;162;70.0;120;80;1;1;0;0;1;1
+6971;20277;1;159;60.0;120;80;1;1;0;0;1;0
+6972;18403;1;150;85.0;130;70;1;1;0;0;1;0
+6973;20471;1;162;60.0;140;80;2;1;0;0;1;1
+6974;17325;1;160;66.0;110;70;1;1;0;0;1;0
+6976;19002;1;162;83.0;130;80;3;3;0;0;1;1
+6977;14663;1;156;72.0;120;80;1;1;0;0;1;0
+6978;18077;1;155;76.0;120;80;2;1;0;0;1;1
+6979;18311;2;165;70.0;120;80;1;1;1;1;1;1
+6980;19584;1;160;64.0;140;90;2;2;0;0;1;1
+6982;21839;1;169;70.0;120;80;1;1;0;0;1;1
+6983;21182;1;156;65.0;120;60;1;2;0;0;1;1
+6984;23189;1;156;85.0;120;80;1;2;0;0;1;1
+6985;14622;1;160;60.0;120;80;1;1;0;0;1;0
+6987;23247;2;176;84.0;160;95;3;1;0;0;1;1
+6988;19569;2;166;62.0;110;90;1;1;0;0;0;1
+6989;16052;2;169;65.0;110;80;1;1;0;0;1;1
+6991;22091;1;152;67.0;110;70;1;1;0;0;1;0
+6992;20501;1;160;69.0;80;170;1;1;0;0;1;1
+6993;17982;1;160;60.0;120;80;1;1;0;0;1;0
+6996;19737;2;183;64.0;140;90;3;1;1;1;1;1
+6997;23410;1;157;110.0;150;100;1;1;0;0;0;1
+6998;18874;1;158;65.0;110;70;1;1;0;0;0;0
+7000;17694;1;164;100.0;130;90;1;1;0;0;1;1
+7001;15912;1;155;69.0;120;80;1;1;0;0;1;0
+7002;23454;1;156;72.0;130;80;1;2;0;0;1;0
+7003;20949;1;169;75.0;120;80;1;1;0;0;1;0
+7004;20381;2;169;75.0;120;90;1;1;1;1;1;0
+7005;21340;1;165;69.0;110;70;1;1;0;0;1;0
+7006;15979;1;167;85.0;100;80;2;2;0;0;1;0
+7009;18050;1;156;71.0;130;80;1;1;0;0;0;0
+7010;21864;1;165;69.0;120;60;1;1;0;0;1;0
+7011;22694;1;165;78.0;130;80;3;3;0;0;1;0
+7016;18078;2;176;140.0;140;80;3;3;0;0;0;1
+7017;17741;1;160;65.0;120;80;1;1;0;0;1;0
+7018;21727;1;153;57.0;140;80;1;1;0;0;1;1
+7020;15483;1;166;69.0;110;80;1;2;0;0;1;0
+7021;19220;1;156;60.0;120;80;1;1;0;0;1;1
+7022;22639;2;168;52.0;120;80;1;1;0;0;1;0
+7023;20972;1;151;70.0;150;80;2;1;0;0;1;1
+7024;20700;2;164;72.0;140;90;1;1;0;0;1;1
+7026;15985;1;164;84.0;180;110;1;1;0;0;1;1
+7029;20458;1;158;76.0;120;80;1;1;0;0;1;0
+7034;23504;2;170;75.0;150;80;2;1;0;0;1;1
+7035;21158;1;169;89.0;130;90;1;1;0;0;1;0
+7036;23376;2;180;85.0;135;85;2;1;0;0;0;0
+7037;15895;1;156;59.0;110;70;1;1;0;0;1;0
+7040;18818;2;171;74.0;140;90;1;1;0;0;1;0
+7041;14724;1;162;90.0;130;80;1;2;0;0;1;1
+7042;22595;2;166;90.0;140;80;3;3;0;0;1;1
+7043;18215;2;169;68.0;110;70;1;1;0;0;1;1
+7044;15146;2;164;67.0;110;70;3;1;0;0;1;0
+7045;23324;2;168;73.0;130;90;1;1;0;0;1;1
+7046;20580;2;178;81.0;120;80;1;1;0;0;1;0
+7048;20476;1;164;100.0;120;80;1;1;0;0;1;1
+7050;19095;1;150;83.0;130;80;1;1;0;0;1;1
+7052;19120;1;168;69.0;110;80;1;1;0;0;1;0
+7053;23082;1;166;77.0;190;100;1;1;0;0;1;1
+7054;22722;2;173;74.0;220;160;2;2;0;0;1;1
+7055;16007;2;180;71.0;110;70;2;1;1;0;0;0
+7056;18183;1;160;72.0;85;60;2;1;0;0;1;0
+7057;21213;1;164;62.0;150;90;1;1;0;0;1;1
+7059;19787;1;153;53.0;110;80;1;1;0;0;1;0
+7061;20485;1;169;89.0;90;60;1;1;0;0;0;1
+7062;23099;2;165;66.0;120;80;1;1;0;0;1;1
+7067;21064;1;164;97.0;140;90;2;2;1;0;1;0
+7068;19891;2;170;69.0;120;80;1;1;0;0;0;1
+7069;14398;2;177;82.0;110;80;1;1;1;1;1;0
+7070;18755;1;155;51.0;110;80;1;1;0;0;1;0
+7071;16534;1;162;81.0;100;60;1;1;0;0;0;0
+7073;21766;1;147;51.0;117;70;1;1;0;0;1;0
+7074;18171;1;160;66.0;90;60;1;1;0;0;1;0
+7075;20233;2;159;70.0;120;80;1;1;0;0;1;0
+7076;22568;1;178;75.0;120;90;1;1;0;0;0;1
+7077;20562;2;169;65.0;120;80;1;1;0;0;1;0
+7078;19131;2;172;76.0;125;80;3;3;0;0;1;0
+7079;18992;2;170;67.0;120;90;1;1;1;0;0;0
+7080;18133;2;166;78.0;140;80;1;1;0;0;1;0
+7081;17313;2;194;95.0;120;80;1;1;0;0;1;0
+7082;17590;1;162;104.0;130;80;2;2;0;0;1;1
+7083;18114;1;168;84.0;110;80;2;1;0;0;1;0
+7084;15128;1;171;86.0;120;80;1;1;0;0;0;1
+7087;23525;1;149;56.0;150;90;1;1;0;0;1;1
+7089;15857;1;161;77.0;120;70;1;1;0;0;0;1
+7090;21761;1;168;77.0;140;80;1;1;0;0;0;1
+7091;18124;1;162;89.0;140;90;1;1;0;0;1;1
+7093;22726;1;170;72.0;160;90;2;2;0;0;1;1
+7094;19627;1;189;70.0;130;80;1;1;0;0;1;0
+7095;19069;1;151;77.0;140;90;1;1;0;0;0;1
+7097;20442;1;157;77.0;160;100;2;1;0;0;1;1
+7102;23101;1;163;78.0;120;80;3;3;0;0;1;1
+7103;20394;1;162;83.0;160;100;1;1;0;0;1;1
+7104;22418;1;154;87.0;150;100;3;3;0;0;0;1
+7105;16849;1;147;47.0;90;60;1;1;0;0;1;0
+7106;19689;2;155;51.0;130;80;1;1;0;0;1;0
+7107;18165;2;168;65.0;140;90;2;1;1;1;1;1
+7110;15115;1;156;74.0;130;90;1;1;0;0;1;1
+7111;17437;2;165;73.0;130;80;1;1;0;0;1;1
+7112;19138;2;175;91.0;120;80;1;1;0;1;0;0
+7113;23337;1;160;93.0;120;80;1;1;0;0;1;1
+7117;23472;2;170;87.0;110;70;1;1;0;0;1;1
+7119;21969;1;168;72.0;110;79;1;1;0;0;1;0
+7125;16243;1;163;75.0;110;70;1;1;0;0;1;1
+7126;19540;1;166;62.0;130;80;1;1;0;0;1;1
+7128;15877;1;163;65.0;120;80;1;1;0;0;1;1
+7129;20383;1;166;85.0;120;80;1;1;0;0;1;0
+7131;18221;2;165;70.0;130;80;1;1;0;0;0;0
+7133;20537;2;168;70.0;120;80;1;1;0;0;1;1
+7135;18037;1;160;67.0;110;70;1;1;0;0;0;1
+7137;17026;2;164;65.0;120;80;2;1;0;0;1;0
+7138;15232;1;174;75.0;120;80;1;1;0;0;1;1
+7140;21898;1;153;85.0;120;70;1;1;0;0;1;1
+7142;23577;1;154;86.0;140;90;1;1;0;0;1;1
+7143;16645;1;155;56.0;100;80;1;1;0;0;1;0
+7145;16185;1;155;64.0;110;70;1;1;0;0;1;0
+7146;14605;2;165;70.0;120;80;1;1;0;1;1;0
+7147;21081;1;154;64.0;160;100;3;3;0;0;1;0
+7148;19831;1;150;75.0;110;70;1;1;0;0;0;0
+7150;23257;2;165;72.0;150;80;1;2;0;0;1;1
+7151;21239;2;167;89.0;135;80;1;1;0;0;1;1
+7154;18831;2;169;85.0;140;70;1;1;1;0;0;0
+7155;23404;2;166;90.0;150;100;1;1;0;0;1;1
+7156;20536;1;161;73.0;120;80;1;1;0;0;1;0
+7157;22670;2;185;79.0;120;80;1;1;0;0;1;1
+7159;20593;2;168;103.0;140;100;1;1;0;0;0;1
+7160;18142;1;168;94.0;120;80;1;1;1;1;1;0
+7161;18273;1;162;76.0;145;80;2;2;0;0;0;1
+7163;21958;2;170;87.0;140;90;1;3;0;0;1;1
+7165;18183;1;164;64.0;120;80;1;1;0;0;1;0
+7166;16756;2;172;82.0;120;80;1;1;0;0;1;0
+7169;21285;1;168;89.0;150;90;1;1;0;0;1;1
+7171;17313;1;153;80.0;120;80;1;2;0;0;1;1
+7173;19602;1;162;61.0;120;80;1;1;0;0;1;0
+7174;21642;1;155;87.0;130;80;3;3;0;0;0;1
+7176;20196;1;196;81.0;140;90;1;1;0;0;1;1
+7179;21023;2;170;68.0;140;90;1;1;0;0;1;0
+7182;21016;1;165;128.0;180;90;3;1;0;0;1;1
+7184;18140;1;165;65.0;120;80;2;2;0;0;1;0
+7185;21114;2;162;63.0;160;90;1;1;0;1;1;1
+7188;19399;1;154;75.0;110;70;1;1;0;0;1;0
+7189;19857;1;168;64.0;120;80;1;1;0;0;1;0
+7190;18332;2;156;80.0;120;80;1;1;0;0;0;1
+7193;18480;2;167;71.0;120;80;1;1;0;0;0;0
+7195;18201;1;156;74.0;140;90;3;1;0;0;1;1
+7198;22755;1;168;70.0;140;80;1;1;0;0;1;1
+7199;19594;2;182;91.0;120;80;1;1;0;0;1;0
+7200;18350;1;151;80.0;100;60;1;1;0;0;1;1
+7201;20316;1;162;65.0;110;70;1;1;0;0;0;0
+7203;21352;2;169;60.0;120;80;1;1;1;0;0;0
+7204;23438;1;174;74.0;120;80;1;1;0;0;1;1
+7206;18139;2;184;62.0;120;80;1;1;0;0;1;0
+7208;22693;2;162;99.0;180;90;2;1;1;0;1;1
+7209;17544;2;170;73.0;90;60;3;1;0;0;0;1
+7211;16641;2;165;78.0;130;90;1;1;0;0;1;0
+7212;16073;1;157;74.0;120;80;1;1;0;0;0;0
+7213;16687;1;168;86.0;140;100;1;1;0;0;1;1
+7214;19759;1;154;86.0;160;100;2;1;1;0;1;1
+7215;14592;1;172;72.0;120;80;2;1;0;0;1;1
+7217;23515;1;155;64.0;130;80;1;1;0;1;1;1
+7218;19655;1;143;70.0;140;80;1;2;0;0;1;0
+7219;16682;1;165;65.0;120;80;1;1;0;0;1;0
+7220;18966;1;156;66.0;130;80;3;1;0;0;1;1
+7223;22573;1;157;76.0;150;90;3;2;0;0;1;1
+7224;16080;1;166;94.0;120;100;1;1;0;0;1;1
+7225;17465;1;162;78.0;120;80;1;1;0;0;1;0
+7226;20402;1;160;65.0;120;80;1;1;0;0;1;1
+7227;22521;2;169;94.0;140;100;1;1;0;0;1;1
+7228;22494;1;163;75.0;120;80;1;2;0;0;1;1
+7229;18865;1;164;91.0;150;90;1;1;0;0;1;1
+7230;16861;1;167;103.0;150;100;2;2;0;0;1;1
+7234;21784;2;162;56.0;120;80;1;1;0;0;1;0
+7241;14791;1;165;71.0;120;80;1;1;0;0;1;0
+7242;17398;1;159;66.0;120;80;1;1;0;0;1;1
+7243;16802;1;156;58.0;120;80;1;1;0;0;0;1
+7244;20308;1;157;71.0;155;90;2;2;0;0;0;1
+7245;18313;1;162;79.0;130;70;2;1;0;0;0;1
+7246;21974;1;162;80.0;150;90;1;1;0;0;1;0
+7249;17464;1;168;72.0;110;70;1;1;0;0;1;1
+7251;23312;1;168;79.0;120;80;1;2;0;1;1;0
+7252;22077;1;168;70.0;130;80;1;1;0;0;1;0
+7253;21826;1;165;70.0;130;80;1;1;0;0;1;1
+7254;14374;1;137;56.0;100;60;1;1;0;0;1;0
+7255;21304;1;157;78.0;130;90;2;2;0;0;1;1
+7257;18179;2;176;62.0;110;70;1;1;0;0;1;0
+7259;19830;2;159;78.0;140;90;1;1;0;0;1;1
+7260;17637;1;165;74.0;110;70;1;1;0;0;0;1
+7261;18202;1;168;70.0;120;80;3;3;0;0;1;0
+7262;16774;1;168;62.0;140;80;1;1;0;0;1;1
+7264;18827;1;160;65.0;120;80;1;1;0;0;0;1
+7265;19604;2;185;70.0;120;80;3;3;0;0;0;0
+7266;14552;1;154;64.0;120;90;1;1;0;0;0;1
+7268;18918;2;172;74.0;120;80;1;1;0;0;1;0
+7269;21065;2;176;95.0;140;90;2;1;0;0;1;1
+7270;19626;1;157;56.0;110;80;1;1;0;0;1;0
+7272;15995;1;170;85.0;90;60;1;1;1;0;0;0
+7273;22820;1;152;70.0;150;80;1;1;0;0;1;1
+7274;21180;2;173;112.0;120;80;3;2;1;0;1;1
+7276;19858;1;157;64.0;150;90;1;1;0;0;1;0
+7277;17600;2;173;78.0;90;140;1;1;0;1;1;1
+7278;15186;1;173;54.0;120;60;1;1;0;0;0;0
+7279;19616;1;155;65.0;110;70;1;1;0;0;1;0
+7281;19693;2;184;95.0;120;80;1;3;0;0;0;1
+7282;19112;1;154;90.0;160;100;3;1;0;0;0;1
+7283;15921;1;169;64.0;110;80;3;3;0;0;1;1
+7284;19578;1;163;90.0;120;70;1;3;0;0;1;0
+7285;19597;2;164;58.0;120;80;1;1;0;0;1;1
+7286;21029;1;165;63.0;120;80;1;1;0;0;1;1
+7288;16785;1;166;96.0;140;100;1;1;0;0;1;1
+7289;20482;1;163;97.0;120;80;1;1;0;0;1;1
+7294;15331;1;156;62.0;120;80;1;1;0;0;1;0
+7295;22506;2;150;50.0;120;80;2;1;0;0;1;0
+7296;14502;1;170;101.0;150;90;1;1;0;0;1;1
+7297;17540;2;168;67.0;130;80;1;3;0;0;0;0
+7298;16270;2;176;78.0;120;80;1;1;0;0;1;0
+7299;15913;1;160;80.0;130;90;3;1;1;1;1;0
+7300;22015;1;170;82.0;120;80;1;1;1;0;0;1
+7301;18212;1;165;50.0;110;60;1;1;0;0;1;0
+7302;20628;2;166;71.0;120;80;1;1;0;0;0;1
+7307;22552;2;175;80.0;140;80;2;1;0;0;0;1
+7310;16168;2;176;87.0;120;90;1;1;0;1;1;0
+7311;18887;2;176;92.0;150;100;2;1;0;0;1;1
+7313;15334;1;166;74.0;120;80;1;1;0;0;0;0
+7314;22514;1;162;87.0;130;70;1;1;0;0;1;1
+7315;18973;2;174;80.0;100;70;1;1;0;0;1;0
+7318;21206;2;170;80.0;160;1000;1;1;0;0;1;1
+7319;22061;2;156;69.0;130;90;1;1;0;0;1;1
+7321;17428;1;156;86.0;130;90;1;1;0;0;1;1
+7324;21796;2;175;79.0;150;100;1;1;0;0;1;1
+7326;17525;1;161;93.0;170;100;2;1;0;0;0;1
+7327;20471;1;164;82.0;130;90;1;1;0;0;1;1
+7328;15455;1;168;60.0;110;80;1;1;0;0;0;0
+7330;15938;1;150;54.0;100;80;1;1;0;0;1;0
+7331;20604;2;175;75.0;160;100;2;2;1;0;1;1
+7333;21118;2;163;65.0;120;80;3;1;0;0;1;1
+7334;20358;2;178;85.0;120;80;1;1;0;0;0;1
+7335;21681;2;168;68.0;120;80;1;1;0;0;1;1
+7336;21213;2;166;100.0;125;85;1;1;0;0;1;1
+7338;14684;1;157;46.0;110;80;1;1;0;0;1;0
+7340;18027;1;158;50.0;100;70;1;1;1;0;1;0
+7341;22562;1;178;57.0;140;90;3;1;0;0;1;1
+7342;15988;2;167;65.0;130;90;1;1;0;0;0;1
+7344;15002;1;158;60.2;106;83;1;1;1;0;0;0
+7346;20289;1;153;74.0;120;80;2;1;0;0;1;0
+7347;16502;1;150;46.0;120;70;1;1;0;0;1;0
+7348;17658;2;170;104.0;120;80;1;1;0;0;1;0
+7349;22107;2;165;65.0;125;80;1;1;0;0;0;0
+7350;17438;1;156;50.0;150;90;1;1;0;0;0;1
+7351;18514;1;163;64.0;120;80;1;1;0;0;1;0
+7352;19113;2;178;77.0;120;80;1;1;0;0;1;0
+7355;19525;1;158;52.0;110;70;1;1;0;0;0;1
+7356;16158;2;175;97.0;150;80;1;1;0;0;1;1
+7357;21115;1;164;65.0;100;60;2;1;0;0;1;1
+7360;14619;2;151;58.0;120;80;1;1;0;0;1;0
+7361;18914;1;156;89.0;140;70;2;1;0;0;0;0
+7363;16955;1;165;68.0;110;80;2;1;0;0;1;0
+7366;18894;2;182;101.0;140;100;1;1;0;0;1;1
+7367;18230;1;160;83.0;180;110;2;1;0;0;1;1
+7368;18276;1;159;78.0;120;89;1;1;0;0;1;1
+7371;20407;1;157;89.0;110;75;1;1;0;0;0;1
+7372;18962;2;172;82.0;160;90;2;1;0;0;1;1
+7373;21255;2;162;82.0;170;100;2;1;0;0;1;1
+7374;18554;1;172;80.0;120;80;1;1;0;0;1;0
+7376;20405;2;164;67.0;110;60;2;1;1;0;1;0
+7377;16855;1;168;65.0;120;80;1;1;0;0;0;1
+7378;18873;1;155;74.0;120;95;2;2;0;0;1;0
+7379;15889;1;158;57.0;110;80;1;1;0;0;1;0
+7381;17775;1;169;67.0;120;80;1;1;0;0;1;1
+7383;18125;1;162;78.0;130;80;1;1;0;0;1;0
+7385;21131;2;177;121.0;130;80;1;1;0;0;0;0
+7386;20671;1;174;65.0;160;90;2;2;0;0;1;1
+7389;16042;1;150;50.0;110;80;1;1;0;0;1;0
+7390;23226;1;153;80.0;130;90;1;1;0;0;1;1
+7391;14724;1;158;56.0;120;80;1;1;0;0;1;0
+7392;18136;1;155;59.0;130;80;1;2;0;0;0;0
+7393;23415;2;170;69.0;100;80;1;1;0;0;1;1
+7394;20282;1;165;62.0;120;70;1;1;0;0;0;0
+7395;18020;1;155;49.0;120;80;1;2;0;0;1;1
+7396;21065;2;175;84.0;150;90;1;3;1;0;1;1
+7397;16697;2;168;69.0;120;80;1;1;0;0;0;1
+7398;21167;1;158;68.0;160;90;3;1;0;0;1;1
+7399;16193;1;160;49.0;110;70;1;1;0;0;1;0
+7400;21262;1;160;69.0;140;90;1;1;0;0;1;1
+7401;14506;1;154;52.0;110;70;1;1;0;0;1;1
+7402;19545;1;160;69.0;120;80;2;2;0;0;1;0
+7403;20910;1;159;64.0;100;60;2;2;0;0;1;1
+7404;19013;2;169;78.0;140;80;1;1;0;0;0;1
+7405;18267;2;184;100.0;130;80;1;2;0;0;1;1
+7406;18245;1;168;52.0;120;80;1;1;0;0;0;0
+7408;18287;2;164;105.0;120;79;1;1;0;0;0;1
+7410;20456;2;171;59.0;170;1000;1;1;0;0;1;1
+7416;15367;1;163;58.0;110;70;1;1;0;0;0;0
+7417;22664;2;171;95.0;140;70;3;3;1;1;1;1
+7418;22466;2;174;89.0;130;90;1;1;0;0;0;1
+7420;21192;2;170;65.0;120;80;1;1;0;0;0;0
+7421;21251;1;165;87.0;120;80;1;1;0;0;0;0
+7422;17347;1;165;68.0;120;70;1;2;0;0;1;0
+7426;21861;1;165;72.0;150;80;1;1;0;0;1;1
+7427;19734;1;156;65.0;129;90;1;1;0;0;0;0
+7428;18927;1;160;109.0;140;90;1;1;0;0;1;1
+7432;21360;1;165;82.0;120;80;1;1;0;0;1;0
+7434;19870;1;164;66.0;120;79;1;1;0;0;1;1
+7435;14319;1;156;82.0;138;97;1;1;0;0;1;1
+7436;15289;1;161;67.0;11;70;2;1;0;0;1;0
+7438;22119;1;156;58.0;150;70;1;1;0;0;1;0
+7440;19897;1;169;102.0;110;80;1;1;0;0;1;0
+7441;21327;1;158;104.0;150;90;2;1;0;0;1;1
+7442;14325;1;158;71.0;115;80;1;1;0;0;1;0
+7443;22495;2;172;86.0;130;90;2;1;1;0;1;0
+7445;17620;1;163;67.0;100;70;1;1;0;0;1;0
+7446;17462;2;172;67.0;120;80;1;1;1;1;1;0
+7447;21803;1;165;95.0;120;65;1;1;0;0;0;1
+7448;18942;2;168;72.0;150;90;1;1;1;0;1;1
+7449;21860;2;160;61.0;140;90;1;1;0;0;1;1
+7450;17057;1;161;88.0;160;100;1;1;0;0;1;1
+7453;17814;1;160;78.0;130;90;1;1;0;0;1;1
+7455;20438;2;160;90.0;140;90;1;1;1;1;1;0
+7458;18018;1;159;44.0;160;90;1;1;0;0;1;1
+7460;22137;1;163;114.0;130;80;1;1;0;0;1;1
+7461;20159;1;167;88.0;120;80;1;1;0;0;1;1
+7462;22589;2;160;72.0;130;70;1;1;0;0;1;1
+7463;19651;1;159;84.0;120;80;1;1;0;0;1;0
+7464;19098;1;150;65.0;150;80;2;1;0;0;1;1
+7467;21941;1;160;79.0;160;80;1;1;0;0;1;1
+7468;20325;1;160;57.0;120;80;1;1;0;0;0;0
+7470;19622;1;174;86.0;120;80;1;1;0;0;1;1
+7471;16059;1;158;71.0;120;80;1;1;0;0;1;0
+7472;18996;1;151;74.0;120;80;2;1;0;0;1;1
+7473;21916;1;165;62.0;120;80;1;1;0;0;1;0
+7474;18876;2;177;73.0;120;80;1;1;1;1;1;0
+7475;19644;1;159;67.0;120;80;1;1;0;0;1;0
+7476;20288;2;165;65.0;130;90;1;1;0;0;1;1
+7477;20448;1;170;65.0;140;80;1;1;0;0;1;0
+7478;19836;2;171;79.0;125;95;3;3;0;0;0;1
+7481;19138;1;165;77.0;130;90;2;1;0;0;1;0
+7482;19010;1;154;96.0;150;80;1;1;0;0;0;1
+7483;21939;2;164;69.0;120;80;1;1;1;0;1;0
+7484;22045;2;174;107.0;160;110;1;1;0;0;1;1
+7485;22820;1;156;74.0;150;100;1;2;0;0;1;0
+7486;16061;1;159;86.0;130;80;1;2;0;0;1;1
+7487;15251;2;190;76.0;120;80;1;1;0;0;1;0
+7489;17766;1;156;73.0;120;80;1;1;0;0;1;0
+7490;18176;1;154;59.0;93;62;2;1;0;0;1;0
+7492;19757;2;169;69.0;120;80;1;1;0;0;1;0
+7494;16247;1;169;60.0;120;80;1;1;0;0;1;0
+7495;15208;1;152;58.0;110;90;1;1;0;0;0;0
+7496;22728;1;178;65.0;140;80;1;1;0;0;1;1
+7498;18782;1;152;52.0;180;1000;1;1;0;0;1;1
+7500;19770;2;170;80.0;130;80;1;3;0;0;0;0
+7501;19689;2;168;71.0;120;80;1;1;0;0;1;1
+7505;21200;1;165;60.0;120;80;1;1;0;0;0;0
+7506;14678;2;167;81.0;120;80;1;1;0;1;1;0
+7507;20696;1;162;54.0;120;80;1;1;0;0;0;0
+7508;18241;1;165;85.0;130;90;1;1;0;0;1;0
+7509;19507;1;158;104.0;150;90;1;1;0;1;1;1
+7510;18838;1;165;80.0;120;80;1;1;0;0;1;0
+7512;21803;1;150;80.0;140;80;1;1;0;0;0;1
+7513;17984;1;168;68.0;140;80;1;1;0;0;1;1
+7514;17242;2;171;55.0;100;70;2;1;0;0;1;0
+7515;21868;1;169;104.0;130;80;3;1;0;0;1;1
+7518;15361;1;154;88.0;110;80;1;1;0;0;1;1
+7519;19026;1;165;74.0;120;80;1;1;0;0;1;1
+7520;19062;2;165;62.0;120;80;1;1;0;0;0;0
+7521;21183;2;175;86.0;130;80;3;1;0;0;1;1
+7522;23417;2;174;78.0;140;90;1;1;1;0;1;0
+7524;19673;1;166;98.0;120;70;2;3;0;0;1;1
+7527;18326;2;185;111.0;160;100;1;1;0;0;1;1
+7528;18197;1;149;76.0;140;90;1;1;0;0;1;1
+7529;17514;1;162;59.0;130;80;1;1;0;0;1;1
+7531;15948;1;164;78.0;120;80;1;1;0;0;1;0
+7532;22729;1;156;68.0;110;80;1;1;0;0;1;1
+7533;21229;1;158;82.0;130;90;1;1;0;0;0;0
+7534;20464;1;154;82.0;140;80;1;1;0;0;1;1
+7535;20493;1;156;69.0;120;80;1;1;0;0;0;1
+7536;18215;2;170;70.0;120;80;1;1;0;0;0;0
+7537;22825;2;172;88.0;160;100;1;1;0;0;1;1
+7538;19833;1;149;85.0;160;100;1;1;0;0;1;1
+7540;19486;1;150;60.0;120;80;1;1;0;0;1;0
+7542;16742;1;157;53.0;100;60;1;1;0;0;1;1
+7543;19582;1;148;54.0;120;80;1;1;0;0;1;0
+7545;16815;1;160;88.0;160;100;2;1;0;0;1;1
+7546;14324;2;167;73.0;120;80;1;1;0;0;1;1
+7547;23338;1;162;78.0;120;80;1;1;0;0;1;1
+7548;19008;2;183;99.0;140;90;2;2;1;1;1;1
+7550;23300;1;154;89.0;150;1000;3;1;0;0;0;1
+7551;18860;1;172;82.0;120;80;1;1;0;0;1;1
+7552;22710;1;163;93.0;140;90;3;1;0;0;0;1
+7554;14622;2;171;87.0;150;90;1;1;0;0;1;1
+7556;20579;2;175;66.0;130;90;3;1;1;0;0;1
+7557;19622;1;164;81.0;130;80;1;1;0;0;1;1
+7560;14488;1;159;49.0;90;60;1;1;0;0;0;0
+7561;15344;2;175;82.0;110;60;1;1;0;0;1;1
+7562;17795;1;165;65.0;120;80;1;1;0;0;0;0
+7563;19067;1;168;65.0;140;90;1;1;0;0;1;1
+7566;21626;1;165;73.0;120;80;1;1;0;0;0;0
+7569;21097;1;168;60.0;100;70;1;1;0;0;1;0
+7570;16655;1;168;80.0;90;70;1;1;0;0;1;0
+7571;21364;2;164;78.0;120;80;1;1;0;0;1;0
+7573;19691;1;150;60.0;110;90;1;1;0;0;0;0
+7574;20389;1;159;64.0;120;80;1;1;0;0;1;0
+7576;23265;1;156;50.0;110;70;1;1;0;0;1;0
+7577;21971;1;160;55.0;120;80;1;1;0;0;0;1
+7578;21984;1;179;70.0;110;70;1;1;0;0;1;0
+7579;22315;1;154;64.5;130;80;2;2;0;0;0;0
+7581;22531;1;140;52.0;130;80;1;1;0;0;1;1
+7583;21731;1;157;47.0;110;90;2;1;0;0;1;0
+7584;18329;1;162;74.0;150;1000;1;1;1;0;1;1
+7585;20511;1;149;57.0;90;60;2;2;0;0;1;1
+7586;23238;1;168;72.0;140;90;1;1;0;0;1;0
+7587;17587;1;158;65.0;150;90;1;1;0;0;0;1
+7589;16722;1;165;50.0;120;70;1;1;0;0;1;0
+7590;20984;1;164;102.0;120;30;2;1;0;0;1;0
+7591;18994;2;182;96.0;150;1000;2;1;0;0;1;0
+7592;18964;1;158;74.0;150;100;2;1;0;0;1;1
+7593;20479;2;164;64.0;100;60;3;1;1;0;1;0
+7594;18991;1;163;74.0;120;80;1;1;0;0;1;0
+7596;16269;2;168;67.0;130;90;1;1;0;0;1;1
+7597;20589;1;152;78.0;140;90;1;1;0;0;1;0
+7598;23358;1;165;93.0;130;90;1;1;0;0;0;1
+7599;20263;2;168;77.0;130;90;1;1;0;0;0;0
+7600;15547;1;168;53.0;120;85;2;1;0;0;1;0
+7602;23340;1;158;58.7;110;70;1;1;0;0;0;1
+7604;18128;1;152;67.0;120;80;3;1;0;0;1;1
+7605;18139;2;175;68.0;120;80;1;1;0;0;1;0
+7606;22076;1;157;85.0;120;80;1;1;0;0;1;0
+7607;21838;2;173;58.0;120;80;2;1;1;0;1;1
+7608;18878;1;156;78.0;110;80;1;1;0;0;1;0
+7609;19286;2;165;62.0;110;80;1;1;0;0;0;0
+7611;19013;1;164;72.0;120;80;2;1;0;0;1;0
+7614;15150;1;160;93.0;133;86;1;1;0;0;0;0
+7618;19944;1;169;70.0;120;80;1;1;0;0;1;0
+7619;18088;1;162;75.0;120;90;1;1;0;0;1;0
+7620;22722;2;169;65.0;130;80;2;1;1;0;1;0
+7621;16006;2;165;65.0;120;80;1;1;1;0;0;1
+7622;22582;2;164;69.0;172;75;3;1;0;0;1;0
+7623;19544;1;169;65.0;110;70;1;1;0;0;1;0
+7625;18970;1;170;72.0;110;80;1;1;0;0;1;1
+7629;19648;1;160;47.0;150;90;1;1;0;0;1;1
+7630;22731;1;151;68.0;150;1000;1;1;0;0;1;1
+7633;21290;1;165;62.0;120;80;1;1;0;0;0;1
+7634;16755;1;167;41.0;110;80;1;1;0;0;1;0
+7635;21780;1;151;68.0;130;90;3;1;0;0;1;1
+7636;22601;2;164;65.0;140;90;3;1;0;0;1;1
+7637;17740;2;176;92.0;120;80;1;1;0;0;1;0
+7639;22412;1;163;58.0;140;80;3;1;0;0;1;1
+7641;21379;2;165;70.0;120;80;1;1;0;0;0;0
+7642;19692;2;169;72.0;120;70;1;1;0;0;0;1
+7643;20618;1;170;68.0;120;80;1;1;0;0;1;0
+7644;21874;2;175;77.0;120;80;1;1;0;0;1;1
+7645;22489;1;152;87.0;160;100;2;2;0;0;1;0
+7647;22062;2;160;60.0;120;80;1;1;0;0;1;1
+7648;19205;2;168;67.0;120;80;1;1;0;0;1;0
+7649;19783;1;168;66.0;120;80;1;1;0;0;1;0
+7650;18055;2;164;65.0;120;80;1;1;0;0;1;0
+7651;20493;2;168;78.0;120;80;1;1;0;0;1;1
+7652;21845;1;158;54.0;140;80;1;1;0;0;1;1
+7653;19704;2;165;74.0;130;90;1;1;0;0;1;1
+7654;19003;1;162;74.0;110;60;1;1;0;0;1;0
+7655;19861;1;168;72.0;130;80;1;1;0;0;0;1
+7656;14933;1;165;75.0;120;80;1;1;0;0;1;0
+7657;21240;1;162;69.0;7;80;1;1;0;0;1;0
+7658;19141;1;149;52.0;140;90;2;1;0;0;1;0
+7659;19681;2;170;71.0;120;80;1;1;0;0;1;0
+7660;17561;1;156;80.0;120;80;2;1;0;0;1;0
+7661;16809;1;165;70.0;110;90;1;1;0;0;1;0
+7662;21994;2;170;68.0;120;80;1;1;0;0;1;0
+7663;21771;2;179;84.0;130;80;2;1;0;0;0;1
+7664;16512;1;160;60.0;110;70;1;1;0;0;1;0
+7665;20397;2;172;56.0;120;80;2;1;0;1;1;0
+7666;18941;1;164;66.0;150;100;3;1;0;0;1;1
+7667;19067;1;162;72.0;140;90;1;1;0;0;1;0
+7668;18798;2;175;72.0;120;80;2;2;0;0;1;0
+7669;20626;1;158;57.0;120;80;1;1;0;0;1;0
+7670;21276;1;168;90.0;170;100;2;1;0;0;1;1
+7672;16805;1;152;60.0;100;60;1;1;0;0;0;0
+7673;20315;1;157;66.0;160;1000;3;1;0;0;1;1
+7674;16069;2;167;69.0;120;80;1;1;0;0;0;0
+7675;19553;2;167;72.0;130;80;1;1;0;0;1;0
+7676;18226;1;156;63.0;130;80;1;1;0;0;1;1
+7678;23354;2;172;76.0;120;80;2;2;0;0;1;0
+7679;18821;2;156;68.0;140;90;1;1;0;0;1;1
+7680;20542;1;169;85.0;120;80;1;1;0;0;1;1
+7681;22587;2;180;92.0;130;80;2;1;0;0;1;0
+7686;19041;2;165;78.0;140;90;1;1;1;0;1;1
+7687;23234;1;164;84.0;130;80;1;1;0;0;0;1
+7688;19531;1;156;90.0;110;80;2;1;0;0;1;0
+7689;19520;1;160;60.0;110;70;3;1;0;0;1;1
+7690;21060;2;160;60.0;110;70;1;1;0;0;1;0
+7691;22764;1;160;85.0;150;80;3;1;0;0;0;0
+7692;16526;2;169;74.0;133;96;2;1;0;0;1;1
+7693;20358;1;164;76.0;170;90;3;3;0;0;1;1
+7694;19072;2;174;70.0;120;80;1;1;1;0;1;0
+7696;22563;1;169;75.0;140;80;1;2;0;0;0;1
+7697;19062;1;158;67.0;110;80;2;1;0;0;1;0
+7698;19902;1;168;80.0;130;85;1;1;0;0;1;1
+7699;17222;2;174;92.0;120;80;1;1;1;0;1;0
+7700;15270;1;164;78.0;100;80;1;2;0;0;1;0
+7701;18357;1;165;62.0;120;60;1;1;0;0;1;0
+7703;21321;2;178;82.0;150;90;1;1;0;0;1;1
+7706;18334;1;168;67.0;120;80;1;1;0;0;1;0
+7708;19057;2;162;62.0;120;80;2;1;0;0;1;0
+7709;17512;1;175;69.0;120;70;1;1;0;0;1;0
+7710;19491;2;170;121.0;140;90;3;1;0;1;0;1
+7711;21908;1;173;68.0;140;90;1;1;0;0;1;1
+7713;19322;1;155;60.0;120;80;3;3;0;0;1;0
+7715;17635;2;185;85.0;130;90;2;1;0;0;0;1
+7716;15154;1;158;62.0;120;80;2;2;0;0;1;0
+7717;21075;1;160;55.0;120;70;1;1;0;0;1;1
+7719;17630;2;167;83.0;120;80;1;1;0;1;1;0
+7720;19818;1;166;55.0;120;80;1;1;0;0;1;0
+7721;21772;1;165;88.0;150;90;1;2;0;0;0;1
+7722;21907;1;165;80.0;140;90;3;2;0;0;1;1
+7723;14508;1;165;65.0;120;80;1;1;0;0;0;0
+7724;20683;1;169;70.0;130;80;1;1;0;0;1;0
+7725;16916;2;182;124.0;170;100;2;1;1;1;1;1
+7726;16841;1;163;57.0;100;60;1;1;1;0;1;1
+7727;19785;2;173;101.0;160;100;1;1;0;0;1;1
+7728;15351;2;165;66.0;120;80;2;1;1;0;1;1
+7729;19980;1;169;79.0;140;80;1;1;0;0;1;1
+7732;21093;1;165;56.0;120;80;3;3;0;0;1;0
+7733;20544;1;168;72.0;140;90;2;1;0;0;0;1
+7734;18559;1;168;56.0;120;80;1;1;0;0;1;0
+7735;19493;1;168;90.5;100;60;2;1;0;0;0;0
+7736;20562;1;151;67.0;190;1000;2;1;0;1;1;1
+7737;18968;1;165;110.0;95;130;1;1;0;1;1;1
+7738;18946;1;165;67.0;120;80;1;1;0;0;1;0
+7739;14518;1;170;65.0;110;70;1;1;0;0;0;0
+7740;22712;1;151;57.0;120;80;1;1;0;0;1;1
+7745;22153;1;158;95.0;110;70;3;1;0;0;1;1
+7747;19686;1;160;60.0;160;80;1;1;0;0;1;0
+7749;21079;1;166;65.0;120;70;2;1;0;0;0;0
+7750;15249;1;156;65.0;120;80;1;1;0;0;1;0
+7751;21258;2;184;84.0;160;110;3;1;1;0;1;1
+7753;15277;1;162;56.0;110;80;1;1;0;0;1;0
+7754;18182;1;165;78.0;145;90;3;1;0;0;1;1
+7755;15363;2;170;75.0;110;70;1;1;0;0;1;0
+7756;19007;1;150;53.0;100;60;1;1;1;0;1;0
+7757;19617;1;164;84.0;120;70;1;1;0;0;0;1
+7760;17662;1;174;65.0;140;90;1;1;0;0;0;0
+7761;18897;1;158;61.0;110;70;2;2;0;0;1;1
+7767;21754;2;152;69.0;120;80;1;1;0;0;1;0
+7768;17392;2;164;63.0;110;70;1;1;0;0;1;0
+7769;21775;1;157;88.0;120;80;3;1;0;0;1;1
+7770;19534;1;162;67.0;179;113;1;2;0;0;0;1
+7771;23224;2;173;71.0;140;80;1;1;0;0;1;0
+7772;21069;2;157;60.0;120;80;1;1;0;0;1;0
+7773;18350;1;150;56.0;100;70;1;1;0;0;0;0
+7775;15977;1;165;97.0;120;80;2;2;0;0;1;0
+7776;21944;1;160;60.0;140;90;1;1;0;0;1;1
+7777;19681;2;187;82.0;170;110;3;3;0;0;1;1
+7780;18298;1;160;65.0;100;70;1;2;0;1;1;0
+7781;15869;2;167;83.0;140;90;2;1;0;0;1;0
+7784;21739;1;153;65.0;100;60;1;1;0;0;1;0
+7785;19078;2;182;70.0;130;90;1;1;0;0;1;1
+7787;19415;1;180;92.0;130;90;3;3;0;0;1;1
+7788;17549;1;170;80.0;140;90;2;1;0;0;1;1
+7793;15130;2;182;77.0;130;80;1;1;0;0;1;0
+7794;18067;1;150;65.0;120;80;1;1;0;0;0;0
+7795;20612;2;174;80.0;130;90;1;1;1;1;1;1
+7796;23258;1;155;70.0;140;90;2;1;0;0;0;0
+7797;18131;1;151;67.0;140;90;1;1;0;0;1;1
+7799;23089;2;181;115.0;120;80;1;1;0;0;1;0
+7800;23184;2;169;82.0;130;80;3;1;1;0;0;1
+7801;20566;1;157;72.0;100;70;2;1;0;0;0;0
+7802;19796;1;165;65.0;120;79;1;1;0;0;0;1
+7803;19781;2;173;70.0;120;80;1;1;0;0;1;0
+7804;22454;1;160;83.0;135;80;2;1;0;0;1;1
+7805;22588;1;151;51.0;140;90;1;1;0;0;1;1
+7806;15915;1;165;60.0;120;80;1;1;0;0;1;0
+7807;19127;2;171;54.0;110;70;1;1;1;1;1;0
+7808;16865;1;158;98.0;120;80;1;1;0;0;1;0
+7809;18532;1;162;78.0;110;70;1;3;0;0;1;0
+7811;18758;1;157;68.0;110;80;2;1;0;0;1;0
+7813;17525;2;156;59.0;120;80;1;1;0;0;0;0
+7817;20528;2;183;92.0;120;70;1;1;0;0;1;1
+7818;16030;1;158;54.0;120;80;1;1;0;0;1;0
+7820;23368;2;167;73.0;140;90;2;1;0;0;1;1
+7821;18121;1;154;70.0;110;70;1;1;0;0;1;0
+7822;21952;1;159;76.0;140;80;1;1;0;0;1;0
+7824;18370;1;156;45.0;110;70;1;1;0;0;1;0
+7825;18310;1;174;52.0;120;80;1;1;0;0;1;0
+7828;18399;2;169;69.0;140;90;1;1;0;0;1;1
+7829;20198;1;165;82.0;120;80;2;3;0;0;1;1
+7830;21250;1;162;53.0;120;80;1;1;0;0;0;0
+7831;23353;1;163;68.0;120;80;1;1;0;0;1;1
+7832;19183;1;165;72.0;120;80;1;1;0;0;1;0
+7833;17095;2;164;75.0;130;90;1;1;0;0;1;0
+7835;17296;1;166;97.0;130;90;1;1;0;0;0;1
+7836;18417;2;185;79.0;110;70;1;1;0;0;1;0
+7839;23154;2;174;68.0;120;80;1;1;1;0;0;0
+7840;19100;1;155;86.0;130;80;1;1;0;0;0;1
+7842;16042;1;160;88.0;120;80;1;1;0;0;1;0
+7843;21903;1;160;65.0;120;80;2;1;0;0;1;1
+7845;21769;1;154;78.0;140;80;1;1;0;0;1;0
+7848;20860;1;165;66.0;120;80;1;1;0;0;1;0
+7849;19767;1;162;50.0;90;60;1;1;0;0;1;0
+7850;21932;1;164;73.0;120;70;1;1;0;0;1;0
+7851;19816;1;156;62.0;140;90;2;1;0;0;1;0
+7852;18866;1;168;62.0;110;80;1;1;0;0;1;1
+7853;23420;1;160;58.0;130;80;3;2;0;0;1;1
+7854;22736;1;155;96.0;130;80;1;1;0;0;1;1
+7855;19692;1;157;66.0;140;80;3;1;0;0;1;0
+7856;20180;2;169;107.0;120;90;1;2;1;0;0;1
+7860;23344;1;155;45.0;150;90;1;1;0;0;1;1
+7861;17553;2;170;83.0;120;80;1;1;1;1;1;0
+7862;18833;2;156;56.0;130;80;1;1;0;0;1;0
+7863;16661;1;154;56.0;90;60;2;2;0;0;0;1
+7864;21142;2;152;88.0;120;90;1;1;0;0;1;1
+7865;21225;1;158;71.0;110;70;2;1;0;1;1;0
+7866;16523;1;157;46.0;110;70;1;1;0;0;1;0
+7867;20314;2;170;75.0;120;80;1;1;0;0;1;1
+7868;19723;1;168;95.0;140;90;3;3;0;0;1;1
+7869;19694;1;163;76.0;140;90;1;1;0;0;1;1
+7870;16916;1;159;74.0;110;70;2;1;0;0;1;0
+7871;15205;2;171;94.0;120;83;2;2;0;0;1;0
+7872;17636;1;162;65.0;120;80;1;1;0;0;1;0
+7873;23505;1;157;52.0;140;90;1;1;0;0;1;1
+7874;23337;2;164;85.0;110;80;3;1;0;0;0;1
+7875;22621;2;165;67.0;130;90;1;1;0;0;1;1
+7877;21026;1;171;59.0;120;80;1;1;0;1;1;0
+7878;18142;2;165;100.0;130;90;1;1;0;0;1;1
+7880;17340;2;169;60.0;90;60;1;1;0;0;1;0
+7882;19889;2;170;81.0;110;80;1;1;0;0;1;1
+7884;21159;2;170;80.0;130;90;1;1;0;0;1;0
+7885;14642;1;158;72.0;120;80;1;1;0;0;1;0
+7886;18848;2;165;72.0;140;90;3;3;0;0;1;1
+7887;18506;2;189;98.0;130;80;1;1;1;0;1;0
+7888;19642;2;173;69.0;130;90;1;1;0;0;0;1
+7889;19627;1;163;67.0;110;70;1;1;0;0;1;1
+7890;15146;1;165;73.0;110;70;1;1;0;0;1;0
+7892;19440;1;158;105.0;138;80;2;3;0;0;1;0
+7893;15374;2;160;60.0;120;80;1;1;0;0;1;1
+7894;15208;1;160;69.0;110;70;1;1;0;0;1;0
+7895;19622;1;160;60.0;100;60;2;1;0;0;1;1
+7896;20261;1;148;97.0;130;90;3;1;0;0;1;1
+7897;21260;1;162;105.0;140;90;1;1;0;0;1;1
+7898;14649;1;168;52.0;120;80;1;1;0;0;0;0
+7899;20445;1;164;77.0;140;80;1;1;0;0;1;1
+7900;20645;1;159;77.0;120;80;1;1;0;0;1;0
+7901;19019;1;165;90.0;120;80;1;1;0;0;1;0
+7902;16941;1;170;56.0;120;80;1;1;0;0;0;0
+7903;19015;1;162;64.0;110;80;1;1;0;0;0;1
+7907;21128;1;149;71.0;150;90;2;1;0;0;1;1
+7908;19916;2;186;88.0;120;70;1;1;0;0;1;0
+7909;20918;1;163;118.0;140;90;3;3;0;0;1;1
+7910;16757;2;168;63.0;120;70;1;1;1;0;1;0
+7911;19565;1;158;84.0;150;90;1;1;0;0;1;0
+7912;19598;2;172;83.0;129;90;1;1;1;0;1;0
+7914;18230;1;157;70.0;90;60;1;1;0;0;1;0
+7915;21173;1;172;71.0;150;100;2;2;0;0;1;1
+7916;20399;1;154;62.0;110;80;1;1;0;0;1;0
+7917;17434;1;151;66.0;160;100;1;1;0;0;1;1
+7918;17308;2;160;70.0;110;70;3;3;0;0;1;0
+7919;20453;1;163;61.0;140;80;1;1;0;0;1;0
+7920;19871;1;164;68.0;120;80;1;1;1;1;1;0
+7921;23264;1;158;78.0;140;100;2;1;0;0;1;0
+7922;21085;1;172;85.0;130;90;3;3;0;0;1;0
+7923;21266;2;176;79.0;120;80;1;1;1;1;1;0
+7924;18352;1;165;60.0;120;80;1;1;0;0;0;1
+7925;20349;2;176;80.0;160;1000;2;1;0;1;1;1
+7927;18824;1;166;60.0;140;90;3;1;0;0;0;1
+7928;23086;1;157;62.0;130;80;2;1;0;0;1;1
+7929;14374;2;170;68.0;110;80;1;1;1;1;1;0
+7934;20311;2;172;80.0;120;80;1;1;0;0;1;1
+7935;21181;2;182;128.0;140;80;1;1;0;0;0;1
+7936;19652;2;188;72.0;120;80;1;1;0;1;1;0
+7940;23192;2;167;76.0;140;80;3;3;0;0;1;1
+7941;18316;2;169;65.0;120;80;2;1;0;0;0;1
+7942;19789;1;171;61.0;110;90;1;1;0;0;1;0
+7943;17635;2;160;55.0;120;80;1;1;0;0;1;1
+7944;20472;2;174;63.0;100;60;1;1;0;0;1;0
+7945;21196;1;144;70.0;130;70;3;3;0;0;1;1
+7946;18831;1;150;65.0;140;80;1;1;0;0;1;0
+7947;17434;2;161;92.0;110;70;1;1;1;0;1;1
+7949;22701;2;160;68.0;120;80;1;1;0;0;1;0
+7950;21129;1;160;80.0;125;70;1;1;0;0;1;1
+7951;22454;1;168;80.0;120;80;1;2;0;0;1;0
+7953;18127;1;175;85.0;120;80;1;1;0;1;1;0
+7954;23303;2;175;77.0;120;80;3;1;0;0;1;1
+7955;19644;1;165;85.0;130;80;1;3;0;0;1;0
+7957;18432;1;169;69.0;110;70;1;1;0;0;1;1
+7960;15399;2;165;76.0;130;80;1;1;0;0;1;0
+7962;16535;2;161;86.0;130;90;2;2;0;0;1;0
+7963;18100;1;164;67.0;110;70;1;1;0;0;1;0
+7964;22674;1;164;95.0;140;90;1;2;0;0;0;1
+7965;18914;2;177;74.0;120;80;1;1;0;0;1;1
+7966;16078;1;158;62.0;150;90;1;1;0;0;1;1
+7967;22698;2;169;63.0;150;90;3;1;1;0;0;1
+7969;21260;1;160;75.0;110;80;1;1;0;0;0;0
+7971;15454;1;154;53.0;110;70;1;1;0;0;0;0
+7972;21146;1;168;80.0;130;90;3;1;0;0;1;1
+7973;17753;1;160;84.0;120;70;1;2;0;0;1;1
+7974;18389;1;165;71.0;120;80;1;1;0;0;1;0
+7975;18720;1;156;59.0;110;70;1;1;0;0;1;0
+7976;21170;2;167;87.0;170;90;1;2;0;0;1;0
+7977;18422;1;160;65.0;120;80;1;1;0;0;1;0
+7978;19218;1;168;68.0;120;80;1;3;0;0;1;0
+7980;17592;1;167;63.0;120;80;1;1;0;0;0;0
+7982;17450;1;170;67.0;120;80;1;1;0;0;0;1
+7985;22054;1;170;69.0;140;90;1;1;0;0;1;0
+7986;20997;1;161;71.0;160;1100;1;1;0;0;1;1
+7987;21183;2;187;120.0;140;80;2;1;1;0;1;1
+7988;16290;1;162;58.0;120;80;1;1;0;0;1;1
+7989;20314;2;174;75.0;130;80;2;1;0;0;1;1
+7990;14545;1;160;50.0;110;70;1;1;0;0;1;0
+7991;19049;1;162;65.0;120;80;1;1;0;0;0;0
+7992;20652;2;167;63.0;120;80;1;1;0;0;1;0
+7994;18269;1;162;72.0;110;80;1;1;0;0;1;0
+7996;15194;1;167;71.0;110;90;1;1;0;0;1;0
+7997;19839;2;176;85.0;150;80;1;1;0;0;1;1
+7998;20007;1;163;82.0;130;80;1;1;0;0;1;0
+7999;18189;1;165;83.0;140;90;1;2;0;0;1;1
+8000;14684;2;184;70.0;120;80;1;1;0;0;1;0
+8001;20649;1;168;59.0;120;80;1;1;0;0;0;1
+8002;17704;2;172;78.0;110;70;1;3;0;0;1;0
+8003;20414;1;173;76.0;120;80;1;1;0;0;1;0
+8004;19733;1;165;65.0;140;90;1;1;0;0;1;1
+8005;19690;1;168;72.0;120;79;1;1;0;0;1;1
+8006;19741;1;167;59.0;110;70;1;1;0;0;1;1
+8009;18356;2;164;58.0;120;80;3;3;1;1;0;0
+8011;20474;1;163;78.0;130;80;3;3;0;0;1;1
+8012;15360;2;176;80.0;130;90;1;1;0;1;1;0
+8013;20965;2;160;62.0;120;80;1;1;0;0;1;0
+8016;20584;2;171;65.0;140;100;2;1;0;1;1;1
+8017;20425;2;165;61.0;120;70;1;1;0;0;0;0
+8019;19094;1;162;97.0;135;90;1;1;0;0;1;0
+8020;20932;1;160;60.0;120;80;1;1;0;0;1;1
+8021;22464;2;157;63.0;150;90;1;1;0;0;1;1
+8024;18080;1;159;73.0;160;90;1;1;0;0;1;0
+8025;17530;2;173;73.0;110;80;1;1;1;0;1;0
+8026;23209;2;173;97.0;140;90;2;1;0;0;1;1
+8028;19591;1;170;85.0;120;80;1;1;0;0;1;0
+8029;19998;1;168;76.0;160;80;1;1;0;0;1;1
+8030;16122;2;169;56.0;120;90;1;1;0;0;1;1
+8031;23470;1;161;112.0;140;90;3;1;0;0;1;0
+8032;23328;2;162;60.0;120;80;1;1;0;0;1;1
+8034;23288;1;152;86.0;140;80;3;3;0;0;1;1
+8037;18165;2;174;90.0;130;70;3;1;0;0;1;1
+8042;19784;1;167;70.0;120;80;1;1;0;0;1;1
+8044;22533;2;174;57.0;130;60;1;1;0;0;1;0
+8046;18912;2;169;69.0;120;80;1;3;0;0;0;0
+8047;20336;2;170;50.0;120;80;1;1;0;0;1;0
+8050;20999;2;162;81.0;130;90;3;3;0;0;1;1
+8051;14627;1;162;90.0;150;90;1;1;0;0;1;1
+8052;21120;1;166;65.0;140;90;3;2;0;0;1;1
+8055;21796;1;174;84.0;120;80;1;1;0;0;1;0
+8056;21246;2;171;110.0;130;80;3;3;0;0;1;1
+8057;22004;2;169;105.0;150;100;3;1;1;0;1;1
+8058;18091;2;183;80.0;110;70;1;1;0;0;1;1
+8059;21797;1;158;65.0;160;100;3;1;0;0;1;1
+8061;18871;2;170;82.0;140;90;1;1;0;0;1;1
+8062;23412;1;152;63.0;140;100;3;3;0;0;1;0
+8063;17038;1;174;65.0;120;80;1;1;0;0;1;1
+8064;19736;1;162;80.0;130;80;1;1;0;0;1;0
+8065;14691;2;172;74.0;120;80;1;1;0;0;1;0
+8067;22579;1;165;65.0;120;90;1;1;0;0;0;1
+8068;20310;1;163;68.0;180;100;1;1;0;0;1;1
+8070;18946;1;168;76.0;120;80;1;1;0;0;0;1
+8072;21024;1;152;75.0;110;80;1;1;0;0;1;1
+8074;20235;1;168;113.0;120;70;1;1;0;0;0;1
+8075;15311;1;159;62.0;100;70;2;1;0;0;1;1
+8077;21147;2;174;64.0;140;90;1;1;0;0;1;1
+8078;18410;1;158;78.0;130;80;1;1;0;0;0;1
+8079;18084;2;172;82.0;110;80;1;1;0;0;1;0
+8080;16114;1;168;65.0;110;70;1;1;0;0;1;0
+8081;15427;1;164;72.0;100;70;1;1;0;0;1;1
+8082;20327;1;165;65.0;150;80;1;1;0;0;1;1
+8083;19762;1;169;80.0;130;80;1;1;0;0;1;1
+8086;18845;1;168;75.0;120;80;1;1;0;0;1;1
+8088;15981;2;172;76.0;120;80;1;1;0;0;1;0
+8089;16906;1;158;78.0;150;100;1;1;0;0;1;1
+8091;14824;2;174;82.0;120;80;1;1;0;0;1;0
+8092;23322;1;162;60.0;120;80;1;1;0;0;1;0
+8098;18040;2;162;65.0;130;70;1;1;0;0;0;1
+8099;23300;1;152;76.0;140;90;1;1;0;0;1;1
+8100;14529;2;176;57.0;120;80;1;1;1;1;1;0
+8105;23382;1;165;83.0;160;90;2;2;0;0;0;1
+8109;23296;2;170;84.0;120;80;1;1;0;0;0;0
+8111;21770;1;155;87.0;130;90;1;1;0;0;0;1
+8112;23454;1;150;71.0;140;1000;1;1;0;0;0;0
+8113;21956;1;158;68.0;120;60;1;1;0;0;1;1
+8114;21699;1;156;53.0;150;90;3;1;0;0;1;1
+8115;21929;1;160;75.0;130;90;1;1;0;0;1;0
+8116;19786;1;160;80.0;120;80;1;1;0;0;0;1
+8117;21345;2;164;73.0;160;90;1;1;0;0;1;1
+8118;19753;2;172;81.0;160;120;1;1;0;0;0;1
+8120;15877;1;158;65.0;120;80;1;1;0;1;1;0
+8121;19508;1;159;64.0;120;70;1;1;0;0;0;0
+8122;18952;2;181;102.0;180;100;2;1;0;0;1;1
+8123;18255;2;175;68.0;130;80;1;1;0;0;1;0
+8124;18190;1;155;46.0;85;60;2;1;0;0;1;1
+8125;19059;1;160;60.0;120;80;1;1;0;0;1;0
+8127;16845;2;168;75.0;120;85;1;1;0;0;1;0
+8128;16571;1;174;76.0;100;80;2;2;0;0;1;0
+8130;19639;1;158;56.0;110;80;1;1;0;0;0;0
+8131;18062;1;164;64.0;110;80;1;1;0;0;1;1
+8132;18336;1;165;60.0;120;80;1;2;0;0;1;1
+8133;21149;1;153;54.0;120;80;1;1;0;0;1;0
+8134;20263;1;156;70.0;110;80;2;1;0;0;1;0
+8136;20308;2;165;60.0;120;80;1;1;0;0;1;1
+8139;17514;1;174;69.0;160;100;2;1;0;0;1;1
+8140;20759;1;165;69.0;120;80;1;1;0;0;1;0
+8142;19693;2;168;68.0;120;80;1;1;0;0;1;0
+8143;22118;1;165;90.0;140;80;1;1;0;0;1;1
+8144;19707;1;163;83.0;120;80;1;1;0;0;1;0
+8146;20447;1;156;80.0;110;80;2;3;0;0;1;0
+8147;16079;2;170;82.0;120;80;1;1;1;1;1;0
+8149;21034;1;160;59.0;150;100;2;1;0;0;1;1
+8150;21139;2;165;75.0;120;80;1;1;0;0;1;0
+8151;16830;2;172;91.0;120;80;1;2;0;0;1;0
+8153;19117;2;157;75.0;110;70;3;1;0;0;1;0
+8155;22737;1;169;66.0;130;70;1;1;0;0;1;1
+8157;19157;1;165;65.0;120;90;1;1;0;0;0;1
+8158;20316;1;165;105.0;120;80;1;1;0;0;1;1
+8159;15181;2;181;82.0;120;80;1;1;1;0;1;0
+8161;14664;1;164;79.0;95;70;1;1;1;0;1;0
+8162;14333;2;172;81.0;120;80;1;1;0;0;1;0
+8163;23093;1;150;48.0;110;90;1;1;0;0;0;0
+8164;22696;2;169;68.0;110;90;1;1;0;0;1;0
+8165;22659;1;165;88.0;150;90;1;1;0;0;1;1
+8166;23266;2;164;96.0;130;60;1;1;0;0;0;1
+8169;15995;2;176;73.0;120;90;1;1;0;0;0;0
+8170;22395;1;156;86.0;160;90;1;1;1;0;1;1
+8171;23300;2;168;69.0;120;80;1;1;0;0;0;1
+8172;21778;1;150;76.0;120;80;3;1;0;0;1;1
+8173;21600;2;170;67.0;120;80;1;1;0;0;1;0
+8174;17466;2;168;71.0;120;80;1;1;1;1;1;0
+8175;22783;2;172;78.0;120;80;1;1;0;0;1;0
+8176;20264;1;169;78.0;130;70;2;1;0;0;1;1
+8179;16021;1;187;87.0;130;70;1;1;0;0;0;1
+8180;21742;1;168;100.0;140;80;1;1;0;0;1;1
+8181;21148;1;173;80.0;120;80;2;2;1;0;1;1
+8182;20878;1;146;69.0;120;80;1;1;0;0;0;1
+8183;19810;1;163;70.0;110;70;1;1;0;0;1;0
+8184;22518;1;164;74.0;140;100;3;1;0;0;1;1
+8187;21343;1;160;68.0;120;80;1;1;0;0;1;1
+8188;21881;1;155;105.0;130;80;1;1;0;0;1;1
+8189;23317;2;168;67.0;90;80;1;1;1;0;1;0
+8190;15860;1;150;66.0;80;120;1;1;0;0;1;0
+8191;14512;1;164;74.0;110;80;1;1;0;0;0;0
+8192;15354;1;172;68.0;120;80;1;3;0;0;1;0
+8194;18883;2;169;78.0;160;90;2;2;0;0;1;1
+8195;14644;1;160;55.0;120;80;1;1;0;0;1;0
+8196;19089;1;152;109.0;90;60;1;1;0;0;1;0
+8197;22564;1;158;93.0;120;80;3;2;0;0;1;0
+8198;16835;1;165;60.0;120;80;1;1;0;0;1;0
+8199;21737;1;150;90.0;120;80;2;1;0;0;1;0
+8200;15270;1;162;70.0;150;80;3;1;0;0;1;1
+8201;19037;2;160;75.0;160;90;2;2;1;0;1;1
+8202;21729;1;168;68.0;120;80;1;1;0;0;1;1
+8203;15836;1;158;60.0;110;70;1;1;0;0;0;0
+8204;20591;1;150;53.0;120;80;1;1;0;0;1;0
+8205;17359;1;137;57.0;120;79;2;1;0;0;1;0
+8206;20869;2;172;67.0;130;90;2;2;1;0;1;0
+8208;14661;1;164;58.0;120;80;1;1;0;0;1;0
+8209;20939;1;158;75.0;110;70;2;1;0;0;1;0
+8210;15892;1;149;74.0;130;90;1;1;0;0;1;1
+8211;18284;1;158;80.0;130;80;3;1;0;0;1;1
+8212;20631;1;165;71.0;130;90;1;1;0;0;1;1
+8213;16738;1;167;71.0;110;70;1;1;0;0;1;0
+8214;15350;2;170;80.0;140;90;2;1;0;0;1;1
+8215;20225;1;163;63.0;140;90;1;1;0;0;1;1
+8216;19168;2;172;83.0;110;80;1;1;0;0;1;0
+8217;19035;1;165;65.0;120;79;2;1;0;0;0;0
+8218;23337;1;159;91.0;150;95;2;1;1;0;0;1
+8219;15187;2;185;82.0;120;80;1;1;0;0;0;0
+8220;14449;1;156;65.0;110;80;1;1;0;0;1;0
+8221;20332;1;160;52.0;110;70;2;1;0;0;1;0
+8222;14668;1;165;63.0;120;80;1;1;0;0;1;1
+8223;17424;1;172;85.0;120;80;2;2;0;0;0;1
+8224;23064;1;165;110.0;140;80;3;2;0;0;1;1
+8225;21387;1;172;61.0;120;80;1;1;0;0;0;0
+8226;17663;1;151;37.0;120;80;1;1;0;0;1;0
+8227;21012;2;170;65.0;120;82;1;1;0;0;1;0
+8229;14451;1;153;48.0;120;80;1;1;0;0;1;0
+8230;16835;2;174;65.0;120;80;1;1;0;0;1;0
+8231;19438;1;192;70.0;130;90;1;1;0;0;1;0
+8232;20460;1;165;58.0;130;80;1;1;0;0;1;1
+8233;21287;2;165;70.0;120;80;1;1;0;0;0;1
+8235;21657;2;169;91.0;120;80;2;1;1;1;1;0
+8237;16170;2;165;68.0;120;90;2;1;0;0;0;0
+8238;21988;1;160;66.0;130;80;1;1;0;0;1;1
+8239;17536;1;157;55.0;140;90;1;1;0;0;1;0
+8240;20314;1;165;60.0;110;70;3;3;0;0;1;1
+8241;18378;1;156;52.0;120;80;1;1;0;0;1;1
+8242;19842;2;170;80.0;140;90;1;1;0;0;1;1
+8243;18170;1;166;74.0;120;90;1;1;1;0;1;0
+8244;18742;1;160;60.0;120;80;1;1;0;0;1;1
+8245;21171;1;163;78.0;120;80;3;3;0;0;0;1
+8247;19189;1;168;63.0;120;80;1;1;0;0;1;1
+8248;16707;1;165;60.0;120;80;1;1;0;0;0;1
+8249;20716;2;172;85.0;160;80;3;3;0;0;0;1
+8250;14522;1;176;62.0;110;70;1;1;0;0;1;0
+8251;14607;1;167;73.0;120;80;1;1;0;0;0;0
+8252;18437;2;174;69.0;120;80;1;1;1;1;1;1
+8253;21270;1;164;65.0;120;80;1;1;0;0;1;1
+8254;20212;2;170;73.0;130;90;3;1;0;0;1;0
+8255;21941;2;169;75.0;145;90;3;1;1;0;1;1
+8257;19008;1;160;58.0;120;70;1;1;0;0;1;0
+8258;19695;1;156;45.0;110;80;1;1;0;0;1;0
+8260;21680;2;163;81.0;140;80;1;1;0;0;1;0
+8261;18309;1;159;108.0;130;90;2;2;0;0;0;0
+8262;15371;2;170;74.0;120;90;1;1;0;0;1;1
+8264;19052;1;160;60.0;120;80;1;1;1;1;1;0
+8267;18228;1;164;78.0;120;78;1;1;0;0;1;1
+8269;20539;2;176;98.0;130;100;1;1;0;0;1;1
+8271;20336;2;172;62.0;120;90;2;1;1;0;1;0
+8273;19881;1;156;68.0;120;80;3;1;0;0;1;1
+8274;16090;1;170;84.0;130;90;1;1;0;0;1;1
+8275;19710;2;169;70.0;120;80;1;1;0;0;1;1
+8276;21245;1;156;75.0;130;80;1;3;0;0;1;0
+8277;22444;1;159;79.0;120;80;2;1;0;0;1;1
+8278;18141;1;160;80.0;150;100;1;1;0;0;1;1
+8279;16074;2;173;105.0;120;80;1;1;0;0;1;0
+8280;18485;1;174;65.0;120;80;1;1;0;0;1;0
+8281;23468;1;162;71.0;120;75;3;1;0;0;1;1
+8282;22824;1;167;60.0;120;80;1;1;0;0;1;0
+8285;14649;2;173;88.0;160;100;1;1;1;0;1;1
+8287;21907;1;158;58.0;120;80;1;1;0;0;1;1
+8288;20443;1;165;87.0;170;80;3;3;0;0;1;1
+8289;16207;2;171;60.0;120;80;1;1;0;0;1;0
+8292;18224;2;161;58.0;142;102;1;1;0;0;1;1
+8293;21835;1;160;90.0;110;80;3;3;0;0;1;0
+8294;20489;1;159;67.0;120;80;1;1;0;0;0;1
+8295;17771;1;151;63.0;120;80;1;1;0;0;1;0
+8296;21927;1;160;82.0;130;90;1;1;0;0;1;1
+8297;14511;2;183;89.0;140;90;1;1;0;0;1;1
+8298;21732;1;156;80.0;120;80;1;1;0;0;1;1
+8299;23171;1;167;57.0;140;90;2;1;0;0;1;1
+8300;18314;1;164;75.0;110;80;1;1;0;0;0;1
+8301;21891;1;167;97.0;130;90;1;1;0;0;1;0
+8302;21067;2;172;71.0;140;90;1;1;1;0;1;1
+8303;18875;1;164;64.0;135;95;1;1;0;0;0;1
+8304;21893;2;166;93.0;120;80;1;1;0;0;1;0
+8305;17407;1;165;68.0;140;1000;1;1;0;0;1;1
+8308;19183;1;165;65.0;120;80;1;1;0;0;1;0
+8309;20189;1;162;57.0;120;80;2;1;0;0;1;0
+8310;21306;1;158;78.0;120;80;1;1;0;0;1;1
+8311;17377;1;151;85.0;120;70;1;2;0;0;1;1
+8312;23547;2;177;79.0;140;90;3;3;0;0;1;1
+8313;21697;2;175;67.0;120;80;1;2;0;0;1;1
+8316;20944;1;163;64.0;95;65;1;1;0;0;1;0
+8317;15355;2;171;94.0;130;100;1;1;0;1;1;1
+8319;21282;1;164;82.0;140;90;1;1;0;0;1;1
+8323;21691;2;164;60.0;120;80;1;1;0;0;1;0
+8324;21154;1;158;53.0;120;80;1;1;0;0;1;0
+8326;18099;1;161;63.0;120;80;1;1;0;0;1;1
+8328;20323;1;165;83.0;140;90;1;1;0;1;1;1
+8329;20582;1;180;80.0;130;70;3;1;0;0;1;1
+8331;15882;2;170;78.0;120;80;1;1;1;1;0;0
+8332;17375;1;167;73.0;110;70;1;1;0;0;1;0
+8333;19762;1;160;60.0;120;80;1;1;0;0;1;1
+8334;21813;2;167;98.0;150;1000;1;1;0;0;1;1
+8335;21182;2;175;80.0;120;80;1;1;0;0;1;1
+8337;17763;1;150;48.0;120;90;1;1;1;0;1;0
+8338;21761;1;159;75.0;120;80;1;1;0;0;0;1
+8340;16058;1;158;56.0;110;80;1;1;0;0;1;1
+8341;20381;2;180;78.0;120;90;1;1;0;0;1;0
+8342;18221;1;170;96.0;140;90;1;1;0;0;1;1
+8343;18285;1;162;82.0;115;80;1;1;0;0;0;0
+8345;21637;1;147;70.0;140;100;2;1;0;0;1;1
+8347;15305;1;168;71.0;110;70;1;1;0;0;1;0
+8348;16677;1;169;60.0;140;90;3;1;1;0;1;1
+8349;22729;1;170;70.0;120;80;1;1;0;0;0;1
+8351;20470;2;168;70.0;110;70;1;1;0;0;1;0
+8354;23283;1;156;65.0;140;90;3;3;0;0;1;1
+8356;15302;2;166;58.0;110;70;1;1;0;0;1;0
+8358;21222;1;158;68.0;140;90;1;1;0;0;0;1
+8363;18968;1;169;83.0;120;80;1;1;0;0;1;0
+8364;18966;1;164;65.0;140;90;2;1;0;0;1;1
+8366;17451;1;180;90.0;140;90;1;1;0;0;0;1
+8367;18083;2;165;52.0;120;80;3;3;1;0;1;1
+8368;21699;1;157;56.0;140;90;3;1;0;0;1;0
+8373;20303;1;169;82.0;120;80;3;1;0;0;1;1
+8377;21089;1;160;78.0;110;70;1;1;0;0;1;0
+8378;20563;1;160;60.0;130;90;2;2;0;0;1;0
+8379;22008;1;175;74.0;120;80;1;1;1;1;1;0
+8381;17551;1;150;57.0;130;70;3;2;0;0;1;1
+8382;16183;1;147;53.0;90;70;1;1;0;0;1;0
+8385;15211;1;154;72.0;160;1000;1;1;0;1;1;1
+8386;19496;2;159;111.0;140;80;1;1;0;0;1;1
+8388;16323;2;158;63.0;120;80;3;3;1;0;1;1
+8389;21673;2;180;79.0;150;90;1;1;0;0;1;1
+8390;16961;2;165;75.0;180;100;2;1;0;0;1;1
+8391;20322;1;149;49.0;120;80;1;1;0;0;1;1
+8392;20400;1;156;91.0;90;60;1;1;0;0;1;0
+8393;22782;1;150;84.0;180;100;3;3;0;0;1;0
+8394;19607;1;164;76.0;120;80;1;1;0;0;1;0
+8395;22553;2;169;70.0;120;70;1;1;1;0;1;0
+8397;20508;1;161;78.0;140;90;1;1;0;0;1;1
+8398;22740;2;172;76.0;120;80;1;1;0;0;1;1
+8400;16909;1;167;69.0;110;70;1;1;0;0;1;0
+8401;21030;1;160;88.0;120;80;3;1;0;0;1;1
+8402;17445;1;160;55.0;130;90;3;1;0;0;1;1
+8407;20591;1;159;72.0;120;80;1;2;0;0;0;0
+8408;18260;1;165;65.0;120;80;1;1;0;0;1;0
+8410;17369;2;160;67.0;120;80;1;1;1;0;0;0
+8412;23591;2;170;80.0;110;90;1;3;0;0;1;1
+8413;19222;1;164;74.0;130;70;1;1;0;0;0;0
+8414;21309;1;157;67.0;180;100;3;1;0;0;1;1
+8415;20533;1;159;65.0;110;80;1;1;0;0;1;0
+8417;20508;1;155;65.0;140;90;1;1;0;0;1;1
+8419;21908;1;150;60.0;160;90;1;1;0;0;1;1
+8420;20941;2;169;67.0;110;70;2;1;0;0;1;1
+8421;14636;2;177;103.0;135;80;3;1;0;0;1;1
+8422;23643;1;162;69.0;130;80;3;3;0;0;1;0
+8423;18179;2;176;70.0;120;80;1;1;1;0;1;0
+8424;16739;1;170;60.0;120;80;1;1;0;0;1;0
+8425;18963;1;164;124.0;130;80;2;1;0;0;1;1
+8426;16818;1;168;69.0;130;80;1;1;0;0;1;0
+8427;16201;2;178;70.0;120;80;1;1;0;0;1;0
+8428;19016;1;150;59.0;120;80;1;1;0;0;1;0
+8429;19110;2;167;75.0;120;80;1;1;0;0;1;1
+8430;21343;2;171;69.0;120;80;1;1;1;0;1;0
+8431;19546;1;158;76.0;150;90;1;1;0;0;0;1
+8432;22452;1;160;80.0;150;70;1;1;0;0;0;1
+8433;18501;1;166;84.0;110;70;1;1;0;0;1;0
+8434;21739;2;175;84.0;140;90;3;1;0;0;0;1
+8435;21988;2;165;73.0;180;100;1;2;0;0;0;1
+8436;21934;2;175;80.0;150;90;1;1;0;0;1;0
+8437;14470;1;157;83.0;160;100;1;1;0;0;0;1
+8439;23431;1;159;108.0;110;70;1;1;0;0;1;1
+8442;16139;1;147;56.0;110;70;2;1;0;0;1;0
+8443;19745;1;158;42.0;120;80;1;1;0;0;1;0
+8444;15946;2;173;70.0;120;80;1;1;0;0;1;1
+8445;19113;1;162;96.0;130;90;1;1;0;0;0;1
+8448;22672;1;165;92.0;130;80;1;1;0;0;1;0
+8449;18768;1;155;64.0;160;90;3;3;0;0;1;1
+8450;23590;1;168;65.0;120;60;2;1;0;0;1;1
+8451;19453;1;163;80.8;110;70;1;1;0;0;1;0
+8454;21220;2;175;86.0;110;80;2;2;0;1;1;1
+8455;22006;1;158;98.0;120;80;1;1;0;0;1;1
+8456;19749;1;162;65.0;120;80;1;1;0;0;1;0
+8457;16013;1;187;58.0;120;80;1;1;0;0;1;1
+8458;18184;1;161;85.0;140;80;1;1;0;0;1;0
+8459;21306;1;155;65.0;150;1000;1;1;0;0;1;1
+8462;18248;1;175;72.0;120;80;3;3;0;0;1;0
+8463;19665;2;174;81.0;120;80;1;1;0;0;1;1
+8464;19017;1;162;71.0;120;80;2;1;0;0;1;0
+8465;18297;1;164;52.0;130;80;1;1;0;0;1;1
+8467;16737;1;170;68.0;110;70;1;1;0;0;1;0
+8468;19138;1;161;76.0;140;80;1;1;0;0;1;1
+8469;19428;1;168;79.0;130;80;1;1;0;0;1;0
+8471;19183;1;160;70.0;110;70;2;1;0;0;1;1
+8474;18457;2;170;69.0;140;90;1;3;0;0;0;1
+8475;21872;2;164;77.0;150;120;1;1;0;0;1;1
+8476;17306;1;160;62.0;110;70;1;1;0;0;1;0
+8477;17430;1;161;92.0;110;70;1;1;0;0;1;0
+8478;18101;1;163;76.0;120;80;1;1;0;0;0;0
+8479;21019;2;172;84.0;140;90;3;3;0;0;0;0
+8480;19853;1;162;86.0;130;100;1;1;0;0;1;0
+8483;21830;1;165;65.0;120;70;1;1;0;0;1;0
+8484;21701;1;151;103.0;140;90;1;1;0;0;1;1
+8485;14452;2;178;99.0;120;80;1;2;0;0;1;0
+8486;15879;2;176;85.0;120;80;1;1;0;0;1;0
+8488;23593;1;167;130.0;160;100;1;2;0;0;1;0
+8489;23514;2;174;85.0;130;80;1;1;0;0;1;1
+8491;23207;1;156;70.0;120;80;1;1;0;0;0;0
+8494;19138;2;165;78.0;110;70;1;2;1;0;1;1
+8496;22746;1;168;68.0;140;90;1;1;0;0;0;1
+8497;23413;2;180;82.0;115;80;1;1;0;0;1;0
+8498;16720;1;163;59.0;120;80;1;1;0;0;1;0
+8499;14397;2;165;65.0;120;80;1;1;0;0;0;0
+8500;22411;2;167;88.0;110;70;2;1;0;0;1;1
+8501;19665;1;164;62.0;120;80;1;1;0;0;0;0
+8502;19721;1;145;65.0;140;80;2;1;0;0;1;1
+8504;20253;1;170;74.0;120;80;1;1;0;0;1;1
+8505;22883;1;156;75.0;120;80;1;1;0;0;1;0
+8506;22580;1;168;88.0;130;80;1;1;0;0;1;0
+8507;21362;1;164;74.0;120;80;1;1;0;0;1;0
+8510;18950;2;184;112.0;110;70;1;1;1;1;1;0
+8511;14665;2;168;71.0;120;80;1;1;0;0;0;0
+8513;23489;1;166;77.0;140;70;1;1;0;0;1;1
+8515;22564;2;165;103.0;140;90;2;1;0;0;0;1
+8516;22493;1;157;68.0;120;80;1;1;0;0;1;1
+8517;15495;1;155;84.0;120;80;1;2;0;1;1;1
+8519;23286;1;159;107.0;120;80;3;3;0;0;1;1
+8520;20268;1;156;59.0;120;80;1;1;0;0;1;0
+8521;15605;2;162;68.0;120;80;1;1;0;0;1;0
+8522;19875;1;168;89.0;140;90;3;3;0;0;0;1
+8523;20231;1;165;73.0;110;70;1;1;0;0;0;0
+8526;14441;1;172;166.0;140;90;1;1;0;0;1;1
+8527;15173;1;154;64.0;100;60;1;1;0;0;1;0
+8531;18200;2;168;72.0;120;80;1;1;0;0;1;0
+8532;22836;1;158;81.0;140;1000;3;1;0;0;1;1
+8534;16250;2;160;77.0;145;70;1;1;1;0;1;1
+8536;16185;2;167;57.0;120;80;1;1;0;0;1;1
+8537;18964;2;167;101.0;180;120;2;1;1;0;1;0
+8538;14514;2;158;78.0;120;80;1;1;1;0;0;0
+8539;20475;1;154;64.0;120;80;1;1;0;0;1;1
+8542;23282;1;174;88.0;140;90;3;1;0;0;1;1
+8544;21433;1;167;75.0;130;90;1;1;0;0;0;1
+8545;17705;1;155;87.0;120;80;1;1;0;0;1;0
+8546;19726;1;165;90.0;130;90;3;1;0;0;1;1
+8547;23145;1;170;73.0;140;90;1;1;0;0;1;1
+8550;21188;2;175;97.0;130;80;3;1;0;0;1;1
+8552;17666;1;158;88.0;120;80;1;1;0;0;0;0
+8554;22658;1;166;71.0;140;90;1;1;0;0;1;1
+8555;19805;1;147;51.0;110;70;1;1;0;0;1;0
+8556;14460;1;168;67.0;120;80;1;1;0;0;1;0
+8557;19140;1;157;65.0;120;80;3;3;0;0;1;1
+8559;22635;2;175;85.0;120;90;1;1;0;0;1;0
+8560;15400;2;172;90.0;150;70;1;1;0;1;0;1
+8562;22589;2;168;63.0;120;80;1;1;0;0;1;0
+8563;21760;1;149;78.0;161;82;2;1;0;0;1;1
+8564;21901;1;176;78.0;120;80;1;1;0;0;0;1
+8565;14469;1;160;55.0;130;90;1;1;0;0;1;0
+8566;18356;1;165;104.0;150;100;1;1;0;0;1;1
+8567;16143;2;165;55.0;140;1000;1;1;0;0;0;1
+8570;21703;1;155;63.0;140;90;1;1;0;0;1;1
+8571;22627;1;165;65.0;120;80;1;1;0;0;0;0
+8572;21721;1;152;72.0;150;100;3;1;0;0;0;0
+8574;14534;1;170;75.0;140;80;1;1;0;0;1;1
+8575;18940;2;162;71.0;100;70;1;1;0;0;0;0
+8576;23432;1;158;65.0;120;80;1;1;0;0;1;1
+8578;22073;1;165;65.0;110;70;3;3;0;0;1;1
+8580;22558;1;166;67.0;180;90;1;1;0;0;0;1
+8581;22731;2;165;60.0;140;60;1;1;0;0;1;1
+8582;17538;1;164;67.0;140;90;1;1;0;0;1;1
+8585;16049;2;162;63.0;120;80;1;1;0;0;0;0
+8586;18819;1;148;59.0;140;80;1;1;0;0;1;1
+8587;23132;1;168;73.0;120;90;1;1;0;0;1;1
+8588;18025;2;172;80.0;120;80;1;1;0;0;0;0
+8590;20469;2;182;78.0;120;80;1;1;1;0;1;0
+8592;21964;1;165;62.0;120;80;1;1;0;0;0;0
+8593;14530;1;169;85.0;110;70;1;1;0;0;0;0
+8594;15344;1;164;60.0;110;60;1;1;0;0;1;0
+8596;18313;1;155;53.0;140;90;2;1;0;0;0;1
+8598;18900;2;177;84.0;130;90;1;1;0;0;1;0
+8599;20246;1;165;85.0;200;100;1;2;0;0;0;1
+8600;16058;2;159;150.0;200;130;1;1;0;0;1;1
+8601;20687;1;159;60.0;130;90;3;3;0;0;0;1
+8602;18216;1;164;63.0;120;80;1;1;0;0;1;0
+8604;21815;1;196;69.0;120;80;1;1;0;0;1;0
+8605;19741;1;166;94.0;135;95;2;2;0;0;0;1
+8606;19050;1;149;85.0;160;90;1;1;0;0;1;1
+8608;14460;1;164;96.0;160;80;1;1;0;0;1;1
+8609;21423;1;153;80.0;130;90;1;3;0;0;1;0
+8610;19986;2;170;90.0;140;90;1;1;0;0;1;1
+8614;22616;2;162;62.0;120;70;1;1;0;0;1;1
+8615;16535;1;165;100.0;110;70;1;1;0;0;1;0
+8616;21869;2;174;70.0;160;70;1;1;1;1;1;1
+8617;16992;1;163;86.0;120;80;1;3;0;0;1;0
+8620;18204;2;163;57.0;120;80;1;1;0;0;1;0
+8622;17310;2;167;83.0;140;90;1;1;0;0;1;1
+8623;23163;1;156;70.0;160;100;3;1;0;0;1;1
+8624;17374;2;171;83.0;120;80;2;1;0;0;1;1
+8625;18240;1;160;50.0;110;80;1;1;0;0;1;0
+8626;17462;1;167;75.0;120;80;1;1;0;0;1;1
+8627;17666;1;160;65.0;120;80;1;1;0;0;1;1
+8628;18820;2;170;86.0;110;69;1;1;0;0;0;1
+8631;23398;1;182;96.0;120;80;1;1;0;0;1;0
+8632;21393;2;168;66.0;125;80;1;1;0;0;0;0
+8633;20378;1;153;63.0;120;80;1;1;0;0;1;0
+8635;20335;1;157;82.0;150;100;3;3;0;0;1;1
+8637;19774;2;166;52.0;110;70;1;1;1;0;1;1
+8638;18415;2;165;65.0;120;80;1;1;0;0;0;0
+8639;18795;1;157;95.0;140;90;3;3;0;0;1;0
+8640;17663;2;164;75.0;120;80;1;1;0;0;1;0
+8641;17555;1;170;90.0;170;1100;2;1;0;0;1;1
+8643;18138;1;164;85.0;120;80;1;1;0;0;1;0
+8645;17382;1;164;75.0;140;80;3;1;0;0;1;1
+8646;18151;1;165;66.0;120;80;1;1;0;0;1;1
+8647;15246;1;154;105.0;100;70;1;3;0;1;1;1
+8649;18969;2;168;74.0;100;60;2;2;0;0;0;1
+8651;22636;2;173;100.0;130;90;1;1;1;0;1;1
+8656;21288;2;175;74.0;150;100;1;1;0;0;0;1
+8658;19953;2;168;65.0;120;80;1;1;0;0;1;0
+8659;18394;1;153;65.0;130;70;1;1;0;0;1;1
+8660;16129;1;169;70.0;120;80;1;1;0;0;1;0
+8662;18262;2;172;90.0;100;70;1;1;0;0;1;1
+8663;16619;1;163;65.0;120;80;1;1;0;0;1;1
+8664;15367;1;162;82.0;130;80;2;1;0;0;1;1
+8665;22604;2;172;68.0;130;80;3;1;1;0;1;1
+8666;21314;2;175;72.0;130;90;1;1;0;0;1;0
+8667;23177;1;156;82.0;140;95;1;1;0;0;1;1
+8668;21263;2;166;83.0;120;80;1;1;1;0;1;0
+8669;19164;2;170;70.0;120;80;3;3;0;0;1;0
+8670;20709;1;164;70.0;120;70;1;3;0;0;1;0
+8672;14564;2;180;74.0;110;70;1;1;0;0;1;0
+8673;21892;1;160;90.0;130;80;3;3;0;0;0;0
+8674;18372;1;161;77.0;130;80;1;1;0;1;1;0
+8675;23321;1;155;61.0;130;80;1;1;0;0;1;1
+8677;18153;2;175;90.0;120;80;1;1;0;0;1;0
+8680;18941;1;159;59.0;120;80;3;3;0;0;0;1
+8682;22910;1;163;65.0;130;70;1;1;0;0;1;1
+8683;15788;1;156;62.0;160;100;2;1;0;0;1;0
+8684;19215;1;160;80.0;150;100;1;1;0;0;1;1
+8685;21895;1;168;80.0;140;90;1;1;0;0;1;1
+8686;18326;1;165;115.0;120;80;1;1;0;0;1;0
+8690;23439;1;159;72.0;120;80;1;1;0;0;1;1
+8691;21258;2;180;78.0;180;100;1;1;0;0;1;1
+8692;19068;2;175;85.0;156;99;2;2;1;1;1;1
+8694;22709;2;152;46.0;160;100;2;1;1;0;1;1
+8695;17787;1;168;89.0;120;70;2;1;0;0;1;0
+8696;19004;1;156;70.0;110;80;1;1;0;0;1;0
+8697;19641;2;164;86.0;150;90;1;1;0;0;1;1
+8703;19712;1;169;67.0;120;80;1;1;0;0;1;0
+8704;18796;1;153;88.0;120;80;1;1;0;0;1;1
+8705;17415;1;161;59.0;140;80;1;1;0;0;1;1
+8707;23582;1;168;72.0;150;90;2;2;0;0;0;1
+8708;21747;2;164;68.0;120;80;1;1;0;0;1;0
+8709;16848;1;156;56.0;100;60;1;1;0;0;1;0
+8710;19891;1;165;62.0;110;70;1;2;0;0;1;0
+8711;19941;2;173;92.0;160;100;3;1;0;0;1;1
+8713;23274;1;154;89.0;160;100;3;3;0;0;1;1
+8714;16577;2;166;72.0;110;70;1;1;1;0;1;0
+8715;23058;2;171;80.0;130;90;2;1;0;0;1;0
+8718;15470;2;165;65.0;120;80;1;1;0;0;0;1
+8719;20472;1;161;89.0;120;70;1;3;0;0;0;0
+8720;16598;1;172;64.0;140;90;2;1;0;0;0;1
+8721;14822;1;165;65.0;120;90;1;1;0;0;1;0
+8723;14726;2;165;64.0;120;90;1;1;0;0;0;0
+8724;15396;1;147;52.0;130;90;1;1;0;0;1;1
+8725;14714;1;165;67.0;110;80;1;1;0;0;0;0
+8729;17509;1;155;76.0;120;90;1;2;0;1;1;1
+8733;21020;2;168;68.0;130;80;1;1;1;0;1;1
+8734;18853;1;159;72.0;160;100;1;2;0;0;1;1
+8735;18903;2;164;70.0;120;70;1;1;1;0;1;0
+8737;18119;1;157;120.0;160;90;1;1;0;0;0;1
+8739;20351;1;160;71.0;120;90;1;1;0;0;1;1
+8742;17532;1;154;61.0;100;70;2;1;0;0;1;0
+8743;19654;1;156;56.0;120;80;1;1;0;0;1;0
+8744;22677;1;163;105.0;140;80;3;3;0;0;1;1
+8745;16803;1;152;46.0;90;60;2;2;0;0;1;0
+8747;21002;1;161;80.0;150;100;1;1;0;0;1;1
+8748;18256;1;166;66.0;110;69;1;1;0;0;1;1
+8749;22432;1;169;75.0;140;80;3;1;0;0;0;1
+8752;17794;1;164;62.0;110;70;1;3;0;0;0;1
+8755;22553;2;169;87.0;180;90;1;1;0;0;1;1
+8756;18080;1;154;90.0;90;60;1;1;0;0;0;0
+8757;20990;1;122;161.0;120;80;1;1;0;0;1;1
+8759;16722;1;170;60.0;120;80;1;1;0;0;1;0
+8762;18265;1;161;63.0;90;60;1;1;0;0;0;0
+8763;19135;2;171;83.0;140;90;1;1;0;0;1;1
+8764;20489;1;158;77.0;140;100;1;1;0;0;1;1
+8766;18920;1;165;64.0;120;70;3;3;0;0;1;0
+8767;18103;1;155;46.0;130;90;1;1;0;0;0;1
+8768;17334;1;155;104.0;140;80;1;1;0;0;1;1
+8770;21217;2;171;83.0;150;85;3;1;0;0;1;1
+8773;23259;1;154;95.0;130;80;1;1;0;0;0;1
+8774;15527;1;176;71.0;120;80;1;1;0;0;0;0
+8775;21874;1;170;91.0;120;79;1;1;0;0;1;0
+8777;18755;2;169;59.0;110;70;2;1;0;0;1;0
+8778;20343;2;165;65.0;120;80;1;1;1;0;1;0
+8779;19073;2;174;90.0;110;80;1;1;0;0;0;0
+8780;14344;2;160;65.0;120;80;1;1;0;0;1;0
+8781;18490;2;167;65.0;120;80;1;1;0;0;1;0
+8784;22828;1;165;67.0;120;80;1;1;0;0;1;0
+8785;21203;1;165;69.0;120;80;1;1;0;0;1;0
+8787;15405;2;172;68.0;120;80;1;1;0;0;0;0
+8788;22509;1;150;94.0;160;100;2;1;0;0;0;1
+8789;23097;2;171;68.0;130;90;1;1;0;0;1;1
+8790;23193;1;154;64.0;110;70;1;1;1;0;0;1
+8793;20218;1;164;87.0;130;80;1;1;0;1;0;1
+8795;15327;2;173;62.0;130;90;1;2;1;1;1;1
+8796;15031;1;165;64.0;130;90;1;1;0;0;1;0
+8797;21882;2;161;78.0;140;80;1;1;0;0;0;1
+8798;23341;2;167;54.0;120;80;1;1;0;0;1;1
+8799;16129;1;156;90.0;140;1000;1;1;0;0;1;1
+8800;19626;2;168;75.0;120;80;1;1;0;0;1;0
+8802;15407;1;173;64.0;130;70;1;1;0;0;1;0
+8805;22586;1;165;68.0;160;80;1;1;0;0;1;0
+8806;16010;2;168;75.0;150;80;1;1;0;0;1;1
+8807;17614;2;165;78.0;120;70;1;1;0;0;1;1
+8808;17795;1;162;68.0;110;70;1;1;0;0;1;0
+8809;21867;1;170;72.0;130;90;1;1;0;0;1;1
+8814;17078;2;172;76.0;130;90;1;1;0;0;1;1
+8815;22583;1;161;78.0;130;90;1;1;0;0;0;1
+8816;19699;2;168;100.0;160;100;2;2;0;0;1;1
+8817;18951;1;157;65.0;120;80;1;1;0;0;1;0
+8818;14695;1;163;55.0;120;80;1;1;0;0;1;0
+8819;18472;1;168;59.0;110;70;1;1;0;0;1;0
+8821;20222;1;162;71.0;120;90;2;1;0;0;1;0
+8822;19770;1;156;58.0;150;100;1;1;0;0;1;1
+8823;22781;1;158;84.0;140;90;3;3;0;0;1;1
+8824;19519;1;150;52.0;115;70;1;1;0;0;1;0
+8825;18969;2;180;85.0;120;80;2;1;0;0;1;0
+8826;16672;1;166;64.0;110;80;1;1;0;0;1;0
+8827;22508;2;178;91.0;130;90;3;1;1;0;1;1
+8828;22524;1;165;70.0;120;80;1;1;0;0;1;1
+8829;19024;1;156;58.0;120;80;1;1;0;0;0;0
+8831;21997;1;169;80.0;130;90;1;1;0;0;1;1
+8832;19778;1;162;55.0;180;100;1;2;0;0;1;0
+8833;18055;2;172;80.0;140;90;2;1;0;0;1;0
+8834;21956;1;164;91.0;140;80;1;3;0;0;1;0
+8835;14557;1;165;82.0;120;80;1;1;0;0;1;0
+8836;15321;1;167;60.0;100;80;1;1;1;0;0;0
+8838;20381;2;170;82.0;140;80;1;2;0;0;1;0
+8839;20321;1;165;67.0;120;80;1;1;0;0;1;1
+8840;23429;1;167;81.0;150;100;3;2;0;0;0;1
+8841;18969;1;175;63.0;120;80;1;1;0;0;0;0
+8843;21356;2;171;85.0;110;70;1;1;1;0;1;0
+8845;20286;2;170;68.0;130;80;1;1;1;1;1;1
+8846;18134;1;157;70.0;120;80;1;1;0;0;1;0
+8847;14668;1;161;70.0;100;70;1;1;0;0;1;0
+8848;22624;2;157;64.0;115;70;1;1;0;0;1;0
+8850;10878;1;175;59.0;120;80;1;1;0;0;1;0
+8851;19753;1;150;71.0;130;80;3;3;0;0;1;1
+8852;19868;1;160;72.0;110;70;1;1;0;0;1;1
+8853;15384;1;161;74.0;120;80;1;1;0;0;1;1
+8854;23172;1;156;68.0;168;92;2;1;0;0;0;0
+8855;18266;1;165;68.0;110;80;1;1;0;0;1;0
+8857;22560;1;168;75.0;120;80;1;1;0;0;1;0
+8858;22514;1;166;68.0;120;80;1;1;0;0;0;0
+8859;23308;2;185;85.0;120;80;1;1;0;0;1;0
+8860;20372;2;164;69.0;140;90;2;1;0;0;1;1
+8861;21812;2;165;82.0;140;90;1;1;0;0;0;1
+8863;18775;1;160;62.0;110;70;1;1;0;0;1;1
+8866;16527;1;155;63.0;130;90;2;1;0;0;1;1
+8868;21363;1;172;80.0;100;70;1;1;0;0;0;0
+8870;23326;1;156;85.0;150;90;2;2;0;0;0;1
+8872;16950;2;166;74.0;110;80;1;1;0;0;1;0
+8873;21692;1;159;68.0;120;79;1;1;0;0;1;0
+8877;16915;2;165;64.0;160;70;1;1;0;0;1;1
+8879;19130;2;172;75.0;140;90;1;1;0;0;1;1
+8881;20473;1;167;64.0;140;90;3;1;0;0;1;1
+8882;21978;1;163;60.0;110;70;1;1;0;0;0;0
+8883;21212;1;170;75.0;150;100;3;3;0;0;1;1
+8884;18762;2;161;50.0;130;90;1;1;0;0;1;0
+8886;19508;1;160;75.0;140;90;2;1;0;0;0;1
+8887;20901;1;163;62.0;120;90;3;3;0;0;1;1
+8888;20422;1;158;79.0;110;80;1;1;0;0;1;1
+8889;18201;2;163;70.0;140;90;1;1;0;0;1;1
+8890;21305;1;149;72.0;160;100;1;2;0;0;1;1
+8892;20884;2;168;88.0;140;90;2;1;0;0;0;1
+8893;22595;2;169;96.0;140;90;1;1;0;0;1;1
+8895;15888;2;185;76.0;100;70;1;1;0;0;1;0
+8896;16720;1;161;91.0;180;100;2;2;0;0;0;1
+8897;21710;1;148;83.0;120;80;1;1;0;0;1;0
+8899;17736;1;164;67.0;120;80;1;1;0;0;0;0
+8900;18744;1;162;56.0;110;80;3;1;0;0;1;0
+8902;21758;1;160;64.0;130;80;1;1;0;0;1;0
+8904;20355;1;164;67.0;110;69;3;1;0;0;1;0
+8905;19654;1;156;58.0;120;70;1;1;0;0;1;0
+8906;15253;1;161;71.0;110;70;2;1;0;0;1;0
+8907;17960;1;164;79.0;120;80;1;1;0;0;1;0
+8910;21204;1;165;85.0;120;80;1;1;0;0;1;1
+8911;19651;1;162;85.0;130;70;2;1;0;0;1;0
+8912;21373;1;169;69.0;150;80;2;1;0;0;1;1
+8913;18888;1;165;73.0;160;70;1;1;0;0;1;0
+8915;18267;2;169;92.2;146;93;2;1;0;1;1;0
+8917;23118;1;154;85.0;120;85;1;1;0;0;0;1
+8918;23209;2;162;73.0;160;90;1;1;0;0;1;1
+8920;19554;1;164;73.0;140;90;1;1;0;0;1;1
+8921;14391;1;164;57.0;110;70;1;1;0;0;1;0
+8922;21211;1;165;80.0;150;100;1;1;0;0;0;1
+8924;18395;1;165;63.0;120;80;1;1;0;0;0;0
+8926;18895;1;156;92.0;120;80;1;1;0;0;1;1
+8927;19059;1;154;97.0;110;80;2;1;0;0;1;1
+8929;14548;1;162;67.0;120;80;1;1;0;0;1;0
+8930;20155;1;158;97.0;120;80;1;1;0;0;0;1
+8931;21681;2;165;78.0;140;90;1;1;0;0;1;1
+8932;17513;2;176;88.0;110;69;1;1;0;0;0;1
+8933;18792;1;164;64.0;120;80;1;1;0;0;1;0
+8934;21836;1;160;69.0;160;100;1;1;0;0;1;1
+8935;21300;2;176;93.0;120;80;1;2;0;1;1;0
+8936;17312;2;175;88.0;140;1000;1;1;0;0;1;1
+8937;16841;1;148;75.0;120;80;2;1;0;0;1;0
+8938;20467;2;170;96.0;110;80;1;2;0;0;0;1
+8940;18135;1;159;62.0;120;80;1;1;0;0;1;1
+8941;16121;2;169;90.0;120;80;1;1;0;0;1;1
+8942;20483;2;164;69.0;130;90;1;1;1;0;0;1
+8943;19677;2;181;84.0;150;90;2;1;0;0;1;1
+8945;19009;1;160;74.0;140;90;3;3;0;0;1;1
+8948;18273;1;171;95.0;170;100;3;1;0;0;1;1
+8950;23133;1;171;78.0;120;80;3;1;0;0;1;1
+8954;17618;2;167;61.0;110;80;1;1;0;0;0;0
+8955;15198;1;164;79.0;100;70;3;1;0;0;1;1
+8956;19600;2;178;73.0;130;80;3;1;1;1;1;1
+8958;18196;1;165;64.0;120;80;1;1;0;0;1;1
+8960;20343;1;170;86.0;120;80;1;1;0;0;1;0
+8961;21909;1;158;69.0;140;90;1;1;0;0;1;1
+8962;16792;1;158;61.0;120;80;1;1;0;0;1;0
+8963;18295;1;156;62.0;110;70;1;1;0;0;1;0
+8964;18271;2;179;91.0;110;70;2;1;1;0;1;0
+8965;16043;2;174;68.0;120;80;1;1;0;0;1;1
+8966;17358;1;152;59.0;120;80;1;1;0;0;1;1
+8967;20260;1;169;95.0;180;1100;1;2;0;0;1;1
+8968;22666;2;168;86.0;120;80;1;1;0;1;0;0
+8969;18201;2;175;80.0;110;80;1;1;0;1;1;0
+8970;21780;1;141;58.0;140;90;1;1;0;0;1;1
+8971;22582;1;160;74.0;120;80;1;1;0;0;0;1
+8972;22859;2;167;66.0;170;80;3;1;1;1;1;1
+8973;23475;1;160;72.0;160;100;3;3;0;0;1;0
+8974;21167;2;172;90.0;120;80;2;1;0;0;1;1
+8975;18381;1;155;56.0;110;70;3;1;0;0;1;1
+8978;16124;2;166;69.0;140;90;1;1;1;0;1;1
+8979;17656;2;171;70.0;120;80;1;2;0;0;1;0
+8980;21845;1;152;72.0;110;70;2;3;0;1;1;0
+8981;16154;1;170;74.0;140;90;2;1;0;0;0;0
+8986;14560;2;172;68.0;120;80;1;1;0;0;1;0
+8987;18059;1;160;60.0;120;80;1;1;0;0;1;0
+8989;18321;2;171;60.0;100;70;1;1;0;0;1;0
+8991;20397;1;165;65.0;120;80;3;3;0;0;0;1
+8993;21087;1;164;56.0;120;90;1;1;0;0;1;0
+8994;14519;1;175;70.0;120;80;1;1;0;0;1;0
+8995;18362;1;170;63.0;100;70;1;1;1;0;1;0
+8996;18045;2;168;56.0;120;80;1;1;1;1;1;0
+8997;17505;2;170;65.0;110;70;1;1;0;0;1;1
+8998;14681;1;170;62.0;110;70;1;3;0;0;1;0
+8999;20401;2;158;49.0;110;70;1;1;0;0;1;0
+9002;21010;1;160;57.0;120;80;1;1;0;0;1;1
+9004;14552;1;158;64.0;120;80;1;1;0;0;1;0
+9007;21921;2;166;59.0;180;100;1;1;0;0;0;1
+9008;14421;1;153;82.0;120;80;1;1;0;0;1;0
+9010;21891;1;165;78.0;140;80;1;1;0;0;1;1
+9011;14840;2;167;72.0;120;80;1;1;0;1;1;1
+9012;17694;1;165;63.0;120;80;1;1;0;0;1;1
+9013;22740;1;168;65.0;150;90;1;1;0;0;0;1
+9016;18971;1;155;71.0;120;80;1;1;0;0;1;0
+9017;19924;1;159;74.0;120;80;1;1;0;0;1;0
+9018;20315;2;173;80.0;120;80;1;1;0;0;1;1
+9019;18129;1;159;52.0;110;70;1;1;0;0;1;0
+9021;16057;2;168;75.0;120;80;1;1;0;0;1;1
+9022;15524;1;172;69.0;110;70;1;1;0;0;0;1
+9023;16097;2;175;59.0;130;90;3;1;0;0;1;1
+9024;21188;2;165;75.0;140;90;1;1;0;0;0;1
+9025;18299;1;156;104.0;120;80;1;1;0;0;1;1
+9026;20247;2;186;81.0;120;80;1;2;0;0;1;1
+9027;20312;1;160;73.0;120;70;1;3;0;0;1;0
+9028;18856;1;155;85.0;160;80;1;1;0;0;1;1
+9029;19060;2;190;115.0;170;90;3;1;0;0;0;1
+9030;22140;1;174;65.0;120;80;2;2;0;0;1;0
+9031;17577;1;160;70.0;120;80;1;1;0;0;1;1
+9032;20529;1;163;83.0;110;70;2;2;0;0;0;1
+9033;23241;2;170;79.0;130;100;2;1;0;0;1;1
+9035;21004;1;150;63.0;110;70;1;1;0;0;1;0
+9037;15271;2;180;84.0;150;90;1;2;1;0;1;0
+9038;20637;1;163;73.0;140;90;1;1;0;0;1;1
+9040;20221;1;155;85.0;140;90;1;1;0;0;1;1
+9041;20499;1;153;83.0;150;80;3;1;0;0;1;1
+9042;23206;1;168;61.0;120;80;1;1;0;0;1;0
+9043;18210;2;165;58.0;140;90;1;1;0;0;0;1
+9044;21688;2;165;91.0;140;90;1;1;0;0;1;1
+9045;18344;1;162;66.0;120;80;1;1;0;0;1;1
+9047;20882;1;152;73.0;170;120;3;3;0;0;1;1
+9049;17602;1;160;60.0;110;80;1;1;0;0;1;0
+9050;19625;1;164;58.0;130;90;1;1;0;0;1;1
+9051;15999;1;168;70.0;110;80;1;1;0;0;1;1
+9053;22074;2;168;72.0;120;80;1;1;0;0;0;0
+9054;23164;1;154;77.0;110;60;2;1;0;0;0;0
+9055;18395;1;156;73.0;105;80;1;2;0;0;1;1
+9056;18079;1;157;83.0;130;90;3;3;0;0;1;0
+9057;17502;2;168;58.0;100;60;1;1;1;0;0;0
+9058;18189;2;170;68.0;120;80;1;1;0;0;1;1
+9059;21076;1;163;74.0;125;80;1;1;0;0;0;1
+9061;20313;2;160;60.0;120;80;1;1;0;0;0;0
+9064;18713;1;153;64.0;130;80;2;1;0;0;1;1
+9065;20373;1;175;60.0;140;90;2;1;0;0;0;1
+9066;22186;1;158;98.0;130;80;3;2;0;0;1;0
+9067;18962;1;160;60.0;110;70;1;2;0;0;1;0
+9068;14465;1;165;63.0;120;80;1;1;0;0;1;0
+9069;21653;1;157;85.0;120;80;1;1;0;0;1;1
+9071;22496;1;164;85.0;170;90;2;2;0;0;0;1
+9073;20274;1;158;76.0;160;90;1;1;0;0;1;1
+9074;22541;1;160;64.0;120;80;1;1;0;0;1;0
+9075;18840;1;170;51.0;140;90;1;1;0;0;0;0
+9076;18305;2;181;78.0;120;80;1;1;0;0;0;0
+9078;21387;1;168;65.0;140;90;2;1;0;0;1;1
+9081;20504;1;165;60.0;110;70;1;1;0;0;1;0
+9082;19633;2;161;81.0;110;80;1;1;0;0;1;1
+9083;21728;1;161;61.0;130;80;3;1;0;0;1;0
+9084;15166;1;166;70.0;120;80;1;1;0;0;1;0
+9087;14491;1;154;93.0;110;80;1;1;0;0;0;0
+9089;18877;1;164;77.0;160;100;3;1;0;0;1;1
+9090;14545;2;168;80.0;110;70;1;1;1;1;1;0
+9091;20598;2;165;88.0;140;90;1;1;1;0;1;1
+9092;14540;1;165;61.0;110;70;1;1;0;0;1;0
+9093;17430;2;164;66.0;120;80;1;1;1;1;1;0
+9095;16838;2;178;64.0;120;90;1;1;1;1;0;0
+9096;22584;1;169;55.0;110;90;1;1;0;0;1;1
+9097;16261;2;173;74.0;120;80;1;1;0;0;1;0
+9098;15090;1;168;66.0;120;80;1;1;0;0;1;0
+9099;21850;2;171;70.0;120;70;2;1;1;0;1;1
+9100;21864;2;170;102.0;120;80;1;1;0;0;1;0
+9101;22545;1;161;75.0;150;100;3;3;0;0;0;1
+9103;21975;2;164;62.0;120;80;1;1;1;0;0;0
+9105;21664;1;164;93.0;170;94;2;2;0;0;1;1
+9106;20971;2;168;69.0;140;80;1;1;0;0;0;0
+9107;18952;1;160;87.0;110;80;1;1;0;0;1;0
+9109;16980;1;167;78.0;120;70;1;3;0;1;0;0
+9111;20623;2;156;53.0;130;80;1;1;0;0;0;0
+9113;21077;2;168;81.0;120;80;1;1;0;0;1;1
+9115;15535;2;181;105.0;132;92;2;3;1;0;1;0
+9116;22030;1;168;78.0;120;80;1;1;0;0;1;0
+9117;22196;2;172;65.0;130;80;1;1;0;0;1;1
+9118;18344;1;156;64.0;110;70;1;1;0;0;1;0
+9120;16529;1;171;84.0;110;70;1;1;0;0;1;0
+9122;14529;2;175;88.0;200;90;2;1;1;1;1;1
+9123;19546;2;171;89.0;130;90;1;2;0;0;0;1
+9124;16679;1;156;98.0;120;80;1;1;0;0;0;0
+9125;16692;1;170;90.0;150;90;1;1;0;1;1;1
+9126;22478;2;167;79.0;140;90;1;1;0;0;0;1
+9128;16826;2;169;83.0;100;80;1;1;0;0;1;0
+9131;17300;1;168;72.0;150;100;1;1;0;0;0;1
+9134;23391;1;170;83.0;120;80;1;1;0;0;1;1
+9135;19674;1;161;60.0;120;70;1;3;0;0;1;1
+9136;15139;1;165;60.0;120;90;1;1;0;0;1;0
+9137;20999;2;162;78.0;120;90;1;1;1;0;1;0
+9139;22743;2;178;117.0;140;100;1;1;0;0;1;1
+9140;20478;1;170;64.0;120;80;1;1;0;0;1;1
+9141;18852;1;155;87.0;120;80;1;1;0;0;1;0
+9142;16700;1;163;99.0;120;80;2;2;0;0;1;0
+9143;22101;1;150;82.0;150;1000;2;3;0;0;1;1
+9144;23183;1;158;44.0;120;80;1;1;0;0;1;1
+9145;18366;1;169;76.0;120;80;1;1;0;0;1;1
+9146;19890;1;163;76.0;120;80;2;1;1;0;1;1
+9147;18990;2;173;84.0;140;90;2;2;0;1;1;1
+9148;15132;1;168;95.0;130;80;1;2;0;0;1;1
+9149;23347;1;162;50.0;120;80;2;1;0;0;0;0
+9151;20394;2;176;81.0;120;80;1;1;0;0;1;1
+9152;19760;1;163;68.0;120;80;3;1;0;0;1;0
+9153;19659;1;170;75.0;110;70;1;1;0;0;1;1
+9154;20423;1;165;65.0;120;80;1;1;0;0;1;1
+9155;20495;1;158;66.0;135;85;3;1;0;0;1;1
+9156;17457;1;172;100.0;120;80;1;3;0;0;1;0
+9157;17472;1;169;67.0;120;80;1;1;0;0;1;0
+9158;18531;1;168;65.0;120;80;1;1;0;0;0;0
+9160;14818;1;171;69.0;120;80;1;1;0;0;0;0
+9161;21874;1;158;62.0;140;90;3;1;0;0;1;1
+9165;18456;2;164;64.0;150;100;1;1;0;0;0;1
+9166;19690;1;161;59.0;110;70;1;1;0;0;1;1
+9167;18485;1;157;53.0;130;80;1;1;0;0;1;1
+9168;15498;2;182;103.0;140;90;1;1;0;0;1;1
+9170;16102;2;175;81.0;120;80;1;3;1;0;1;0
+9171;19866;2;180;100.0;160;100;1;1;0;0;1;1
+9172;19679;1;158;66.0;140;90;2;2;0;0;1;0
+9173;21201;1;145;86.0;150;90;1;1;0;0;1;1
+9175;22737;2;163;50.0;130;80;3;3;1;0;1;1
+9176;20471;1;153;77.0;150;1000;1;1;0;0;1;1
+9178;14511;1;165;60.0;120;80;1;1;0;0;1;0
+9179;15290;1;160;55.0;110;80;1;1;0;0;1;0
+9180;17387;1;148;74.0;110;70;1;1;0;0;1;1
+9181;14357;2;170;68.0;120;80;1;1;1;0;1;0
+9182;15977;1;162;128.0;140;90;1;1;0;0;1;0
+9184;20593;1;168;72.0;120;60;1;1;0;0;1;0
+9185;19261;1;160;66.0;120;80;1;1;0;0;0;1
+9188;18304;1;162;75.0;140;80;1;1;0;0;1;0
+9189;16874;1;165;90.0;140;90;3;3;0;0;1;1
+9190;21220;2;164;70.0;120;70;1;1;0;1;1;0
+9191;19768;1;166;69.0;120;80;1;1;0;0;1;0
+9192;22001;1;165;65.0;120;80;3;3;0;0;0;1
+9195;15298;1;165;57.0;130;80;1;1;0;0;1;0
+9196;18085;1;165;73.0;140;90;1;1;0;0;1;1
+9197;19019;1;165;120.0;130;80;1;1;0;0;1;0
+9198;18233;2;178;95.0;120;80;1;1;0;0;1;0
+9200;19666;1;166;92.0;140;90;3;1;0;0;0;1
+9201;19574;1;158;110.0;150;90;3;1;0;0;1;1
+9202;18907;2;168;74.0;140;90;1;1;0;0;0;1
+9203;21854;1;162;62.0;120;80;1;3;0;0;1;0
+9206;15543;1;168;98.0;150;90;1;1;0;0;1;0
+9209;15129;2;165;81.0;130;80;1;1;0;0;1;0
+9210;18881;1;148;75.0;120;80;1;1;0;0;1;0
+9211;17998;1;165;76.0;130;90;1;1;0;0;1;1
+9213;19555;1;159;62.0;120;80;1;1;0;0;1;1
+9214;18514;1;168;75.0;110;60;1;1;0;0;1;0
+9215;19013;1;172;74.0;120;80;1;1;0;0;0;0
+9216;21259;2;168;75.0;140;80;1;1;0;0;1;1
+9217;16731;1;165;85.0;140;100;1;1;0;0;1;0
+9218;19182;2;163;65.0;120;80;1;1;0;0;0;0
+9219;19911;1;166;55.0;120;80;1;1;0;0;1;0
+9221;19733;1;168;68.0;120;80;2;1;0;0;0;0
+9222;15372;1;165;64.0;120;70;1;1;0;0;0;0
+9223;21220;1;250;86.0;140;100;3;1;0;0;1;1
+9228;16721;1;160;78.0;120;80;1;1;0;0;1;1
+9229;22023;2;169;68.0;160;100;1;1;0;0;1;1
+9230;22590;2;164;72.0;130;90;2;1;0;0;1;1
+9232;15332;1;159;61.0;120;80;1;1;0;0;0;0
+9233;20957;2;175;83.0;120;80;1;1;0;0;1;0
+9234;21778;1;167;93.0;140;85;2;1;0;0;1;1
+9236;19161;1;156;92.0;120;80;1;1;0;0;1;0
+9237;22021;1;160;81.0;130;80;1;1;0;0;1;1
+9240;20405;1;164;60.0;120;80;2;1;0;0;1;0
+9241;19827;1;165;60.0;120;80;1;1;0;0;1;0
+9242;20560;1;158;62.0;150;90;1;1;0;0;1;1
+9245;23263;2;174;85.0;160;1000;2;1;0;0;0;1
+9246;19543;2;160;78.0;130;90;1;1;0;0;1;0
+9247;21843;1;166;72.0;140;90;1;1;0;0;1;1
+9250;18774;1;162;66.0;120;60;1;1;0;0;1;1
+9251;22735;2;162;72.0;150;100;1;2;1;0;1;1
+9252;20431;1;165;60.0;130;90;2;1;0;0;1;1
+9253;19110;1;163;62.0;130;90;2;2;0;0;0;1
+9254;21952;1;170;79.0;130;90;1;1;0;0;1;0
+9255;16752;1;169;64.0;110;70;1;1;0;0;1;0
+9256;21917;2;173;77.0;120;80;1;1;0;0;1;0
+9257;18101;1;155;89.0;160;1000;3;3;0;0;1;1
+9258;21131;1;165;72.0;120;80;1;1;0;0;0;1
+9259;14686;1;160;65.0;110;80;1;1;0;0;1;0
+9261;15387;2;170;60.0;130;80;1;1;0;0;0;1
+9264;19689;1;163;80.0;104;67;1;1;0;0;1;1
+9266;15162;1;150;69.0;120;80;1;1;0;0;1;0
+9267;15221;2;166;61.0;120;80;2;2;0;0;1;0
+9268;21012;1;165;68.0;120;80;1;1;0;0;1;0
+9269;18785;2;170;82.0;120;80;1;1;1;0;1;0
+9273;16896;1;168;65.0;110;69;1;1;0;0;0;0
+9275;16567;2;170;88.0;120;80;1;1;0;0;0;1
+9276;23365;1;156;81.0;150;80;2;1;0;0;0;1
+9277;21947;1;155;76.0;130;80;1;1;0;0;1;0
+9278;22135;1;152;64.0;120;80;1;3;0;0;1;0
+9280;15986;2;170;67.0;120;80;1;1;0;0;1;1
+9281;18847;1;166;68.0;120;80;1;1;0;0;0;0
+9284;15331;2;160;75.0;100;70;2;1;0;0;1;0
+9286;22804;2;179;80.0;130;90;1;1;0;0;1;0
+9287;19774;1;164;95.0;130;90;3;1;0;0;0;1
+9288;20243;1;165;69.0;120;80;1;1;0;0;1;1
+9289;18124;1;160;60.0;120;80;1;1;0;0;1;0
+9291;19158;1;158;75.0;160;90;1;1;0;0;1;0
+9292;22941;1;170;69.0;110;70;1;1;0;0;0;1
+9293;14462;1;158;78.0;100;70;1;1;0;1;1;0
+9295;22010;2;165;60.0;130;80;1;1;1;0;1;1
+9297;21912;1;162;70.0;120;80;1;1;0;0;1;1
+9298;21966;2;175;93.0;150;90;1;1;0;0;1;1
+9301;18827;2;169;104.0;120;80;1;1;0;0;1;0
+9302;21254;1;165;70.0;130;80;1;1;0;0;0;0
+9303;15912;1;165;45.0;100;70;1;1;0;0;1;0
+9305;16803;2;154;68.0;130;100;1;1;1;0;1;1
+9306;20412;1;164;90.0;140;90;1;1;0;0;1;1
+9308;18908;1;165;68.0;100;60;1;1;0;0;1;1
+9309;21286;1;165;70.0;120;79;1;1;0;0;1;1
+9311;23390;2;170;61.0;130;90;1;2;0;0;1;0
+9315;22683;1;162;58.0;130;90;1;1;0;0;0;1
+9316;21121;1;147;58.0;110;70;1;1;0;0;0;0
+9317;22860;1;169;56.0;120;80;1;1;0;0;1;1
+9320;14713;1;168;85.0;100;70;1;1;0;1;1;0
+9322;21881;2;171;91.0;140;100;2;2;0;0;1;1
+9323;14369;1;164;69.0;120;80;1;1;0;0;1;0
+9324;19700;2;169;68.0;160;90;1;1;0;0;1;1
+9325;23245;1;161;68.0;110;70;2;1;0;0;1;0
+9326;19797;1;152;82.0;140;89;1;2;0;0;0;1
+9327;17460;2;168;67.0;120;80;1;1;1;0;1;0
+9328;20746;1;165;63.0;120;80;1;1;0;0;1;1
+9330;20263;1;166;117.0;140;90;2;2;1;0;1;1
+9331;20545;1;168;72.0;140;90;3;3;0;0;1;1
+9334;19494;1;155;65.0;150;1100;1;1;0;0;1;0
+9336;17355;2;170;72.0;120;80;1;1;1;0;1;1
+9337;14328;1;150;67.0;110;70;1;1;0;0;1;0
+9339;19178;1;187;87.0;120;80;1;1;0;0;1;1
+9342;18486;1;170;56.0;120;70;2;1;0;0;0;0
+9343;14499;1;169;60.0;130;70;2;1;0;0;1;1
+9344;21060;2;161;57.0;160;90;2;1;1;0;1;0
+9346;15455;1;158;49.0;110;70;1;1;0;0;1;0
+9347;21906;2;163;63.0;120;80;1;1;0;0;1;0
+9348;19050;2;175;97.0;140;80;1;1;0;0;1;1
+9349;15109;1;161;79.0;120;80;1;1;0;0;1;0
+9350;16681;1;165;75.0;140;90;2;1;0;0;1;1
+9351;23283;2;169;62.0;140;80;1;1;0;0;1;1
+9354;20243;1;160;66.0;11;70;2;2;0;0;1;0
+9355;21156;1;154;76.0;130;90;1;1;0;0;1;1
+9361;15316;1;168;70.0;120;80;1;1;0;0;1;1
+9363;16226;1;164;65.0;110;70;1;1;0;0;1;0
+9364;21961;1;150;57.0;140;90;2;1;0;0;1;1
+9366;22768;1;154;49.0;120;80;1;1;0;0;1;1
+9367;18776;1;163;87.0;110;70;1;1;0;0;1;0
+9369;21831;1;159;51.0;110;70;1;1;0;0;1;0
+9371;18893;2;174;80.0;160;110;1;1;0;1;1;1
+9373;19000;1;156;68.0;120;80;1;1;0;0;1;1
+9376;21655;1;169;81.0;150;90;1;1;0;0;1;1
+9377;20297;1;178;75.0;120;80;1;1;0;0;1;1
+9378;19808;1;160;58.0;120;80;1;1;0;0;1;0
+9380;18240;2;169;79.0;130;80;1;1;0;0;1;0
+9383;16174;1;172;96.0;115;70;1;1;0;0;1;1
+9386;17689;1;163;86.0;140;80;1;1;0;0;1;1
+9388;18864;1;164;48.0;100;60;1;1;0;0;1;0
+9389;16066;1;167;89.0;130;95;1;1;0;0;0;1
+9390;15345;1;164;65.0;120;80;1;1;0;0;0;0
+9391;15837;1;166;63.0;120;80;3;3;0;0;0;1
+9392;18141;1;170;84.0;120;80;1;1;0;0;1;1
+9394;16784;1;171;84.0;140;90;2;1;0;0;1;1
+9395;19033;2;173;60.0;120;80;1;1;1;0;1;0
+9396;20558;2;169;65.0;120;80;1;1;0;0;1;0
+9397;22584;1;159;65.0;155;90;1;1;0;0;1;1
+9399;21096;1;156;62.0;130;80;1;1;0;0;1;1
+9400;20640;1;164;59.0;110;70;1;1;0;0;0;0
+9401;21261;2;180;60.0;100;90;2;2;0;0;1;0
+9402;21074;2;168;84.0;140;80;1;2;0;0;0;0
+9403;15969;1;162;68.0;110;70;1;1;0;0;1;0
+9404;18909;1;160;67.0;130;90;1;1;0;0;1;0
+9406;21281;1;162;79.0;140;90;2;1;0;0;1;1
+9407;20347;1;165;74.0;100;80;1;1;0;0;1;0
+9409;23534;1;159;60.0;140;80;1;3;0;0;0;1
+9411;18871;2;191;123.0;150;100;1;1;1;0;0;1
+9412;16871;1;155;85.0;130;80;1;1;0;0;1;0
+9413;18929;1;160;75.0;150;100;2;1;0;0;1;1
+9414;18918;2;174;68.0;120;70;1;1;0;0;1;0
+9418;21310;1;152;77.0;140;90;1;2;0;0;1;0
+9419;21764;1;170;75.0;130;80;1;1;0;0;1;1
+9420;20263;1;153;64.0;100;80;1;1;0;0;1;0
+9421;17342;1;165;70.0;120;80;2;1;0;0;0;1
+9422;16964;2;172;60.0;120;80;1;1;0;0;0;0
+9424;18185;2;168;74.0;130;90;2;1;1;0;0;1
+9426;21669;2;183;82.0;120;80;1;2;1;0;1;0
+9428;19012;1;169;71.0;120;80;1;1;0;0;1;1
+9429;15196;1;160;80.0;110;70;1;1;0;0;1;0
+9432;22957;2;162;75.0;125;75;2;1;0;0;0;1
+9435;21185;2;179;75.0;130;90;1;1;0;0;1;1
+9436;22589;1;160;65.0;130;1000;1;1;0;0;1;1
+9437;20297;1;167;76.0;103;78;1;1;0;0;1;1
+9438;18134;1;168;74.0;170;90;1;1;0;0;1;1
+9439;22177;2;172;66.0;110;70;1;1;0;0;0;0
+9442;21260;1;163;117.0;190;110;3;2;0;0;0;1
+9443;23215;1;147;52.0;120;80;1;1;0;0;1;1
+9444;20458;2;175;98.0;165;100;3;1;0;0;1;1
+9445;17746;1;157;59.0;120;80;1;1;0;0;1;1
+9446;19090;1;160;88.0;130;90;2;2;0;0;1;1
+9447;19782;1;167;66.0;120;80;1;1;0;0;0;1
+9448;16837;1;160;90.0;100;80;1;3;0;0;1;0
+9450;20361;2;178;77.0;120;80;1;1;0;0;1;0
+9451;22680;2;163;63.0;130;80;1;1;0;0;1;1
+9453;16001;2;170;69.0;140;100;1;1;0;0;1;1
+9454;23143;1;164;88.0;125;80;3;1;0;0;1;1
+9455;16096;1;155;62.0;90;60;1;1;0;0;1;0
+9456;21352;2;168;64.0;140;90;1;1;0;0;1;1
+9457;18298;1;160;68.0;120;80;1;1;0;0;1;0
+9458;20647;1;178;85.0;120;80;1;1;0;0;0;0
+9460;20496;1;168;82.0;180;90;1;1;0;0;1;1
+9461;20667;2;164;82.0;130;90;3;3;0;0;0;0
+9462;14730;1;158;51.0;100;60;1;1;0;0;1;0
+9463;15239;2;163;66.0;110;70;1;1;0;1;1;0
+9465;23378;2;170;104.0;130;90;1;1;1;0;0;0
+9466;20401;1;160;60.0;120;80;1;1;0;0;1;0
+9467;19180;2;163;63.0;120;80;1;1;0;0;1;0
+9469;22513;1;152;58.0;120;80;3;3;0;0;1;1
+9473;21115;1;154;87.0;130;80;3;1;0;0;0;1
+9475;22588;2;170;65.0;120;80;1;1;0;0;1;0
+9476;17393;2;168;52.0;100;60;1;1;1;0;1;0
+9477;15807;2;174;71.0;100;60;1;1;0;0;1;0
+9478;19889;1;158;93.0;120;80;1;1;0;0;1;1
+9479;21900;2;176;82.0;140;70;2;1;0;0;1;1
+9480;20582;1;165;60.0;130;80;1;1;0;0;1;0
+9481;14696;1;152;48.0;130;80;1;2;0;0;0;0
+9482;19528;1;162;69.0;130;9100;1;1;0;0;1;1
+9484;19677;1;152;62.0;130;85;3;1;0;0;0;1
+9485;14531;1;161;67.0;110;70;1;1;0;0;1;0
+9486;16056;1;172;86.0;120;80;1;1;0;0;1;0
+9487;23235;1;165;61.0;120;80;1;1;0;0;1;1
+9488;20586;1;163;106.0;130;80;1;1;0;0;1;1
+9490;22570;1;160;65.0;120;80;1;1;0;0;0;1
+9494;21684;1;165;90.0;120;80;1;2;0;0;0;0
+9496;20620;1;155;87.0;110;80;1;1;0;0;1;0
+9498;21982;1;165;70.0;120;80;1;1;0;0;1;0
+9499;22665;1;168;65.0;130;80;1;1;0;0;1;0
+9500;18149;1;167;75.0;120;80;1;1;0;0;1;0
+9501;16718;2;182;100.0;130;90;1;1;0;0;1;1
+9503;21107;1;168;97.0;120;80;3;3;0;0;1;1
+9507;21088;1;168;65.0;120;80;1;1;0;0;1;1
+9508;17506;2;169;68.0;120;80;1;2;1;0;1;1
+9509;22583;1;164;78.0;120;80;1;1;0;0;1;0
+9510;16099;1;153;93.0;140;90;1;1;0;0;1;1
+9511;19145;1;168;60.0;140;90;1;1;0;0;1;1
+9513;17382;1;170;80.0;140;90;3;1;0;0;1;0
+9515;21980;2;169;68.0;120;80;1;1;0;0;1;0
+9516;18088;1;162;75.0;140;100;1;1;0;0;1;1
+9517;15207;2;175;79.0;120;80;1;1;1;0;1;1
+9518;17447;1;173;76.0;120;80;1;1;0;0;1;0
+9520;17629;1;168;71.0;120;80;1;1;0;0;1;0
+9523;22511;2;169;75.0;120;80;1;1;0;0;1;0
+9525;16278;1;149;61.0;130;90;1;1;0;0;0;1
+9526;17439;1;168;101.0;150;90;2;2;0;0;0;1
+9527;23218;1;159;70.0;130;80;3;3;0;0;0;1
+9528;18877;1;159;75.0;150;90;2;1;0;0;1;1
+9530;22083;1;164;61.0;120;80;1;1;0;0;1;1
+9531;22175;1;156;55.0;130;70;1;1;0;0;0;1
+9534;20409;1;165;68.0;140;80;3;1;0;0;1;1
+9535;15222;2;165;75.0;150;100;2;1;1;1;1;1
+9536;22502;2;160;73.0;130;90;1;1;0;0;0;1
+9538;21666;1;162;73.0;110;70;2;2;0;0;0;0
+9540;22394;1;168;105.0;120;80;1;1;0;0;0;1
+9541;22380;1;165;80.0;120;80;1;1;0;0;1;1
+9543;15423;1;160;75.0;120;70;1;1;0;0;1;0
+9544;19759;1;165;64.0;120;80;1;1;0;0;1;1
+9545;20455;2;184;74.0;120;80;1;2;0;0;1;0
+9547;18765;1;161;65.0;120;80;2;1;0;0;1;0
+9548;21167;1;156;53.0;178;1033;2;2;0;0;1;1
+9551;20303;2;175;101.0;140;90;1;2;0;0;1;0
+9553;21901;1;166;89.0;130;90;3;1;0;0;0;1
+9554;19958;2;164;64.0;130;80;1;1;0;0;1;0
+9555;19733;1;165;94.0;130;90;1;1;1;1;1;0
+9557;21059;1;159;101.0;120;70;1;1;0;0;1;1
+9559;16139;1;154;60.0;90;60;1;3;0;0;1;0
+9560;16724;1;153;83.0;110;70;1;2;0;0;1;0
+9562;20392;1;163;77.0;170;100;1;2;0;1;1;1
+9563;18362;1;158;61.0;120;80;1;1;0;0;1;0
+9564;22552;1;150;80.0;130;90;3;1;1;0;0;1
+9569;22024;1;166;78.0;130;90;3;3;0;0;1;1
+9570;19706;2;175;70.0;100;70;1;1;1;0;1;0
+9571;18372;1;156;73.0;120;80;1;1;0;0;1;0
+9572;14772;1;164;58.0;110;70;1;1;0;0;0;0
+9573;23360;2;168;74.0;135;90;1;1;0;0;1;0
+9576;19698;1;167;65.0;120;80;1;1;0;0;1;0
+9578;19703;2;175;62.0;125;80;1;1;0;0;1;0
+9579;18138;1;162;60.0;120;80;1;1;0;0;1;0
+9580;20540;1;163;70.0;120;80;3;3;0;0;1;1
+9583;19540;2;172;86.0;120;80;2;1;0;1;1;0
+9584;14707;2;165;70.0;120;80;2;1;1;0;1;0
+9585;17626;1;153;53.0;120;80;1;1;0;0;1;0
+9586;17370;2;174;97.0;140;80;3;2;0;0;1;1
+9588;21026;2;159;56.0;120;80;1;1;0;0;1;0
+9589;19521;2;168;92.0;150;70;1;1;0;0;1;1
+9590;16022;1;164;87.0;125;90;1;2;0;0;1;0
+9592;20019;1;167;70.0;120;80;1;1;0;0;0;0
+9593;19617;1;164;105.0;125;80;2;1;0;0;1;0
+9594;19474;1;169;78.0;120;80;1;2;0;0;0;1
+9595;23247;1;168;58.0;150;80;1;1;0;0;1;1
+9596;20413;1;164;67.0;120;80;1;1;0;0;1;1
+9598;22693;1;165;83.0;120;80;1;1;0;0;1;0
+9599;17568;2;165;75.0;120;80;1;1;1;0;1;0
+9600;20555;2;168;87.0;120;80;1;2;1;1;1;1
+9601;18271;2;190;85.0;120;80;2;2;1;0;1;1
+9602;18548;1;168;85.0;120;90;1;1;0;0;1;0
+9603;19588;2;160;60.0;120;80;1;1;0;0;1;0
+9604;20260;1;152;92.0;150;1100;3;1;0;0;0;1
+9605;15871;1;169;71.0;110;70;1;1;0;0;1;0
+9606;16785;2;180;70.0;120;80;1;2;0;0;1;0
+9607;22466;2;174;70.0;130;90;3;1;0;0;0;1
+9610;16705;1;156;61.0;150;10;1;1;0;0;0;1
+9611;23299;1;162;110.0;140;80;3;3;0;0;0;1
+9612;14665;1;169;59.0;130;90;1;1;0;0;1;0
+9613;21225;2;179;93.0;118;85;3;2;0;1;1;1
+9614;16843;1;147;53.0;100;80;2;2;0;0;0;1
+9615;21148;1;155;73.0;110;80;1;1;0;0;0;1
+9616;16069;1;163;91.0;120;80;1;1;0;0;1;0
+9617;18947;1;165;69.0;132;80;2;1;0;0;1;0
+9618;16804;2;184;70.0;120;80;1;1;0;0;1;0
+9619;18081;1;163;95.0;160;90;1;1;0;0;1;1
+9620;17631;1;158;67.0;120;80;1;1;0;1;1;0
+9623;20422;1;167;71.0;110;70;1;1;0;0;1;0
+9624;19829;2;170;69.0;120;70;1;1;0;0;1;0
+9626;18186;1;154;64.0;120;80;1;1;0;0;0;0
+9627;15822;1;163;68.0;130;80;3;3;0;0;1;1
+9628;20558;1;155;65.0;140;90;3;1;0;0;1;1
+9629;22138;2;180;96.0;130;90;1;1;0;0;1;0
+9630;15169;2;172;73.0;120;80;1;1;1;0;1;0
+9632;19820;1;156;56.0;120;80;1;1;0;0;0;1
+9634;22363;1;152;63.0;130;60;1;1;0;0;1;1
+9635;22732;1;162;72.0;140;80;1;1;0;0;0;1
+9636;20279;1;159;80.0;120;90;2;1;0;0;1;1
+9640;14357;2;181;101.0;150;80;1;1;0;0;1;1
+9643;16097;1;154;51.0;120;70;1;1;0;0;1;0
+9644;22059;2;173;81.0;140;90;3;1;1;0;0;0
+9646;18763;1;150;53.0;140;90;1;1;0;1;0;1
+9647;23516;1;169;69.0;130;90;3;3;0;0;1;1
+9649;15972;2;170;80.0;90;60;2;1;0;0;1;0
+9651;18085;1;164;81.0;110;70;1;1;0;0;1;0
+9652;16315;1;152;57.0;140;90;2;1;0;0;1;1
+9653;21177;1;150;51.0;150;90;2;1;0;0;1;1
+9654;19999;1;165;65.0;130;80;1;1;0;0;1;1
+9656;20510;1;152;76.0;120;80;1;1;0;0;1;1
+9657;20501;1;160;74.0;150;80;3;1;1;0;1;1
+9660;19087;1;162;70.0;130;80;1;1;0;0;1;0
+9661;22735;1;161;64.0;140;90;1;1;0;0;1;1
+9662;21117;1;154;50.0;120;80;1;1;0;0;1;1
+9663;18399;2;171;81.0;140;100;1;1;0;0;1;1
+9664;16110;2;170;65.0;120;80;1;1;0;0;1;0
+9665;14581;1;163;69.0;130;80;1;1;0;0;1;1
+9667;23405;1;168;112.0;140;90;3;3;0;0;1;1
+9668;19753;1;166;72.0;140;100;1;1;0;0;1;1
+9669;17392;1;154;90.0;130;90;1;1;0;0;0;0
+9670;18963;2;158;78.0;110;90;1;1;0;0;0;0
+9671;22679;1;158;60.0;120;80;1;1;0;0;1;1
+9672;14592;2;180;76.0;120;80;2;1;1;0;1;0
+9673;22942;1;156;61.0;160;100;1;1;0;0;1;1
+9674;18915;1;165;64.0;120;90;1;1;0;0;1;0
+9675;20658;1;160;60.0;120;80;1;1;0;0;1;1
+9676;20397;2;170;92.0;160;100;2;1;0;1;1;1
+9677;19809;1;156;61.0;120;70;1;1;0;0;1;0
+9678;20468;1;150;58.0;90;60;1;1;0;0;1;0
+9679;21974;1;170;80.0;120;80;1;1;0;0;1;1
+9680;23348;2;165;75.0;140;90;1;1;0;0;1;1
+9681;16907;1;156;60.0;110;70;1;1;0;0;1;1
+9682;20557;1;170;82.0;120;80;3;1;0;0;1;1
+9683;16656;1;152;66.0;130;80;1;1;0;0;0;1
+9685;20497;1;178;75.0;120;80;1;1;0;0;0;0
+9686;20461;1;158;92.0;140;90;1;2;0;0;0;1
+9687;19644;1;160;85.0;130;90;3;3;0;0;1;1
+9688;21178;1;150;77.0;110;80;1;1;0;0;1;1
+9690;17991;2;163;59.0;120;80;1;1;1;0;1;0
+9691;22485;2;174;56.0;120;70;1;1;0;0;1;0
+9692;22005;1;143;70.0;140;80;3;3;0;0;1;1
+9694;14632;2;174;82.0;160;100;3;1;0;0;1;1
+9696;21208;2;184;99.0;120;80;2;1;0;0;1;1
+9698;19590;1;156;80.0;140;90;1;1;0;0;1;1
+9699;18260;1;158;88.0;130;80;3;1;0;0;1;1
+9700;16214;2;172;83.0;140;70;1;1;0;0;1;1
+9701;21898;1;164;83.0;130;80;3;1;0;0;1;1
+9702;21288;1;159;59.0;120;80;1;1;0;0;1;0
+9703;21099;1;161;73.0;130;85;2;1;0;0;1;1
+9704;18945;1;165;81.0;120;80;1;1;0;0;1;1
+9705;21732;1;153;123.0;140;1000;1;1;0;0;1;1
+9706;22450;2;173;70.0;150;100;2;2;0;0;1;1
+9707;22747;1;157;55.0;120;80;1;1;0;0;1;1
+9708;16979;1;171;92.0;100;70;2;2;0;0;1;0
+9710;21052;1;158;68.0;120;80;1;1;0;0;1;1
+9711;17537;2;170;80.0;150;80;2;1;0;0;1;1
+9712;18098;1;161;65.0;130;90;1;1;0;0;1;1
+9713;18170;1;156;59.0;140;90;2;1;0;0;1;1
+9717;21016;2;160;60.0;120;80;1;1;0;0;1;1
+9718;16826;1;154;51.0;100;70;1;1;0;0;1;0
+9720;21421;1;160;76.0;140;80;1;1;0;0;1;0
+9721;21405;2;120;80.0;140;80;2;2;0;0;1;0
+9724;17346;2;174;99.0;110;80;1;1;1;0;1;0
+9725;21246;1;169;90.0;120;70;1;1;0;0;1;0
+9726;18135;1;162;68.0;125;80;1;1;0;0;1;0
+9727;18184;1;168;73.0;120;80;1;1;0;0;1;0
+9729;21020;2;158;64.0;140;90;1;1;0;0;1;1
+9734;19730;1;175;95.0;140;90;1;1;1;0;1;1
+9735;15304;1;175;68.0;120;80;1;1;0;0;1;1
+9736;17503;1;170;90.0;130;80;1;1;0;0;1;1
+9737;21245;1;159;82.0;180;110;3;1;0;0;1;0
+9740;21210;2;166;84.0;150;90;1;1;0;0;1;1
+9741;19695;2;168;68.0;120;80;1;1;0;0;1;0
+9742;23221;2;169;73.0;130;90;1;2;0;0;1;1
+9743;23486;1;172;91.0;130;90;3;1;0;1;1;1
+9744;21736;2;173;81.0;130;80;1;1;0;0;1;0
+9747;17606;2;170;80.0;140;90;1;3;0;0;1;1
+9749;21065;1;156;62.0;150;90;1;1;0;1;1;1
+9750;16199;1;167;84.0;110;80;1;2;0;0;0;0
+9754;21730;1;152;99.0;140;90;2;3;0;0;1;1
+9757;20915;2;160;70.0;120;80;1;1;0;0;1;0
+9759;19611;1;153;57.0;120;80;1;1;0;0;1;1
+9760;19162;1;154;67.0;110;80;2;1;0;0;1;0
+9761;22042;1;168;69.0;120;80;1;1;0;0;1;0
+9763;22501;2;180;90.0;120;80;1;1;0;0;1;1
+9764;18014;1;161;59.0;120;80;3;1;0;0;1;0
+9765;15329;2;159;60.0;120;80;2;1;0;0;1;0
+9767;23368;1;165;82.0;110;70;2;1;0;0;1;0
+9768;20292;1;156;50.0;120;80;1;1;0;0;0;0
+9769;21022;1;172;70.0;120;70;1;1;0;0;1;1
+9772;21331;2;164;110.0;140;100;1;1;0;0;1;1
+9773;15972;2;189;106.0;110;70;1;1;1;0;1;0
+9775;21711;2;166;75.6;110;70;1;1;0;0;1;0
+9776;18703;2;169;67.0;120;80;1;1;0;0;1;0
+9777;20643;1;169;95.0;120;80;1;1;0;0;1;0
+9778;22916;2;160;80.0;120;80;1;1;0;0;1;1
+9779;20962;1;163;66.0;130;80;1;1;0;0;1;0
+9780;21710;2;178;85.0;140;80;3;1;0;0;1;1
+9783;22567;1;161;67.0;130;80;1;1;0;0;1;0
+9784;19855;1;169;80.0;120;80;1;1;0;0;1;0
+9785;16053;2;165;69.0;110;70;1;1;0;0;1;1
+9786;19026;1;164;73.0;110;70;2;1;0;0;1;0
+9787;15796;1;156;67.0;100;60;1;1;0;0;1;0
+9789;16164;1;161;83.0;120;70;1;3;0;0;1;1
+9790;14613;1;185;75.0;120;80;1;1;0;1;1;0
+9791;17463;1;150;61.0;110;80;1;1;0;0;1;0
+9792;18051;2;173;86.0;150;90;1;1;0;0;0;1
+9793;19518;1;154;66.0;140;90;1;1;0;0;1;1
+9794;22655;1;150;54.0;140;80;1;1;0;0;0;1
+9795;22524;2;183;76.0;140;90;1;1;0;0;0;1
+9796;16744;1;152;80.0;140;100;1;1;0;0;1;1
+9797;19158;1;160;70.0;120;80;1;1;0;0;1;0
+9798;21355;2;168;80.0;140;90;1;1;0;0;1;0
+9799;22874;2;163;76.0;120;59;1;1;0;0;0;0
+9800;23447;1;158;66.0;120;80;3;1;0;0;1;1
+9802;15890;1;167;75.0;120;90;1;1;1;1;1;0
+9803;19986;1;169;69.0;110;70;1;1;0;0;1;0
+9804;20883;2;167;71.0;140;90;1;1;0;0;1;1
+9805;22796;2;167;73.0;110;80;1;3;0;0;1;0
+9806;23444;2;170;104.0;180;100;2;2;0;0;1;1
+9808;21892;1;163;78.0;120;85;1;1;0;0;1;1
+9809;18854;1;155;76.0;120;80;1;1;0;0;1;0
+9811;15446;1;178;87.0;120;70;1;1;0;0;1;0
+9812;19717;1;166;50.0;120;70;1;1;0;0;1;1
+9813;19599;2;177;70.0;140;80;1;1;1;0;1;0
+9814;21896;1;156;88.0;140;90;3;3;0;0;1;1
+9817;21989;1;159;72.0;159;90;3;3;0;0;1;1
+9823;18737;2;163;92.0;120;80;1;1;0;0;0;0
+9824;20447;1;172;80.0;190;90;2;1;0;0;0;1
+9825;22575;2;173;80.0;140;90;3;2;1;1;1;1
+9826;16128;2;165;60.0;140;80;1;1;0;0;0;1
+9827;21083;2;172;90.0;110;70;2;2;1;0;0;1
+9828;22145;2;158;85.0;130;90;2;1;0;0;0;1
+9829;21721;1;158;70.0;160;100;1;1;0;0;1;1
+9830;22213;1;173;61.0;130;79;3;3;0;0;0;0
+9831;14463;2;172;63.0;120;80;2;2;0;0;1;0
+9832;22661;1;167;65.0;120;80;1;1;0;0;1;1
+9833;20354;2;169;97.0;130;60;1;1;0;0;1;0
+9834;17064;1;173;69.0;120;70;1;1;0;0;1;0
+9835;18003;2;171;92.0;100;80;1;1;0;1;1;1
+9836;21055;1;175;73.0;130;80;1;3;0;0;1;1
+9838;20397;2;167;76.0;120;80;1;1;0;0;1;0
+9839;23240;1;170;70.0;120;80;1;1;0;0;1;0
+9840;22174;1;155;53.0;120;80;1;1;0;0;1;1
+9841;19909;1;152;66.0;120;80;1;1;0;0;1;0
+9842;21184;2;180;76.0;120;80;1;1;0;0;0;1
+9843;23445;1;152;59.0;160;100;2;2;0;0;1;1
+9845;23380;2;171;83.0;120;80;1;1;0;0;1;0
+9846;21246;2;174;98.0;120;80;2;2;1;0;1;0
+9847;20284;1;161;80.0;140;90;3;1;0;1;1;1
+9848;19609;1;175;85.0;140;70;1;1;0;0;1;1
+9850;22065;1;156;71.0;110;70;1;2;0;0;1;0
+9855;20300;1;153;52.0;120;80;1;1;0;0;1;0
+9858;21811;1;155;76.0;120;80;1;1;0;0;1;0
+9859;16704;1;153;85.0;150;90;1;1;0;0;0;1
+9860;21345;2;169;70.0;120;90;1;1;0;0;1;0
+9861;19699;2;172;64.0;90;60;3;3;1;0;1;1
+9862;21065;1;160;69.0;150;90;2;1;0;0;1;1
+9863;14553;2;165;89.0;120;80;1;2;0;0;1;1
+9865;18034;1;160;62.0;120;80;1;1;0;0;0;0
+9867;18335;1;162;75.0;130;80;1;1;0;0;1;0
+9868;23578;1;151;67.0;150;100;2;1;0;0;0;1
+9869;15490;1;166;70.0;110;70;1;1;0;0;1;0
+9871;21121;1;168;58.0;120;80;1;1;0;0;1;0
+9872;18325;2;174;78.0;120;80;1;1;0;0;1;1
+9873;18491;1;170;90.0;120;80;1;1;0;0;0;0
+9874;21178;1;165;78.0;150;100;2;1;0;0;1;1
+9875;22451;2;165;67.0;120;70;1;1;0;0;1;0
+9879;18186;2;176;85.0;130;85;1;1;0;0;1;0
+9880;22676;2;164;65.0;130;80;1;1;0;0;1;0
+9882;18773;2;170;68.0;120;80;1;1;0;0;1;0
+9883;22638;1;168;75.0;130;90;1;3;0;0;1;0
+9885;21987;1;154;82.0;110;70;2;1;0;0;1;1
+9887;19106;1;180;75.0;120;80;1;1;0;0;1;0
+9889;15197;1;168;65.0;110;70;1;1;0;0;1;0
+9891;21097;2;174;107.0;150;80;1;1;0;1;1;1
+9892;21973;1;165;64.0;120;80;1;1;0;0;1;1
+9893;18070;1;168;92.0;160;100;1;1;0;0;1;1
+9894;23465;2;167;105.0;140;70;1;1;0;0;0;1
+9896;19662;1;164;65.0;110;60;1;1;0;0;0;0
+9900;21782;2;173;68.0;120;70;1;1;0;0;1;0
+9901;21032;1;168;67.0;120;70;1;1;0;0;1;1
+9903;20316;2;171;83.0;120;80;1;1;1;0;1;1
+9904;20191;1;158;84.0;140;100;3;3;0;0;1;1
+9907;19174;2;174;75.0;120;80;1;1;0;0;1;0
+9908;18262;1;154;45.0;90;60;1;1;0;0;1;0
+9909;17703;1;172;67.0;120;80;1;1;0;0;1;1
+9910;20536;1;169;74.0;120;80;1;1;0;0;1;0
+9911;19700;1;158;50.0;90;60;3;1;1;0;1;0
+9912;14460;2;180;88.0;120;80;2;1;0;0;1;0
+9913;20404;1;154;76.0;120;80;1;1;0;0;1;1
+9914;21867;1;160;74.0;120;80;2;1;0;0;1;0
+9915;21785;2;165;85.0;130;80;1;1;0;0;1;0
+9916;19008;1;154;53.0;110;70;3;3;0;0;1;1
+9920;19201;1;168;70.0;130;85;1;1;0;0;1;1
+9923;16810;2;165;59.0;120;80;1;1;0;0;1;0
+9924;19741;2;177;88.0;140;90;1;1;0;1;1;1
+9926;19012;2;170;76.0;120;80;1;1;1;0;1;0
+9927;23335;1;160;57.0;110;70;1;1;0;0;1;1
+9931;18835;2;169;66.0;110;70;1;1;0;0;1;0
+9933;18874;2;180;103.0;140;1000;1;1;0;0;1;1
+9935;19635;1;170;68.0;120;80;1;1;0;0;1;0
+9936;17447;1;162;64.0;110;70;1;1;0;0;1;0
+9937;16834;1;173;99.0;120;80;1;1;0;0;1;0
+9938;18280;1;155;105.0;120;80;1;1;0;0;0;0
+9939;21007;1;168;68.0;130;80;1;1;0;0;1;1
+9940;19071;1;150;40.0;150;90;1;1;0;0;1;0
+9943;18952;1;162;92.0;150;1000;1;1;0;0;1;1
+9944;17626;1;164;79.0;130;70;1;1;0;0;1;0
+9945;14562;2;159;56.0;120;80;1;1;0;0;0;0
+9946;23370;1;161;61.0;160;80;2;1;0;0;1;1
+9947;19468;2;160;74.0;120;80;1;1;0;0;0;0
+9948;18041;2;175;87.0;140;90;1;2;0;0;1;1
+9949;18879;1;167;80.0;130;80;1;1;0;0;1;1
+9950;21142;1;170;69.0;120;80;3;3;0;0;1;1
+9952;19092;1;167;63.0;100;60;1;1;0;0;1;0
+9953;20399;2;176;76.0;145;90;2;1;0;0;1;1
+9955;16813;1;168;105.0;140;80;3;1;0;0;1;1
+9957;22559;2;168;57.0;120;70;1;2;0;0;0;0
+9958;14495;1;159;54.0;110;70;1;1;0;0;0;0
+9960;19051;1;164;81.0;120;80;1;1;1;0;0;0
+9962;15285;1;165;80.0;140;90;1;1;0;0;1;1
+9963;21200;1;157;83.0;130;80;3;3;0;0;1;1
+9964;17254;1;158;64.0;120;80;1;1;0;0;1;0
+9965;21893;1;158;71.0;130;90;3;1;0;0;0;1
+9966;18272;1;164;74.0;160;70;2;1;0;0;0;1
+9967;18601;1;158;74.0;120;80;1;1;1;0;1;0
+9968;21189;1;163;70.0;110;70;1;1;0;0;0;0
+9971;21062;1;150;43.0;120;80;1;1;0;0;1;1
+9972;21155;1;168;63.0;120;80;1;1;0;0;1;0
+9973;21793;1;154;76.0;136;80;2;1;0;0;0;1
+9975;17501;1;173;84.0;160;90;1;1;0;1;1;1
+9976;19121;2;165;68.0;130;60;3;3;1;1;1;1
+9977;19823;1;165;65.0;120;80;3;3;0;0;0;0
+9978;18255;1;159;62.0;120;70;1;1;0;0;1;0
+9979;17817;2;173;75.0;120;80;1;1;1;1;1;1
+9980;20235;1;161;80.0;110;80;2;3;0;0;0;1
+9981;18240;1;142;62.0;150;100;1;1;0;0;1;1
+9982;21634;1;163;81.0;140;90;2;1;0;0;1;0
+9983;17613;1;160;64.0;120;80;1;1;0;0;1;0
+9984;21961;1;164;77.0;110;90;1;1;0;0;1;1
+9985;14653;1;162;70.0;120;80;1;1;0;0;1;0
+9986;21135;1;150;99.0;120;80;3;1;0;0;0;1
+9987;22642;2;151;49.0;120;80;2;1;1;0;1;1
+9988;17719;1;156;66.0;120;80;1;1;0;0;1;0
+9989;21124;1;155;60.0;150;90;1;1;0;0;1;1
+9991;17413;1;168;72.0;140;90;2;1;0;0;1;1
+9992;19765;1;156;78.0;90;60;1;1;0;0;1;0
+9993;19666;1;180;68.0;100;70;1;1;0;0;1;0
+9995;19632;2;185;85.0;120;80;1;1;0;0;0;0
+9996;18969;1;156;70.0;120;80;1;1;0;0;1;0
+9998;20187;2;165;91.0;170;100;3;2;1;0;1;0
+9999;21237;1;168;70.0;120;80;1;1;0;0;0;0
+10000;19457;1;165;88.0;120;80;1;1;0;0;0;0
+10001;19555;2;162;96.0;110;60;2;3;0;0;1;0
+10002;15901;1;154;71.0;100;70;1;1;0;0;1;0
+10003;14751;2;165;69.0;130;80;1;1;0;0;1;0
+10005;17732;2;173;80.0;120;80;1;1;1;1;1;0
+10006;15476;2;168;78.0;120;80;1;1;1;0;1;0
+10007;22008;2;170;74.0;120;80;1;1;0;0;1;0
+10008;21949;1;145;67.0;130;80;1;1;0;0;1;1
+10009;16829;1;162;79.0;120;80;1;1;0;0;1;0
+10010;19700;1;165;86.0;160;115;3;3;1;0;1;1
+10011;17653;1;165;80.0;130;80;1;3;0;0;0;1
+10012;15535;2;166;61.0;110;60;1;1;0;0;1;0
+10014;18726;1;167;75.0;170;100;1;1;0;0;1;1
+10015;18469;1;156;84.0;120;80;1;1;0;0;1;0
+10016;19787;2;165;78.0;120;80;3;3;0;0;1;0
+10017;17453;2;165;64.0;120;80;1;1;1;1;1;0
+10018;18158;1;155;57.0;150;90;3;3;0;0;1;1
+10019;16878;2;170;70.0;140;90;1;1;0;0;1;1
+10020;14499;1;156;54.0;120;80;1;1;0;0;0;0
+10022;19712;1;168;62.0;120;80;1;1;0;0;1;1
+10023;15775;2;173;70.0;150;80;1;1;0;0;1;1
+10025;22479;2;173;76.0;150;100;1;1;0;0;1;1
+10026;16859;2;158;67.0;180;120;1;1;1;1;1;1
+10027;15279;1;163;89.0;120;60;1;1;0;0;0;1
+10028;22053;1;160;70.0;140;90;3;3;0;0;1;1
+10029;23404;2;171;76.0;140;80;1;1;0;0;1;1
+10030;18923;1;167;69.0;110;80;1;1;0;0;1;0
+10031;16702;2;170;65.0;120;80;1;1;0;0;1;0
+10032;20382;2;165;80.0;120;80;1;1;0;0;1;0
+10033;18985;1;171;73.0;130;80;1;1;0;0;0;0
+10034;21180;2;171;103.0;120;80;1;1;1;0;1;0
+10036;20325;1;157;55.0;175;100;3;1;0;0;1;1
+10038;22611;1;164;78.0;110;70;2;2;0;0;0;0
+10040;17475;1;170;68.0;120;70;1;1;0;0;1;0
+10041;21001;1;164;76.0;120;80;2;1;0;0;1;1
+10042;19190;1;148;83.0;130;90;1;1;0;0;0;1
+10044;21974;2;174;100.0;120;80;1;3;1;0;1;0
+10045;20338;1;158;80.0;130;80;1;1;0;0;1;1
+10046;22437;1;160;83.0;120;80;1;1;0;0;1;0
+10047;15336;2;179;68.0;130;90;2;2;1;1;1;0
+10048;21900;2;165;93.0;180;100;2;1;0;0;1;1
+10049;21970;1;161;83.0;140;90;2;2;0;0;1;1
+10050;19714;1;165;69.0;120;80;1;1;0;0;1;0
+10051;14545;2;180;80.0;120;80;1;1;1;0;1;0
+10052;18963;1;165;68.0;160;80;1;1;0;0;1;1
+10053;21025;1;140;90.0;140;90;3;1;0;0;1;1
+10055;21275;2;169;86.0;130;80;1;1;0;0;1;0
+10056;15981;1;156;57.0;110;70;1;1;0;0;1;0
+10057;20459;1;165;65.0;120;80;1;1;0;0;0;0
+10060;18919;1;159;100.0;130;80;1;1;0;0;1;0
+10061;18705;1;167;93.0;150;100;3;1;0;0;1;1
+10062;23428;2;165;73.0;140;90;1;1;0;0;1;1
+10067;22155;2;175;74.0;120;90;1;1;0;0;1;1
+10069;21809;2;163;60.0;150;90;2;1;0;0;0;1
+10070;20421;2;174;71.0;120;80;1;1;1;0;1;0
+10073;22629;1;164;82.0;120;80;3;1;0;0;1;0
+10074;16116;2;173;69.0;110;80;1;1;0;0;1;0
+10076;16876;1;165;60.0;120;80;1;1;0;0;1;0
+10077;14644;2;175;80.0;120;80;1;1;0;0;1;0
+10078;23129;2;162;65.0;130;90;1;1;0;0;1;1
+10079;19753;1;150;60.0;120;80;2;1;0;0;1;0
+10080;20219;1;165;55.0;120;80;1;1;0;0;1;0
+10082;17051;2;161;55.0;120;80;1;1;0;0;1;0
+10083;21235;1;154;61.0;70;50;2;2;0;1;0;0
+10084;16578;1;153;68.0;110;70;1;2;1;0;1;0
+10086;17392;2;175;70.0;110;70;1;1;0;0;1;1
+10088;19712;1;153;95.0;120;80;2;1;0;0;1;1
+10089;23305;1;154;60.0;150;1100;1;1;0;0;1;1
+10090;18804;2;182;116.0;120;80;1;1;1;1;0;1
+10092;22067;1;166;66.0;110;80;2;2;0;0;1;1
+10093;21690;1;153;78.0;110;80;1;2;0;0;0;0
+10095;14801;1;171;79.0;140;90;1;1;0;0;1;1
+10096;23271;1;159;64.0;120;80;1;1;0;0;1;1
+10097;19840;1;158;75.0;120;80;1;1;0;0;1;0
+10099;22545;1;174;65.0;130;80;2;2;0;0;1;0
+10100;21156;1;158;78.0;120;90;1;1;0;0;1;0
+10101;17615;2;176;72.0;120;80;1;1;0;0;1;0
+10103;18250;2;175;87.0;140;90;1;1;0;0;0;1
+10104;18309;2;168;62.0;120;70;1;1;0;0;1;0
+10106;19609;1;155;70.0;120;70;1;1;0;0;1;0
+10107;21072;2;172;86.0;170;100;2;2;0;0;1;1
+10110;19053;1;156;65.0;120;70;1;1;0;0;1;0
+10111;19547;2;167;73.0;130;90;1;1;0;0;1;0
+10112;18242;1;158;68.0;120;90;1;1;0;0;0;1
+10113;16666;1;165;73.0;135;90;1;1;0;0;1;1
+10115;21378;1;160;98.0;170;90;1;1;0;0;1;1
+10116;20535;1;160;74.0;123;69;1;1;0;0;1;0
+10118;23368;1;157;80.0;150;100;3;3;0;0;1;0
+10120;20905;1;148;84.0;120;80;1;1;0;0;1;0
+10123;23478;1;147;61.0;110;70;1;1;0;0;1;0
+10124;21365;2;152;78.0;160;90;1;1;1;0;1;1
+10125;15356;1;161;102.0;150;90;1;2;0;0;0;1
+10128;14633;1;160;61.0;110;70;1;1;0;0;1;0
+10129;14683;1;164;62.0;120;80;1;1;0;0;0;0
+10130;21130;2;172;82.0;120;80;2;2;0;0;1;1
+10131;19642;2;160;63.0;120;80;1;1;0;0;1;0
+10132;16075;2;177;100.0;120;80;1;1;1;0;1;0
+10133;20365;1;165;70.0;120;70;1;1;0;0;1;1
+10134;19153;1;162;109.0;150;100;1;1;0;0;1;1
+10135;21102;1;162;63.0;120;80;1;1;0;0;1;1
+10137;16745;1;158;81.0;125;95;1;1;0;0;1;0
+10139;15935;1;152;73.0;140;90;1;2;0;0;1;1
+10140;19052;1;165;65.0;120;80;1;1;0;0;0;0
+10142;20579;2;117;78.0;150;90;1;1;1;0;1;1
+10143;20924;2;179;80.0;110;80;1;1;0;0;1;0
+10145;19887;1;163;77.0;90;60;1;1;0;0;1;0
+10146;19178;1;170;60.0;120;80;1;1;0;0;1;0
+10147;18757;1;164;66.0;140;80;1;1;0;0;1;0
+10149;16760;2;172;83.0;120;80;1;1;0;0;1;0
+10150;16022;2;168;51.0;110;70;1;1;0;0;1;0
+10151;22756;1;165;58.0;120;80;1;1;0;0;1;1
+10152;20555;1;157;55.0;90;60;2;1;0;0;1;0
+10153;19676;2;170;73.0;120;80;2;1;0;0;1;0
+10154;19093;1;166;87.0;120;80;1;2;0;0;1;0
+10157;16811;1;165;75.0;100;70;1;1;0;0;1;0
+10158;21238;1;159;89.0;120;80;2;2;0;0;1;0
+10159;20284;1;162;60.0;120;80;1;1;0;0;1;1
+10161;22023;1;162;55.0;120;80;1;1;0;0;1;0
+10163;19694;2;177;95.0;120;80;1;1;0;0;1;0
+10164;20391;2;176;72.0;120;80;1;1;0;0;1;1
+10165;23485;1;164;92.0;120;90;3;3;0;0;1;0
+10166;18128;1;178;85.0;140;90;2;1;0;0;0;1
+10167;14916;1;160;47.0;110;70;2;1;0;0;1;0
+10168;18195;1;150;72.0;120;90;2;1;0;0;1;0
+10169;20299;1;155;81.0;110;70;3;1;0;0;1;1
+10170;17398;2;178;110.0;140;90;3;3;1;0;1;1
+10171;20650;2;156;60.0;120;80;1;1;0;0;1;1
+10173;19463;1;159;70.0;120;80;1;1;0;0;1;0
+10176;21244;2;169;67.0;140;90;2;2;0;1;1;1
+10177;22022;1;164;63.0;120;80;1;3;0;0;1;0
+10181;20391;1;164;70.0;160;100;1;1;0;0;1;1
+10182;20420;1;164;71.0;120;80;1;1;0;0;1;0
+10184;18770;1;160;69.0;120;80;1;1;0;0;1;0
+10185;17334;1;163;80.0;128;86;1;1;0;0;1;0
+10187;22589;1;164;89.0;150;90;1;1;0;0;1;1
+10188;16869;2;165;57.0;120;80;1;1;1;0;1;0
+10189;20410;1;169;68.0;120;80;1;1;0;0;1;0
+10190;21430;2;156;56.0;130;80;2;1;1;0;1;0
+10192;20399;2;171;86.0;150;80;1;1;0;0;1;1
+10194;16594;1;160;84.0;100;60;1;1;0;0;1;1
+10195;21886;1;163;99.0;160;80;3;3;0;0;1;1
+10196;18231;2;150;90.0;130;90;1;1;1;0;1;1
+10197;20401;1;160;58.0;120;80;1;1;0;0;1;0
+10201;17737;2;162;80.0;140;80;1;1;0;0;1;1
+10202;20454;1;164;68.0;160;100;1;1;0;0;1;1
+10203;20424;1;157;98.0;120;80;3;1;0;0;0;1
+10204;21808;1;152;74.0;120;80;1;1;0;0;1;1
+10205;21184;1;158;93.0;120;80;1;1;0;0;0;0
+10207;19607;2;169;90.0;140;90;1;1;0;0;1;1
+10208;19596;1;147;44.0;140;90;1;1;0;1;1;0
+10209;19501;1;152;65.0;120;80;1;1;0;0;1;1
+10210;19695;1;153;58.0;120;80;1;1;0;0;1;0
+10211;19100;1;174;72.0;130;80;1;1;0;0;1;0
+10212;18785;1;167;74.0;140;80;1;1;0;0;0;1
+10213;15368;1;165;70.0;120;90;1;1;0;0;0;0
+10214;18357;2;166;64.0;120;70;1;1;0;0;1;1
+10215;19619;1;156;85.0;120;80;3;1;0;0;1;1
+10216;15274;2;162;70.0;120;80;1;1;0;0;1;0
+10218;23405;1;175;84.0;120;80;1;1;0;0;1;1
+10219;16023;2;173;73.0;110;70;1;1;0;0;1;0
+10222;21645;2;167;74.0;130;80;3;1;0;1;1;1
+10223;21111;2;167;75.0;140;90;1;1;0;0;1;1
+10225;23312;1;162;65.0;110;70;1;1;0;0;1;1
+10226;18068;1;158;80.0;120;80;1;1;0;0;1;1
+10227;21250;1;170;72.0;120;80;1;1;0;0;1;1
+10228;20706;1;170;80.0;120;80;1;1;0;0;1;1
+10229;16637;2;164;80.0;110;60;1;1;0;0;1;0
+10230;18218;1;156;69.0;110;80;3;3;0;0;1;0
+10232;21784;2;171;68.0;140;90;2;1;0;0;1;1
+10233;19063;2;160;62.0;140;90;1;1;1;1;1;0
+10235;23254;1;157;70.0;140;80;3;1;0;0;1;0
+10236;23473;1;150;69.0;150;90;3;3;0;0;1;1
+10237;19770;2;170;72.0;110;80;1;1;0;0;1;0
+10238;16162;2;176;83.0;110;70;1;1;0;0;1;0
+10240;19710;2;165;75.0;100;70;3;1;0;0;1;0
+10241;21928;2;179;85.0;120;80;1;1;0;0;1;0
+10243;15322;1;153;54.0;120;80;1;1;0;0;1;0
+10244;16106;1;165;62.0;110;60;1;1;0;0;1;0
+10245;17688;1;160;82.0;120;80;1;1;0;0;1;0
+10246;18285;1;150;82.0;120;80;1;2;0;0;1;1
+10248;17474;2;167;66.0;110;70;1;3;0;0;1;1
+10249;21892;2;172;71.0;140;90;1;1;0;0;1;1
+10251;22412;1;165;136.0;140;90;3;3;0;0;1;1
+10252;20550;2;182;100.0;140;90;2;2;0;0;1;0
+10253;18253;2;175;71.0;130;80;1;1;0;1;1;0
+10254;15962;1;165;85.0;110;80;1;1;0;0;1;0
+10255;21290;2;163;70.0;160;100;1;1;0;0;1;0
+10257;20453;2;175;82.0;120;80;1;1;0;0;1;1
+10258;16570;1;154;60.0;120;90;1;1;0;0;1;0
+10259;20969;1;147;48.0;130;80;2;1;0;0;0;1
+10262;14525;2;180;93.0;120;80;1;1;0;0;1;0
+10264;18963;1;170;75.0;110;70;1;1;0;0;0;0
+10265;22784;1;149;64.0;140;90;1;1;0;0;1;1
+10266;21854;1;173;72.0;120;80;1;1;0;0;1;0
+10270;16749;2;168;65.0;120;80;1;1;0;0;0;0
+10271;17274;2;169;66.0;140;80;3;1;1;0;0;0
+10273;21012;1;146;66.0;110;70;1;1;0;0;1;0
+10274;22363;1;160;89.0;120;80;3;3;0;0;0;1
+10275;23443;2;182;82.0;110;80;1;1;0;0;1;0
+10279;23142;2;175;100.0;120;80;1;1;0;1;1;1
+10282;19697;1;157;53.0;120;80;1;1;0;0;0;0
+10283;18446;1;168;115.0;140;80;1;1;0;0;1;1
+10284;18086;1;167;65.0;120;80;1;3;0;0;0;0
+10285;21867;1;157;69.0;150;90;3;1;0;0;1;1
+10286;18247;1;153;57.0;90;60;1;2;0;0;1;0
+10288;14596;1;160;80.0;120;80;1;1;0;0;1;0
+10289;23636;1;160;63.0;120;80;1;1;0;0;0;0
+10290;21910;1;156;64.0;120;80;2;1;0;0;1;0
+10291;21217;1;171;97.0;140;90;2;1;0;0;1;1
+10292;16499;1;163;58.0;120;80;1;1;0;0;1;1
+10294;23289;2;152;53.0;140;90;1;1;0;0;1;0
+10298;15264;1;158;60.0;120;80;1;1;0;0;1;1
+10300;19798;1;168;74.0;120;80;1;1;0;0;1;1
+10301;20480;1;154;67.0;130;80;2;2;0;0;1;0
+10302;21337;1;156;68.0;130;80;1;1;0;0;1;1
+10303;20654;1;164;66.0;120;80;3;3;0;0;1;0
+10304;14592;1;160;69.0;130;90;1;1;0;0;1;0
+10305;15370;1;165;58.0;110;70;1;1;0;0;1;1
+10309;16824;1;158;57.0;100;80;1;1;0;0;0;0
+10311;16822;1;152;63.0;100;70;1;1;0;0;1;0
+10312;18181;1;163;59.0;120;80;1;1;0;0;1;1
+10313;20276;1;157;50.0;120;80;1;1;0;0;1;0
+10315;20389;2;172;92.0;125;70;1;1;0;0;1;1
+10318;19615;1;178;72.0;120;80;1;1;0;0;1;0
+10319;19721;1;165;110.0;150;90;3;1;0;0;1;1
+10320;22732;2;174;70.0;120;80;1;1;0;0;1;0
+10321;19589;1;160;80.0;140;90;1;1;0;0;1;1
+10323;18948;1;167;64.0;140;90;1;1;0;0;1;1
+10324;20337;2;170;60.0;120;80;1;1;0;0;0;0
+10325;15109;2;170;68.0;120;80;1;1;1;0;1;0
+10327;21899;1;158;84.0;150;89;2;1;0;0;0;1
+10328;21939;2;165;75.0;140;90;3;3;0;0;0;1
+10331;17683;2;160;75.0;120;80;1;1;0;0;0;1
+10332;22950;2;169;75.0;120;80;1;1;0;0;0;1
+10333;21700;1;158;60.0;120;80;2;1;0;0;1;1
+10334;22540;1;166;68.0;120;80;2;1;0;0;1;1
+10335;21105;1;173;97.0;160;100;2;2;0;0;1;1
+10336;19093;1;165;60.0;130;90;1;3;0;0;1;1
+10337;20222;1;163;61.0;123;83;2;1;0;0;0;1
+10338;22489;1;155;69.0;120;80;1;2;0;0;1;0
+10339;18462;1;156;61.0;100;60;1;1;0;0;1;1
+10340;18933;1;159;65.0;140;100;3;2;0;0;1;1
+10341;18190;2;164;72.0;120;80;1;1;0;0;1;0
+10342;18891;1;165;65.0;120;80;3;3;0;0;1;1
+10346;19945;1;156;89.0;120;70;1;1;0;0;1;0
+10351;21861;1;162;68.0;160;1000;1;1;0;0;1;1
+10352;21148;2;175;81.0;120;80;1;1;1;1;1;1
+10353;19035;1;168;75.0;120;80;1;1;0;0;1;0
+10354;23452;1;171;102.0;180;100;1;1;0;0;1;1
+10355;22574;2;170;72.0;130;80;1;1;0;0;1;0
+10356;16846;2;187;124.0;140;90;1;1;1;0;1;0
+10357;15226;2;170;94.0;120;80;1;3;0;0;1;1
+10359;20372;1;164;68.0;130;90;1;1;0;1;1;1
+10360;20187;1;167;103.0;140;90;1;1;0;0;1;1
+10361;15133;2;171;80.0;140;1000;2;1;0;0;1;0
+10364;18335;1;173;107.0;120;80;3;1;0;0;1;1
+10365;19585;2;167;70.0;110;70;2;1;0;0;1;0
+10367;20394;2;175;109.0;120;80;1;1;0;0;1;0
+10368;20249;1;168;75.0;120;80;2;3;0;0;1;0
+10369;19791;2;169;70.0;120;80;1;1;0;0;1;0
+10371;21974;2;176;80.0;120;80;3;3;0;0;1;1
+10372;21137;1;156;78.0;120;80;1;1;0;0;1;0
+10374;20425;1;169;75.0;120;80;1;1;0;0;0;1
+10376;14882;1;160;56.0;110;70;1;1;0;0;0;0
+10377;21848;1;167;56.0;140;80;3;2;0;0;1;1
+10378;22498;1;152;108.0;180;110;3;2;0;0;1;0
+10379;18254;2;168;70.0;120;70;1;1;0;0;1;0
+10381;20399;1;157;80.0;120;80;1;1;0;0;1;0
+10382;23401;1;165;61.0;180;100;1;1;0;0;1;1
+10384;23227;2;175;85.0;120;70;1;1;0;1;1;1
+10385;18913;2;164;86.0;120;80;1;1;0;0;0;0
+10386;15868;1;165;69.0;120;70;2;1;0;0;1;0
+10388;18302;1;159;59.0;145;95;2;1;0;0;1;1
+10389;20451;2;185;75.0;120;80;1;1;0;0;1;1
+10390;19611;2;175;93.0;160;90;3;1;0;0;1;1
+10391;16923;1;149;61.0;130;80;1;1;0;0;1;0
+10392;17747;2;171;87.0;120;80;1;1;0;0;0;0
+10393;20617;1;152;55.0;110;70;2;1;0;0;1;0
+10394;17998;1;159;58.0;120;80;1;1;0;1;1;1
+10395;22590;1;157;70.0;140;80;1;1;0;0;0;1
+10396;21938;1;156;54.0;120;70;1;1;0;0;1;1
+10397;18053;1;160;60.0;160;90;1;1;0;0;1;1
+10400;23328;1;156;93.0;120;70;3;1;0;0;1;1
+10403;15372;1;168;70.0;120;80;1;1;0;0;0;0
+10404;15396;1;168;70.0;120;80;2;2;0;0;0;0
+10405;17385;2;160;60.0;120;80;1;1;0;0;1;1
+10406;15122;1;156;55.0;130;90;1;1;0;0;1;1
+10407;15282;1;167;72.0;110;70;1;1;0;0;1;0
+10408;16532;2;175;74.0;110;60;1;1;0;0;1;0
+10409;21162;1;152;53.0;130;80;2;1;0;0;1;0
+10410;18184;1;158;62.0;110;70;1;1;0;0;1;0
+10411;22694;1;166;72.0;150;90;2;2;0;0;1;1
+10412;15859;1;120;80.0;120;80;1;1;0;0;1;0
+10413;20507;1;168;79.0;110;70;3;3;0;0;0;0
+10414;21840;1;171;71.0;120;80;1;1;0;0;1;0
+10415;21103;1;163;73.0;160;100;2;1;0;0;1;1
+10416;23257;1;167;65.0;110;69;1;1;0;0;1;1
+10417;19065;2;160;65.0;120;80;1;1;0;0;1;0
+10418;19607;1;160;78.0;130;90;1;1;0;0;1;1
+10419;19839;1;168;72.0;120;79;1;1;0;0;1;0
+10421;21968;2;173;86.0;100;70;1;1;0;0;1;0
+10423;20624;1;161;94.0;130;79;1;2;0;0;0;1
+10424;20490;1;162;87.0;180;100;1;1;0;0;1;0
+10427;18324;1;156;94.0;100;60;2;1;0;0;1;0
+10428;22705;2;161;63.0;150;90;1;1;1;1;1;1
+10429;21107;1;158;65.0;120;80;1;1;0;0;1;0
+10430;20725;2;161;90.0;130;90;1;1;1;1;1;1
+10431;19737;1;170;80.0;120;80;1;1;0;0;1;0
+10432;20300;1;169;62.0;120;80;1;1;0;0;1;0
+10434;18887;1;157;79.0;140;90;3;1;0;0;0;0
+10435;18144;1;174;78.0;110;70;1;1;0;0;1;1
+10436;18845;1;146;65.0;100;70;1;1;0;1;1;0
+10437;21218;1;152;55.0;130;90;1;1;1;0;1;1
+10440;16776;1;157;64.0;100;70;1;2;0;0;1;0
+10442;18293;1;165;65.0;120;79;1;3;0;0;0;0
+10443;22070;2;159;60.0;130;80;1;1;0;0;1;1
+10445;15499;1;164;60.0;110;70;1;1;0;0;0;0
+10447;21277;1;168;84.0;120;80;1;1;0;0;1;1
+10448;19193;2;170;90.0;130;80;1;1;0;0;1;1
+10449;17570;1;155;59.0;120;80;1;1;0;0;1;0
+10450;19529;1;160;60.0;110;70;1;1;0;0;1;1
+10453;14676;2;171;80.0;120;80;1;1;0;0;0;0
+10454;21857;2;178;75.0;160;100;1;2;0;0;1;1
+10455;21763;1;156;78.0;160;100;3;2;0;0;1;1
+10456;18926;1;164;94.0;120;70;1;1;0;0;1;0
+10457;19565;2;168;83.0;150;100;1;1;0;0;1;1
+10458;17457;1;164;89.0;100;70;1;2;0;0;0;1
+10461;16599;1;163;67.0;180;100;1;1;0;0;1;1
+10462;20534;1;154;55.0;110;70;1;1;0;0;1;0
+10463;19004;1;156;76.0;120;80;1;1;0;0;1;0
+10464;23290;1;165;90.0;160;100;1;1;0;0;1;1
+10465;15973;2;170;90.0;132;88;1;1;0;0;1;0
+10466;21656;1;150;63.0;140;80;2;1;0;0;1;1
+10467;22536;1;162;60.0;120;80;1;1;0;0;1;0
+10468;23345;1;164;82.0;140;90;1;1;0;0;1;0
+10471;21924;2;169;78.0;120;80;1;1;0;0;0;1
+10472;19669;1;167;84.0;140;90;2;1;0;0;1;1
+10473;18227;2;174;67.0;130;90;1;1;1;1;1;0
+10475;22375;1;158;73.0;150;80;1;1;0;1;1;1
+10476;19720;1;165;123.0;150;100;3;1;0;0;1;1
+10477;20180;1;171;72.0;120;80;1;1;0;0;1;0
+10478;23516;1;150;76.0;160;100;2;2;0;0;0;0
+10479;17401;1;150;73.0;190;100;1;1;0;0;0;1
+10480;19648;2;165;71.0;90;60;3;3;1;0;1;1
+10483;19761;1;170;75.0;120;80;1;1;0;0;1;1
+10484;20271;1;172;67.0;120;80;1;1;0;0;0;1
+10485;17644;1;156;62.0;130;80;1;1;0;0;1;1
+10486;19712;2;176;80.0;120;80;1;1;0;0;0;0
+10489;22020;2;174;63.0;120;80;1;1;0;0;0;1
+10490;19823;1;168;70.0;120;80;3;3;1;0;0;0
+10492;16056;2;176;83.0;140;90;1;1;0;0;0;1
+10493;22426;1;165;101.0;150;90;1;1;0;0;1;1
+10494;18471;1;161;68.0;120;80;1;1;0;0;1;0
+10495;14716;1;170;68.0;100;60;1;1;0;0;1;0
+10498;18323;1;170;70.0;120;80;1;1;0;0;1;0
+10501;18200;2;168;65.0;140;90;3;3;0;0;1;1
+10502;16847;1;157;78.0;150;100;1;1;0;0;1;1
+10503;17344;2;170;72.0;120;80;1;1;0;0;0;0
+10505;18844;2;169;69.0;120;90;1;1;0;0;1;0
+10506;16686;1;165;73.0;110;70;1;1;0;0;1;0
+10508;16150;2;171;78.0;120;80;1;1;0;0;1;0
+10510;18291;2;165;76.0;80;60;2;2;1;1;1;0
+10512;18869;1;158;49.0;110;60;1;1;1;0;1;0
+10513;23579;1;167;59.0;150;110;1;1;0;0;1;1
+10514;23426;1;169;70.0;120;80;1;1;0;0;1;1
+10515;15355;1;151;63.0;160;70;1;1;0;0;0;1
+10518;20905;1;156;55.0;110;80;1;1;0;0;1;1
+10519;18361;1;156;90.0;120;80;1;1;0;0;0;0
+10521;20483;1;168;66.0;120;80;1;1;0;0;1;0
+10523;20951;2;162;75.0;140;90;1;1;0;0;1;0
+10524;21174;2;173;75.0;120;80;1;1;0;0;0;1
+10525;17405;1;162;100.0;130;90;1;1;0;0;1;1
+10530;19759;1;165;76.0;120;80;1;1;0;0;0;0
+10531;15193;2;178;63.0;120;80;3;3;0;0;1;0
+10532;18780;2;175;85.0;140;90;1;1;0;0;1;1
+10533;18126;1;150;56.0;120;70;1;1;0;0;1;0
+10534;19651;1;156;70.0;110;70;2;1;1;0;0;0
+10536;18357;2;176;95.0;110;80;3;1;0;1;1;1
+10537;21943;1;163;65.0;130;80;1;1;0;0;1;0
+10538;14615;1;170;91.0;120;80;1;1;0;0;1;0
+10539;18344;2;160;81.0;120;80;1;2;1;0;0;0
+10540;19680;1;159;84.0;110;80;1;1;0;0;0;0
+10541;22596;1;166;66.0;110;70;1;1;0;0;0;0
+10542;14792;2;169;69.0;120;80;1;1;0;0;0;1
+10543;14457;1;152;54.0;135;89;3;2;0;0;1;1
+10544;19130;1;165;70.0;120;80;1;1;0;0;1;0
+10546;21003;1;155;107.0;120;79;1;1;1;0;0;1
+10547;16854;1;160;80.0;120;80;1;1;0;1;1;0
+10548;16041;1;162;48.0;160;80;1;1;0;0;1;0
+10550;20437;1;158;60.0;160;80;3;1;0;0;1;1
+10551;14623;2;162;74.0;100;60;1;1;0;0;0;1
+10553;15441;1;165;66.0;110;70;2;1;0;0;1;0
+10554;19785;2;169;74.0;130;90;1;1;0;0;1;1
+10555;16851;1;153;56.0;100;70;2;1;0;1;1;0
+10556;18258;1;148;71.0;130;90;2;2;0;0;1;0
+10557;16249;1;152;77.0;120;80;1;1;0;0;1;0
+10558;16062;1;167;65.0;150;90;1;1;0;0;1;1
+10559;21907;2;170;93.0;100;65;3;1;0;0;1;0
+10560;19716;1;162;97.0;130;80;3;3;0;0;1;1
+10562;18905;1;156;54.0;120;80;1;1;0;0;1;0
+10565;22008;1;166;76.0;140;90;1;1;0;0;1;1
+10567;20602;1;166;62.0;130;80;1;1;0;0;1;0
+10568;18741;2;178;90.0;130;80;1;1;0;0;1;1
+10569;14431;2;170;82.0;120;80;1;1;0;0;1;1
+10570;22714;1;159;95.0;130;90;1;1;0;0;1;1
+10573;21867;2;174;86.0;120;80;1;1;0;0;0;1
+10574;20399;1;149;55.0;140;100;3;1;0;0;1;1
+10578;18305;1;169;74.0;120;60;1;1;0;0;1;0
+10580;18686;1;163;131.0;110;80;1;1;0;0;1;1
+10581;14385;1;162;69.0;110;70;1;1;0;0;1;0
+10582;16727;2;162;67.0;120;80;1;1;1;0;1;0
+10584;23398;1;175;83.0;130;80;1;1;0;0;0;0
+10585;20281;2;165;86.0;150;1100;3;1;0;0;1;1
+10587;19452;1;155;78.0;125;70;2;1;0;0;1;0
+10588;21796;2;174;79.0;160;90;1;1;0;0;1;1
+10589;19807;1;169;72.0;130;80;1;1;0;0;0;0
+10590;20178;2;157;51.0;130;80;1;1;0;0;1;0
+10592;21858;1;168;59.0;150;90;2;1;0;0;0;1
+10593;20386;1;170;70.0;150;80;1;1;0;0;0;1
+10594;16529;1;157;68.0;140;90;2;1;0;0;1;1
+10596;19128;1;154;54.0;120;80;1;1;0;0;1;1
+10598;21374;1;160;78.0;120;70;1;1;0;0;1;0
+10599;21677;1;169;69.0;110;70;1;1;0;0;1;0
+10601;18414;1;163;61.0;120;80;1;1;0;0;1;0
+10602;19513;1;170;107.0;120;70;1;1;0;0;1;0
+10603;20533;1;158;87.0;140;90;3;1;0;0;1;1
+10605;21129;1;162;93.0;120;80;1;1;0;0;1;0
+10606;19506;1;156;102.0;130;80;3;3;1;0;0;1
+10607;19786;1;168;65.0;120;80;1;1;0;0;0;1
+10608;14537;1;163;66.0;130;80;1;1;0;0;1;1
+10609;20232;1;156;70.0;140;90;1;1;0;0;0;1
+10610;19808;2;178;70.0;120;80;1;1;1;1;0;0
+10612;22695;1;148;42.0;120;80;1;1;0;0;1;1
+10613;18992;2;167;69.0;120;80;1;1;0;0;0;0
+10614;16122;1;167;80.0;120;80;1;1;0;0;1;0
+10615;17576;1;168;70.0;110;70;1;1;0;0;0;0
+10618;19893;2;169;71.0;140;90;1;2;1;0;1;1
+10621;16663;1;159;70.0;120;80;1;1;0;0;1;0
+10622;16887;1;160;55.0;120;80;1;1;0;0;1;0
+10624;21207;2;156;85.0;120;80;1;1;0;0;1;0
+10627;21937;1;156;92.0;150;90;2;1;0;0;0;1
+10629;21271;1;172;82.0;140;90;1;1;0;0;1;1
+10630;18027;2;169;77.0;120;80;1;2;0;0;0;0
+10631;23254;1;158;79.0;120;80;1;1;0;0;1;1
+10634;16664;2;175;104.0;140;90;1;1;0;0;1;1
+10635;22610;1;156;69.0;130;80;1;1;0;0;1;0
+10638;18363;2;172;75.0;120;80;1;1;0;0;1;0
+10639;18358;1;168;64.0;120;80;1;1;0;0;1;0
+10640;22659;2;172;74.0;150;90;1;1;1;1;1;1
+10641;21866;2;174;65.0;150;90;2;2;0;0;1;1
+10642;23329;2;164;74.0;100;70;1;1;0;0;0;1
+10643;17347;1;170;80.0;120;80;1;1;0;0;1;0
+10644;22679;1;154;84.0;140;902;1;1;0;0;1;0
+10645;23387;1;162;88.0;140;90;1;1;0;0;1;1
+10646;16860;2;168;65.0;120;80;1;2;0;0;1;1
+10648;20512;1;158;75.0;140;90;3;1;0;0;0;1
+10650;18776;2;161;49.0;100;70;1;1;0;0;1;0
+10651;22061;2;169;80.0;160;90;1;1;0;0;1;1
+10652;18310;1;161;78.0;130;80;1;1;0;0;1;1
+10655;20221;2;178;85.0;140;90;2;1;0;0;0;1
+10657;14299;1;162;72.0;120;80;1;1;0;0;0;0
+10658;21922;1;159;87.0;120;80;1;1;0;0;0;0
+10659;18356;2;166;120.0;100;70;1;1;0;0;1;0
+10661;21120;2;170;71.0;120;80;1;1;0;0;1;0
+10662;19893;2;170;60.0;110;70;1;1;0;0;1;0
+10664;21191;1;165;70.0;150;80;1;1;0;0;1;1
+10665;23314;1;167;62.0;130;80;1;1;0;0;1;0
+10666;15861;1;170;51.0;90;67;1;1;0;0;1;0
+10668;21968;1;162;68.0;140;90;1;1;0;0;1;1
+10670;18102;1;175;67.0;120;80;1;1;0;0;1;1
+10671;20244;2;162;77.0;110;70;3;3;0;0;1;0
+10672;22836;2;162;74.0;110;80;2;1;0;0;1;0
+10673;21164;2;161;77.0;150;100;2;2;1;1;0;1
+10676;23448;2;179;90.0;151;84;1;2;1;0;1;1
+10677;20328;1;166;68.0;140;90;1;1;0;0;1;1
+10678;22685;1;160;64.0;120;70;1;1;0;0;1;1
+10681;19647;1;165;55.0;90;60;1;1;0;0;0;0
+10682;17561;1;161;65.0;110;70;1;1;0;0;1;0
+10683;19859;2;163;67.0;110;70;1;2;0;0;1;1
+10685;20355;2;167;72.0;130;80;1;1;1;0;1;0
+10686;19143;2;165;63.0;120;80;1;1;0;0;1;1
+10689;18146;1;168;62.0;120;80;1;1;0;0;1;0
+10690;21225;2;174;70.0;150;90;1;2;0;0;0;0
+10691;19880;1;165;66.0;120;80;3;1;0;0;1;1
+10692;22528;1;154;65.0;130;80;3;1;0;0;1;1
+10693;20287;1;152;50.0;110;75;2;1;0;0;1;0
+10694;21898;2;158;64.0;200;1200;2;2;1;0;1;1
+10698;22488;1;153;57.0;120;70;1;1;0;0;1;1
+10702;16763;2;169;71.0;120;90;1;1;1;0;1;0
+10703;20270;1;168;65.0;120;80;1;1;0;0;1;0
+10704;20556;1;159;58.0;150;90;3;1;0;0;1;1
+10707;22475;2;164;85.0;140;90;1;1;0;0;1;1
+10709;16038;1;158;72.0;140;90;3;1;0;0;0;1
+10710;21768;1;165;90.0;15;90;1;1;0;0;1;1
+10711;16894;1;157;61.0;170;100;1;1;0;0;1;1
+10712;18092;2;160;60.0;120;80;1;1;0;0;1;1
+10713;17696;1;160;58.0;120;80;1;1;0;0;1;1
+10714;17259;2;170;66.0;130;80;1;1;1;0;1;0
+10716;20954;2;172;72.0;120;80;3;1;0;0;1;1
+10717;18983;1;163;60.0;130;80;1;1;0;0;0;1
+10719;16176;1;156;58.0;120;80;1;1;0;0;1;0
+10720;19178;1;150;77.0;120;90;1;1;0;0;1;0
+10721;21768;1;151;92.0;130;80;1;1;0;0;1;1
+10723;23437;1;161;80.0;130;81;2;1;0;0;1;1
+10724;19656;2;166;76.0;150;80;1;1;0;0;1;1
+10725;19770;2;170;77.0;140;90;3;3;0;0;1;1
+10726;14504;1;153;61.0;120;80;1;1;0;0;1;1
+10727;18920;1;171;68.0;120;80;1;1;0;0;0;0
+10729;14872;1;165;65.0;120;80;1;1;0;0;1;0
+10732;21186;2;170;82.0;120;80;1;1;1;1;1;1
+10733;14623;2;174;74.0;140;90;1;2;0;0;1;1
+10735;16085;1;164;66.0;120;60;1;1;0;0;1;0
+10736;20255;2;170;69.0;130;80;3;3;1;1;1;1
+10737;19722;2;174;110.0;120;90;3;1;0;0;1;0
+10738;17330;1;157;76.0;130;90;3;1;0;0;1;1
+10739;21051;2;174;60.0;130;90;2;1;0;0;1;0
+10741;20552;2;162;64.0;130;70;1;1;1;1;1;1
+10742;19654;1;153;83.0;140;90;3;3;0;0;1;1
+10743;19769;2;180;76.0;120;80;1;3;0;0;0;1
+10744;19542;1;160;87.0;140;90;3;1;0;0;0;1
+10746;15322;2;178;76.0;130;80;1;1;0;0;0;1
+10747;20907;1;159;61.0;120;80;1;1;0;0;1;1
+10748;19807;1;160;85.0;160;95;1;1;0;0;1;1
+10749;21971;2;162;74.0;110;70;1;1;0;0;0;0
+10750;18247;1;147;45.0;150;80;3;1;0;0;1;1
+10751;19704;2;158;65.0;140;90;1;1;0;0;1;1
+10752;22053;1;168;73.0;120;80;1;1;0;0;1;1
+10753;18976;2;163;65.0;140;90;3;3;1;1;1;1
+10756;21979;1;164;100.0;120;90;1;1;0;0;0;0
+10758;18918;2;165;67.0;140;90;1;1;0;0;1;0
+10760;17328;1;162;80.0;180;90;1;3;0;0;0;1
+10761;18298;2;172;87.0;100;80;1;1;0;0;1;1
+10763;22815;1;172;76.0;130;70;2;3;0;0;0;1
+10765;23421;2;170;69.0;110;70;3;3;0;0;0;1
+10768;18795;1;169;69.0;120;70;1;1;0;0;0;0
+10769;19632;1;162;82.0;140;80;1;1;0;0;1;0
+10770;20962;1;162;78.0;160;1100;1;1;0;0;1;1
+10771;21194;1;170;75.0;120;80;1;1;0;0;1;1
+10772;18244;1;164;60.0;140;90;1;1;0;0;1;0
+10773;19679;1;165;65.0;120;80;1;1;0;0;0;0
+10777;18333;1;168;65.0;120;80;1;1;0;0;0;1
+10778;19892;1;175;85.0;110;70;1;1;0;0;1;0
+10780;20220;1;151;57.0;120;80;2;1;0;0;1;0
+10782;15297;2;177;95.0;130;90;1;1;0;0;1;1
+10783;16592;1;157;43.0;120;80;1;1;0;0;1;0
+10784;21863;1;157;55.0;110;70;1;1;0;0;1;0
+10785;23163;1;158;58.0;145;90;1;2;0;0;1;0
+10787;14301;1;172;72.0;120;80;1;1;0;0;1;0
+10789;19898;1;162;65.0;140;70;1;1;0;0;0;0
+10791;21934;1;162;93.0;140;80;1;2;0;0;1;1
+10792;20427;1;164;84.0;120;80;1;1;0;0;1;0
+10795;18240;1;168;93.0;120;80;1;1;0;0;1;0
+10796;15320;1;164;93.0;110;70;2;2;0;0;0;1
+10797;22408;1;156;51.0;160;90;1;1;0;0;1;1
+10798;21052;1;155;62.0;120;80;1;1;0;0;1;0
+10799;20212;1;153;94.0;130;80;1;1;0;0;0;1
+10801;23309;2;165;77.0;120;80;2;1;1;0;1;1
+10804;15402;2;167;80.0;134;84;1;1;1;1;0;0
+10805;21940;1;165;64.0;120;70;3;3;0;0;0;0
+10806;21090;2;170;78.0;120;80;1;2;0;0;1;0
+10809;21926;2;168;75.0;120;80;1;1;0;0;0;1
+10811;14436;2;172;88.0;120;80;1;1;1;0;1;0
+10812;20337;1;169;79.0;120;80;1;1;0;0;1;0
+10814;21246;1;164;84.0;110;70;2;1;0;0;1;0
+10816;17398;1;174;110.0;160;90;2;2;0;1;1;1
+10817;18201;2;176;92.0;110;60;1;3;0;1;1;0
+10821;22660;1;170;70.0;120;80;1;1;0;0;1;0
+10822;19683;1;159;53.0;145;90;1;1;0;0;1;1
+10823;17689;1;160;59.0;110;70;1;3;0;0;1;0
+10824;22374;1;150;48.0;110;80;2;1;0;0;1;1
+10825;17742;1;168;72.0;140;90;2;2;0;0;1;1
+10827;17472;2;160;63.0;120;80;1;1;1;0;1;0
+10828;21231;1;149;70.0;168;79;2;1;0;1;1;1
+10829;21297;2;178;78.0;120;80;1;1;0;0;1;0
+10830;21927;1;155;74.0;130;90;1;1;0;0;1;1
+10831;19226;1;170;75.0;120;80;1;1;0;0;0;0
+10832;21726;1;158;100.0;130;90;1;1;0;0;1;1
+10835;21235;1;160;70.0;110;70;1;1;0;0;1;0
+10836;18892;1;152;57.0;150;90;3;1;0;0;1;1
+10837;17397;1;170;72.0;120;80;1;1;0;0;1;0
+10838;23475;1;156;65.0;125;80;1;1;0;0;1;0
+10839;21809;1;165;86.0;160;80;1;2;0;0;1;1
+10840;17436;1;160;64.0;150;90;2;1;0;1;1;1
+10841;18842;1;158;80.0;110;70;1;2;0;0;1;0
+10842;18710;1;162;56.0;120;80;1;1;0;0;1;1
+10843;14661;2;70;72.0;120;8;1;1;0;0;1;0
+10844;23130;1;152;54.0;180;100;1;1;0;0;1;1
+10845;17559;2;179;71.0;110;70;1;1;0;0;1;0
+10846;18371;2;168;78.0;120;80;1;1;0;0;1;0
+10847;20170;1;156;68.0;110;80;2;1;0;0;1;0
+10849;15921;1;155;72.0;120;80;1;1;0;0;0;0
+10850;20281;1;150;72.0;160;90;1;1;0;0;1;1
+10852;22679;1;150;76.0;140;90;1;1;0;0;0;0
+10855;19725;1;164;83.0;150;90;1;1;0;0;1;1
+10858;21099;1;172;64.0;120;80;1;1;0;0;1;0
+10859;19094;2;182;78.0;130;80;2;1;1;0;1;1
+10860;16876;1;168;60.0;90;60;1;1;0;0;1;0
+10861;21168;2;160;85.0;130;80;1;1;0;0;0;1
+10862;16908;1;159;62.0;140;90;1;1;0;0;1;1
+10863;21893;1;163;90.0;100;70;1;2;0;0;1;0
+10866;20406;1;155;60.0;120;70;1;1;0;0;1;0
+10867;18334;1;150;61.0;160;110;1;1;1;0;1;1
+10868;23049;1;168;95.0;170;100;3;1;0;0;1;1
+10870;21634;1;170;70.0;120;80;1;1;0;0;1;0
+10871;18105;2;170;102.0;120;80;1;1;0;0;1;1
+10872;22412;1;158;53.0;110;70;1;1;0;0;1;1
+10873;21875;2;147;55.0;120;80;1;1;0;0;0;0
+10874;21019;1;167;70.0;120;80;1;1;0;0;1;1
+10878;22077;2;168;105.0;130;90;1;1;0;0;1;1
+10879;19662;1;164;84.0;140;80;2;1;0;0;0;1
+10880;21147;1;166;95.0;130;80;1;1;0;0;0;0
+10882;19024;2;165;82.9;180;90;2;1;1;0;1;1
+10883;21264;1;164;62.0;120;80;1;1;0;0;1;0
+10886;18232;1;155;91.0;140;100;1;1;0;0;1;0
+10887;23080;1;164;69.0;140;90;1;1;0;0;1;1
+10888;22415;1;160;55.0;140;90;1;1;0;0;0;1
+10889;22022;1;150;92.0;200;120;2;1;0;0;0;1
+10890;16936;2;167;84.0;130;90;2;1;0;0;0;1
+10891;19435;1;151;81.0;120;80;1;1;0;0;1;0
+10892;22457;2;172;90.0;130;90;1;1;1;0;1;1
+10893;22727;1;160;76.0;120;80;1;1;0;0;1;1
+10896;19958;1;165;68.0;160;80;1;1;0;0;1;1
+10897;20611;1;165;60.0;110;80;1;1;0;0;1;0
+10899;15937;2;183;154.0;160;120;1;1;1;0;1;1
+10900;19629;1;170;67.0;110;70;2;1;0;0;1;0
+10901;14444;1;155;63.0;110;70;2;1;0;0;1;1
+10902;18291;2;165;65.0;140;90;3;1;0;0;1;1
+10904;23319;1;160;70.0;140;90;1;1;0;0;1;1
+10906;21154;2;177;90.0;125;80;1;1;0;0;1;1
+10907;17346;2;160;71.0;110;70;1;1;1;1;1;0
+10908;19029;1;170;78.0;120;80;1;1;0;0;1;0
+10911;16781;2;173;77.0;120;70;1;1;0;0;1;1
+10913;21052;1;158;57.0;120;80;1;1;0;0;1;0
+10914;21999;1;165;58.0;140;80;1;1;0;0;1;1
+10916;19691;2;170;60.0;110;70;1;1;1;0;1;0
+10918;21191;2;169;71.0;120;80;1;1;0;0;1;1
+10919;18941;2;160;65.0;140;80;1;1;0;0;0;1
+10920;17535;1;158;80.0;140;80;3;3;0;0;1;1
+10922;18124;2;176;69.0;120;80;2;1;0;0;1;0
+10923;22889;2;160;70.0;120;80;1;1;0;0;1;0
+10927;20456;1;163;83.0;120;80;2;1;0;0;0;1
+10928;17530;1;160;54.0;100;60;1;1;0;0;1;0
+10929;21782;2;161;79.0;150;100;1;1;0;0;0;0
+10931;20392;1;155;93.0;120;80;1;1;0;0;0;0
+10932;21905;2;168;66.0;120;80;1;1;0;0;1;0
+10934;19091;2;178;67.0;110;70;1;1;0;0;1;0
+10935;15281;1;174;110.0;130;80;3;3;0;0;1;0
+10936;19150;2;176;84.0;120;60;1;1;1;0;1;0
+10937;20361;1;151;65.0;120;80;1;3;0;0;1;1
+10938;14395;1;156;69.0;120;80;1;1;0;0;1;0
+10942;18904;2;166;97.0;140;90;1;1;1;1;0;1
+10943;23322;1;153;63.0;130;80;3;3;0;0;1;0
+10945;22050;2;171;76.0;120;80;1;3;1;0;1;0
+10946;14744;1;165;65.0;120;80;1;1;0;0;1;0
+10947;18867;1;162;72.0;100;60;2;1;0;0;1;0
+10948;17997;1;166;95.0;120;70;1;1;0;0;1;0
+10949;21785;1;165;65.0;120;80;1;1;0;0;1;1
+10951;21883;1;162;53.0;120;80;1;1;0;0;1;0
+10952;14550;2;170;75.0;140;90;2;1;1;1;1;1
+10953;21815;1;164;68.0;140;90;1;1;0;0;1;1
+10955;21207;1;157;99.0;150;90;1;1;0;0;1;1
+10956;14500;1;165;66.0;110;70;3;3;0;0;1;0
+10957;20628;1;157;79.0;110;70;1;1;0;0;1;1
+10958;20508;1;156;70.0;170;130;1;1;0;0;1;0
+10960;16508;1;174;78.0;120;80;2;1;0;0;0;0
+10961;21103;1;151;64.0;110;70;1;1;0;0;1;0
+10963;22642;1;153;56.0;120;80;1;1;0;0;1;0
+10965;22561;1;165;70.0;130;80;1;1;1;0;1;1
+10966;15983;1;176;70.0;130;80;1;1;0;0;1;0
+10968;15783;1;158;105.0;160;1000;1;1;0;0;1;1
+10970;23246;2;182;89.0;140;1000;2;1;0;0;1;1
+10972;16009;1;160;70.0;120;80;1;1;0;0;1;0
+10973;20386;1;165;64.0;130;80;1;1;0;0;1;0
+10974;19101;1;159;65.0;110;70;1;1;0;0;1;1
+10975;21660;2;169;70.0;150;80;3;1;0;0;1;1
+10976;19584;2;175;74.0;130;80;3;2;0;0;1;1
+10977;19692;1;163;62.0;120;80;1;1;0;0;1;0
+10978;21089;1;156;58.0;150;90;1;1;0;0;0;1
+10980;21157;1;155;76.0;120;80;1;1;0;0;0;1
+10982;16809;2;158;57.0;110;80;3;1;0;0;1;1
+10983;21626;1;158;97.0;130;90;1;1;0;0;1;1
+10984;23356;1;163;72.0;120;80;3;1;0;0;0;1
+10986;18110;1;166;67.0;120;80;1;1;0;0;1;0
+10988;18760;1;165;70.0;170;1100;1;1;0;0;0;1
+10989;16630;1;171;60.0;140;90;1;1;0;0;1;1
+10990;23148;1;159;70.0;170;90;1;1;0;0;0;1
+10992;19961;2;165;69.0;110;70;1;1;1;0;1;1
+10995;23303;2;163;68.0;130;90;1;1;0;0;1;1
+10996;15377;1;168;79.0;150;90;1;1;0;0;1;1
+10998;20570;2;175;60.0;120;69;1;3;0;0;0;0
+10999;21283;1;151;81.0;140;80;1;2;0;0;1;1
+11001;18167;1;154;55.0;120;80;1;1;0;0;0;0
+11002;18790;1;165;88.0;120;80;1;1;0;0;1;0
+11003;23312;1;156;100.0;165;1100;3;1;0;0;1;1
+11005;20325;1;155;72.0;120;1000;2;1;1;0;1;1
+11006;19711;1;155;98.0;130;90;1;1;0;0;1;1
+11007;22042;2;160;55.0;130;80;1;1;0;0;1;1
+11009;21084;1;165;47.0;80;60;1;1;0;0;1;1
+11010;16024;1;163;68.0;120;80;1;1;0;0;0;1
+11011;14804;1;160;54.0;110;70;1;1;0;0;1;0
+11012;23236;2;168;65.0;150;80;1;1;0;0;0;1
+11013;19556;2;165;80.0;140;90;2;1;0;0;1;0
+11015;15376;2;174;79.0;120;80;1;1;0;0;1;0
+11017;20434;1;164;58.0;140;90;1;1;0;0;1;1
+11018;15146;2;181;76.0;120;80;1;1;0;0;0;0
+11019;14799;1;158;52.0;120;80;2;1;0;0;0;0
+11021;14398;1;152;67.0;110;70;1;1;0;0;1;0
+11022;14436;2;170;68.0;140;85;1;1;0;0;1;0
+11024;15063;1;146;66.0;120;80;1;1;0;0;0;1
+11025;14556;1;163;48.0;100;80;1;1;0;0;1;0
+11026;21128;1;152;74.0;130;90;1;1;0;0;1;1
+11027;19853;2;165;68.0;130;70;1;1;0;0;1;0
+11028;19798;1;167;72.0;140;90;1;1;0;0;1;1
+11029;19031;2;175;70.0;120;80;1;1;0;0;0;1
+11030;19107;1;164;82.0;120;80;2;1;0;0;1;0
+11031;21398;1;153;64.5;110;80;1;1;0;0;1;1
+11034;17806;2;178;72.0;120;80;1;1;0;0;1;0
+11035;23215;1;156;62.0;120;80;1;1;0;0;1;0
+11036;19796;1;168;89.0;130;80;3;3;0;0;1;1
+11037;22600;2;168;93.0;140;90;1;1;0;0;0;1
+11039;20690;1;155;80.0;120;90;2;2;0;0;0;1
+11040;18129;1;143;69.0;120;80;1;1;0;0;1;0
+11043;19823;1;165;73.0;120;80;1;1;0;0;1;0
+11045;20287;1;147;57.0;100;70;2;1;0;0;1;1
+11047;14643;2;165;65.0;110;70;1;3;0;0;1;0
+11048;14561;1;158;72.0;100;70;1;1;0;1;1;0
+11049;18510;1;175;95.0;150;112;3;1;0;0;1;0
+11050;18277;1;156;74.0;130;80;1;1;0;0;1;0
+11051;14555;1;162;92.0;100;70;1;1;0;0;0;0
+11052;19677;2;168;76.0;120;80;1;1;0;0;1;0
+11054;19032;1;165;66.0;120;80;1;1;0;0;0;0
+11055;23252;2;170;81.0;139;95;1;1;1;0;1;1
+11056;14603;2;158;53.0;110;60;1;1;0;0;0;0
+11059;18385;2;173;82.0;110;80;1;1;0;0;1;0
+11061;21891;1;160;64.0;120;80;3;3;0;0;0;1
+11062;22633;1;158;76.0;160;100;1;1;0;0;1;1
+11065;20506;1;164;62.0;118;83;2;1;1;0;1;0
+11066;17372;2;165;95.0;180;100;2;1;0;0;1;1
+11067;17977;2;178;85.0;135;90;1;1;0;0;1;1
+11068;21667;2;176;97.0;140;1000;3;1;1;0;1;1
+11072;19158;1;165;70.0;120;70;1;1;0;0;1;0
+11075;23353;2;170;104.0;160;90;1;1;0;0;1;1
+11076;14676;1;158;52.0;90;70;1;1;0;0;0;0
+11082;18986;1;160;71.0;120;80;1;1;0;0;1;0
+11083;17426;1;169;74.0;110;70;1;1;0;0;1;0
+11084;18807;1;160;59.0;110;80;2;1;0;0;1;0
+11085;18026;1;163;73.0;130;80;1;3;0;0;1;1
+11086;18310;1;165;73.0;120;80;1;1;0;0;1;1
+11087;19702;1;153;72.0;160;90;1;1;0;0;1;1
+11088;21962;1;160;59.0;120;80;1;1;0;0;1;0
+11089;21032;1;175;80.0;11500;90;1;1;0;0;1;1
+11091;15050;2;175;75.0;120;90;1;1;0;0;0;0
+11096;22014;1;165;68.0;110;60;1;1;0;0;1;0
+11097;23484;1;152;83.0;110;80;1;1;0;0;0;1
+11098;20333;2;181;83.0;120;80;1;1;0;0;1;0
+11100;19128;1;160;69.0;120;70;1;1;1;0;1;0
+11101;20540;1;164;60.0;120;80;1;1;0;0;1;1
+11105;21072;2;164;50.0;120;80;1;1;0;0;1;0
+11106;18008;1;155;67.0;140;89;1;1;0;0;0;1
+11109;21336;1;168;69.0;110;80;1;1;0;0;0;0
+11110;20293;1;166;103.0;100;60;1;1;0;0;0;0
+11111;20357;1;169;71.0;120;80;1;1;0;0;1;0
+11112;21721;1;155;83.0;150;100;1;1;0;0;1;1
+11114;19835;1;149;52.0;120;80;1;1;0;0;1;0
+11115;15356;2;172;85.0;130;90;1;1;0;1;1;1
+11117;22003;2;156;55.0;130;80;1;1;0;0;1;1
+11118;21252;1;164;88.0;130;79;3;1;0;0;1;0
+11120;23212;1;159;56.0;130;90;1;1;0;0;1;1
+11121;19526;2;173;91.0;150;1000;2;2;0;0;1;1
+11122;15236;1;147;48.0;140;80;1;1;0;0;1;1
+11124;23569;1;168;80.0;120;80;1;1;0;0;0;1
+11126;23291;2;168;80.0;130;80;3;3;0;0;1;1
+11127;21757;1;161;91.0;120;80;1;3;0;0;1;0
+11128;18479;1;156;59.0;120;80;1;1;0;0;1;0
+11129;21039;2;170;79.0;120;80;1;1;0;0;0;1
+11130;19841;2;170;76.0;120;80;3;1;0;0;1;0
+11131;14367;2;171;69.0;110;60;1;2;1;1;1;0
+11134;18958;1;166;81.0;120;80;1;1;0;0;1;0
+11135;16591;2;178;68.0;120;80;1;1;0;0;1;0
+11138;19678;1;165;68.0;120;90;1;1;0;0;1;0
+11139;20480;2;170;58.0;110;70;1;1;1;0;1;0
+11141;21660;2;175;90.0;130;80;1;3;0;0;0;0
+11142;23236;1;158;75.0;150;100;3;3;0;0;0;1
+11143;20259;1;156;57.0;110;70;1;1;0;0;1;0
+11145;19152;1;165;72.0;120;80;1;1;0;0;1;0
+11146;22726;1;165;65.0;120;80;1;1;0;0;0;0
+11148;17570;2;174;92.0;120;80;1;1;0;0;1;0
+11149;21875;1;152;57.0;120;70;1;1;0;0;1;0
+11150;21020;1;170;68.0;120;80;1;1;0;0;0;0
+11152;21313;2;179;81.0;120;80;1;1;1;0;1;1
+11153;20495;1;151;67.0;120;90;1;1;0;0;1;0
+11155;23164;2;173;68.0;130;90;1;1;0;0;0;1
+11156;21806;1;155;76.0;120;80;1;1;0;0;1;0
+11157;19601;1;167;79.0;120;80;3;1;0;0;1;1
+11158;16088;2;176;80.0;140;90;1;1;0;0;1;1
+11161;20396;1;157;60.0;120;80;3;3;0;0;1;1
+11162;17539;1;165;72.0;150;80;1;1;0;0;1;1
+11164;22699;1;162;89.0;145;75;1;1;0;0;1;1
+11167;18930;1;172;77.0;127;80;1;1;0;0;1;0
+11169;18422;1;170;70.0;90;60;1;1;0;0;1;0
+11170;21997;1;148;65.0;160;90;3;3;0;0;0;1
+11171;19898;2;169;73.0;110;70;1;1;0;0;1;0
+11173;18913;2;176;78.0;120;80;1;1;0;0;1;0
+11174;14368;2;178;85.0;125;80;1;1;1;1;1;0
+11175;16667;1;163;68.0;120;80;1;1;0;0;1;0
+11176;21211;1;165;95.0;130;80;3;3;0;0;1;1
+11178;20124;1;150;63.0;140;90;3;3;0;0;1;1
+11180;18296;2;171;89.0;140;90;1;1;0;0;1;1
+11181;18756;1;165;63.0;110;90;1;1;0;0;1;0
+11182;18199;1;167;65.0;120;80;1;1;0;0;1;0
+11184;22507;2;171;82.0;160;100;1;1;0;0;1;1
+11185;18191;1;158;68.0;110;70;1;1;0;0;1;0
+11186;22697;1;155;57.0;120;70;2;1;0;0;1;1
+11187;22082;2;170;80.0;140;90;1;1;0;1;1;1
+11188;19655;1;166;65.0;120;80;1;1;0;0;1;1
+11189;14606;1;162;59.0;120;80;1;1;0;0;1;0
+11191;22827;1;160;79.0;120;80;1;1;0;0;1;0
+11192;21871;1;165;66.0;120;80;1;1;0;0;1;0
+11193;19132;2;174;75.0;160;90;1;1;0;0;0;1
+11194;14554;1;155;56.0;120;80;1;1;0;0;1;0
+11195;14633;2;168;72.0;140;80;3;1;1;0;1;0
+11196;20352;2;170;80.0;140;90;3;3;0;0;1;1
+11198;21103;1;157;66.0;110;70;1;1;0;0;1;1
+11199;21221;1;168;76.0;120;80;1;1;0;0;0;1
+11200;21138;1;158;60.0;130;79;1;1;0;0;1;0
+11201;23431;1;165;82.0;120;80;3;1;0;0;1;0
+11202;15862;1;166;97.0;120;80;2;1;0;0;1;1
+11203;19567;2;160;60.0;120;80;1;1;0;0;0;0
+11206;18931;2;162;80.0;140;80;1;1;0;0;0;1
+11207;19902;1;160;74.0;120;80;1;1;0;0;0;0
+11209;20432;1;180;85.0;140;110;2;1;0;0;0;1
+11210;19033;2;180;79.0;180;70;1;1;0;0;1;0
+11211;21946;1;161;78.0;110;80;1;1;0;0;1;0
+11212;17372;1;155;83.0;130;80;3;1;0;0;1;1
+11214;17950;2;167;73.0;130;80;1;1;0;0;1;1
+11216;23358;1;168;80.0;140;80;3;1;0;0;0;1
+11217;23237;1;176;90.0;130;80;1;1;0;0;1;1
+11218;17649;1;168;71.0;120;80;1;1;0;0;1;0
+11220;20353;1;170;69.0;120;80;1;1;0;0;0;1
+11221;18812;1;162;70.0;150;100;1;1;0;0;1;1
+11224;15211;1;170;72.0;120;80;1;1;0;0;1;0
+11225;21927;1;156;62.0;109;67;1;1;0;0;1;0
+11226;21955;1;157;57.0;130;80;1;1;0;0;1;0
+11230;18246;1;160;69.0;120;80;1;2;0;0;1;0
+11232;14598;1;162;70.0;90;70;1;1;0;0;1;0
+11233;18129;1;162;63.0;150;80;1;1;0;0;0;1
+11234;16034;1;164;78.0;130;90;1;2;0;0;1;1
+11235;20653;1;158;60.0;150;90;1;1;0;0;1;1
+11236;19047;1;169;90.0;148;92;2;3;0;0;1;1
+11237;21323;1;165;71.0;120;80;1;1;0;0;1;0
+11238;20475;1;163;58.0;120;80;3;3;0;0;0;0
+11240;18941;1;154;79.0;140;100;1;1;0;0;1;1
+11241;20473;2;160;58.0;120;80;1;1;1;0;1;0
+11242;19701;1;156;73.0;110;80;1;3;0;0;1;0
+11243;16925;1;168;64.0;110;70;2;2;0;0;1;0
+11244;21691;1;168;70.0;130;90;1;1;0;0;1;1
+11245;20948;2;180;85.0;120;60;1;1;1;0;1;0
+11246;19081;1;165;76.0;140;90;3;1;0;0;1;1
+11247;19657;1;152;73.0;130;80;1;1;0;0;1;1
+11250;18006;1;160;65.0;120;80;1;1;0;0;1;0
+11251;16794;1;168;63.0;110;70;1;1;0;1;1;0
+11252;18191;2;169;71.0;120;80;1;1;0;0;1;0
+11253;15363;2;166;64.0;120;80;1;1;0;0;1;0
+11254;18482;1;163;69.0;90;60;1;1;0;0;1;0
+11256;18862;1;169;81.0;140;80;3;3;0;0;1;1
+11257;17480;2;167;68.0;110;70;1;1;1;1;1;0
+11258;21159;1;174;94.0;120;80;3;3;0;0;0;1
+11259;21831;1;170;72.0;100;70;1;1;0;0;1;0
+11260;23201;2;172;71.0;130;80;3;1;0;0;1;1
+11261;21654;2;170;92.0;140;80;1;1;0;0;1;1
+11262;20335;1;165;70.0;130;80;1;1;0;0;1;0
+11263;20289;1;162;80.0;115;104;1;1;0;0;1;1
+11264;18158;1;169;67.0;120;80;2;1;0;0;1;1
+11266;21038;1;157;63.0;140;90;3;1;0;0;1;1
+11267;20559;1;155;79.0;160;90;1;1;0;0;1;1
+11270;19112;1;160;65.0;120;80;1;1;0;0;1;0
+11272;21212;1;169;87.0;140;100;2;2;0;0;0;1
+11274;19847;2;155;58.0;110;60;1;1;0;0;1;1
+11275;19114;2;158;75.0;130;80;1;1;0;0;1;1
+11276;16074;2;176;86.0;130;90;1;1;0;1;1;1
+11277;21274;1;156;50.0;120;80;3;1;0;0;1;1
+11278;21059;1;159;96.0;150;100;2;1;0;0;0;1
+11279;16672;1;168;70.0;110;70;1;1;0;0;1;0
+11282;14541;1;162;62.0;120;80;1;1;0;0;1;0
+11283;21196;2;176;85.0;150;110;2;1;0;0;0;1
+11284;16974;2;170;79.0;160;70;1;1;0;0;1;1
+11286;14779;2;175;65.0;120;80;1;1;0;0;0;0
+11287;22091;2;168;80.0;140;100;1;1;0;0;1;1
+11288;21219;1;165;82.0;120;80;1;1;0;1;1;0
+11290;19707;1;165;60.0;120;80;1;1;0;0;1;0
+11293;18813;1;165;60.0;110;70;1;1;0;0;0;1
+11294;21153;1;156;61.0;120;80;1;1;0;0;0;0
+11295;18330;1;153;80.0;95;80;1;1;0;0;0;0
+11296;22573;1;165;69.0;130;80;1;1;0;0;1;1
+11297;15248;1;153;70.0;120;80;1;2;0;0;1;0
+11300;19509;1;165;84.0;190;110;2;1;0;0;0;1
+11301;19144;1;158;75.0;120;80;1;3;0;0;1;0
+11302;23362;2;179;79.0;150;90;1;1;0;0;1;0
+11303;21423;1;165;52.0;120;80;3;3;0;0;1;1
+11304;16786;1;164;65.0;120;80;1;1;0;0;1;0
+11305;18206;2;175;104.0;120;90;1;1;1;0;1;0
+11306;19785;2;157;56.0;110;80;1;1;0;0;1;1
+11307;18305;1;167;100.0;160;100;2;1;0;0;1;1
+11308;16106;2;173;98.0;110;80;2;2;1;0;0;0
+11309;17482;2;172;77.0;110;80;1;2;0;1;1;0
+11310;20922;2;170;80.0;160;100;1;1;0;0;1;0
+11313;18860;1;164;57.0;120;80;1;1;0;0;1;0
+11316;21347;2;160;70.0;120;80;1;1;1;0;1;0
+11317;19937;1;165;65.0;120;80;1;1;0;0;1;1
+11318;17305;2;163;74.0;120;80;1;1;0;0;1;1
+11319;16872;1;160;61.0;120;80;1;1;0;0;1;0
+11320;19776;2;173;78.0;140;90;3;1;0;0;1;0
+11321;18203;1;161;62.0;110;70;1;1;0;0;1;1
+11322;15920;2;182;85.0;120;90;1;1;0;0;1;0
+11324;14487;1;165;68.0;120;80;1;1;0;0;1;0
+11326;19621;1;165;76.0;140;80;1;1;0;0;0;1
+11327;18356;1;156;61.0;110;70;1;1;0;0;1;0
+11328;20278;1;173;92.0;170;70;3;1;0;0;1;0
+11329;16124;2;172;74.0;120;80;1;2;1;0;1;1
+11330;21736;2;169;126.0;140;80;1;1;0;1;1;1
+11331;19483;1;171;86.0;120;80;1;1;0;0;1;1
+11332;17376;1;162;74.0;110;90;1;1;0;0;1;0
+11333;15467;1;165;85.0;120;80;1;1;0;0;0;0
+11335;19071;1;157;60.0;110;70;1;1;0;0;1;1
+11336;18864;1;163;76.0;160;100;2;1;0;0;1;1
+11339;21321;1;159;82.0;140;90;1;1;0;0;1;0
+11341;15106;2;170;86.0;120;80;1;1;1;1;0;0
+11342;21946;1;151;62.0;130;80;3;1;0;0;1;1
+11343;19765;1;150;47.0;130;90;2;2;0;0;1;0
+11344;20454;2;178;76.0;120;70;1;3;0;0;1;1
+11345;20614;1;156;73.0;130;90;3;3;0;0;0;1
+11346;18451;1;168;69.0;120;80;1;1;0;0;0;0
+11347;21354;1;158;58.0;110;80;1;1;0;0;1;0
+11349;19675;2;170;65.0;130;80;3;1;0;0;1;1
+11350;23387;1;151;78.0;160;110;2;1;0;0;1;1
+11351;16074;1;169;71.0;130;80;1;1;0;0;1;1
+11352;17471;1;172;77.0;12;70;1;1;0;0;1;1
+11353;15417;1;162;73.0;140;90;3;1;0;0;1;0
+11354;19658;2;186;108.0;130;80;2;1;1;0;1;0
+11355;21212;1;145;59.0;110;70;2;1;0;0;0;0
+11356;19556;1;158;45.0;120;80;2;2;0;0;1;0
+11357;16534;1;151;72.0;140;90;3;1;0;1;1;1
+11358;18751;1;165;70.0;120;80;1;1;0;0;1;0
+11359;16747;2;168;87.0;120;80;1;1;0;0;1;0
+11360;20419;1;168;90.0;140;90;1;3;0;0;1;1
+11362;21297;2;162;70.0;120;80;1;1;0;0;1;1
+11363;18264;1;156;53.0;120;80;1;1;0;0;0;0
+11365;18422;1;161;65.0;120;70;1;1;0;0;0;0
+11367;18070;1;167;66.0;110;75;1;1;0;0;1;0
+11368;15178;2;178;95.0;190;1000;1;1;0;0;1;1
+11369;19555;1;174;105.0;150;90;2;2;0;0;1;0
+11370;16625;1;157;47.0;120;70;1;1;0;0;1;0
+11371;19004;1;160;65.0;130;80;1;1;0;0;0;1
+11372;16777;1;160;70.0;110;70;2;1;0;0;0;0
+11373;20592;1;167;65.0;120;80;1;1;0;0;1;0
+11374;16038;1;168;78.0;130;80;1;1;0;0;1;1
+11375;18359;1;166;69.0;90;60;1;1;0;0;0;1
+11376;18232;1;158;67.0;120;80;1;1;0;1;1;0
+11377;21994;1;160;84.0;170;90;2;1;0;0;1;1
+11378;14552;1;164;65.0;90;60;1;1;0;0;1;0
+11379;18173;2;186;85.0;130;90;1;1;0;0;0;1
+11380;22118;1;165;64.0;120;80;2;2;0;0;0;0
+11381;19831;1;160;79.0;120;80;1;1;0;0;1;0
+11382;15381;1;167;59.0;130;80;2;1;0;0;1;1
+11383;18042;2;170;77.0;120;80;1;1;0;0;1;0
+11386;15092;1;175;103.0;119;78;1;1;0;0;0;1
+11387;16314;2;170;86.0;120;80;1;1;1;0;1;0
+11388;22113;1;156;68.9;130;80;2;1;0;0;1;0
+11389;22700;2;175;109.0;140;90;1;1;0;0;1;0
+11390;16648;1;165;63.0;120;70;1;1;0;0;1;1
+11391;21953;1;165;68.0;110;70;1;1;0;0;1;0
+11393;18049;1;160;70.0;120;80;1;1;0;0;0;0
+11394;18100;2;164;80.0;140;90;2;1;0;0;1;0
+11396;15969;2;168;72.0;120;80;1;1;0;0;0;0
+11397;21234;2;174;86.0;115;70;1;1;1;0;1;0
+11398;23397;1;170;104.0;130;100;2;2;0;0;1;1
+11401;20468;2;166;80.0;150;80;2;2;0;0;0;1
+11402;22581;1;162;55.0;120;80;1;1;0;0;0;1
+11403;22106;1;165;65.0;120;80;1;1;0;0;0;1
+11404;21201;1;166;67.0;120;80;1;1;0;0;1;0
+11405;14679;1;155;60.0;110;80;2;1;0;0;0;0
+11409;21085;1;176;63.0;110;70;1;1;0;0;0;1
+11410;20271;1;151;78.0;100;70;1;1;0;0;1;0
+11411;19523;2;170;80.0;110;80;1;2;0;0;1;0
+11413;19876;1;168;68.0;120;80;1;1;0;0;0;0
+11414;21337;1;153;78.0;140;90;1;1;0;0;1;1
+11416;22051;1;151;57.0;130;80;1;2;0;0;1;1
+11418;18951;2;170;75.0;120;80;1;1;0;0;1;1
+11419;20444;1;164;98.0;140;90;1;1;0;0;1;1
+11420;16101;1;155;100.0;150;100;1;1;0;0;1;1
+11422;21130;1;158;59.0;100;70;1;1;0;0;1;1
+11423;18464;1;164;62.0;130;80;1;1;0;0;1;0
+11424;21735;1;164;72.0;120;70;1;1;0;0;1;0
+11428;16076;1;165;69.0;120;80;1;1;0;0;1;0
+11430;19806;1;152;82.0;120;80;1;1;0;0;1;0
+11431;14482;1;151;40.0;110;80;1;1;0;0;1;0
+11432;22410;2;176;62.0;140;80;1;1;1;0;1;1
+11433;16633;1;174;89.0;100;70;1;1;0;0;1;0
+11435;21813;1;161;74.0;120;80;1;1;0;0;1;1
+11436;21027;2;166;85.0;140;80;1;1;0;0;1;1
+11438;15273;1;158;52.0;100;60;1;1;0;0;1;0
+11439;14542;1;156;66.0;120;80;1;1;0;0;1;0
+11440;20355;1;152;75.0;110;70;1;1;0;0;1;0
+11441;22028;1;158;52.0;130;90;1;1;0;0;1;1
+11442;18876;1;169;113.0;150;110;3;2;0;0;1;1
+11443;23426;1;155;57.0;120;80;1;2;0;0;1;1
+11444;16115;1;153;59.0;136;92;1;1;0;0;0;1
+11445;20545;1;163;61.0;110;70;1;1;0;0;1;0
+11446;21834;1;167;70.0;140;90;1;1;0;0;1;1
+11447;15887;2;165;63.0;160;80;1;1;1;1;1;0
+11448;21811;1;168;54.0;110;70;2;1;0;0;1;1
+11449;17211;1;169;90.0;150;90;1;1;0;0;1;1
+11450;15313;1;149;106.0;120;80;2;1;0;0;1;0
+11452;18070;1;160;80.0;120;80;1;1;0;0;0;0
+11454;17571;1;158;55.0;120;80;1;1;0;0;1;0
+11455;23260;1;159;65.0;120;80;1;1;0;0;1;0
+11456;22027;2;169;116.0;120;80;1;2;0;0;0;1
+11458;21749;2;166;75.0;140;80;1;2;1;0;0;1
+11460;20441;2;168;69.0;140;90;1;1;0;0;1;1
+11461;20502;1;158;90.0;120;80;2;1;0;0;1;0
+11463;19651;2;172;72.0;130;80;1;1;0;0;1;1
+11464;21467;1;164;65.0;120;80;1;1;0;0;1;1
+11465;16202;1;165;57.0;120;80;1;1;0;0;1;1
+11466;18244;1;175;74.0;100;60;3;1;0;0;1;1
+11467;22047;1;166;69.0;140;90;1;1;0;0;1;1
+11468;18988;1;160;67.0;120;80;1;1;1;1;1;0
+11469;18795;2;179;86.0;120;80;1;1;0;0;1;1
+11470;21061;1;164;106.0;120;70;2;2;0;0;1;1
+11471;20515;1;168;65.0;180;110;1;1;0;0;1;0
+11472;19620;2;177;75.0;120;80;1;1;0;0;1;0
+11473;23378;2;169;65.0;110;90;2;1;0;0;0;0
+11475;20301;1;167;71.0;120;80;1;1;0;0;1;0
+11476;20463;1;156;59.0;120;80;1;1;0;0;1;1
+11478;18933;1;156;46.0;110;70;1;1;0;0;1;0
+11479;17248;1;156;70.0;120;79;1;1;0;0;1;0
+11481;18732;1;166;69.0;120;80;1;1;0;0;1;1
+11482;19842;2;175;74.0;120;80;1;1;0;0;0;0
+11483;14692;1;154;79.0;160;100;1;1;0;0;1;0
+11484;14718;1;158;78.0;130;90;1;1;0;1;0;0
+11485;18211;1;151;81.0;120;80;1;2;0;0;0;0
+11487;19018;1;165;65.0;120;80;3;3;0;0;1;1
+11488;20299;1;167;62.0;140;90;2;1;0;0;1;1
+11489;15432;2;170;71.0;120;80;1;1;0;0;1;0
+11491;22476;1;170;75.0;130;80;1;1;0;0;1;1
+11492;22933;2;180;78.0;120;80;1;1;0;0;1;0
+11494;23212;1;156;83.0;150;100;3;3;0;0;1;1
+11495;16188;1;152;55.0;120;80;1;1;0;0;1;0
+11498;17779;1;158;64.0;120;80;1;1;0;0;0;0
+11499;21150;1;165;83.0;150;90;1;1;0;0;1;0
+11500;19064;1;150;59.0;120;80;1;1;0;0;1;0
+11502;22062;2;178;74.0;110;60;1;1;1;0;1;0
+11503;21953;1;156;70.0;110;70;1;1;0;0;1;0
+11504;16298;1;156;59.0;120;80;2;2;0;0;0;0
+11506;22039;1;165;65.0;120;80;1;1;0;0;0;1
+11507;18085;2;159;60.0;130;90;1;1;0;0;1;1
+11508;19500;1;165;70.0;120;80;1;1;0;0;0;1
+11509;18322;1;166;75.0;120;80;1;1;0;0;1;0
+11511;19071;2;184;96.0;130;90;1;1;0;0;1;0
+11512;22461;2;159;60.0;160;90;3;3;0;0;1;1
+11514;15412;1;160;76.0;120;80;1;1;0;0;1;0
+11516;18385;1;154;76.0;110;80;1;1;0;0;1;1
+11517;18414;1;164;73.0;120;80;1;1;0;0;1;0
+11518;21939;2;165;78.0;140;90;1;1;0;0;1;1
+11519;18914;1;155;54.0;120;80;1;1;0;0;1;0
+11522;23349;1;163;84.0;140;80;1;1;0;0;1;1
+11523;17427;2;170;72.0;130;80;1;1;1;1;0;1
+11525;23472;2;171;77.0;130;80;1;1;0;0;1;1
+11526;21096;1;159;49.0;120;80;1;1;0;0;0;0
+11527;18103;1;169;89.0;120;80;1;1;0;0;1;0
+11529;19723;1;160;103.0;150;90;2;2;0;0;1;0
+11530;23317;1;158;62.0;120;90;1;1;0;0;1;0
+11531;14402;2;169;60.0;110;70;1;1;0;0;1;1
+11532;19637;1;157;68.0;120;80;1;1;0;0;1;0
+11533;18233;1;154;69.0;120;80;1;2;0;0;1;0
+11534;18437;2;167;75.0;130;90;1;1;1;1;1;0
+11535;21077;2;170;65.0;160;100;2;1;0;0;1;1
+11537;20548;1;163;75.0;160;80;3;1;0;0;1;1
+11538;14567;1;158;58.0;130;100;1;1;0;0;1;1
+11539;18360;1;160;72.0;110;70;1;1;0;0;1;0
+11540;18212;1;160;60.0;120;80;1;1;0;0;1;0
+11541;19468;2;176;73.0;110;70;1;2;1;0;1;0
+11543;19966;1;168;68.0;110;70;1;1;0;0;0;0
+11545;23302;2;173;72.0;120;80;1;1;1;0;1;0
+11546;23292;2;159;62.0;120;80;1;1;1;0;1;0
+11550;19466;1;150;55.0;130;90;3;1;0;0;1;1
+11551;18157;2;163;57.0;150;80;1;1;0;0;1;1
+11553;23268;1;173;80.0;120;70;1;1;0;0;1;0
+11554;18251;1;147;80.0;120;80;1;1;0;0;1;0
+11555;22524;1;165;65.0;120;90;1;1;0;0;0;0
+11556;21801;1;162;52.0;140;80;1;1;0;0;1;1
+11558;14669;1;160;63.0;110;70;1;1;0;0;1;0
+11559;20460;1;157;85.0;120;80;1;1;0;0;1;1
+11563;20198;1;154;85.0;170;120;3;1;0;0;1;1
+11564;15891;2;183;100.0;170;110;2;1;1;0;1;1
+11565;17961;1;162;87.0;140;80;1;1;0;0;0;1
+11566;18837;2;169;78.0;120;90;1;1;0;0;1;0
+11567;21861;1;158;80.0;140;90;3;1;0;0;0;1
+11569;15114;2;180;81.0;160;120;2;1;0;0;1;1
+11571;21161;1;160;75.0;140;90;3;1;0;0;1;1
+11575;16649;2;165;65.0;140;90;2;1;0;0;0;1
+11576;20420;2;165;63.0;120;80;1;1;0;0;1;0
+11577;15799;1;160;60.0;110;70;1;1;0;0;0;0
+11578;22701;2;173;65.0;120;80;1;1;0;0;1;0
+11580;19186;1;158;61.0;90;60;2;1;0;0;1;0
+11582;22144;1;150;80.0;120;80;1;1;0;0;1;0
+11586;22732;2;162;70.0;100;60;3;3;0;0;1;1
+11587;15975;2;158;70.0;120;70;1;1;0;0;1;1
+11589;17550;2;174;87.0;150;90;1;1;0;0;1;1
+11590;19514;1;159;89.0;120;80;1;1;0;0;1;0
+11591;21998;2;161;55.0;120;90;1;1;0;0;1;0
+11593;22664;1;167;70.0;150;90;1;1;0;0;1;0
+11595;19728;1;164;70.0;120;80;1;1;0;0;1;1
+11596;23353;2;168;65.0;110;70;1;1;0;0;1;1
+11598;17628;1;165;74.0;130;80;1;1;0;0;1;1
+11600;21944;1;153;54.0;130;80;3;1;0;0;1;0
+11601;21148;1;158;105.0;140;80;1;1;0;0;1;0
+11603;18255;1;162;66.0;120;80;2;1;0;0;0;1
+11605;15835;2;160;92.0;120;80;1;1;0;1;1;0
+11606;18360;1;158;67.0;120;80;2;1;0;0;0;0
+11607;21701;1;160;71.0;160;90;1;1;0;0;1;1
+11608;20757;1;161;80.0;125;80;2;2;0;0;1;1
+11609;19018;2;167;81.0;140;90;3;1;0;0;1;1
+11610;18295;2;163;65.0;120;80;1;1;0;0;1;0
+11611;23394;1;169;73.0;120;80;1;1;0;0;0;1
+11612;18428;1;158;58.0;120;80;1;1;0;0;1;0
+11614;20463;1;169;69.0;160;80;1;1;0;0;1;1
+11615;18391;2;181;85.0;110;70;1;1;1;0;1;0
+11616;16838;1;153;55.0;110;70;2;1;0;0;0;1
+11617;20434;1;149;56.0;80;60;1;1;0;0;1;1
+11618;18921;1;164;62.0;130;70;2;1;0;0;1;0
+11619;18134;2;175;102.0;120;80;1;1;0;0;1;0
+11622;21322;1;170;101.0;140;90;1;1;0;0;1;1
+11623;18973;1;160;72.0;120;80;1;1;0;0;1;1
+11625;18112;1;165;65.0;120;80;1;1;0;0;1;0
+11626;19549;1;159;83.0;120;80;1;1;0;0;1;0
+11627;19781;2;170;103.0;140;100;3;1;0;0;1;1
+11628;21182;1;165;68.0;120;60;1;1;0;0;1;0
+11630;21382;2;163;57.0;120;80;1;1;0;0;1;0
+11632;17592;1;156;90.0;90;60;1;1;0;0;1;0
+11633;16202;1;158;58.0;110;70;1;1;0;0;1;0
+11634;22083;1;164;87.0;120;80;2;1;0;0;1;0
+11636;23190;1;151;64.0;120;80;1;1;0;0;1;1
+11637;18291;1;157;67.0;90;70;2;1;0;0;0;0
+11639;21880;2;169;78.0;150;100;2;1;1;0;1;1
+11641;14616;1;164;54.0;110;70;1;1;0;0;1;0
+11642;15892;1;167;78.0;120;80;1;1;0;0;1;0
+11643;14782;1;170;70.0;120;80;1;1;0;0;1;0
+11645;19906;2;170;89.0;130;80;1;1;1;0;1;1
+11647;22644;1;153;66.0;120;80;2;1;0;0;1;0
+11648;18963;2;168;97.0;135;100;1;1;0;0;0;1
+11650;20043;1;165;65.0;130;80;1;1;0;0;1;0
+11651;22501;2;165;87.0;130;90;2;1;0;0;0;1
+11653;19843;2;171;75.0;150;100;2;1;0;0;1;1
+11654;20394;1;160;114.0;140;80;1;1;0;0;1;0
+11655;15325;2;178;110.0;110;70;2;2;1;0;0;0
+11656;19707;1;165;70.0;140;90;1;1;0;0;1;1
+11658;21753;2;169;96.0;170;100;3;3;0;0;1;1
+11661;14569;1;147;53.0;119;71;1;1;0;0;1;0
+11662;17646;2;97;170.0;160;100;1;1;1;0;1;1
+11663;21971;2;165;70.0;110;80;1;1;1;1;1;1
+11664;20277;1;167;50.0;120;80;3;1;0;0;1;0
+11665;22090;1;156;59.0;130;80;2;1;0;0;1;1
+11666;18816;2;180;90.0;120;80;1;1;1;0;1;0
+11667;18859;2;176;89.0;160;100;1;1;0;0;0;1
+11669;20438;1;160;74.0;110;70;2;1;0;0;1;0
+11670;21695;2;169;92.0;160;80;1;1;0;0;1;1
+11671;15907;1;168;53.0;110;70;1;1;0;0;1;0
+11672;18033;1;165;70.0;120;80;1;2;0;0;1;0
+11673;17275;1;165;72.0;100;70;1;1;0;0;0;0
+11674;22463;1;160;95.0;130;80;2;3;0;0;1;0
+11675;21178;2;180;105.0;150;90;2;1;0;0;1;1
+11676;23286;1;165;84.0;160;100;2;1;0;0;1;1
+11677;18919;2;164;68.0;130;80;3;1;0;0;1;1
+11678;22580;2;173;71.0;110;60;3;1;0;0;1;1
+11680;14587;1;170;68.0;140;90;2;1;0;0;1;1
+11681;21887;1;160;72.0;150;90;1;1;0;0;1;1
+11682;20456;1;163;63.0;120;80;1;1;0;0;1;0
+11684;21778;1;160;58.0;120;80;1;1;0;0;1;0
+11685;23313;1;156;74.0;120;80;3;3;0;0;1;1
+11686;19932;1;165;55.0;120;80;1;1;0;0;1;0
+11688;18829;1;154;63.0;120;80;1;1;0;0;1;0
+11689;21993;1;166;68.0;130;80;1;1;0;0;1;1
+11691;16838;1;160;69.0;130;80;2;1;0;0;1;1
+11694;18194;1;162;75.0;110;80;1;1;0;0;0;0
+11696;19946;2;168;63.0;130;80;1;1;0;0;1;1
+11697;15822;1;163;94.0;110;70;1;1;0;0;1;1
+11698;14718;1;164;84.0;110;80;1;1;0;0;0;0
+11700;21295;2;180;116.0;180;100;1;1;0;0;0;1
+11701;21164;1;168;76.0;120;80;1;1;0;0;1;1
+11703;16101;1;162;80.0;120;80;1;1;0;0;1;1
+11704;17281;1;154;64.0;140;80;1;1;0;0;1;1
+11705;14661;2;174;83.0;130;89;1;1;0;0;1;0
+11706;22608;1;154;95.0;140;90;3;2;0;0;0;1
+11708;19911;1;159;47.0;120;80;1;1;0;0;0;0
+11709;15471;1;168;58.0;110;70;1;1;0;0;1;0
+11710;20509;1;160;46.0;90;70;2;1;0;0;1;0
+11711;19836;2;173;89.0;120;80;2;1;0;0;1;1
+11712;14422;1;171;80.0;110;60;1;2;1;1;1;0
+11716;20249;2;160;63.0;130;90;1;1;1;0;1;1
+11718;19714;2;178;92.0;130;90;2;2;0;0;1;1
+11720;17039;1;168;78.0;140;90;1;1;0;0;1;1
+11721;16772;2;174;125.0;140;90;1;1;0;0;1;1
+11723;16795;1;157;72.0;120;80;2;2;0;0;0;1
+11726;17619;1;168;80.0;140;80;2;1;0;0;1;1
+11727;22519;2;169;72.0;140;90;3;3;0;0;1;1
+11728;20559;1;160;56.0;140;80;3;1;0;0;1;1
+11729;22684;2;175;80.0;150;70;1;1;1;0;1;1
+11730;20472;1;170;69.0;120;80;1;1;0;0;1;1
+11731;18987;1;159;68.0;120;80;1;2;0;0;0;0
+11732;14620;2;175;77.0;120;80;1;1;0;0;0;0
+11733;22010;1;165;68.0;120;80;1;1;0;0;1;1
+11734;22656;1;164;70.0;140;80;2;2;0;0;0;1
+11735;21213;2;151;80.0;130;80;1;1;1;0;1;1
+11737;18843;2;176;75.0;120;80;1;1;0;0;1;0
+11739;14645;1;160;68.0;120;80;1;1;0;0;1;0
+11741;18805;2;169;70.0;110;70;2;1;0;0;0;1
+11743;16916;1;164;84.0;130;90;1;2;0;0;1;1
+11746;23437;1;163;75.0;140;80;3;1;0;0;1;1
+11747;21978;1;158;90.0;140;90;1;1;0;0;1;1
+11748;15301;1;165;65.0;120;80;1;1;0;0;1;0
+11749;20353;2;170;79.0;150;90;1;1;0;0;0;1
+11750;15959;1;160;63.0;130;80;1;3;0;0;1;1
+11751;21632;1;172;84.0;110;70;1;1;0;0;1;0
+11752;18794;1;159;63.0;110;80;1;1;0;0;1;0
+11753;22456;1;152;88.0;120;80;1;1;0;0;1;1
+11755;20288;2;164;83.0;130;80;1;1;0;0;1;0
+11756;19630;1;153;44.0;140;80;1;1;0;0;1;1
+11757;23410;1;168;72.0;150;90;1;1;0;0;0;1
+11759;20335;2;165;58.0;120;70;1;1;0;0;1;1
+11760;17691;1;154;83.0;120;90;1;1;0;0;1;1
+11761;22558;2;162;68.0;110;70;1;1;0;0;1;0
+11762;19160;2;160;65.0;130;80;1;1;1;0;1;1
+11763;22659;2;168;78.0;120;80;1;1;0;0;1;0
+11764;21209;1;164;87.0;160;100;1;1;0;0;1;1
+11766;14581;2;173;69.0;120;80;2;1;1;0;1;1
+11767;22141;1;165;78.0;120;80;1;1;0;0;0;0
+11768;22025;1;150;40.0;110;70;1;1;0;0;1;1
+11769;18364;2;170;72.0;140;90;1;1;0;0;1;1
+11772;21378;1;156;75.0;130;90;1;1;0;0;1;1
+11773;22678;2;168;65.0;120;80;1;1;0;0;0;1
+11777;20433;1;172;69.0;120;80;1;1;0;0;0;1
+11778;22005;2;160;66.0;130;90;2;1;1;0;1;1
+11779;19910;1;162;66.0;120;69;1;1;0;0;1;0
+11780;20182;1;160;91.0;120;80;1;1;0;0;1;0
+11782;22019;2;166;74.0;140;79;2;1;1;0;0;1
+11783;16103;2;181;85.0;110;70;1;1;1;0;1;1
+11785;21733;1;165;69.0;90;60;1;1;0;0;1;1
+11786;23404;2;177;67.0;135;100;1;1;1;0;0;1
+11787;20454;2;168;94.0;120;80;1;1;0;0;1;0
+11792;18879;2;176;76.0;120;70;1;1;1;1;1;0
+11793;17664;2;168;66.0;110;70;1;1;0;0;1;0
+11794;19807;2;178;78.0;120;90;1;1;0;0;1;1
+11797;20305;1;160;63.0;120;80;1;1;0;0;1;0
+11798;23098;1;161;97.0;140;90;1;1;0;0;1;1
+11802;18219;1;158;88.0;130;90;1;1;0;0;1;1
+11804;22476;2;165;74.0;120;80;1;1;0;0;1;1
+11805;21832;1;158;72.0;120;80;3;1;0;0;1;1
+11806;21468;1;159;73.0;140;90;1;1;0;0;0;1
+11807;17550;2;150;51.0;110;70;1;1;0;0;1;0
+11809;19676;2;176;80.0;125;80;1;1;1;1;1;0
+11810;18789;1;150;87.0;126;72;1;1;0;0;1;1
+11811;23492;1;160;59.0;120;80;1;1;0;0;0;1
+11812;21830;1;160;67.0;120;80;1;1;0;0;0;0
+11813;17394;1;149;68.0;110;70;1;2;0;0;1;0
+11814;18468;2;167;84.0;130;90;1;1;0;0;1;1
+11815;18276;1;174;77.0;130;80;1;1;0;0;1;0
+11816;22746;2;165;56.0;130;80;1;1;0;0;0;0
+11819;23302;1;160;81.0;17;80;1;1;0;0;1;1
+11820;16098;1;160;85.0;160;90;1;1;0;1;1;1
+11821;23146;2;168;65.0;135;80;1;1;0;0;0;1
+11822;18020;1;174;65.0;120;80;1;1;0;0;1;0
+11824;20349;2;176;68.0;120;80;1;1;0;0;1;0
+11825;17621;1;165;95.0;160;90;1;1;0;0;1;1
+11826;21956;1;158;70.0;120;80;1;1;0;0;1;0
+11828;21706;1;160;60.0;160;100;1;1;0;0;1;1
+11829;18355;1;150;70.0;110;70;1;3;0;0;1;0
+11830;21010;1;161;85.0;130;90;1;1;0;0;1;1
+11833;21251;2;176;68.0;100;80;1;1;1;0;1;0
+11834;23414;1;165;72.0;120;80;3;1;0;0;1;1
+11835;22662;2;168;83.0;130;90;2;1;0;0;0;0
+11836;20197;2;166;74.0;130;90;1;1;1;1;0;0
+11837;22605;2;173;95.0;130;90;1;1;1;1;1;0
+11838;23320;1;163;70.0;150;100;1;1;0;0;1;1
+11839;21171;1;168;76.0;130;80;3;3;0;0;1;0
+11840;19024;2;174;74.0;120;80;1;1;0;0;1;1
+11841;19403;1;158;57.0;100;60;1;1;0;0;1;1
+11842;14309;1;160;52.0;120;70;1;1;0;0;1;0
+11843;16108;1;170;72.0;120;80;2;1;1;0;1;1
+11845;15361;1;165;70.0;110;70;1;1;0;0;1;0
+11847;23490;1;160;58.0;120;80;1;1;0;0;1;0
+11848;15543;1;171;64.0;100;60;2;1;0;0;0;0
+11851;17503;2;169;54.0;110;70;1;1;0;0;1;1
+11852;21756;1;158;61.0;110;70;3;3;0;0;1;1
+11853;16795;1;163;116.0;170;100;1;1;0;0;1;1
+11856;16712;1;153;56.0;110;80;1;1;0;0;1;0
+11858;22598;2;176;84.0;130;80;3;3;0;0;1;0
+11860;21655;1;165;85.0;145;90;2;1;0;0;1;1
+11861;18189;1;166;68.0;120;80;1;1;0;0;1;0
+11862;20694;2;169;70.0;120;80;1;1;0;0;1;0
+11865;19484;2;165;88.0;140;90;1;1;0;0;1;1
+11869;22366;2;170;87.0;170;90;1;1;0;0;1;1
+11870;15967;2;172;77.0;150;90;1;1;1;1;0;1
+11871;16944;1;162;68.0;120;80;1;1;0;0;1;0
+11873;17641;2;175;76.0;110;90;2;1;0;0;1;0
+11874;22596;2;169;65.0;120;80;1;1;0;0;1;0
+11876;19200;1;170;65.0;120;80;1;1;0;0;1;1
+11877;20954;1;155;78.0;120;80;1;1;0;0;1;0
+11879;14477;1;159;93.0;140;90;1;1;0;0;1;1
+11880;17535;1;164;90.0;120;80;1;1;0;0;1;1
+11883;18975;1;166;81.0;120;80;1;1;0;0;1;0
+11884;16126;1;152;59.0;130;90;3;1;0;0;1;1
+11885;21436;1;161;91.0;120;80;1;1;0;0;1;1
+11886;21887;2;164;76.0;120;80;1;1;0;0;1;1
+11887;18110;1;165;69.0;120;80;1;1;0;0;1;0
+11890;21863;2;169;67.0;120;80;1;1;0;0;0;0
+11891;21198;1;174;85.0;140;90;1;1;0;0;0;1
+11893;22624;1;150;55.0;140;90;1;1;0;0;1;1
+11896;21321;2;174;92.0;120;80;1;1;0;0;1;1
+11897;23280;2;157;76.0;160;100;1;1;0;0;1;1
+11898;23563;1;164;95.0;120;80;1;1;1;0;0;1
+11901;16247;1;160;51.0;100;70;1;1;0;0;1;0
+11902;18275;1;165;94.0;140;60;1;1;0;0;1;1
+11903;16974;1;174;65.0;120;80;1;1;0;0;1;1
+11904;20909;1;180;65.0;150;100;3;1;0;0;1;0
+11905;15883;1;155;49.0;100;70;1;1;0;0;1;0
+11906;18309;2;159;66.0;120;80;1;1;0;0;1;0
+11907;17352;1;167;60.0;100;60;1;1;0;0;1;0
+11908;20428;2;160;62.0;130;80;1;1;0;0;1;0
+11909;21751;1;153;73.0;140;70;2;2;0;0;1;0
+11910;19063;1;160;77.0;150;90;3;3;0;0;1;1
+11911;16052;1;166;86.0;165;1008;1;1;0;0;1;0
+11912;19750;2;174;84.0;120;80;1;1;1;0;1;0
+11914;15985;2;180;75.0;170;100;2;1;1;1;1;1
+11916;20560;2;166;60.0;120;70;1;1;0;0;1;0
+11918;21417;2;174;80.0;120;80;1;1;0;0;1;0
+11919;19761;1;162;91.0;120;80;1;1;0;0;1;1
+11920;22552;1;169;68.0;16;90;2;1;0;0;1;1
+11921;18948;1;169;67.0;120;80;1;1;0;0;1;1
+11923;19533;2;168;92.0;160;100;2;1;0;0;1;0
+11924;14470;1;168;77.0;110;80;1;1;0;0;1;0
+11925;14453;2;179;83.0;130;80;1;3;1;1;1;0
+11927;23249;1;160;54.0;160;90;1;1;0;0;1;1
+11929;18387;1;162;78.0;120;80;1;1;0;0;1;0
+11930;16215;1;165;70.0;90;60;1;1;0;0;1;1
+11931;17520;1;168;62.0;110;70;1;1;0;0;1;0
+11933;22138;1;158;62.0;130;90;3;3;0;0;1;1
+11934;22093;1;158;53.0;100;80;1;1;0;0;1;0
+11935;19893;1;159;72.0;110;80;2;2;0;0;1;1
+11937;20376;1;161;88.0;130;90;1;1;0;0;0;1
+11938;16263;2;170;65.0;140;90;2;1;0;0;0;1
+11940;18060;1;161;68.0;120;80;1;1;0;0;1;1
+11943;18491;1;165;64.0;140;90;1;1;0;0;1;1
+11945;17543;1;169;71.0;110;60;1;1;0;0;1;0
+11947;21730;1;156;63.0;140;90;1;1;0;0;1;0
+11948;16093;2;182;77.0;120;80;1;1;0;0;0;1
+11949;15855;2;168;63.0;100;60;2;1;1;0;1;0
+11951;20421;2;169;110.0;120;80;1;1;0;0;0;0
+11952;18912;1;154;50.0;110;70;1;1;0;0;0;0
+11953;19087;1;168;68.0;120;80;1;1;0;0;0;0
+11954;21148;2;169;72.0;160;80;2;2;0;0;1;0
+11955;21200;2;163;63.0;120;80;1;1;0;0;0;1
+11956;18498;1;166;81.0;120;80;1;1;0;0;1;0
+11957;18468;1;169;58.0;100;80;1;1;0;0;1;0
+11959;21022;2;170;90.0;145;100;1;1;0;1;1;0
+11962;16050;1;162;78.0;110;80;2;1;0;0;1;0
+11964;20346;2;180;95.0;140;100;1;1;0;0;1;1
+11965;23321;2;164;62.0;120;80;1;1;0;0;1;1
+11966;18751;1;158;58.0;120;80;1;1;0;0;1;0
+11968;22801;2;169;76.0;120;80;1;1;0;0;0;1
+11969;22573;1;149;73.0;150;100;3;1;0;0;1;1
+11970;18036;1;165;50.0;108;73;1;1;0;0;0;0
+11971;21710;1;154;84.5;180;100;3;3;0;0;1;1
+11972;20451;1;150;64.0;120;60;2;1;0;0;1;1
+11973;20460;1;160;67.0;110;70;1;1;0;0;0;0
+11974;14504;2;180;82.0;120;80;1;1;1;0;1;0
+11976;23453;1;161;70.0;160;100;3;1;0;0;1;1
+11977;17697;1;160;62.0;130;90;1;1;0;0;1;0
+11978;20384;1;147;77.0;110;70;1;1;0;0;1;0
+11979;14656;2;158;62.0;130;60;1;1;1;1;1;1
+11980;18367;1;168;69.0;120;80;1;1;0;0;1;0
+11981;16065;2;168;70.0;140;90;1;1;0;0;1;1
+11982;23317;1;161;71.0;150;90;2;1;0;0;1;1
+11983;23361;2;170;63.0;110;80;1;1;0;0;1;0
+11985;19746;1;156;95.0;180;1100;2;1;0;0;1;1
+11986;19116;1;169;68.0;120;80;1;3;0;0;1;0
+11987;18417;2;158;62.0;130;90;1;1;0;0;1;0
+11988;14478;1;160;55.0;100;60;1;1;0;0;0;0
+11991;21919;1;158;63.0;120;80;2;3;0;0;1;0
+11994;17601;2;175;80.0;120;80;1;1;0;0;1;0
+11995;19692;2;176;81.0;120;80;1;1;0;0;1;0
+11997;23393;1;153;74.0;130;90;1;1;0;0;0;0
+11998;19129;1;152;55.0;105;60;1;1;0;0;0;0
+11999;21704;1;164;72.0;130;80;3;3;0;0;1;0
+12000;16546;1;167;66.0;120;80;1;2;0;0;1;0
+12001;20164;1;176;75.0;140;90;1;1;1;0;1;1
+12002;18018;2;169;72.0;140;90;1;3;0;0;1;0
+12004;18265;1;168;72.0;120;80;1;3;1;1;1;0
+12005;17338;2;171;71.0;140;90;1;1;1;0;1;1
+12006;21815;2;169;83.0;110;70;1;1;0;0;1;0
+12008;18213;1;164;64.0;120;80;1;1;0;0;1;0
+12010;18178;1;161;68.0;120;80;1;1;0;0;1;0
+12011;19724;1;156;58.0;130;80;1;1;0;0;1;1
+12012;19150;1;154;65.0;120;80;1;1;0;0;1;1
+12013;21058;1;151;50.0;120;80;3;1;0;0;0;0
+12014;21742;2;170;71.0;110;70;1;1;1;0;0;0
+12015;20715;1;163;61.0;130;70;1;1;0;0;1;0
+12016;19967;1;158;62.0;120;70;1;1;0;0;1;1
+12017;21329;1;164;74.0;110;70;2;1;0;0;1;0
+12018;20989;1;168;60.0;150;100;1;1;0;0;1;1
+12019;23152;2;162;60.0;80;130;1;1;0;0;0;1
+12020;14697;1;170;165.0;120;80;1;1;0;0;1;0
+12025;18131;1;158;80.0;160;100;1;1;0;0;1;1
+12026;19731;1;161;135.0;140;80;3;2;0;0;1;1
+12027;21725;1;169;75.0;120;80;1;1;0;0;1;0
+12028;15770;2;165;96.0;140;90;3;1;1;0;1;1
+12030;20530;2;161;72.0;100;80;1;3;1;0;1;0
+12032;14651;1;160;60.0;120;80;1;1;0;0;1;0
+12034;16103;2;172;76.0;130;90;1;1;0;0;1;0
+12037;18104;2;161;87.0;120;80;1;1;0;0;1;1
+12038;16957;1;170;81.0;130;80;3;3;0;0;1;0
+12039;19612;2;179;95.0;140;90;2;2;1;1;1;1
+12040;21178;1;168;98.0;120;80;1;1;0;0;1;1
+12041;16141;2;182;100.0;120;80;1;1;1;1;1;0
+12042;21815;1;168;68.0;120;80;1;1;0;0;0;1
+12043;17042;2;162;65.0;110;80;2;1;0;1;1;0
+12047;21293;1;165;56.0;120;70;1;1;0;0;1;0
+12048;18221;1;156;86.0;110;70;2;1;0;0;1;0
+12049;23346;1;163;87.0;120;80;1;1;0;0;1;0
+12050;19622;2;170;89.0;130;90;1;3;0;0;1;1
+12051;18811;1;155;68.0;150;90;2;1;0;0;1;1
+12053;15281;2;169;66.0;120;80;1;1;0;0;1;0
+12054;23395;1;158;70.0;120;90;1;1;0;0;1;1
+12055;19124;1;155;56.0;140;90;3;3;0;0;0;1
+12056;16171;2;176;73.0;120;80;1;1;1;0;1;0
+12057;15583;1;155;62.0;120;80;1;1;0;0;0;0
+12059;15887;1;154;78.0;120;80;1;1;0;0;1;0
+12060;21724;1;160;65.0;160;100;1;1;0;0;1;1
+12061;21047;2;165;84.0;140;80;1;1;0;0;1;1
+12062;21036;1;166;80.0;160;1200;1;1;0;0;1;1
+12063;16749;2;170;128.0;120;80;1;3;0;0;1;0
+12064;16988;1;149;63.0;110;80;1;1;0;0;1;0
+12065;19385;1;170;72.0;120;80;1;1;0;0;1;1
+12066;15330;1;168;82.0;110;50;3;1;0;0;1;1
+12069;15958;2;177;64.0;130;80;1;1;0;0;1;0
+12070;22846;1;160;59.0;120;70;1;1;0;0;1;1
+12072;19781;1;163;67.0;130;80;1;1;0;0;1;1
+12074;23299;1;149;62.0;140;90;1;1;0;0;1;1
+12075;14604;2;170;74.0;110;70;1;1;1;0;1;0
+12076;16530;1;165;65.0;130;90;2;1;0;0;1;0
+12077;18048;1;158;59.0;120;80;1;1;0;0;0;0
+12078;21041;1;164;84.0;150;100;1;1;0;0;1;1
+12080;20472;1;157;68.0;120;80;1;1;0;0;1;0
+12081;19788;1;170;89.0;160;90;2;1;0;0;1;1
+12082;19826;2;167;74.0;120;90;1;1;0;0;1;0
+12084;15390;1;145;47.0;110;70;1;1;0;0;0;0
+12085;15143;1;149;50.0;110;80;1;1;0;0;1;0
+12086;20389;1;164;68.0;165;95;1;1;0;0;0;1
+12087;18128;1;157;55.0;110;70;1;1;0;0;0;0
+12088;19994;2;175;83.0;130;85;1;1;0;0;1;1
+12089;16550;2;186;96.0;120;80;1;1;1;1;1;0
+12090;16727;2;169;83.0;120;80;1;1;0;0;1;1
+12091;22030;1;180;75.0;120;60;1;1;0;0;1;1
+12093;19894;1;165;64.0;120;80;1;1;0;0;1;0
+12096;14599;2;159;63.0;120;80;1;1;0;0;1;0
+12097;21250;1;152;60.0;140;90;1;1;0;0;1;1
+12098;23358;1;163;75.0;120;80;1;1;0;0;1;1
+12099;18971;1;165;73.0;120;80;1;1;0;0;1;0
+12100;16878;1;166;95.0;120;70;1;1;0;0;1;0
+12101;23483;2;174;84.0;130;80;1;1;1;0;1;0
+12102;20389;2;160;83.0;120;80;1;1;0;0;1;1
+12104;17319;2;159;57.0;130;80;1;1;1;1;1;0
+12107;20389;2;160;60.0;160;100;1;1;0;0;1;1
+12108;21097;1;157;63.0;110;70;1;1;0;0;1;1
+12111;18238;1;178;70.0;120;80;1;1;0;0;1;1
+12112;22613;2;180;110.0;140;80;1;1;0;0;1;1
+12113;18927;2;170;81.0;120;80;1;1;0;0;1;1
+12114;17088;1;150;67.0;135;1000;1;1;0;0;1;0
+12115;15792;2;170;70.0;140;90;1;1;1;0;1;1
+12116;22185;1;144;46.0;100;60;1;1;0;0;0;0
+12118;18917;1;159;53.0;120;60;1;1;1;0;1;0
+12119;21132;2;169;69.0;120;80;1;1;0;0;1;1
+12120;16618;1;170;72.0;110;60;1;1;0;0;1;1
+12121;21604;1;165;77.0;140;80;3;1;0;0;1;1
+12123;19799;1;160;64.0;130;90;1;1;0;0;0;1
+12124;19633;2;170;66.0;120;80;1;1;0;0;1;0
+12127;21180;1;167;62.0;120;80;1;1;0;0;1;0
+12128;14588;1;155;70.0;120;80;1;2;0;0;1;0
+12130;19609;1;156;87.0;180;100;1;2;0;0;0;0
+12132;20558;1;165;70.0;120;80;1;1;0;0;0;1
+12134;23207;1;155;64.0;110;90;2;1;0;0;1;0
+12136;20319;2;171;100.0;140;90;2;1;0;0;1;1
+12138;15338;1;160;59.0;110;60;1;1;0;0;1;0
+12139;18354;1;168;74.0;120;80;1;1;0;0;1;0
+12140;16260;1;150;60.0;120;80;1;1;0;0;1;0
+12141;21107;2;170;70.0;120;80;3;3;0;0;1;1
+12143;17243;1;155;65.0;110;70;2;1;0;0;0;1
+12145;23549;1;168;68.0;130;90;1;1;0;0;1;0
+12146;15363;2;162;67.0;110;70;1;1;0;0;1;0
+12147;19115;2;168;78.0;100;70;1;1;0;0;0;0
+12149;17402;1;160;72.0;110;80;2;2;0;0;1;0
+12150;20597;2;181;110.0;180;100;2;1;1;0;1;1
+12151;19267;1;165;65.0;120;80;1;1;0;0;0;0
+12152;17554;1;163;72.5;130;80;1;2;0;0;1;0
+12153;20486;1;158;80.0;130;90;1;3;0;0;1;0
+12157;21091;2;171;80.0;180;100;3;3;0;0;0;1
+12158;23202;1;151;80.0;110;70;3;3;0;0;1;1
+12159;21886;1;160;65.0;120;80;1;1;0;0;1;0
+12161;22357;1;156;72.0;140;90;1;1;0;0;1;0
+12162;23346;1;159;59.0;120;80;1;1;0;0;0;1
+12163;22444;2;179;86.0;130;90;1;1;0;0;1;1
+12164;21197;1;167;69.0;125;80;1;1;0;0;1;0
+12166;21945;1;162;69.0;120;80;3;1;0;0;1;1
+12167;19526;2;190;90.0;130;90;2;1;0;0;1;1
+12169;17267;1;147;68.0;150;90;3;3;0;0;1;1
+12171;15369;2;178;100.0;120;80;1;1;0;0;1;0
+12173;23451;1;160;89.0;120;80;3;1;0;0;1;1
+12174;22417;1;156;59.0;150;90;2;2;0;0;1;1
+12176;18283;1;154;54.0;140;98;2;2;0;0;1;0
+12177;23348;1;161;60.0;110;70;1;1;0;0;0;0
+12179;17333;1;163;102.0;130;80;1;1;0;0;0;0
+12180;16452;1;160;60.0;120;80;1;1;0;0;1;1
+12181;18430;1;155;87.0;105;70;1;1;0;0;1;0
+12182;19798;2;172;74.0;130;90;1;1;1;1;1;1
+12183;21282;1;146;52.0;120;80;1;1;0;0;1;0
+12186;15049;2;169;97.0;144;91;3;1;1;0;1;0
+12187;18261;2;168;72.0;130;90;1;1;0;0;1;0
+12188;17598;1;184;85.0;140;80;1;1;0;0;0;0
+12190;20412;1;160;56.0;130;80;1;1;0;0;1;1
+12191;23166;1;168;65.0;130;80;2;1;0;0;1;1
+12193;14526;2;175;78.0;150;110;1;1;0;1;1;1
+12194;19161;2;165;70.0;120;80;1;1;0;0;0;0
+12195;19884;1;161;71.0;120;80;3;3;0;0;0;0
+12196;23220;1;158;71.0;130;80;3;1;0;0;1;1
+12197;18261;2;170;93.0;120;80;1;1;0;0;0;1
+12198;20996;1;156;63.0;140;80;2;2;0;0;0;1
+12200;17319;1;147;71.0;110;70;1;1;0;0;1;0
+12201;21926;1;153;60.0;160;90;1;1;0;0;1;1
+12202;21868;1;158;82.0;120;80;3;1;0;0;1;1
+12203;23091;2;174;78.0;140;80;1;1;0;0;0;0
+12205;21824;1;150;67.0;130;80;1;1;0;0;1;1
+12208;14547;1;159;65.0;140;80;1;1;0;0;0;1
+12210;18137;1;162;76.0;150;80;1;1;0;0;1;1
+12211;21119;1;159;75.0;150;90;1;2;0;0;1;1
+12215;20183;1;164;85.0;150;90;1;1;0;0;1;1
+12216;23546;1;165;65.0;120;79;1;1;0;0;0;1
+12217;18107;1;165;75.0;120;80;1;1;0;0;1;0
+12219;22039;2;158;75.0;140;90;1;1;0;0;1;1
+12221;17760;1;158;85.0;120;80;1;1;0;0;1;1
+12222;14752;1;154;56.0;120;70;1;1;0;0;0;0
+12223;21155;2;170;70.0;120;80;1;1;0;0;1;0
+12224;19567;2;176;67.0;130;80;1;3;1;0;1;0
+12225;21829;2;154;53.0;110;70;3;3;0;0;1;1
+12226;15160;2;176;92.0;130;80;1;1;0;0;1;0
+12227;16073;1;166;68.0;120;80;1;1;0;0;1;0
+12229;21790;1;155;48.0;140;90;2;1;0;0;1;1
+12230;19651;2;160;74.0;130;85;1;1;1;0;1;0
+12232;21851;1;164;78.0;140;80;3;1;0;0;1;1
+12234;21191;1;164;87.0;130;80;1;1;0;0;0;0
+12235;21951;1;161;83.0;120;80;1;1;0;0;1;0
+12236;19554;1;169;75.0;110;70;1;1;0;0;1;0
+12239;21323;1;167;76.0;120;80;1;1;0;0;1;1
+12242;19622;1;170;74.0;120;80;2;2;0;0;0;0
+12243;18080;1;165;70.0;120;80;1;1;0;0;1;1
+12244;22646;1;151;64.0;110;80;1;1;0;0;1;1
+12245;21193;1;163;64.0;110;70;1;1;0;0;1;0
+12246;19871;1;172;84.0;120;80;1;1;0;0;1;1
+12247;23303;1;165;98.0;140;90;1;1;0;0;1;1
+12248;23494;1;159;83.0;130;80;1;1;0;0;1;0
+12249;22008;1;164;88.0;115;70;1;1;0;0;1;0
+12250;14577;1;158;64.0;120;80;1;1;0;0;1;1
+12251;14603;1;161;74.0;120;80;1;1;0;0;1;0
+12252;20451;1;166;66.0;120;80;1;1;0;0;0;1
+12253;19549;1;152;80.0;120;100;1;1;0;0;1;0
+12255;22569;1;156;60.0;140;90;3;1;0;0;1;1
+12256;17451;2;168;90.0;115;75;3;3;1;0;1;0
+12257;15514;1;161;65.0;120;70;1;1;0;0;0;0
+12258;22015;1;159;63.0;120;80;1;1;0;0;0;0
+12259;20580;1;162;70.0;110;70;1;2;1;0;1;1
+12260;19787;1;164;73.0;100;70;1;2;0;0;1;1
+12261;22540;2;172;76.0;120;70;1;1;0;0;1;1
+12262;22699;1;168;111.0;180;100;2;2;0;1;1;1
+12263;16834;2;165;65.0;120;80;1;1;0;0;0;1
+12265;17663;2;169;88.0;120;80;1;2;0;0;1;1
+12266;18797;2;168;73.0;158;86;1;1;1;0;1;1
+12267;21294;1;160;65.0;120;80;1;1;0;0;1;1
+12268;18979;1;161;93.0;130;80;1;2;0;0;1;1
+12269;23315;1;164;75.0;130;90;1;1;0;0;0;1
+12270;16926;1;165;70.0;120;80;1;1;0;0;1;0
+12272;21189;2;162;89.0;120;80;1;1;1;0;0;1
+12276;20256;1;158;72.0;130;90;1;1;0;0;0;1
+12279;18159;1;162;70.0;120;80;1;1;0;0;1;0
+12280;20333;1;150;63.0;150;90;1;1;0;0;1;1
+12283;21831;1;168;62.0;120;90;3;3;0;0;1;1
+12284;19042;2;167;58.0;120;80;1;1;0;0;1;0
+12286;21832;2;158;106.0;100;60;1;1;0;0;0;1
+12287;21261;1;166;78.0;120;80;1;1;0;0;1;1
+12291;19025;1;165;80.0;120;80;2;1;0;0;1;0
+12292;18126;1;161;76.0;170;110;1;1;0;0;1;1
+12293;21840;2;174;86.0;140;90;3;1;0;1;1;0
+12295;21657;2;162;56.0;100;60;1;1;1;0;1;0
+12296;19765;1;151;82.0;135;90;1;1;0;0;1;1
+12297;20489;1;166;91.0;160;90;3;3;0;0;1;1
+12298;18382;1;154;71.0;120;80;1;1;0;0;1;0
+12299;21658;1;159;86.0;140;90;3;1;0;0;1;1
+12300;16761;1;175;96.0;140;70;1;1;0;0;1;1
+12301;15175;2;168;67.0;140;90;1;1;0;0;0;1
+12302;19526;1;162;61.0;120;80;1;1;0;0;1;1
+12303;19609;1;163;61.0;110;70;1;1;0;0;1;0
+12304;15932;1;165;50.0;120;70;1;1;0;0;0;0
+12305;21795;1;157;90.0;160;100;1;3;0;0;1;1
+12306;20621;1;156;70.0;130;1000;2;2;0;0;1;1
+12307;21188;1;175;107.0;120;80;1;1;0;0;0;0
+12308;19786;1;162;81.0;140;90;1;1;0;0;1;1
+12310;16579;2;171;87.0;120;80;1;1;0;0;0;0
+12311;20991;2;177;81.0;125;70;1;1;1;0;1;0
+12312;18215;1;152;74.0;120;80;2;1;0;0;1;0
+12313;19104;1;160;92.0;140;100;1;2;0;0;0;1
+12314;16142;2;177;90.0;150;90;1;1;0;0;1;1
+12315;21005;1;158;68.0;120;80;1;1;0;0;1;0
+12316;20458;2;177;65.0;120;80;1;1;1;0;1;1
+12318;23522;1;145;67.0;120;80;1;1;0;0;1;1
+12320;19682;1;165;60.0;170;90;1;1;0;0;1;1
+12321;15397;1;167;77.0;140;90;1;1;0;0;1;0
+12322;18135;2;165;72.0;120;80;1;1;0;0;0;0
+12325;18455;1;176;78.0;160;90;1;1;0;0;0;1
+12326;19112;2;175;85.0;150;80;2;2;0;1;1;1
+12329;21877;2;176;71.0;120;80;3;1;0;0;1;1
+12330;19727;1;169;73.0;140;90;1;1;0;0;1;1
+12333;18860;1;170;57.0;110;70;1;1;0;0;1;0
+12335;21869;2;156;51.0;130;90;1;1;1;0;1;0
+12336;23167;1;156;76.0;130;80;3;1;0;0;1;1
+12337;22034;2;172;70.0;150;90;2;1;0;0;1;1
+12338;16568;1;170;68.0;140;70;1;1;0;0;0;0
+12341;17501;1;154;64.0;130;90;1;1;0;0;0;1
+12342;19471;1;156;78.0;120;80;1;1;0;0;1;1
+12343;16752;2;159;60.0;100;70;1;1;0;1;1;0
+12345;17666;1;162;130.0;130;80;2;3;0;0;1;1
+12346;23157;1;159;53.0;120;80;1;1;0;0;0;0
+12347;19722;2;170;70.0;110;80;1;1;1;0;1;1
+12349;21895;2;170;73.0;120;80;1;1;0;0;0;1
+12351;21968;2;170;60.0;100;80;1;1;0;0;0;1
+12352;18055;1;158;82.0;120;80;1;1;0;0;1;0
+12353;16810;1;164;77.0;110;80;1;1;0;0;1;0
+12355;20601;1;158;53.0;120;90;1;1;0;0;1;1
+12358;22651;1;165;85.0;140;90;3;1;0;0;1;1
+12360;20460;2;170;80.0;120;80;1;1;0;0;1;0
+12361;16098;1;155;75.0;120;80;1;1;0;0;1;0
+12363;20507;1;155;79.0;140;90;1;1;0;0;0;1
+12364;18403;1;160;60.0;150;90;1;1;0;0;1;1
+12365;15910;2;174;80.0;110;70;1;1;0;0;1;0
+12366;19753;2;160;52.0;130;80;1;1;1;0;1;0
+12367;23576;1;162;93.0;140;1000;2;1;0;0;1;1
+12368;18332;2;168;74.0;120;80;1;1;0;0;0;1
+12369;22120;2;167;70.0;120;80;1;1;0;0;1;1
+12370;20436;1;162;68.0;140;90;1;1;0;0;1;0
+12371;22076;2;178;65.0;120;80;1;1;0;0;0;0
+12372;18239;1;169;100.0;160;100;1;1;0;0;1;1
+12373;21841;2;177;66.0;100;60;1;1;0;0;1;0
+12374;21137;2;160;120.0;140;100;1;3;0;0;1;0
+12375;15344;1;167;57.0;110;70;1;1;0;0;1;0
+12376;19018;1;150;60.0;150;100;1;3;0;0;1;0
+12378;18882;2;162;70.0;100;80;3;1;0;1;1;1
+12379;21341;1;154;50.0;115;80;1;1;0;0;1;0
+12380;21211;2;176;76.0;120;80;2;1;1;1;1;0
+12381;19698;2;119;89.0;160;90;1;1;0;0;1;1
+12382;19443;2;170;75.0;120;89;1;1;0;0;0;0
+12385;17435;1;157;65.0;140;80;2;3;0;0;1;0
+12386;21972;1;165;63.0;110;80;1;1;0;0;1;1
+12388;22555;1;165;59.0;110;70;1;1;0;0;1;0
+12390;19800;1;161;69.0;140;90;1;1;0;0;1;1
+12391;19611;1;164;65.0;110;70;1;1;0;0;1;1
+12392;19964;1;162;63.0;110;70;1;1;0;0;1;0
+12393;16858;2;165;60.0;130;80;1;1;0;0;0;1
+12396;20253;1;153;75.0;120;80;1;1;0;0;1;0
+12397;17508;2;175;76.0;110;80;1;1;0;0;1;0
+12398;19605;1;164;88.0;120;80;1;1;0;0;1;0
+12399;18181;1;157;83.0;110;60;2;1;0;0;1;0
+12400;15516;1;153;50.0;110;80;2;1;0;0;1;0
+12401;21691;1;151;63.0;120;80;3;3;0;0;0;1
+12402;14653;1;153;43.0;90;60;1;1;0;0;1;0
+12404;19900;1;157;78.0;120;80;1;3;0;0;1;1
+12407;18208;2;170;95.0;120;80;1;1;0;0;1;0
+12408;19593;2;170;65.0;120;80;1;1;0;0;1;0
+12409;22755;1;168;116.0;130;90;1;1;0;0;1;1
+12410;23230;1;168;68.0;130;80;1;1;0;0;1;0
+12411;16820;1;168;69.0;120;80;1;1;0;0;1;0
+12412;17572;1;158;79.0;130;80;1;1;0;0;0;0
+12413;19525;1;150;63.0;140;90;3;1;0;0;1;1
+12414;19797;1;161;55.0;102;68;2;1;0;0;1;0
+12415;21924;2;169;63.0;140;80;1;1;0;0;0;1
+12417;16879;2;186;76.0;120;80;1;1;0;0;1;0
+12418;20484;1;168;68.0;120;80;1;1;0;0;1;1
+12419;19942;1;164;86.0;130;80;1;3;0;0;1;0
+12420;21162;1;164;70.0;130;90;1;1;0;0;0;0
+12423;23482;1;156;72.0;120;80;1;1;0;0;1;0
+12425;19637;1;156;75.0;140;90;1;1;0;0;1;1
+12426;22611;2;165;75.0;150;1000;1;1;0;0;1;1
+12427;19691;2;174;80.0;120;80;1;1;0;0;1;0
+12431;21246;1;157;80.0;120;80;1;1;0;0;0;0
+12432;21084;1;170;70.0;120;80;1;1;0;0;1;0
+12433;20513;2;146;62.0;110;70;1;2;0;0;0;0
+12434;21042;1;162;90.0;140;80;1;3;0;0;0;0
+12435;22432;1;153;80.0;130;90;1;1;0;0;0;1
+12437;23347;1;172;64.0;130;80;1;1;0;0;1;1
+12438;21324;1;168;94.0;110;80;1;1;0;0;1;0
+12439;18857;2;174;77.0;120;80;2;2;1;0;1;0
+12441;19196;1;174;78.0;110;70;1;1;0;0;1;0
+12442;23162;2;175;85.0;110;70;1;1;0;0;1;0
+12443;17543;1;170;80.0;120;70;1;1;0;0;0;1
+12444;21928;1;157;77.0;120;80;1;1;0;0;1;1
+12445;23407;1;150;50.0;120;80;1;1;0;0;1;0
+12446;17338;2;177;96.0;110;80;2;1;1;0;1;0
+12450;21003;2;160;70.0;140;100;1;1;0;0;1;1
+12451;15514;1;168;81.0;120;80;1;1;0;0;1;1
+12454;22801;1;152;83.0;140;90;1;1;0;0;1;1
+12455;20299;1;158;60.0;140;90;1;1;0;0;1;0
+12456;18969;1;163;105.0;140;90;2;2;0;1;1;1
+12460;20423;1;163;129.0;145;110;1;1;0;0;1;1
+12463;18302;1;170;73.0;120;80;1;1;0;0;1;0
+12465;17956;1;167;68.0;130;80;1;1;0;0;1;0
+12466;18160;1;170;65.0;110;69;1;1;0;0;1;0
+12467;20443;1;156;64.0;140;90;2;1;0;0;1;1
+12468;19486;1;163;63.0;130;80;3;1;1;0;1;1
+12469;21172;1;161;90.0;130;90;1;1;0;0;0;1
+12470;21313;1;169;73.0;120;80;1;1;0;0;1;0
+12471;19809;1;156;50.0;110;70;1;1;0;0;1;0
+12472;21884;1;168;65.0;120;80;1;1;0;0;1;1
+12473;16651;1;157;90.0;120;80;1;1;0;0;1;0
+12474;22620;1;162;80.0;170;100;3;3;0;0;1;1
+12475;20938;2;170;75.0;130;90;1;1;0;0;0;1
+12478;15182;1;164;67.0;110;80;2;1;0;0;1;0
+12480;15410;1;162;65.0;140;80;1;1;0;0;1;1
+12482;15926;1;154;51.0;100;80;1;3;0;0;1;0
+12483;22121;2;160;78.0;110;70;1;2;0;0;0;0
+12484;20585;1;165;84.0;120;80;1;1;0;0;1;0
+12485;14540;1;162;86.0;120;80;1;2;0;0;1;0
+12486;19818;1;165;98.0;120;80;1;1;0;1;1;0
+12487;17306;2;165;103.0;150;89;1;1;1;0;0;1
+12488;18884;2;158;70.0;120;80;1;1;0;0;0;1
+12489;19563;2;165;70.0;130;80;2;1;0;0;1;0
+12490;22521;1;152;72.0;120;90;3;1;0;0;1;1
+12491;20519;2;162;66.0;150;80;1;1;0;0;1;1
+12492;22008;2;185;84.0;150;100;1;1;0;0;1;0
+12493;18133;2;169;67.0;120;70;1;1;0;0;1;0
+12494;16905;2;163;63.0;1;2088;1;1;1;0;1;0
+12495;22490;1;156;56.0;130;90;3;1;0;0;0;1
+12496;20248;1;165;60.0;120;80;1;3;0;0;1;1
+12497;15868;1;137;81.0;90;70;1;1;0;0;1;0
+12498;18013;1;161;66.0;120;80;1;1;0;0;1;0
+12499;18047;1;158;75.0;120;80;1;1;0;0;1;0
+12500;19760;1;168;72.0;150;80;1;1;0;0;0;1
+12501;22636;2;169;78.0;130;80;1;1;1;1;0;0
+12502;23395;1;157;60.0;120;80;1;3;0;0;1;1
+12504;14787;1;155;69.0;125;70;1;1;0;0;1;0
+12505;19643;1;158;66.0;110;70;1;1;0;0;1;1
+12508;20626;1;168;65.0;120;70;1;1;0;0;1;0
+12509;23330;1;150;74.0;130;80;2;3;0;0;1;1
+12510;20367;1;165;69.0;120;80;1;1;0;0;1;1
+12514;19648;1;163;82.0;120;80;1;1;0;0;1;0
+12515;21077;1;152;63.0;120;80;1;1;0;0;1;0
+12518;23248;1;160;64.0;120;80;1;1;0;0;1;0
+12520;21885;1;167;65.0;120;80;1;1;0;0;0;0
+12521;22030;1;172;81.0;130;90;2;1;0;0;0;1
+12522;23373;1;166;66.0;120;60;1;1;0;0;1;0
+12527;22462;1;164;104.0;120;80;1;1;0;0;1;1
+12528;15869;2;166;66.0;150;100;1;1;1;0;0;1
+12529;22857;2;173;90.0;140;90;1;1;0;0;0;1
+12530;19077;2;174;140.0;120;80;1;1;0;0;1;1
+12532;18274;1;169;84.0;110;80;1;1;0;0;1;0
+12533;23288;1;164;87.0;120;70;1;3;0;0;0;1
+12534;22698;1;162;71.0;100;60;1;1;0;0;1;1
+12535;16778;1;158;59.0;110;80;1;1;0;0;0;0
+12536;18451;2;175;90.0;120;80;1;1;0;0;1;0
+12537;23358;2;163;85.0;170;100;2;2;0;0;1;1
+12538;20698;1;156;63.0;150;80;2;1;0;0;0;1
+12539;22571;2;178;68.0;120;70;1;1;0;0;0;0
+12540;21124;1;158;78.0;110;80;1;2;0;0;1;0
+12542;22086;1;174;65.0;120;80;1;1;0;0;1;0
+12543;23417;1;145;66.0;160;80;2;1;0;0;1;1
+12544;19859;1;168;74.0;110;70;2;1;0;0;1;0
+12545;21100;1;178;60.0;120;80;1;1;0;0;0;0
+12546;19088;2;168;90.0;140;80;1;1;1;0;1;1
+12547;18198;2;178;74.0;150;90;2;1;0;0;1;1
+12548;17339;1;162;65.0;140;90;1;1;0;0;0;1
+12550;21155;1;162;68.0;110;20;1;1;0;0;1;0
+12551;21955;1;165;73.0;120;80;1;1;0;0;0;0
+12552;21956;1;158;68.0;120;80;1;1;0;0;1;1
+12553;18873;2;179;79.0;140;90;1;1;0;0;0;1
+12554;23164;2;160;140.0;140;90;3;3;1;0;0;1
+12555;14775;2;155;57.0;130;70;1;1;0;0;0;0
+12556;18971;2;174;80.0;120;80;1;1;0;0;1;1
+12557;23198;2;172;84.0;140;90;3;1;0;0;1;1
+12558;19515;1;155;58.0;130;80;1;1;0;0;1;0
+12559;17342;1;165;77.0;110;70;1;1;0;0;0;0
+12560;14748;2;168;66.0;110;80;1;1;1;0;0;0
+12561;22098;1;165;70.0;145;90;1;1;0;0;1;1
+12562;15338;1;153;50.0;90;59;2;1;0;0;1;0
+12564;20367;1;163;86.0;120;80;3;1;0;0;0;1
+12565;19000;1;163;63.0;120;80;1;1;0;0;1;0
+12567;18449;1;153;77.0;120;80;2;2;0;0;0;1
+12568;22673;1;160;60.0;130;80;1;3;0;0;0;1
+12569;19041;1;167;69.0;120;80;1;1;0;0;1;0
+12570;22860;2;171;92.0;140;90;2;1;0;0;1;1
+12571;20371;1;168;100.0;120;90;2;1;0;0;1;1
+12572;21954;1;166;65.0;120;79;3;3;0;0;1;1
+12574;22596;1;154;83.0;160;90;3;3;0;0;1;0
+12577;21761;2;170;106.0;140;80;1;1;0;0;1;1
+12578;16795;2;168;103.0;140;80;1;2;1;0;1;0
+12580;21652;1;158;62.0;110;70;2;1;0;0;1;0
+12581;18886;1;161;101.0;140;90;2;1;0;0;1;1
+12582;20352;2;171;76.0;120;70;1;3;0;0;1;1
+12583;19078;2;168;64.0;110;90;1;1;0;0;1;0
+12584;21990;2;170;82.0;120;80;1;1;1;0;1;1
+12585;18239;1;165;108.0;140;100;3;1;0;0;1;1
+12586;19619;1;153;110.0;120;80;1;1;0;0;1;0
+12587;22661;1;158;66.0;120;90;1;3;0;0;1;0
+12588;19602;1;166;68.0;120;80;1;1;0;0;0;1
+12589;21880;1;154;108.0;120;80;3;1;0;0;1;1
+12590;21808;1;157;98.0;160;90;1;2;0;0;0;0
+12591;15871;1;171;69.0;120;80;1;1;0;0;1;0
+12592;19732;1;168;68.0;120;80;1;1;0;0;1;0
+12594;22022;2;177;78.0;120;80;1;1;0;0;1;0
+12597;22621;1;160;101.0;110;80;3;1;0;0;1;1
+12598;23551;1;150;54.0;110;70;1;2;0;0;1;1
+12599;14550;2;164;62.0;130;90;1;1;0;0;0;1
+12600;22745;1;159;54.0;140;90;2;1;0;0;0;1
+12602;19548;1;160;60.0;130;90;3;3;0;0;1;0
+12606;15411;1;170;67.0;120;80;1;1;0;0;1;0
+12607;22657;1;170;78.0;120;80;1;1;0;0;1;1
+12609;16921;1;163;64.0;110;60;1;1;0;0;1;0
+12610;21902;1;155;69.0;150;90;1;1;0;0;1;0
+12611;21805;2;172;90.0;100;80;1;1;0;0;1;0
+12612;16781;1;153;60.0;180;100;1;1;0;0;1;1
+12613;21935;2;157;61.0;130;60;2;1;0;0;1;0
+12614;18314;1;164;50.0;110;80;1;1;0;0;1;0
+12616;19120;1;150;66.0;110;60;2;2;0;0;1;0
+12617;22025;1;157;80.0;110;80;1;1;0;0;1;0
+12619;20257;1;154;53.0;120;80;1;1;0;0;1;1
+12620;20442;1;169;74.0;140;90;2;1;0;0;1;0
+12622;21255;2;176;83.0;120;80;1;3;1;0;1;1
+12624;23464;2;160;85.0;120;80;2;1;0;0;0;1
+12625;18935;2;178;74.0;120;80;1;1;0;0;0;1
+12626;14307;1;165;65.0;120;802;1;1;0;0;0;1
+12629;17567;1;167;84.0;120;80;1;1;0;0;1;1
+12630;19642;1;174;93.0;120;80;3;3;0;0;1;1
+12631;22445;2;167;67.0;130;80;3;1;0;0;1;1
+12632;15852;1;164;80.0;120;90;1;1;0;0;1;0
+12633;18307;1;160;86.0;130;79;1;1;0;0;0;0
+12637;23262;2;175;97.0;160;100;3;1;0;0;1;0
+12638;22722;2;169;78.0;125;80;1;1;0;0;0;0
+12639;19024;1;156;85.0;130;80;2;1;0;1;0;1
+12640;18912;1;156;61.0;150;80;1;1;0;0;1;1
+12643;23157;1;152;66.0;110;70;3;2;0;0;1;1
+12645;22661;1;160;87.0;140;90;3;3;0;0;1;1
+12646;17418;1;156;116.0;120;80;1;1;0;0;1;0
+12647;15356;1;165;65.0;120;80;1;1;0;0;1;0
+12649;22007;2;165;50.0;140;90;3;1;1;0;1;1
+12650;18234;2;174;91.0;140;90;1;1;0;0;0;1
+12651;18829;2;160;90.0;160;90;2;2;0;0;1;1
+12654;19743;1;158;82.0;140;80;1;1;0;0;1;1
+12657;19576;2;174;65.0;160;90;2;2;0;0;1;1
+12658;15848;1;167;91.0;130;80;2;1;1;1;1;0
+12659;23308;2;178;66.0;120;80;1;1;0;0;1;0
+12660;18159;1;156;69.0;140;90;1;1;0;0;0;0
+12663;16618;1;161;65.0;110;70;1;1;0;0;0;0
+12664;14664;2;161;79.0;110;80;1;1;0;0;1;0
+12665;16525;1;155;72.0;120;80;1;1;0;0;1;1
+12666;21878;1;150;68.0;120;80;3;3;0;0;1;1
+12668;21303;1;162;62.0;110;70;2;1;0;0;1;0
+12669;18445;1;162;90.0;110;70;1;3;1;0;0;0
+12670;19614;2;175;75.0;120;80;1;1;0;0;0;0
+12671;14516;1;152;77.0;110;70;1;1;0;0;1;0
+12672;19564;1;164;70.0;140;90;2;1;0;0;1;1
+12674;19900;1;167;78.0;100;60;3;3;0;0;1;0
+12675;22195;1;150;50.0;120;80;1;1;0;0;1;0
+12676;23539;2;174;67.0;120;80;1;3;1;0;1;1
+12678;21879;1;151;79.0;130;80;3;1;0;0;1;1
+12679;21441;1;159;73.0;140;90;1;1;0;0;1;1
+12681;16800;1;156;105.0;120;80;1;1;0;0;0;0
+12682;21102;2;170;72.0;150;90;1;1;0;0;0;1
+12683;20975;1;148;97.0;140;90;1;1;0;0;1;1
+12684;21241;1;164;95.0;180;120;3;3;0;0;0;1
+12685;20980;2;174;72.0;120;80;1;1;0;0;0;1
+12686;16528;1;156;87.0;160;80;2;2;0;0;1;1
+12687;22497;2;198;79.0;160;100;1;1;1;0;0;1
+12688;16177;2;176;77.0;140;90;1;1;0;0;1;1
+12689;17536;1;148;91.0;120;80;1;1;0;0;1;1
+12690;16742;2;165;75.0;120;80;1;1;0;0;0;0
+12691;16862;1;163;63.0;120;80;1;1;0;0;0;0
+12692;22743;2;188;120.0;160;1000;1;1;0;0;1;0
+12693;23586;1;160;82.0;120;80;1;1;0;0;1;0
+12695;21227;2;162;64.0;120;80;2;2;0;0;1;0
+12696;22825;2;170;80.0;120;80;1;1;0;0;1;0
+12697;17437;2;161;81.0;100;70;1;1;0;0;1;0
+12698;22660;2;174;80.0;140;90;1;1;0;0;1;1
+12699;19619;1;161;88.0;130;90;3;3;0;0;1;0
+12700;20539;2;174;56.0;120;70;1;1;1;0;1;0
+12702;23326;1;159;68.0;130;90;3;3;0;0;1;1
+12703;19898;1;165;63.0;150;95;1;1;0;0;1;1
+12707;18999;1;158;77.0;120;90;1;1;0;0;0;0
+12708;17556;2;167;78.0;110;70;1;1;0;0;1;1
+12709;22085;1;162;80.0;160;90;1;1;0;0;1;1
+12710;18870;1;164;75.0;1420;80;2;1;0;0;1;1
+12711;16279;2;170;72.0;120;80;1;1;0;0;1;0
+12713;18271;2;175;84.0;150;90;3;3;1;0;1;1
+12715;20293;1;151;70.0;100;70;1;1;0;0;0;1
+12717;19088;2;176;61.0;210;110;1;1;0;0;1;1
+12718;20488;1;169;130.0;130;80;2;1;0;0;1;1
+12719;17463;1;158;78.0;120;80;1;1;0;0;1;0
+12720;15343;1;165;65.0;130;80;1;1;0;0;1;1
+12721;15974;2;168;77.0;120;80;1;1;0;0;1;0
+12722;18082;1;156;68.0;120;80;1;1;0;0;1;0
+12723;18289;1;156;54.0;130;80;1;1;0;0;1;0
+12725;21775;2;164;56.0;110;80;3;1;0;0;1;0
+12726;22773;2;170;101.0;140;90;3;1;0;0;1;0
+12728;21050;1;162;65.0;120;80;1;1;0;0;1;1
+12729;20613;1;166;64.0;120;80;1;1;0;0;1;0
+12731;18431;1;164;59.0;115;70;1;1;0;0;1;0
+12732;19575;1;167;70.0;120;70;1;1;0;0;1;0
+12733;16221;1;170;76.0;110;80;3;3;0;0;1;0
+12734;17612;1;161;68.0;110;70;1;1;0;0;1;0
+12735;18054;1;158;78.0;120;80;2;2;0;0;1;0
+12737;21035;1;156;68.0;120;80;1;1;0;0;1;1
+12738;18891;1;170;92.0;120;70;1;1;0;0;1;0
+12739;17330;1;160;54.0;120;80;2;1;0;0;1;1
+12740;18254;2;182;78.0;120;80;1;2;0;0;1;0
+12741;17323;1;155;64.0;120;80;1;1;0;0;1;0
+12742;16189;2;170;61.0;120;70;2;1;0;0;0;0
+12746;22552;1;155;60.0;145;90;3;1;0;0;1;0
+12747;19865;1;165;65.0;120;80;1;1;0;0;1;0
+12751;15975;2;170;70.0;120;80;1;1;0;0;1;0
+12752;19770;2;164;89.0;120;80;2;2;1;0;1;1
+12753;23172;1;150;59.0;140;70;3;1;0;1;1;1
+12755;21760;1;160;65.0;150;100;2;1;0;0;1;1
+12756;17320;2;172;102.0;80;130;1;1;0;1;1;0
+12757;23279;1;156;76.0;150;100;3;1;1;0;0;1
+12758;16686;2;170;69.0;120;80;1;1;1;0;1;0
+12760;23425;1;161;71.0;140;90;3;1;0;0;1;1
+12761;23273;1;167;95.0;147;90;1;1;0;0;0;1
+12762;19696;1;169;69.0;140;90;2;1;0;0;1;0
+12763;21778;1;162;63.0;120;80;1;1;0;0;1;1
+12765;18389;1;157;70.0;130;90;1;1;0;0;1;1
+12767;21108;1;159;66.0;120;80;1;1;0;0;1;1
+12768;17503;1;164;81.0;130;90;1;1;0;0;1;1
+12769;19089;2;164;67.0;130;90;1;1;1;1;1;0
+12770;23407;1;163;79.0;130;90;1;1;0;0;1;1
+12772;19735;1;155;96.0;150;90;1;1;0;0;1;1
+12773;15972;1;170;74.0;140;70;1;1;0;0;1;1
+12774;20447;2;169;78.0;120;80;2;1;0;1;1;0
+12778;22477;2;163;103.0;120;80;1;1;0;0;1;1
+12779;20501;1;165;82.0;120;80;2;1;0;0;1;1
+12782;19786;1;169;86.0;140;100;1;1;0;0;1;1
+12783;21740;2;176;75.0;120;80;1;1;0;0;1;0
+12784;22027;1;167;81.0;120;80;1;1;0;0;0;0
+12785;20512;2;165;65.0;120;80;1;1;0;0;1;0
+12786;21147;1;172;70.0;120;80;2;2;0;0;1;1
+12787;18986;1;167;88.0;120;80;1;1;0;0;1;0
+12789;16883;2;175;73.0;120;80;1;1;0;0;1;0
+12790;19842;1;155;78.0;100;70;1;1;0;0;0;0
+12791;19892;2;165;69.0;130;80;1;1;0;0;1;1
+12793;14488;2;170;64.0;120;80;1;1;1;0;1;0
+12794;18379;1;162;60.0;120;80;1;1;0;0;1;0
+12796;20965;2;172;94.0;120;80;2;1;0;0;1;1
+12797;19482;1;165;71.0;120;80;2;2;0;0;0;1
+12798;21982;2;159;66.0;150;90;2;2;0;1;1;1
+12799;20398;1;166;146.0;175;85;1;1;0;0;0;1
+12802;17609;1;170;70.0;160;80;2;1;0;0;1;1
+12803;21057;1;157;69.0;120;80;1;1;0;0;1;0
+12804;18118;1;167;62.0;120;80;1;1;0;0;1;1
+12806;14867;1;185;70.0;120;70;1;1;0;0;1;0
+12807;16696;1;160;65.0;120;80;1;1;0;0;1;0
+12808;15418;2;162;78.0;120;80;1;1;0;0;1;0
+12809;21102;1;150;45.0;147;1000;1;1;0;0;1;0
+12810;18329;2;168;63.0;130;80;3;1;1;0;1;1
+12812;14564;1;165;98.0;140;90;1;1;0;0;1;1
+12813;21944;1;161;78.0;120;80;1;1;0;0;1;1
+12815;21906;1;160;82.0;160;100;2;1;0;0;1;1
+12816;14618;2;185;70.0;110;80;1;1;1;1;0;0
+12817;18021;2;170;69.0;130;87;3;1;0;0;1;1
+12818;23165;2;166;68.0;140;100;3;1;0;0;1;0
+12819;18296;1;164;65.0;150;80;3;1;0;0;0;1
+12820;16755;2;166;67.0;120;80;1;1;0;0;1;0
+12821;19121;1;165;76.0;120;80;1;1;0;0;1;0
+12822;18142;1;159;60.0;110;70;1;1;0;0;0;0
+12823;15846;1;169;78.0;110;80;2;1;0;0;1;0
+12826;20424;2;162;88.0;120;80;1;1;1;1;1;0
+12830;15089;1;163;59.0;90;60;1;2;0;0;1;0
+12832;19127;1;155;80.0;150;90;3;1;0;0;1;1
+12833;18109;1;167;70.0;100;75;2;1;1;0;1;0
+12834;17688;2;176;83.0;120;80;1;2;0;0;1;0
+12836;23410;1;175;74.0;120;80;1;1;0;0;1;1
+12837;18364;1;165;65.0;120;80;1;1;0;0;0;1
+12838;16130;1;164;93.0;130;90;1;1;0;0;1;1
+12840;20460;1;156;77.0;130;80;1;1;0;0;1;1
+12841;15125;2;169;67.0;120;70;1;1;0;0;1;0
+12842;21638;1;165;67.0;120;80;1;1;0;0;1;0
+12845;15240;1;163;82.0;120;80;1;1;0;0;1;0
+12847;20400;2;176;82.0;90;130;3;3;0;0;1;1
+12848;17270;1;158;64.0;150;70;3;1;0;0;1;1
+12849;20956;1;160;45.0;95;60;2;1;0;0;1;0
+12850;21863;1;151;63.0;120;80;3;1;0;0;1;1
+12851;20354;1;169;80.0;140;90;1;1;0;0;1;1
+12852;14429;1;153;52.0;120;80;1;1;0;0;1;0
+12853;17969;1;178;78.0;120;80;1;1;0;0;1;0
+12854;23101;1;152;60.0;110;80;3;2;0;0;1;1
+12855;18061;1;156;74.0;130;90;1;1;0;0;1;0
+12857;20899;1;158;81.0;130;90;3;2;0;0;1;1
+12862;21797;1;164;86.0;150;100;1;1;0;0;1;1
+12863;19681;1;167;75.0;120;80;1;1;0;0;1;0
+12864;14654;1;151;70.5;110;80;1;1;0;0;1;0
+12866;18854;1;165;75.0;120;80;1;1;0;0;1;1
+12867;21128;2;170;70.0;120;80;1;1;0;0;1;0
+12868;19891;2;175;95.0;170;120;3;1;1;0;1;1
+12871;20963;2;169;97.0;170;100;2;1;0;0;0;1
+12872;18061;1;161;73.0;90;60;1;1;0;0;0;0
+12875;19657;2;176;96.0;145;90;3;3;0;0;1;1
+12876;23414;1;155;84.0;140;90;3;3;0;0;0;1
+12878;16119;1;158;63.0;120;80;1;1;0;0;1;0
+12880;18349;1;152;57.0;100;80;1;1;0;0;1;0
+12883;17496;1;167;89.0;120;80;1;1;0;0;1;0
+12884;16752;1;165;59.0;130;80;1;1;0;0;1;0
+12885;14682;2;169;61.0;110;70;1;1;0;0;1;0
+12886;21005;1;170;65.0;120;80;1;1;0;0;1;0
+12887;17327;2;167;91.0;120;80;2;1;1;1;1;1
+12888;20344;2;179;89.0;110;70;1;1;1;0;0;0
+12889;21246;1;164;83.0;140;90;1;1;0;0;1;1
+12890;17482;1;155;65.0;110;70;1;1;0;0;1;0
+12891;18257;1;166;77.0;120;80;1;1;0;0;1;0
+12893;20440;1;170;69.0;110;70;1;1;0;0;1;0
+12894;17466;2;148;50.0;120;80;1;1;0;0;1;0
+12895;21129;1;159;72.0;120;80;1;1;0;0;1;0
+12896;22011;1;168;77.0;120;80;1;1;0;0;1;0
+12897;19790;2;171;72.0;120;80;1;1;0;0;1;0
+12899;22848;2;182;64.0;100;70;1;1;1;0;1;0
+12900;23094;1;157;80.0;130;69;1;1;0;0;1;1
+12901;18896;1;160;58.0;120;80;1;1;0;0;0;0
+12903;19537;1;162;70.0;150;100;3;1;0;0;1;0
+12904;19774;1;147;69.0;100;60;1;2;0;0;0;1
+12905;17633;2;174;77.0;140;70;1;3;0;0;0;1
+12906;18891;2;170;80.0;120;80;1;1;1;1;1;0
+12908;14553;2;180;106.0;140;90;1;2;1;1;0;1
+12909;18140;2;173;74.0;120;80;1;1;0;0;1;0
+12911;21832;2;168;70.0;140;100;1;1;1;0;1;1
+12912;19448;2;174;80.0;160;110;1;1;0;0;1;1
+12913;22553;1;160;81.0;120;80;3;3;0;0;1;1
+12915;21135;2;169;67.0;150;100;1;2;0;0;1;1
+12918;15862;2;170;90.0;140;90;1;1;0;0;0;1
+12919;21848;1;152;50.0;130;80;3;3;0;0;1;0
+12920;17406;2;171;87.0;160;90;1;2;0;0;0;0
+12923;14692;1;157;76.0;110;70;1;1;0;0;1;0
+12924;19064;2;157;61.0;110;80;1;1;0;0;1;1
+12925;16743;1;171;72.0;130;80;1;1;0;0;1;0
+12926;21278;2;174;112.0;140;100;1;1;0;0;1;0
+12927;20546;1;163;70.0;100;80;1;1;0;0;1;1
+12928;19708;1;169;72.0;120;80;2;2;0;0;1;0
+12929;17532;2;170;83.0;120;80;1;1;0;0;1;0
+12930;15889;2;181;95.0;150;1100;1;1;0;0;1;0
+12931;23326;2;162;60.0;150;90;1;1;0;1;1;0
+12932;20034;1;156;60.0;120;80;3;3;0;0;1;0
+12933;18943;1;162;80.0;125;80;2;1;0;0;1;0
+12934;17436;1;171;65.0;120;80;1;1;0;0;1;1
+12935;19004;1;162;118.0;150;90;3;1;0;0;1;0
+12936;18220;1;160;73.0;100;70;1;1;0;0;1;1
+12937;15833;1;167;77.0;110;70;1;1;0;0;1;0
+12938;19827;1;169;70.0;110;80;1;1;0;0;1;0
+12943;21288;2;171;103.0;130;90;1;1;0;0;1;1
+12945;18194;1;152;90.0;130;80;1;2;0;0;1;1
+12946;20315;1;170;74.0;120;80;1;1;0;0;0;1
+12947;21838;1;155;52.0;120;80;1;1;0;0;1;0
+12948;22561;2;181;85.0;140;90;3;1;0;0;1;0
+12950;21105;2;174;79.0;160;80;1;1;0;0;1;1
+12953;18477;1;165;54.0;90;60;3;3;0;0;1;0
+12959;16084;1;169;65.0;120;70;1;1;1;0;1;0
+12962;15324;2;175;70.0;120;80;1;1;0;0;1;0
+12963;18372;1;165;65.0;120;80;1;1;0;0;1;0
+12964;14781;1;170;68.0;115;80;1;1;0;0;0;0
+12966;23247;1;165;65.0;110;80;2;1;0;0;1;1
+12967;21224;2;173;106.0;140;100;1;1;0;0;1;1
+12968;21940;2;160;60.0;120;80;1;1;0;0;1;1
+12969;14689;2;169;68.0;110;70;1;1;0;0;0;1
+12972;15490;1;158;65.0;120;80;1;1;0;0;1;0
+12973;23076;2;167;80.0;120;80;1;1;0;0;0;1
+12974;21686;1;161;71.0;120;80;1;1;0;0;0;1
+12976;22554;1;154;60.0;120;80;1;1;0;0;1;1
+12977;21923;1;164;70.0;100;70;1;1;0;0;0;1
+12979;23285;1;164;100.0;130;90;1;1;1;0;1;0
+12980;21343;1;157;80.0;140;90;3;1;0;0;1;1
+12982;18874;2;170;74.0;130;100;3;1;0;0;1;1
+12983;19597;1;168;67.0;120;80;1;1;0;0;1;1
+12986;21253;1;159;59.0;140;90;1;1;0;0;1;0
+12987;21273;2;176;96.0;120;80;1;3;0;0;1;0
+12988;18352;1;159;122.0;125;80;1;2;0;0;1;1
+12989;14593;1;159;104.0;120;90;2;1;0;0;1;1
+12990;14689;1;161;87.0;120;80;2;1;0;0;0;0
+12991;21890;2;169;61.0;120;80;3;3;0;0;1;0
+12993;21164;1;161;72.0;120;80;1;1;0;0;1;1
+12994;15410;1;169;69.0;110;80;1;1;0;0;0;0
+12995;14888;1;152;71.0;130;80;3;3;0;0;1;0
+12996;18302;1;169;98.0;132;90;1;1;0;0;1;1
+12997;17997;2;170;70.0;130;90;1;1;0;0;1;0
+12998;23558;1;156;60.0;160;90;1;1;0;0;1;1
+12999;21663;1;159;67.0;140;90;3;3;0;0;1;0
+13000;18137;1;165;67.0;120;80;1;1;0;0;1;0
+13001;20332;1;159;58.0;90;60;1;1;0;0;1;0
+13003;15951;2;173;104.0;130;90;1;1;1;0;1;0
+13005;19550;2;170;83.0;130;90;1;1;0;0;1;1
+13007;22191;1;160;92.0;150;90;1;1;0;0;1;1
+13008;16601;2;175;69.0;140;79;2;1;1;1;1;0
+13010;18990;2;175;77.0;120;80;1;1;0;0;1;0
+13013;23572;1;150;74.0;150;100;2;1;0;0;1;1
+13015;19273;2;178;92.0;120;80;2;1;0;0;1;0
+13016;20160;1;164;100.0;130;90;1;1;0;0;1;1
+13017;20556;2;168;77.0;130;80;1;1;0;0;0;1
+13018;15839;1;168;65.0;110;70;1;1;0;0;1;0
+13019;19665;1;154;93.0;160;100;1;1;0;0;1;1
+13020;22079;1;150;58.0;100;70;2;1;0;0;1;0
+13021;22611;2;162;56.0;120;80;1;1;0;0;1;0
+13022;20374;1;156;128.0;160;100;1;2;0;0;1;1
+13023;20528;1;142;50.0;130;80;1;1;0;0;1;1
+13024;19131;1;165;63.0;120;80;1;1;0;0;1;0
+13025;19099;1;156;71.0;125;80;1;3;0;0;1;1
+13026;18378;2;167;68.0;120;70;1;1;0;0;1;0
+13029;18948;1;165;62.0;120;80;1;1;0;0;1;1
+13031;20399;1;161;55.0;100;70;1;2;0;0;0;0
+13032;22583;1;155;66.0;120;80;2;1;0;0;1;1
+13033;14599;1;162;62.0;110;70;1;1;0;0;1;0
+13034;16715;1;160;66.0;90;60;2;1;0;0;0;1
+13035;16013;2;178;88.0;120;80;2;2;0;0;1;0
+13036;23507;2;174;99.0;120;80;3;1;0;1;1;0
+13037;16536;1;150;49.0;160;100;1;1;0;0;0;1
+13038;17409;2;163;82.0;120;80;1;1;0;0;1;0
+13039;19703;1;165;65.0;120;80;1;1;0;0;1;0
+13040;16098;1;150;56.0;140;90;1;1;0;0;1;1
+13041;16875;2;173;71.0;120;80;1;1;0;0;1;0
+13044;18274;1;165;81.0;140;90;1;1;0;0;1;0
+13046;21294;1;161;78.0;140;90;1;2;0;0;1;1
+13048;21024;1;148;60.0;120;70;2;2;0;0;1;0
+13049;21272;2;172;86.0;160;105;1;1;0;0;1;1
+13050;23523;1;160;71.0;150;90;1;1;0;0;1;1
+13051;22022;1;159;75.0;120;80;1;1;0;0;1;1
+13052;21715;2;173;91.0;120;80;1;1;0;0;0;1
+13053;18970;2;164;102.0;130;90;1;1;0;0;1;0
+13054;21802;1;156;75.0;150;100;1;1;0;0;1;1
+13055;21645;1;162;106.0;140;90;2;1;0;0;0;1
+13058;17353;2;167;73.0;150;70;2;2;0;1;1;1
+13059;18108;1;167;72.0;120;80;2;1;0;0;1;0
+13060;18245;1;157;59.0;120;70;1;1;0;0;1;0
+13061;19610;1;159;64.0;150;90;1;1;0;0;0;1
+13062;19724;1;153;60.0;120;80;2;1;0;0;1;0
+13063;21200;1;163;74.0;120;80;1;1;0;0;1;1
+13064;16230;1;164;55.0;120;80;1;1;0;0;1;1
+13065;23408;1;169;85.0;150;1000;1;1;0;0;1;0
+13066;19078;1;165;71.0;120;8000;1;1;0;0;1;1
+13067;21335;1;168;78.0;120;70;1;1;0;0;1;1
+13068;22490;1;157;82.0;140;90;1;1;0;0;0;1
+13070;21967;1;157;85.0;120;90;1;1;0;0;1;1
+13071;16799;1;163;64.0;120;80;1;1;0;0;1;0
+13072;20351;1;147;92.0;180;110;1;1;0;0;1;0
+13073;21008;1;158;67.0;120;80;1;2;0;0;1;0
+13074;18837;1;178;89.0;120;80;1;1;0;0;1;1
+13076;15261;1;163;72.0;110;70;1;1;0;0;1;1
+13078;19867;1;158;83.0;120;80;1;1;0;0;1;0
+13080;20307;2;167;74.0;130;75;2;2;0;0;1;1
+13083;19056;1;157;70.0;140;90;1;1;0;0;0;1
+13084;14537;1;159;61.0;100;60;1;1;0;0;0;0
+13085;19825;1;170;63.0;120;90;1;1;0;0;1;0
+13086;16527;1;158;62.0;100;70;1;1;0;0;1;0
+13087;17455;1;169;68.0;120;80;1;1;0;0;0;0
+13088;19851;1;174;65.0;120;80;1;1;0;0;1;0
+13089;19093;1;168;90.0;140;80;1;1;0;0;1;1
+13090;21032;1;168;70.0;150;1000;1;1;0;0;0;1
+13091;16086;1;165;90.0;170;80;1;1;0;0;1;1
+13092;16023;2;164;60.0;110;70;1;1;0;0;1;0
+13094;20545;2;170;70.0;130;90;3;1;0;0;1;0
+13095;14645;1;168;79.0;120;80;1;1;0;0;1;1
+13097;14478;1;152;57.0;120;85;1;1;0;0;1;0
+13098;20545;1;161;82.0;160;100;1;1;0;0;1;1
+13099;22039;1;158;72.0;150;90;1;1;0;0;1;1
+13100;16888;2;168;89.0;140;90;1;1;0;0;1;1
+13102;23413;1;165;63.0;130;80;1;1;0;0;1;1
+13103;19670;2;177;72.0;140;80;3;1;0;0;1;0
+13104;16234;2;165;68.0;110;60;1;1;0;0;1;0
+13105;20539;1;152;71.0;120;80;1;1;0;0;1;1
+13106;17530;2;167;73.0;100;70;1;1;0;0;1;0
+13107;14765;1;165;60.0;110;70;2;1;0;0;1;0
+13108;16643;2;154;76.0;120;80;1;1;0;0;0;1
+13109;21926;1;167;95.0;160;90;1;1;0;0;0;1
+13110;21998;1;158;90.0;120;90;3;1;0;0;1;1
+13111;17553;2;175;84.0;140;90;1;1;0;0;1;0
+13113;22826;2;160;60.0;120;80;1;1;0;0;1;0
+13114;21194;1;164;60.0;105;70;2;1;0;0;1;0
+13115;23130;1;160;88.0;140;90;1;1;0;0;1;1
+13116;20236;2;176;93.0;146;68;1;2;1;0;1;1
+13117;16239;2;172;102.0;130;90;1;1;0;0;0;1
+13119;18263;1;154;94.0;120;80;1;1;0;0;0;1
+13120;22520;1;158;68.0;120;80;1;1;0;0;0;1
+13121;21142;2;169;80.0;130;90;1;1;0;0;1;1
+13122;19202;2;176;94.0;150;90;1;1;0;1;1;1
+13125;18466;1;166;100.0;110;70;2;2;0;0;1;1
+13126;18348;2;158;54.0;110;70;1;1;0;0;1;0
+13128;20351;1;171;73.0;150;90;1;1;0;0;1;1
+13130;18258;1;158;112.0;140;90;1;1;0;0;1;1
+13133;19041;2;167;85.0;120;80;1;1;0;0;1;1
+13134;21866;1;177;65.0;120;70;1;1;1;0;0;0
+13135;19611;1;158;84.0;140;80;1;3;0;0;1;1
+13136;19144;1;167;64.0;120;80;1;1;0;0;1;1
+13137;18937;2;169;66.0;120;80;1;1;0;0;1;0
+13138;15893;2;168;60.0;120;80;1;1;0;0;1;0
+13139;21162;1;160;60.0;120;80;1;1;0;0;1;1
+13141;19932;2;160;55.0;100;70;1;1;1;0;1;0
+13142;16772;1;160;65.0;130;90;2;2;0;0;0;0
+13144;18293;1;152;89.0;130;70;1;1;0;0;1;1
+13145;20248;2;183;89.0;140;80;2;1;0;0;1;1
+13147;16624;1;165;66.0;110;70;1;1;0;0;1;0
+13149;14827;1;160;96.0;110;80;1;1;0;0;0;0
+13150;21278;1;162;86.0;90;60;1;1;0;0;1;0
+13151;18152;2;182;76.0;120;80;1;1;0;0;1;1
+13153;20586;1;157;55.0;90;60;1;1;0;0;1;1
+13154;23227;2;170;77.0;130;80;2;1;0;0;1;0
+13155;21894;2;171;71.0;140;80;2;1;1;1;0;1
+13156;16747;2;178;67.0;120;80;1;1;0;0;1;0
+13157;16044;1;154;68.0;130;80;3;1;0;0;0;1
+13158;19069;2;163;61.0;120;70;1;1;0;0;0;0
+13160;19915;1;170;101.0;130;80;1;1;0;0;1;1
+13161;22002;2;162;73.0;140;80;1;1;0;0;1;1
+13163;18961;1;153;58.0;120;80;3;1;0;0;1;1
+13165;14474;2;172;55.0;120;80;1;1;0;0;0;0
+13166;21770;1;150;41.0;110;80;1;1;0;0;1;0
+13167;21443;1;160;78.0;120;70;1;1;0;0;0;0
+13168;21202;1;156;62.0;160;100;2;1;0;0;0;1
+13169;19583;1;169;74.0;120;80;1;1;0;0;0;1
+13170;19721;1;157;89.0;120;90;1;1;0;0;1;0
+13171;16824;2;154;65.0;120;80;1;1;0;0;1;0
+13174;19508;1;160;58.0;120;70;1;1;0;0;1;0
+13175;19771;1;160;62.0;120;80;1;1;0;0;1;0
+13176;22678;1;148;58.0;130;70;1;1;0;0;1;1
+13178;21038;1;150;56.0;120;80;1;1;0;0;1;0
+13179;15234;1;158;74.0;100;60;1;1;0;0;1;0
+13180;20477;2;157;63.0;190;80;3;1;0;0;1;1
+13183;20363;2;179;94.0;130;90;2;2;1;0;1;1
+13184;16801;2;171;99.0;100;60;1;1;0;0;1;0
+13186;19702;1;154;79.0;110;60;1;1;0;0;1;0
+13187;18227;1;156;78.0;120;80;1;1;0;0;1;0
+13189;18175;1;169;82.0;100;80;1;1;0;0;1;0
+13190;20639;1;155;84.0;120;80;1;1;0;0;1;1
+13191;19963;2;160;60.0;150;80;1;1;0;0;1;1
+13192;17288;2;170;78.0;120;80;1;2;1;1;1;0
+13194;19085;2;167;78.0;150;1000;3;1;1;0;1;1
+13196;17600;2;170;55.0;130;90;1;1;0;0;1;0
+13197;14428;2;180;76.0;120;80;1;1;1;1;1;0
+13198;18976;1;164;82.0;120;80;1;1;0;0;1;0
+13199;23166;2;180;73.0;110;80;1;1;0;0;0;1
+13200;22611;2;162;67.0;150;80;1;1;1;0;1;1
+13202;21926;1;147;45.0;100;70;1;1;0;0;1;0
+13204;18715;1;157;58.0;120;80;1;1;0;0;1;0
+13205;19140;1;159;64.0;120;80;1;1;0;0;1;1
+13207;21961;2;170;87.0;120;80;1;1;0;1;1;1
+13208;21879;2;174;80.0;130;85;1;1;0;0;1;1
+13209;20964;1;162;72.0;160;1000;1;1;0;0;1;1
+13210;20568;1;155;62.0;130;90;1;1;0;0;1;1
+13212;18231;1;165;110.0;110;80;1;1;0;0;1;0
+13213;20330;1;160;65.0;140;90;3;3;0;0;1;1
+13214;20617;2;167;79.0;160;80;2;2;0;0;0;1
+13216;16617;1;165;72.0;140;70;1;1;0;0;1;1
+13218;14385;2;173;73.0;110;80;1;1;0;0;0;0
+13219;23076;1;158;66.0;150;80;2;1;0;0;1;1
+13220;16147;2;170;78.0;120;80;1;1;1;0;1;0
+13221;21196;2;162;64.0;120;70;1;1;0;0;1;1
+13222;14591;2;163;80.0;130;90;1;2;0;0;1;0
+13223;23184;1;164;58.0;130;80;3;1;0;0;1;1
+13224;20955;1;160;72.0;130;80;3;1;0;0;1;1
+13227;14618;2;120;80.0;120;80;1;1;0;0;1;0
+13228;20498;2;161;71.0;13;70;1;1;0;0;0;1
+13229;20529;2;173;78.0;120;80;2;1;0;0;1;1
+13230;19015;2;170;67.0;120;80;1;1;0;0;1;1
+13231;21084;1;156;83.0;120;80;3;3;0;0;0;1
+13234;21853;2;177;90.0;160;100;1;1;0;0;1;1
+13235;18220;1;161;94.0;130;80;1;1;0;1;1;0
+13236;22048;1;160;102.0;130;70;1;1;0;0;0;1
+13237;18227;1;165;63.0;100;60;1;1;0;0;1;0
+13238;22044;1;171;75.0;120;80;1;1;0;0;1;0
+13241;18970;1;162;75.0;110;70;1;1;0;0;0;0
+13242;21621;1;145;61.0;150;100;3;3;0;0;1;1
+13244;19688;1;169;75.0;120;80;2;1;0;0;0;0
+13245;16631;1;168;62.0;110;80;1;1;0;0;1;1
+13246;19043;1;170;65.0;12;80;1;1;0;0;0;1
+13247;22587;1;159;90.0;143;98;1;1;0;0;1;1
+13248;21791;2;175;64.0;110;70;1;1;0;0;0;0
+13249;16701;1;165;84.0;120;80;1;1;0;0;1;0
+13250;22717;2;170;70.0;120;80;1;1;0;0;1;1
+13253;19871;2;171;85.0;120;80;1;1;0;0;1;0
+13254;18468;1;156;59.0;120;80;1;1;0;0;1;0
+13255;21700;1;150;75.0;128;87;1;1;0;0;1;1
+13258;20263;1;167;75.0;130;90;3;3;0;0;0;1
+13259;18262;1;168;94.0;120;80;3;3;0;0;1;1
+13261;21705;2;180;90.0;140;80;1;1;0;0;1;1
+13263;18228;2;162;62.0;110;70;1;1;0;0;1;0
+13264;18147;2;164;84.0;120;80;1;1;0;0;1;0
+13265;20567;2;170;85.0;120;80;1;1;1;1;1;1
+13266;20756;1;162;100.0;120;80;3;3;0;0;1;1
+13267;22707;1;175;75.0;150;1000;3;3;0;0;1;1
+13268;22610;2;158;75.0;130;80;1;1;0;0;1;1
+13269;19087;1;153;67.0;120;80;1;1;0;0;1;1
+13271;21817;1;153;103.0;140;90;3;3;0;1;1;1
+13272;21324;1;150;67.0;120;80;1;1;0;0;1;1
+13275;15389;2;165;65.0;120;80;1;1;0;0;1;1
+13276;19140;1;153;65.0;140;80;2;1;0;0;1;1
+13280;16826;1;158;70.0;110;70;1;1;0;0;1;0
+13282;18057;1;159;64.0;120;80;1;1;0;0;1;1
+13284;18978;1;165;98.0;150;90;3;3;0;0;1;1
+13286;16662;1;153;50.0;120;80;1;1;0;0;1;0
+13287;17492;1;168;75.0;120;80;1;1;0;0;0;0
+13290;19023;2;158;60.0;120;80;3;3;0;0;1;1
+13292;21270;1;160;68.0;120;80;2;2;0;0;0;0
+13293;23189;1;169;69.0;140;90;3;3;0;0;1;1
+13294;16674;1;164;68.0;120;80;1;1;0;0;1;1
+13295;22836;1;165;69.0;150;100;1;1;0;0;0;1
+13297;20919;2;160;77.0;140;90;3;1;0;0;1;1
+13298;18887;2;170;64.0;120;80;1;1;1;0;1;0
+13299;18307;1;160;60.0;100;60;2;2;0;0;1;0
+13300;21342;2;167;74.0;130;90;1;1;0;0;1;0
+13301;21171;1;170;68.0;120;80;2;1;0;0;0;0
+13302;19704;1;175;75.0;130;90;3;1;0;0;1;1
+13303;15985;1;163;90.0;120;80;1;1;0;0;0;0
+13304;19815;2;170;100.0;120;70;1;1;0;0;1;0
+13305;18291;1;168;52.0;120;80;1;1;0;0;1;1
+13306;21038;2;172;119.0;120;80;1;1;0;0;1;0
+13307;18170;1;160;100.0;120;80;1;1;0;0;1;1
+13311;21260;1;165;65.0;150;90;3;1;0;0;1;1
+13312;21795;1;168;64.0;120;80;1;1;0;0;1;0
+13313;14582;1;160;79.0;120;80;1;1;0;0;0;0
+13319;18236;1;162;62.0;110;70;1;1;0;0;1;0
+13320;17249;1;160;90.0;110;70;1;1;0;0;1;0
+13322;15106;2;182;78.0;120;80;1;1;0;0;1;1
+13324;18775;2;178;69.0;120;80;1;1;1;1;1;1
+13326;21965;1;157;62.0;140;80;2;1;0;0;1;1
+13327;15187;1;152;70.0;140;80;1;1;0;0;1;1
+13328;23228;1;156;69.0;140;80;3;1;0;0;1;1
+13329;22399;1;160;92.0;130;90;1;1;0;0;1;0
+13330;17463;1;170;62.0;120;80;1;1;0;0;0;0
+13332;21222;2;180;77.0;130;90;2;1;0;0;1;1
+13333;20973;2;177;119.0;130;80;2;1;1;1;0;1
+13335;23378;1;154;64.0;120;80;1;1;0;0;0;1
+13337;15335;1;170;75.0;110;60;1;1;0;0;0;0
+13339;23157;1;161;60.0;125;80;1;1;0;0;1;1
+13340;22802;2;158;62.0;130;90;1;1;1;0;1;1
+13341;18950;1;164;77.0;120;100;1;1;0;0;1;0
+13343;18766;2;178;79.0;100;80;1;1;0;0;0;0
+13345;18351;1;159;66.0;100;60;2;2;0;0;1;0
+13347;14350;2;170;86.0;130;80;2;1;0;0;1;0
+13348;19771;1;172;90.0;120;80;3;3;0;0;1;0
+13349;19107;2;160;72.0;120;80;1;1;0;0;0;0
+13350;15939;2;166;55.0;140;80;1;1;0;0;1;0
+13351;15539;1;168;79.0;120;80;1;1;0;0;1;0
+13352;23522;1;163;68.0;120;80;3;1;0;0;1;1
+13354;16845;2;166;80.0;130;90;1;1;1;1;1;1
+13355;15096;1;156;97.0;140;80;1;1;0;0;1;1
+13357;21222;1;150;62.0;120;90;2;1;0;0;1;1
+13358;21003;2;168;69.0;130;90;1;1;1;1;1;0
+13359;17514;2;167;65.0;140;90;1;1;0;0;1;1
+13360;22403;1;159;79.0;150;90;2;2;0;0;0;1
+13361;15206;1;172;65.0;110;70;1;1;0;0;1;0
+13363;23389;1;149;68.0;160;100;1;1;0;0;0;1
+13364;18949;2;166;66.0;120;80;1;1;0;0;0;0
+13365;21797;1;164;74.0;120;90;1;1;0;0;1;1
+13368;21872;1;175;70.0;120;70;1;1;0;0;1;0
+13369;21967;2;158;65.0;160;90;1;1;1;1;1;1
+13370;21147;1;155;60.0;130;80;3;3;0;0;1;0
+13372;23365;2;155;59.0;120;80;1;1;0;0;0;0
+13373;21229;1;167;89.0;120;80;1;1;0;0;1;0
+13375;14566;1;155;79.0;120;70;1;1;0;0;1;1
+13377;19185;1;167;66.0;120;80;1;1;0;0;1;0
+13378;21947;1;164;71.0;120;80;3;1;0;1;1;0
+13381;21055;2;165;80.0;140;90;2;2;0;0;1;1
+13383;17527;2;160;90.0;130;90;1;1;0;0;1;1
+13385;20413;2;169;73.0;130;80;1;1;1;1;1;0
+13386;18205;2;180;87.0;110;70;3;1;0;0;0;0
+13388;21750;2;175;80.0;120;70;1;1;0;0;1;1
+13390;19517;1;160;90.0;150;100;2;1;0;0;1;1
+13392;21112;1;167;79.0;120;80;1;1;0;1;1;1
+13394;22507;2;170;76.0;160;90;3;1;0;0;1;1
+13395;23371;1;160;94.0;150;90;2;2;0;0;0;1
+13396;19779;2;165;72.0;120;80;1;1;0;0;1;1
+13397;18764;1;165;85.0;110;70;2;1;0;0;1;0
+13399;15457;1;160;80.0;130;80;3;1;0;0;1;1
+13400;16294;2;180;100.0;120;80;1;1;0;0;0;0
+13401;22687;1;169;65.0;120;80;1;2;0;0;0;1
+13402;18932;2;171;93.0;130;90;1;1;0;0;1;1
+13403;14410;2;182;130.0;140;80;1;2;1;1;1;0
+13404;15236;1;155;63.0;100;70;1;1;0;0;1;0
+13406;15392;1;155;65.0;120;80;1;2;0;0;1;1
+13407;21322;1;165;70.0;120;80;1;1;0;0;1;1
+13408;19678;1;158;79.0;120;70;1;1;0;0;1;0
+13409;16698;1;164;59.0;110;70;1;1;0;0;1;0
+13411;14534;1;164;68.0;110;70;1;3;0;0;0;0
+13412;18902;1;156;67.0;120;80;1;1;0;0;1;1
+13413;20242;1;169;69.0;130;1000;1;1;0;0;1;1
+13416;19116;2;185;70.0;120;80;1;1;1;1;1;0
+13417;16001;1;158;108.0;130;80;2;1;0;0;0;1
+13418;19648;1;166;65.0;120;80;1;1;0;0;1;0
+13422;21877;1;163;79.0;110;70;1;1;0;0;0;1
+13423;16771;1;146;68.0;120;80;1;1;0;0;1;0
+13427;18320;1;168;65.0;110;90;1;1;0;0;1;0
+13428;21761;2;148;77.0;120;80;1;1;0;0;0;0
+13430;21737;1;158;67.0;120;80;1;1;0;0;1;1
+13431;22614;1;147;85.0;180;100;1;1;0;0;1;1
+13432;17579;1;164;60.0;140;90;2;1;0;0;1;1
+13433;20939;1;166;67.0;120;60;1;1;0;0;1;1
+13434;21998;2;158;85.0;120;80;1;1;0;0;0;1
+13436;17388;2;169;65.0;120;60;1;1;0;0;0;1
+13438;21995;2;167;72.0;110;80;1;1;0;1;1;0
+13441;18038;1;155;58.0;120;80;1;1;0;0;0;0
+13442;19020;2;173;80.0;120;80;1;1;0;0;1;0
+13443;22659;1;164;66.0;120;90;2;1;0;0;1;0
+13444;19900;1;157;79.0;120;80;1;1;0;0;1;1
+13445;18831;1;164;89.0;140;90;3;3;0;0;1;1
+13446;19830;1;159;65.0;155;91;1;1;0;0;1;1
+13447;19047;2;165;67.0;130;100;1;1;0;0;1;1
+13448;19762;1;152;42.0;120;80;1;1;0;0;1;1
+13449;19560;1;158;69.0;120;70;1;1;0;0;1;1
+13450;23216;2;169;63.0;130;80;3;1;0;0;1;1
+13451;17770;2;165;68.0;110;70;1;1;1;0;0;1
+13453;21115;1;153;75.0;120;80;1;1;0;0;0;0
+13454;20387;2;180;80.0;100;80;1;1;1;0;1;0
+13455;19206;1;161;67.0;120;80;1;1;0;0;1;0
+13456;18310;1;168;127.0;140;90;3;1;0;0;1;1
+13457;15784;1;165;71.0;110;80;2;1;0;0;0;1
+13458;16928;1;168;65.0;120;80;1;1;0;0;1;0
+13459;19634;1;175;71.0;110;80;1;1;0;0;1;0
+13460;22043;1;167;75.0;110;70;1;1;0;0;1;1
+13461;18130;1;162;64.0;120;80;2;1;0;0;1;0
+13462;18169;1;155;88.0;140;100;3;3;0;0;1;1
+13463;15189;1;148;66.0;180;1100;1;1;0;0;1;1
+13464;20746;1;160;60.0;110;80;3;3;0;0;1;1
+13465;17663;1;153;87.0;110;70;1;1;0;0;1;0
+13466;18969;1;156;84.0;140;90;3;1;0;0;0;0
+13467;21899;1;170;68.0;130;70;1;1;0;0;1;1
+13468;20310;1;150;63.0;110;70;1;1;0;0;1;0
+13469;22676;1;170;80.0;130;80;1;1;0;0;1;1
+13470;16103;2;172;71.0;80;120;1;1;0;0;1;0
+13471;17647;2;175;65.0;120;80;1;1;0;0;0;0
+13473;18842;1;160;83.0;100;70;2;1;0;0;1;0
+13474;18110;1;158;78.0;150;80;1;1;0;0;1;0
+13475;21831;1;158;53.0;120;80;2;1;0;0;1;0
+13477;19522;1;160;52.0;100;80;2;1;0;0;1;0
+13479;16165;1;164;80.0;140;90;1;1;0;0;0;0
+13480;18836;2;165;62.0;120;80;1;1;0;0;1;1
+13481;18812;1;163;83.0;155;100;1;1;0;0;1;1
+13483;21667;2;188;110.0;120;80;1;1;0;0;1;0
+13484;19650;2;175;76.0;130;90;1;1;0;0;1;0
+13486;23118;2;170;63.0;180;1000;3;1;0;0;1;1
+13487;21147;1;164;62.0;120;80;1;1;0;0;1;0
+13488;16589;1;166;69.0;90;60;1;1;0;0;1;0
+13489;23138;1;145;75.0;141;80;2;1;0;0;1;1
+13490;18769;1;162;64.0;140;80;2;1;0;0;1;1
+13492;22595;2;174;83.0;150;100;2;1;0;0;1;1
+13493;20322;1;160;80.0;120;80;1;1;0;0;1;1
+13494;18921;1;161;73.0;140;80;2;1;0;0;1;0
+13497;21348;2;158;58.0;110;70;1;1;0;0;1;0
+13499;18806;2;168;69.0;110;80;1;1;1;0;0;0
+13500;21807;2;172;88.0;130;80;1;1;0;0;0;1
+13501;18968;1;159;55.0;140;90;1;1;0;0;1;1
+13502;17502;1;158;92.0;100;70;1;1;0;0;1;0
+13503;22695;2;163;85.0;160;80;2;1;1;0;0;1
+13504;22357;2;173;87.0;130;80;3;3;0;0;1;1
+13505;22052;1;170;74.0;120;80;1;1;0;0;0;1
+13506;21923;2;178;72.0;140;90;1;1;1;0;1;1
+13507;22555;1;151;74.0;160;90;2;1;0;0;0;1
+13509;21223;1;178;87.0;150;90;1;1;0;0;1;1
+13510;19640;1;157;64.0;120;80;1;1;0;0;0;0
+13512;17291;1;178;87.0;160;100;1;1;0;0;1;1
+13514;21329;1;167;92.0;160;90;1;1;0;0;1;0
+13515;22443;1;158;64.0;90;60;1;1;0;0;1;0
+13516;18318;1;156;68.0;140;90;1;1;0;0;0;0
+13518;20958;2;172;40.0;140;90;1;2;0;0;1;1
+13519;21978;2;159;56.0;140;80;1;1;0;0;1;1
+13520;19647;1;156;60.0;130;70;3;1;0;0;1;1
+13521;14623;1;164;70.0;100;70;2;3;0;0;1;0
+13522;20369;1;145;56.0;110;70;1;1;0;0;1;1
+13523;14433;2;175;75.0;120;80;1;1;0;0;1;0
+13525;22431;1;173;89.0;130;80;2;1;0;0;0;1
+13526;14723;2;165;62.0;120;80;2;2;0;0;1;0
+13527;18114;1;163;62.0;120;70;1;1;0;0;1;0
+13528;19644;1;160;54.0;100;70;1;1;0;0;0;0
+13531;23086;1;165;87.0;125;80;1;1;0;0;1;0
+13532;18507;1;163;65.0;110;70;3;3;0;0;1;0
+13533;21289;2;170;80.0;140;90;3;3;1;0;1;1
+13534;20525;1;155;68.0;180;100;1;1;0;0;1;1
+13535;23530;1;160;52.0;160;110;1;1;0;0;1;0
+13536;18071;1;170;82.0;130;100;1;1;0;0;1;0
+13537;21246;1;167;65.0;120;80;1;1;0;0;1;0
+13538;19699;1;168;74.0;120;80;1;1;0;0;0;0
+13540;19657;1;160;93.0;150;90;1;1;0;0;1;1
+13541;23170;2;165;74.0;120;80;1;1;0;0;1;0
+13542;21201;1;166;80.0;120;80;1;1;0;0;1;0
+13543;20350;1;159;55.0;130;90;1;1;0;0;1;1
+13544;22366;1;163;90.0;130;90;3;1;1;1;1;1
+13545;20309;2;172;88.0;170;80;1;1;0;0;0;1
+13548;19897;2;166;70.0;120;80;1;1;0;0;0;0
+13549;14578;2;174;72.0;120;80;1;1;0;0;1;1
+13550;17467;2;160;83.0;130;90;1;1;0;0;1;1
+13551;21394;1;170;78.0;120;80;1;1;0;0;1;1
+13552;18820;1;172;82.0;160;100;1;1;0;0;1;1
+13553;16032;1;155;63.0;110;60;1;1;0;0;1;0
+13554;19176;1;160;58.0;120;80;1;1;0;0;1;0
+13555;16587;1;164;77.0;110;70;1;3;0;0;1;0
+13556;17464;2;170;69.0;120;80;1;3;1;1;0;1
+13558;19679;2;165;102.0;150;100;1;1;0;0;0;1
+13559;21312;1;160;62.0;120;80;1;1;0;0;1;0
+13560;22795;2;166;70.0;140;90;3;1;0;0;1;0
+13562;20973;1;150;52.0;140;90;1;1;0;0;1;1
+13564;21906;1;167;59.0;120;80;1;1;0;0;0;1
+13565;21000;1;166;70.0;140;90;1;1;0;0;1;1
+13566;23154;1;155;55.0;120;80;1;1;0;0;1;1
+13567;16011;1;169;74.0;130;90;1;1;0;0;1;1
+13569;16885;1;165;75.0;120;80;1;1;0;0;1;0
+13570;21179;1;159;108.0;155;87;3;3;0;1;1;1
+13571;18715;2;165;70.0;120;80;1;1;0;0;1;0
+13573;20953;2;163;102.0;110;70;2;2;0;0;1;0
+13574;23343;1;164;70.0;110;80;1;1;0;0;1;1
+13576;18197;1;161;90.0;170;80;1;1;0;0;1;0
+13578;18931;1;161;65.0;110;70;2;1;0;0;1;0
+13579;16784;1;160;84.0;120;80;1;1;1;0;1;0
+13581;22708;2;166;65.0;120;80;1;1;0;0;1;0
+13582;19593;1;165;82.0;120;80;1;1;0;0;1;1
+13583;15176;1;160;89.0;120;80;1;1;0;0;1;0
+13584;20762;1;167;75.0;125;75;2;1;0;0;0;0
+13587;20457;2;175;73.0;150;90;1;1;1;1;1;1
+13592;14785;2;180;80.0;110;80;1;1;1;0;1;0
+13593;15277;1;166;96.0;120;80;1;1;0;0;0;0
+13594;17454;2;165;68.0;120;80;1;2;1;0;1;0
+13595;23261;1;160;65.0;130;90;1;1;0;0;1;1
+13599;19543;2;169;79.0;120;80;1;1;0;0;1;1
+13600;21691;1;153;81.0;190;120;1;1;0;0;1;1
+13602;21972;1;170;70.0;140;90;3;1;0;0;1;1
+13603;15134;1;165;55.0;110;70;1;1;0;0;1;0
+13606;21242;1;164;51.0;160;90;1;1;0;0;1;1
+13607;20949;1;171;70.0;120;70;2;1;0;0;1;1
+13608;17999;2;166;76.0;130;80;1;1;0;0;1;1
+13609;22667;1;160;70.0;130;90;1;1;0;0;1;0
+13610;21169;1;166;85.0;120;80;1;1;0;0;0;1
+13612;19670;1;168;74.0;200;105;2;1;0;0;1;0
+13613;21819;1;156;70.0;120;80;1;1;0;0;1;1
+13615;20250;1;161;83.0;110;70;1;2;0;0;0;1
+13616;22659;1;155;87.0;701;110;1;1;0;0;1;1
+13617;20343;1;164;87.0;130;80;3;1;0;0;1;1
+13618;21733;1;156;76.0;130;80;2;1;0;0;1;0
+13620;18326;2;180;77.0;120;70;1;1;0;0;1;0
+13622;18267;1;160;68.0;110;60;1;1;0;0;1;0
+13623;17603;1;155;80.0;120;80;2;2;0;0;1;0
+13625;19912;1;167;108.0;180;100;3;1;0;1;1;0
+13627;22448;1;156;64.0;120;70;1;1;0;0;0;1
+13630;23228;1;160;69.0;120;80;3;1;0;0;1;0
+13631;18009;1;164;69.0;120;80;1;1;0;0;0;0
+13635;21041;2;161;94.0;120;80;1;1;0;0;1;1
+13636;16890;1;165;70.0;140;80;1;1;0;0;1;1
+13638;16171;1;168;79.0;120;79;1;1;0;0;1;0
+13639;16092;2;178;92.0;120;80;1;1;1;0;1;0
+13640;18926;1;159;74.0;130;90;1;1;0;0;1;0
+13644;21284;2;169;90.0;180;100;2;1;0;0;1;1
+13645;20652;2;176;108.0;110;80;3;1;1;1;1;1
+13647;16871;1;153;73.0;120;80;1;1;0;0;1;0
+13648;16752;1;160;80.0;110;70;1;1;0;0;1;0
+13649;21006;1;163;72.0;110;70;1;1;0;0;0;0
+13651;23391;1;150;76.0;150;90;1;1;0;0;1;1
+13653;19816;1;165;68.0;140;90;1;1;0;0;1;1
+13655;21640;1;166;71.0;140;80;1;1;0;1;1;1
+13656;20414;1;154;84.0;160;100;1;1;0;0;1;1
+13658;20624;2;173;70.0;120;80;1;1;0;0;1;0
+13659;18081;2;180;95.0;160;100;1;3;0;0;1;0
+13660;21710;1;163;78.0;140;90;1;1;0;0;1;1
+13663;21970;2;165;85.0;120;80;1;1;0;0;0;1
+13664;18251;1;156;49.0;110;60;1;1;0;1;1;0
+13665;19744;1;165;79.0;120;80;2;1;0;0;1;1
+13668;21992;1;157;59.0;140;80;2;2;0;0;1;1
+13670;15471;1;165;65.0;120;80;1;1;0;0;0;0
+13671;23053;1;160;83.0;130;100;2;1;0;0;1;0
+13674;19111;1;170;68.0;120;80;1;1;0;0;1;0
+13675;21281;1;163;76.0;130;80;1;1;1;0;1;0
+13676;20521;2;164;75.0;170;90;1;1;0;0;1;1
+13677;23110;1;154;67.0;130;80;3;1;0;0;0;1
+13678;19865;2;161;130.0;160;110;1;1;0;0;1;1
+13679;21045;1;153;62.0;110;70;1;1;0;0;0;0
+13680;18993;1;152;58.0;110;69;3;3;0;0;1;0
+13682;18266;1;176;86.0;90;60;1;1;0;0;1;0
+13684;19597;1;150;50.0;110;70;2;1;0;0;1;0
+13685;20986;2;167;65.0;100;70;1;1;0;0;1;1
+13686;20664;1;153;59.0;130;80;2;2;0;0;1;0
+13688;21081;2;180;80.0;150;90;1;1;0;0;1;1
+13689;22624;1;161;84.0;140;90;1;1;0;0;1;1
+13691;22482;2;120;68.0;150;1000;2;1;0;0;0;1
+13692;15583;1;165;65.0;120;80;1;1;0;0;1;0
+13693;15786;1;162;91.0;120;80;1;1;1;0;1;0
+13695;15295;1;153;91.0;150;100;1;2;0;0;1;1
+13696;19515;1;184;134.0;140;90;2;2;1;1;0;1
+13699;17034;1;168;70.0;150;100;1;1;0;0;1;0
+13700;21012;1;158;44.0;120;80;1;2;0;0;1;0
+13702;18072;1;166;75.0;150;90;2;2;0;0;1;1
+13703;22357;2;165;75.0;150;90;1;1;0;0;1;1
+13704;20528;1;165;67.0;120;80;1;1;0;0;1;0
+13706;21385;1;156;63.0;130;80;1;1;0;0;0;0
+13707;22371;2;170;74.0;107;70;1;1;0;0;1;0
+13708;17527;1;160;80.0;120;80;1;1;0;0;1;0
+13709;18762;1;160;58.0;120;80;1;1;0;0;1;0
+13710;22585;1;165;67.0;120;70;1;1;0;0;1;0
+13712;22757;1;166;56.0;120;80;1;1;0;0;1;0
+13713;19967;1;168;100.0;120;80;1;1;0;0;1;1
+13714;19815;1;157;86.0;100;80;1;1;0;0;1;0
+13715;21010;1;164;65.0;115;80;1;1;0;0;1;0
+13718;23331;1;169;65.0;120;70;1;1;0;0;1;1
+13721;15162;2;169;72.0;120;80;1;1;0;0;1;1
+13722;15127;1;163;88.0;110;70;2;2;0;0;0;1
+13723;21854;2;167;99.0;135;90;1;1;0;0;0;1
+13726;15971;1;180;83.0;120;80;2;1;1;0;1;0
+13728;17571;2;168;75.0;120;80;1;1;1;1;0;0
+13730;21112;1;163;64.0;140;85;1;1;0;0;0;1
+13731;20450;1;156;78.0;130;90;2;2;0;0;0;0
+13732;19530;1;163;72.0;120;80;1;1;0;0;0;1
+13733;15160;1;171;80.0;120;80;2;2;0;0;1;0
+13734;18980;2;178;78.0;120;60;1;1;0;0;0;0
+13735;17631;2;165;70.0;150;80;1;1;0;0;1;1
+13737;21313;1;166;80.0;120;80;1;1;0;0;0;1
+13738;22150;2;168;62.0;120;80;1;1;0;0;0;1
+13739;16821;2;171;69.0;120;80;1;1;0;0;0;1
+13740;22664;1;168;59.0;160;100;1;1;0;0;1;1
+13741;18206;2;170;70.0;120;80;1;1;0;0;1;1
+13743;17260;1;155;54.0;130;80;1;1;0;0;1;1
+13744;14816;1;165;65.0;120;80;1;1;0;0;1;0
+13745;15247;2;180;72.0;120;80;1;1;0;0;1;1
+13748;17624;2;178;66.0;140;80;2;2;0;0;1;1
+13750;23384;1;156;64.0;140;90;2;3;0;0;1;1
+13752;18153;1;162;112.0;120;80;1;1;0;0;1;0
+13754;17989;2;171;82.0;130;90;2;1;0;0;1;1
+13755;17436;1;156;68.0;120;80;1;1;0;1;1;0
+13756;16013;1;164;74.0;145;105;1;1;0;0;1;1
+13757;19076;2;167;76.0;140;80;1;1;0;0;1;1
+13758;16779;2;170;78.0;150;90;2;1;0;0;1;1
+13759;16872;1;167;87.0;120;70;1;1;0;0;1;0
+13760;17354;1;166;74.0;110;70;1;1;0;0;1;0
+13763;14572;2;167;65.0;120;80;1;1;1;0;1;0
+13764;19599;1;155;82.0;150;100;1;1;0;0;0;1
+13765;19811;1;164;78.0;140;90;3;1;0;0;1;1
+13766;20423;1;152;65.0;130;80;3;3;0;0;1;1
+13767;20467;1;165;59.0;140;90;1;1;0;0;0;1
+13768;18173;1;165;77.0;120;80;1;1;0;0;1;1
+13769;14739;1;163;73.0;100;70;1;1;0;0;1;0
+13771;22767;1;177;75.0;160;80;1;1;0;0;1;1
+13773;18276;2;174;77.0;120;80;1;1;0;0;1;1
+13774;22754;2;168;71.0;200;100;1;1;1;0;0;1
+13775;19125;2;170;52.0;150;100;3;1;1;1;1;0
+13776;14657;2;170;68.0;110;80;2;1;0;0;1;0
+13777;18467;1;146;45.0;90;70;1;1;0;0;1;0
+13778;19752;1;168;70.0;120;80;1;1;0;0;1;1
+13779;20400;2;172;71.0;140;110;3;2;1;1;1;1
+13781;22609;1;169;69.0;120;80;1;1;0;0;1;0
+13783;19100;1;175;78.0;120;80;1;1;0;0;1;0
+13785;18242;1;165;65.0;120;79;2;2;0;0;0;0
+13787;14481;1;156;89.0;140;90;2;1;0;0;1;1
+13789;15894;1;169;85.0;120;80;1;1;0;0;0;1
+13791;17635;2;156;61.0;120;70;1;1;1;0;1;0
+13793;16815;1;159;58.0;110;70;1;1;0;0;1;0
+13795;20336;2;165;58.0;150;90;1;1;0;0;1;1
+13798;20320;1;158;53.0;110;80;1;1;0;0;1;0
+13799;15361;1;160;68.0;120;80;1;1;0;1;1;0
+13801;22024;1;168;65.0;120;80;1;1;0;0;1;1
+13802;22456;1;154;64.0;150;100;2;1;0;0;1;1
+13803;19682;2;165;70.0;110;80;1;1;0;0;1;0
+13804;15274;1;178;105.0;120;80;1;1;0;0;1;0
+13805;22524;2;168;80.0;120;90;1;1;0;0;1;1
+13806;19562;1;170;80.0;130;90;1;1;0;0;1;0
+13807;21148;2;169;80.0;120;80;1;1;0;0;1;0
+13808;21091;1;156;68.0;120;80;1;1;0;0;1;0
+13811;20963;1;152;63.0;130;90;2;1;0;0;0;0
+13813;18837;1;152;57.0;120;75;2;1;0;0;0;0
+13816;19668;1;151;64.0;160;100;1;1;0;0;1;1
+13818;21396;1;157;70.0;110;80;1;1;0;0;0;0
+13822;21879;1;152;67.0;130;90;3;1;0;0;1;1
+13823;15935;1;173;70.0;120;70;1;1;0;0;1;1
+13824;17974;1;154;66.0;120;80;1;1;0;0;1;1
+13826;18959;1;168;86.0;130;80;1;1;0;0;1;1
+13827;21225;2;176;84.0;150;100;1;1;1;1;1;1
+13828;21361;1;169;103.0;160;1000;3;1;0;0;1;1
+13829;16756;1;153;58.0;110;70;1;1;0;0;1;0
+13830;21228;1;158;67.0;110;70;1;1;0;0;1;0
+13831;14594;1;166;69.0;120;80;1;1;0;0;1;0
+13832;18316;2;165;88.0;120;80;1;2;0;0;1;1
+13833;19047;2;166;63.0;120;80;1;1;0;0;1;0
+13834;23269;2;170;106.0;140;90;1;1;0;1;0;0
+13835;16011;2;170;89.0;120;80;1;3;0;0;1;0
+13837;21157;1;160;100.0;140;90;1;1;0;0;1;1
+13838;21185;1;157;76.0;130;80;1;1;0;0;0;0
+13839;18261;1;158;56.0;150;90;1;1;0;0;1;0
+13841;19690;2;163;55.0;90;60;1;1;0;0;1;0
+13842;16769;1;164;105.0;140;90;1;1;0;0;1;1
+13843;19858;2;167;72.0;140;80;1;1;0;0;1;0
+13844;20939;1;160;85.0;120;80;1;1;0;0;0;0
+13847;20362;1;148;68.0;120;80;1;1;0;0;1;0
+13848;15406;1;160;63.0;110;70;1;1;0;0;0;0
+13849;16846;2;179;74.0;110;80;1;1;0;0;1;0
+13850;21311;2;170;75.0;120;80;1;1;0;0;1;1
+13851;17519;1;156;75.0;110;70;1;1;0;0;1;0
+13852;19728;2;162;65.0;120;60;3;1;0;0;1;0
+13853;17375;1;154;83.0;120;80;1;1;0;0;1;0
+13854;18201;1;169;59.0;120;80;1;1;0;0;1;0
+13857;21976;2;168;71.0;120;80;3;3;0;0;1;1
+13858;18870;1;154;65.0;110;70;1;1;0;0;1;0
+13859;21328;1;156;55.0;120;80;1;1;0;0;0;1
+13860;20416;1;168;78.0;120;70;1;1;0;0;1;0
+13861;19842;1;163;66.0;150;80;1;1;0;0;1;1
+13863;18356;1;168;72.0;125;80;1;1;0;0;1;0
+13864;18267;1;165;80.0;160;80;1;1;0;0;1;0
+13866;21223;1;158;54.0;110;80;1;1;0;0;1;1
+13868;22404;1;154;60.0;130;80;2;1;0;0;1;1
+13869;18415;2;178;75.0;120;80;1;1;0;0;1;1
+13874;16015;2;167;112.0;150;1000;1;1;0;0;0;1
+13876;19702;2;167;92.0;110;60;1;1;1;0;1;1
+13877;19516;1;157;73.0;120;80;1;1;0;0;1;0
+13878;17432;2;169;84.0;120;80;1;1;0;0;1;1
+13879;20419;1;154;55.0;145;90;2;1;0;0;1;1
+13880;21877;2;173;75.0;140;90;1;1;1;1;1;1
+13883;20383;1;152;56.0;150;95;2;1;0;0;1;1
+13884;16792;2;158;69.0;120;80;1;1;0;0;1;0
+13885;22005;1;167;100.0;15;90;1;1;0;0;1;1
+13887;22685;1;159;84.0;120;80;3;3;0;0;1;1
+13889;20552;2;178;88.0;120;80;1;1;0;0;1;1
+13890;15915;1;169;67.0;120;80;1;1;0;0;1;0
+13891;18233;1;170;80.0;130;80;1;1;0;0;1;1
+13892;14814;2;165;60.0;120;80;1;1;0;0;1;0
+13893;22629;1;151;65.0;120;80;1;1;0;0;1;1
+13894;21242;2;158;61.0;110;70;1;1;0;0;0;0
+13895;20494;2;169;63.0;120;80;1;1;0;0;1;0
+13897;14456;1;161;65.0;120;70;1;1;0;0;1;0
+13898;17561;1;158;83.0;120;70;3;1;0;0;1;1
+13899;21323;1;175;80.0;140;90;1;1;0;0;1;1
+13900;16844;1;160;60.0;110;70;1;1;0;0;1;0
+13902;15392;2;151;70.0;120;80;1;1;0;0;1;0
+13903;21872;2;170;91.0;130;90;3;1;0;0;0;1
+13904;21121;2;163;75.0;140;90;1;1;0;0;1;1
+13905;20994;2;170;92.0;120;80;1;2;0;0;0;1
+13907;18295;1;174;69.0;120;80;1;1;0;0;1;0
+13910;20374;1;154;65.0;140;100;1;1;0;0;0;1
+13911;15135;2;165;86.0;150;100;1;2;0;0;1;1
+13912;16075;2;162;52.0;100;60;1;1;0;0;1;0
+13914;18977;1;154;80.0;170;100;1;1;0;0;1;1
+13915;18555;1;166;71.0;130;70;3;3;0;0;1;1
+13918;18473;2;176;80.0;140;80;1;3;0;1;1;1
+13919;22683;1;168;78.0;140;80;1;1;0;0;1;1
+13920;16529;1;167;74.0;160;100;1;1;0;0;0;1
+13921;18304;1;170;70.0;120;70;1;1;0;0;0;0
+13922;21724;1;162;65.0;140;80;1;1;0;0;1;1
+13924;20592;1;165;60.0;180;80;1;1;0;0;1;1
+13925;20350;1;147;52.0;120;80;1;1;0;0;1;1
+13927;18779;2;170;83.0;140;80;3;1;0;0;1;1
+13929;20365;2;174;80.0;150;100;1;1;0;0;1;1
+13930;21176;1;156;64.0;120;80;2;2;0;0;1;0
+13931;18942;1;167;88.0;140;90;1;1;0;0;1;0
+13933;19539;2;168;59.0;140;90;1;1;0;0;1;1
+13935;14415;2;170;68.0;120;80;1;1;0;0;0;0
+13937;14396;2;165;62.0;110;80;1;1;0;0;1;0
+13938;20400;1;159;69.0;120;80;1;1;0;0;1;0
+13939;21170;1;164;85.0;135;80;2;2;0;0;1;1
+13940;18173;1;151;81.0;90;70;1;3;0;0;0;0
+13941;19083;1;156;71.0;120;80;1;1;0;1;0;0
+13942;22769;2;130;90.0;140;90;1;1;0;0;1;1
+13943;21802;1;166;125.0;120;8;3;1;0;0;1;1
+13946;19536;1;170;80.0;120;80;1;1;0;0;1;1
+13947;19478;1;160;80.0;110;70;1;1;0;0;1;1
+13950;14609;2;173;88.0;100;80;1;1;1;0;1;1
+13951;21622;1;165;65.0;120;82;1;1;0;0;1;0
+13952;18326;1;162;98.0;120;80;1;1;0;0;1;1
+13955;15097;2;178;82.0;110;80;1;1;0;0;1;0
+13956;15851;2;192;101.0;140;90;1;1;0;0;1;1
+13958;16862;1;162;86.0;150;80;3;1;0;0;1;1
+13960;21991;1;160;92.0;130;90;3;1;0;0;1;1
+13961;23666;2;165;70.0;120;80;1;1;0;0;0;0
+13962;20442;1;156;59.0;125;85;1;1;0;0;1;1
+13963;18362;2;160;60.0;120;80;1;1;0;0;1;0
+13964;18056;1;164;70.0;150;100;1;1;0;0;1;1
+13965;21172;1;169;87.0;120;80;1;1;0;0;1;1
+13966;17421;1;162;63.0;110;60;1;1;0;0;1;1
+13967;21845;1;149;68.0;120;80;1;1;0;0;1;0
+13969;21092;1;152;58.0;150;1000;1;1;0;0;0;1
+13970;16724;1;147;56.0;140;90;1;1;0;0;1;1
+13971;20337;1;165;80.0;120;80;1;1;0;0;1;0
+13973;16701;2;176;91.0;130;90;1;1;0;0;1;1
+13974;18277;2;168;58.0;110;80;1;1;0;0;1;0
+13975;19685;1;149;56.0;140;90;3;3;0;0;1;1
+13976;22112;2;162;66.0;120;85;1;1;0;0;1;0
+13977;21242;1;158;78.0;130;100;3;1;0;0;0;1
+13979;15961;2;177;106.0;160;100;1;1;0;0;1;1
+13981;15991;1;164;98.0;130;90;1;1;0;0;0;1
+13982;22510;2;163;63.0;150;100;3;1;0;0;0;1
+13983;22486;2;157;60.0;110;80;1;1;0;0;1;0
+13985;19840;2;175;80.0;130;80;1;1;0;1;0;0
+13988;19663;1;169;65.0;120;80;1;1;0;0;1;1
+13992;18136;1;165;61.0;110;70;1;1;0;0;1;1
+13993;21248;2;172;71.0;120;80;1;1;0;0;1;0
+13995;19139;1;168;69.0;120;80;1;1;0;0;1;0
+13998;21319;2;176;82.0;120;80;1;1;1;1;1;0
+13999;18896;2;180;91.0;130;80;1;1;1;1;1;0
+14001;19724;2;172;75.0;120;80;1;1;0;0;0;0
+14002;19694;2;170;72.0;120;90;1;1;0;0;1;1
+14003;20631;2;165;78.0;120;80;1;1;0;0;1;0
+14004;16120;2;170;67.0;120;80;1;1;1;1;1;0
+14006;15987;1;152;53.0;90;160;1;1;0;1;1;1
+14008;16725;1;157;54.0;110;70;2;1;0;0;1;1
+14009;15148;1;156;46.0;100;70;1;1;0;0;1;0
+14013;18897;1;158;80.0;160;100;2;1;1;0;0;1
+14014;15956;1;159;77.0;110;70;1;1;0;0;1;0
+14015;22602;2;167;73.0;130;90;3;1;0;0;1;0
+14016;16984;2;161;62.0;120;80;1;1;0;0;1;0
+14017;22895;1;161;43.0;120;90;2;1;0;0;1;1
+14018;21738;1;156;62.0;120;80;1;1;0;0;1;1
+14019;21962;2;160;60.0;160;100;1;1;0;0;1;1
+14020;20341;2;185;100.0;120;80;1;1;0;1;1;0
+14022;21343;1;155;58.0;130;80;1;1;0;0;0;1
+14023;15807;1;160;78.0;120;80;1;1;0;0;1;0
+14024;19102;2;168;80.0;130;80;1;1;0;0;0;0
+14026;20495;1;165;71.0;120;80;1;1;0;0;1;1
+14027;21947;1;169;72.0;130;80;1;1;0;0;0;0
+14028;21573;1;162;89.0;140;90;3;3;0;0;1;1
+14029;16189;2;170;96.0;120;80;1;1;1;0;1;0
+14030;21070;1;146;78.0;160;100;1;1;0;0;1;1
+14031;18022;1;167;65.0;150;90;1;1;0;0;1;1
+14032;19726;2;169;89.0;130;70;1;1;0;0;0;1
+14033;18161;1;154;83.0;130;90;3;3;0;0;1;0
+14035;23270;1;165;56.0;110;80;2;1;0;0;1;0
+14037;15602;2;180;80.0;120;80;1;1;0;0;0;0
+14040;16076;2;180;75.0;120;80;1;1;0;0;1;0
+14041;21350;1;158;71.0;120;80;1;1;0;0;0;1
+14042;19813;1;171;80.0;140;90;1;1;0;0;1;1
+14044;23121;1;165;67.0;120;80;1;1;0;0;1;0
+14045;16751;1;170;75.0;140;90;1;2;0;0;0;1
+14046;16846;2;174;60.0;120;70;1;1;1;1;1;0
+14047;16581;1;162;99.0;110;70;1;1;0;0;1;0
+14048;22541;1;158;63.0;140;100;2;3;0;0;1;1
+14049;21023;1;151;104.0;140;80;1;1;0;0;0;1
+14050;17426;2;176;67.0;100;70;1;1;1;0;1;0
+14054;23126;1;168;71.0;115;70;2;1;0;0;1;1
+14056;22590;1;160;60.0;150;90;3;1;0;0;1;1
+14057;16749;1;160;52.0;110;70;1;1;0;0;1;0
+14059;21003;2;172;74.0;150;100;3;1;0;0;1;1
+14060;21968;1;160;60.0;120;80;1;1;0;0;1;0
+14061;16633;2;170;68.0;120;70;1;1;0;0;1;1
+14062;15425;1;161;77.0;180;70;1;1;0;0;1;1
+14063;22664;1;160;60.0;140;90;2;1;0;0;0;1
+14065;22488;2;174;70.0;150;100;1;1;0;0;1;1
+14068;19055;1;152;59.0;120;80;1;1;0;0;1;0
+14069;21222;1;160;50.0;170;90;3;3;0;0;1;1
+14070;19556;1;165;66.0;120;80;1;1;0;0;1;0
+14072;16141;1;158;56.0;140;90;1;1;0;0;1;1
+14073;18892;2;164;65.0;120;80;1;1;0;0;1;1
+14076;22076;2;170;76.0;150;90;1;1;1;0;1;1
+14077;17318;1;175;113.0;140;80;1;1;1;0;1;0
+14078;18366;2;174;65.0;120;80;1;1;0;0;1;0
+14079;15931;2;166;64.0;160;110;2;1;0;0;1;1
+14081;20449;1;164;58.0;140;80;1;1;0;0;1;1
+14082;15508;1;176;65.0;120;80;1;1;0;0;1;0
+14083;20438;1;153;60.0;130;80;3;1;0;0;1;1
+14084;16274;1;174;70.0;140;80;1;1;0;0;1;1
+14085;21161;1;156;60.0;140;80;1;1;1;0;1;1
+14086;15370;1;162;70.0;120;80;1;1;0;0;0;1
+14088;19649;1;166;80.0;125;80;1;1;0;0;1;1
+14090;20919;1;163;72.0;130;80;2;1;0;0;1;0
+14091;14753;2;181;69.0;110;70;1;1;1;0;0;0
+14092;16075;1;157;61.0;130;90;1;1;0;0;1;1
+14094;20554;1;158;62.0;100;70;1;1;0;0;1;0
+14097;18758;2;164;55.0;120;80;1;1;1;1;1;0
+14098;20219;2;177;82.0;170;80;1;1;0;0;0;1
+14101;14644;2;170;87.0;100;70;1;1;0;1;1;0
+14102;22555;1;158;88.0;130;90;1;1;0;0;1;0
+14103;15432;2;173;70.0;120;80;1;1;0;0;1;0
+14104;22427;1;157;83.0;120;80;1;3;0;0;1;1
+14105;23277;1;159;76.0;160;100;1;1;0;0;1;1
+14106;21346;2;158;63.0;120;80;1;1;1;0;1;0
+14107;21244;1;164;82.0;130;90;1;1;0;1;1;0
+14108;16072;1;145;40.0;120;80;1;1;0;0;1;0
+14109;16177;1;164;80.0;160;100;1;1;0;0;1;1
+14110;16178;1;168;85.0;120;80;1;1;1;0;1;0
+14111;20731;1;165;60.0;120;80;1;1;0;0;0;0
+14112;22398;2;170;68.0;90;60;2;1;0;0;1;0
+14114;19590;2;173;73.0;140;90;1;1;0;0;1;1
+14115;22620;1;161;115.0;140;80;2;1;0;0;0;1
+14117;21882;1;158;72.0;150;80;2;2;0;0;1;1
+14119;19595;1;148;68.0;85;95;1;1;0;0;1;0
+14120;16808;1;164;80.0;120;80;1;1;0;0;1;0
+14121;16949;2;162;70.0;130;80;1;1;0;0;1;1
+14122;16141;2;176;75.0;120;80;2;1;0;0;1;1
+14124;23417;1;164;96.0;170;110;1;2;0;0;0;1
+14125;18996;2;168;74.0;100;69;1;1;0;0;0;1
+14126;22583;1;152;57.0;140;90;3;1;0;0;1;1
+14127;17303;1;165;67.0;120;80;1;1;0;0;1;0
+14128;19919;1;170;79.0;120;80;1;1;0;0;1;0
+14129;15414;1;160;72.0;100;80;1;1;0;0;1;1
+14130;15841;1;160;60.0;115;80;1;1;0;0;1;1
+14131;15485;1;171;101.0;120;80;2;1;0;0;0;0
+14132;17676;1;168;80.0;160;90;1;1;0;0;1;1
+14133;21304;2;168;72.0;140;80;2;1;0;0;1;1
+14135;17781;1;165;69.0;140;90;1;3;0;0;1;1
+14136;22010;1;175;78.0;120;80;1;1;0;0;1;0
+14137;14739;2;175;76.0;120;80;1;1;0;0;1;0
+14138;23265;2;168;96.0;140;90;1;2;0;0;1;1
+14141;21190;1;155;77.0;140;100;2;1;0;0;1;1
+14142;16843;1;169;60.0;120;80;1;1;0;1;1;0
+14143;14655;1;159;99.0;160;100;3;1;0;0;1;1
+14144;23208;1;159;106.0;120;80;3;1;0;0;0;1
+14145;19761;2;170;94.0;160;90;1;1;1;0;1;1
+14146;22794;1;153;50.0;120;70;1;1;0;0;1;0
+14147;20488;1;161;83.0;100;70;3;3;1;0;1;1
+14148;17556;2;182;100.0;120;80;1;1;0;0;0;0
+14151;22523;1;152;75.0;120;90;1;1;0;0;1;1
+14153;21752;2;176;76.0;160;90;2;2;1;0;1;1
+14154;21834;1;160;62.0;120;80;1;1;0;0;0;0
+14157;14444;1;159;62.0;120;80;1;1;0;0;1;0
+14159;20596;1;154;78.0;140;90;1;1;0;0;1;1
+14161;22066;1;164;92.0;140;80;1;1;0;0;0;1
+14162;19459;1;162;92.0;120;80;1;3;0;0;1;0
+14163;19779;1;162;66.0;120;80;1;1;0;0;1;0
+14165;21025;2;172;99.0;120;80;3;3;0;0;1;0
+14167;16772;1;157;69.0;110;80;1;1;0;0;1;0
+14168;23041;1;155;64.0;130;90;3;1;0;0;1;1
+14169;14842;2;168;58.0;95;60;1;1;0;0;1;0
+14170;18131;1;161;63.0;110;70;1;1;0;0;1;0
+14171;15334;1;155;42.0;100;60;1;1;0;0;1;0
+14172;22429;2;146;46.0;120;80;2;1;0;0;1;0
+14174;18307;1;153;76.0;150;90;1;1;0;0;1;1
+14175;22648;1;150;65.0;90;60;1;1;0;0;1;0
+14176;18837;1;165;71.0;120;80;1;1;0;0;1;1
+14177;20407;2;168;76.0;180;1000;2;1;0;0;1;1
+14178;21783;2;180;78.0;120;70;1;1;0;0;0;1
+14179;17430;2;182;75.0;130;80;1;3;0;0;1;0
+14180;18088;2;160;60.0;120;80;1;1;0;0;1;0
+14181;14750;2;173;66.0;110;70;1;1;0;0;0;0
+14182;14666;2;162;68.0;110;80;1;1;0;0;0;0
+14183;17324;1;152;60.0;140;90;1;1;0;0;1;1
+14184;17441;2;170;73.0;120;80;1;1;0;0;1;0
+14185;15988;2;171;70.0;120;80;1;1;0;0;1;0
+14186;19713;1;164;92.0;180;90;1;1;0;0;1;1
+14187;21833;1;162;62.0;140;70;2;1;0;0;1;1
+14188;20548;1;164;75.0;120;80;3;3;0;0;1;1
+14189;18195;1;166;84.0;100;60;1;1;0;0;1;0
+14190;23244;1;160;70.0;130;90;1;1;0;0;1;0
+14191;21160;2;174;80.0;160;100;3;1;1;0;1;1
+14194;23111;1;161;66.0;90;60;1;1;0;0;1;0
+14195;22623;2;164;81.0;130;80;1;1;0;0;1;1
+14196;18543;1;157;57.0;140;80;2;1;0;0;1;1
+14197;21972;2;165;90.0;130;80;1;1;0;0;1;1
+14198;19654;1;157;70.0;130;80;1;1;0;0;1;0
+14199;19748;1;160;60.0;140;80;1;1;0;0;1;1
+14201;16014;2;184;138.0;120;80;1;1;0;0;1;1
+14203;22097;1;160;78.0;140;80;3;1;0;0;0;1
+14204;19176;1;178;79.0;120;80;1;1;0;0;0;0
+14206;17425;1;159;82.0;120;80;2;1;0;0;1;0
+14207;19756;1;152;74.0;130;80;1;1;0;0;1;0
+14208;17591;2;173;102.0;120;80;1;2;1;0;1;1
+14209;18852;1;170;101.0;150;80;1;1;0;0;1;1
+14212;19657;1;155;49.0;132;80;1;1;0;0;1;0
+14214;19142;2;171;79.0;120;80;1;1;0;0;1;1
+14218;17317;1;166;88.0;150;100;1;2;0;0;1;1
+14219;18918;1;160;75.0;120;80;1;1;0;0;1;0
+14221;19513;1;167;105.0;130;90;3;3;0;0;1;1
+14223;19055;1;175;87.0;140;90;1;1;0;0;0;1
+14224;19070;1;164;85.0;130;70;1;1;0;0;1;0
+14225;20328;1;160;61.0;130;80;1;1;0;0;1;1
+14226;19076;2;184;87.0;100;60;1;1;0;0;1;0
+14227;14844;2;170;68.0;120;70;1;1;0;0;1;0
+14228;18294;1;168;66.0;120;80;1;1;0;0;1;0
+14229;21308;1;160;60.0;120;80;1;1;0;0;1;0
+14230;16831;1;157;66.0;100;70;1;1;0;0;1;0
+14231;19774;2;158;103.0;160;110;2;2;0;1;1;1
+14232;19028;2;173;108.0;150;100;1;1;0;0;1;1
+14233;17500;1;167;69.0;120;79;1;1;0;0;1;1
+14235;14887;1;164;71.0;120;80;1;1;0;0;1;0
+14237;21873;2;165;79.0;120;80;1;1;0;0;1;0
+14239;18937;1;156;70.0;100;70;1;1;0;0;1;0
+14240;23531;1;177;79.0;120;80;1;1;0;0;0;1
+14241;19077;1;163;78.0;120;70;1;1;0;0;1;0
+14242;22089;1;149;54.0;110;70;1;1;0;0;1;1
+14244;15848;1;159;76.0;100;60;1;1;0;0;1;0
+14245;20315;1;161;81.0;120;80;2;1;0;0;1;0
+14246;14418;1;162;66.0;120;80;1;1;0;0;0;0
+14247;21211;1;154;83.0;150;90;1;1;0;0;1;1
+14249;20427;1;166;65.0;130;80;1;1;0;0;0;0
+14251;18214;1;160;93.0;140;80;2;1;0;0;1;1
+14252;14665;1;158;66.0;130;90;2;2;0;0;1;0
+14253;18328;1;168;70.0;160;80;3;1;0;0;1;1
+14254;19702;2;163;68.0;140;90;1;1;0;0;1;1
+14256;23421;2;170;74.0;120;80;1;1;0;0;1;0
+14259;15527;2;158;61.0;120;80;1;1;0;0;1;0
+14265;21279;1;160;83.0;140;90;1;1;0;0;1;1
+14266;15241;1;157;57.0;100;70;1;1;0;0;1;0
+14267;16137;2;179;61.0;110;60;1;1;0;0;1;0
+14268;22574;2;165;76.0;120;80;1;1;0;0;1;0
+14269;21401;2;172;76.0;150;1000;1;1;0;0;1;1
+14271;20607;1;175;70.0;120;80;1;1;0;0;1;0
+14272;18236;1;157;45.0;100;70;1;1;0;0;1;0
+14273;20282;2;169;71.0;120;80;1;1;0;0;1;1
+14275;21211;2;179;103.0;120;80;3;1;0;0;1;1
+14276;18225;1;167;75.0;120;80;1;1;0;0;0;1
+14277;14889;1;150;50.0;150;80;1;1;0;0;0;0
+14280;18327;2;179;120.0;150;90;2;1;1;1;1;1
+14281;15130;1;160;76.0;130;80;1;1;0;0;1;1
+14283;18436;1;158;68.0;130;80;2;1;0;0;1;0
+14285;22153;1;164;74.0;140;90;1;1;0;0;1;0
+14287;18455;1;165;64.0;100;70;1;1;0;0;1;0
+14288;16772;1;169;68.0;110;80;1;1;0;0;1;0
+14290;20517;1;160;60.0;120;80;3;3;0;0;1;0
+14291;18895;1;155;86.0;110;80;2;1;0;0;1;0
+14293;20374;2;180;78.0;120;80;2;1;0;0;1;0
+14294;20359;1;159;61.0;120;80;2;1;0;0;1;0
+14295;22414;2;170;98.0;120;80;1;1;0;0;1;1
+14298;16643;1;159;61.0;100;70;1;1;0;0;1;0
+14299;21741;1;159;75.0;120;80;1;1;0;0;1;0
+14300;19613;2;175;91.0;130;90;3;1;0;0;1;1
+14301;22779;1;172;64.0;120;70;1;1;0;0;1;1
+14303;18864;1;172;104.0;120;80;3;1;0;0;1;1
+14304;21025;2;177;80.0;130;80;1;1;0;1;1;1
+14306;18031;2;185;111.0;160;100;2;1;0;1;1;1
+14307;14835;1;169;54.0;120;80;1;1;0;0;1;0
+14308;18707;2;167;67.0;110;80;1;1;0;0;1;0
+14310;21755;1;168;69.0;120;80;1;1;0;0;0;1
+14313;16619;1;166;85.0;120;80;2;2;0;0;1;0
+14316;22582;1;164;71.0;120;80;1;1;0;0;1;0
+14318;19665;2;168;80.0;120;80;1;1;0;0;1;1
+14322;20577;1;168;66.0;120;90;1;1;0;0;1;0
+14323;21863;1;152;58.0;120;80;1;1;0;0;1;1
+14324;21885;1;162;58.0;130;80;1;1;0;0;1;1
+14325;18922;1;162;83.0;145;85;1;1;0;0;1;0
+14328;18105;2;165;73.0;120;79;1;1;0;0;1;1
+14329;20197;1;157;68.0;130;80;1;1;0;0;1;0
+14330;20991;2;169;83.0;100;70;2;1;1;1;1;1
+14331;19101;1;162;64.0;110;80;1;1;0;0;1;0
+14332;19777;1;165;70.0;130;90;3;1;0;0;0;1
+14333;14595;2;173;74.0;120;80;1;1;0;0;1;0
+14334;21807;1;178;78.0;140;90;1;1;1;0;1;0
+14335;18149;1;165;63.0;130;90;1;1;0;0;0;1
+14337;20273;1;156;85.0;160;100;2;1;0;0;1;1
+14338;23413;1;160;76.0;140;90;3;2;0;0;1;1
+14339;20572;2;168;73.0;130;90;1;1;0;0;1;1
+14340;18911;2;155;86.0;120;80;1;1;0;0;1;0
+14341;15964;1;160;100.0;120;80;1;1;0;0;1;0
+14342;19051;2;170;82.0;120;80;1;1;0;0;0;1
+14343;21137;1;164;84.0;120;80;1;1;0;0;1;1
+14344;15224;1;162;64.0;100;70;1;1;0;0;1;0
+14345;14448;2;172;81.0;160;90;1;1;0;1;0;0
+14346;17471;2;175;72.0;110;70;3;3;0;0;1;1
+14347;18457;1;155;69.0;110;70;1;1;0;0;1;0
+14348;23121;1;149;66.0;140;80;1;1;0;0;1;1
+14349;18373;1;159;54.0;110;70;2;1;0;0;1;0
+14351;19109;1;164;80.0;140;80;2;1;0;0;0;1
+14352;21752;1;150;77.0;120;80;1;1;0;0;1;1
+14353;20878;1;172;62.0;120;80;2;2;0;0;1;0
+14354;19920;1;167;65.0;120;80;1;1;0;0;1;1
+14355;20484;1;164;69.0;100;65;1;1;0;0;1;0
+14356;18294;1;165;82.0;110;70;1;1;0;0;1;1
+14359;17593;1;164;79.0;110;79;1;1;0;0;1;0
+14360;18282;2;168;86.0;120;80;1;3;0;0;1;0
+14361;16910;1;157;52.0;100;70;1;1;0;0;1;1
+14362;22913;1;160;41.0;120;80;1;1;0;0;1;0
+14363;18545;2;168;87.0;130;80;1;3;1;0;1;1
+14364;14687;2;178;84.0;110;80;1;1;1;0;1;0
+14365;20393;1;165;65.0;120;80;1;2;0;0;1;1
+14367;20627;1;149;78.0;180;1100;2;1;0;0;1;1
+14368;22031;2;179;62.0;140;90;1;1;0;0;1;0
+14369;15274;2;181;70.0;120;80;1;1;0;0;1;1
+14371;21407;1;163;74.2;140;90;2;1;0;0;1;1
+14372;21290;1;160;75.0;130;80;1;1;0;0;1;1
+14373;17511;2;163;63.0;120;80;1;1;1;0;1;1
+14374;19132;1;164;69.0;140;100;3;3;0;0;1;0
+14375;15974;1;165;68.0;110;70;1;1;0;0;1;0
+14376;14424;1;163;73.0;140;90;1;1;0;0;1;1
+14377;22881;2;170;74.0;124;70;1;1;0;0;1;0
+14379;19266;2;184;58.0;110;80;1;1;0;0;1;0
+14380;21850;1;171;82.0;145;90;1;1;0;0;1;1
+14381;22805;1;155;83.0;170;90;1;1;0;0;1;1
+14383;19059;1;158;74.0;110;60;1;1;0;0;1;0
+14385;19002;1;160;77.0;120;80;1;1;0;0;1;0
+14387;22695;2;170;79.0;130;60;3;3;0;0;1;1
+14389;22606;2;158;53.0;140;100;1;1;0;0;1;1
+14390;15786;1;148;87.0;160;90;2;2;0;0;1;1
+14391;21147;1;160;96.0;110;70;3;1;0;0;0;1
+14392;21086;1;161;99.0;130;80;2;1;0;0;1;0
+14393;21976;2;136;41.0;125;80;1;1;1;0;1;0
+14395;18113;1;163;65.0;120;80;1;1;0;0;0;0
+14396;18814;1;167;70.0;100;60;1;1;0;0;1;0
+14398;21801;1;160;65.0;130;90;3;1;0;0;1;1
+14399;23516;1;164;73.0;150;100;1;1;0;0;1;1
+14400;19689;2;181;108.0;140;100;2;2;0;0;1;1
+14403;20494;1;150;63.0;110;80;1;1;0;0;1;1
+14404;23620;2;165;64.0;120;80;1;1;0;0;0;1
+14405;18811;1;158;58.0;110;70;1;1;0;0;1;0
+14406;18845;2;170;64.0;109;73;1;1;1;1;1;0
+14409;17007;2;177;77.0;120;80;1;1;0;0;1;1
+14410;18334;1;152;50.0;150;10;3;1;0;0;1;1
+14411;19137;1;159;64.0;130;90;1;1;0;0;1;0
+14412;18111;2;170;79.0;120;80;1;3;0;0;1;0
+14414;17410;1;175;75.0;140;80;1;1;0;0;1;1
+14415;17347;1;157;60.0;120;80;3;1;0;0;1;1
+14417;21195;2;182;79.0;150;90;1;1;1;0;1;0
+14418;15345;1;169;71.0;120;80;1;1;0;0;1;0
+14419;18460;1;160;75.0;120;80;1;1;0;0;1;0
+14420;19707;1;160;65.0;160;90;1;1;0;0;1;1
+14421;18829;1;158;64.0;120;80;1;1;0;0;1;0
+14423;18347;2;140;90.0;140;90;1;1;0;0;1;0
+14424;21331;1;156;75.0;130;90;2;2;0;0;1;0
+14425;21178;1;161;73.0;100;65;1;1;0;0;1;0
+14426;18132;2;168;76.0;120;80;1;1;0;0;1;0
+14427;21892;1;145;48.0;130;90;1;1;0;0;1;1
+14428;21159;1;169;69.0;120;80;1;3;0;0;1;1
+14430;21745;1;155;81.0;140;90;1;1;0;0;1;0
+14431;19630;1;169;88.0;120;80;1;1;0;0;0;1
+14432;21240;1;154;65.0;150;89;1;1;0;0;0;0
+14433;16633;1;160;66.0;120;80;1;1;0;0;1;0
+14436;19676;1;157;64.0;110;70;2;1;0;0;1;0
+14437;17249;2;178;75.0;110;80;1;1;0;0;1;0
+14438;18018;1;161;88.0;140;80;2;1;0;0;1;1
+14439;15320;1;156;74.0;130;80;3;1;0;0;1;1
+14441;22717;1;168;74.0;120;80;2;1;0;0;1;0
+14442;19081;2;168;68.0;120;80;1;1;0;0;1;1
+14443;15385;1;151;59.0;125;85;1;1;0;0;1;0
+14444;18839;1;158;72.0;120;80;1;1;0;0;1;0
+14446;23300;2;164;69.0;110;80;3;1;0;1;1;1
+14447;18251;2;168;65.0;120;80;1;1;0;0;0;1
+14450;19737;1;158;61.0;120;80;1;1;0;0;1;0
+14451;20342;2;172;57.0;130;90;3;3;0;0;1;1
+14452;17716;2;169;65.0;120;80;1;1;0;0;0;0
+14453;14738;1;158;80.0;120;80;1;1;0;0;1;0
+14454;20322;1;165;103.0;120;80;1;1;0;0;0;0
+14455;18226;2;174;105.0;150;90;1;1;0;0;1;1
+14457;19584;2;182;82.0;110;70;1;1;0;0;1;0
+14459;21988;1;153;78.0;120;70;3;1;0;0;1;1
+14462;16741;1;155;100.0;136;1022;3;3;0;1;1;1
+14463;18799;1;167;83.0;125;86;2;1;0;0;1;1
+14465;17318;1;156;60.0;120;80;1;1;0;0;1;0
+14466;20493;2;170;88.0;130;80;1;1;0;0;1;0
+14467;18339;1;160;60.0;120;80;1;1;0;0;1;0
+14469;21075;1;156;75.0;130;90;1;1;0;0;1;0
+14470;21046;2;176;86.0;130;80;1;1;0;0;1;0
+14472;18796;1;165;69.0;140;90;2;1;0;0;1;0
+14473;19930;2;177;90.0;130;60;1;1;1;0;1;0
+14474;16711;1;168;72.0;120;80;1;1;0;0;1;0
+14475;18899;1;158;73.0;120;80;1;1;0;0;1;0
+14476;18181;1;161;63.0;140;90;1;1;0;0;1;1
+14477;19189;1;167;72.0;130;90;1;1;0;0;1;1
+14478;21871;1;159;60.0;140;90;1;1;0;0;1;1
+14482;19754;2;165;73.0;120;80;1;1;1;0;1;0
+14483;19175;1;163;56.0;130;80;1;1;0;0;1;1
+14484;21963;1;163;69.0;130;80;1;1;0;0;1;1
+14485;19802;1;163;60.0;120;80;1;1;0;0;1;0
+14489;19073;1;164;73.0;160;90;1;1;0;0;0;1
+14492;18459;2;168;67.0;120;80;1;1;0;1;1;0
+14493;17989;1;164;76.0;120;70;1;1;0;0;1;0
+14494;16017;2;181;97.0;120;80;1;1;0;0;1;0
+14495;17539;1;169;78.0;120;85;1;1;0;0;1;0
+14496;23522;1;153;70.0;120;70;1;1;0;0;1;0
+14497;21830;1;159;69.0;120;70;2;1;0;0;0;1
+14498;21188;1;165;84.0;130;90;3;2;0;0;1;1
+14499;15894;1;163;70.0;110;80;1;1;0;0;1;0
+14500;18243;1;165;65.0;120;80;1;1;0;0;0;0
+14501;16838;2;172;63.0;140;80;1;2;1;0;1;1
+14502;17467;2;186;80.0;110;80;1;1;0;0;1;0
+14507;19043;2;170;82.0;120;80;1;1;0;0;1;1
+14508;17534;1;158;52.0;120;80;1;1;0;0;0;0
+14511;22069;1;165;62.0;110;70;1;1;0;0;1;1
+14512;22610;2;160;81.0;150;80;2;3;0;0;1;1
+14514;18132;2;160;74.0;160;90;1;1;0;0;1;1
+14516;16008;1;163;47.0;100;80;1;1;0;0;1;0
+14518;21104;2;160;80.0;130;90;1;1;0;0;0;1
+14520;21301;2;169;85.0;120;80;1;1;0;0;1;1
+14521;20560;1;163;78.0;120;80;3;1;0;0;1;1
+14522;16122;2;170;65.0;120;80;1;1;0;0;1;1
+14523;19636;1;165;63.0;110;70;1;1;0;0;1;0
+14526;14495;2;185;76.0;130;70;1;1;1;0;1;0
+14527;17625;1;160;66.0;100;70;1;1;0;0;1;0
+14528;22525;2;178;76.0;120;80;1;1;1;0;1;0
+14529;22477;1;158;62.0;160;90;2;2;0;0;1;1
+14530;19735;1;154;62.0;120;80;1;1;0;0;1;1
+14531;19826;2;169;74.0;130;80;1;1;0;0;1;0
+14532;18170;2;171;87.0;120;80;1;1;0;0;1;1
+14533;20403;1;168;95.0;140;90;1;1;0;0;1;1
+14537;20579;1;166;49.0;120;70;1;3;0;0;1;0
+14538;20464;2;169;79.0;130;1000;1;1;0;0;1;1
+14540;21966;1;170;69.0;120;80;1;1;0;0;1;0
+14541;18411;1;175;75.0;120;90;1;1;0;0;1;0
+14542;14687;1;161;45.0;120;80;1;1;0;0;1;0
+14543;22009;1;160;68.0;120;80;1;1;0;0;1;0
+14545;18413;1;170;76.0;110;70;1;1;0;0;1;0
+14546;18251;2;156;70.0;130;80;1;1;0;0;0;0
+14548;20394;2;180;79.0;120;80;1;1;0;0;1;0
+14549;22682;1;165;67.0;110;70;1;1;0;0;1;1
+14550;20394;1;154;92.0;180;90;3;2;0;0;1;1
+14551;23271;1;156;63.0;120;80;3;2;0;0;1;1
+14553;19679;1;164;69.0;130;70;1;1;0;0;0;0
+14554;21179;2;180;75.0;140;90;1;1;0;0;1;0
+14555;20537;1;170;75.0;150;90;2;1;0;0;1;1
+14556;19702;1;166;98.0;140;90;3;3;0;0;0;1
+14557;19754;1;166;68.0;120;80;1;1;0;0;1;0
+14558;18895;2;161;75.0;120;80;1;1;1;0;1;0
+14559;16583;1;162;54.0;120;70;1;1;0;0;1;0
+14560;19499;1;165;74.0;110;70;1;3;0;0;1;1
+14561;22740;2;170;75.0;120;80;1;1;0;0;1;0
+14562;21321;1;178;78.0;120;80;1;1;0;0;1;1
+14563;18428;2;166;90.0;150;90;1;2;0;0;0;1
+14565;19856;2;172;125.0;160;100;1;1;0;0;1;0
+14568;19841;1;168;82.0;100;70;1;1;0;0;1;0
+14572;15217;2;170;65.0;120;80;1;1;1;0;1;0
+14573;22378;1;157;86.0;120;80;1;1;0;0;0;0
+14575;19893;2;165;60.0;110;70;1;1;0;0;1;1
+14576;19754;1;158;92.0;184;100;3;2;0;1;1;1
+14577;19741;1;162;62.0;140;70;1;1;0;0;1;0
+14578;18870;2;173;82.0;140;100;1;1;0;0;1;1
+14581;18053;1;165;105.0;120;80;1;1;0;0;0;1
+14585;18917;2;168;65.0;130;70;1;1;0;0;1;1
+14587;23324;1;170;86.0;110;70;1;1;0;0;0;0
+14589;21887;2;162;115.0;170;100;2;2;0;0;1;1
+14592;19818;1;162;66.0;130;100;1;1;0;0;1;1
+14593;21050;2;175;70.0;130;80;1;1;0;0;0;0
+14596;16583;1;168;58.0;120;80;1;1;1;0;1;0
+14597;15343;1;170;78.0;120;80;1;2;0;0;0;0
+14598;15965;1;160;63.0;11;60;1;3;0;0;1;0
+14599;16734;1;157;70.0;100;80;1;1;0;0;1;0
+14600;23490;1;161;52.0;105;70;1;1;0;0;1;0
+14601;21724;1;155;57.0;180;100;3;1;0;0;1;1
+14603;14419;1;171;74.0;150;97;1;1;0;0;0;1
+14604;21234;1;162;85.0;120;80;1;3;0;0;1;1
+14605;19710;2;170;95.0;150;1000;3;1;0;0;1;0
+14606;18296;1;162;58.0;110;80;1;1;0;0;1;0
+14607;18944;1;160;73.0;160;90;1;1;0;0;1;1
+14608;21331;2;174;69.0;150;90;1;1;1;0;1;1
+14610;20581;1;170;79.0;140;90;1;1;0;0;1;0
+14611;20514;1;169;62.0;120;80;1;1;0;0;1;0
+14613;16776;1;161;62.0;110;80;1;1;0;0;1;0
+14614;16226;1;159;76.0;120;90;2;2;0;0;1;0
+14619;16042;2;170;70.0;140;90;1;1;0;0;1;1
+14620;19839;1;165;75.0;120;80;1;1;0;0;1;0
+14622;14478;2;170;67.0;110;70;2;1;0;0;1;0
+14624;17616;1;167;106.0;120;80;1;2;1;1;0;1
+14625;22682;1;161;61.0;160;100;1;1;0;0;1;1
+14628;17423;1;168;90.0;140;80;1;1;0;0;1;1
+14629;16204;1;156;58.0;150;70;1;1;0;0;1;0
+14631;20351;1;164;77.0;120;80;1;1;0;0;0;0
+14633;21191;1;157;62.0;180;100;1;1;0;0;1;1
+14636;21995;1;159;79.0;130;90;3;3;0;0;1;1
+14638;20449;1;158;98.0;120;80;1;1;0;0;1;1
+14640;21926;1;155;89.0;120;80;3;1;0;0;0;0
+14641;15252;2;172;81.0;150;1000;1;1;1;0;1;0
+14643;18980;1;160;71.0;120;80;3;1;0;0;1;0
+14645;15510;1;165;62.0;125;70;1;1;0;0;1;0
+14646;19021;1;163;92.0;100;90;2;1;0;0;1;0
+14647;14714;2;175;92.0;140;100;1;1;0;0;1;1
+14648;21024;1;161;68.0;130;80;1;1;0;0;0;1
+14649;21342;1;161;65.0;120;80;2;1;0;1;1;0
+14651;20637;1;169;62.0;120;70;2;1;0;0;1;0
+14652;20552;1;185;75.0;120;80;3;3;0;0;1;0
+14654;19043;1;164;74.0;130;80;1;3;0;0;1;1
+14656;23490;1;172;67.0;140;90;1;1;0;0;1;1
+14657;17719;1;170;75.0;120;60;1;1;0;0;0;0
+14658;18151;2;165;63.0;120;80;1;1;0;0;1;0
+14659;20667;2;167;54.0;135;90;1;1;1;0;1;0
+14660;16671;1;160;60.0;120;80;1;1;0;0;1;1
+14661;16741;1;165;65.0;140;100;1;1;1;0;1;1
+14662;19203;2;165;65.0;120;80;1;1;0;0;1;0
+14663;16884;1;169;65.0;120;80;1;1;0;0;1;0
+14664;23378;1;168;79.0;160;90;1;1;0;0;1;1
+14669;22071;1;165;70.0;120;80;1;1;0;0;0;0
+14670;16660;2;168;68.0;120;90;1;1;0;0;0;0
+14671;21970;1;156;94.0;150;80;2;1;0;0;1;0
+14672;17028;2;160;85.0;140;90;2;1;0;0;1;1
+14673;21642;2;171;78.0;130;80;2;1;0;0;0;0
+14677;21098;1;159;45.0;120;80;2;1;0;0;1;0
+14678;20598;1;167;93.0;140;90;1;1;0;0;0;1
+14679;17382;2;153;57.0;120;80;1;1;0;0;1;0
+14681;20247;1;152;59.0;130;90;1;1;0;0;1;1
+14682;23291;1;162;58.0;140;90;1;1;0;0;1;1
+14683;17575;2;170;65.0;160;90;2;1;1;0;1;1
+14684;22053;1;163;80.0;120;80;1;1;0;0;1;0
+14686;17575;1;162;55.0;120;80;1;1;0;0;1;0
+14687;16067;1;155;55.0;120;80;1;1;0;0;1;0
+14688;18323;1;168;65.0;110;70;3;3;0;0;1;0
+14689;23361;1;170;68.0;120;80;1;1;0;0;0;1
+14690;21961;1;165;62.0;160;90;1;1;0;0;1;1
+14692;18258;1;159;62.0;120;80;1;1;0;0;1;0
+14694;20534;1;160;55.0;110;80;1;1;0;0;1;0
+14695;23407;1;160;77.0;130;90;3;3;0;0;1;0
+14696;20435;1;162;87.0;150;100;2;1;0;0;1;1
+14697;21356;2;178;80.0;120;80;1;1;0;0;1;0
+14698;18203;1;163;69.0;110;60;1;1;0;0;1;0
+14699;21313;1;165;65.0;120;80;1;1;0;0;0;1
+14701;19682;1;155;84.0;130;80;1;1;0;0;1;0
+14703;17578;1;169;71.0;110;70;1;1;0;0;1;1
+14705;16740;1;170;93.0;140;90;3;1;0;0;1;1
+14708;14817;2;165;65.0;120;70;1;1;1;0;1;0
+14709;19701;2;168;85.0;130;90;1;2;1;0;1;1
+14711;18164;1;167;70.0;120;60;1;1;0;1;1;0
+14712;18222;2;171;74.0;120;80;1;1;0;0;1;0
+14713;17478;1;153;54.0;110;80;2;2;0;0;1;0
+14714;15972;1;160;60.0;135;90;1;1;0;0;1;1
+14715;16858;1;160;65.0;120;70;1;1;0;0;1;0
+14716;20756;1;164;80.0;110;70;3;3;0;0;0;0
+14717;18128;2;176;72.0;120;80;1;1;0;0;1;0
+14718;21974;1;169;79.0;120;70;1;1;0;0;1;0
+14719;19024;1;158;60.0;120;80;1;1;0;0;1;0
+14720;16853;2;171;78.0;139;80;1;1;1;0;1;1
+14722;16491;1;153;92.0;100;80;2;2;0;1;1;0
+14723;19776;2;166;64.0;110;70;1;1;0;0;0;1
+14724;22717;1;169;64.0;130;80;1;1;0;0;1;1
+14725;20671;2;175;101.0;160;90;1;1;1;1;1;0
+14727;16729;2;168;65.0;120;80;1;1;0;0;1;0
+14728;20225;1;165;65.0;120;850;1;1;0;0;0;1
+14729;22409;1;161;87.0;110;70;1;1;0;0;1;0
+14731;18368;2;171;69.0;110;60;1;1;1;1;1;0
+14733;18474;1;165;75.0;120;70;1;1;0;0;0;0
+14735;16793;2;178;93.0;150;90;1;1;1;0;1;1
+14738;18945;1;156;56.0;100;60;1;1;0;0;1;0
+14740;23354;1;168;73.0;134;80;3;1;0;0;1;1
+14742;21016;2;168;87.0;160;90;3;3;0;1;1;1
+14744;22534;2;173;72.0;190;1000;3;3;0;0;1;1
+14745;19905;1;162;82.0;130;90;3;3;0;1;1;0
+14747;23304;2;165;55.0;160;90;1;1;0;0;1;0
+14748;19765;1;155;80.0;120;70;1;3;0;0;1;0
+14749;14697;1;172;90.0;100;70;1;1;0;0;1;0
+14750;19069;1;155;69.0;100;60;1;1;0;0;0;0
+14752;23285;2;170;72.0;130;80;1;1;0;0;1;1
+14755;18281;2;164;59.0;120;80;1;1;0;0;1;0
+14757;21232;1;160;70.0;120;80;1;1;0;0;0;0
+14758;18935;1;158;63.0;140;90;1;2;0;0;1;1
+14759;20634;1;153;60.0;120;80;1;1;0;0;1;0
+14760;23433;1;154;74.0;150;90;1;1;0;0;1;1
+14761;15979;1;160;67.0;120;60;1;1;0;0;1;0
+14762;19834;1;165;60.0;110;75;1;1;0;0;1;1
+14764;23215;1;158;79.0;130;90;3;1;0;0;1;1
+14765;19499;1;168;76.0;130;90;1;1;0;0;1;0
+14766;22761;1;159;73.0;135;90;1;1;0;0;1;0
+14767;23256;2;167;84.0;160;90;1;1;0;0;1;1
+14768;19901;1;165;65.0;120;80;3;3;0;0;1;1
+14769;15160;2;167;64.0;120;80;2;1;0;0;1;1
+14770;19116;1;170;75.0;130;80;1;1;0;0;1;0
+14772;16320;1;168;72.0;120;80;1;1;0;0;1;0
+14773;16050;1;168;65.0;120;80;2;2;0;0;0;0
+14776;23365;1;164;66.0;110;70;1;1;0;0;1;1
+14777;22651;1;159;84.0;145;80;3;3;0;1;1;1
+14778;20945;1;155;63.0;140;100;3;1;0;0;0;1
+14779;15470;1;163;95.0;100;70;2;1;0;0;1;1
+14780;15324;1;168;65.0;120;70;1;1;0;0;1;0
+14781;18075;1;166;66.0;120;80;1;1;0;0;1;0
+14782;23427;2;165;60.0;120;90;1;1;0;0;1;1
+14784;20398;1;165;68.0;140;90;1;2;0;0;1;1
+14785;19504;1;159;75.0;110;70;1;1;0;0;0;0
+14786;23193;2;164;71.0;150;100;1;1;0;0;1;1
+14787;19621;1;155;86.0;130;80;1;1;0;0;1;1
+14788;21838;2;167;77.0;160;80;1;1;0;0;1;1
+14790;19751;1;165;85.0;120;80;1;1;0;0;1;0
+14794;15853;2;178;76.0;120;80;1;1;0;0;1;0
+14796;21837;1;155;64.0;140;80;1;1;0;0;1;1
+14799;20463;1;163;89.0;140;90;1;1;0;0;1;1
+14802;19022;1;170;71.0;120;80;1;1;0;0;0;0
+14804;16052;1;167;83.0;120;80;1;1;1;0;0;1
+14805;16628;2;170;72.0;170;100;3;1;0;1;1;1
+14807;18284;1;156;59.0;140;90;1;2;0;0;1;0
+14808;19456;1;162;65.0;110;70;3;1;0;0;1;1
+14809;21065;2;172;72.0;120;60;1;1;0;0;1;0
+14810;20508;2;168;95.0;120;80;1;1;1;0;1;0
+14811;21329;2;176;86.0;120;80;1;1;0;0;1;1
+14812;16868;1;164;83.0;120;80;1;1;0;0;1;0
+14814;14573;1;170;78.0;140;90;1;1;0;0;1;1
+14815;15312;1;161;89.0;130;90;1;1;0;0;1;0
+14816;21813;1;155;80.0;120;80;1;1;0;0;1;0
+14817;22441;1;162;60.0;130;90;1;1;0;0;1;0
+14819;21045;2;168;85.0;120;80;1;1;1;0;0;0
+14820;22792;2;168;98.0;130;70;2;1;0;1;1;0
+14821;16616;1;163;63.0;100;70;1;1;0;0;1;0
+14822;23374;2;164;79.0;140;90;1;1;0;0;1;0
+14824;16676;1;167;74.0;120;80;1;1;0;0;0;0
+14825;21223;1;167;113.0;220;120;3;1;0;0;1;1
+14826;19163;2;174;71.0;110;80;2;1;1;1;1;1
+14827;23208;2;160;76.0;120;70;1;1;0;0;0;1
+14828;14822;2;180;80.0;120;80;1;1;0;0;1;0
+14830;23391;1;158;58.0;150;90;1;1;0;0;1;1
+14832;20323;1;154;83.0;150;80;2;1;0;0;1;1
+14834;21253;1;164;108.0;150;90;2;1;0;0;0;1
+14835;16817;1;167;68.0;120;80;1;2;0;0;0;1
+14836;16070;2;186;115.0;120;80;1;1;0;1;1;0
+14837;18950;1;165;73.0;130;80;1;1;0;0;1;0
+14838;16869;2;165;69.0;120;80;1;1;0;0;1;0
+14839;18173;1;158;74.0;160;100;2;1;0;0;1;1
+14840;21675;2;167;63.0;90;60;2;1;1;0;1;1
+14842;18242;1;185;84.3;120;80;1;1;0;0;1;1
+14843;19784;2;164;57.0;110;70;2;1;1;1;1;0
+14844;19600;1;168;72.0;120;80;1;1;0;0;1;1
+14845;14581;2;165;71.0;110;70;1;1;1;0;1;0
+14848;23450;1;172;82.0;140;90;2;1;0;0;1;1
+14849;22605;1;151;61.0;110;70;1;1;0;0;1;0
+14851;23494;1;168;89.0;120;80;1;1;0;0;0;1
+14852;20409;2;169;60.0;110;60;1;1;0;0;1;1
+14854;19063;1;160;64.0;140;80;1;1;0;0;1;1
+14855;16607;2;173;84.0;120;70;1;1;0;0;1;0
+14858;22083;1;175;75.0;120;80;1;1;0;0;1;1
+14859;19960;1;160;58.0;100;70;2;1;0;0;1;1
+14860;15929;1;162;75.0;120;80;1;1;0;0;0;0
+14861;18542;2;176;91.0;130;80;2;3;0;0;1;1
+14862;18875;1;158;68.0;115;70;1;1;0;0;1;0
+14863;14571;1;156;58.0;110;70;1;1;0;0;1;0
+14864;19015;2;172;89.0;110;70;1;2;1;0;1;1
+14866;20388;1;160;91.0;140;90;1;1;0;0;1;1
+14867;23501;1;159;68.0;130;80;1;1;0;0;1;0
+14868;14507;2;177;63.0;120;80;1;1;0;0;1;0
+14870;18324;1;160;76.0;110;70;1;1;0;0;1;1
+14871;18364;1;160;93.0;110;80;1;1;0;0;0;1
+14872;16865;2;178;60.0;130;90;1;1;0;0;0;1
+14873;23658;2;177;102.0;130;80;1;2;0;0;1;0
+14875;21380;1;170;80.0;110;70;1;1;0;0;1;1
+14876;14609;1;165;63.0;120;80;1;1;0;0;1;0
+14877;19732;1;174;88.0;120;80;1;1;0;0;1;0
+14878;16723;2;172;79.0;120;80;1;1;0;0;0;0
+14879;23278;2;172;78.0;120;80;1;1;0;0;1;0
+14880;22090;1;156;55.0;150;90;3;1;0;0;1;1
+14881;19736;1;168;70.0;170;100;3;1;0;0;1;1
+14884;22840;1;165;60.0;120;80;1;1;0;0;1;0
+14885;18355;1;164;64.0;120;80;1;1;0;0;1;0
+14886;15151;1;164;62.0;120;80;1;1;0;0;1;0
+14888;19795;2;168;63.0;110;70;1;1;1;1;1;0
+14891;17006;1;165;68.0;120;80;1;1;0;0;1;0
+14892;20441;1;157;57.0;130;90;1;1;0;0;1;0
+14894;17444;1;170;77.0;150;90;1;1;0;0;1;1
+14895;15202;2;172;67.0;110;70;1;1;0;0;0;0
+14896;16047;1;168;62.0;120;70;3;1;0;0;1;1
+14897;19015;2;168;72.0;140;80;1;1;0;0;1;1
+14899;18945;1;170;70.0;130;80;1;1;0;0;0;0
+14900;14784;2;185;75.0;120;60;1;1;1;1;1;0
+14901;19103;1;175;68.0;120;80;1;1;0;0;0;0
+14902;18993;1;160;58.0;115;80;1;1;0;0;0;0
+14903;23308;1;162;70.0;120;80;1;1;0;0;1;0
+14904;18334;2;170;74.0;110;70;2;1;0;0;1;1
+14905;18088;2;183;79.0;150;90;1;1;1;0;1;1
+14908;22007;1;162;38.0;100;70;1;1;0;0;1;0
+14909;20658;1;165;69.0;120;80;1;1;0;0;1;0
+14910;19698;2;163;63.0;120;80;3;3;0;0;0;1
+14911;18978;1;163;51.0;130;80;1;1;0;0;0;0
+14913;16938;1;156;55.0;110;80;2;1;0;0;1;1
+14914;22401;2;172;70.0;120;80;1;1;0;0;1;0
+14915;22588;2;181;76.0;130;90;2;2;0;0;1;1
+14916;20574;2;165;62.0;130;90;1;1;1;0;1;1
+14917;15782;2;178;98.0;140;90;2;1;1;0;1;1
+14918;20316;2;161;86.0;160;100;1;1;1;0;0;1
+14919;18823;1;160;81.0;150;100;2;2;0;0;1;0
+14921;21141;1;163;65.0;130;80;1;3;0;0;0;1
+14922;22174;1;155;62.0;120;80;3;3;0;0;1;1
+14923;22007;1;167;83.0;150;100;2;2;0;0;1;1
+14924;19057;1;168;84.0;130;100;2;1;0;0;1;0
+14925;20465;2;174;83.0;120;80;2;1;0;0;0;0
+14926;21093;1;163;74.0;100;70;1;1;0;0;1;1
+14927;20479;1;146;64.0;120;80;1;1;0;0;0;0
+14928;19118;2;172;62.0;110;70;1;1;1;0;0;0
+14929;18002;1;162;77.0;130;80;1;3;0;0;1;1
+14930;22581;1;156;85.0;120;80;3;3;0;0;1;1
+14932;20327;1;155;71.0;160;100;2;1;0;0;0;1
+14933;18233;1;152;74.0;120;80;1;1;0;0;0;1
+14934;21918;1;157;70.0;120;80;1;1;0;0;1;0
+14936;22914;1;167;77.0;130;80;1;3;0;0;1;1
+14937;17810;2;175;71.0;120;80;1;1;0;0;0;1
+14938;19612;1;164;59.0;100;60;1;1;0;0;0;0
+14939;19731;1;172;75.0;130;80;1;1;0;0;1;1
+14941;14789;2;172;106.0;130;80;1;1;0;1;1;0
+14942;21131;2;170;79.0;120;80;1;1;1;1;0;0
+14943;23136;1;165;70.0;140;100;1;1;0;0;1;1
+14944;22051;1;165;65.0;120;80;3;3;0;0;1;0
+14946;21272;1;160;65.0;120;80;1;1;0;0;0;0
+14947;21258;1;160;65.0;140;90;3;1;0;0;1;0
+14951;19786;1;153;80.0;120;80;2;2;0;0;1;0
+14952;21897;1;168;58.0;140;90;3;3;0;0;1;1
+14953;18841;2;181;117.0;120;80;1;1;0;0;1;0
+14956;17746;2;178;89.0;110;90;1;1;0;0;1;1
+14959;23354;1;158;68.0;140;90;1;1;0;0;1;1
+14961;20573;2;163;64.0;120;80;1;1;0;0;1;0
+14963;14579;1;164;71.0;110;80;1;1;0;0;1;0
+14964;21971;1;158;72.0;140;90;1;1;0;0;1;1
+14966;19706;1;164;65.0;120;80;1;1;0;0;1;0
+14968;23495;2;169;68.0;120;70;1;1;0;0;0;1
+14969;19203;2;164;60.0;110;60;1;1;0;0;0;0
+14970;21046;1;162;70.0;120;80;1;1;0;0;1;1
+14973;18550;1;165;78.0;120;80;1;3;0;0;0;1
+14974;16937;2;170;70.0;120;80;1;1;0;0;0;0
+14975;18873;2;170;65.0;140;90;2;1;0;0;1;1
+14977;14506;1;160;70.0;110;70;2;1;0;0;1;0
+14979;21134;1;150;80.0;140;90;3;3;0;0;1;0
+14980;21869;2;168;95.0;150;90;1;1;0;0;1;1
+14981;23393;1;150;52.0;120;80;2;1;0;0;1;1
+14982;19516;1;157;83.0;130;90;1;1;0;0;1;1
+14983;19014;2;174;84.0;120;80;1;1;0;0;1;0
+14984;18138;2;171;64.0;140;90;1;1;0;0;1;1
+14987;18805;1;150;50.0;120;80;1;1;0;0;1;0
+14989;19489;2;179;92.0;160;100;2;2;0;0;1;1
+14991;19073;1;168;69.0;130;90;1;1;0;0;1;0
+14992;21760;1;154;96.0;190;110;1;1;0;0;1;1
+14995;16620;1;158;75.0;120;90;2;1;0;1;1;0
+14998;22723;2;168;55.0;160;80;1;1;1;0;1;1
+14999;21177;2;170;80.0;120;80;1;1;0;0;1;1
+15003;21754;1;157;64.0;110;70;1;1;0;0;1;1
+15007;20985;1;165;68.0;150;1000;1;1;0;0;1;0
+15010;18312;1;165;65.0;120;80;1;1;0;0;1;0
+15012;17569;1;161;58.0;100;70;1;1;0;0;1;1
+15013;14855;1;154;53.0;120;80;1;1;0;0;1;0
+15014;19642;1;170;140.0;160;1000;1;1;0;0;1;1
+15016;21699;2;167;71.0;140;90;1;1;1;0;1;1
+15018;18944;1;151;70.0;140;100;2;2;0;0;1;0
+15019;16163;1;175;95.0;130;90;1;1;0;0;1;0
+15021;23365;1;164;76.0;120;80;1;1;0;0;1;1
+15022;19241;1;151;57.0;100;70;1;1;0;0;1;0
+15025;18198;1;157;103.0;130;80;1;1;0;0;1;1
+15026;20273;2;158;64.0;140;90;3;1;0;0;1;0
+15027;23402;2;162;80.0;130;90;3;1;0;0;1;1
+15030;18197;2;168;60.0;120;80;2;1;1;0;1;1
+15031;20011;2;170;102.0;180;100;2;2;0;0;1;1
+15033;18539;1;165;65.0;110;70;1;1;0;0;1;0
+15036;19114;1;164;67.0;120;80;1;1;0;0;1;1
+15037;19620;1;156;58.0;110;70;1;1;0;0;1;1
+15039;18305;1;154;66.0;130;80;1;1;0;0;1;0
+15040;18814;1;164;87.0;140;70;1;3;0;0;0;0
+15042;21864;1;165;77.0;150;90;1;1;0;0;1;0
+15043;18263;2;170;65.0;120;80;1;1;0;0;1;0
+15044;21302;1;165;65.0;140;90;2;1;0;0;1;1
+15045;19759;1;164;87.0;140;90;1;1;0;0;1;1
+15046;21950;2;165;62.0;130;90;1;1;0;0;1;1
+15047;20503;1;175;65.0;120;80;2;1;0;0;1;0
+15048;23463;2;181;119.0;150;100;2;2;0;0;1;0
+15049;18169;2;167;70.0;100;70;1;1;0;0;1;0
+15051;22467;2;165;67.0;170;120;1;1;0;0;1;1
+15052;18967;2;168;75.0;120;80;1;1;0;0;1;0
+15055;19005;1;168;74.0;100;80;1;3;0;0;1;1
+15056;19575;2;175;91.0;100;90;1;3;1;0;1;1
+15057;14591;1;162;70.0;90;60;1;1;0;0;0;0
+15058;21770;1;160;61.0;130;90;2;1;0;0;1;0
+15060;18146;1;163;83.0;120;80;1;1;0;0;1;0
+15062;15140;2;172;69.0;110;70;1;1;0;0;1;0
+15064;22014;1;161;56.0;140;80;2;1;0;0;1;1
+15066;18348;1;160;72.0;130;90;1;1;0;0;1;0
+15067;21182;1;156;59.0;120;80;1;2;0;0;1;1
+15068;15536;2;180;96.0;150;100;1;1;0;0;1;1
+15070;18942;2;185;91.0;150;80;2;1;0;0;0;1
+15073;19050;2;182;79.0;140;90;1;1;0;0;1;1
+15074;16586;1;160;70.0;140;90;1;1;0;0;1;1
+15075;18181;1;159;52.0;128;80;1;1;0;0;1;0
+15076;14541;1;157;75.0;100;60;1;1;0;0;1;0
+15080;23379;2;172;95.0;110;80;1;1;0;0;1;1
+15081;14606;1;163;59.0;110;70;2;2;0;0;0;0
+15085;22729;2;162;62.0;140;90;1;1;1;1;1;1
+15086;14315;1;157;83.0;120;80;1;1;0;0;1;0
+15089;22009;2;170;65.0;120;80;3;3;0;0;1;1
+15090;18960;2;165;76.0;100;60;2;1;1;0;1;1
+15094;20495;1;165;70.0;120;80;1;1;0;0;1;0
+15095;20615;1;174;96.0;150;100;3;1;0;0;1;1
+15096;18315;2;170;85.0;120;80;1;1;0;0;1;0
+15098;19680;1;160;69.0;160;90;3;1;0;0;1;1
+15100;23188;2;165;61.0;120;80;3;1;0;0;1;1
+15101;22541;1;130;50.0;120;80;1;1;0;0;1;0
+15103;23460;1;165;66.0;160;100;1;1;0;0;1;1
+15104;15199;1;163;54.5;120;80;1;1;0;0;1;0
+15105;20573;1;165;65.0;120;80;1;1;0;0;1;1
+15106;23127;1;165;60.0;120;80;1;1;0;0;1;1
+15107;22034;1;152;62.0;120;80;1;1;0;0;1;0
+15108;19664;2;155;75.0;120;80;1;1;0;0;1;1
+15109;21238;1;165;60.0;180;100;1;3;0;0;1;1
+15110;18248;1;172;69.0;140;80;1;1;0;0;1;1
+15111;20297;2;180;60.0;140;90;1;1;0;1;1;0
+15112;16655;2;170;54.0;120;80;1;2;0;0;1;0
+15113;18316;1;157;55.0;110;70;1;1;0;0;1;0
+15115;19005;1;160;60.0;120;80;1;1;0;0;0;0
+15116;14669;1;175;65.0;120;80;1;1;1;1;1;0
+15117;18223;2;167;88.0;130;80;3;1;0;0;1;1
+15120;22554;2;174;70.0;130;90;3;1;0;0;1;1
+15121;20439;1;163;68.0;130;100;1;1;1;0;1;0
+15122;17071;2;155;55.0;120;80;3;1;0;0;1;1
+15123;16706;1;160;74.0;120;60;1;1;0;0;1;0
+15124;22388;1;159;80.0;120;80;2;1;0;0;1;1
+15126;20277;2;172;70.0;140;90;1;1;0;0;1;0
+15129;20437;1;161;62.0;150;80;1;1;0;0;1;1
+15130;18210;2;180;104.0;130;80;1;3;1;0;0;1
+15131;23270;1;164;79.0;130;80;2;1;0;0;1;1
+15134;18133;2;173;95.0;140;90;1;1;1;0;1;1
+15136;19759;2;158;85.0;140;80;3;1;0;0;1;1
+15137;22758;2;172;71.0;130;80;2;1;0;0;1;1
+15139;22043;2;167;70.0;110;60;1;1;0;0;1;1
+15140;22726;1;163;107.0;160;90;3;3;0;0;1;1
+15141;18861;1;148;62.0;120;80;1;1;0;0;0;1
+15142;16804;1;164;57.0;120;80;2;1;0;0;1;1
+15143;19800;1;162;71.0;120;70;1;1;0;0;1;0
+15144;19407;1;157;74.0;130;70;3;2;0;0;1;1
+15145;18954;2;170;75.0;140;90;1;1;0;0;1;1
+15146;20673;1;158;120.0;130;70;3;1;0;0;1;1
+15147;22620;1;165;69.0;120;80;1;1;0;0;1;0
+15149;23286;1;160;85.0;130;80;3;1;0;0;1;1
+15150;20239;2;162;72.0;140;90;1;1;0;0;1;1
+15151;21143;1;170;75.0;110;70;1;1;0;0;1;1
+15154;16078;1;157;53.0;110;80;2;1;0;0;1;1
+15155;14657;1;165;60.0;120;80;1;1;0;0;0;1
+15156;15456;1;160;61.0;110;70;1;1;0;0;1;0
+15157;20295;1;174;80.0;140;90;1;1;0;0;0;1
+15158;20546;1;169;73.0;120;90;1;1;0;0;1;1
+15159;17545;2;169;69.0;150;80;1;1;0;0;1;1
+15160;21824;1;166;51.0;110;80;3;1;0;0;1;1
+15161;20285;2;176;76.0;110;70;2;2;1;0;0;0
+15162;19688;2;165;67.0;120;80;1;3;0;0;1;0
+15163;23304;1;163;69.0;110;70;1;1;0;0;1;0
+15164;20544;1;156;60.0;140;80;3;1;0;1;1;1
+15165;21742;2;155;61.0;140;90;1;1;0;0;1;1
+15166;19105;2;169;84.0;110;80;1;1;0;0;0;0
+15167;18932;1;162;98.0;120;80;1;1;0;0;1;1
+15168;17365;1;168;71.0;110;80;1;1;0;0;1;0
+15170;23102;1;167;101.0;120;80;1;1;1;1;1;0
+15174;21240;1;156;75.0;140;90;1;1;0;0;1;1
+15176;22140;2;158;62.0;100;80;1;1;0;0;0;0
+15177;20614;1;170;88.0;150;100;2;2;0;0;1;1
+15180;20293;2;173;83.0;120;80;1;1;0;0;1;0
+15181;18361;1;163;59.0;140;80;2;1;0;0;1;1
+15182;21669;1;153;37.0;150;80;3;3;0;0;1;1
+15185;18849;2;176;91.0;110;80;1;1;0;0;1;1
+15188;20564;2;165;60.0;120;80;3;3;0;0;0;0
+15189;16006;2;161;71.0;140;90;3;3;0;0;1;1
+15190;21110;1;165;71.0;110;60;1;1;0;0;1;0
+15191;21247;2;170;68.0;120;80;3;3;0;0;1;1
+15195;17298;1;154;86.0;145;90;1;1;0;0;1;0
+15196;21251;1;159;61.0;130;80;1;1;0;0;1;0
+15197;22405;2;165;81.0;140;90;3;3;1;1;1;0
+15200;21114;1;172;68.0;120;80;1;1;0;1;1;1
+15201;21265;1;170;145.0;140;90;1;1;0;0;0;1
+15202;20433;2;173;86.0;120;80;1;1;0;0;1;0
+15203;22573;2;178;80.0;130;80;3;1;0;0;1;1
+15204;18927;1;158;81.0;110;60;1;1;0;0;1;1
+15206;18170;2;174;112.0;120;80;1;1;0;0;1;0
+15208;18744;1;155;61.0;120;80;1;1;0;0;1;0
+15209;21982;1;166;60.0;100;80;1;1;0;0;1;0
+15212;16906;1;174;85.0;120;80;1;1;0;0;1;0
+15213;20343;1;160;65.0;130;40;3;1;0;0;0;1
+15214;18951;2;163;68.0;140;90;1;1;0;0;1;1
+15215;20305;1;155;78.0;120;80;1;1;0;0;1;1
+15216;16748;2;166;80.0;120;80;1;1;0;0;0;1
+15219;16710;1;151;52.0;110;70;2;1;0;0;1;1
+15220;16705;2;168;72.0;120;80;1;1;0;0;1;0
+15222;20415;1;156;71.0;130;80;1;1;0;0;1;0
+15223;14777;2;182;115.0;120;80;1;1;0;0;1;0
+15228;19149;2;175;85.0;120;80;1;1;0;0;1;0
+15231;22855;1;176;88.0;120;80;3;3;0;0;1;1
+15232;22562;2;167;77.0;150;90;1;1;0;0;1;1
+15233;20358;2;176;90.0;160;90;2;1;0;0;0;0
+15234;18979;2;168;94.0;120;90;1;1;0;0;0;0
+15236;19876;1;168;75.0;140;80;2;2;0;1;1;1
+15237;18161;2;172;75.0;140;90;3;3;0;0;1;1
+15238;19527;1;171;75.0;120;80;1;1;0;1;1;1
+15239;19133;1;184;110.0;140;90;1;1;0;0;1;0
+15244;21904;1;170;88.0;150;100;1;1;0;0;1;1
+15245;14422;1;164;56.0;140;70;1;1;0;0;0;0
+15246;14632;2;168;77.0;170;100;3;1;0;0;1;0
+15247;15456;1;153;55.0;120;80;1;1;0;0;1;0
+15248;18290;2;165;65.0;120;80;1;1;0;0;0;0
+15250;19783;1;152;65.0;180;90;1;1;0;0;1;1
+15251;19649;1;170;65.0;110;70;1;1;0;0;0;0
+15252;22692;2;170;86.0;120;70;1;1;1;1;1;0
+15253;23383;1;160;90.0;130;80;1;1;0;0;1;0
+15255;19766;1;158;68.0;120;70;1;1;0;0;1;0
+15257;19105;1;161;86.0;120;80;1;1;0;0;0;0
+15260;19047;1;150;70.0;130;80;2;2;0;0;1;0
+15261;19019;1;169;109.0;140;80;3;3;0;0;0;1
+15262;15285;1;145;45.0;120;80;1;1;0;0;1;0
+15265;18154;1;167;66.0;120;80;1;1;0;0;1;0
+15266;19861;1;165;60.0;120;80;1;1;0;0;0;0
+15267;21947;2;170;90.0;110;70;1;1;0;0;1;0
+15268;22464;1;158;60.0;180;90;1;1;0;0;1;1
+15269;20406;1;152;50.0;130;80;2;1;0;0;1;0
+15270;15965;2;173;93.0;110;80;1;1;0;0;1;0
+15271;22788;1;156;56.0;140;90;2;1;0;0;0;1
+15272;21919;1;165;67.0;120;70;2;1;0;0;1;0
+15273;22413;1;152;84.0;140;80;2;1;0;0;0;1
+15274;20572;2;173;83.0;130;80;2;2;1;0;1;0
+15275;15438;1;164;90.0;110;70;1;1;0;0;1;0
+15278;21030;1;172;101.0;130;80;3;1;0;0;1;1
+15280;18405;1;178;82.0;120;80;1;1;0;0;1;0
+15281;21072;2;173;71.0;120;80;1;1;0;0;1;0
+15282;21194;2;163;71.0;120;80;1;1;0;0;1;0
+15283;19079;1;154;80.0;110;70;1;1;0;0;0;0
+15284;21221;2;169;107.0;140;90;1;1;0;0;1;1
+15285;16341;1;168;70.0;120;80;1;1;0;0;1;0
+15288;23476;1;171;120.0;150;100;2;2;0;0;0;1
+15289;23453;1;164;64.0;120;60;1;1;0;0;1;1
+15290;23105;2;158;74.0;110;80;2;2;1;0;0;0
+15291;20591;2;158;63.0;130;90;3;1;1;1;1;1
+15293;19613;1;154;88.0;140;90;1;1;0;0;1;0
+15294;17600;1;171;73.0;110;70;1;3;0;0;1;1
+15295;19835;1;159;63.0;150;90;1;1;0;0;1;1
+15296;21739;1;147;51.0;150;80;1;1;0;0;1;0
+15297;20605;1;177;77.0;125;80;2;2;0;0;1;1
+15298;17596;2;162;64.0;120;80;1;1;0;0;1;0
+15299;22038;1;160;104.0;141;70;2;3;0;0;0;0
+15300;16046;2;166;98.0;110;80;3;3;0;0;1;1
+15302;20526;1;165;65.0;120;80;3;3;0;0;1;1
+15304;19839;1;163;100.0;130;80;1;1;0;0;1;1
+15305;23240;1;155;60.0;100;60;1;1;0;0;1;0
+15307;23330;2;176;90.0;130;70;2;2;0;0;0;1
+15308;22655;1;160;60.0;120;80;1;1;0;0;0;1
+15310;19075;1;168;71.0;120;80;1;1;0;0;1;0
+15311;18079;1;160;60.0;120;80;1;1;0;0;1;0
+15312;22798;1;169;67.0;120;80;1;1;0;0;1;1
+15315;20509;1;150;63.0;140;90;3;1;0;0;1;1
+15316;14638;1;167;71.0;100;60;1;1;0;0;1;1
+15317;18127;2;173;75.0;145;95;1;1;0;0;1;1
+15318;17272;1;168;72.0;120;80;1;1;0;0;1;0
+15319;19756;2;179;80.0;120;80;2;1;0;0;1;0
+15321;20629;2;176;117.0;150;90;1;1;0;0;1;1
+15324;18068;2;170;85.0;130;90;1;1;0;0;1;1
+15325;20357;1;158;62.0;120;80;1;1;0;0;1;1
+15328;17316;1;148;77.0;150;90;2;1;0;0;1;1
+15329;16709;1;170;70.0;12;80;2;1;0;0;1;0
+15330;20523;1;145;82.0;150;90;1;1;0;0;1;1
+15334;14354;2;164;90.0;120;80;2;1;0;0;1;1
+15335;23435;1;162;82.0;140;90;1;1;0;0;1;0
+15337;19567;1;163;71.0;120;80;1;1;0;0;0;0
+15340;21830;1;157;75.0;130;80;3;3;0;0;1;1
+15341;16692;1;167;86.0;150;90;1;1;0;0;1;1
+15342;18913;2;157;67.0;130;80;1;1;0;0;1;1
+15343;19878;1;160;90.0;150;1000;2;2;0;0;1;1
+15344;21924;2;165;65.0;120;80;1;1;0;0;1;0
+15346;21378;1;161;58.0;130;90;1;1;0;0;0;0
+15348;14555;1;162;59.0;140;90;1;1;0;0;1;1
+15349;15937;2;175;83.0;120;80;1;1;0;0;1;0
+15350;18059;1;163;71.0;120;80;1;1;0;0;1;0
+15351;22494;2;164;64.0;170;100;1;1;1;0;1;1
+15352;21311;2;163;62.0;120;70;2;1;0;0;1;1
+15353;21721;2;172;72.0;140;100;1;1;0;0;1;1
+15354;17998;1;160;73.0;120;80;1;1;0;0;1;1
+15355;20375;1;169;126.0;120;79;2;2;0;0;1;0
+15356;20389;1;168;66.0;120;80;2;1;0;0;1;0
+15358;20619;1;165;65.0;120;80;1;1;0;0;1;0
+15362;17560;1;155;74.0;120;80;1;1;0;0;1;0
+15364;21933;1;174;70.0;90;60;1;1;0;0;1;1
+15367;18252;1;156;68.5;120;80;3;1;0;0;1;1
+15368;14650;1;159;56.0;115;60;2;1;0;0;1;0
+15369;20743;2;170;77.0;90;130;1;1;0;0;0;0
+15370;18038;2;175;68.0;120;80;1;1;0;0;1;0
+15371;21151;1;163;82.0;120;80;1;1;0;0;1;0
+15373;18326;1;151;78.0;120;80;1;1;0;0;1;0
+15375;16053;1;168;57.0;90;60;1;1;0;0;1;0
+15376;23321;1;162;74.0;150;90;3;1;0;0;1;1
+15378;21754;1;155;85.0;140;90;3;1;0;0;0;1
+15380;15661;1;170;68.0;120;80;1;1;0;0;1;0
+15382;18083;1;161;91.0;130;80;1;1;0;0;0;1
+15383;14599;2;167;79.0;110;70;1;1;1;0;0;0
+15385;15295;1;175;75.0;120;80;1;1;0;0;1;0
+15386;20938;1;147;51.0;178;108;1;1;0;0;0;0
+15387;15183;1;175;70.0;120;80;1;1;0;0;0;0
+15390;14742;2;178;89.0;110;70;1;1;0;0;1;1
+15391;15928;1;155;78.0;110;70;2;1;0;0;1;1
+15392;23387;1;168;83.0;160;90;1;1;0;0;1;1
+15393;20196;2;181;86.0;135;80;1;1;1;1;1;1
+15395;15933;1;158;64.0;90;60;1;1;0;0;0;0
+15396;16792;2;180;95.0;120;80;1;1;1;0;1;1
+15397;20376;1;164;80.0;140;100;1;1;0;0;1;1
+15398;21209;1;154;68.0;110;70;1;1;0;0;0;0
+15400;19805;1;157;82.0;160;100;3;1;0;0;1;1
+15403;21429;2;168;75.0;120;80;1;1;0;0;1;0
+15407;23553;2;165;70.0;150;90;2;1;0;0;1;1
+15408;15931;2;170;103.0;140;95;3;1;0;0;1;0
+15409;19548;1;154;52.0;120;80;1;1;0;0;1;0
+15410;18184;1;165;65.0;120;80;1;1;0;0;1;0
+15411;18832;1;160;60.0;140;90;1;1;0;0;1;1
+15412;21854;1;161;98.0;140;90;2;2;0;0;0;1
+15414;18988;1;164;65.0;120;80;1;1;0;0;1;0
+15416;16642;1;162;63.0;150;90;1;1;0;0;1;1
+15417;21070;1;162;74.0;120;80;1;1;0;0;1;0
+15418;21059;2;172;63.0;120;80;1;1;0;0;1;0
+15419;20448;1;169;75.0;160;80;1;1;0;0;0;1
+15422;14453;1;157;75.0;100;70;2;1;1;0;1;1
+15423;21836;1;166;75.0;140;80;1;1;0;0;1;1
+15424;20375;2;158;61.0;120;60;1;1;0;0;0;1
+15425;21295;1;162;74.0;120;80;1;1;0;0;1;1
+15428;21862;1;168;98.0;140;90;1;1;0;0;1;0
+15429;17393;1;168;90.0;110;80;1;1;0;0;1;0
+15431;15316;1;160;58.0;120;80;1;1;0;0;1;0
+15432;22606;2;160;62.0;100;70;1;1;1;0;1;0
+15433;14583;1;162;72.0;120;80;2;1;0;0;1;0
+15434;23291;2;167;104.0;130;95;3;2;0;1;1;1
+15436;23453;1;165;69.0;148;80;1;1;0;0;1;1
+15437;18405;2;166;61.0;110;70;1;1;1;0;1;0
+15438;18055;1;150;101.0;130;80;3;3;1;0;1;1
+15439;22637;2;173;73.0;120;80;1;1;0;0;0;0
+15440;18858;1;163;97.0;190;1000;3;1;0;0;1;1
+15444;21263;1;159;68.0;140;90;1;1;0;0;1;1
+15446;21312;2;169;66.0;150;90;1;1;0;0;1;1
+15447;22007;1;165;54.0;120;80;1;1;0;0;1;0
+15448;22583;1;155;62.0;150;80;1;1;0;0;0;1
+15449;15150;2;173;76.0;120;80;3;3;0;0;0;0
+15450;22128;1;161;70.0;120;80;1;1;0;0;1;1
+15451;19163;2;167;79.0;120;80;1;1;1;1;1;0
+15453;23440;1;165;62.0;110;80;1;1;0;0;1;1
+15454;22490;1;164;85.0;140;90;3;1;0;0;1;1
+15457;21095;2;174;87.0;150;100;2;1;0;0;1;1
+15458;22060;2;164;80.0;120;80;1;1;0;0;1;1
+15459;21294;2;174;90.0;140;90;1;1;1;0;1;1
+15461;17370;2;160;70.0;130;85;1;1;0;0;1;0
+15465;15917;1;167;73.0;120;80;1;1;0;0;1;0
+15466;18367;1;168;60.0;110;80;2;1;0;0;1;0
+15467;23421;1;162;52.0;110;90;1;1;0;0;1;1
+15468;20300;2;165;85.0;110;70;1;1;0;0;1;1
+15469;23492;2;171;73.0;120;80;1;1;0;0;0;0
+15471;22679;1;162;74.0;120;80;1;1;0;0;0;1
+15472;20499;2;174;85.0;130;80;1;1;0;0;1;0
+15473;15503;2;175;84.0;110;70;1;1;1;0;1;0
+15474;16753;1;161;51.0;110;70;1;1;0;0;1;1
+15475;20424;1;159;81.0;120;80;1;1;1;0;1;1
+15479;23295;2;160;71.0;130;80;2;1;1;0;0;1
+15480;16534;1;178;65.0;140;80;1;1;0;0;0;1
+15481;19645;2;180;85.0;110;70;1;1;0;0;1;1
+15482;23308;1;167;78.0;140;90;1;1;0;0;1;0
+15483;15466;1;160;84.0;130;70;1;1;0;0;1;1
+15484;21147;2;178;70.0;120;80;1;1;0;0;1;0
+15485;19926;1;162;80.0;120;80;1;1;0;0;1;0
+15486;19584;1;164;60.0;100;80;3;1;0;0;1;1
+15487;22638;2;170;81.0;140;90;2;1;0;0;0;0
+15488;21847;1;161;69.0;120;70;2;1;0;0;1;0
+15489;20278;1;159;88.0;110;60;1;1;0;0;0;0
+15490;23466;2;163;63.0;120;80;1;1;0;0;0;1
+15491;18881;1;167;77.0;150;100;2;1;0;0;1;0
+15492;18859;1;162;75.0;130;80;1;1;0;0;1;1
+15496;21737;1;157;78.0;140;90;1;1;0;0;1;1
+15498;19786;2;167;75.0;140;79;1;1;0;0;1;0
+15499;20533;1;164;85.0;130;80;1;1;0;0;1;1
+15500;19677;1;145;56.0;130;90;1;1;0;0;1;0
+15501;18250;1;160;99.0;160;80;3;3;0;0;1;1
+15504;22778;1;153;75.0;140;90;3;1;0;0;1;0
+15505;15216;1;165;61.0;120;80;1;1;0;0;1;0
+15507;15807;1;160;76.0;140;90;1;1;0;0;0;1
+15510;18906;1;170;62.0;120;80;1;1;0;0;1;0
+15512;20561;2;164;73.0;120;80;1;1;0;0;1;0
+15514;18586;2;180;83.0;140;100;1;1;0;1;1;1
+15515;18858;2;185;83.0;120;95;1;1;0;0;0;1
+15516;23531;1;155;85.0;110;80;1;1;0;0;1;1
+15517;21273;2;166;92.0;140;80;2;2;1;0;1;1
+15518;18455;1;163;58.0;120;80;1;1;0;0;0;0
+15520;21074;1;165;65.0;120;80;1;1;0;0;1;0
+15522;18266;1;162;62.0;120;90;1;1;0;0;1;0
+15523;22670;1;157;83.0;110;90;2;1;0;0;0;0
+15524;20430;1;156;96.0;110;90;1;1;0;0;1;1
+15525;22804;2;163;64.0;120;80;1;1;0;0;1;0
+15526;18976;1;170;70.0;120;80;3;3;0;0;1;0
+15527;19720;2;162;56.0;120;80;1;1;0;0;1;0
+15528;20429;1;160;110.0;130;80;1;1;0;0;0;1
+15529;19558;1;164;85.0;160;708;1;1;0;0;1;0
+15533;19739;2;168;80.0;130;80;1;2;0;0;0;0
+15534;17477;1;170;68.0;120;80;1;1;0;0;1;1
+15535;23265;1;156;56.0;130;90;3;1;0;0;1;1
+15537;18269;1;170;78.0;140;90;3;1;0;0;1;1
+15538;16331;2;168;65.0;110;70;1;1;0;0;1;0
+15540;23486;1;166;115.0;140;80;1;2;0;0;1;1
+15541;18249;1;157;76.0;110;60;1;1;0;0;0;0
+15542;17445;2;176;79.0;110;70;1;1;0;0;1;1
+15544;21792;1;162;64.0;130;80;1;1;0;0;1;0
+15545;20342;1;156;80.0;150;90;2;1;0;0;1;1
+15546;23312;2;171;84.0;130;80;3;3;0;0;1;1
+15548;21889;2;167;61.0;110;70;2;1;1;0;0;0
+15550;14518;2;190;89.0;145;80;2;1;1;0;1;1
+15552;21150;2;178;92.0;130;90;2;1;1;1;1;1
+15553;22627;2;180;108.0;120;80;2;2;0;0;1;0
+15554;19001;1;160;55.0;120;80;1;1;0;0;1;1
+15555;18482;1;165;62.0;150;90;1;1;0;0;1;1
+15556;15183;1;165;63.0;100;70;1;1;0;0;1;0
+15557;21134;2;165;62.0;105;80;1;1;0;0;1;1
+15561;17583;1;161;74.0;100;60;1;1;0;0;1;0
+15563;18135;1;157;59.0;150;100;1;1;0;0;1;1
+15564;22658;2;165;65.0;140;80;3;1;0;0;1;1
+15565;15942;1;160;74.0;130;80;1;2;0;0;1;1
+15566;19521;1;159;66.0;140;90;2;1;0;0;1;0
+15567;22682;1;160;83.0;130;80;1;1;0;0;0;1
+15569;14534;1;167;60.0;110;80;1;1;0;0;1;0
+15570;19689;1;170;95.0;120;80;2;1;0;0;0;0
+15572;15922;1;158;81.0;150;90;3;3;0;0;1;0
+15573;19029;1;166;89.0;120;80;1;1;0;0;1;0
+15574;19484;1;163;79.0;130;90;2;1;0;0;0;1
+15577;20703;2;155;53.0;120;80;1;1;0;0;1;1
+15578;17647;2;170;61.0;125;70;1;1;0;0;1;0
+15579;20468;2;162;63.0;120;80;1;1;0;0;1;0
+15580;16057;1;171;65.0;120;80;1;1;0;0;1;0
+15581;19010;1;159;71.0;110;80;1;1;0;1;0;0
+15582;21414;2;175;105.0;150;80;2;1;0;0;1;0
+15583;22630;2;170;69.0;120;90;1;1;0;0;1;0
+15585;22037;1;180;75.0;120;80;1;1;0;0;1;1
+15586;22658;1;162;64.0;130;70;1;1;0;0;1;0
+15587;23331;1;164;63.0;150;90;1;1;0;0;1;0
+15590;22442;1;163;59.0;120;80;1;1;0;0;1;0
+15591;18440;1;160;98.0;110;80;3;3;0;0;1;0
+15592;21307;1;155;69.0;110;70;1;2;0;0;1;0
+15594;18315;1;169;82.0;160;80;1;1;0;0;0;1
+15595;23442;2;168;108.0;150;100;1;2;1;1;1;1
+15597;19031;1;159;63.0;110;80;1;1;0;0;1;1
+15599;21755;1;178;72.0;140;90;2;1;0;0;1;1
+15601;18034;2;160;70.0;110;70;3;3;0;0;1;1
+15602;18249;1;163;88.0;110;70;1;1;0;0;1;1
+15604;16702;1;164;66.0;90;70;1;1;0;0;1;0
+15606;14645;1;167;99.0;110;70;1;1;0;0;1;1
+15609;16775;2;165;65.0;120;70;1;1;0;0;0;0
+15610;23543;2;168;71.0;110;70;1;1;0;0;1;0
+15611;18394;1;156;58.0;120;80;1;1;0;0;1;0
+15612;15480;2;178;72.0;120;80;1;1;0;0;1;0
+15613;23138;2;163;61.0;130;80;1;1;0;0;1;1
+15614;23420;2;166;74.0;120;90;1;1;0;0;1;1
+15616;21208;2;169;70.0;120;80;2;2;0;0;1;0
+15617;14543;1;159;56.0;120;70;1;1;0;0;1;0
+15618;21882;1;160;83.0;140;80;2;1;0;0;0;1
+15620;15463;2;174;69.0;120;80;1;1;0;0;1;0
+15621;15067;2;165;70.0;110;70;1;1;0;0;1;0
+15623;22420;1;164;61.0;170;1000;3;3;0;0;1;1
+15625;21203;1;154;63.0;140;90;3;1;0;0;1;1
+15629;22065;1;156;72.0;120;80;1;1;0;0;1;0
+15630;21710;2;174;102.0;150;90;2;2;0;0;0;1
+15632;16688;2;172;75.0;170;100;2;1;0;0;1;1
+15634;22632;1;154;52.0;120;80;1;1;0;0;0;0
+15635;21250;1;160;79.0;125;80;1;1;0;0;0;0
+15636;19152;2;176;60.0;120;80;1;2;1;0;1;0
+15637;17960;1;165;65.0;120;80;1;1;0;0;1;1
+15639;17419;2;171;74.0;110;70;1;1;0;0;0;1
+15640;19729;1;161;76.0;120;80;1;1;0;0;1;0
+15643;18039;2;169;62.0;120;80;1;1;1;0;1;0
+15644;16665;2;175;65.0;110;70;1;1;0;0;1;0
+15645;15352;2;165;71.0;190;90;1;1;0;0;0;1
+15646;18324;1;169;70.0;120;79;1;1;0;0;0;0
+15648;22734;1;170;85.0;120;80;1;3;0;0;0;0
+15649;21777;1;159;69.0;113;72;1;1;0;0;1;0
+15650;23414;1;154;56.0;150;80;1;1;0;0;0;1
+15652;21795;1;170;70.0;180;100;1;1;0;0;1;0
+15653;16740;2;174;71.0;120;80;1;1;1;0;0;0
+15654;16042;1;164;84.0;120;80;1;1;0;0;1;0
+15656;21893;1;162;88.0;170;100;3;1;0;0;1;1
+15660;20421;1;162;85.0;150;90;1;1;0;0;1;0
+15661;21226;2;165;80.0;120;80;2;1;0;0;0;0
+15662;23393;2;169;81.0;140;90;1;1;1;0;1;1
+15663;20952;1;152;64.0;100;80;1;1;0;0;1;0
+15664;19065;1;161;76.0;130;90;1;1;0;1;1;0
+15665;16733;1;168;64.0;110;69;1;1;0;0;1;0
+15668;21871;1;174;69.0;120;79;1;1;0;0;1;0
+15669;19079;1;155;78.0;126;73;2;1;0;0;1;0
+15670;18340;1;150;62.0;110;80;1;1;0;0;1;0
+15672;14532;2;169;72.0;120;80;1;1;0;1;1;0
+15673;21837;1;155;72.0;140;90;3;1;0;0;0;1
+15675;15221;1;157;82.0;120;80;1;1;0;0;1;0
+15676;18714;1;157;86.0;150;90;3;3;0;0;1;1
+15677;20910;2;174;61.0;150;80;1;1;1;1;1;1
+15678;19817;1;170;64.0;120;70;2;1;0;0;1;1
+15681;19131;1;170;78.0;140;80;1;1;0;0;1;1
+15683;16788;2;174;65.0;120;90;1;2;0;1;1;0
+15685;19060;2;175;106.0;120;80;1;1;1;0;1;0
+15687;20402;1;162;56.0;120;80;1;1;0;0;1;0
+15689;23224;1;161;74.0;120;60;1;1;0;0;1;0
+15690;18353;1;152;72.0;110;70;1;1;0;0;1;0
+15692;21798;1;165;66.0;120;80;1;1;0;0;1;0
+15693;21232;2;177;76.0;120;80;1;1;0;0;1;0
+15694;15308;1;166;90.0;140;90;1;1;0;0;1;1
+15695;18304;1;152;56.0;90;60;1;1;0;0;0;1
+15696;22605;1;156;59.0;120;70;1;1;0;0;1;0
+15699;18298;1;169;58.0;120;80;1;1;0;0;0;0
+15700;16655;1;145;45.0;90;50;1;1;0;0;0;0
+15701;18315;1;165;92.0;110;70;1;1;0;0;1;0
+15702;23143;1;165;73.0;135;80;1;1;0;0;0;1
+15703;18206;1;164;62.0;120;80;1;1;0;0;1;0
+15704;14448;2;174;67.0;110;80;1;1;0;0;1;0
+15708;20263;2;160;60.0;120;80;1;1;0;1;1;0
+15709;15010;2;168;100.0;140;90;1;1;0;1;1;1
+15710;20432;2;172;70.0;120;80;1;1;0;0;1;1
+15711;20277;2;170;74.0;160;80;2;1;0;0;1;1
+15712;22682;2;176;86.0;160;100;1;1;0;0;1;1
+15713;22771;1;160;78.0;150;60;2;1;0;0;0;1
+15714;23253;1;155;67.0;120;80;3;2;0;0;1;1
+15716;14505;2;180;92.0;130;90;3;3;0;0;1;1
+15717;22439;1;164;84.0;140;90;1;1;0;0;1;1
+15721;19535;1;178;65.0;120;80;1;1;0;1;1;0
+15722;18975;1;164;70.0;120;80;1;1;0;0;1;1
+15723;20310;1;153;58.0;120;80;2;2;0;0;1;1
+15725;18211;1;161;70.0;110;70;1;1;0;0;1;0
+15726;20661;2;173;92.0;120;80;1;1;0;0;1;0
+15727;16733;2;170;65.0;120;80;1;1;0;0;1;0
+15728;23323;2;172;85.0;100;70;1;1;0;0;1;0
+15729;23263;1;170;69.0;130;90;1;1;0;0;1;1
+15730;22201;1;165;72.0;130;90;1;1;0;0;0;1
+15731;20872;2;172;90.0;130;80;1;1;0;0;1;1
+15734;19813;1;165;71.0;120;80;1;1;0;0;0;0
+15736;21772;2;174;70.0;180;100;2;2;1;0;1;0
+15737;18229;1;157;65.0;140;90;1;1;0;0;1;1
+15740;20390;2;173;85.0;120;80;1;1;0;0;0;1
+15741;19534;2;174;73.0;130;80;2;1;0;0;1;1
+15742;14442;1;173;73.0;120;80;1;1;0;0;1;0
+15743;19608;2;169;84.0;130;80;1;1;0;0;1;0
+15744;16907;1;159;51.0;110;70;1;1;0;0;1;0
+15745;20332;2;170;83.0;150;80;2;1;1;0;1;1
+15746;16048;2;179;80.0;120;80;2;2;0;0;1;0
+15747;21863;1;173;62.0;110;60;1;1;0;0;0;0
+15748;14754;1;164;68.0;90;70;1;2;0;0;0;0
+15749;16621;1;162;65.0;110;70;1;1;0;0;1;0
+15752;22789;2;170;58.0;160;1000;1;1;0;0;1;1
+15753;18953;1;157;67.0;120;90;1;1;0;0;1;0
+15754;19057;1;170;102.0;170;100;1;1;0;0;1;1
+15755;16755;1;168;74.0;120;80;1;1;0;0;1;0
+15756;21711;1;157;98.0;130;90;1;1;0;0;1;0
+15757;20216;1;170;103.0;120;80;3;1;0;0;1;1
+15758;23253;1;154;72.0;130;80;3;3;0;0;1;1
+15759;17333;2;165;68.0;140;100;1;1;0;0;1;1
+15760;22549;1;158;93.0;120;80;1;1;0;0;1;1
+15762;15948;1;167;84.0;90;60;1;1;0;0;0;0
+15763;19554;1;159;62.0;120;60;1;1;0;0;1;1
+15764;19007;1;158;58.0;110;70;1;1;0;0;1;0
+15765;18325;1;164;61.0;90;60;1;1;0;0;1;0
+15766;19579;2;166;90.0;140;80;3;1;0;0;1;1
+15767;21712;1;154;78.0;160;100;1;1;0;0;1;1
+15768;21959;1;165;63.0;120;80;1;2;0;0;1;0
+15769;20609;1;168;75.0;150;90;1;1;0;0;1;1
+15774;18016;1;170;65.0;110;70;1;1;0;0;1;0
+15776;20336;2;159;58.0;160;90;1;1;0;0;1;1
+15777;22703;2;187;96.0;120;80;1;1;0;0;1;1
+15779;21232;2;166;72.0;110;90;1;1;0;0;1;1
+15780;19727;1;167;78.0;120;80;2;1;0;0;1;0
+15781;17388;2;177;83.0;110;70;1;1;0;0;0;0
+15782;22523;1;160;90.0;120;80;1;1;0;0;1;0
+15783;19001;1;163;62.0;140;90;1;1;0;0;1;1
+15785;22523;1;160;71.0;110;80;3;2;0;0;1;1
+15786;18906;1;165;70.0;120;80;1;1;0;0;1;1
+15787;16201;2;175;69.0;120;80;1;1;0;0;0;0
+15788;18876;2;165;73.0;120;80;1;1;0;0;1;1
+15789;23149;1;161;92.0;140;90;3;3;0;0;1;1
+15790;18295;2;163;54.0;120;80;1;1;1;0;1;0
+15792;21184;1;158;78.0;120;70;1;1;0;0;1;0
+15793;21841;1;170;63.0;100;70;1;1;0;0;1;0
+15794;22613;1;162;81.0;140;80;1;1;0;0;1;1
+15795;22784;1;160;66.0;120;90;1;1;0;0;1;1
+15796;19712;1;159;77.0;120;80;2;2;0;0;1;0
+15797;20461;1;157;90.0;130;90;1;1;0;0;1;1
+15799;16573;1;162;71.0;100;70;1;1;0;0;0;0
+15800;17652;1;165;65.0;120;80;1;1;0;0;1;0
+15801;20237;1;170;60.0;130;90;2;1;0;0;1;0
+15803;19507;1;164;80.0;120;80;1;1;0;0;0;0
+15804;20251;2;172;72.0;120;80;1;1;0;0;1;0
+15805;18173;2;174;86.0;130;90;1;1;0;0;1;1
+15806;20490;2;164;75.0;140;100;2;2;0;0;1;1
+15807;18265;2;165;59.0;12;90;1;1;0;0;1;0
+15810;19164;1;156;56.0;120;80;1;1;0;0;1;0
+15811;19602;1;162;109.0;110;70;1;1;0;0;1;0
+15812;20391;1;157;103.0;120;70;1;1;0;0;1;0
+15813;16730;1;159;63.0;120;80;1;1;0;0;1;0
+15814;17384;1;161;69.0;120;80;1;1;0;1;1;0
+15815;19816;1;166;68.0;120;80;1;1;0;0;1;0
+15816;21965;1;156;76.0;90;60;3;1;0;0;1;1
+15817;22493;1;178;69.0;160;80;1;1;0;0;1;0
+15818;23229;1;164;90.0;130;80;2;1;0;0;1;1
+15821;16067;1;174;84.0;80;120;1;1;0;0;1;0
+15822;23642;1;148;68.0;140;80;3;3;0;0;0;1
+15823;15212;1;168;82.0;120;70;1;1;0;0;1;0
+15824;22668;2;179;71.0;140;90;1;1;0;0;0;1
+15825;22439;1;153;68.0;140;80;3;1;0;0;1;1
+15827;16210;1;151;62.0;120;80;1;1;0;0;1;0
+15828;21147;1;165;65.0;150;90;1;3;0;0;1;1
+15829;16181;2;168;89.0;120;60;1;1;0;0;1;0
+15832;17666;2;165;70.0;120;80;2;1;0;0;1;0
+15833;18836;1;155;78.0;120;80;2;2;0;0;1;0
+15835;18466;1;172;89.0;130;90;1;1;0;0;1;1
+15836;16675;1;162;70.0;110;80;1;2;0;0;1;0
+15838;20394;2;167;85.0;140;90;1;2;1;0;1;1
+15839;21247;2;167;74.0;110;80;1;1;0;0;1;0
+15841;14882;1;154;81.0;100;60;2;1;0;0;1;0
+15842;18128;2;170;72.0;130;80;1;1;1;1;1;0
+15844;20418;1;152;78.0;120;70;1;1;0;0;1;1
+15845;21140;2;160;69.0;160;90;3;1;0;0;1;1
+15847;19120;2;173;88.0;160;90;1;1;0;0;1;1
+15848;20541;1;159;103.0;140;90;2;1;0;0;1;1
+15849;19621;2;175;96.0;140;90;3;3;0;0;1;1
+15851;20580;2;166;75.0;180;120;1;1;0;0;1;0
+15853;18794;2;165;60.0;120;80;1;1;0;0;1;0
+15854;22634;1;170;79.0;150;90;2;2;0;0;1;1
+15855;19000;1;164;95.0;155;80;1;1;0;0;1;1
+15857;23115;1;160;82.0;130;80;3;3;0;0;0;1
+15858;14823;1;165;66.0;120;70;1;1;0;0;1;0
+15859;20434;2;170;62.0;120;80;1;1;0;1;1;0
+15860;23382;2;172;73.0;120;80;1;1;0;0;1;0
+15861;21267;1;165;56.0;120;80;1;1;0;0;1;0
+15863;21739;2;173;100.0;140;90;1;3;0;0;1;0
+15864;21056;2;162;82.0;162;82;1;1;0;0;0;1
+15865;19935;1;154;87.0;140;80;2;2;1;0;1;1
+15867;16713;2;164;80.0;120;80;1;1;0;0;1;0
+15869;18508;1;168;64.0;120;80;1;1;0;0;1;0
+15870;18511;1;157;57.0;140;80;1;1;0;0;1;1
+15871;20389;1;174;65.0;160;100;2;2;0;0;1;0
+15872;23154;1;158;64.0;135;80;1;1;0;0;1;1
+15873;22127;2;166;78.0;150;90;2;1;1;1;1;1
+15874;15964;2;167;79.0;140;90;1;1;0;0;1;1
+15875;23236;2;158;90.0;140;90;1;1;1;1;1;1
+15876;20438;1;154;91.0;130;80;1;1;0;0;0;1
+15877;19084;2;166;53.0;80;60;1;1;1;0;1;0
+15878;16793;1;159;74.0;120;80;1;1;0;0;1;0
+15879;23244;1;168;85.0;135;85;1;1;1;0;1;1
+15880;16064;1;156;73.0;150;90;3;1;0;0;1;0
+15881;23475;2;176;65.0;160;100;3;1;0;0;1;1
+15882;21962;2;162;75.0;120;80;1;1;0;0;0;0
+15883;16058;1;153;56.0;90;60;1;1;0;0;1;0
+15885;18130;1;160;75.0;140;90;3;3;0;0;0;0
+15886;14824;2;174;83.0;140;90;2;1;1;0;1;1
+15887;20166;1;163;76.0;130;80;1;1;0;0;1;1
+15888;23089;1;148;48.0;120;70;1;1;0;0;1;0
+15889;22541;2;158;56.0;140;90;1;3;0;0;1;0
+15890;20973;1;149;79.0;110;70;1;3;0;0;1;1
+15892;22346;1;164;78.0;130;80;1;1;0;0;1;0
+15893;21327;1;152;81.0;90;80;1;1;0;0;1;0
+15894;16140;1;162;77.0;120;80;1;1;0;0;1;1
+15895;20619;2;177;92.0;140;100;1;1;0;0;1;1
+15896;15089;1;168;77.0;110;80;1;1;0;0;1;0
+15898;16306;2;179;97.0;120;80;1;1;0;0;1;0
+15901;19965;2;156;65.0;120;80;1;1;0;0;1;0
+15902;18325;1;163;70.0;140;80;1;1;0;0;1;1
+15903;15872;2;173;73.0;120;80;1;1;0;0;1;0
+15904;16132;1;165;68.0;100;80;1;1;0;0;1;0
+15907;21988;1;165;95.0;130;80;3;3;0;0;1;1
+15909;18081;2;169;59.0;120;80;1;1;0;0;1;0
+15910;21053;1;151;72.0;180;100;1;1;0;0;1;1
+15911;22441;2;176;82.0;150;1000;1;1;1;1;1;1
+15912;18850;2;165;66.0;120;80;1;1;0;0;1;1
+15914;20407;1;168;60.0;140;80;1;1;0;0;0;1
+15915;22020;1;169;100.0;140;90;2;3;0;0;1;0
+15916;18942;1;168;78.0;150;90;1;1;0;0;1;1
+15917;19502;1;166;84.0;140;90;1;3;0;0;1;0
+15918;23484;1;164;60.0;110;80;1;1;0;0;1;1
+15919;22646;1;165;65.0;120;80;3;3;0;0;0;1
+15921;19655;1;160;93.0;160;100;2;2;0;0;0;1
+15922;18906;1;158;72.0;120;80;1;1;0;0;1;1
+15925;22656;1;165;74.0;130;80;3;1;0;0;1;0
+15926;18730;1;155;59.0;120;80;1;1;0;0;0;0
+15927;16022;1;170;76.0;120;80;1;1;0;0;1;0
+15929;21776;1;165;89.0;160;90;3;2;0;0;1;0
+15931;20411;1;160;87.0;110;80;3;3;0;0;1;1
+15933;18290;1;167;60.0;120;80;1;1;0;0;1;0
+15935;22682;1;154;52.0;120;80;1;1;0;0;1;0
+15938;21155;1;165;77.0;120;90;1;1;0;0;1;0
+15939;15989;1;167;65.0;11;60;1;1;0;0;1;0
+15940;18784;2;177;85.0;140;80;2;1;0;0;1;0
+15941;22769;2;171;60.0;130;80;3;3;0;0;1;0
+15944;21171;2;174;54.0;120;80;2;2;0;0;1;0
+15946;21855;1;156;55.0;120;80;2;3;0;0;1;1
+15947;19859;1;161;66.0;140;90;1;1;0;0;1;1
+15948;22121;1;160;70.0;130;90;3;3;0;0;1;1
+15949;20655;1;163;88.0;160;80;1;1;0;0;0;1
+15954;23164;1;145;47.0;140;90;1;1;0;0;0;0
+15955;18257;1;167;68.0;120;80;1;1;0;0;0;0
+15956;19128;1;167;68.0;120;80;1;1;0;0;0;0
+15957;19535;1;158;80.0;130;80;1;1;0;0;0;0
+15958;17551;1;160;57.0;100;60;1;1;0;0;0;0
+15959;22381;2;159;50.0;110;80;1;1;0;0;1;1
+15960;19819;2;162;55.0;149;90;1;1;0;0;1;1
+15962;21142;2;165;57.0;120;60;1;1;0;0;1;0
+15963;20420;1;160;70.0;120;80;1;1;0;0;0;0
+15964;15115;1;157;68.0;120;70;1;1;0;0;1;0
+15966;18865;1;164;98.0;140;100;1;1;0;0;1;1
+15967;17449;1;168;67.0;120;80;1;1;0;0;0;0
+15968;18503;2;159;54.0;120;60;1;1;0;0;1;0
+15969;23366;1;174;79.0;130;70;3;1;0;0;0;1
+15971;18949;1;172;82.0;120;80;1;1;0;0;1;0
+15972;19661;2;164;64.0;160;90;1;1;0;0;1;1
+15973;20499;1;167;82.0;145;85;1;1;0;1;1;1
+15975;20543;1;158;68.0;150;80;1;1;0;0;0;1
+15976;15386;1;157;58.0;110;70;1;1;0;0;1;0
+15977;18430;1;165;77.0;110;70;1;1;0;0;1;0
+15978;18285;1;171;67.0;110;70;1;1;0;0;1;0
+15979;21073;2;170;73.0;130;80;1;1;0;0;1;0
+15980;19214;1;162;57.0;120;80;3;3;0;0;1;1
+15981;22619;1;154;55.0;180;100;1;2;0;0;0;0
+15983;18670;1;171;80.0;120;80;1;1;0;0;1;0
+15985;21214;1;160;69.0;120;80;3;1;0;0;1;0
+15986;18840;2;178;76.0;140;80;3;2;1;0;1;1
+15989;17579;1;158;78.0;120;80;1;1;0;0;1;0
+15990;16064;2;172;91.0;120;80;1;1;0;0;0;0
+15991;22083;1;120;80.0;120;80;1;1;0;0;1;0
+15992;18403;1;157;68.0;150;90;1;1;0;0;1;1
+15993;20388;1;171;84.0;120;80;1;1;0;0;1;0
+15994;16788;1;157;42.0;100;60;1;1;0;0;1;0
+15996;21891;1;165;65.0;120;79;1;1;0;0;0;0
+15997;17344;2;175;80.0;120;80;1;1;1;1;1;0
+15998;16611;1;167;75.0;120;80;1;1;0;0;1;1
+15999;21193;1;167;78.0;120;70;1;1;0;0;1;0
+16001;22693;1;148;71.0;170;90;1;2;0;0;1;0
+16004;22399;1;150;73.0;160;90;2;1;0;0;1;1
+16005;19721;1;157;104.0;130;80;1;1;0;0;0;0
+16007;18464;1;166;66.0;95;140;1;1;0;0;1;1
+16010;19694;2;176;60.0;90;60;1;1;0;0;0;0
+16013;20429;1;164;83.0;130;80;1;1;0;0;1;0
+16014;20414;1;160;58.0;150;70;1;1;0;0;0;1
+16015;18375;2;174;80.0;110;70;1;1;1;0;1;1
+16017;21884;2;160;80.0;160;70;3;1;0;0;1;1
+16018;22895;2;168;70.0;110;70;1;1;0;0;0;1
+16019;18161;1;165;60.0;130;80;1;1;0;0;1;0
+16020;15129;2;165;68.0;110;70;1;1;1;0;1;1
+16021;21791;1;160;58.0;160;90;1;2;0;0;0;1
+16022;21289;1;163;60.0;120;80;1;1;0;0;0;1
+16023;18375;1;165;85.0;160;100;2;1;0;0;0;1
+16024;21224;1;164;65.0;120;80;1;1;0;0;1;0
+16025;19022;2;168;69.0;140;1000;3;3;0;0;1;1
+16027;23190;2;172;69.0;125;75;1;1;0;0;1;0
+16028;19806;2;161;79.5;140;90;1;1;0;0;1;1
+16029;16297;1;172;74.0;110;70;1;1;0;0;1;0
+16030;21133;2;169;105.0;150;90;1;1;0;0;1;1
+16031;22040;1;173;110.0;160;80;1;1;0;0;1;1
+16032;21833;1;158;102.0;120;80;2;2;0;0;1;1
+16034;22684;1;162;98.0;140;100;2;2;0;0;0;1
+16035;23448;1;159;82.0;150;90;1;1;0;0;0;1
+16039;20551;1;167;108.0;150;100;1;1;0;0;1;1
+16040;16717;2;167;64.0;120;80;1;1;0;0;1;0
+16041;20521;1;165;65.0;150;90;1;1;0;0;0;1
+16043;23355;1;158;55.0;100;70;1;1;0;0;1;0
+16044;20206;1;162;85.0;140;80;1;1;0;0;1;1
+16047;22419;1;158;67.0;130;90;1;1;0;0;1;1
+16050;21734;2;162;66.0;110;70;2;1;1;1;0;0
+16052;22076;2;162;68.0;140;90;3;1;1;0;1;1
+16054;16859;1;159;54.0;110;70;2;1;0;0;0;0
+16055;15218;2;170;60.0;120;80;1;1;0;0;1;0
+16057;21596;2;171;135.0;160;90;2;2;0;1;1;1
+16059;18210;2;172;89.0;120;80;1;1;1;0;1;0
+16060;20213;1;164;71.0;120;80;3;1;0;0;1;0
+16061;19808;1;170;127.0;180;90;2;1;1;0;1;1
+16062;18307;1;110;90.0;120;80;1;1;0;0;1;0
+16064;22585;1;158;97.0;150;90;3;3;0;0;1;1
+16065;20363;2;175;95.0;140;80;1;1;0;0;1;1
+16066;16771;1;149;52.0;120;80;1;1;0;0;1;0
+16067;22642;1;166;86.0;150;90;3;1;0;0;1;1
+16069;20503;1;156;74.0;120;80;1;1;0;0;1;0
+16070;18345;2;176;65.0;120;90;1;1;0;0;1;0
+16071;19708;2;171;79.0;120;80;1;1;0;0;1;1
+16072;22415;2;171;65.0;130;80;1;1;0;0;1;0
+16074;17344;1;166;66.0;120;80;1;1;0;0;1;0
+16075;16544;1;162;59.0;120;80;1;1;0;0;1;1
+16076;19714;1;159;121.0;160;80;1;2;0;0;1;0
+16077;18278;1;161;55.0;120;80;1;1;0;0;1;1
+16080;21119;1;155;66.0;160;90;2;1;0;0;1;1
+16081;16130;1;157;56.0;110;70;1;1;1;0;1;0
+16083;16678;1;166;67.0;90;60;1;1;0;0;1;1
+16084;16764;2;170;73.0;120;70;1;1;0;0;1;0
+16085;21906;1;168;64.0;120;80;1;1;0;0;1;1
+16089;16035;1;150;75.0;160;100;2;1;0;0;1;1
+16091;20446;1;155;64.0;150;80;2;1;0;0;0;1
+16092;20350;1;161;72.8;140;90;3;3;0;0;1;1
+16093;23105;1;157;70.0;130;80;1;1;0;0;1;1
+16094;14698;2;174;76.0;120;70;1;1;0;0;1;0
+16098;21795;1;165;74.0;120;80;2;2;0;0;1;0
+16099;22825;1;167;72.0;110;70;1;1;0;0;1;0
+16101;18988;1;160;59.0;140;90;2;1;0;0;0;1
+16102;22453;1;160;111.0;130;80;1;1;0;0;0;0
+16104;18342;1;158;70.0;130;80;1;1;0;0;1;0
+16105;16155;2;173;92.0;150;1000;1;1;1;0;0;0
+16107;20690;2;172;70.0;120;80;1;1;0;1;1;0
+16108;23338;1;159;83.0;130;90;1;1;0;0;1;1
+16109;21770;1;156;68.0;130;90;3;1;0;0;1;1
+16110;19746;1;160;60.0;110;75;2;1;0;0;1;0
+16111;15992;1;165;65.0;120;80;1;1;0;0;1;0
+16113;21103;1;164;85.0;160;90;2;2;1;0;1;0
+16114;14514;2;156;54.0;120;60;1;1;0;0;1;0
+16117;19635;1;169;60.0;120;80;1;1;0;0;1;0
+16118;15386;2;172;78.0;100;70;1;1;0;0;1;0
+16119;20379;1;168;72.0;110;80;1;1;0;0;0;0
+16123;18872;1;161;70.0;210;120;1;1;0;0;1;1
+16124;22879;1;156;60.0;150;90;2;2;0;0;1;1
+16125;22427;1;174;75.0;120;80;3;1;0;0;1;1
+16126;21129;2;176;70.0;120;80;3;3;0;0;1;0
+16127;21153;1;149;78.0;140;100;1;1;0;0;1;1
+16128;18221;2;165;69.0;120;80;1;1;0;0;0;0
+16129;18852;2;174;76.0;140;100;1;1;0;0;1;0
+16131;20335;1;159;65.0;170;100;1;1;0;0;1;1
+16132;20575;1;157;59.0;155;94;1;1;0;0;0;1
+16133;19686;2;165;85.0;120;80;2;3;0;0;1;0
+16134;20272;1;162;92.0;120;80;1;1;0;0;1;0
+16135;15140;1;157;80.0;160;90;2;1;0;0;1;1
+16136;18193;1;165;62.0;120;80;1;1;0;0;1;0
+16137;20258;1;168;81.0;120;80;1;1;0;0;1;0
+16138;21278;2;179;82.0;120;80;1;2;0;0;1;0
+16139;22699;1;170;85.0;120;80;1;1;0;0;1;0
+16140;23604;1;168;78.0;120;80;1;1;0;0;1;1
+16141;14415;2;165;65.0;100;60;1;1;1;1;1;0
+16144;19755;2;173;81.0;130;80;1;1;0;0;0;0
+16145;15308;2;179;68.0;120;80;1;1;0;0;1;0
+16147;19585;1;153;65.0;130;80;1;1;0;0;0;0
+16148;15138;2;175;72.0;110;70;1;3;0;1;1;0
+16150;21721;1;160;98.0;120;80;1;1;0;0;1;0
+16151;15920;2;176;85.0;120;80;1;1;0;0;1;0
+16152;20520;2;173;86.0;130;90;1;1;1;0;1;1
+16153;23586;2;170;85.0;120;80;1;1;1;0;1;1
+16154;14664;1;159;58.0;90;60;1;1;0;0;1;0
+16155;16831;2;176;55.0;110;70;1;1;1;0;1;0
+16159;22701;2;170;69.0;160;100;1;1;0;0;1;1
+16160;23328;1;172;106.0;140;90;1;3;0;0;0;1
+16162;14607;2;174;70.0;120;80;1;1;1;1;0;0
+16163;23393;2;180;90.0;120;80;1;1;0;0;1;0
+16164;22567;1;165;59.0;120;80;3;3;0;0;1;1
+16165;21977;1;156;83.0;120;80;2;1;0;0;1;1
+16166;19034;1;167;75.0;140;90;1;1;0;0;0;1
+16167;20235;1;157;103.0;140;90;1;1;0;0;1;0
+16168;21805;1;149;53.0;130;80;2;1;0;1;1;1
+16169;21721;1;178;85.0;120;80;1;1;0;0;0;1
+16170;20602;1;172;65.0;130;80;1;1;0;0;1;0
+16171;21347;2;170;73.0;160;80;2;1;0;0;1;1
+16173;14472;1;159;55.0;100;60;1;1;0;0;0;0
+16174;21980;1;156;79.0;140;80;2;1;0;0;1;1
+16175;19062;2;170;75.0;160;90;1;1;1;1;1;1
+16177;18889;2;178;89.0;160;70;2;1;1;1;1;1
+16178;21981;1;153;57.0;100;60;1;1;0;0;0;0
+16180;21132;1;167;85.0;140;90;3;1;0;0;1;0
+16181;19094;1;158;62.0;140;90;3;3;0;0;0;0
+16183;19690;2;180;76.0;120;80;1;1;0;0;1;0
+16184;16679;1;161;68.0;120;80;2;1;0;0;0;0
+16186;18814;1;165;78.0;100;70;2;1;1;1;1;1
+16187;23256;2;175;94.0;130;1100;1;1;0;0;1;1
+16189;21684;2;172;82.0;120;80;1;1;0;0;1;0
+16190;15925;2;166;80.0;110;70;1;1;0;0;1;0
+16191;16033;1;159;91.0;110;60;1;1;0;0;0;0
+16192;22099;1;168;64.0;120;80;1;1;0;0;1;1
+16194;18828;1;163;70.0;120;80;1;1;0;0;1;0
+16198;15881;1;157;72.0;110;70;1;1;0;0;1;0
+16199;18155;2;164;61.0;110;90;1;1;0;0;1;0
+16201;19104;1;148;64.0;130;80;1;1;0;0;1;1
+16203;19933;1;157;61.0;168;100;1;1;0;0;1;1
+16204;18002;2;162;59.0;100;60;1;1;1;1;0;0
+16206;19688;2;176;105.0;200;100;2;1;1;1;0;1
+16207;19556;1;169;70.0;120;80;1;1;0;0;1;0
+16209;18363;1;165;90.0;120;90;3;1;0;0;1;1
+16211;18805;1;165;69.0;110;70;1;1;0;0;1;0
+16212;19760;2;165;98.0;130;90;1;1;0;0;1;0
+16213;21343;2;180;75.0;120;80;1;3;0;0;0;0
+16214;19728;1;167;62.0;120;80;1;1;0;0;1;0
+16215;23326;2;159;63.0;110;70;1;1;0;0;1;0
+16216;20501;1;158;63.0;140;90;1;1;0;0;1;1
+16217;22749;1;160;73.0;140;90;1;1;0;0;1;1
+16219;16736;2;174;78.0;120;80;1;1;0;0;1;1
+16220;22706;1;155;65.0;110;80;1;1;0;0;0;0
+16221;16262;1;165;64.0;120;70;1;1;0;0;1;0
+16222;18947;1;168;103.0;110;70;1;1;0;0;0;1
+16224;23599;2;174;85.0;130;90;1;1;0;1;1;0
+16225;15215;1;159;60.0;100;60;1;1;0;0;1;0
+16228;19056;1;167;79.0;150;90;1;1;0;0;1;0
+16231;20290;2;168;72.0;170;90;1;1;0;0;1;1
+16232;21180;2;172;66.0;140;90;1;1;0;0;1;0
+16233;18076;2;167;69.0;120;80;1;1;0;0;1;0
+16234;22569;1;160;66.0;140;80;3;3;0;0;1;1
+16235;21824;2;163;64.0;120;80;1;1;0;0;1;1
+16236;17469;1;170;81.0;145;90;1;1;0;0;1;0
+16238;22395;1;158;70.0;140;70;3;3;0;0;1;1
+16239;14760;1;156;56.0;110;70;1;1;0;0;0;0
+16240;19025;2;168;74.0;120;80;1;1;1;1;1;0
+16242;21766;1;163;75.0;120;90;3;2;0;0;1;1
+16244;15797;1;165;58.0;120;80;1;1;0;0;1;0
+16245;20555;1;169;91.0;120;80;1;1;0;0;1;0
+16248;21270;2;179;79.0;120;80;1;1;0;0;1;0
+16249;17983;2;161;71.0;130;90;1;1;1;0;1;0
+16250;16825;1;154;58.0;120;80;1;1;0;0;1;0
+16252;21710;1;159;84.0;130;77;1;1;0;1;0;0
+16253;18122;2;166;62.0;110;90;1;2;0;0;1;0
+16254;16715;1;155;95.0;156;100;1;1;0;0;0;1
+16256;18929;1;163;85.0;124;80;1;1;0;0;1;0
+16257;14571;2;165;54.0;110;70;1;1;0;0;1;0
+16258;19659;1;166;65.0;130;80;1;1;0;0;1;1
+16259;17368;1;164;87.0;140;80;1;1;0;0;0;1
+16260;19866;1;164;73.0;100;70;1;1;0;1;0;0
+16261;21979;1;165;60.0;120;80;1;1;0;0;0;0
+16262;21758;2;159;79.0;140;90;1;2;1;0;1;1
+16263;21246;2;165;82.0;130;80;3;1;0;0;1;0
+16264;18874;1;160;104.0;140;90;1;3;0;1;1;1
+16269;21064;1;165;60.0;120;70;1;1;0;0;1;0
+16271;19981;1;160;60.0;120;80;1;1;0;0;0;0
+16273;18105;1;160;65.0;160;80;1;1;0;0;1;1
+16274;22018;1;161;79.0;140;80;3;1;0;0;1;0
+16275;16724;1;170;90.0;120;80;1;1;0;0;0;0
+16276;23467;1;167;65.0;130;80;1;1;0;0;1;1
+16277;21896;1;161;70.0;120;80;1;2;0;0;1;1
+16279;20227;1;162;78.0;150;100;1;1;0;0;1;1
+16280;19530;1;165;55.0;120;80;2;1;0;0;1;1
+16281;20441;2;172;82.0;140;100;1;1;0;0;1;0
+16282;23117;2;169;101.0;210;100;2;1;0;0;1;1
+16284;15386;1;159;70.0;110;70;1;1;0;0;1;0
+16285;16818;2;175;98.0;110;70;1;1;0;0;1;0
+16286;17281;2;164;57.0;110;70;1;1;1;0;1;0
+16287;14581;2;160;69.0;110;80;2;2;0;0;1;0
+16288;19723;1;159;60.0;130;80;1;1;0;0;1;1
+16290;15544;1;167;71.0;140;90;1;1;0;1;1;1
+16291;21631;1;168;69.0;120;80;1;1;0;0;1;1
+16292;19758;1;167;78.0;120;80;3;1;0;0;1;1
+16293;18232;1;155;135.0;130;90;3;3;0;0;0;1
+16294;19533;2;173;87.0;120;80;2;1;0;0;0;0
+16295;17475;2;171;72.0;120;70;2;2;0;0;1;0
+16297;14820;1;158;68.0;110;70;1;1;0;0;0;0
+16298;21834;1;156;65.0;110;60;1;1;0;0;1;0
+16299;16575;2;176;79.0;140;100;1;1;1;1;1;1
+16301;23389;1;162;60.0;130;80;1;1;0;1;0;0
+16302;21024;1;168;78.0;120;80;1;1;0;0;1;0
+16303;21005;1;171;75.0;140;90;1;1;0;0;1;1
+16304;18281;1;165;80.0;140;90;2;1;0;0;1;1
+16305;22448;1;165;70.0;110;70;1;1;0;0;1;0
+16306;22123;2;178;82.0;120;80;1;1;0;0;1;1
+16308;18129;2;165;81.0;110;80;1;2;1;0;1;0
+16309;18966;1;155;100.0;160;90;2;1;0;0;0;1
+16310;21147;1;159;91.0;155;100;1;2;0;0;1;1
+16311;20593;1;164;69.0;160;90;1;1;0;0;1;1
+16312;16589;1;165;65.0;120;80;1;1;0;0;1;0
+16313;19655;1;160;75.0;120;80;1;1;0;0;1;0
+16314;14557;1;151;50.0;110;80;1;1;0;0;1;0
+16315;19582;1;165;55.0;110;70;1;1;0;0;1;0
+16316;18137;1;167;67.0;110;70;1;1;0;0;1;1
+16317;21970;2;162;96.0;150;100;3;3;0;0;1;1
+16318;19180;1;160;62.0;120;80;1;1;0;0;1;0
+16319;17498;1;167;70.0;150;90;2;1;0;0;1;1
+16320;19829;2;168;83.0;130;90;1;1;1;1;1;0
+16322;22874;1;170;70.0;120;80;1;1;0;0;1;0
+16323;20199;2;175;100.0;130;90;1;1;0;0;1;1
+16324;20556;1;170;75.0;120;80;1;1;0;0;1;0
+16326;20607;2;160;70.0;150;90;1;1;0;0;1;1
+16327;18177;1;165;60.0;120;80;1;1;0;0;1;0
+16328;19074;1;160;97.0;130;100;1;1;0;0;1;0
+16329;20713;1;161;94.0;150;90;1;3;0;0;1;1
+16331;23114;2;177;58.0;160;90;1;1;0;0;1;1
+16333;17815;1;162;57.0;110;70;1;1;0;0;1;0
+16334;22571;1;167;70.0;120;80;2;1;0;0;0;0
+16336;20973;1;165;108.0;180;120;3;3;0;0;1;0
+16337;22039;1;147;59.0;166;97;1;1;0;1;1;0
+16338;14808;1;156;56.0;120;80;1;1;0;0;1;0
+16339;21820;2;165;86.0;140;90;3;1;1;0;1;1
+16340;23308;1;157;63.0;120;70;1;3;0;0;1;0
+16341;20954;1;157;63.0;110;70;1;1;0;0;1;0
+16342;21202;1;164;75.0;120;80;2;2;0;0;1;0
+16343;20578;1;173;79.0;120;80;2;1;0;0;1;0
+16344;22123;1;159;67.0;140;90;2;2;0;0;1;1
+16345;18175;2;165;68.0;120;80;1;1;0;0;0;0
+16350;19064;2;165;77.0;120;80;1;1;1;1;1;0
+16351;20323;2;174;86.0;140;90;1;1;0;0;1;1
+16352;17619;1;154;60.0;100;65;1;1;0;0;1;0
+16354;18033;1;154;72.0;160;100;1;1;0;0;1;1
+16355;22081;2;167;71.0;110;70;1;1;0;0;1;0
+16356;20488;2;179;100.0;120;80;1;1;0;0;1;1
+16358;22394;1;150;64.0;140;90;1;1;0;0;1;1
+16359;21019;1;157;64.0;130;80;3;3;0;0;1;1
+16361;18310;1;173;82.0;120;80;1;1;0;0;1;0
+16365;20454;1;158;75.0;155;80;1;1;0;0;0;1
+16366;22601;2;193;80.0;110;70;1;2;0;0;1;0
+16368;19178;2;175;73.0;150;80;2;1;0;0;1;1
+16371;16920;1;156;100.0;130;90;1;1;0;0;1;1
+16372;21121;2;180;87.0;120;80;1;1;0;0;1;0
+16374;18862;2;170;91.0;120;80;1;1;0;0;0;1
+16377;16890;2;162;70.0;120;70;1;1;1;0;1;0
+16378;20355;1;162;57.0;80;60;2;1;0;0;1;0
+16381;16786;1;159;74.0;110;70;1;1;0;0;1;0
+16382;19592;2;173;75.0;122;82;1;1;1;0;1;0
+16383;23533;1;168;90.0;150;90;2;2;0;0;0;0
+16384;17348;2;170;72.0;120;80;1;1;0;0;1;0
+16385;18317;1;156;82.0;120;80;1;1;0;0;1;1
+16387;19646;1;145;64.0;140;90;1;1;0;0;1;1
+16388;15943;2;164;59.0;120;80;1;1;0;0;1;0
+16390;22729;2;170;72.0;140;80;1;1;0;0;1;1
+16391;20363;2;180;84.0;170;100;3;1;0;0;1;1
+16392;21875;1;158;78.0;120;80;2;2;0;0;0;0
+16393;23199;2;164;83.0;150;100;1;1;1;0;1;0
+16396;22157;2;165;82.0;110;70;2;1;0;0;0;0
+16397;18335;1;174;66.0;110;80;1;1;0;0;1;1
+16399;20388;1;164;83.0;150;100;1;1;0;0;1;1
+16400;18941;1;160;61.0;110;80;1;1;0;0;1;0
+16401;17248;1;162;80.0;110;70;1;1;0;0;1;0
+16402;17323;1;164;58.0;110;70;1;1;0;0;1;0
+16403;20994;2;158;60.0;140;90;2;1;0;1;1;1
+16407;20476;2;169;109.0;125;80;1;2;0;1;1;0
+16410;21778;2;165;68.0;120;80;1;1;0;0;1;1
+16413;21015;1;167;71.0;120;80;1;1;0;0;0;0
+16414;19852;1;153;73.0;145;80;1;1;0;0;1;1
+16415;19759;1;187;85.0;120;80;1;1;0;0;1;0
+16416;20225;1;152;80.0;130;80;1;1;0;0;1;1
+16420;17643;2;172;82.0;120;80;1;1;1;1;1;0
+16421;18221;2;164;88.0;120;80;1;1;0;0;0;0
+16422;18130;1;168;83.0;110;90;3;3;0;0;1;1
+16425;23214;1;151;53.0;150;90;2;2;0;0;0;1
+16426;21754;2;170;70.0;140;90;1;1;1;0;1;1
+16428;23501;1;168;85.0;130;90;1;1;0;0;1;1
+16429;18748;1;168;90.0;120;80;1;1;0;0;1;0
+16430;20478;1;157;55.0;120;80;1;1;0;0;1;1
+16431;18234;1;157;69.0;120;80;1;1;0;0;1;0
+16432;16600;1;157;84.0;125;80;2;1;0;0;1;1
+16433;16081;1;165;54.0;120;80;1;1;0;0;1;0
+16435;17604;2;157;55.0;140;90;1;1;0;0;1;1
+16437;20638;1;168;85.0;120;80;2;2;0;0;0;0
+16438;22567;2;168;69.0;140;90;1;1;1;0;1;1
+16439;20447;1;158;64.0;140;90;1;1;0;0;1;1
+16442;17570;1;170;78.0;140;90;3;3;0;0;0;1
+16444;21060;1;173;76.0;130;90;1;1;0;0;0;1
+16446;22134;2;160;60.0;120;80;1;1;0;0;1;0
+16447;19237;1;163;71.0;120;80;1;1;0;0;1;0
+16448;20712;1;162;63.0;120;80;2;1;0;0;1;0
+16449;18327;1;164;73.0;120;80;1;1;0;0;0;0
+16450;19786;1;161;58.0;120;80;1;1;0;0;1;0
+16452;16768;2;170;56.0;130;90;1;1;1;0;0;1
+16453;15968;2;166;104.0;140;80;3;1;0;0;1;1
+16455;16746;2;175;93.0;180;100;1;1;1;0;1;1
+16456;17530;1;160;113.0;140;90;3;1;0;0;1;1
+16457;18936;1;167;73.0;130;90;1;1;1;0;1;1
+16458;19582;1;160;55.0;120;80;1;1;0;0;0;0
+16459;14404;2;160;70.0;120;60;1;2;0;0;0;1
+16460;20667;1;169;74.0;120;80;1;3;0;0;1;1
+16461;18298;1;160;63.0;120;80;2;1;0;0;1;1
+16462;23416;1;157;87.0;170;100;1;1;0;0;1;1
+16463;22510;1;158;62.0;160;100;3;1;0;0;1;1
+16465;19634;2;164;58.0;120;80;1;1;0;0;1;1
+16467;16112;2;175;80.0;120;80;1;1;0;0;1;1
+16468;21358;1;166;71.0;120;80;1;2;0;0;1;0
+16469;20382;1;168;68.0;120;70;1;1;0;0;1;0
+16471;21406;2;180;85.0;140;80;1;1;0;0;1;1
+16473;18241;1;165;57.0;120;80;1;1;0;0;1;0
+16475;21996;2;177;94.0;100;70;1;1;0;0;1;0
+16476;20386;2;172;73.2;140;90;1;1;1;1;1;1
+16477;14783;2;165;67.0;120;80;1;1;0;0;1;0
+16479;18286;1;160;75.0;110;70;2;1;0;0;0;0
+16480;16876;1;167;65.0;120;70;1;1;0;0;0;0
+16481;15113;1;162;78.0;130;90;2;2;0;0;1;1
+16482;19084;1;155;84.0;150;90;1;1;0;0;1;1
+16483;21293;1;166;95.0;170;120;3;1;0;0;1;1
+16484;14771;2;186;73.0;120;80;1;1;0;0;1;0
+16485;20949;1;160;79.0;140;85;2;1;0;0;1;1
+16486;21286;1;150;57.0;130;80;1;3;0;0;1;0
+16487;20418;1;176;80.0;120;80;1;1;0;0;1;0
+16489;16722;1;168;78.0;120;80;1;1;0;0;1;1
+16490;21384;2;170;70.0;120;80;1;1;0;0;1;0
+16491;17550;1;160;82.0;140;100;1;1;0;0;1;1
+16492;20347;1;165;66.0;120;80;1;1;0;0;1;0
+16494;15847;1;157;66.0;120;80;1;1;0;0;1;0
+16495;19491;1;156;118.0;140;90;3;1;0;0;1;1
+16496;20473;1;159;60.0;110;70;1;1;0;0;1;1
+16497;18225;1;160;94.0;160;80;2;1;0;0;1;0
+16498;16872;1;173;70.0;120;80;1;1;0;0;1;0
+16499;18911;2;177;60.0;100;60;1;1;1;1;1;0
+16502;21964;2;168;60.0;110;70;2;3;0;0;0;1
+16503;22545;1;165;65.0;120;80;1;1;0;0;1;1
+16504;21273;2;167;58.0;120;80;1;1;0;0;1;0
+16505;23251;1;168;64.0;120;80;1;1;0;0;1;0
+16506;18354;1;163;71.0;100;80;1;1;0;0;1;0
+16508;15426;2;174;87.0;140;90;1;1;0;0;1;1
+16509;21788;2;170;86.0;150;90;3;1;0;0;1;1
+16511;17506;1;159;78.0;130;80;1;2;0;0;1;0
+16512;23365;1;170;69.0;120;80;1;1;0;0;1;0
+16513;22587;1;156;60.0;140;90;1;1;0;0;1;1
+16514;21039;1;154;84.0;140;80;3;1;0;0;1;1
+16515;17783;1;168;64.0;120;80;1;1;0;0;1;1
+16516;19915;1;168;74.0;140;100;1;1;0;0;0;1
+16517;14549;1;160;61.0;110;70;1;1;0;0;1;0
+16518;14704;1;169;96.5;120;80;1;1;1;0;0;0
+16519;23432;2;183;95.0;140;90;1;1;0;0;0;1
+16520;22640;1;160;75.0;120;80;1;1;0;0;1;1
+16521;19816;1;166;80.0;130;80;1;1;1;0;0;0
+16522;20505;2;170;82.0;120;80;1;1;0;0;0;0
+16523;16870;1;171;77.0;100;60;1;1;0;0;1;0
+16525;18128;1;156;75.0;150;90;1;1;0;0;0;1
+16527;15405;1;156;78.0;120;80;1;1;0;0;1;0
+16528;21844;1;162;70.0;120;80;1;1;0;0;1;0
+16529;17538;1;163;72.0;100;60;1;1;0;0;0;0
+16530;18690;2;180;80.0;120;70;1;1;1;0;1;0
+16533;14426;2;165;71.0;120;80;1;1;0;0;1;0
+16535;20376;1;176;82.0;130;80;1;1;0;0;1;0
+16536;19948;1;163;75.0;120;80;1;1;0;0;0;0
+16537;16836;2;165;62.0;120;80;1;1;0;0;0;0
+16538;21130;1;146;66.0;140;80;3;1;0;0;1;1
+16539;18919;1;168;93.0;120;80;1;1;0;0;1;0
+16540;17498;2;162;56.0;150;100;1;1;0;0;1;1
+16544;15411;2;180;77.0;100;80;1;1;1;0;1;0
+16546;17490;1;171;78.0;110;80;1;1;0;0;1;0
+16548;23375;2;158;69.0;120;70;1;1;0;0;1;0
+16549;22615;2;173;103.0;130;80;1;1;0;0;1;1
+16550;20548;1;168;72.0;120;80;1;1;0;0;1;1
+16551;22722;1;160;62.0;14;90;3;1;0;0;1;1
+16552;20369;1;156;60.0;120;80;1;1;0;0;1;0
+16553;18780;1;161;75.0;120;80;1;1;0;0;1;0
+16554;19927;2;178;75.0;120;80;1;1;0;0;0;0
+16555;21150;1;146;62.0;150;90;1;1;0;0;1;1
+16556;20563;2;169;76.0;120;80;1;1;0;0;1;0
+16557;15312;1;150;55.0;150;100;1;1;0;0;1;0
+16559;22530;1;153;65.0;130;80;3;1;0;0;1;1
+16563;15386;2;173;76.0;140;90;1;1;0;0;1;1
+16564;18888;1;150;65.0;100;70;1;1;0;0;1;0
+16565;21786;2;171;63.0;120;80;2;1;0;1;1;1
+16566;18901;1;166;90.0;120;80;1;1;0;0;1;0
+16567;16735;2;168;68.0;120;80;1;1;0;0;1;0
+16568;18111;1;162;79.0;170;90;2;1;0;0;1;1
+16569;23378;1;165;69.0;110;70;1;1;0;0;1;0
+16570;22669;2;162;73.0;120;80;3;2;1;0;1;1
+16571;15338;1;156;103.0;120;80;1;1;0;0;0;1
+16572;17983;2;159;61.0;110;60;1;1;0;1;1;0
+16573;19719;2;168;78.0;121;80;1;1;0;0;0;0
+16574;17545;2;170;72.0;120;82;1;1;0;0;1;1
+16577;19501;1;177;89.0;120;80;1;1;0;0;1;0
+16579;22471;1;174;82.0;120;80;1;1;0;0;1;1
+16580;19104;1;163;63.0;120;80;3;3;0;0;0;1
+16581;16025;1;152;75.0;90;70;1;1;0;0;1;0
+16582;19070;2;182;100.0;120;80;3;3;0;0;1;1
+16583;18340;1;163;52.0;120;80;1;1;0;0;0;0
+16586;20407;2;150;62.0;110;80;1;1;0;0;0;0
+16587;23372;2;169;75.0;140;90;3;3;0;0;0;1
+16589;23425;1;174;96.0;190;120;1;2;0;0;1;0
+16593;22415;2;165;67.0;120;80;1;1;0;0;1;0
+16596;21283;2;167;76.0;120;80;1;3;0;0;1;1
+16597;20376;1;165;67.0;140;90;1;1;0;0;1;1
+16598;21837;1;168;69.0;120;80;1;1;0;1;1;1
+16599;17641;1;172;54.0;90;60;1;1;0;0;0;0
+16600;19562;2;182;92.0;130;80;1;1;0;0;1;0
+16602;19208;1;169;69.0;120;80;1;1;0;0;0;0
+16603;20359;1;171;69.0;120;80;1;1;0;0;1;0
+16604;16108;2;170;67.0;130;80;1;1;0;0;1;1
+16605;20499;2;184;78.0;120;80;1;1;0;0;1;0
+16606;21106;1;158;90.0;140;90;1;1;0;0;1;1
+16607;18452;1;158;91.0;170;1000;2;1;0;0;1;1
+16608;15305;2;179;92.0;120;80;1;1;0;0;0;0
+16609;16864;2;162;73.0;130;90;1;1;0;0;1;0
+16610;18824;1;160;79.0;140;1100;2;1;0;0;1;0
+16612;19592;1;167;69.0;140;90;1;1;0;0;0;1
+16615;18862;2;171;85.0;130;80;1;1;0;0;1;0
+16616;16934;1;162;62.0;110;70;1;1;0;0;1;0
+16617;21329;2;157;54.0;150;90;1;3;0;0;1;1
+16618;18304;1;160;60.0;120;80;1;1;0;0;1;0
+16619;21190;1;164;60.0;140;90;1;1;0;0;0;1
+16620;20628;1;166;83.0;130;80;3;3;0;0;1;0
+16621;23159;1;160;69.0;110;80;1;1;0;0;1;1
+16622;16910;1;169;79.0;120;80;1;1;0;0;0;0
+16623;19114;1;154;59.0;120;80;1;1;0;0;1;1
+16624;21811;1;145;62.0;90;60;1;3;0;0;0;1
+16626;14579;1;169;68.0;110;70;2;2;0;0;0;0
+16628;19095;1;158;90.0;120;80;1;1;0;0;1;0
+16631;22037;1;164;67.0;110;60;1;1;0;0;1;0
+16632;21309;1;175;82.0;130;80;1;1;0;0;1;1
+16633;16025;1;164;60.0;110;60;1;1;0;0;1;0
+16634;15097;1;158;52.0;110;70;1;1;0;0;1;0
+16635;22000;1;169;70.0;120;90;1;1;0;0;1;0
+16636;18343;2;163;74.0;130;80;1;1;1;1;1;0
+16637;21248;1;147;80.0;130;90;1;1;0;0;1;0
+16638;15506;1;170;63.0;120;70;1;1;0;0;1;0
+16639;17403;1;163;74.0;120;80;1;1;0;0;1;1
+16641;17544;2;160;75.0;160;120;2;1;0;0;1;1
+16643;16494;1;163;58.0;110;80;1;1;0;0;1;0
+16644;22079;1;160;65.0;120;80;2;2;0;0;1;1
+16645;20504;2;173;69.0;170;90;1;1;1;0;1;1
+16646;19625;1;154;88.0;120;80;1;1;0;0;0;1
+16647;14490;1;156;84.0;190;120;3;1;0;0;1;0
+16648;14767;2;172;79.0;120;70;1;1;0;0;1;0
+16649;23225;1;156;57.0;120;80;1;1;0;0;1;0
+16651;22187;1;154;59.0;130;70;1;1;0;0;1;1
+16652;19800;2;165;75.0;120;80;1;1;0;0;0;0
+16653;21276;2;170;98.0;120;80;2;2;0;0;1;0
+16654;19836;1;165;74.0;120;80;1;1;0;0;1;0
+16655;15267;2;168;86.0;150;90;1;1;1;0;1;1
+16656;20516;1;154;81.0;120;80;1;1;0;0;0;1
+16657;23331;1;157;79.0;130;90;1;1;0;0;1;1
+16658;14652;2;172;67.0;150;80;1;1;0;0;1;1
+16659;16654;1;170;73.0;120;80;1;1;0;0;1;1
+16660;15436;1;164;67.0;170;90;2;1;0;0;1;1
+16661;18004;2;169;93.0;120;80;1;1;0;0;1;0
+16664;22654;2;183;79.0;140;90;1;1;0;0;1;0
+16665;19469;2;174;85.0;110;70;3;1;0;0;1;1
+16666;16048;2;167;61.0;120;80;1;1;0;0;1;0
+16668;20558;1;157;74.0;160;100;2;2;0;0;1;1
+16669;18868;2;160;77.0;120;80;1;1;0;0;0;1
+16671;19916;1;165;68.0;120;80;1;1;0;0;1;0
+16673;18081;1;159;62.0;130;60;1;1;0;0;1;0
+16675;16574;1;176;78.0;110;70;1;2;0;0;1;0
+16678;21658;2;172;80.0;110;70;3;1;0;0;1;1
+16680;16527;1;156;56.0;90;60;1;1;0;0;0;0
+16681;15889;1;166;56.0;90;60;1;1;1;0;1;0
+16682;21685;1;162;85.0;120;80;1;1;0;0;0;0
+16683;21256;1;153;58.0;130;90;1;1;1;0;1;0
+16684;15969;1;163;53.2;110;70;2;1;0;0;1;0
+16685;18922;1;160;60.0;120;70;2;1;0;0;0;0
+16687;20920;1;150;69.0;140;80;1;1;0;0;1;1
+16689;18233;2;170;56.0;120;70;3;3;0;0;1;0
+16690;17303;1;163;68.0;130;80;1;1;0;0;0;1
+16691;21855;1;153;73.0;120;80;1;1;0;0;0;0
+16692;18354;1;155;64.0;120;80;1;1;0;0;1;1
+16694;19713;1;152;68.0;125;75;1;1;0;0;1;0
+16695;18415;1;152;50.0;90;70;1;1;0;0;1;0
+16696;18314;1;159;64.0;130;90;1;1;0;0;1;1
+16697;22038;1;153;86.0;120;80;1;1;0;0;1;1
+16698;18693;2;165;65.0;120;80;1;1;0;0;1;0
+16702;14748;1;160;63.0;120;80;3;3;0;0;1;0
+16703;19043;2;183;96.0;115;75;1;1;1;0;0;0
+16704;21442;1;162;100.0;150;90;2;3;0;0;0;1
+16705;21287;1;159;86.0;120;80;1;1;0;0;1;1
+16706;23434;2;167;63.0;120;80;1;1;0;0;1;0
+16707;19861;1;162;74.0;110;70;1;1;0;0;1;1
+16708;21738;2;170;70.0;120;80;1;1;0;0;1;1
+16711;16254;2;175;80.0;123;72;1;1;1;1;1;0
+16712;19871;1;165;75.0;120;60;1;1;0;0;1;1
+16714;18199;1;164;78.0;120;80;1;1;0;0;0;0
+16716;16607;1;165;70.0;110;70;1;1;0;0;1;0
+16718;15274;1;162;68.0;110;70;1;1;0;0;1;0
+16719;19502;2;167;60.0;100;60;1;1;0;0;1;0
+16720;20629;1;165;65.0;120;80;1;1;0;0;1;1
+16721;19645;1;155;64.0;120;80;1;1;0;0;0;0
+16722;15240;2;170;70.0;120;80;1;1;0;0;1;0
+16723;18263;1;170;75.0;120;80;1;1;0;0;1;0
+16725;16655;1;159;55.0;100;70;1;1;0;0;1;0
+16727;16511;1;161;84.0;150;80;1;1;0;0;1;1
+16728;18362;1;166;63.0;120;60;1;1;0;0;0;0
+16730;15831;1;180;69.0;150;100;2;1;0;0;0;1
+16732;18131;2;190;96.0;120;80;1;1;0;0;1;1
+16733;18430;1;160;70.0;120;80;1;1;0;0;1;0
+16736;15272;1;163;62.0;130;80;1;1;0;0;1;0
+16737;18169;1;158;47.0;130;80;2;2;0;0;1;1
+16738;18043;2;172;78.0;140;90;1;1;0;0;0;1
+16739;16821;2;178;112.0;120;80;3;2;1;0;1;1
+16740;20561;1;155;65.0;150;90;3;3;0;0;1;1
+16742;19643;2;172;87.0;170;80;3;1;0;0;0;0
+16743;20464;2;173;51.0;90;57;1;1;1;0;1;0
+16744;19817;1;156;72.0;120;70;1;1;0;0;0;1
+16745;18367;1;166;81.0;120;80;1;1;0;0;1;1
+16747;20271;1;166;90.0;130;70;2;1;0;0;1;1
+16749;15231;1;152;60.0;110;70;1;1;0;0;1;0
+16750;19457;2;168;87.0;140;90;1;1;1;0;1;1
+16751;20469;1;165;65.0;120;80;1;1;0;0;1;1
+16753;15177;2;173;72.0;120;80;1;1;0;0;1;0
+16754;21850;2;178;86.0;150;100;1;1;0;0;1;1
+16755;20969;2;179;98.0;150;90;1;1;0;0;1;1
+16756;16159;2;178;56.0;110;70;1;1;1;0;1;0
+16757;18044;1;156;87.0;120;75;1;1;0;0;1;0
+16758;19672;2;178;87.0;140;90;3;3;0;0;1;1
+16759;22706;1;170;82.0;140;90;1;1;1;1;1;1
+16761;23424;1;169;62.0;120;80;1;1;0;0;1;1
+16762;14691;1;153;50.0;100;70;1;1;0;0;1;0
+16763;19940;1;161;62.0;120;80;1;2;1;0;1;1
+16764;21361;1;162;66.0;130;90;1;1;0;1;1;1
+16765;18301;1;152;45.0;120;70;3;1;0;0;1;1
+16766;18093;1;160;69.0;120;90;1;1;0;0;1;0
+16767;20318;1;164;95.0;150;90;2;1;0;0;0;1
+16768;16071;1;161;97.0;140;90;1;1;0;0;1;1
+16769;14708;1;158;55.0;110;70;1;1;0;0;1;0
+16770;20330;1;165;65.0;130;80;2;1;0;0;1;0
+16771;23346;1;162;74.0;120;80;1;1;0;0;1;0
+16772;22018;2;170;74.0;140;90;1;1;0;1;0;1
+16773;18087;1;156;54.0;110;70;1;1;0;0;1;0
+16775;21788;1;156;75.0;140;90;1;1;0;0;1;0
+16776;23294;1;160;100.0;130;90;1;3;0;0;1;1
+16777;18868;1;157;86.0;120;80;1;1;0;0;1;0
+16780;18359;1;162;65.0;110;70;1;1;0;0;1;0
+16781;18980;1;182;80.0;120;80;1;1;0;0;1;0
+16782;16786;1;168;70.0;130;80;1;3;0;0;1;1
+16784;20212;1;165;65.0;120;80;1;1;0;0;1;0
+16786;20498;1;169;65.0;140;90;1;1;0;0;1;1
+16787;17518;1;167;60.0;110;70;1;1;0;0;1;0
+16788;20358;2;160;75.0;120;80;1;1;0;0;1;0
+16789;21466;1;165;65.0;140;90;1;2;0;0;0;1
+16790;19556;1;169;74.0;120;80;1;1;0;0;0;0
+16791;22420;1;154;87.0;120;80;3;1;0;0;0;1
+16792;21774;1;161;73.0;160;90;2;1;1;0;1;0
+16793;21436;1;169;78.0;130;80;1;1;0;0;1;0
+16795;17720;2;164;79.0;110;70;1;1;0;0;0;0
+16796;17754;1;157;60.0;110;70;1;1;0;0;1;1
+16797;19908;2;163;62.0;130;80;1;1;1;0;1;0
+16798;19707;2;165;60.0;130;90;1;1;0;0;1;1
+16799;23147;1;153;73.0;150;90;2;1;0;0;1;1
+16803;22575;2;175;51.0;140;90;2;1;0;0;1;1
+16804;23397;2;171;81.0;130;90;1;1;0;0;1;1
+16805;16890;2;167;60.0;110;80;3;1;0;0;1;0
+16806;21357;2;169;69.0;110;70;1;1;0;0;1;1
+16809;21167;2;175;76.0;120;80;1;1;0;0;1;0
+16810;19683;1;160;82.0;160;100;1;1;0;0;1;1
+16811;23461;1;169;72.0;120;80;1;1;0;0;1;1
+16813;18202;2;162;65.0;140;70;2;2;0;0;1;1
+16814;23565;1;169;65.0;120;80;1;1;0;0;1;1
+16815;19689;1;165;89.0;120;80;1;1;0;0;1;0
+16816;17550;1;151;94.0;130;80;1;1;0;0;1;1
+16817;20991;1;153;55.0;110;80;1;3;0;0;0;0
+16818;16701;2;174;102.0;130;80;1;1;0;0;0;0
+16819;23357;1;170;68.0;120;80;1;3;0;0;1;0
+16821;21252;2;185;93.0;135;90;3;3;0;0;1;0
+16822;23522;1;162;70.0;128;82;1;1;0;0;1;1
+16824;19767;1;160;58.0;120;70;1;1;0;0;1;0
+16825;21315;1;168;65.0;110;70;1;1;0;0;1;0
+16826;22785;2;160;60.0;120;80;1;1;0;0;1;0
+16828;17360;2;172;105.0;150;80;1;1;0;0;1;1
+16829;19611;1;151;68.0;120;80;1;2;0;0;1;1
+16830;22592;2;183;92.0;130;70;1;2;0;0;0;1
+16831;20439;1;156;59.0;100;70;1;1;0;0;1;0
+16833;21307;1;158;63.0;140;90;3;1;0;0;1;1
+16834;20540;1;158;72.0;140;90;1;1;0;0;0;1
+16835;17460;1;164;68.0;140;80;3;2;0;0;1;1
+16837;18329;1;172;84.0;125;90;1;1;0;0;0;1
+16838;22792;2;168;60.0;120;80;1;1;0;0;1;1
+16839;20376;1;149;76.0;180;100;3;1;0;0;1;1
+16840;20391;1;148;70.0;130;80;3;3;1;0;0;1
+16841;14662;1;156;44.0;80;50;1;1;0;0;1;0
+16842;14610;1;158;68.0;120;70;1;1;0;0;1;0
+16845;19621;1;158;55.0;120;80;2;2;0;0;1;0
+16846;21893;2;171;74.0;130;80;1;1;1;0;1;0
+16848;21759;1;162;83.0;120;80;1;1;0;0;1;0
+16849;21054;1;160;64.0;120;80;1;1;0;1;1;1
+16851;21955;2;158;60.0;120;80;1;1;0;0;1;0
+16852;17462;2;175;109.0;160;100;1;1;0;0;1;0
+16853;15191;1;159;70.0;170;100;1;1;1;0;1;1
+16854;15443;1;158;56.0;110;80;1;1;0;0;1;0
+16855;21865;1;164;68.0;120;80;1;1;0;0;1;0
+16857;14577;1;156;64.0;140;90;2;1;0;0;0;1
+16859;15889;1;152;53.0;120;80;1;1;0;0;0;0
+16860;19450;1;165;71.0;110;70;1;1;0;0;0;0
+16862;18225;2;166;88.0;120;80;1;1;0;0;0;0
+16864;18378;1;162;68.0;120;80;1;1;0;0;1;0
+16866;20209;1;164;81.0;180;110;1;1;0;0;0;1
+16868;17605;2;175;84.0;110;80;1;1;0;0;0;0
+16870;21844;1;154;79.0;110;80;1;1;0;0;0;0
+16871;20472;1;167;66.0;120;80;1;1;0;0;1;0
+16873;21226;1;156;86.0;150;100;1;1;0;0;1;0
+16875;14711;1;155;70.0;110;70;1;1;0;0;1;0
+16876;21007;1;170;76.0;120;80;1;1;0;0;0;1
+16877;22901;1;166;75.0;120;80;1;1;0;0;1;1
+16879;21036;1;154;63.0;140;80;2;1;0;0;1;1
+16880;19734;1;170;65.0;120;80;1;1;0;0;1;1
+16882;18250;1;158;54.0;130;80;1;1;0;0;1;0
+16884;18171;1;169;69.0;128;20;1;1;0;0;1;1
+16886;21359;2;163;63.0;140;80;1;1;1;0;1;1
+16887;20000;1;154;65.0;110;70;1;1;0;0;0;1
+16888;18243;2;170;68.0;120;90;3;1;0;0;1;1
+16890;19581;2;173;67.0;110;70;1;1;1;0;1;0
+16891;16606;2;176;94.0;160;100;1;1;0;0;1;0
+16892;22084;1;154;69.0;120;80;2;2;0;0;1;1
+16893;21225;1;169;70.0;120;80;1;1;0;0;0;0
+16894;21836;1;156;70.0;110;70;1;1;0;0;1;0
+16895;20260;1;170;62.0;140;90;1;1;0;0;1;1
+16897;15287;1;170;79.0;100;70;2;1;0;0;1;1
+16898;14412;2;177;87.0;130;80;1;1;0;0;1;0
+16899;15159;1;166;95.0;160;70;1;1;0;0;1;1
+16900;18295;1;163;60.0;120;80;1;1;0;0;1;0
+16906;22013;2;170;70.0;130;80;2;1;0;0;1;1
+16907;18190;2;172;79.0;120;80;1;1;0;0;1;0
+16908;22147;2;170;65.0;120;80;1;1;0;0;1;0
+16909;19760;2;180;84.0;110;70;1;3;0;0;0;0
+16910;18363;1;170;60.0;110;70;1;1;0;0;1;0
+16911;20293;1;160;85.0;150;100;1;1;0;0;1;1
+16912;19611;1;152;54.0;110;70;1;1;0;0;0;1
+16914;23624;1;162;75.0;150;90;1;1;0;0;1;1
+16915;15222;1;158;91.0;130;90;1;1;0;0;1;0
+16917;21932;1;156;59.0;140;80;1;1;0;0;0;1
+16918;22057;2;158;68.0;120;80;3;1;0;0;1;1
+16920;19085;1;160;61.0;140;70;1;1;0;1;1;1
+16921;21912;1;155;70.0;150;100;2;1;0;0;0;1
+16922;18182;1;165;82.0;110;80;1;1;0;0;1;0
+16923;14508;2;178;65.0;110;70;1;1;0;0;0;0
+16924;22569;2;169;74.0;130;90;1;1;1;0;0;1
+16926;20594;2;175;80.0;120;80;1;1;1;0;1;0
+16928;15864;1;162;77.0;110;70;3;3;0;0;0;1
+16930;18171;1;157;51.0;140;90;1;1;0;0;1;0
+16932;17077;1;160;66.0;110;80;1;1;0;0;1;1
+16934;22725;2;168;78.0;120;80;1;1;0;0;1;0
+16935;16945;2;167;90.0;120;80;1;3;0;0;1;0
+16937;21804;1;160;60.0;120;90;1;1;0;0;1;1
+16941;20447;1;155;90.0;110;70;2;1;0;0;1;0
+16942;22614;1;164;75.0;150;80;1;1;0;0;1;1
+16944;22918;2;162;68.0;130;90;3;3;0;0;0;1
+16945;23603;2;158;50.0;130;90;1;1;0;0;1;0
+16946;22585;1;154;70.0;160;80;1;1;0;0;0;1
+16947;15473;2;170;65.0;120;80;1;1;0;0;1;0
+16948;19851;2;179;78.0;140;90;1;1;0;0;0;1
+16949;19849;1;162;58.0;130;90;1;1;0;0;1;1
+16951;19654;1;166;67.0;110;80;1;1;0;0;1;0
+16952;20370;1;186;90.0;120;80;1;1;0;0;1;1
+16953;16076;2;171;62.0;110;70;1;1;0;0;1;0
+16954;19126;2;159;70.0;120;80;3;3;0;0;1;0
+16955;16005;1;164;77.0;130;80;1;1;0;0;1;0
+16956;16807;1;172;69.0;140;90;1;1;1;0;1;1
+16957;19008;1;168;68.0;120;80;1;1;0;0;0;0
+16958;16728;2;180;85.0;135;90;3;1;1;0;1;1
+16959;23536;1;168;70.0;190;60;1;1;0;0;1;1
+16960;20415;1;164;73.0;120;80;1;1;0;0;1;1
+16962;22504;2;161;61.0;120;80;1;1;0;0;1;0
+16963;17512;1;157;39.0;90;70;1;1;0;0;1;0
+16966;17571;1;165;68.0;120;80;1;1;0;0;1;1
+16967;16666;2;174;84.0;140;90;3;1;0;0;1;1
+16970;16672;2;168;71.0;120;80;1;1;1;0;1;1
+16971;20223;1;157;68.0;100;60;1;1;0;0;0;0
+16972;16076;2;158;56.0;140;90;2;1;1;0;1;1
+16973;21269;2;174;87.0;140;1000;2;1;0;0;1;1
+16975;19964;1;159;53.0;120;80;1;1;0;0;0;1
+16976;18927;1;173;89.0;140;90;1;1;0;0;1;1
+16978;19229;1;165;64.0;120;80;1;1;0;0;1;0
+16979;22479;2;172;103.0;160;90;1;3;0;0;1;0
+16980;16004;1;163;70.0;120;80;2;1;0;0;1;0
+16981;19772;1;155;70.0;150;90;1;1;0;0;1;0
+16983;22608;2;165;62.0;140;90;1;1;1;0;1;0
+16984;20499;2;175;64.0;150;100;3;3;1;0;1;0
+16985;21854;2;165;83.0;140;90;3;1;0;0;1;1
+16987;16857;1;170;97.0;110;70;1;2;0;0;1;0
+16988;16902;1;165;60.0;150;90;1;1;0;0;1;1
+16990;14647;2;173;79.0;100;60;1;1;0;1;1;0
+16991;18240;1;157;90.0;110;70;1;1;0;0;1;0
+16992;15601;2;169;69.0;120;80;3;3;0;0;1;0
+16995;16095;1;170;59.0;100;70;1;1;0;0;1;0
+16996;19541;1;171;81.0;120;60;1;1;0;0;0;0
+16997;14553;1;159;79.0;100;70;1;1;0;0;1;0
+16998;21763;1;164;96.0;130;85;1;1;1;0;0;1
+16999;20475;2;175;73.0;140;90;1;1;1;1;0;1
+17001;20435;2;173;74.0;120;90;1;1;1;0;1;0
+17002;18473;1;171;68.0;120;80;1;1;0;0;0;1
+17004;19199;2;188;135.0;120;80;1;1;1;0;0;1
+17005;22760;2;180;83.0;140;90;1;1;0;0;1;1
+17007;23395;2;180;75.0;120;80;3;1;0;0;1;1
+17008;23247;2;175;70.0;110;70;1;1;0;0;1;1
+17010;15521;1;165;66.0;120;80;2;2;0;0;1;0
+17011;17538;1;164;70.0;130;90;1;1;0;0;1;1
+17012;17815;1;168;69.0;140;100;2;3;0;0;1;1
+17015;23182;2;170;74.0;140;90;2;1;0;0;0;0
+17016;20201;1;151;56.0;130;80;1;1;0;0;0;1
+17017;19053;2;169;70.0;120;80;1;1;0;0;0;1
+17021;18202;1;168;68.0;100;70;1;1;0;0;0;0
+17022;21102;2;168;68.0;150;100;1;1;1;1;1;1
+17023;17388;2;165;68.0;100;70;1;1;0;0;0;0
+17024;22644;1;158;73.0;160;100;3;3;0;0;1;1
+17025;20474;1;159;74.0;110;70;1;1;0;0;0;0
+17026;23243;1;163;78.0;120;80;1;3;0;0;1;0
+17027;23176;2;174;90.0;110;70;3;1;1;0;1;1
+17028;21939;1;165;75.0;130;90;2;1;0;0;1;1
+17030;22660;1;152;57.0;140;80;1;1;0;0;1;1
+17031;14752;2;159;56.0;120;80;1;1;0;0;1;0
+17033;14406;1;166;76.0;120;80;1;1;1;0;1;0
+17035;23417;1;156;74.0;90;60;3;2;0;0;1;1
+17036;19469;2;178;91.0;130;90;1;1;0;0;1;0
+17037;22000;1;162;80.0;130;85;1;2;0;0;0;1
+17039;19658;1;158;57.0;110;80;1;1;0;0;1;0
+17041;23403;2;173;70.0;150;60;1;1;0;0;1;1
+17042;18317;1;156;73.0;130;80;1;2;0;0;1;0
+17043;17451;2;160;61.0;150;90;1;1;0;0;1;1
+17044;20669;1;166;109.0;190;100;1;1;0;0;1;0
+17047;19706;1;151;67.0;110;80;1;1;0;0;1;0
+17048;22644;2;180;85.0;140;80;1;1;0;0;1;1
+17049;14808;2;174;82.0;150;100;1;1;0;0;0;1
+17050;19737;1;158;72.0;120;80;1;1;0;0;1;0
+17051;16976;2;174;76.0;130;80;1;1;0;0;1;1
+17052;20948;1;160;67.0;120;80;1;1;0;0;1;0
+17053;16462;1;165;63.0;100;80;1;1;0;0;1;0
+17054;22695;2;166;76.0;145;80;1;1;1;0;1;1
+17057;18213;1;163;72.0;130;80;1;1;0;0;1;1
+17058;20640;2;167;71.0;167;71;1;1;0;0;1;1
+17059;20458;1;164;76.0;140;95;1;1;0;0;0;1
+17060;19996;1;165;63.0;120;80;1;1;0;0;1;0
+17061;15196;1;158;58.0;120;80;1;1;0;0;1;0
+17062;15935;1;160;52.0;120;80;1;1;0;0;1;0
+17063;19676;2;169;73.0;120;90;1;1;0;0;0;1
+17064;14741;1;170;89.0;100;80;1;1;0;0;0;0
+17065;17564;2;168;72.0;110;70;2;1;0;0;1;1
+17066;21129;1;153;55.0;120;80;1;1;0;0;1;0
+17067;15795;2;160;52.0;70;40;1;1;1;0;1;0
+17068;18819;1;165;76.0;120;80;1;1;0;0;1;0
+17069;16599;1;165;60.0;120;80;1;1;0;0;1;0
+17070;19753;1;163;80.0;120;80;1;2;0;0;1;1
+17071;16911;2;170;86.0;120;80;1;1;1;1;1;0
+17072;19172;1;165;59.0;120;80;1;1;0;0;1;0
+17073;14813;1;166;63.0;110;80;1;1;0;0;1;0
+17076;16588;2;180;101.0;120;80;1;3;1;1;1;0
+17079;20913;1;157;79.0;140;80;1;1;0;0;1;0
+17080;18795;2;158;64.0;120;80;1;1;1;0;1;1
+17081;18101;1;165;80.0;120;80;3;1;0;1;0;1
+17082;20505;2;169;72.0;130;80;1;1;1;0;1;0
+17083;20536;1;168;72.0;120;80;2;1;0;0;1;0
+17085;20419;1;165;65.0;110;70;1;1;0;0;1;0
+17086;20537;1;155;97.0;140;90;3;1;0;0;0;1
+17087;21985;2;172;125.0;170;1000;1;1;0;0;1;1
+17088;15101;1;160;68.0;140;90;2;1;0;0;1;1
+17089;18133;1;178;98.0;120;80;1;1;0;0;0;0
+17090;21740;2;168;60.0;120;80;1;1;0;0;1;0
+17091;19028;2;170;75.0;120;80;1;1;0;0;1;1
+17093;18215;1;174;73.0;110;70;2;1;0;0;1;1
+17094;17061;1;164;61.0;110;70;1;1;0;0;1;0
+17096;21683;1;154;67.0;145;95;1;1;0;0;0;1
+17097;21906;2;152;52.0;130;70;1;1;0;0;1;0
+17098;19598;2;169;80.0;151;101;1;1;0;0;1;0
+17099;18292;1;152;55.0;140;90;3;2;0;0;1;1
+17100;18473;1;160;60.0;120;80;1;1;0;0;0;0
+17102;21287;2;168;72.0;120;80;1;1;0;1;1;1
+17104;21253;1;156;66.0;140;80;1;1;0;0;1;0
+17105;22693;2;166;80.0;140;90;1;1;1;1;1;1
+17106;21289;1;162;65.0;120;80;1;3;0;0;1;0
+17107;20492;1;159;60.0;110;80;1;1;0;0;1;0
+17108;19587;1;160;110.0;140;100;3;3;0;0;0;1
+17109;15274;1;160;58.0;110;90;1;1;0;0;1;0
+17110;21694;1;160;62.0;140;80;1;1;0;0;0;0
+17111;19959;1;166;65.0;110;60;1;1;0;0;1;0
+17112;21481;2;180;75.0;130;80;3;3;0;0;1;0
+17113;17652;2;173;93.0;140;90;1;1;1;0;1;1
+17114;22570;1;153;82.0;140;90;3;2;0;0;0;0
+17116;22161;1;167;67.0;120;80;3;1;0;0;1;1
+17118;15993;2;180;80.0;160;100;1;1;1;0;1;1
+17119;23162;1;156;59.0;145;70;3;1;0;0;1;1
+17120;16081;2;186;88.0;120;90;2;2;0;0;1;0
+17121;21409;1;156;65.0;120;80;1;1;0;0;0;1
+17122;20231;1;172;82.0;110;70;2;1;0;0;1;0
+17124;19125;1;154;67.0;100;70;1;1;0;0;1;0
+17125;16767;1;165;61.0;90;60;1;1;0;0;0;0
+17126;22053;2;171;93.0;140;90;3;3;1;0;1;0
+17127;17299;1;155;112.0;160;80;1;1;0;0;0;1
+17128;20332;1;182;87.0;120;80;1;1;0;0;1;0
+17129;21919;1;156;68.0;120;80;1;1;0;0;1;0
+17131;18360;1;165;65.0;160;79;2;1;0;0;0;1
+17132;19772;2;176;100.0;120;90;1;2;0;0;1;0
+17134;21746;1;151;65.0;120;80;1;1;0;0;1;0
+17135;22718;1;162;64.0;130;80;1;1;0;0;1;1
+17137;21282;1;164;96.0;130;80;1;1;0;0;1;1
+17138;18258;2;198;102.0;110;70;1;1;0;0;1;0
+17140;21882;1;165;82.0;160;90;2;1;0;0;1;1
+17141;18897;1;157;72.0;130;80;1;1;0;0;0;0
+17142;22674;2;159;72.0;120;80;1;1;0;0;0;0
+17143;23451;2;162;52.0;110;70;1;1;0;1;1;0
+17144;23264;1;157;69.0;150;100;2;1;0;0;1;1
+17148;22403;1;162;46.0;110;70;1;1;0;0;1;0
+17149;20723;2;169;84.0;120;80;3;3;0;0;1;1
+17150;21117;1;187;73.0;120;80;1;1;0;0;1;0
+17152;15481;2;162;64.0;130;80;1;2;1;0;1;0
+17153;21010;2;182;90.0;150;90;1;1;1;0;1;1
+17154;20881;1;161;72.0;120;80;1;1;0;0;1;0
+17157;17481;1;160;68.0;120;80;1;1;0;0;1;0
+17158;20543;1;158;75.0;120;80;1;1;0;0;1;0
+17159;22715;2;180;103.0;120;80;2;2;0;0;1;0
+17160;20457;1;171;102.0;160;90;3;3;0;0;1;0
+17162;23277;2;165;79.0;127;85;1;1;0;0;1;1
+17163;23165;2;169;73.0;140;90;2;1;0;0;1;1
+17164;21338;1;159;56.0;120;80;1;1;0;0;1;0
+17165;16864;2;168;67.0;120;80;1;1;0;0;1;0
+17166;18979;2;170;69.0;140;90;1;2;1;0;1;1
+17167;14717;1;151;59.0;110;80;1;2;0;0;1;1
+17168;21072;2;169;54.0;140;1000;1;1;1;0;1;0
+17170;19605;1;155;56.0;155;80;1;1;0;0;1;1
+17171;18010;2;175;78.0;110;80;1;1;0;0;0;1
+17174;18841;1;158;100.0;120;80;1;1;0;0;1;0
+17175;22399;1;162;88.0;120;80;1;1;0;0;1;0
+17176;20508;1;165;62.0;120;80;1;1;0;0;1;1
+17180;16893;2;170;76.0;160;120;3;3;0;0;1;1
+17183;22435;1;144;50.0;110;70;3;1;0;0;1;1
+17186;21834;1;160;53.0;120;80;2;1;0;0;0;0
+17187;18961;1;161;102.0;130;90;1;3;0;0;1;1
+17189;22526;2;180;76.0;100;80;2;2;0;0;1;0
+17190;19971;1;151;50.0;110;70;1;1;0;0;1;0
+17192;22469;2;165;55.0;120;80;2;1;0;0;1;0
+17193;20932;1;169;69.0;140;90;1;1;0;0;0;1
+17197;18320;2;173;80.0;120;80;1;1;0;0;1;0
+17198;21271;1;158;58.0;120;80;1;1;0;0;1;1
+17199;20889;1;162;89.0;145;90;3;1;0;0;1;1
+17200;20225;2;176;109.0;120;80;1;1;1;1;1;1
+17202;19151;1;168;72.0;140;90;1;1;0;0;1;1
+17204;20328;1;158;92.0;140;90;1;1;0;0;1;1
+17205;18890;2;182;92.0;130;90;1;1;1;1;1;1
+17207;21900;1;158;68.0;150;90;1;1;0;0;1;1
+17208;21244;2;156;96.0;120;80;1;1;0;0;1;0
+17209;20505;1;155;81.0;155;95;2;1;0;0;0;1
+17211;15063;1;168;68.0;120;80;1;1;0;0;0;1
+17212;17386;2;165;70.0;110;80;1;1;0;0;0;0
+17215;16023;1;172;75.0;120;80;1;1;0;0;1;0
+17216;16485;1;165;80.0;100;80;1;1;0;0;0;0
+17218;18964;1;163;64.0;160;110;2;1;0;0;1;0
+17219;17949;2;185;87.0;120;90;1;1;0;0;1;0
+17220;22664;2;169;65.0;120;80;1;3;0;0;1;0
+17222;21214;1;167;72.0;120;80;1;1;0;0;1;0
+17224;20362;1;157;67.0;90;50;1;1;0;0;1;1
+17226;19816;1;165;67.0;120;70;3;3;0;0;0;0
+17228;18373;2;171;100.0;130;80;1;1;0;0;1;1
+17230;20410;1;160;74.0;120;80;1;1;0;0;1;1
+17233;19738;1;154;55.0;120;80;1;1;0;0;1;1
+17234;14683;1;157;110.0;140;80;1;1;0;0;1;1
+17235;14638;2;164;62.0;100;60;1;1;0;0;1;0
+17236;23329;1;153;93.0;130;80;1;2;0;0;1;1
+17237;22702;2;168;65.0;110;70;1;1;1;0;1;0
+17238;18090;2;176;98.0;130;80;3;3;0;0;1;1
+17239;18819;1;157;112.0;140;80;1;1;0;0;1;1
+17241;19839;1;161;82.0;130;90;3;1;0;0;1;1
+17245;21172;1;160;82.0;130;80;1;1;0;0;0;0
+17246;18349;1;160;65.0;120;80;1;1;0;0;1;1
+17247;18935;1;170;69.0;120;70;1;1;0;0;0;0
+17249;16837;1;155;73.0;120;80;1;2;0;0;1;0
+17250;23348;1;166;92.0;160;90;1;1;0;0;1;1
+17251;17015;2;182;98.0;120;80;1;1;0;0;1;1
+17252;14410;1;175;80.0;150;90;1;1;0;0;1;1
+17253;18352;1;164;75.0;130;90;3;1;0;0;1;1
+17254;21363;2;168;89.0;150;90;1;1;0;0;1;1
+17255;18811;2;176;100.0;110;80;1;1;0;0;1;1
+17256;20590;1;160;45.0;110;70;1;1;0;0;0;0
+17257;20982;2;178;82.0;130;90;1;1;0;0;1;0
+17258;21128;1;163;81.0;120;70;1;3;0;0;1;0
+17260;21466;2;169;78.0;130;9011;1;1;1;1;1;1
+17261;16292;2;170;96.0;130;80;1;1;0;0;1;0
+17262;17601;1;162;75.0;120;80;3;1;0;0;1;1
+17265;17811;1;160;58.0;120;80;1;1;0;0;1;0
+17267;21768;2;168;74.0;160;100;3;1;0;0;1;1
+17268;17479;2;174;80.0;120;80;1;1;0;0;1;0
+17269;21797;1;165;62.0;120;80;1;1;0;0;0;0
+17270;23479;1;160;57.0;110;70;1;1;0;0;0;1
+17271;19637;2;170;78.0;120;80;1;1;0;0;1;0
+17272;23078;2;173;73.0;140;90;2;1;0;0;1;1
+17273;18785;2;177;62.0;120;90;1;1;0;0;1;1
+17274;15452;1;156;48.0;110;70;1;1;0;0;1;0
+17276;20250;1;158;89.0;140;80;1;1;0;0;1;1
+17277;15241;2;176;85.0;140;80;1;1;0;0;1;1
+17278;18093;2;183;90.0;120;50;3;3;0;0;1;1
+17279;17306;2;160;65.0;120;80;1;1;0;0;1;0
+17281;18178;1;160;53.0;110;70;1;1;0;0;0;0
+17282;16808;1;154;68.0;130;90;1;1;0;0;1;1
+17283;21169;2;175;68.0;120;80;1;1;1;0;1;0
+17284;21239;1;153;88.0;120;90;1;1;0;0;1;0
+17285;19623;1;165;58.0;120;80;1;1;0;0;1;0
+17287;18151;1;168;75.0;130;80;1;1;0;0;1;1
+17289;18393;2;177;110.0;175;95;1;3;0;0;1;0
+17290;19620;1;158;65.0;110;80;2;3;0;0;1;1
+17291;21019;1;160;50.0;120;80;1;1;0;0;1;0
+17293;22643;1;175;71.0;140;80;1;1;0;0;1;1
+17296;18460;1;158;59.0;100;80;2;1;0;0;1;0
+17297;19465;2;174;70.0;120;80;1;1;0;0;0;1
+17300;20129;2;185;97.0;140;90;3;3;0;0;1;1
+17301;17463;1;172;124.0;160;110;1;1;0;0;1;0
+17303;21695;1;167;70.0;120;80;1;1;0;0;1;0
+17305;17658;1;152;78.0;140;90;2;1;0;0;1;1
+17306;15269;1;152;100.0;110;70;1;1;0;0;1;0
+17307;18823;1;159;80.0;130;90;1;1;0;0;0;1
+17308;18482;1;167;60.0;120;70;1;1;0;0;1;0
+17310;19660;1;168;79.0;120;80;2;1;0;0;0;0
+17311;20666;2;176;84.0;120;80;1;1;1;0;0;1
+17312;16879;1;169;98.0;150;90;1;1;0;0;1;0
+17313;17571;1;162;61.0;120;70;1;1;0;0;1;0
+17314;17464;2;170;62.0;110;70;1;1;1;0;1;0
+17315;22638;2;168;88.0;120;80;1;1;0;0;1;0
+17317;16744;1;160;65.0;120;80;1;1;0;0;1;1
+17319;14701;2;164;85.0;120;80;1;1;0;0;1;0
+17320;20606;1;166;68.0;210;100;1;1;0;0;1;0
+17321;22078;1;147;59.0;130;90;2;1;0;0;1;0
+17322;21825;2;170;91.0;150;90;3;1;0;0;1;1
+17326;21255;1;152;65.0;130;90;1;1;0;0;0;0
+17327;14851;2;168;70.0;120;70;1;1;0;0;1;0
+17329;20508;1;160;76.0;160;90;1;1;0;0;0;1
+17333;18180;1;177;65.0;130;80;1;1;0;0;1;1
+17334;19166;1;160;72.0;130;90;1;1;0;0;1;0
+17336;16848;1;163;84.0;140;90;1;1;0;0;1;1
+17338;20506;1;162;61.0;120;80;1;1;0;0;0;1
+17339;16024;1;168;80.0;130;90;1;1;0;0;1;0
+17341;15999;2;181;72.0;120;80;2;1;0;0;1;0
+17342;14796;2;165;72.0;120;80;1;1;0;0;1;0
+17343;22694;1;160;73.0;130;80;3;1;0;0;1;1
+17344;21043;2;168;86.0;140;100;2;1;0;0;1;1
+17345;15936;1;160;60.0;130;60;1;1;0;0;1;0
+17346;16300;2;162;72.0;120;70;1;1;1;0;1;0
+17348;20392;1;165;85.0;130;90;1;1;0;0;1;0
+17349;14546;2;170;99.0;150;100;2;2;0;0;1;1
+17350;14582;2;176;92.0;110;70;1;1;0;0;1;0
+17352;17441;2;175;90.0;135;90;3;3;0;0;1;0
+17355;18196;1;157;70.0;150;100;3;3;0;0;1;0
+17356;21780;1;156;68.0;130;90;1;1;0;0;1;0
+17358;20929;1;170;75.0;110;80;1;1;0;0;0;0
+17359;15245;2;165;64.0;120;80;1;1;0;0;1;0
+17360;21719;2;172;92.0;110;60;1;1;0;0;1;0
+17361;21011;2;163;68.0;160;80;1;1;0;0;1;1
+17362;18419;1;160;52.0;110;70;1;1;0;0;1;0
+17363;14568;1;160;87.0;140;90;1;1;0;0;1;1
+17364;19051;2;171;97.0;130;80;1;1;1;0;1;1
+17365;21927;1;163;63.0;120;80;3;1;0;0;0;1
+17366;21149;1;162;56.0;130;80;3;1;0;1;0;1
+17367;22045;1;159;69.0;120;80;1;3;0;0;1;1
+17368;19658;1;168;63.0;120;70;1;1;0;0;1;1
+17370;23115;1;165;70.0;140;95;2;1;0;0;1;1
+17371;22672;1;170;79.0;120;60;1;1;0;0;1;0
+17372;20248;2;161;60.0;120;80;1;1;1;0;1;0
+17373;19666;1;155;107.0;123;86;1;1;0;0;0;1
+17374;21803;2;169;70.0;140;80;1;1;1;1;0;1
+17375;17477;1;170;74.0;120;70;1;1;0;0;1;0
+17378;15983;1;155;61.0;120;80;3;3;0;0;1;0
+17380;16623;2;186;75.0;120;80;1;1;0;0;0;0
+17381;14403;2;187;87.0;150;100;1;1;0;0;0;0
+17382;20317;2;170;68.0;120;80;1;1;0;0;1;1
+17383;20625;1;155;114.0;120;80;1;1;0;0;1;1
+17384;14546;1;144;75.0;120;80;1;1;0;0;1;1
+17385;15458;1;162;64.0;130;90;1;1;0;0;1;0
+17386;15733;1;164;93.0;120;70;2;2;0;0;0;0
+17388;14447;1;163;69.0;120;80;1;1;0;0;1;0
+17390;21226;2;175;80.0;110;70;1;1;0;0;1;0
+17391;22781;1;168;76.0;120;80;1;1;0;0;1;1
+17392;18999;1;166;72.0;120;80;1;1;0;0;1;0
+17393;14424;2;182;112.0;120;80;1;1;0;0;0;0
+17395;20531;1;150;53.0;140;90;3;3;0;0;1;1
+17396;22530;2;169;73.0;140;90;3;1;0;0;1;1
+17397;22855;2;179;121.0;140;100;3;3;1;0;0;1
+17399;18114;1;164;90.0;140;90;1;1;0;0;1;0
+17400;17770;1;168;55.0;130;70;1;1;0;0;1;1
+17402;17968;2;165;62.0;130;90;3;1;1;0;1;0
+17403;18281;1;161;67.0;120;90;1;1;0;0;1;0
+17405;22738;2;176;102.0;130;80;2;1;0;0;1;1
+17406;15967;1;170;78.0;120;80;1;1;0;0;0;0
+17407;18272;1;153;60.0;120;80;1;1;0;0;0;0
+17409;16975;1;161;59.0;110;70;1;1;0;0;1;0
+17410;17234;2;171;109.0;150;90;1;3;0;0;0;1
+17411;21845;1;174;72.0;120;80;1;1;0;0;1;0
+17413;21927;1;155;76.0;130;90;3;1;0;0;0;1
+17414;18257;2;174;106.0;120;90;1;1;1;0;0;0
+17416;20289;2;160;61.0;120;80;1;1;0;0;1;0
+17418;20544;2;166;72.0;120;80;1;1;0;0;1;0
+17420;20479;2;164;60.0;130;80;1;1;0;0;1;0
+17421;20336;1;166;83.0;110;70;3;1;0;1;1;1
+17422;16980;2;177;84.0;115;80;1;1;0;1;1;0
+17424;17701;1;158;57.0;120;70;2;1;0;0;1;0
+17425;15802;2;176;94.0;140;80;2;1;0;0;1;1
+17426;18200;1;155;53.0;120;80;1;1;0;0;1;1
+17427;18371;2;161;51.0;120;70;1;1;1;0;1;0
+17428;17376;1;156;59.0;130;80;1;1;0;0;0;1
+17429;17052;1;160;74.0;140;90;1;1;0;0;1;1
+17431;18369;2;184;87.0;100;70;1;1;0;0;0;0
+17432;15985;2;169;67.0;100;80;1;1;0;0;1;0
+17436;23259;1;149;84.0;120;80;1;1;0;0;1;0
+17437;23604;1;151;74.0;160;100;1;1;0;0;1;1
+17441;20289;1;162;74.0;140;90;1;1;0;0;1;1
+17442;20204;1;158;95.0;100;70;3;1;0;0;1;0
+17443;22755;1;161;60.0;160;100;2;2;0;0;1;1
+17444;23240;1;155;82.0;140;90;3;1;0;0;1;0
+17447;18165;1;146;73.0;130;80;3;1;0;0;1;0
+17448;16111;1;167;73.0;120;70;1;1;0;0;1;0
+17449;21122;1;165;80.0;160;100;1;1;0;0;1;0
+17450;22237;1;165;62.0;130;80;1;1;0;0;1;0
+17451;19841;2;179;95.0;150;100;1;1;0;0;1;1
+17452;18937;1;171;84.0;120;80;1;1;0;0;1;0
+17453;15416;1;167;60.0;110;70;1;1;0;0;0;1
+17454;18298;2;165;65.0;120;80;1;1;0;0;1;0
+17456;18041;1;159;82.0;120;80;1;1;0;0;1;0
+17457;15432;1;166;66.0;110;70;1;1;0;0;1;0
+17459;19843;1;159;70.0;120;80;1;1;0;0;0;0
+17460;20307;1;172;105.0;120;80;3;1;0;0;1;1
+17461;22025;1;159;112.0;170;100;1;1;0;1;0;1
+17462;18059;2;167;60.0;120;80;3;1;1;0;1;1
+17463;16790;1;160;60.0;110;60;1;1;0;0;1;1
+17464;20459;1;165;70.0;130;70;1;1;0;0;0;0
+17465;18984;2;161;83.0;120;80;3;1;1;0;1;1
+17467;20475;1;158;52.0;130;90;3;3;1;0;1;0
+17469;19071;2;175;78.0;120;80;1;1;0;0;1;0
+17471;23518;2;174;99.0;150;90;1;1;0;0;1;1
+17472;19925;1;180;70.0;120;90;2;1;0;0;0;1
+17473;21848;2;158;60.0;120;70;1;1;0;0;1;0
+17474;22602;1;160;78.0;150;100;3;1;0;0;1;1
+17475;15987;2;178;98.0;160;100;1;1;0;0;1;1
+17476;20523;1;178;95.0;140;90;1;1;0;0;1;1
+17480;15401;1;158;62.0;110;70;1;1;0;0;0;0
+17482;14754;1;161;111.0;140;90;1;1;0;0;1;1
+17483;14294;2;172;74.0;120;80;1;1;0;0;1;0
+17484;22742;2;178;79.0;130;90;1;1;0;0;1;1
+17487;19937;2;175;85.0;120;80;2;1;1;1;1;0
+17488;22518;1;155;68.0;140;90;1;1;0;0;1;1
+17489;22697;1;163;72.0;110;70;2;1;0;0;1;1
+17490;14425;1;158;69.0;120;80;1;1;0;0;1;0
+17491;20514;1;166;58.0;130;60;2;1;0;0;1;0
+17492;16841;1;167;67.0;110;70;1;1;0;0;1;0
+17493;16582;1;156;50.0;110;70;1;2;0;0;0;0
+17494;16134;2;166;80.0;150;80;2;1;0;0;1;1
+17496;19752;2;169;89.0;120;90;1;1;1;0;1;0
+17497;16347;1;169;65.0;120;80;2;1;0;0;0;1
+17499;19855;1;165;60.0;120;80;1;1;0;0;1;1
+17502;21382;1;159;60.0;120;80;1;1;0;0;0;1
+17503;23520;1;161;59.0;140;95;1;1;0;0;1;1
+17504;22885;1;156;58.0;120;80;1;1;0;0;1;1
+17505;19651;1;169;78.0;120;80;1;1;1;0;1;1
+17508;23241;2;177;86.0;150;90;2;1;0;0;1;1
+17509;18404;1;147;84.0;150;80;1;1;0;0;1;0
+17510;23240;1;165;60.0;150;90;2;2;0;0;0;1
+17511;14906;1;158;92.0;158;92;3;3;0;0;1;0
+17512;16991;1;156;61.0;90;60;2;1;0;0;0;0
+17513;22148;2;170;81.0;150;80;2;1;1;1;1;1
+17514;15373;1;166;63.0;110;80;1;2;0;0;1;0
+17516;15157;1;163;63.0;110;70;1;1;0;0;1;0
+17517;18164;1;164;92.0;145;90;2;1;1;1;1;1
+17519;20026;2;168;64.0;120;80;1;1;0;0;1;0
+17520;22663;1;156;90.0;160;80;3;3;0;0;1;0
+17522;19666;1;156;69.0;110;70;1;1;0;0;1;0
+17523;14718;2;170;65.0;120;80;1;2;0;1;1;0
+17524;18290;1;153;74.0;130;90;1;1;0;0;1;0
+17525;16647;1;168;70.0;120;79;1;1;0;0;1;0
+17527;19720;2;170;92.0;110;70;3;1;0;0;0;1
+17530;21794;1;163;63.0;120;80;3;3;0;0;0;0
+17531;14638;1;157;60.0;110;70;1;1;0;0;1;0
+17532;18707;1;162;55.0;120;80;1;1;0;0;1;0
+17533;23333;1;157;75.0;120;90;1;1;0;0;1;1
+17534;18302;2;169;69.0;120;80;1;1;0;0;1;0
+17535;18967;2;169;107.0;160;90;1;1;0;0;0;1
+17537;20241;1;165;65.0;120;80;1;3;0;0;0;0
+17538;18283;2;171;78.0;170;80;2;1;0;0;1;1
+17539;19568;1;168;74.0;130;70;1;1;0;0;1;0
+17545;20404;2;170;87.0;130;90;1;1;0;0;1;1
+17546;20342;1;154;76.0;140;80;1;1;0;0;1;1
+17547;16789;1;152;70.0;100;70;2;1;0;1;1;0
+17548;21823;1;160;58.0;110;70;1;1;0;0;1;0
+17550;21339;1;165;100.0;130;70;1;1;0;0;0;0
+17551;18425;1;158;59.0;120;80;1;1;0;0;1;0
+17552;21343;1;169;66.0;110;70;1;1;0;0;0;0
+17553;21856;1;166;66.0;100;60;1;1;0;1;1;0
+17554;19101;2;158;56.0;130;90;1;1;0;0;0;1
+17556;17729;1;156;60.0;140;90;2;1;0;0;1;1
+17557;16032;1;160;49.0;120;80;1;1;0;0;1;0
+17558;23140;1;165;67.0;120;80;3;3;0;0;1;1
+17559;19984;1;162;59.0;120;80;1;1;0;0;1;0
+17560;20931;1;162;47.0;100;70;3;1;0;0;1;0
+17561;23107;2;170;83.0;120;80;1;1;0;0;0;0
+17562;21126;1;164;76.0;130;90;1;1;0;0;0;1
+17563;18966;1;165;68.0;105;70;1;1;0;0;1;1
+17564;20605;1;168;103.0;130;90;1;1;0;0;1;1
+17565;23264;2;168;82.0;130;90;3;1;0;0;1;0
+17567;21812;2;162;70.0;130;90;1;1;1;0;1;0
+17568;14603;1;165;59.0;100;70;1;1;0;0;0;0
+17569;22070;1;160;95.0;140;90;1;1;0;0;0;1
+17570;21935;1;165;63.0;120;80;1;1;0;0;1;1
+17571;21128;2;174;92.0;150;100;1;1;0;0;1;1
+17572;22538;1;150;75.0;140;90;2;1;0;0;1;1
+17575;20489;1;161;93.0;142;1011;3;1;0;0;1;0
+17577;23309;1;166;59.0;110;70;1;1;0;0;1;0
+17578;16702;1;158;71.0;140;90;3;3;0;0;1;1
+17579;21868;1;172;88.0;120;80;1;1;0;0;1;1
+17580;20209;1;149;99.0;115;80;2;1;0;0;1;0
+17582;22964;2;168;80.0;140;80;1;1;0;0;1;1
+17583;18925;1;146;56.0;100;70;1;1;0;0;1;0
+17584;14668;1;167;71.0;120;80;1;1;0;0;1;1
+17587;20395;2;167;75.0;125;70;2;1;0;0;1;0
+17588;23420;2;166;55.0;140;100;1;1;0;0;1;1
+17590;22771;2;165;70.0;120;80;1;1;1;0;1;0
+17591;15253;1;158;54.0;120;60;1;1;0;0;1;0
+17593;19474;1;163;59.0;120;80;1;1;0;0;0;1
+17595;19192;2;172;90.0;140;80;1;1;0;0;1;1
+17598;18072;1;154;61.0;100;60;2;1;0;0;0;1
+17601;18956;1;154;65.0;130;90;2;2;0;1;1;1
+17602;23309;2;158;69.0;120;80;3;1;0;0;1;0
+17605;19624;2;186;92.0;160;100;2;1;1;1;1;1
+17606;19956;1;155;45.0;110;70;1;1;0;0;1;0
+17607;20423;2;184;106.0;120;80;1;2;0;0;1;0
+17608;18452;2;178;76.0;100;80;1;2;1;0;1;0
+17609;15176;2;175;75.0;120;80;1;1;0;0;0;0
+17610;21890;1;158;62.0;120;80;1;1;0;0;0;0
+17614;21977;2;150;50.0;120;80;1;2;0;0;1;1
+17615;23556;2;175;70.0;110;70;1;1;0;0;1;0
+17616;16673;2;160;60.0;110;80;1;1;0;0;1;0
+17619;21944;2;166;76.0;140;80;1;1;0;0;1;0
+17620;21953;1;156;66.0;120;80;1;1;0;0;0;0
+17621;21994;1;162;84.0;140;90;1;1;0;0;1;1
+17623;17708;2;170;68.0;120;80;1;1;0;0;1;1
+17625;18260;1;150;69.0;110;70;1;1;0;0;0;1
+17626;22593;2;177;93.0;120;70;1;1;0;0;1;0
+17627;20301;1;160;76.0;130;70;2;1;0;0;1;0
+17628;14434;1;162;73.0;120;80;1;1;0;0;1;0
+17629;23225;1;162;69.0;130;80;1;1;0;0;1;0
+17632;18203;1;168;95.0;120;80;1;1;0;1;1;0
+17633;19784;1;165;65.0;110;70;1;1;0;0;0;1
+17636;22838;2;170;75.0;130;80;1;1;0;0;1;1
+17637;14470;1;173;72.0;130;90;1;1;0;0;1;0
+17638;22080;1;159;80.0;120;80;3;3;0;0;1;0
+17639;15295;1;165;70.0;110;80;1;1;0;0;1;0
+17640;21185;1;168;95.0;120;80;3;1;0;0;1;1
+17641;21740;1;168;66.0;160;80;2;1;0;0;1;0
+17643;17629;2;172;87.0;130;90;1;1;1;0;1;0
+17644;16022;2;167;72.0;120;80;1;1;1;0;1;0
+17645;22060;1;158;72.0;150;100;2;2;0;0;0;1
+17646;21180;1;163;67.0;140;90;1;1;0;0;0;1
+17647;21902;1;168;103.0;145;95;2;1;0;0;1;1
+17649;23427;2;180;94.0;140;100;2;2;0;0;0;1
+17650;17340;2;165;72.0;130;80;1;2;0;1;1;1
+17651;17448;1;160;60.0;140;90;1;3;0;1;1;1
+17654;16881;2;163;67.0;130;80;1;1;0;0;1;1
+17657;18921;1;165;78.0;120;79;1;1;0;0;1;0
+17658;14608;2;174;68.0;120;80;1;1;1;0;1;0
+17659;14784;1;161;75.0;110;70;1;1;0;0;1;0
+17660;19545;1;156;49.0;150;90;3;3;0;0;1;0
+17663;20173;1;152;55.0;120;80;1;1;0;0;1;1
+17664;19025;1;148;82.0;140;90;2;2;0;0;1;1
+17665;18146;2;164;59.0;120;80;1;1;0;0;1;0
+17666;23481;1;153;44.0;120;80;2;1;0;0;1;0
+17667;18346;1;166;66.0;120;80;1;1;0;0;1;0
+17668;16781;1;157;70.0;120;80;1;1;0;0;1;0
+17669;18734;1;156;63.0;170;70;1;1;0;0;1;1
+17670;17350;2;174;82.0;150;90;1;1;0;0;0;1
+17671;21099;1;152;86.0;120;70;1;1;0;0;0;0
+17673;19140;1;160;60.0;120;80;1;1;0;0;1;0
+17675;18988;2;167;77.0;120;80;1;1;1;1;1;0
+17676;19715;1;165;65.0;130;90;1;1;0;0;0;1
+17677;20344;1;165;87.0;120;100;1;3;0;0;1;1
+17679;23268;2;178;88.0;140;90;1;1;0;0;1;1
+17680;18898;1;163;93.0;110;70;1;1;0;0;0;0
+17681;20386;1;154;95.0;120;80;1;1;0;0;1;1
+17682;16112;1;160;58.0;100;60;1;1;0;0;0;0
+17683;21292;1;167;67.0;120;70;2;1;0;0;1;0
+17684;17610;1;159;78.0;110;70;1;1;0;0;1;0
+17686;19910;1;175;71.0;130;80;1;1;0;0;1;1
+17689;19658;1;166;69.0;120;80;1;2;0;0;1;0
+17690;21104;2;164;72.0;120;80;1;1;0;0;1;0
+17691;22022;1;174;65.0;120;80;1;1;0;0;1;1
+17692;15377;1;164;60.0;130;80;1;1;0;0;1;1
+17693;20443;2;154;69.0;140;90;1;1;0;0;1;1
+17694;17461;1;165;60.0;110;80;1;1;0;0;1;0
+17696;14617;2;170;68.0;130;80;1;1;0;0;1;0
+17697;23406;1;168;78.0;120;80;2;1;0;0;1;0
+17699;19104;1;152;76.0;120;80;2;1;0;0;1;0
+17700;22605;1;152;90.0;110;70;2;1;0;0;1;1
+17701;22412;1;154;79.0;130;90;1;1;0;0;1;1
+17703;17324;1;168;72.0;160;100;2;1;0;0;1;1
+17705;21121;1;165;65.0;120;80;1;1;0;0;1;0
+17707;16733;2;186;128.0;130;80;1;2;0;0;1;1
+17708;21161;2;175;75.0;120;80;1;1;1;1;1;0
+17710;23407;1;168;68.0;140;90;1;1;0;0;1;1
+17711;17444;1;164;71.0;100;60;1;1;0;0;1;0
+17712;19210;2;165;69.0;140;80;1;1;0;0;0;1
+17714;18144;2;173;89.0;110;90;1;1;0;0;1;0
+17715;21718;1;164;79.0;180;100;3;1;0;0;0;0
+17717;21900;1;156;68.0;140;80;1;1;0;0;1;0
+17719;22757;2;180;74.0;140;90;1;1;0;0;1;1
+17720;23566;1;159;94.0;120;80;2;1;0;1;1;1
+17721;22369;2;159;80.0;130;90;3;1;0;1;1;1
+17722;22447;2;168;71.0;120;80;1;1;1;0;0;1
+17724;20478;1;174;77.0;110;80;1;1;0;0;0;1
+17726;21722;1;159;64.0;120;80;1;1;0;0;1;0
+17727;20984;2;169;107.0;140;80;2;2;0;0;1;1
+17728;15958;1;154;55.0;130;80;3;1;0;0;1;0
+17729;20309;1;145;73.0;170;80;2;2;0;0;0;1
+17730;19630;2;163;83.0;130;90;3;1;0;0;1;1
+17731;15211;1;161;67.0;120;80;1;1;0;0;1;0
+17732;15547;2;175;75.0;120;80;1;1;0;0;1;0
+17733;22633;2;160;65.0;120;80;1;1;0;0;0;0
+17735;18908;2;175;101.0;110;80;2;1;0;0;1;0
+17737;22018;2;166;62.0;120;80;1;1;1;0;1;0
+17738;18317;2;164;63.0;120;70;1;1;0;0;1;0
+17739;17462;1;151;67.0;120;80;1;1;0;0;1;0
+17741;17741;1;167;53.0;120;80;1;1;0;0;1;0
+17742;16980;1;166;85.0;110;80;1;2;0;0;0;1
+17745;20385;1;155;58.0;140;100;1;1;0;0;1;1
+17746;19069;1;172;65.0;120;70;1;1;0;0;0;0
+17747;21932;1;159;94.0;160;100;3;1;0;0;1;0
+17748;16585;1;162;56.0;120;80;1;1;0;0;1;1
+17749;18246;1;162;60.0;120;80;2;2;0;0;1;1
+17750;21044;2;173;102.0;120;70;1;1;0;0;1;0
+17752;23273;1;150;76.0;130;80;2;3;0;0;1;0
+17753;19536;2;176;98.0;120;80;1;1;0;0;0;1
+17755;15409;1;170;66.0;120;60;1;1;0;0;1;0
+17757;22077;1;137;161.0;150;100;2;1;0;0;0;1
+17759;16599;2;158;79.0;140;85;1;1;0;0;1;1
+17760;21788;2;165;66.0;120;80;1;1;0;0;1;0
+17761;18061;1;157;79.0;120;80;1;1;0;0;1;1
+17762;20481;1;144;69.0;160;100;1;1;0;0;1;1
+17763;18808;1;165;59.0;130;80;1;1;0;0;1;1
+17764;19031;2;163;61.0;120;80;1;1;0;0;1;1
+17765;20462;1;159;57.0;110;80;2;2;0;0;1;0
+17766;16080;1;167;60.0;100;60;1;1;0;0;1;0
+17767;17582;2;170;90.0;100;60;1;1;1;0;1;1
+17768;19526;1;160;84.0;160;100;1;1;0;0;1;0
+17769;17381;1;164;120.0;140;70;3;1;0;0;0;1
+17772;21399;1;165;65.0;120;80;1;1;0;0;1;0
+17775;18308;1;167;73.0;120;80;2;2;0;0;1;1
+17776;15851;1;164;65.0;130;80;3;3;0;0;1;1
+17777;15392;1;167;98.0;145;95;1;1;0;0;1;1
+17778;21833;2;175;78.0;140;90;1;1;0;0;0;1
+17779;21025;1;156;65.0;120;60;1;1;0;0;0;1
+17780;23471;1;155;71.0;110;80;1;1;0;0;1;0
+17782;18875;1;164;75.0;110;70;1;1;0;0;1;0
+17783;19561;2;168;60.0;110;90;1;1;1;0;1;0
+17784;23501;1;164;96.0;130;80;1;1;0;0;0;0
+17785;17470;2;160;80.0;150;90;1;1;0;0;1;1
+17786;21996;2;174;87.0;160;100;1;1;1;0;0;1
+17787;22931;1;170;80.0;120;80;1;1;0;0;1;1
+17788;23379;1;162;75.0;140;90;1;1;0;0;1;1
+17789;21119;1;158;60.0;140;80;1;1;1;0;1;0
+17791;15973;1;173;70.0;110;70;1;1;0;0;1;0
+17793;22517;2;174;77.0;140;60;2;1;0;0;1;1
+17794;16610;1;162;98.0;110;70;1;1;0;0;1;0
+17795;17540;1;167;84.0;130;80;1;1;0;0;1;1
+17797;20588;2;159;60.0;130;80;3;1;1;0;1;0
+17798;19704;1;161;73.0;130;90;1;1;0;0;1;1
+17800;16627;2;184;84.0;130;80;1;1;0;0;0;0
+17801;15872;1;160;90.0;130;90;1;1;0;0;1;0
+17803;14439;2;165;57.0;140;80;1;1;1;1;1;1
+17804;17532;1;160;81.0;110;80;2;2;0;0;1;0
+17806;21335;1;163;113.0;140;90;1;1;0;0;1;1
+17808;16789;1;160;62.0;100;70;1;1;0;0;1;0
+17810;15854;2;166;59.0;120;80;1;1;0;0;1;0
+17811;20653;1;160;55.0;120;80;1;1;0;0;0;1
+17813;20773;1;162;73.0;120;80;1;1;0;0;1;0
+17814;22707;1;170;73.0;150;90;1;1;0;0;1;1
+17815;23358;1;160;100.0;140;90;1;1;0;0;1;1
+17816;23056;1;157;82.0;130;80;1;1;0;0;1;1
+17818;20016;1;156;78.0;120;80;3;3;0;0;1;0
+17819;22650;1;147;60.0;100;60;1;1;0;0;1;1
+17821;18922;2;170;80.0;150;90;1;1;0;0;1;1
+17822;22559;1;154;64.0;110;80;1;1;0;0;1;0
+17825;17442;1;160;65.0;150;90;1;2;0;0;1;1
+17829;15124;1;165;70.0;120;80;1;1;0;0;1;0
+17830;17540;1;176;48.0;110;70;1;1;1;0;1;0
+17831;23466;1;169;75.0;120;80;1;1;0;0;1;1
+17832;20587;2;172;70.0;130;70;1;1;0;0;1;0
+17834;19601;2;170;66.0;150;90;2;1;0;0;1;1
+17836;18352;2;175;75.0;120;80;1;1;0;0;1;0
+17837;22774;1;150;55.0;120;80;1;1;0;0;1;1
+17838;18495;1;157;74.0;100;60;2;2;0;0;1;0
+17839;14467;1;159;104.0;130;85;1;3;0;0;0;0
+17840;18908;1;165;63.0;120;80;1;1;0;0;1;0
+17841;15991;1;158;64.0;150;1000;1;1;0;0;1;1
+17842;17550;1;162;90.0;140;90;1;1;0;0;1;0
+17843;19676;1;169;75.0;120;80;1;1;0;0;1;0
+17844;19486;1;150;51.0;120;80;3;1;0;0;1;0
+17845;16589;1;155;76.0;130;90;1;1;0;0;1;1
+17850;19809;1;158;83.0;140;90;1;1;0;0;1;0
+17851;21706;1;162;76.0;130;90;2;1;0;0;1;1
+17854;20465;1;163;74.0;150;90;1;1;1;0;1;1
+17855;21265;1;159;70.0;140;90;3;1;0;0;1;1
+17857;19665;2;167;59.0;110;70;1;1;0;0;1;0
+17858;20461;1;153;74.0;140;80;2;1;0;0;1;1
+17859;23169;1;155;59.0;110;70;1;1;0;0;1;1
+17861;14575;1;164;58.0;110;80;1;1;0;0;0;0
+17862;19525;1;152;77.0;140;80;1;2;0;0;1;1
+17864;21407;1;158;78.0;120;80;2;3;0;0;1;1
+17865;18127;2;168;71.0;120;80;1;1;1;1;1;0
+17866;21036;1;165;69.0;120;80;1;1;0;0;1;0
+17868;18036;1;157;55.0;120;80;1;1;0;0;1;0
+17869;17609;1;150;73.0;110;70;1;1;0;0;1;0
+17870;19771;2;163;51.0;120;80;1;1;0;0;1;0
+17871;19145;1;165;65.0;130;80;1;2;0;0;0;1
+17873;18957;1;164;96.0;160;100;2;2;0;0;1;1
+17875;18208;1;168;73.0;120;70;1;1;0;0;1;0
+17876;21621;1;155;80.0;140;80;2;1;0;1;1;1
+17878;19243;2;172;68.0;140;90;2;1;0;0;0;1
+17879;14439;1;158;73.0;110;70;1;1;0;0;1;0
+17881;20536;1;164;69.0;140;80;1;1;0;0;0;1
+17884;21229;1;165;65.0;140;80;1;1;0;0;1;1
+17885;18839;2;170;88.0;120;80;1;1;0;0;1;0
+17887;16828;2;171;68.0;120;80;1;2;0;0;1;0
+17889;14735;1;172;52.0;120;80;1;1;0;0;1;0
+17890;17245;1;162;72.0;130;90;1;1;0;0;1;1
+17891;20261;1;162;56.0;150;90;1;1;0;0;1;1
+17892;18966;2;173;90.0;130;80;3;1;1;0;1;0
+17893;23488;1;158;84.0;120;80;1;1;0;0;0;0
+17894;17535;1;166;86.0;160;90;1;1;0;0;1;1
+17895;18189;2;182;85.0;140;90;1;1;0;0;1;1
+17896;20263;1;158;60.0;110;70;1;1;1;0;1;0
+17897;16981;1;160;64.0;120;80;1;1;0;0;1;0
+17899;20431;2;168;74.0;140;80;1;1;0;0;1;0
+17900;19500;2;167;62.0;120;79;1;1;0;0;1;0
+17901;19460;1;150;62.0;114;80;1;1;0;0;1;0
+17902;21484;2;182;95.0;120;80;1;1;0;0;1;0
+17903;20307;2;164;87.0;170;100;3;1;0;0;1;1
+17904;18342;2;167;65.0;140;80;1;1;1;0;1;1
+17905;18973;1;168;65.0;130;80;1;1;0;0;0;0
+17907;18138;1;164;75.0;140;70;1;1;0;0;1;0
+17909;19096;1;146;54.0;100;80;1;1;0;0;1;1
+17910;20638;1;170;80.0;180;80;1;1;0;0;0;1
+17911;20226;1;153;78.0;100;70;1;1;0;0;1;0
+17912;15943;1;168;90.0;130;80;1;1;1;0;0;0
+17914;23344;2;162;78.0;150;80;1;1;0;0;1;0
+17915;21279;2;162;85.0;180;100;1;1;0;0;1;1
+17916;21679;1;154;52.0;100;70;1;1;0;0;1;1
+17917;15317;1;169;60.0;120;80;1;1;0;0;1;0
+17919;17495;2;179;89.0;150;90;2;1;1;0;1;1
+17922;20155;2;165;85.0;140;90;3;1;0;0;1;1
+17925;15985;2;168;75.0;120;80;1;1;0;0;1;0
+17926;14700;1;170;75.0;120;80;2;1;1;0;1;0
+17927;15351;1;162;60.0;140;90;2;1;0;0;1;1
+17928;21329;1;166;65.0;120;80;1;1;0;0;1;0
+17929;23642;1;156;84.0;120;70;1;1;0;0;0;1
+17930;23129;2;178;82.0;130;80;1;1;1;0;1;0
+17931;15944;2;170;73.0;120;80;1;1;0;0;1;0
+17932;17492;1;172;100.0;101;77;1;1;0;0;1;0
+17934;18936;1;165;60.0;120;80;1;1;0;0;1;1
+17935;18873;1;160;64.0;140;90;3;1;0;0;1;0
+17936;19852;1;164;76.0;140;90;3;3;0;0;1;0
+17937;19230;1;157;45.0;100;60;1;1;0;0;1;0
+17938;23374;1;164;62.0;138;68;1;1;0;0;1;1
+17939;23151;2;168;82.0;130;90;2;1;0;0;1;0
+17940;21979;1;171;65.0;120;80;1;1;0;0;1;1
+17941;19500;2;170;68.0;120;80;1;1;0;0;1;1
+17942;19772;1;158;60.0;110;80;1;1;0;0;1;0
+17944;17485;2;172;97.0;160;80;1;1;1;1;0;1
+17945;19788;2;180;80.0;120;80;1;2;0;0;1;1
+17946;21090;2;178;68.0;120;80;1;1;0;0;1;0
+17949;21959;1;160;68.0;120;79;1;1;0;0;1;0
+17951;14550;1;160;65.0;110;70;2;2;0;0;1;0
+17953;22435;2;169;91.0;150;80;1;1;0;0;1;0
+17954;20540;1;160;67.0;120;80;1;1;0;0;1;1
+17955;22568;1;158;71.0;170;70;1;1;0;0;1;0
+17956;17468;1;170;60.0;140;80;1;1;0;0;1;1
+17957;18800;1;165;80.0;120;80;1;1;0;0;1;0
+17959;21292;1;163;65.0;120;80;1;1;0;0;1;0
+17960;23586;2;167;70.0;120;80;1;1;0;0;1;1
+17961;20464;1;147;48.0;110;70;1;1;0;0;0;0
+17964;20252;1;162;70.0;140;90;1;1;0;0;1;1
+17966;22536;1;162;88.0;120;90;3;3;0;0;1;0
+17968;19848;1;169;62.0;120;80;1;1;0;0;1;0
+17969;23511;1;162;100.0;140;80;1;1;0;0;1;1
+17970;20545;1;172;70.0;120;80;1;1;0;0;1;0
+17971;23412;2;160;62.0;150;90;1;1;0;0;1;1
+17972;19101;1;167;57.0;120;80;2;1;0;0;0;0
+17975;21163;1;155;60.0;120;80;1;1;0;0;1;1
+17976;23412;1;164;60.0;120;80;1;1;0;0;1;0
+17978;18700;1;155;51.0;120;80;1;1;0;0;1;0
+17979;20449;1;165;78.0;160;90;1;2;0;0;1;0
+17980;21299;2;166;81.0;110;80;1;1;0;0;1;0
+17981;19709;1;146;61.2;150;90;1;1;0;0;1;0
+17982;20269;1;161;57.0;120;80;1;1;0;0;1;0
+17983;23404;1;169;75.0;120;80;1;1;0;0;0;1
+17984;23337;1;147;57.0;160;100;1;1;0;0;1;1
+17985;16059;2;173;73.0;150;90;2;3;0;0;1;0
+17986;21325;1;165;92.0;150;1000;1;1;0;0;1;0
+17987;19588;1;155;58.0;120;80;1;1;0;0;1;0
+17988;22573;1;151;68.0;150;90;1;1;0;0;1;1
+17989;21789;2;160;60.0;120;80;1;1;0;0;1;0
+17990;15852;1;154;62.0;150;90;2;1;0;0;1;1
+17991;14797;1;160;56.0;120;90;1;1;0;0;1;0
+17992;20195;1;158;56.0;110;70;1;1;0;0;1;0
+17993;22115;1;162;63.0;120;80;1;1;0;0;1;1
+17996;21622;2;173;81.0;120;80;1;1;0;0;1;0
+17999;15589;1;170;60.0;120;80;1;1;0;0;1;0
+18000;19705;1;175;68.0;150;80;1;1;0;0;1;1
+18001;15925;1;158;51.0;120;80;1;1;0;0;1;0
+18002;20534;2;180;76.0;120;80;1;1;0;0;0;0
+18003;17937;1;169;78.0;100;70;2;2;0;0;1;0
+18006;14638;1;157;51.0;110;70;1;1;0;0;0;0
+18007;22013;1;170;60.0;120;80;1;1;0;0;1;1
+18008;21808;1;163;80.0;130;100;1;1;0;0;1;1
+18009;15173;1;166;68.0;110;70;1;1;0;0;1;0
+18010;19528;2;186;112.0;120;80;3;1;0;0;1;0
+18011;19131;1;158;89.0;120;90;3;1;0;0;0;1
+18013;21041;1;175;87.0;110;70;1;1;0;0;0;0
+18014;21220;2;170;58.0;130;90;1;1;0;0;1;1
+18017;18901;1;162;64.0;120;80;1;1;0;0;1;0
+18018;19824;1;180;110.0;120;70;1;1;0;0;1;0
+18019;17759;2;167;70.0;120;80;1;1;0;0;1;0
+18020;16211;1;155;72.0;100;90;1;1;0;0;0;0
+18021;20594;1;150;52.0;100;70;2;2;0;0;1;0
+18022;19709;2;169;65.0;110;80;2;1;1;0;1;0
+18024;16789;1;158;67.0;110;70;1;1;0;0;0;0
+18025;15142;1;168;69.0;120;80;3;3;0;0;1;1
+18028;23259;2;165;73.0;120;80;1;1;0;0;1;0
+18029;21829;1;169;56.0;90;60;1;1;0;0;1;0
+18030;22413;1;152;64.0;110;70;3;1;0;0;1;0
+18031;22497;1;158;70.0;150;93;1;1;0;0;1;1
+18032;20504;1;158;57.0;120;70;1;1;0;0;1;0
+18033;16286;2;167;103.0;120;80;1;1;0;0;1;0
+18035;21143;1;158;74.0;110;70;1;1;0;0;1;1
+18040;20531;1;160;70.0;150;100;2;1;0;0;1;1
+18041;16677;2;186;85.0;120;70;1;1;0;0;1;0
+18042;21949;1;158;64.0;140;80;3;1;0;0;1;0
+18044;21091;1;156;76.0;130;85;3;3;0;0;1;1
+18046;18357;1;162;64.0;140;100;2;1;0;0;0;1
+18047;22511;2;168;84.0;130;90;1;1;1;1;1;1
+18048;14599;1;156;58.0;110;70;1;1;0;0;1;0
+18049;17527;1;156;102.0;120;70;1;1;0;0;1;0
+18050;16573;2;165;90.0;130;90;1;1;0;0;1;0
+18051;15938;1;155;55.0;120;80;1;1;0;0;1;0
+18052;22050;1;170;92.0;160;80;1;1;0;0;1;1
+18053;18549;1;160;67.0;120;80;1;3;0;0;1;0
+18055;19924;1;163;64.0;120;80;1;1;0;0;1;0
+18056;22641;1;168;80.0;130;80;3;1;0;0;1;1
+18057;21214;2;165;68.0;120;80;1;1;0;0;1;1
+18059;21419;1;165;62.0;130;80;1;1;0;0;1;0
+18060;19824;1;158;65.0;110;70;1;1;0;0;1;0
+18061;14489;1;156;50.0;110;70;1;1;1;1;1;0
+18062;21018;1;170;97.0;140;90;1;1;0;0;0;1
+18064;19746;1;163;60.0;120;70;1;1;0;0;1;0
+18065;18210;2;162;48.0;120;80;1;1;0;0;1;0
+18068;22074;2;170;68.0;120;80;1;1;0;0;1;0
+18069;22017;1;162;84.0;120;90;1;1;0;0;1;1
+18071;15365;1;170;60.0;120;80;1;1;0;0;0;1
+18072;19687;2;179;98.0;140;80;1;2;0;0;1;1
+18073;20559;2;172;85.0;110;70;2;2;0;0;1;1
+18074;20468;1;158;50.0;100;70;1;1;0;0;1;0
+18081;18370;2;167;70.0;100;60;2;1;0;0;1;0
+18082;23432;2;165;76.0;160;80;1;1;0;0;0;1
+18083;22691;1;160;101.0;120;70;1;1;0;0;1;1
+18084;19729;1;156;61.0;120;80;1;1;0;0;1;0
+18085;18348;1;165;63.0;120;80;1;1;0;0;1;1
+18086;19472;2;166;52.0;110;80;1;1;0;0;1;1
+18087;16527;2;172;107.0;140;80;2;1;0;0;0;1
+18088;18407;2;175;73.0;130;100;1;1;1;0;0;1
+18089;21957;2;175;73.0;130;90;1;2;0;0;1;1
+18090;22523;1;160;58.0;120;80;1;1;0;0;1;0
+18091;21244;2;178;93.0;140;60;1;1;0;0;1;1
+18092;21086;1;168;66.0;120;80;1;1;0;0;1;0
+18097;20615;2;156;61.0;120;90;1;1;0;0;1;0
+18098;18480;1;160;62.0;140;90;1;1;0;0;0;1
+18099;17827;2;169;79.0;130;90;1;1;0;0;1;0
+18100;14308;1;166;44.0;90;60;1;1;0;0;1;0
+18101;15358;1;170;99.0;160;70;2;1;0;0;1;1
+18103;21817;1;162;97.0;130;90;3;3;0;0;0;1
+18104;16055;1;169;65.0;120;80;1;1;0;0;1;0
+18105;16638;1;157;78.0;100;70;2;1;0;0;1;0
+18107;18221;1;158;65.0;120;80;1;1;0;0;1;0
+18108;17476;1;167;67.0;120;80;1;2;0;0;1;0
+18109;16761;2;169;78.0;140;101;1;1;0;0;1;1
+18110;18184;2;170;80.0;120;70;1;1;0;0;1;0
+18111;19638;1;165;65.0;120;80;1;1;0;0;1;0
+18112;19668;1;152;59.0;128;80;1;1;0;0;0;0
+18113;17393;2;177;80.0;160;90;1;1;1;0;1;1
+18114;23546;2;165;70.0;130;90;1;1;0;0;1;1
+18115;19508;2;182;82.0;120;70;1;1;1;0;1;0
+18116;17497;2;178;102.0;117;70;3;1;0;1;1;1
+18117;21388;1;160;64.0;140;90;2;1;0;0;1;1
+18119;14495;2;170;54.0;110;70;1;1;0;0;1;0
+18121;23341;2;163;60.0;140;100;3;3;0;0;0;1
+18122;19015;1;165;65.0;120;79;1;1;0;0;0;0
+18123;17466;2;179;90.0;145;90;1;1;0;0;1;1
+18124;21800;1;152;95.0;160;105;3;1;0;0;1;1
+18125;16179;1;176;58.0;110;70;1;1;0;0;1;0
+18126;17940;1;149;71.0;140;95;2;1;0;0;1;1
+18127;18252;1;165;60.0;120;80;1;1;0;0;1;0
+18128;21745;1;155;80.0;150;90;2;2;0;0;1;1
+18129;15813;2;169;91.0;120;80;1;1;1;1;0;0
+18130;18698;1;154;60.0;120;80;1;1;0;0;1;0
+18133;17362;2;167;67.0;120;80;1;1;1;1;1;0
+18134;21930;2;172;94.0;120;80;1;1;0;0;1;0
+18136;19835;2;170;98.0;120;80;2;2;1;0;1;1
+18137;22466;2;170;70.0;120;80;1;1;0;0;1;0
+18138;18306;1;164;75.0;110;70;1;1;0;0;1;0
+18139;21348;2;173;101.0;130;80;1;2;1;0;1;1
+18140;17948;2;165;68.0;120;70;1;1;0;0;1;0
+18141;23278;1;169;72.0;140;90;2;1;0;0;1;1
+18142;21192;2;167;70.0;120;70;1;1;0;0;1;0
+18143;23410;1;151;69.0;120;70;3;3;0;0;0;1
+18144;18991;1;168;86.0;140;90;3;3;0;0;0;1
+18145;15241;2;166;64.0;120;80;1;1;0;0;1;0
+18146;19029;1;164;56.0;120;80;1;1;0;0;1;0
+18147;23187;1;156;103.0;140;90;3;1;0;0;1;0
+18148;17619;1;152;81.0;160;1000;1;1;0;0;1;1
+18150;21935;1;168;98.0;120;80;1;1;0;0;0;1
+18151;19744;2;165;44.0;110;70;1;1;0;0;1;0
+18153;22002;1;167;89.0;140;80;1;1;0;0;1;1
+18156;21944;1;160;95.0;140;80;1;1;0;0;1;1
+18158;19096;1;161;74.0;135;85;3;1;0;0;1;0
+18159;21726;1;154;73.0;120;80;3;3;0;0;1;1
+18162;18099;1;155;86.0;130;90;1;1;1;1;1;1
+18163;22123;1;156;90.0;120;80;3;3;0;0;0;0
+18164;21188;2;161;66.0;135;80;2;1;1;1;1;0
+18165;19822;1;159;89.0;130;80;1;1;0;0;1;1
+18166;19554;1;165;78.0;130;80;1;1;1;0;1;1
+18167;20537;1;163;84.0;150;1000;1;1;1;0;1;1
+18168;21225;2;156;85.0;140;100;3;3;0;0;1;1
+18169;22064;2;191;75.0;110;80;1;1;0;0;1;1
+18170;21878;1;154;83.0;102;67;1;1;0;0;0;0
+18171;21152;2;174;65.0;120;80;3;3;0;0;0;0
+18172;23410;1;168;80.0;140;90;2;1;0;0;1;1
+18173;20485;1;147;46.0;120;80;1;1;0;0;0;1
+18174;22005;1;168;80.0;120;80;1;1;0;0;1;0
+18175;23468;2;153;84.0;140;90;1;1;0;0;1;1
+18176;17303;1;158;72.0;140;90;1;1;0;0;0;1
+18177;21139;2;166;88.0;140;80;2;2;0;0;1;1
+18178;18142;1;165;66.0;110;70;1;1;0;0;1;0
+18179;18183;1;156;63.0;127;68;2;1;0;1;1;0
+18181;21050;2;178;105.0;140;90;2;3;0;0;1;1
+18183;16904;1;155;59.0;100;70;1;1;0;0;1;0
+18184;22708;2;172;69.0;120;80;1;1;0;0;0;0
+18187;17368;2;185;68.0;120;70;2;1;1;1;1;0
+18188;23245;1;158;70.0;150;1000;1;1;0;0;1;1
+18189;21696;1;152;50.0;120;80;1;1;0;0;1;0
+18191;14666;2;170;75.0;120;80;1;1;0;0;1;0
+18192;14738;1;156;88.0;100;80;2;2;0;0;1;0
+18193;21335;1;180;76.0;140;80;1;1;0;0;1;1
+18194;18124;1;157;80.0;110;70;2;1;1;0;0;0
+18195;22570;2;174;74.0;140;90;1;1;0;0;0;1
+18196;21758;2;170;81.0;140;90;1;1;0;0;1;0
+18197;19001;1;160;79.0;100;70;2;1;0;0;1;1
+18198;15838;1;167;82.0;140;80;3;3;0;0;1;1
+18199;18282;1;165;68.0;110;90;1;1;0;0;1;0
+18200;16851;2;173;70.0;110;70;1;1;0;0;1;0
+18201;18416;1;162;66.0;110;80;1;1;0;0;1;0
+18203;19755;1;160;54.0;140;80;1;2;0;0;0;1
+18204;19557;2;180;82.0;130;80;2;1;0;0;1;1
+18205;18914;1;170;71.0;110;70;1;1;0;0;1;1
+18207;18858;2;179;71.0;120;70;1;1;1;1;1;0
+18209;19016;1;162;60.0;120;80;1;1;0;0;1;1
+18210;18261;2;160;72.0;110;80;1;1;0;0;1;1
+18212;19769;2;170;69.0;110;60;1;1;1;1;1;0
+18215;18348;2;164;89.0;100;70;1;1;0;0;0;1
+18217;17567;1;170;77.0;110;70;1;1;0;0;1;0
+18218;19594;1;75;168.0;120;80;1;1;1;0;1;1
+18220;19697;2;171;97.0;130;70;2;3;0;1;1;0
+18221;22539;1;160;66.0;150;90;1;1;0;0;1;1
+18222;18908;2;165;60.0;140;90;1;1;0;0;1;1
+18224;18149;1;159;70.0;130;90;1;1;0;0;1;1
+18225;20364;2;178;85.0;120;80;1;1;0;0;0;0
+18226;15269;1;167;88.0;120;80;1;1;0;0;1;1
+18227;20204;1;164;67.0;160;100;1;2;0;0;0;1
+18229;23150;1;167;85.0;130;87;2;1;0;0;1;1
+18230;20405;1;156;66.0;120;80;1;1;0;0;1;1
+18231;21018;2;170;77.0;120;80;1;1;0;0;1;0
+18233;15382;1;161;57.0;110;70;1;1;0;0;1;0
+18234;22894;1;162;63.0;120;80;3;3;0;0;1;0
+18235;16179;2;164;60.0;150;90;1;1;0;0;1;1
+18237;18514;2;166;70.0;120;70;1;3;0;0;1;0
+18238;15787;2;178;105.0;100;100;1;1;0;0;0;1
+18239;19116;1;164;60.0;120;80;1;1;0;0;1;0
+18240;18268;1;153;57.0;140;90;3;1;0;0;1;1
+18242;21857;1;164;108.0;130;90;3;1;1;0;1;1
+18243;18238;2;181;88.0;120;80;2;1;1;0;1;0
+18244;21264;2;169;129.0;120;80;1;2;1;0;1;1
+18245;18955;1;168;70.0;120;80;1;1;0;0;1;1
+18246;19705;1;168;96.0;140;90;1;1;0;0;1;1
+18248;23607;2;185;87.0;120;80;2;1;0;0;0;1
+18250;21096;1;168;69.0;120;80;1;1;0;0;1;0
+18251;20474;2;160;68.0;120;80;1;1;0;0;1;1
+18253;23422;1;153;69.0;160;90;2;1;0;0;1;1
+18255;23549;1;155;98.0;120;80;2;1;0;0;1;1
+18257;18386;1;165;68.0;120;80;1;1;0;0;1;0
+18258;18206;1;163;90.0;130;90;1;2;0;0;1;0
+18260;18412;1;166;75.0;120;80;1;3;0;0;1;0
+18262;19589;1;168;95.0;110;70;3;1;0;0;1;1
+18263;19537;1;160;61.0;120;80;2;1;0;0;1;0
+18264;20463;1;160;81.0;140;90;3;3;0;0;1;1
+18265;17576;2;170;81.0;110;80;1;1;1;0;1;0
+18267;19857;1;175;69.0;120;80;1;3;0;0;1;1
+18269;23370;2;178;87.0;140;90;1;1;1;1;0;1
+18270;21837;1;161;70.0;135;80;1;1;0;0;1;1
+18271;19838;2;178;95.0;140;100;3;2;1;0;0;1
+18272;20937;1;166;74.0;160;100;1;1;0;0;1;1
+18274;21046;1;154;60.0;120;80;1;1;0;0;0;1
+18275;18245;2;180;76.0;120;80;1;1;1;0;1;0
+18276;20249;2;170;75.0;120;80;3;1;0;0;1;1
+18278;18836;1;163;74.0;110;70;1;1;0;0;1;0
+18279;21348;1;161;76.0;115;65;3;3;0;0;0;1
+18280;21811;1;169;94.0;180;90;3;3;0;0;0;1
+18281;21168;1;170;69.0;120;70;1;1;0;0;1;0
+18283;22506;1;150;70.0;140;90;3;1;0;0;1;1
+18285;18322;1;159;86.0;100;60;1;1;0;0;1;1
+18287;17629;1;167;115.0;180;100;1;1;0;0;1;1
+18289;23293;2;175;90.0;130;80;1;1;1;0;1;1
+18290;20287;2;182;105.0;120;80;1;3;0;0;1;1
+18291;22551;1;147;66.0;170;90;1;1;0;0;1;1
+18292;18176;2;169;77.0;120;80;1;1;0;0;0;0
+18293;19065;2;180;85.0;140;90;1;1;1;1;1;1
+18294;15748;1;172;60.0;120;70;2;1;0;1;1;0
+18295;23367;1;168;70.0;140;80;2;1;0;0;0;1
+18296;17489;1;162;59.0;110;80;2;1;0;0;1;1
+18297;20207;1;171;97.0;110;60;1;1;0;0;0;1
+18299;18329;1;168;70.0;120;80;2;1;0;0;0;1
+18302;15167;1;169;81.0;100;70;1;1;0;0;1;0
+18303;23152;2;165;62.0;130;90;1;1;0;0;1;0
+18304;22643;1;150;80.0;140;90;1;2;0;0;0;0
+18305;18258;1;169;73.0;120;80;1;1;0;0;1;0
+18306;23189;2;177;68.0;170;100;1;1;0;0;1;0
+18307;18224;2;163;56.0;120;80;1;1;0;0;1;1
+18308;18231;2;172;65.0;120;80;1;1;0;0;1;0
+18310;18183;1;162;71.0;140;90;1;1;0;0;1;0
+18311;19668;1;161;73.0;160;80;3;1;0;0;1;1
+18312;15338;2;167;94.0;120;80;1;1;0;0;1;0
+18313;17425;2;165;65.0;120;90;3;3;0;0;0;1
+18314;15428;2;166;76.0;130;100;1;1;0;0;1;0
+18315;22809;2;169;68.0;150;90;1;1;0;0;1;1
+18316;22497;2;161;75.0;130;90;2;1;1;1;1;1
+18317;22529;1;153;53.0;110;90;1;1;0;0;1;0
+18319;21083;1;155;57.0;110;80;2;1;0;0;1;0
+18320;16911;2;173;83.0;100;70;1;1;0;0;1;0
+18321;20914;1;158;64.0;170;100;1;1;0;0;0;1
+18323;21094;1;152;70.0;136;71;2;2;0;0;1;1
+18324;21142;1;146;53.0;120;80;1;1;0;0;1;0
+18325;20753;1;155;75.0;130;80;2;1;0;0;0;1
+18330;19170;1;158;65.0;140;80;1;1;0;0;1;1
+18331;21188;1;164;90.0;120;80;1;1;0;0;1;0
+18332;22394;1;153;78.0;150;90;2;2;0;0;1;0
+18333;16009;1;161;63.0;100;60;1;1;0;0;1;0
+18335;23513;1;167;84.0;160;80;1;1;0;0;1;1
+18336;22568;1;150;58.0;130;90;1;1;0;0;1;1
+18337;20350;1;170;65.0;110;80;2;1;0;0;1;0
+18338;19047;1;154;75.0;120;80;1;1;0;0;0;1
+18339;20514;2;171;72.0;130;80;1;1;0;0;1;0
+18340;22758;1;178;80.0;150;100;1;1;0;0;0;0
+18342;21689;1;153;54.0;110;70;1;1;0;0;1;0
+18343;21354;1;154;54.0;125;80;1;1;0;0;1;0
+18345;15135;1;156;76.0;140;90;1;1;0;0;1;1
+18346;21239;1;188;78.0;130;80;1;3;0;0;1;1
+18347;21973;2;170;76.0;120;80;1;1;1;0;1;0
+18348;23153;2;179;94.0;170;90;1;1;0;0;0;0
+18350;16685;1;152;55.0;140;80;1;1;0;0;0;0
+18351;22764;2;165;93.0;180;100;2;2;1;0;0;1
+18352;23254;2;185;98.0;150;90;2;1;0;0;1;0
+18354;21944;1;164;88.0;120;80;1;1;0;0;1;1
+18355;16745;1;170;98.0;160;100;2;2;0;0;1;1
+18356;16736;2;177;86.0;140;90;1;1;1;0;1;1
+18357;18290;1;154;56.0;110;70;2;2;0;0;1;0
+18358;16103;2;173;90.0;120;80;1;1;0;0;0;0
+18359;20473;1;167;92.0;140;90;1;1;0;0;1;1
+18360;16660;1;167;60.0;120;80;1;1;0;0;1;0
+18361;20542;1;150;75.0;110;90;1;1;0;0;1;1
+18362;21833;2;168;66.0;160;90;3;1;0;0;0;1
+18363;15389;1;156;97.0;140;90;1;1;0;0;1;1
+18366;15139;1;156;72.0;115;75;1;1;0;1;0;0
+18367;22609;1;149;90.0;160;110;3;1;0;0;0;0
+18369;18148;2;178;70.0;120;80;1;1;0;0;1;0
+18370;21017;2;158;65.0;120;80;1;1;0;0;0;1
+18371;18963;1;165;83.0;110;80;1;1;0;0;0;0
+18372;15147;1;169;78.0;110;70;2;1;0;0;1;1
+18373;22617;1;162;75.0;180;80;3;3;0;0;0;1
+18374;16177;2;178;70.0;130;80;1;1;1;1;1;0
+18375;20442;1;160;63.0;140;90;3;3;0;0;1;0
+18376;16809;1;165;70.0;142;94;1;1;0;0;1;1
+18377;18837;1;154;50.0;130;80;1;1;0;0;1;1
+18379;21894;1;163;89.0;130;90;1;1;0;0;1;0
+18380;19077;1;162;63.0;120;80;1;1;0;0;1;0
+18381;20393;1;151;64.0;130;80;1;1;0;0;1;0
+18383;19758;1;168;62.0;150;100;1;1;0;0;1;1
+18384;15170;1;159;63.0;100;60;1;1;0;0;1;0
+18385;16144;1;170;86.0;120;80;1;1;0;0;1;0
+18387;18376;1;160;80.0;130;60;2;1;0;0;1;1
+18388;22590;1;151;113.0;130;80;1;1;0;0;1;0
+18389;19617;1;162;74.0;140;90;1;1;0;0;1;0
+18390;22570;2;164;98.0;160;100;3;1;0;0;1;1
+18391;18433;2;180;91.0;140;90;2;2;0;0;0;1
+18392;21320;2;170;75.0;140;90;2;1;1;1;1;1
+18394;23478;1;156;72.0;130;80;1;1;0;0;1;1
+18395;20568;2;171;75.0;120;80;3;1;0;0;1;1
+18396;17585;2;165;68.0;120;80;1;1;0;0;1;1
+18397;16810;1;160;72.0;100;60;1;2;0;0;1;1
+18398;19511;2;179;87.0;120;80;1;1;0;0;0;1
+18399;14539;2;156;75.0;110;70;1;2;1;1;1;1
+18401;18244;2;174;64.0;100;70;1;2;1;0;1;0
+18403;21137;1;160;91.0;140;90;1;1;0;0;0;1
+18404;17645;1;158;74.0;160;100;1;1;0;0;1;1
+18405;19054;2;169;89.0;140;90;1;2;0;0;1;1
+18406;19639;1;169;67.0;120;80;1;1;0;0;1;0
+18407;19616;1;165;66.0;130;90;1;1;0;0;1;0
+18408;22850;2;149;52.0;110;100;1;1;0;0;0;0
+18409;21821;1;158;75.0;180;100;1;1;0;0;0;1
+18410;21432;2;181;78.0;120;80;3;1;0;0;1;0
+18411;21055;1;149;55.0;120;80;1;1;0;0;1;0
+18413;18014;1;164;60.0;130;80;1;1;0;0;1;0
+18415;15574;2;174;45.0;130;100;2;2;0;0;0;1
+18417;14806;1;165;88.0;140;80;3;1;0;1;1;1
+18419;19809;1;165;75.0;140;80;2;1;0;0;1;1
+18421;20396;1;160;75.0;140;90;3;3;0;0;1;0
+18422;23279;2;168;88.0;120;80;2;2;0;0;1;0
+18423;21600;1;149;79.0;160;100;1;1;0;0;0;1
+18426;20403;2;172;89.0;110;80;1;1;1;0;1;0
+18427;20313;1;170;78.0;150;95;1;1;0;0;1;1
+18431;14608;1;152;61.0;110;70;1;1;0;0;1;0
+18432;21411;2;170;63.0;120;80;1;1;0;0;1;0
+18433;18333;2;174;80.0;120;90;1;1;0;0;1;0
+18434;19123;2;167;61.0;120;80;1;1;0;0;0;0
+18435;19773;2;160;60.0;120;80;1;1;0;0;1;1
+18436;22739;1;158;77.0;90;70;1;2;0;0;1;0
+18437;21327;1;168;80.0;120;80;1;1;0;0;1;0
+18439;15970;2;171;75.0;120;80;1;1;0;0;1;0
+18441;15273;1;153;63.0;160;100;1;1;0;0;1;0
+18442;14757;1;161;92.0;130;90;1;1;0;0;1;0
+18443;21676;1;163;79.0;120;90;1;1;0;0;0;1
+18444;21838;2;170;104.0;140;80;1;1;0;0;1;1
+18445;14708;2;187;90.0;110;80;1;1;0;0;0;1
+18446;20525;1;174;66.0;120;80;1;1;0;0;1;0
+18447;20384;1;151;58.0;120;70;1;1;0;0;1;1
+18448;22752;1;158;83.0;150;89;1;1;0;0;1;1
+18449;20612;2;165;81.0;120;70;1;1;0;0;1;0
+18451;22761;2;164;60.0;120;80;1;1;1;0;0;1
+18452;16155;1;172;73.0;130;80;1;1;0;1;1;0
+18453;20468;1;156;84.0;120;80;1;1;0;0;1;0
+18454;16034;1;162;62.0;110;70;1;1;0;0;1;1
+18455;19721;1;157;50.0;140;90;1;1;0;0;1;1
+18456;16516;2;171;109.0;120;80;1;1;0;0;0;1
+18457;19774;1;161;77.0;150;90;3;2;0;0;1;0
+18459;19301;2;154;50.0;120;80;1;3;0;0;1;0
+18461;22907;2;167;74.0;110;90;1;1;0;0;1;0
+18463;18999;2;169;67.0;110;80;1;1;0;0;1;0
+18464;22578;1;169;69.0;130;70;1;1;0;0;1;1
+18465;19677;1;164;67.0;120;80;1;1;0;0;1;0
+18466;22520;2;170;68.0;150;90;2;1;1;0;1;0
+18467;14322;1;168;59.0;120;80;1;1;0;0;0;0
+18468;21001;1;168;117.0;120;80;1;1;0;0;1;1
+18469;23224;2;169;86.0;150;90;3;3;0;0;1;0
+18471;16831;2;172;75.0;120;70;2;1;0;0;1;1
+18473;15150;2;160;62.0;140;90;1;1;0;0;1;1
+18477;20959;2;163;73.0;130;80;1;1;0;0;0;1
+18478;18147;1;180;69.0;140;100;1;1;0;0;0;0
+18480;18176;2;180;104.0;140;90;2;1;0;0;1;1
+18481;22835;1;160;78.0;130;80;1;1;0;0;1;1
+18482;21776;1;160;67.0;120;80;1;1;0;0;0;0
+18483;17642;2;174;94.0;125;85;1;1;0;0;1;1
+18484;18877;2;178;77.0;130;80;1;1;1;1;1;0
+18485;18902;1;151;82.0;170;100;1;1;0;0;0;0
+18486;21236;1;167;78.0;120;80;1;1;0;0;1;0
+18487;21171;1;160;82.0;100;70;3;1;0;0;1;0
+18491;17636;1;170;68.0;120;70;1;1;0;0;1;1
+18492;21863;2;176;87.0;140;100;1;1;0;0;1;1
+18494;19628;1;169;69.0;120;80;1;1;0;0;1;0
+18495;21217;1;178;69.0;120;80;1;3;0;0;1;0
+18497;18444;1;170;72.0;110;70;1;1;0;1;1;0
+18498;19708;2;175;88.0;90;60;1;1;0;0;0;0
+18499;17633;1;157;80.0;100;70;1;1;1;1;0;0
+18500;19168;1;132;65.0;110;70;1;1;0;0;0;0
+18501;18751;1;162;82.0;110;80;1;1;0;0;1;1
+18506;23378;1;158;80.0;140;90;1;1;0;0;1;0
+18508;20415;1;164;74.0;120;80;1;2;0;0;1;0
+18510;20992;1;160;82.0;120;80;1;3;0;0;1;0
+18511;19419;1;162;70.0;140;100;1;1;0;0;1;0
+18513;16751;1;167;94.0;160;90;2;1;0;1;0;1
+18514;18399;2;170;80.0;140;80;1;1;0;0;1;1
+18515;23265;1;163;80.0;120;80;1;1;0;0;1;1
+18517;21008;2;164;83.0;120;80;3;1;0;0;1;1
+18518;17729;2;165;70.0;120;80;1;1;0;0;1;0
+18522;21623;1;151;78.0;120;90;2;3;0;0;0;0
+18525;21792;2;160;73.0;120;80;2;2;1;0;1;0
+18526;20723;1;164;70.0;130;90;1;1;0;0;1;1
+18529;17778;1;162;59.0;120;80;1;1;0;0;1;0
+18532;23342;2;163;65.0;180;110;1;1;1;1;1;1
+18533;22614;2;169;86.0;150;90;1;1;0;0;1;1
+18534;22627;1;158;67.0;140;40;1;1;0;0;1;1
+18536;15463;1;165;61.0;110;64;1;1;0;0;1;0
+18538;19688;1;160;70.0;130;90;3;2;0;0;1;0
+18539;16996;2;170;85.0;110;70;1;1;1;0;0;0
+18540;18011;2;177;80.0;120;80;1;1;0;0;0;0
+18542;17640;2;169;71.0;140;90;2;1;0;0;1;1
+18545;17572;1;156;59.0;140;90;1;1;0;0;1;1
+18546;16145;1;157;43.0;90;70;1;1;0;0;1;0
+18548;21428;1;170;69.0;120;80;1;1;0;0;0;0
+18549;15153;2;158;68.0;120;80;1;1;1;0;1;0
+18550;21206;2;172;92.0;110;90;1;1;1;0;1;0
+18551;21330;2;169;66.0;120;80;1;1;0;0;1;0
+18552;22715;2;168;101.0;120;80;1;1;1;0;1;0
+18556;14638;2;181;119.0;150;90;3;1;0;0;1;0
+18559;20147;1;165;65.0;120;79;1;1;0;0;1;1
+18560;19554;1;165;65.0;120;80;1;1;0;0;1;0
+18561;19532;1;168;75.0;120;80;1;1;0;0;1;0
+18568;16805;2;165;70.0;120;80;1;1;0;0;1;1
+18569;22859;1;156;80.0;150;90;3;3;0;0;1;1
+18570;17470;1;170;73.0;115;75;1;1;0;0;1;0
+18571;15988;1;161;75.0;120;80;1;1;0;0;1;0
+18572;17534;2;181;76.0;120;80;1;1;0;0;1;0
+18573;22482;1;160;60.0;120;80;1;1;0;0;0;1
+18574;16653;2;179;80.0;130;80;1;1;0;0;1;0
+18575;15889;1;165;65.0;100;70;2;1;0;0;1;0
+18576;23415;2;174;75.0;130;80;2;1;0;1;1;0
+18577;21681;2;184;90.0;130;80;3;2;1;0;1;0
+18578;16657;2;171;70.0;120;80;1;1;0;0;1;0
+18579;15338;1;167;80.0;100;80;2;1;0;0;1;1
+18580;16729;2;160;63.0;130;80;1;1;1;1;0;1
+18581;20483;1;163;64.0;110;70;2;1;0;1;1;1
+18583;22877;2;173;62.0;130;90;2;1;0;0;1;1
+18585;15946;1;138;52.0;120;70;1;1;0;0;1;0
+18587;21105;1;154;83.0;120;80;1;1;0;0;1;0
+18588;21666;1;169;72.0;130;90;1;1;0;0;1;0
+18589;21266;1;166;61.0;120;80;1;1;0;0;0;1
+18591;16685;1;161;89.0;160;90;1;1;0;0;1;1
+18592;19633;2;177;101.0;170;100;1;1;1;0;1;1
+18593;18217;1;169;73.0;120;80;1;1;0;0;0;0
+18594;23488;2;159;62.0;110;80;1;1;0;0;1;1
+18595;20196;1;157;73.0;130;80;1;1;0;0;1;0
+18596;19558;1;165;90.0;140;90;1;1;0;0;0;0
+18597;20550;2;172;78.0;110;70;1;1;0;0;1;1
+18600;21237;1;169;78.0;130;90;1;1;0;0;1;1
+18601;18003;1;155;58.0;120;80;1;1;0;0;0;0
+18603;16758;1;166;52.0;100;80;1;1;0;0;1;0
+18605;19725;1;165;75.0;120;80;1;1;0;0;1;1
+18606;18015;1;159;67.0;120;80;1;1;0;0;1;0
+18608;17770;2;176;69.0;130;80;1;1;1;0;0;0
+18609;20275;2;167;54.0;140;90;1;1;0;0;1;1
+18610;16606;1;172;65.0;120;80;1;1;0;0;0;0
+18611;15566;2;173;69.0;110;70;1;1;1;0;0;0
+18613;22171;1;160;70.0;120;80;3;3;0;0;1;1
+18615;15862;1;158;76.0;110;70;2;1;0;0;1;0
+18616;18271;1;160;62.0;150;90;2;1;0;0;1;1
+18617;20520;2;167;76.0;130;80;1;3;0;0;1;0
+18619;17456;2;166;70.0;120;80;1;1;0;1;1;1
+18621;21137;2;167;82.0;140;80;3;2;0;0;1;1
+18624;21316;2;160;58.0;120;80;1;1;0;0;1;0
+18625;21756;1;165;65.0;120;80;1;1;0;0;1;1
+18627;19538;1;151;59.0;90;60;1;1;0;0;0;1
+18628;17219;1;156;74.0;160;100;1;1;0;0;1;1
+18629;21308;1;159;87.0;140;90;1;3;0;0;1;1
+18630;22411;2;182;111.0;120;80;3;1;1;0;1;1
+18631;20307;1;154;54.0;120;90;1;1;0;0;0;0
+18633;16089;1;154;75.0;110;80;1;1;0;0;1;0
+18634;21634;1;155;69.0;130;80;1;1;0;0;1;1
+18636;18701;2;169;65.0;120;70;1;1;0;0;0;1
+18637;18040;1;170;65.0;140;90;2;1;0;0;1;1
+18638;20186;1;158;74.0;140;90;2;1;0;0;1;1
+18641;21138;1;149;87.0;140;90;3;3;0;0;1;1
+18642;21217;2;177;115.0;140;90;1;1;1;0;1;1
+18643;15442;1;164;86.0;100;70;1;1;0;0;1;0
+18644;21902;1;159;93.0;120;80;3;3;0;0;1;1
+18646;19970;1;145;55.0;120;80;2;1;0;0;0;0
+18647;18252;1;160;60.0;140;80;1;1;0;1;0;1
+18648;21886;1;165;78.0;120;70;1;1;0;0;1;0
+18649;20302;1;158;63.0;120;80;1;2;0;0;1;0
+18650;20552;1;169;66.0;150;90;1;1;0;0;1;1
+18651;21081;1;154;63.0;130;80;1;1;0;0;1;0
+18654;20464;2;160;72.0;150;90;1;3;1;0;1;1
+18655;23424;1;180;78.0;130;80;1;1;0;0;1;1
+18656;21317;2;170;75.0;120;80;1;1;1;1;1;0
+18659;22693;2;172;81.0;120;90;1;1;0;0;1;0
+18660;16652;2;165;85.0;120;80;1;2;1;0;1;0
+18661;20512;2;175;75.0;120;80;1;1;0;0;1;0
+18662;23434;2;179;63.0;110;80;1;1;0;0;1;0
+18663;20286;1;164;112.0;130;90;3;2;1;0;0;0
+18666;22040;2;167;61.0;130;70;1;1;0;0;1;1
+18667;16879;2;160;90.0;140;80;1;1;0;0;1;1
+18668;18165;2;180;75.0;120;80;1;1;0;0;1;0
+18669;20529;1;159;68.0;120;80;1;1;0;0;1;0
+18671;18171;1;151;66.0;120;80;1;1;0;0;1;1
+18674;21354;1;160;64.0;120;80;1;1;0;0;1;0
+18675;19461;1;168;57.0;130;80;2;2;0;0;1;1
+18676;23273;1;158;75.0;140;1000;1;1;1;0;1;1
+18679;21726;1;175;78.0;120;79;1;1;0;0;0;1
+18681;19013;2;160;65.0;120;80;1;1;0;0;1;0
+18682;23384;1;152;91.0;130;90;3;1;0;0;1;0
+18683;19569;2;164;60.0;120;80;1;1;0;0;1;0
+18684;17302;1;158;56.0;120;80;1;1;0;0;1;0
+18685;20692;2;167;75.0;120;80;1;1;0;0;0;1
+18686;21201;1;167;79.0;140;90;1;1;0;0;0;1
+18687;20360;1;160;70.0;110;90;1;1;0;0;1;0
+18688;23408;1;163;67.0;150;90;3;1;0;0;1;1
+18691;19611;1;155;84.0;150;90;1;1;0;0;1;0
+18693;16781;1;152;91.0;110;70;1;1;0;0;1;0
+18694;16144;1;164;82.0;130;90;2;2;0;0;0;1
+18695;21246;1;165;75.0;120;75;1;1;0;0;1;0
+18698;19869;1;166;72.0;110;60;1;1;0;0;1;0
+18699;19442;1;156;84.0;120;80;1;1;0;0;0;1
+18700;18937;2;170;79.0;120;70;2;1;0;0;1;0
+18701;20445;1;160;83.0;120;90;1;1;0;0;1;0
+18702;21918;1;171;78.0;130;80;1;3;0;0;1;0
+18703;21849;2;158;56.0;120;90;2;1;1;0;1;0
+18704;16120;1;161;87.0;123;83;1;1;0;0;0;0
+18705;21145;1;165;78.0;120;80;1;1;0;0;1;0
+18706;18082;2;176;115.0;140;90;1;1;0;0;1;1
+18707;17411;1;168;70.0;120;80;1;1;0;0;1;1
+18709;18146;1;165;90.0;130;80;1;3;0;0;0;0
+18710;17315;2;171;65.0;110;80;1;1;0;0;1;0
+18711;14630;2;168;59.0;90;70;1;1;0;0;0;0
+18715;21796;1;148;86.0;120;80;3;1;0;0;1;1
+18716;14709;2;157;62.0;110;80;1;1;0;0;1;0
+18717;17445;1;158;63.0;120;80;2;1;0;0;1;1
+18718;15644;2;170;100.0;130;80;1;1;0;0;1;0
+18719;18266;1;161;61.0;110;70;1;1;0;0;1;0
+18721;20526;1;160;74.0;120;70;3;1;0;0;0;0
+18723;21877;1;156;81.0;150;90;1;1;0;0;1;1
+18724;19705;2;165;55.0;120;80;1;1;1;0;1;0
+18725;15419;1;162;68.0;110;75;2;2;0;0;0;0
+18727;15325;1;162;53.0;110;80;1;1;0;0;0;0
+18728;23150;1;156;91.0;140;1000;2;1;0;0;0;1
+18729;21060;2;179;56.0;90;59;1;1;0;0;0;0
+18731;20933;1;165;69.0;120;80;1;1;0;0;1;0
+18732;19222;1;165;69.0;140;80;2;3;0;0;1;1
+18736;21806;1;170;79.0;150;80;1;1;0;0;1;0
+18737;17482;2;174;77.0;120;80;2;1;1;0;1;1
+18738;22521;1;150;66.0;140;70;1;1;0;0;1;1
+18740;21057;1;161;63.0;100;70;1;1;0;0;1;0
+18741;16666;2;170;72.0;130;90;1;1;0;0;1;1
+18744;22027;1;170;70.0;130;69;1;1;0;0;0;0
+18745;19805;1;150;64.0;120;90;1;1;0;0;0;1
+18748;19865;2;171;99.0;130;80;3;1;0;0;0;1
+18751;15146;2;165;80.0;140;90;1;1;0;0;1;1
+18752;17443;2;179;93.0;110;70;2;1;0;0;1;1
+18754;19597;2;176;96.0;110;70;1;1;0;0;1;1
+18755;14563;1;165;69.0;120;80;1;2;0;0;1;1
+18757;16085;1;165;69.0;120;80;1;1;0;0;1;0
+18758;14501;2;176;95.0;130;90;1;1;0;0;1;1
+18759;14368;1;165;86.0;110;70;1;1;0;0;0;0
+18760;20590;1;170;60.0;120;70;1;1;0;0;1;0
+18761;19891;1;170;100.0;120;90;2;1;0;0;1;0
+18763;20507;2;172;79.0;130;90;1;1;0;0;1;1
+18764;19159;2;176;100.0;100;60;1;3;0;0;1;0
+18766;22563;2;172;70.0;120;80;1;1;0;0;1;1
+18767;23328;1;159;63.0;120;90;1;1;0;0;1;0
+18769;19879;1;150;46.0;90;60;1;1;0;0;1;0
+18771;21894;1;165;61.0;120;80;1;1;0;0;1;1
+18772;17643;1;160;60.0;120;70;1;1;0;0;1;1
+18773;19658;1;165;69.0;120;80;1;1;0;1;1;1
+18774;20216;1;157;54.0;180;100;3;1;0;0;1;1
+18776;20410;1;157;58.0;150;90;1;1;1;0;1;0
+18777;16522;2;188;88.0;140;80;1;1;0;0;1;1
+18780;14633;1;157;80.0;140;80;3;2;0;0;1;1
+18783;14573;2;170;70.0;100;70;1;1;0;0;1;1
+18784;19688;1;158;68.0;120;80;1;1;0;0;1;0
+18785;16067;1;166;78.0;140;80;2;2;0;0;0;1
+18786;20513;2;163;69.0;140;90;1;1;0;0;1;0
+18787;15161;1;167;57.0;120;80;1;1;0;0;1;0
+18788;21986;1;173;70.0;120;90;1;1;0;0;1;1
+18789;18239;2;164;88.0;110;70;1;1;0;0;1;0
+18790;20903;2;165;77.0;130;90;3;3;0;0;1;1
+18792;21148;1;167;92.0;140;100;2;2;0;0;1;1
+18794;21987;1;180;96.0;120;80;1;3;0;0;0;0
+18795;19006;1;168;76.0;80;60;3;3;0;0;1;0
+18796;19662;1;164;59.0;160;80;1;3;0;0;0;1
+18797;16147;1;163;78.0;120;80;1;1;0;0;1;0
+18798;23341;1;170;60.0;100;80;1;1;0;0;0;0
+18799;19817;1;164;60.0;130;90;1;1;0;0;0;1
+18801;23469;1;166;70.0;150;80;1;1;0;0;1;1
+18802;21829;1;168;55.0;120;80;1;2;0;0;1;0
+18804;21143;1;164;85.0;140;80;3;1;0;0;1;1
+18805;22706;1;158;75.0;140;90;3;1;0;0;1;1
+18807;19422;1;168;60.0;110;70;1;1;0;0;1;1
+18808;17601;2;165;68.0;110;60;1;1;0;0;1;0
+18809;21628;1;157;84.0;120;80;1;1;0;0;1;0
+18810;20585;2;170;68.0;130;80;1;1;0;0;0;1
+18813;21942;1;169;70.0;150;80;1;1;0;0;1;1
+18814;19064;1;152;52.0;140;90;2;3;0;0;1;1
+18815;15115;1;162;81.0;120;80;1;1;0;0;1;1
+18816;19022;2;166;70.0;120;80;3;1;1;1;1;0
+18818;22694;2;172;85.0;120;80;1;1;1;0;1;0
+18819;22737;1;160;66.0;120;80;1;1;0;0;1;1
+18820;18205;2;162;75.0;120;70;1;1;0;0;1;0
+18821;21880;1;172;124.0;170;60;1;1;0;0;1;1
+18822;22859;1;164;76.0;120;80;1;1;0;0;0;1
+18823;20338;1;168;88.0;100;60;2;1;0;0;1;1
+18824;19668;1;138;55.0;140;90;3;3;0;0;1;1
+18826;21857;2;166;83.0;130;80;1;1;0;0;1;1
+18827;21218;2;174;75.0;120;80;1;1;1;0;1;1
+18830;18214;1;166;65.0;120;80;1;1;0;0;1;0
+18831;18373;2;164;98.0;160;100;1;1;1;0;1;0
+18833;21177;1;165;59.0;120;80;1;1;0;0;0;0
+18834;19725;1;162;76.0;120;80;1;1;0;0;0;1
+18838;20357;1;145;50.0;130;80;1;3;0;0;1;0
+18839;22469;1;156;68.0;150;80;1;1;0;0;1;1
+18840;19047;2;170;64.0;140;90;1;1;1;0;1;1
+18841;15900;1;158;75.0;120;80;1;1;1;0;1;0
+18842;22671;2;167;78.0;140;90;1;1;0;0;1;1
+18843;20475;1;172;69.0;120;90;1;1;0;0;1;1
+18846;22359;1;167;79.0;130;80;1;2;0;0;1;1
+18847;19750;1;155;56.0;110;80;1;3;0;0;1;1
+18849;14604;2;167;60.0;120;80;1;3;0;1;1;0
+18850;19856;1;164;65.0;140;80;2;2;0;0;1;1
+18853;16043;1;163;80.0;130;90;2;2;0;0;1;1
+18855;18233;1;168;62.0;120;90;1;1;0;0;1;1
+18856;18109;2;168;70.0;140;80;1;1;1;1;0;1
+18857;21786;1;156;65.0;150;90;3;1;0;0;1;1
+18858;18383;1;163;96.0;130;90;1;1;0;0;0;0
+18859;17428;1;155;55.0;120;80;1;1;0;0;1;0
+18861;22209;2;166;93.0;140;90;1;1;0;0;1;1
+18862;22713;2;169;60.0;120;80;1;1;1;1;1;0
+18863;21228;1;156;52.0;120;80;1;1;0;0;1;0
+18865;23363;2;159;65.0;120;100;1;2;0;0;1;0
+18866;16733;2;165;73.0;100;80;1;2;0;0;1;0
+18868;19096;1;163;63.0;120;80;1;1;0;0;1;0
+18869;19799;2;160;55.0;150;90;1;1;0;0;1;1
+18870;21856;2;164;83.0;160;100;3;1;1;0;0;1
+18871;22082;2;171;83.0;120;80;1;1;0;0;0;0
+18872;14589;1;168;89.0;160;100;1;1;0;0;1;1
+18874;20352;2;170;72.0;130;80;1;1;0;0;1;0
+18875;21063;1;167;64.0;140;90;3;1;0;0;0;1
+18877;15753;2;168;74.0;130;80;1;1;1;0;0;0
+18879;21179;2;168;110.0;150;90;2;1;1;1;1;1
+18880;20628;1;174;86.0;120;80;1;1;0;0;1;1
+18881;20458;2;178;85.0;120;80;1;1;0;0;0;0
+18883;16787;1;162;110.0;130;80;3;1;0;0;1;1
+18885;16852;1;154;54.0;110;70;1;1;1;0;1;0
+18887;23466;1;160;59.0;170;110;1;1;0;0;1;1
+18888;21005;2;167;79.0;140;80;1;1;0;0;1;1
+18889;21742;1;152;58.0;130;80;1;1;0;0;1;1
+18890;20314;1;156;80.0;120;80;1;1;0;0;1;0
+18894;22807;1;163;76.0;140;80;1;1;0;0;1;1
+18895;15438;1;170;68.0;120;80;1;1;0;0;0;0
+18896;21180;2;171;76.0;120;80;1;1;0;0;1;1
+18897;22472;1;145;72.0;110;90;1;1;1;1;1;0
+18898;22535;1;156;82.0;140;90;1;1;0;0;0;1
+18899;20182;2;168;81.0;130;80;1;1;0;0;0;1
+18900;18859;1;160;70.0;100;70;1;1;0;0;0;0
+18902;19870;2;167;63.0;110;80;1;1;1;0;1;0
+18903;19287;1;160;85.0;180;80;1;1;0;0;0;1
+18904;14517;2;168;61.0;140;100;1;1;1;0;0;0
+18905;20574;1;156;83.0;130;70;1;2;0;0;1;0
+18907;20603;1;165;69.0;120;80;3;1;0;0;1;1
+18909;19648;1;161;76.0;140;90;1;1;0;0;1;1
+18910;22467;1;155;88.0;130;80;2;1;0;0;1;1
+18911;19779;1;167;73.0;140;90;1;1;0;0;1;1
+18913;19538;2;186;100.0;130;90;1;1;1;0;1;0
+18915;21190;1;160;62.0;120;80;1;1;0;0;1;1
+18916;19102;1;164;75.0;120;90;1;1;0;0;1;0
+18917;23308;1;174;70.0;120;80;1;1;0;0;1;0
+18918;21244;1;152;50.0;120;80;1;1;0;0;0;0
+18921;19455;2;171;78.0;160;90;3;1;1;0;1;1
+18922;19688;2;172;58.0;110;70;2;2;0;0;1;0
+18923;17939;2;166;77.0;110;70;1;1;0;0;1;0
+18924;15249;2;167;74.0;140;70;3;1;0;0;1;1
+18926;16800;2;185;96.0;120;80;1;1;1;0;1;0
+18928;22456;2;71;68.0;120;80;3;1;0;0;1;0
+18929;18802;2;179;98.0;130;80;1;1;1;0;0;0
+18930;23525;1;168;72.0;120;80;1;1;0;0;1;1
+18931;21162;1;154;56.0;120;79;1;1;0;0;1;0
+18932;18753;1;150;83.0;110;90;1;1;0;0;1;0
+18933;21045;1;150;80.0;110;80;1;1;0;0;1;0
+18934;21330;1;169;78.0;120;80;1;1;0;0;1;0
+18935;16236;2;180;65.0;110;70;1;1;0;0;0;1
+18936;15511;1;160;92.0;120;90;1;1;0;0;1;0
+18939;21002;2;162;60.0;140;90;2;1;0;0;1;0
+18940;18283;1;159;64.0;100;80;1;1;1;0;0;0
+18941;19584;2;176;83.0;110;80;1;1;0;0;1;0
+18942;17578;2;165;65.0;120;80;1;1;0;0;1;0
+18944;19721;1;170;73.0;120;80;1;1;0;0;0;1
+18945;18011;1;168;46.0;110;70;1;1;0;0;1;0
+18946;18177;1;160;72.0;120;90;1;1;0;0;1;1
+18950;18992;1;167;79.0;120;80;1;1;0;0;1;0
+18951;21284;1;170;70.0;120;80;1;1;0;0;1;0
+18955;16864;2;168;70.0;150;90;1;1;0;0;0;1
+18956;21194;1;163;85.0;100;80;1;1;0;0;1;0
+18958;21316;2;172;68.0;120;80;1;1;0;0;1;0
+18959;21846;2;178;75.0;110;70;3;1;0;0;1;1
+18961;21820;1;156;85.0;140;90;3;2;0;0;1;1
+18962;22593;1;166;82.0;160;1000;3;3;0;0;1;1
+18963;19812;2;165;62.0;120;80;1;1;0;0;1;0
+18964;19644;1;152;69.0;140;90;1;1;0;0;1;1
+18966;17548;1;163;56.0;120;80;1;1;0;0;1;0
+18967;18754;2;165;86.0;140;90;2;2;0;0;1;0
+18968;17418;2;179;79.0;120;70;1;1;0;0;1;0
+18970;21935;1;168;65.0;110;80;1;1;0;0;1;0
+18972;14734;1;160;56.0;120;80;1;1;0;0;1;0
+18973;23521;1;164;90.0;120;80;1;1;0;1;0;1
+18975;15264;1;147;55.0;110;70;1;1;0;0;1;0
+18977;22512;2;162;76.0;120;80;1;1;1;0;1;0
+18978;16205;2;184;103.0;120;80;1;1;0;0;1;0
+18980;19816;1;165;65.0;120;80;1;1;0;0;1;0
+18981;21826;2;174;74.0;120;80;1;1;0;0;1;0
+18982;16070;1;175;68.0;120;80;1;1;0;0;1;1
+18983;17428;1;157;54.0;110;70;1;1;0;0;0;0
+18984;14882;1;170;83.0;140;90;1;1;0;0;0;1
+18985;19594;2;170;87.0;150;85;1;1;1;0;1;1
+18986;17012;2;157;57.0;100;70;1;1;0;0;1;1
+18987;19082;1;168;62.0;130;90;1;1;0;0;1;1
+18989;19592;2;176;77.0;110;70;1;1;0;1;1;1
+18991;18798;1;150;49.0;140;90;1;1;0;0;0;0
+18994;21971;1;164;89.0;120;80;1;1;0;0;1;1
+18995;18515;2;161;58.0;120;80;1;1;0;0;0;0
+18996;21169;2;180;97.0;160;90;1;1;0;0;1;1
+18998;18352;2;172;88.0;150;90;1;1;0;0;1;1
+18999;14852;1;155;69.0;120;80;3;3;0;0;1;0
+19001;19821;1;168;68.0;120;80;3;3;0;0;1;0
+19002;20419;2;169;69.0;120;80;1;1;1;0;1;0
+19003;20464;2;176;62.0;120;80;1;1;1;0;1;0
+19006;21715;2;169;78.0;140;80;1;1;1;0;1;1
+19007;23131;1;164;72.0;125;80;3;1;0;0;1;1
+19008;14771;1;158;77.0;110;80;1;1;0;0;1;0
+19009;16633;2;165;60.0;120;80;1;1;0;0;1;0
+19012;19907;1;160;104.0;120;80;1;1;0;1;1;0
+19014;21969;1;165;95.0;120;80;1;1;0;0;1;0
+19015;22683;1;160;60.0;120;80;1;1;0;0;1;0
+19017;14580;2;168;94.0;150;80;2;1;1;0;1;0
+19018;16594;2;169;64.0;120;80;1;1;1;1;1;0
+19020;21265;1;178;78.0;160;1100;1;1;0;0;0;1
+19021;19689;1;171;59.0;100;70;1;1;0;0;1;0
+19022;19483;2;180;79.0;100;70;1;1;0;0;1;1
+19023;17444;2;175;76.0;130;90;1;1;0;0;1;1
+19024;19647;2;165;63.0;120;80;3;3;0;0;1;1
+19025;16064;1;165;68.0;110;70;1;1;0;0;1;0
+19028;18848;2;170;60.0;140;100;1;1;0;1;1;0
+19031;19008;1;168;89.0;110;70;1;1;0;0;1;0
+19034;19095;2;190;85.0;120;70;1;1;0;0;1;0
+19035;15413;1;168;90.0;140;90;1;1;0;0;1;1
+19037;21368;1;158;55.0;120;80;1;1;0;0;1;1
+19041;16695;1;163;93.0;120;80;3;3;0;0;1;1
+19042;18319;1;173;108.0;145;90;3;1;0;0;1;0
+19043;16097;1;164;97.0;110;70;1;1;0;0;1;0
+19044;15160;1;165;83.0;130;100;1;1;0;0;0;0
+19046;19715;2;174;80.0;150;90;1;1;0;0;0;1
+19047;19804;1;169;65.0;120;80;1;1;0;0;1;0
+19048;18758;1;153;67.0;160;100;1;1;0;0;1;1
+19049;15223;2;176;78.0;140;100;1;1;0;0;1;1
+19050;19881;2;170;65.0;120;70;1;1;0;0;1;1
+19052;21136;2;170;83.0;160;80;1;1;1;0;1;1
+19054;21191;2;154;63.0;100;70;2;2;1;0;1;1
+19055;18955;1;155;70.0;140;90;2;1;0;0;1;1
+19056;16085;1;168;70.0;120;80;1;1;0;0;1;1
+19057;21160;1;147;84.0;140;80;1;2;0;0;1;1
+19061;19611;1;150;50.0;90;60;1;1;0;0;1;1
+19063;15361;1;158;79.0;130;80;2;1;0;0;1;1
+19064;18263;2;180;98.0;130;80;1;1;0;0;0;0
+19066;15205;2;175;62.0;90;70;1;1;0;0;1;0
+19067;20590;1;163;81.0;120;80;1;1;0;0;1;0
+19068;20425;2;167;70.0;140;80;1;1;0;0;0;1
+19070;22122;2;179;82.0;140;80;2;1;0;0;0;1
+19071;21910;1;151;90.0;150;90;3;1;0;0;1;1
+19072;16665;1;162;58.0;110;60;1;1;0;0;1;0
+19074;23374;1;156;66.0;120;80;1;1;0;0;1;1
+19075;16629;2;168;106.0;120;70;1;1;0;0;0;0
+19076;21141;1;163;59.0;120;80;1;1;0;0;0;0
+19077;21942;1;165;78.0;120;80;1;1;0;0;1;0
+19078;18898;1;167;69.0;120;80;1;1;0;0;1;0
+19079;23353;1;165;68.0;160;1000;1;1;0;0;1;1
+19080;20408;1;166;84.0;120;80;1;1;0;0;1;0
+19082;18389;1;145;84.0;140;90;1;1;0;0;1;1
+19083;18068;1;153;84.0;170;90;2;1;0;0;1;1
+19084;19006;1;158;72.0;110;90;2;1;0;0;1;1
+19085;16797;1;165;72.0;115;70;1;1;0;0;1;0
+19086;16036;1;172;74.0;100;80;1;1;0;0;1;0
+19088;20348;1;166;87.0;140;80;1;1;0;0;0;1
+19089;14574;2;171;69.0;110;70;1;1;0;0;1;0
+19092;23277;1;173;72.0;160;100;1;1;0;0;0;1
+19093;22476;1;159;82.0;110;70;1;2;0;0;1;0
+19094;18088;1;167;64.0;130;80;1;1;0;0;0;0
+19095;22014;1;160;84.0;140;1100;3;3;0;0;1;1
+19096;21064;2;160;65.0;175;88;1;1;0;0;1;1
+19098;16190;2;178;82.0;140;90;1;1;0;0;1;1
+19101;16805;1;157;58.0;160;100;1;1;0;0;1;1
+19102;21177;2;168;77.0;120;80;1;1;1;0;1;0
+19103;23241;1;144;60.0;160;90;3;3;0;0;1;1
+19104;18966;1;172;83.0;130;90;3;1;0;0;1;0
+19105;21492;1;165;62.0;150;1000;1;1;0;0;1;1
+19106;23479;1;158;72.0;120;80;3;2;0;0;1;1
+19110;21941;2;180;96.0;120;80;1;3;0;0;1;0
+19111;23368;1;148;60.0;130;90;3;3;0;0;1;1
+19113;21243;2;163;80.0;120;80;3;3;0;0;0;0
+19114;14781;1;160;74.0;130;80;1;1;0;0;1;1
+19116;19847;1;158;59.0;140;90;3;3;0;0;1;0
+19118;21061;1;165;62.0;120;80;1;1;0;0;1;0
+19119;19890;2;170;84.0;120;70;1;1;0;0;1;0
+19122;18881;1;165;85.0;100;80;1;1;0;0;1;0
+19123;21344;1;160;85.0;120;80;1;1;0;0;1;1
+19125;21785;1;166;78.0;140;90;1;1;0;0;1;1
+19126;17645;1;160;79.0;110;70;1;1;0;0;1;1
+19128;15490;1;162;71.0;100;60;1;1;0;0;0;0
+19129;15001;2;178;117.0;180;1100;2;1;1;1;0;0
+19130;17598;2;164;84.0;120;80;1;1;1;0;0;1
+19131;15297;1;153;64.0;110;70;1;1;0;0;0;0
+19132;18825;1;160;68.0;120;90;1;1;0;0;0;0
+19133;19795;1;160;75.0;120;90;1;1;0;0;0;0
+19135;18102;1;166;85.0;120;70;1;1;0;0;1;0
+19136;14896;1;185;95.0;140;90;2;1;1;1;1;1
+19137;21196;1;158;94.0;130;80;1;1;0;0;0;0
+19138;18940;1;169;65.0;140;90;1;1;0;0;0;1
+19139;20247;1;147;63.0;130;80;1;1;0;0;0;1
+19140;21093;1;153;60.0;130;80;1;3;0;0;0;1
+19141;21051;1;169;81.0;120;80;1;1;0;0;1;1
+19142;18973;2;172;80.0;140;90;2;1;0;0;0;1
+19143;14484;2;172;74.0;120;80;1;1;0;0;1;0
+19144;18069;2;170;59.0;110;70;1;1;1;0;1;0
+19146;22388;2;168;65.0;180;110;2;1;1;1;0;1
+19147;20314;1;148;44.0;90;60;1;1;0;0;0;0
+19148;19145;2;175;70.0;130;100;1;1;1;1;1;1
+19150;19087;1;165;68.0;120;80;1;1;0;0;1;0
+19151;15603;1;160;66.0;110;70;1;3;0;0;1;0
+19153;17343;1;157;70.0;120;80;2;1;0;0;1;0
+19155;21008;1;155;63.0;110;70;1;1;0;0;1;0
+19156;17433;1;150;62.0;120;80;1;1;0;0;0;1
+19158;21149;2;175;75.0;120;80;1;1;0;0;0;1
+19159;19761;1;162;61.0;90;70;1;1;0;0;1;0
+19160;20549;1;170;61.0;120;80;1;1;0;0;1;0
+19161;18355;1;165;65.0;120;80;1;1;0;0;1;0
+19162;21287;1;165;54.0;110;80;1;3;0;0;1;1
+19163;21684;2;166;94.0;140;80;1;1;0;0;1;0
+19164;18241;1;162;89.0;140;90;1;2;0;0;1;1
+19165;14516;1;160;68.0;120;90;1;1;0;0;0;0
+19166;20709;2;176;86.0;130;80;3;3;0;0;1;1
+19168;19591;2;184;78.0;130;70;1;1;0;0;1;0
+19169;20496;1;163;76.0;120;80;1;3;0;0;0;0
+19172;18280;1;149;53.0;130;80;1;1;0;0;1;0
+19173;23590;2;172;70.0;140;80;1;1;1;1;0;1
+19174;20487;1;147;70.0;120;80;1;1;0;0;1;1
+19175;21777;1;165;95.0;170;80;2;2;0;0;1;0
+19177;19780;1;164;67.0;120;80;1;1;0;0;1;1
+19179;19995;1;160;80.0;140;90;1;1;0;0;1;1
+19181;22535;1;160;48.0;140;80;1;1;0;0;1;1
+19182;23307;2;165;62.0;130;80;1;1;0;0;1;1
+19183;22669;1;160;81.0;140;90;1;1;0;0;1;1
+19184;19560;2;167;62.0;160;90;1;1;0;0;1;1
+19185;21154;1;167;65.0;130;90;1;1;0;0;1;1
+19186;20335;1;158;64.0;110;90;1;1;0;0;1;0
+19187;23366;1;170;86.0;140;90;1;1;0;0;1;1
+19188;20193;1;165;79.0;120;80;1;1;0;0;0;1
+19191;21159;2;168;68.0;150;1000;1;1;0;0;1;1
+19194;21145;1;130;90.0;130;90;1;1;0;0;1;1
+19195;21080;1;157;59.0;120;80;1;1;0;0;1;1
+19196;21407;1;169;65.0;120;80;1;2;0;0;1;1
+19197;18321;1;165;52.0;120;80;3;3;0;0;1;0
+19198;20221;2;176;74.0;90;60;1;3;0;0;1;1
+19199;17363;1;160;50.0;100;60;1;1;0;0;0;0
+19201;19551;1;157;72.0;120;80;1;1;0;0;0;1
+19202;18372;1;158;72.0;110;60;1;1;0;0;1;1
+19206;19146;1;168;69.0;140;1000;1;1;0;0;1;1
+19207;21455;1;165;101.0;110;80;2;1;0;0;1;0
+19209;19952;2;168;66.0;120;60;1;1;0;0;1;0
+19211;18882;1;150;63.0;130;80;3;3;0;0;1;1
+19215;21127;1;157;70.0;120;80;1;1;0;0;1;0
+19216;19715;2;163;59.0;110;60;1;2;1;0;1;0
+19217;18205;1;156;81.0;120;80;1;1;0;0;0;0
+19219;15240;1;176;92.0;120;80;1;1;0;0;1;1
+19220;15978;1;156;65.0;110;70;2;1;0;0;1;1
+19221;21310;2;166;77.0;120;70;3;3;0;1;1;0
+19222;15962;2;168;98.0;141;82;3;1;0;0;1;1
+19226;19617;2;172;73.0;150;95;1;1;0;0;1;1
+19227;16745;1;164;77.0;130;90;1;1;0;0;1;1
+19229;23168;1;157;84.0;160;100;1;1;0;0;1;1
+19230;23558;1;150;50.0;140;90;1;1;0;0;0;0
+19231;16530;1;160;63.0;130;80;1;1;0;0;1;1
+19232;15279;1;172;71.0;120;80;1;1;0;0;0;0
+19233;18846;2;160;65.0;120;80;1;1;0;0;1;1
+19234;19767;1;156;60.0;120;80;1;1;0;0;1;0
+19235;19028;1;157;70.0;120;80;1;1;0;0;1;0
+19236;18275;1;153;68.0;130;80;2;1;0;0;1;0
+19238;15152;1;154;55.0;140;100;1;1;0;0;1;0
+19239;19443;1;165;87.0;150;89;1;1;0;0;1;0
+19240;20644;2;174;70.0;130;80;3;1;0;0;1;1
+19241;23167;1;163;81.0;140;90;3;1;0;0;1;1
+19242;18939;1;156;93.0;160;90;3;3;0;0;1;1
+19243;18152;1;165;88.0;120;80;1;1;0;1;1;0
+19247;18264;2;172;63.0;130;90;1;1;0;0;1;1
+19248;23320;1;158;58.0;150;90;1;1;0;0;1;1
+19249;18236;2;167;60.0;130;80;1;1;0;0;1;0
+19252;19453;1;150;73.0;90;60;3;3;0;0;1;0
+19253;20223;2;165;69.0;120;80;1;1;0;0;1;0
+19257;16763;1;162;85.0;160;100;3;1;0;0;1;1
+19258;14965;2;150;60.0;130;0;1;1;0;0;0;0
+19259;23208;1;151;50.0;138;84;1;1;0;0;0;0
+19261;22693;1;160;108.0;120;80;1;1;0;0;1;1
+19262;16679;2;177;78.0;150;100;1;1;0;0;1;1
+19264;23318;2;169;77.0;130;90;1;1;1;0;1;1
+19265;16043;2;176;74.0;150;1000;2;1;0;0;1;1
+19269;15313;1;153;81.0;140;80;1;1;0;0;0;1
+19270;21420;2;169;69.0;110;70;1;1;1;0;1;0
+19271;19825;1;168;110.0;138;68;1;1;0;0;1;0
+19273;23507;1;152;92.0;110;80;2;1;0;0;0;0
+19274;18025;1;152;105.0;120;80;1;1;0;0;1;0
+19275;18445;1;159;53.0;120;80;1;1;0;0;1;0
+19277;21344;1;169;80.0;120;80;1;1;0;0;0;0
+19278;20173;1;165;64.0;110;80;1;1;0;0;1;0
+19279;18787;1;156;60.0;120;80;1;1;0;0;1;0
+19280;22597;2;168;71.0;140;70;1;1;0;0;1;0
+19282;21179;2;167;61.0;110;70;1;1;0;0;1;0
+19284;18974;1;166;69.0;120;80;1;1;0;0;1;0
+19285;19791;1;169;67.0;120;80;1;1;0;0;1;0
+19286;16827;2;179;85.0;115;80;1;1;0;0;1;0
+19289;19009;1;168;68.0;120;80;1;1;0;0;1;0
+19290;19822;1;150;60.0;130;80;3;3;0;0;1;1
+19291;21048;2;165;81.0;150;90;1;1;0;0;0;1
+19292;20331;1;152;75.0;140;90;1;1;0;0;1;1
+19293;19743;1;157;70.0;150;100;1;2;0;0;0;1
+19294;18980;2;160;60.0;120;80;1;1;0;0;1;0
+19297;17521;1;157;60.0;130;90;1;2;0;0;0;0
+19298;19704;2;170;95.0;120;80;1;1;0;0;1;1
+19299;17532;1;160;59.0;120;80;1;3;0;0;1;0
+19301;18012;1;163;60.0;120;80;1;1;0;0;0;0
+19302;14678;2;165;60.0;110;70;1;1;0;0;1;0
+19303;23230;1;156;58.0;130;90;1;1;0;0;1;1
+19305;19676;1;166;72.0;130;80;1;1;0;0;1;1
+19306;23194;1;157;55.0;120;80;1;1;0;1;1;1
+19307;18462;1;156;64.0;120;80;1;1;0;0;1;0
+19308;15419;2;176;78.0;120;80;1;1;0;0;0;0
+19309;19770;1;168;80.0;140;80;1;1;0;0;0;1
+19310;23330;1;168;65.0;120;90;1;1;0;0;1;1
+19311;21424;1;156;65.0;120;80;1;1;0;0;0;0
+19312;18748;1;161;71.0;110;70;1;1;0;0;1;0
+19314;15308;2;174;70.0;120;80;1;1;0;0;1;0
+19316;21735;1;170;86.0;130;90;3;1;0;0;1;1
+19320;22100;1;165;65.0;120;79;3;3;0;0;1;0
+19321;18918;1;158;62.0;120;80;1;1;0;0;1;0
+19323;23203;1;155;75.0;150;1000;2;1;0;0;0;1
+19324;20995;1;148;78.0;150;90;2;2;0;0;1;1
+19326;19261;1;165;69.0;120;80;1;1;0;0;1;0
+19327;22196;1;154;65.0;120;80;1;1;0;0;1;1
+19328;16050;1;180;68.0;170;100;1;1;0;0;1;1
+19329;17742;1;158;85.0;140;90;1;1;0;0;1;1
+19330;19510;1;166;62.0;120;80;1;1;0;0;1;0
+19331;19839;2;175;74.0;120;80;1;1;1;0;1;1
+19332;15165;1;161;69.0;120;80;1;1;0;0;1;0
+19333;19793;1;175;75.0;120;70;1;1;0;0;1;0
+19336;19835;2;169;80.0;110;70;1;1;0;0;1;0
+19338;15353;1;151;57.0;100;70;1;1;0;0;1;0
+19339;18252;1;160;83.0;170;90;1;1;0;0;1;1
+19340;15101;1;170;73.0;120;70;1;1;0;0;1;0
+19341;21201;2;169;95.0;160;70;2;2;0;0;1;1
+19342;22138;2;167;78.0;130;80;2;1;1;1;1;1
+19344;17436;2;170;115.0;140;90;1;2;1;1;1;1
+19345;14665;1;164;130.0;140;90;1;1;0;0;1;1
+19346;23220;2;163;66.0;160;90;1;1;1;1;1;1
+19347;16819;2;170;72.0;140;90;1;1;0;0;1;1
+19348;20236;1;166;100.0;160;100;1;1;0;0;1;1
+19349;21862;2;170;65.0;120;80;1;3;0;0;1;0
+19350;14719;2;173;80.0;130;100;2;1;0;0;0;1
+19351;21981;2;185;75.0;120;70;1;1;0;0;1;1
+19354;22557;1;148;56.0;130;70;3;3;0;0;1;1
+19355;20494;1;168;74.0;140;80;1;2;1;0;1;1
+19356;22355;2;167;74.0;120;80;3;3;0;0;1;1
+19357;18967;1;170;83.0;120;80;1;1;0;0;0;0
+19358;19070;1;176;70.0;120;70;1;2;0;0;1;1
+19360;19148;2;171;94.0;150;100;1;1;0;0;0;1
+19362;21186;2;168;78.0;120;80;1;1;0;0;0;1
+19363;14569;2;176;72.0;120;80;1;1;0;0;1;0
+19364;21691;1;156;67.0;100;60;2;1;0;0;0;1
+19365;20457;1;155;93.0;120;80;2;2;0;0;1;0
+19366;18990;2;177;84.0;120;80;1;1;0;0;1;0
+19367;22452;1;168;86.0;140;90;3;1;0;0;1;1
+19370;22626;1;158;58.0;150;80;1;1;0;0;1;1
+19371;20426;1;152;78.0;120;80;1;1;0;0;1;1
+19372;21725;1;158;64.0;120;80;3;1;0;0;1;0
+19373;20223;1;162;86.0;120;90;2;2;0;0;1;0
+19374;23228;2;166;82.0;130;80;3;3;0;0;1;1
+19377;22635;2;175;80.0;125;80;1;1;1;0;1;0
+19378;19693;1;170;74.0;130;80;1;3;0;0;1;0
+19379;15446;1;160;62.0;110;70;1;1;0;0;1;0
+19380;21964;2;180;82.0;110;90;1;1;0;0;0;1
+19381;16101;2;165;69.0;120;80;1;2;0;0;1;0
+19382;20396;1;160;74.0;130;69;1;1;0;0;1;0
+19383;18147;2;168;68.0;140;90;3;1;1;1;1;0
+19384;19072;2;168;74.0;125;75;1;1;0;0;1;0
+19385;22515;1;158;70.0;140;100;3;1;1;0;0;1
+19388;20691;1;154;68.0;125;80;2;1;0;0;1;1
+19389;21836;1;168;52.0;120;80;1;1;0;0;0;0
+19390;20724;2;173;88.0;120;80;2;1;0;0;1;0
+19391;17503;2;170;51.0;130;70;1;1;1;0;1;0
+19394;15129;2;171;70.0;120;70;1;3;1;0;1;0
+19395;18065;1;162;75.0;100;70;1;1;0;0;1;1
+19397;19972;2;174;65.0;180;90;1;1;0;0;1;1
+19398;19755;2;175;84.0;120;80;1;1;0;0;1;0
+19399;20500;1;152;84.0;140;90;1;1;0;0;0;1
+19400;22714;1;162;56.0;120;80;1;1;0;0;1;0
+19401;15877;1;164;65.0;120;80;1;1;0;0;1;0
+19402;17636;2;164;60.0;120;80;1;1;0;0;1;1
+19403;21137;2;170;71.0;120;80;1;1;0;0;1;0
+19404;21045;2;174;104.0;140;80;3;1;1;0;1;1
+19405;19848;1;166;91.0;140;90;1;1;0;0;1;1
+19407;15908;1;161;63.0;150;90;1;1;1;0;1;1
+19408;15893;2;172;93.0;110;70;1;1;0;0;1;0
+19409;14615;1;156;56.0;120;70;1;1;0;0;1;0
+19410;21027;1;160;62.0;160;90;1;1;0;0;1;1
+19411;19059;1;145;50.0;100;60;1;1;0;0;1;0
+19412;18758;1;166;78.0;120;80;3;1;0;0;1;0
+19413;20490;1;170;67.0;120;80;3;1;0;0;1;1
+19415;16745;1;165;89.0;140;90;1;1;0;0;1;1
+19417;17618;2;174;84.0;120;80;1;3;0;0;1;1
+19422;15382;1;171;65.0;110;70;1;1;0;0;1;0
+19423;21800;2;175;72.0;120;70;1;1;0;0;1;1
+19426;15895;1;155;46.0;100;60;3;3;0;0;1;0
+19428;21653;2;162;57.0;120;80;1;1;0;0;0;0
+19429;15239;1;168;69.0;120;80;1;1;0;0;1;0
+19430;20437;1;162;58.0;110;70;1;1;0;0;1;1
+19431;21038;2;168;74.0;140;90;1;1;0;0;1;1
+19432;14672;1;156;62.0;100;70;1;1;0;0;1;0
+19433;16958;2;175;69.0;120;80;1;1;0;0;1;0
+19435;20403;1;159;83.0;120;80;1;1;0;0;1;0
+19436;19654;2;162;56.0;120;80;1;1;0;0;1;1
+19438;20958;1;151;62.0;120;80;1;1;0;0;1;0
+19440;19252;1;159;74.0;130;90;1;1;0;0;1;1
+19441;20886;1;164;131.0;160;100;3;2;0;0;1;1
+19442;14553;1;156;64.0;120;70;1;1;0;0;1;0
+19444;18371;2;171;92.0;145;85;2;1;0;0;0;0
+19445;21984;2;176;89.0;140;90;1;1;1;0;1;1
+19446;23238;1;157;65.0;140;80;1;2;0;0;1;1
+19450;21110;1;157;83.0;160;90;1;1;0;0;1;1
+19454;23313;1;156;59.0;120;80;1;1;0;0;1;1
+19455;18006;1;157;84.0;120;80;3;3;0;0;1;1
+19456;16864;1;160;81.0;120;80;1;1;0;0;0;0
+19457;20272;1;156;89.0;140;90;2;1;0;0;1;1
+19459;21890;1;177;104.0;120;80;1;1;0;0;0;1
+19460;15267;1;164;80.0;110;70;1;1;0;0;1;0
+19461;15152;1;167;60.0;149;90;2;1;0;0;1;1
+19462;21881;1;155;59.0;110;70;1;1;0;0;1;1
+19463;17463;1;156;75.0;120;80;1;1;0;0;1;1
+19464;15174;2;173;79.0;140;90;3;1;0;0;0;1
+19465;21465;1;164;64.0;130;100;1;1;0;0;0;0
+19466;20969;2;177;84.0;150;1007;1;1;0;0;1;1
+19467;17310;1;157;57.0;110;70;1;1;0;0;1;0
+19469;22005;2;164;72.0;120;80;1;1;0;0;1;1
+19470;23473;2;165;80.0;120;79;1;1;0;0;1;1
+19471;21818;1;164;67.0;120;80;1;1;0;0;1;1
+19474;20519;1;154;68.0;120;80;1;1;0;0;0;0
+19475;16656;1;157;70.0;110;70;1;1;0;0;1;0
+19476;21135;1;163;78.0;140;90;2;1;0;0;1;1
+19477;21163;1;158;80.0;120;80;1;1;0;0;1;1
+19478;19907;1;165;65.0;170;80;3;3;0;0;1;1
+19480;16703;2;167;69.0;120;70;1;1;0;0;1;1
+19481;18865;2;179;88.0;130;70;2;1;0;0;0;1
+19482;21925;2;172;118.0;160;100;1;1;0;0;1;1
+19483;20296;2;167;60.0;169;75;1;1;0;0;1;1
+19485;21043;1;162;88.0;130;100;2;1;0;0;1;1
+19486;23285;2;188;97.0;140;80;1;1;0;0;1;1
+19487;17291;2;178;103.0;130;89;1;1;0;0;0;0
+19489;19770;1;165;65.0;150;90;1;1;0;0;1;0
+19490;19610;2;162;61.0;120;70;1;1;0;0;1;0
+19491;21105;1;168;81.0;130;80;3;3;0;0;1;0
+19492;14587;2;170;85.0;120;80;1;1;0;0;1;0
+19495;16783;2;173;70.0;140;90;2;1;0;0;1;1
+19496;14480;1;172;82.0;140;90;1;1;0;0;1;1
+19497;21633;1;160;87.0;130;80;1;1;0;0;1;1
+19499;20488;1;148;78.0;115;80;2;1;0;0;1;1
+19501;19649;2;150;50.0;120;80;1;1;0;0;1;0
+19505;20452;1;165;70.0;110;70;1;1;0;0;0;0
+19506;15410;1;162;78.0;140;90;2;1;0;0;1;1
+19507;21721;2;170;70.0;120;80;1;1;0;0;1;1
+19508;22137;1;164;56.0;110;70;1;1;0;0;1;0
+19509;22596;2;170;70.0;140;90;1;2;0;0;1;0
+19510;23416;1;164;68.0;130;90;2;2;0;0;1;1
+19512;19755;1;165;77.0;110;70;1;1;0;0;1;0
+19513;21766;1;161;74.0;140;90;1;1;0;0;1;1
+19514;23156;1;159;76.0;120;80;3;3;1;0;1;1
+19515;19833;1;152;95.0;140;80;3;3;0;0;1;1
+19516;18506;1;160;60.0;120;80;1;1;0;0;1;1
+19517;16777;1;172;135.0;150;90;2;2;0;0;0;1
+19520;21298;1;156;72.0;70;110;3;3;0;0;1;1
+19521;15801;1;155;51.0;120;70;1;1;0;0;1;0
+19522;21116;1;161;86.0;140;90;3;3;0;0;0;1
+19523;23350;1;154;61.0;160;80;1;1;0;0;1;1
+19524;21267;1;163;69.0;110;60;1;3;0;0;1;0
+19526;23308;1;165;75.0;150;80;2;1;0;0;0;1
+19528;19754;2;184;120.0;130;80;2;1;0;0;1;1
+19529;16966;2;165;71.0;120;80;1;1;1;0;1;1
+19532;21257;2;172;85.0;120;80;1;1;0;0;1;1
+19534;21294;1;172;75.0;135;75;1;1;0;0;1;1
+19535;15979;1;168;72.0;110;80;1;1;0;0;1;0
+19536;21962;1;159;91.0;160;1001;1;1;0;0;1;1
+19537;19103;1;167;105.0;130;90;3;1;0;0;1;0
+19538;22567;1;165;70.0;150;80;1;3;0;0;1;1
+19539;18941;1;157;67.0;100;70;1;2;0;0;1;0
+19540;18547;1;165;60.0;130;90;1;1;0;0;1;0
+19541;19720;1;152;50.0;100;70;1;1;0;0;1;0
+19542;18836;2;179;96.0;130;90;2;3;0;0;1;0
+19543;21189;2;170;70.0;120;80;1;1;0;0;0;0
+19544;18294;1;158;125.0;140;80;1;1;0;0;1;0
+19546;22511;2;171;65.0;100;60;1;1;0;0;1;0
+19547;15885;2;158;77.0;140;100;1;1;0;0;1;1
+19549;23205;1;174;65.0;120;80;1;1;0;0;1;1
+19551;22579;2;170;63.0;150;90;1;1;0;0;0;1
+19552;22856;1;162;63.0;140;90;2;1;0;0;1;0
+19553;19888;2;170;80.0;120;80;1;1;0;0;1;0
+19555;22600;1;164;83.0;140;90;2;1;0;0;1;1
+19556;21056;1;165;82.0;130;80;1;1;0;0;1;1
+19558;16904;2;165;75.0;120;80;1;1;0;0;1;1
+19559;18257;1;165;79.0;130;70;1;2;0;0;1;0
+19560;19444;2;174;76.0;130;80;2;1;0;0;0;1
+19561;20547;2;162;73.0;120;80;1;1;0;0;1;1
+19562;18236;1;157;65.0;110;80;1;2;1;1;1;0
+19563;16712;1;165;62.0;120;80;1;1;0;0;1;0
+19564;19527;2;166;70.0;80;60;2;1;0;0;0;0
+19565;19708;1;175;86.0;140;90;1;1;0;0;1;1
+19569;23237;2;168;84.0;140;100;1;1;0;0;1;1
+19570;20185;1;170;70.0;120;70;1;1;0;0;1;1
+19572;17390;1;162;67.0;120;80;1;1;0;0;1;0
+19573;22586;2;180;105.0;120;80;1;1;0;0;1;0
+19575;15221;1;162;59.0;90;60;1;1;0;0;1;0
+19576;22437;1;154;80.0;120;80;1;1;0;0;1;1
+19577;23299;2;170;65.0;120;80;1;1;0;0;1;1
+19578;15409;2;168;65.0;110;70;1;1;0;1;1;0
+19579;21803;2;165;89.0;140;100;1;1;0;0;0;1
+19581;15418;2;164;65.0;120;80;1;1;1;0;1;0
+19582;18172;1;156;66.0;110;70;1;1;0;0;0;0
+19584;19608;2;174;88.0;160;90;1;1;0;0;0;1
+19585;22702;2;163;71.0;140;90;3;2;0;0;1;1
+19588;21278;1;157;62.0;120;80;1;1;0;0;1;0
+19589;15417;2;168;63.0;140;90;1;1;0;0;1;0
+19590;19796;1;158;70.0;120;70;1;1;0;0;1;0
+19593;20315;2;173;90.0;130;80;1;1;0;0;0;0
+19596;22815;2;168;70.0;140;90;1;1;0;0;1;0
+19597;17802;2;168;74.0;140;100;2;1;0;1;1;1
+19598;22016;1;150;60.0;130;80;1;1;0;0;1;0
+19599;15289;1;154;70.0;110;70;1;1;0;0;0;0
+19600;19754;1;160;65.0;130;90;3;1;0;0;1;1
+19601;23346;2;174;70.0;130;70;1;1;0;0;1;0
+19604;19201;1;158;73.0;120;80;1;1;0;0;1;0
+19605;22488;1;160;57.0;120;80;2;1;0;0;0;1
+19606;14401;2;170;75.0;200;140;2;2;0;0;1;1
+19607;19878;2;170;78.0;120;80;1;1;0;0;0;0
+19608;17988;2;165;65.0;180;120;1;1;1;1;1;1
+19609;21323;1;157;60.0;120;80;1;1;0;0;1;0
+19610;16043;1;160;62.0;120;80;1;1;0;1;1;0
+19611;18189;1;169;68.0;120;80;1;1;0;0;1;0
+19612;16009;1;168;98.0;120;80;1;1;0;0;1;1
+19614;15284;2;170;75.0;120;80;1;1;0;0;1;0
+19616;19535;1;162;91.0;150;100;3;1;0;0;1;0
+19617;21911;1;145;83.0;180;100;1;1;0;0;1;1
+19622;19554;2;167;80.0;145;90;3;2;0;0;1;1
+19624;22580;1;160;93.0;140;90;2;1;0;0;1;1
+19626;18882;1;171;79.0;110;70;3;3;0;0;1;0
+19627;18374;1;162;69.0;110;80;1;1;0;0;1;0
+19629;22602;1;156;79.0;120;80;1;1;0;0;1;0
+19630;18853;1;169;85.0;125;80;1;1;0;0;1;0
+19631;22633;1;158;68.0;140;90;3;1;0;0;1;1
+19632;23377;1;168;65.0;120;80;1;1;0;0;1;1
+19633;19639;1;157;75.0;120;80;1;1;0;0;1;0
+19634;15892;1;157;73.0;60;40;1;3;0;0;0;0
+19635;21107;1;162;63.0;160;90;1;1;0;0;1;1
+19636;14518;1;152;90.0;160;100;2;2;0;0;1;1
+19637;18788;1;155;84.0;120;80;1;1;0;0;1;0
+19638;21172;1;160;52.0;110;70;1;1;0;0;1;0
+19639;21940;1;170;83.0;140;80;1;1;0;0;1;1
+19642;21893;1;161;98.0;140;90;1;1;0;0;1;1
+19644;21275;2;172;73.0;145;1000;2;1;0;0;1;1
+19648;20691;2;168;67.0;130;80;2;1;0;1;1;0
+19649;20545;1;154;60.0;120;80;1;1;0;0;0;0
+19650;16779;1;154;73.0;110;70;2;2;0;0;1;1
+19651;18953;1;154;62.0;120;80;1;1;0;0;1;0
+19652;19012;1;164;76.0;110;80;1;1;0;0;1;0
+19653;21796;1;156;63.0;90;60;1;1;0;1;1;0
+19654;14935;1;162;80.0;120;80;1;1;0;1;1;0
+19655;22083;1;170;63.0;140;80;1;1;0;0;0;1
+19656;18072;1;166;68.0;120;80;1;1;0;0;1;1
+19658;22548;1;155;66.0;150;90;1;3;0;0;1;1
+19659;22073;2;173;67.0;110;70;1;1;0;0;0;1
+19660;20544;2;163;54.0;120;80;1;1;0;0;1;0
+19663;16131;1;162;83.0;110;70;1;1;1;0;1;0
+19664;23350;1;165;78.0;100;70;1;1;0;0;0;1
+19665;23343;2;180;70.0;120;80;1;2;0;0;1;0
+19666;15407;1;168;125.0;120;80;1;1;0;0;0;0
+19667;16760;1;160;80.0;150;90;2;1;0;0;1;1
+19669;14759;2;170;80.0;140;90;1;1;0;0;1;1
+19670;21775;2;171;85.0;140;80;1;1;0;0;1;0
+19671;22466;1;164;82.0;140;90;1;1;0;0;1;1
+19672;18033;1;167;58.0;130;70;1;1;0;0;1;0
+19674;21750;1;153;75.0;150;90;1;1;0;0;1;1
+19675;19820;2;165;75.0;120;80;1;1;0;0;1;1
+19676;16675;1;164;75.0;140;90;3;1;0;0;1;0
+19677;18991;2;177;77.0;120;80;1;1;0;0;1;1
+19678;16781;1;159;84.0;120;80;1;1;0;0;1;0
+19680;18996;1;160;80.0;140;90;1;1;0;0;1;1
+19684;18176;1;156;64.0;90;60;1;1;0;0;1;0
+19685;14386;1;161;106.0;110;70;1;1;0;0;1;0
+19686;17471;2;157;76.0;150;100;2;1;0;0;1;1
+19687;18041;1;156;114.0;120;80;1;1;0;0;1;1
+19688;22740;2;161;76.0;180;90;1;1;0;0;1;1
+19690;21740;1;165;82.0;160;90;3;1;0;0;1;1
+19691;21073;1;166;113.0;120;100;1;2;0;0;1;0
+19693;14663;2;165;69.0;120;80;1;1;1;0;1;0
+19694;18914;2;167;82.0;120;80;1;1;0;0;1;0
+19696;21923;1;154;58.0;120;80;1;3;0;0;1;1
+19698;18854;1;170;70.0;140;90;3;1;0;0;1;1
+19699;21220;2;160;70.0;140;90;1;1;0;0;1;0
+19700;19601;1;153;62.0;170;120;2;1;0;0;0;1
+19704;18952;1;174;80.0;120;80;3;1;0;0;1;1
+19705;19165;1;163;72.0;140;70;1;1;0;0;1;1
+19706;14496;2;160;65.0;110;70;1;1;0;0;1;0
+19708;23090;1;168;72.0;140;90;3;1;0;0;1;1
+19709;17618;1;163;65.0;120;80;1;1;0;0;0;0
+19710;20501;2;170;70.0;120;80;1;1;0;0;1;0
+19711;15386;1;165;78.0;120;80;1;1;0;0;1;0
+19712;18385;2;170;75.0;120;80;2;2;0;1;1;0
+19714;19698;1;170;86.0;140;80;1;1;0;0;1;0
+19715;19438;1;165;64.0;110;70;2;1;0;0;0;1
+19716;16361;2;169;70.0;120;80;1;1;0;0;1;0
+19719;20976;2;167;63.0;120;80;1;1;0;0;1;0
+19720;22838;2;162;78.0;120;80;1;1;0;0;0;0
+19721;19616;2;171;82.0;120;80;1;1;1;0;1;0
+19722;16849;1;167;64.0;120;70;1;1;0;0;1;0
+19723;18190;1;156;60.0;110;70;1;1;0;0;1;0
+19724;17334;2;175;67.0;120;80;1;1;1;0;0;1
+19725;21706;1;155;71.0;140;80;1;1;0;0;1;0
+19726;22589;1;155;88.0;150;100;1;1;0;0;1;1
+19727;19948;1;165;65.0;110;80;2;2;0;0;1;1
+19728;22631;2;165;65.0;120;80;3;3;0;0;1;1
+19730;19720;1;170;70.0;120;80;1;1;0;0;1;1
+19731;16833;2;176;89.0;170;90;3;1;0;0;1;1
+19733;21963;1;150;69.0;120;80;1;1;0;0;1;0
+19734;21843;2;167;95.0;160;90;1;1;0;0;1;0
+19735;14595;2;172;61.0;110;70;1;1;0;0;1;0
+19736;18260;1;164;63.0;110;70;1;1;0;0;0;0
+19737;23120;1;156;66.0;141;71;3;1;0;0;1;1
+19739;22426;2;182;102.0;150;80;3;1;1;0;0;1
+19740;22728;2;165;66.0;120;80;1;1;0;0;1;0
+19741;18944;1;176;73.0;120;80;1;1;0;0;0;1
+19743;14832;2;153;58.0;120;80;1;1;0;0;1;0
+19744;16876;2;177;83.0;120;80;1;1;0;0;1;0
+19745;16552;2;166;69.0;120;90;1;1;0;0;1;0
+19746;20428;1;151;69.0;145;105;1;1;0;0;1;1
+19747;22550;2;170;60.0;120;80;1;1;0;0;0;0
+19749;15500;2;161;83.0;130;90;1;1;0;0;0;1
+19750;20423;2;168;80.0;160;100;1;1;0;0;1;0
+19751;18128;1;166;76.0;130;80;1;1;0;0;1;0
+19752;19905;2;165;78.0;140;90;1;1;0;0;1;1
+19754;21966;2;160;63.0;120;80;1;1;0;0;1;1
+19755;22535;2;169;82.0;120;80;1;1;0;0;1;0
+19758;22198;2;160;62.0;120;80;1;1;0;0;1;1
+19759;20480;2;175;80.0;120;80;1;1;0;0;1;0
+19760;19747;1;167;63.0;110;70;3;3;0;0;1;0
+19763;20278;2;167;83.0;125;70;2;1;0;0;1;0
+19764;19608;1;156;73.0;140;76;3;3;0;0;1;1
+19765;23380;1;160;83.0;120;80;1;1;0;0;1;0
+19766;21265;1;151;51.0;120;80;1;1;0;0;1;0
+19767;16635;2;178;93.0;120;80;2;1;0;0;1;1
+19769;21281;1;180;75.0;120;80;1;1;0;0;0;1
+19770;21233;1;158;100.0;130;80;2;2;0;0;1;1
+19773;22723;1;154;92.0;130;80;1;1;0;0;1;0
+19774;18011;1;164;90.0;140;90;1;1;0;0;1;1
+19777;17546;2;164;100.0;140;90;1;1;0;0;1;1
+19778;16019;2;176;91.0;110;70;1;1;0;0;1;0
+19779;23389;1;155;69.0;100;70;2;2;0;1;1;1
+19780;15240;1;169;69.0;120;80;1;1;0;0;0;0
+19781;20337;2;174;89.0;120;80;1;1;0;0;1;0
+19782;15878;1;149;64.0;110;70;1;1;0;0;1;0
+19783;15141;2;160;60.0;120;70;1;1;0;0;0;0
+19784;16524;1;163;73.0;110;70;1;1;0;0;1;1
+19785;21737;1;168;70.0;120;80;3;1;0;0;1;1
+19786;21652;1;169;68.0;120;80;1;1;0;0;1;1
+19787;17415;1;157;59.0;110;70;1;1;0;0;1;0
+19788;15232;1;164;68.0;100;70;1;1;0;0;1;0
+19790;20687;1;165;65.0;150;90;1;1;0;0;1;1
+19792;23194;1;138;66.0;120;70;1;1;0;0;1;1
+19794;19746;2;173;70.0;110;70;1;1;1;0;1;1
+19795;20659;1;169;71.0;160;90;2;2;0;0;1;1
+19797;14485;2;169;75.0;110;70;1;1;0;0;1;0
+19800;16019;2;169;81.0;120;80;1;1;0;0;1;0
+19801;15382;1;159;65.0;120;80;1;1;0;0;1;1
+19802;18145;1;154;62.0;120;80;1;1;0;0;1;0
+19803;18804;1;160;104.0;120;80;1;1;0;0;1;1
+19804;22652;2;173;79.0;120;80;1;1;0;0;1;0
+19806;17553;1;158;64.0;120;80;1;1;0;0;1;1
+19807;20504;1;166;79.0;120;80;1;1;0;0;1;0
+19808;19650;1;160;75.0;130;90;2;1;0;0;1;1
+19809;20432;1;164;72.0;150;80;2;2;0;0;1;1
+19810;23256;1;162;85.0;85;60;1;1;0;0;0;0
+19811;22002;1;159;62.0;120;80;1;1;0;0;1;0
+19813;19916;1;168;70.0;120;70;2;2;0;0;1;0
+19814;21221;1;153;82.0;120;80;1;1;0;0;0;0
+19815;17979;2;160;68.0;120;80;1;1;0;0;1;1
+19817;18075;1;158;58.0;140;90;1;1;0;0;0;1
+19818;19517;2;167;77.0;150;100;2;1;0;0;1;1
+19819;23379;2;180;83.0;130;90;1;1;0;0;1;0
+19820;21892;2;168;60.0;120;70;1;1;0;0;0;0
+19821;16228;1;164;76.0;100;60;1;2;0;0;1;1
+19823;16722;1;160;79.0;120;80;1;1;0;0;1;0
+19825;18387;2;176;70.0;120;80;1;1;0;0;1;0
+19827;15996;1;168;72.0;1500;80;1;1;0;0;1;1
+19828;18378;1;158;71.0;150;80;1;1;0;0;1;1
+19829;18460;1;154;88.0;140;90;3;1;0;0;1;1
+19830;23284;2;175;70.0;120;80;1;1;0;0;1;1
+19831;20624;2;165;65.0;120;70;1;1;0;0;1;1
+19832;16654;1;156;71.0;150;100;1;1;0;0;1;1
+19833;20058;2;168;73.0;120;80;2;2;0;0;1;0
+19835;19758;2;178;83.0;120;70;1;1;0;0;1;0
+19836;16126;1;169;68.0;120;80;1;1;0;0;1;0
+19838;21858;2;175;82.0;140;100;1;1;0;1;0;1
+19839;22558;1;160;75.0;160;90;2;2;0;0;1;1
+19840;21320;1;157;65.0;120;80;1;1;0;0;1;0
+19841;19696;2;175;90.0;160;80;1;1;0;0;1;1
+19843;23190;1;159;60.0;130;80;2;1;0;0;1;1
+19845;17460;1;158;69.0;110;80;1;1;0;0;1;1
+19846;16872;2;178;78.0;110;70;2;2;0;0;0;0
+19847;19498;1;165;67.0;110;80;1;1;0;0;1;1
+19848;15915;2;170;68.0;120;80;1;1;0;0;1;0
+19849;17537;2;172;72.0;160;80;1;1;0;0;0;1
+19850;14670;1;163;66.0;140;90;1;1;0;0;1;1
+19852;21151;1;155;56.0;160;90;1;3;0;0;0;1
+19854;16221;2;164;120.0;150;90;2;1;0;0;1;1
+19855;18200;1;160;105.0;130;80;3;1;0;0;1;1
+19856;17399;1;164;68.0;120;80;1;1;0;0;0;0
+19857;16521;2;175;98.0;120;80;1;2;0;0;0;0
+19858;20236;2;170;82.0;90;140;2;1;0;1;1;1
+19859;20241;1;171;97.0;120;80;1;1;0;0;0;1
+19861;15299;2;176;81.0;120;80;1;1;0;0;1;0
+19862;20385;1;163;68.0;140;90;3;3;0;0;1;0
+19863;15117;2;178;105.0;150;90;2;1;0;0;1;1
+19866;14363;1;158;66.0;110;70;1;1;0;0;1;0
+19868;15176;1;161;68.0;120;80;1;1;0;0;1;0
+19870;21260;1;157;62.0;140;90;1;2;0;0;1;1
+19871;21272;2;174;87.0;150;80;1;1;0;0;1;1
+19872;18492;1;160;75.0;120;90;1;1;0;1;1;1
+19875;16795;2;180;99.0;140;100;1;1;0;0;0;0
+19876;16665;1;166;66.0;130;90;1;1;0;0;1;0
+19877;15968;2;172;68.0;110;60;1;1;1;1;1;0
+19880;21714;1;164;71.0;130;80;1;1;0;0;1;0
+19881;21132;1;165;83.0;130;80;1;1;0;0;1;0
+19885;18007;1;164;74.0;110;20;1;1;0;0;1;0
+19888;23107;1;161;63.0;110;70;1;1;0;0;1;1
+19889;18249;1;160;76.0;120;80;1;2;0;0;1;0
+19890;18939;1;157;60.0;130;80;1;1;0;0;1;0
+19892;18465;1;156;94.0;140;80;1;1;0;0;0;1
+19894;22691;1;160;78.0;140;80;3;1;0;0;1;1
+19895;19216;1;156;66.0;100;70;1;1;0;0;0;0
+19897;14345;1;166;70.0;140;90;1;1;0;0;0;1
+19898;23200;1;153;113.0;140;90;1;1;0;0;1;1
+19899;21917;2;170;66.0;130;80;1;1;0;0;0;0
+19900;19678;1;156;65.0;120;70;1;1;0;0;1;0
+19904;19671;2;165;59.0;140;90;2;1;0;1;1;1
+19906;19737;1;158;67.0;140;100;3;1;0;0;1;1
+19907;19279;2;185;79.0;110;70;1;1;0;0;0;1
+19908;15925;1;162;91.0;150;90;2;2;0;0;1;1
+19909;20504;1;163;56.0;130;80;3;1;0;0;1;1
+19911;17050;1;167;78.0;120;70;1;1;0;0;1;0
+19912;14445;2;120;80.0;120;80;1;1;0;0;0;0
+19914;15042;2;172;91.0;120;80;1;1;0;0;0;0
+19915;20411;1;161;76.0;110;60;1;1;0;0;1;1
+19916;20449;1;163;72.0;120;80;1;1;0;0;1;0
+19918;23136;1;155;85.0;190;100;1;1;0;0;1;1
+19919;22480;2;176;70.0;120;80;2;1;1;1;1;1
+19920;23578;1;167;89.0;130;90;2;1;0;0;1;1
+19921;20532;1;160;58.0;120;80;1;1;0;0;1;0
+19922;19681;1;153;76.0;130;90;1;1;1;0;1;0
+19923;20310;1;158;71.0;120;80;1;1;0;0;1;0
+19924;21930;1;162;68.0;120;80;1;1;0;0;1;1
+19925;23299;1;168;75.0;120;80;3;3;0;0;1;1
+19926;18915;2;171;76.0;155;95;1;3;0;0;1;0
+19927;17452;1;162;52.0;110;70;1;1;0;0;1;0
+19928;18073;1;154;53.0;110;70;1;1;0;0;1;0
+19929;22550;2;177;82.0;120;80;1;1;0;0;1;1
+19930;21155;1;165;66.0;120;80;1;1;0;0;1;0
+19931;22480;1;160;94.0;140;80;1;1;0;0;1;0
+19935;22711;1;165;69.0;120;80;1;1;0;0;1;1
+19936;21159;1;146;54.0;120;70;3;1;0;0;1;0
+19937;19716;1;171;75.0;120;80;1;1;0;0;1;0
+19938;17607;2;169;72.0;100;70;1;1;1;0;1;0
+19939;19744;1;164;68.0;120;80;1;1;0;0;1;0
+19940;18978;1;164;65.0;120;80;1;1;0;0;0;1
+19941;16286;2;170;85.0;140;80;2;2;0;0;1;1
+19942;14548;1;165;65.0;140;90;1;1;0;0;1;1
+19945;21906;1;165;83.0;140;90;1;1;0;0;0;1
+19946;18865;1;156;80.0;110;80;2;1;0;0;1;0
+19948;21197;1;163;74.0;150;80;1;1;0;0;1;1
+19949;22837;1;161;66.0;140;90;1;1;0;0;1;1
+19950;20456;1;164;78.0;150;110;1;3;0;0;1;1
+19952;16656;1;161;77.0;100;70;1;1;0;0;1;0
+19955;20934;1;164;70.0;140;90;1;1;0;0;1;1
+19956;21035;2;170;72.0;130;80;3;1;1;0;1;1
+19959;19043;1;159;62.0;100;70;1;1;0;0;1;0
+19961;14758;1;159;50.0;100;70;1;1;0;0;0;0
+19964;14539;1;170;69.0;120;90;2;2;0;0;1;1
+19965;21183;1;156;71.0;140;90;1;3;0;0;1;1
+19966;21291;2;156;62.0;130;80;3;3;0;0;1;1
+19967;20476;1;154;62.0;120;80;2;2;0;0;1;0
+19968;18135;2;169;86.0;160;100;3;1;0;0;0;1
+19969;14498;1;154;55.0;120;80;1;1;0;0;1;0
+19970;19589;1;169;62.0;120;80;1;1;0;0;1;0
+19971;22454;1;165;86.0;120;80;1;1;0;0;1;0
+19972;21951;2;158;77.0;170;100;1;1;0;0;1;1
+19973;22677;1;162;69.0;120;80;3;3;0;0;0;1
+19974;22830;2;160;60.0;120;60;1;1;0;0;1;0
+19975;17532;1;161;56.0;110;70;1;1;0;0;0;0
+19976;19837;2;175;69.0;120;80;1;1;0;0;0;1
+19977;18834;2;175;95.0;120;90;1;1;0;0;0;1
+19978;21085;2;171;70.0;140;80;2;1;0;0;1;1
+19979;23257;1;153;68.0;130;80;3;1;0;0;1;1
+19980;20435;1;166;77.0;120;80;2;1;0;1;1;1
+19983;20981;1;159;74.0;150;80;1;1;0;0;1;0
+19985;18012;1;159;79.0;120;80;3;2;0;0;0;1
+19988;22069;1;169;67.0;130;70;3;3;0;0;0;0
+19991;22914;1;168;74.0;140;90;3;3;0;0;1;1
+19992;21996;2;168;61.0;120;80;1;1;0;0;1;0
+19993;19093;1;154;52.0;110;80;1;1;0;0;1;0
+19995;21016;2;169;84.0;145;100;3;1;0;1;1;1
+19996;21898;2;181;96.0;170;80;2;2;0;0;1;1
+19997;23313;1;162;70.0;130;89;2;3;0;0;1;1
+19998;23107;1;162;54.0;130;80;3;1;0;0;0;1
+19999;20192;1;165;63.0;120;80;1;1;0;0;1;1
+20000;18269;1;159;63.0;110;70;1;1;0;0;1;0
+20001;19731;1;154;65.0;120;80;1;1;0;0;1;1
+20002;21176;1;160;58.0;130;90;2;2;0;0;1;1
+20003;19603;2;170;57.0;120;70;1;1;0;0;0;1
+20004;19006;1;170;69.0;120;70;1;1;0;0;1;1
+20005;22606;2;177;72.0;120;80;1;1;0;0;1;1
+20006;16967;1;163;78.0;160;90;2;1;0;0;1;0
+20007;23456;1;158;88.0;130;80;1;1;0;0;0;1
+20008;17286;1;151;52.0;120;80;2;1;0;0;1;1
+20009;16581;2;165;70.0;120;80;1;1;0;0;1;0
+20010;20959;1;162;61.0;120;80;1;1;0;0;1;1
+20011;21180;2;172;89.0;150;70;2;2;0;0;0;1
+20012;19711;1;161;71.0;140;90;1;1;0;0;1;1
+20013;19102;1;162;72.0;140;1000;1;1;0;0;1;1
+20014;19526;2;175;84.0;120;80;1;1;0;0;1;0
+20017;18923;2;175;87.0;120;80;3;3;1;0;1;1
+20018;21803;1;155;75.0;120;80;1;1;0;0;1;0
+20019;15785;2;168;85.0;160;80;1;1;0;0;1;0
+20020;19769;1;160;65.0;130;90;1;1;0;0;1;0
+20021;17489;1;160;80.0;140;90;1;1;0;0;1;1
+20023;19170;2;162;59.0;160;1000;1;1;0;0;1;1
+20025;21208;1;170;60.0;130;90;2;1;0;0;1;1
+20026;21357;1;175;75.0;120;80;1;1;0;0;1;0
+20027;23344;2;176;78.0;120;80;1;1;1;0;1;1
+20029;19025;2;170;150.0;130;80;1;1;0;0;0;1
+20030;21954;1;158;64.0;140;80;2;1;0;0;1;0
+20031;19022;2;168;85.0;140;100;1;1;0;0;1;0
+20032;18440;1;162;92.0;130;80;1;1;0;0;1;0
+20034;19716;1;160;58.0;120;80;1;1;0;0;0;1
+20036;14770;1;169;68.0;120;80;1;1;0;0;1;0
+20037;19045;2;163;63.0;120;80;1;1;0;0;0;0
+20039;14492;1;156;66.0;110;70;1;1;0;0;1;0
+20040;21311;1;167;75.0;120;80;1;1;0;0;1;1
+20041;21393;2;175;87.0;140;80;2;1;1;0;0;1
+20042;20643;1;161;58.0;120;80;1;1;0;0;1;1
+20043;16300;2;158;77.0;140;80;1;3;0;0;1;1
+20045;22440;1;155;87.0;120;80;1;1;0;0;1;0
+20047;20994;1;169;69.0;120;80;3;3;0;0;0;1
+20048;22737;1;149;70.0;140;80;2;1;0;0;1;1
+20049;16005;2;169;80.0;150;90;3;3;0;0;1;1
+20052;16018;1;163;65.0;90;70;1;1;0;0;1;0
+20053;20397;1;164;80.0;120;80;1;3;0;0;1;1
+20054;15918;1;172;79.0;120;80;1;1;0;0;1;0
+20056;16777;2;165;66.0;120;80;1;1;0;0;0;1
+20057;17433;2;174;76.0;120;80;1;1;0;0;1;0
+20059;21970;1;154;90.0;120;80;2;3;0;1;1;0
+20060;21220;1;168;89.0;120;80;2;1;0;0;1;0
+20061;20321;1;168;77.0;120;80;1;1;0;0;1;1
+20064;18113;1;169;73.0;110;80;1;1;0;0;1;1
+20065;20394;2;172;104.0;150;89;1;1;0;0;0;1
+20067;20694;1;158;60.0;120;80;3;3;0;0;1;0
+20069;23422;2;160;75.0;120;80;1;1;0;0;1;1
+20070;16696;1;168;73.0;150;100;1;1;0;0;1;1
+20071;20247;2;170;82.0;120;80;1;1;0;0;1;0
+20072;18055;2;170;92.0;110;69;1;1;0;0;1;0
+20073;15128;2;171;98.0;140;90;2;1;0;0;1;1
+20075;15941;1;162;69.0;110;70;1;1;0;0;1;0
+20076;18835;1;135;67.0;110;80;2;1;0;0;1;0
+20077;22581;1;152;68.0;140;90;3;3;1;0;1;1
+20078;21138;1;158;65.0;120;80;3;3;0;0;1;1
+20081;21232;1;150;76.0;140;90;1;1;0;0;1;1
+20082;20860;1;167;69.0;120;80;2;1;0;0;1;1
+20083;17462;1;162;90.0;120;80;2;1;1;1;1;0
+20084;16844;2;166;67.0;120;80;1;1;0;0;0;0
+20085;19045;1;166;87.0;120;80;3;3;0;0;1;0
+20086;19825;1;175;100.0;170;100;3;2;0;0;0;1
+20087;20293;2;180;110.0;120;80;3;1;0;0;1;1
+20089;22369;1;156;81.0;160;80;3;1;0;0;1;1
+20093;15873;2;172;74.0;110;70;1;2;0;0;1;0
+20096;21883;2;169;61.0;110;70;1;1;1;0;1;0
+20097;20930;2;173;86.0;120;80;1;1;0;0;1;0
+20098;23280;1;163;76.0;128;80;1;1;0;0;0;1
+20099;23286;1;160;75.0;130;94;2;1;0;0;1;1
+20100;22681;2;163;78.0;120;80;1;1;0;0;1;1
+20103;19821;1;158;69.0;120;80;1;1;0;0;0;1
+20106;18965;2;169;82.0;110;70;1;1;0;1;0;0
+20108;21990;1;157;88.0;160;90;2;1;0;0;1;1
+20109;22750;1;172;67.0;130;80;3;1;0;0;0;1
+20110;19086;1;150;50.0;145;80;1;1;0;0;1;1
+20111;21928;2;179;91.0;140;100;2;2;0;0;1;1
+20113;21769;2;177;88.0;181;1177;1;1;0;0;1;1
+20114;21191;1;162;78.0;120;80;1;1;0;0;0;1
+20115;21041;2;165;51.0;100;70;1;1;0;0;0;0
+20117;19836;1;157;75.0;120;80;1;1;0;0;1;0
+20118;22852;1;153;72.0;140;70;2;2;0;0;1;1
+20119;22423;1;155;74.0;130;80;1;1;0;0;0;0
+20122;22869;2;168;66.0;120;60;1;1;0;0;1;1
+20127;20472;1;155;48.0;100;60;1;1;0;0;1;1
+20129;23258;1;145;58.0;120;80;1;1;0;0;1;1
+20131;19408;1;168;61.0;110;90;1;1;0;0;1;0
+20134;19605;1;151;64.0;140;90;1;1;0;0;1;1
+20135;18873;2;172;93.0;120;90;1;1;0;0;1;0
+20136;21317;2;154;56.0;120;80;2;1;0;0;0;0
+20138;15845;2;170;84.0;130;90;1;1;0;0;1;1
+20139;20439;1;170;66.0;120;80;1;1;0;0;1;0
+20140;16007;2;178;95.0;130;90;1;1;0;0;0;1
+20141;18758;1;162;73.0;135;90;1;1;0;0;1;1
+20142;15320;1;162;68.0;110;70;1;1;0;0;1;0
+20143;21888;1;164;92.0;140;90;1;2;0;0;0;1
+20147;14523;2;180;100.0;120;80;1;1;0;0;1;0
+20149;18121;2;162;56.0;150;100;1;1;0;0;1;1
+20150;18119;1;160;80.0;150;90;1;1;0;0;1;1
+20151;20278;1;169;68.0;169;80;1;1;0;0;0;1
+20152;19683;1;156;75.0;150;100;1;1;0;0;1;1
+20153;18340;1;155;103.0;140;70;1;1;0;0;0;1
+20156;16110;1;170;97.0;140;80;1;1;0;0;1;1
+20158;21669;1;167;67.0;120;80;1;1;0;0;1;0
+20159;18979;2;166;82.0;120;80;1;1;0;0;1;0
+20160;16947;1;169;86.0;140;90;2;1;0;1;1;1
+20162;22389;1;164;117.0;130;90;3;3;0;0;1;1
+20164;18779;2;163;73.0;120;80;1;1;0;0;1;0
+20165;15539;2;170;80.0;12;80;1;1;1;0;1;0
+20166;18890;1;179;76.0;140;90;2;2;0;0;1;1
+20167;16582;2;167;72.0;110;70;1;1;1;0;1;0
+20171;23501;1;164;67.0;120;80;1;1;0;0;0;1
+20172;21892;2;162;81.0;150;90;2;1;0;0;1;1
+20174;16067;1;161;80.0;110;70;2;2;0;0;1;0
+20175;22557;2;169;65.0;90;60;1;1;0;0;1;0
+20177;21778;2;173;128.0;179;113;1;1;1;1;1;1
+20178;20234;1;146;65.0;110;70;1;1;0;0;1;0
+20179;16865;2;168;79.0;120;80;2;1;0;0;1;0
+20181;18061;2;173;133.0;170;80;2;2;0;1;1;1
+20183;19949;1;161;63.0;120;80;1;1;0;0;1;0
+20184;21049;1;154;72.0;120;80;1;1;0;0;0;0
+20187;15365;1;150;70.0;130;90;2;1;0;1;1;1
+20190;18244;1;163;71.0;150;90;1;1;0;0;0;1
+20192;18053;2;165;60.0;120;80;1;1;0;0;0;1
+20195;18430;2;166;77.0;120;70;1;1;1;0;0;1
+20196;21196;2;168;85.0;100;70;1;1;0;0;1;0
+20197;18966;1;166;63.0;120;80;1;1;0;0;1;1
+20198;18038;2;180;99.0;180;1000;1;1;0;0;0;1
+20199;23268;1;166;86.0;120;80;2;2;0;0;1;1
+20201;14659;1;164;56.0;100;60;1;1;0;0;1;0
+20203;18401;1;165;77.0;120;80;1;1;0;0;1;0
+20207;18772;1;165;68.0;120;80;1;1;0;0;0;1
+20209;19069;1;162;64.0;120;80;1;1;0;0;1;1
+20210;18060;2;174;79.0;140;90;1;1;0;0;1;0
+20211;18092;2;169;84.0;120;80;1;1;0;0;1;0
+20212;21747;1;163;76.0;110;70;1;1;0;0;0;0
+20213;19938;1;168;70.0;140;80;1;1;0;0;0;1
+20216;18907;1;158;71.0;110;70;1;1;0;1;1;0
+20217;21130;2;173;77.0;120;80;1;1;0;0;1;1
+20218;14700;2;174;74.0;120;80;1;1;0;0;1;0
+20219;23528;1;172;73.0;120;80;1;1;0;0;1;1
+20220;15113;2;179;79.0;120;80;1;1;0;0;0;0
+20221;23461;2;168;72.0;140;90;1;1;1;0;1;1
+20223;14572;2;173;75.0;120;80;1;1;0;0;1;0
+20224;16888;2;165;65.0;120;80;1;1;0;0;0;0
+20225;19000;1;158;54.0;140;90;2;1;0;0;1;0
+20226;18060;1;168;78.0;130;90;1;3;0;0;1;0
+20228;17556;2;155;65.0;150;100;1;1;0;0;1;0
+20229;16726;1;155;63.0;140;90;1;1;0;0;1;0
+20230;14694;1;156;110.0;130;80;1;1;0;0;1;0
+20231;15342;1;166;92.0;100;60;1;1;0;0;1;1
+20232;16691;2;160;95.0;140;90;1;1;0;0;1;1
+20236;21744;2;168;66.0;120;80;1;1;0;0;0;0
+20237;22555;2;164;79.0;110;80;2;1;0;0;1;0
+20238;16107;1;161;55.0;110;80;1;1;0;0;1;0
+20240;20563;2;160;56.0;120;90;1;1;0;0;0;1
+20241;20915;1;159;87.0;150;80;1;1;0;0;0;1
+20242;23238;1;160;62.0;140;90;3;3;1;0;1;1
+20247;20416;1;154;62.0;160;90;3;1;0;0;1;1
+20249;21764;1;159;92.0;160;90;3;3;0;0;1;1
+20250;22397;1;169;78.0;140;90;1;1;0;0;1;1
+20251;16877;1;159;56.0;110;70;1;1;0;0;1;0
+20252;18220;1;154;55.0;100;60;1;1;0;0;1;0
+20253;22846;1;160;99.0;160;1000;1;2;0;0;1;1
+20254;21938;1;162;76.0;140;80;2;1;0;0;1;0
+20255;21869;1;163;72.0;120;80;1;1;0;0;1;0
+20257;15802;2;168;78.0;130;100;2;1;0;0;1;1
+20258;21802;1;161;54.35;100;70;1;1;0;0;1;0
+20259;19074;1;160;58.0;120;80;1;1;0;0;1;0
+20260;19909;1;164;88.0;160;100;2;2;0;0;1;1
+20261;14785;1;160;72.0;100;70;1;1;0;0;1;1
+20262;19852;1;151;70.0;160;90;1;1;0;0;1;1
+20264;18453;2;157;75.0;120;80;1;1;0;0;0;1
+20265;18887;1;173;67.0;130;90;3;1;0;0;1;1
+20266;20391;1;165;78.0;120;80;1;1;0;0;1;1
+20267;17317;2;176;108.0;140;1000;2;2;0;0;1;0
+20268;19730;1;160;60.0;110;70;1;1;0;0;0;0
+20269;21807;2;162;62.0;165;100;2;1;0;1;1;1
+20271;19796;1;165;65.0;120;80;1;1;0;0;1;0
+20272;15110;1;154;58.0;110;80;1;1;0;0;0;0
+20273;19854;1;165;75.0;120;80;1;1;0;0;1;0
+20275;19776;1;160;55.0;120;80;3;3;0;0;1;1
+20278;17634;2;171;78.0;100;70;2;1;0;0;1;1
+20279;21881;2;166;100.0;120;80;1;1;0;0;1;1
+20280;17543;2;160;58.0;120;80;1;1;0;0;1;0
+20281;19675;1;171;78.0;120;70;1;1;0;0;0;0
+20283;14672;1;176;76.0;110;60;1;1;0;0;1;0
+20284;16789;1;170;68.0;140;100;1;1;0;0;1;1
+20285;18238;1;160;76.0;110;70;1;1;0;0;1;0
+20287;19014;1;154;57.0;90;60;1;1;0;0;1;0
+20288;14721;1;155;65.0;120;80;1;1;0;0;1;0
+20293;21945;2;175;80.0;120;70;1;1;0;0;1;0
+20295;23172;1;161;84.0;120;80;1;1;0;0;1;1
+20296;23307;1;152;61.0;120;80;1;1;0;0;1;0
+20297;20399;1;168;98.0;140;90;1;1;0;0;1;0
+20298;19048;2;164;72.0;120;80;1;1;0;0;1;0
+20303;18885;1;168;68.0;120;80;1;1;0;0;1;0
+20304;19707;1;160;80.0;125;90;1;2;0;0;1;0
+20305;22116;1;160;60.0;120;80;3;3;0;0;1;0
+20307;15334;2;178;90.0;140;90;1;1;0;0;1;1
+20309;19119;2;171;75.0;140;90;1;1;0;0;0;1
+20310;15395;1;158;70.0;170;90;1;1;0;0;1;0
+20313;18858;1;156;52.0;120;80;1;1;0;0;1;0
+20314;15320;2;178;68.0;120;70;1;1;1;1;1;0
+20315;23131;2;181;85.0;140;90;1;1;0;0;0;0
+20316;22014;1;160;59.0;120;80;1;1;0;0;1;1
+20317;21973;1;155;70.0;160;100;1;1;0;0;1;1
+20318;20528;1;161;100.0;140;80;3;3;0;0;1;1
+20320;20422;2;172;90.0;120;80;1;1;0;0;1;0
+20321;17614;1;165;70.0;110;70;2;1;0;0;1;0
+20322;21680;1;172;80.0;140;90;3;1;0;0;1;1
+20323;20478;2;170;62.0;140;90;3;1;1;0;0;0
+20324;16098;1;165;80.0;120;80;1;1;0;0;0;1
+20325;22314;2;167;82.0;130;80;1;1;0;0;0;1
+20326;19108;1;163;62.0;110;70;1;1;0;0;1;0
+20327;19905;1;168;70.0;160;100;1;1;0;0;1;1
+20328;19860;2;168;73.0;140;90;1;1;0;0;1;0
+20329;21020;2;173;90.0;130;90;1;1;0;0;0;1
+20330;20272;1;161;54.0;110;70;1;1;0;0;1;0
+20333;21128;2;158;44.0;100;70;1;1;1;0;1;0
+20334;23133;1;153;80.0;150;80;1;1;0;0;1;1
+20335;20188;1;169;74.0;110;80;1;1;0;0;1;0
+20336;18949;1;157;98.0;170;1177;1;1;1;1;1;0
+20337;21035;1;158;86.0;150;100;1;1;0;0;0;1
+20339;20484;1;158;85.0;110;70;2;1;0;0;1;1
+20340;21236;2;167;76.0;120;80;1;1;0;0;1;1
+20341;19727;1;169;70.0;130;80;1;1;0;0;1;0
+20342;21822;1;163;62.0;120;80;1;1;0;0;1;1
+20344;16840;1;168;73.0;120;70;1;1;0;0;1;0
+20345;15279;1;176;90.0;130;90;1;1;0;0;1;1
+20346;19705;1;156;78.0;120;80;3;3;0;0;1;1
+20348;17502;1;172;70.0;110;80;2;2;0;0;1;0
+20349;21934;1;166;102.0;140;80;3;2;0;0;1;1
+20350;18221;2;176;94.0;200;110;1;1;0;0;1;1
+20351;23180;1;168;66.0;120;80;1;1;1;1;0;1
+20352;14437;2;164;67.0;130;80;1;1;0;0;1;0
+20354;21421;2;170;56.0;120;70;1;1;0;0;1;0
+20355;16096;2;164;67.0;120;70;1;1;0;1;1;0
+20357;14509;2;162;52.0;110;70;1;2;0;0;1;0
+20358;17297;2;168;75.0;110;70;1;1;0;0;1;0
+20361;15968;1;170;77.0;90;60;1;1;0;0;1;0
+20362;22214;2;170;68.0;130;80;1;1;0;0;1;1
+20363;15082;2;172;63.0;110;80;1;1;0;1;1;0
+20364;18181;1;150;53.0;90;60;1;1;0;0;1;0
+20365;20984;1;164;64.0;160;90;1;1;0;0;1;1
+20366;22520;1;147;40.0;110;70;1;1;0;0;1;0
+20370;17481;1;160;72.0;110;70;1;1;0;0;1;1
+20371;20449;1;156;58.0;115;80;1;2;0;0;1;0
+20372;22637;1;168;68.0;120;79;1;1;0;0;1;0
+20374;21182;2;178;86.0;110;80;2;2;0;1;1;1
+20375;23341;1;167;77.0;70;110;1;1;0;0;0;0
+20378;14576;2;171;97.0;120;70;1;1;0;0;1;0
+20379;20492;1;165;63.0;120;80;1;1;0;0;1;0
+20380;18195;1;150;51.0;140;80;1;1;0;0;0;1
+20386;20412;1;165;65.0;120;80;1;1;0;0;1;0
+20387;23429;2;176;68.0;130;85;1;1;0;0;1;0
+20388;21695;1;158;78.0;110;80;3;1;0;0;1;1
+20391;20460;1;150;65.0;120;80;1;1;0;0;1;0
+20395;18109;2;175;85.0;150;90;2;2;0;0;1;1
+20396;21911;1;159;59.0;130;80;3;1;0;0;0;1
+20397;16152;1;165;116.0;120;80;1;1;0;0;1;0
+20398;14523;2;171;78.0;120;80;1;1;0;0;1;0
+20399;20995;2;170;70.0;120;80;1;1;0;0;1;1
+20400;20053;1;159;83.0;110;80;1;1;1;0;1;1
+20402;21721;1;166;80.0;140;90;1;1;0;0;1;1
+20405;14484;1;159;68.0;130;90;1;1;0;0;1;1
+20407;15160;2;170;65.0;120;80;1;1;0;0;1;1
+20409;22583;2;160;70.0;120;80;1;1;0;0;1;1
+20412;20389;1;161;52.0;140;80;1;1;0;0;1;1
+20413;22482;2;171;71.0;120;80;1;2;0;0;1;1
+20414;14639;1;168;70.0;100;60;1;1;0;0;1;0
+20415;15786;2;174;104.0;150;90;1;1;0;0;1;1
+20416;19554;1;140;80.0;140;80;1;1;0;0;1;1
+20417;14808;2;175;70.0;110;70;1;1;0;0;0;0
+20418;19728;2;165;68.0;130;80;2;1;0;0;0;0
+20420;22075;1;162;65.0;120;80;3;3;0;0;0;0
+20421;14346;2;165;59.0;120;80;1;1;0;0;1;1
+20422;20679;1;153;95.0;140;100;1;1;0;0;0;1
+20423;21832;2;160;58.0;120;80;1;1;0;1;1;0
+20424;18923;1;147;73.0;140;80;2;2;0;0;1;1
+20425;18151;2;171;79.0;130;90;1;1;1;0;1;0
+20429;20469;2;184;98.0;120;80;1;1;0;0;0;1
+20430;20215;1;170;72.0;120;72;1;1;0;0;1;1
+20431;16672;1;155;60.0;140;100;1;1;0;0;1;1
+20433;14481;2;170;69.0;110;80;1;1;0;0;1;1
+20434;15903;1;172;73.0;130;100;1;1;0;0;1;0
+20435;19851;2;168;70.0;120;80;1;1;0;0;1;0
+20436;15972;1;162;80.0;110;80;1;1;0;0;1;0
+20437;18183;1;156;68.0;120;80;1;1;0;0;1;0
+20438;18381;1;160;70.0;160;7100;1;1;0;1;1;1
+20439;16917;2;176;76.0;120;80;1;1;0;1;1;0
+20440;21790;1;156;86.0;130;90;1;1;0;0;1;1
+20441;22689;2;175;72.0;120;80;1;1;0;0;1;1
+20442;18319;1;171;94.0;130;90;1;1;0;0;1;0
+20443;18894;2;168;68.0;120;80;1;1;0;0;0;0
+20445;18225;2;174;76.0;120;80;2;1;0;0;1;0
+20449;15941;1;162;59.0;110;70;1;1;0;0;1;0
+20450;18087;1;166;130.0;130;70;2;3;1;0;1;0
+20451;14388;1;164;75.0;100;60;2;1;0;0;1;0
+20452;23361;1;167;69.0;130;80;3;3;0;0;1;1
+20455;17331;1;160;86.0;120;80;1;1;0;0;1;1
+20456;14312;2;171;88.0;130;80;2;1;0;0;1;0
+20457;18221;1;155;82.0;170;100;2;1;0;0;1;1
+20458;14361;1;159;72.0;130;80;1;1;0;1;1;1
+20459;22005;1;67;57.0;120;90;1;1;0;0;1;1
+20460;20420;2;175;93.0;115;80;1;1;1;0;1;1
+20463;18775;2;172;93.0;110;80;1;2;0;0;0;0
+20464;18115;1;160;65.0;120;80;1;1;0;0;1;0
+20465;18740;1;158;91.0;160;100;2;2;0;0;1;1
+20466;15832;1;158;65.0;120;80;2;1;0;0;1;0
+20467;18566;1;177;80.0;130;70;2;1;0;0;1;0
+20469;23341;2;169;74.0;130;80;1;1;1;0;1;0
+20472;15156;2;174;82.0;120;80;2;1;1;0;1;1
+20473;18227;2;170;71.0;120;80;3;3;0;0;1;0
+20475;18177;1;163;64.0;120;80;1;1;0;0;1;1
+20476;16179;1;170;89.0;110;70;1;1;0;0;1;0
+20478;21869;2;156;60.0;130;60;3;3;0;0;1;1
+20480;17477;1;154;53.0;120;80;3;1;0;0;1;0
+20481;18741;2;168;87.0;120;80;1;1;0;0;1;1
+20482;21136;1;174;77.0;120;80;1;1;0;0;1;1
+20483;20333;1;167;73.0;130;80;1;1;0;0;1;0
+20484;18212;1;166;72.0;120;80;1;1;0;0;1;0
+20485;19466;1;158;50.7;100;60;1;1;0;0;1;0
+20486;22083;2;168;72.0;130;90;3;3;0;0;1;0
+20487;15320;2;170;73.0;100;70;1;1;0;0;0;0
+20489;15959;1;168;65.0;100;60;1;1;0;0;0;0
+20490;19237;2;170;78.0;130;90;1;1;0;0;1;1
+20492;19743;1;162;83.0;120;80;1;1;0;0;1;0
+20493;21786;1;163;109.0;170;100;2;2;0;0;0;1
+20494;20435;1;153;74.0;110;90;1;1;0;0;0;0
+20495;20196;1;152;59.0;130;90;1;1;0;0;1;1
+20498;23363;2;164;74.0;140;90;1;1;0;0;1;1
+20499;20496;1;163;73.0;110;80;1;1;1;0;1;1
+20500;22539;1;154;103.0;140;90;2;1;0;0;1;1
+20503;17450;1;162;68.0;120;80;1;1;0;0;1;0
+20505;21889;2;156;58.0;150;109;1;1;0;1;1;0
+20506;21207;1;158;63.0;120;80;1;1;0;0;1;1
+20508;19830;2;181;75.0;120;80;1;3;0;0;1;0
+20510;18239;2;166;61.0;120;80;3;1;0;0;0;0
+20511;19132;1;152;114.0;140;90;1;1;0;0;1;0
+20512;20912;1;164;75.0;130;70;3;1;0;0;1;1
+20513;20461;2;167;81.0;130;90;2;1;0;1;1;0
+20514;20702;1;169;70.0;120;80;1;1;0;0;1;0
+20519;20359;1;143;53.0;140;80;3;1;0;0;1;1
+20520;16757;1;156;66.0;100;70;1;3;0;0;1;0
+20521;20672;1;152;71.0;140;100;2;1;0;0;1;1
+20522;18057;1;162;72.0;112;65;1;1;0;0;1;0
+20523;21251;1;170;79.0;170;100;3;3;1;0;1;1
+20524;23509;1;153;65.0;120;80;1;1;0;0;1;0
+20525;19067;1;156;70.0;140;80;1;1;0;0;1;1
+20529;14634;1;163;55.0;110;80;1;1;0;0;1;0
+20531;21152;2;170;101.0;140;90;2;1;0;0;1;0
+20532;20330;1;168;80.0;120;80;1;1;0;0;1;0
+20534;17572;1;156;66.0;120;80;1;1;1;0;1;0
+20535;22500;1;154;80.0;120;80;1;1;0;0;1;1
+20536;19747;2;158;64.0;120;80;3;1;1;0;1;1
+20537;20268;1;160;64.0;130;80;1;1;0;0;1;1
+20538;20472;2;172;98.0;120;80;3;3;1;0;0;0
+20539;16606;1;167;65.0;100;70;1;1;0;0;0;0
+20541;22014;1;154;75.0;140;100;1;1;0;0;1;1
+20543;16804;1;154;106.0;140;90;3;3;0;0;1;1
+20544;21409;1;170;68.0;140;80;1;3;0;0;1;1
+20545;18397;2;172;100.0;160;100;3;1;0;0;1;1
+20546;16806;1;157;63.0;110;70;1;1;0;0;1;1
+20547;22022;1;160;70.0;140;90;1;2;0;0;0;1
+20549;22516;2;172;85.0;130;80;3;1;1;0;1;1
+20550;18383;2;172;60.0;140;80;1;1;1;0;1;1
+20551;21980;2;160;64.0;160;100;1;1;0;0;1;1
+20553;23377;1;162;58.0;110;70;1;1;0;0;0;1
+20554;21259;1;178;96.0;125;80;1;1;0;0;1;1
+20556;21170;2;176;75.0;180;110;1;1;0;0;1;0
+20558;20346;1;178;97.0;125;80;1;2;0;0;0;0
+20559;15164;2;164;50.0;100;70;1;1;0;0;0;0
+20561;19535;1;158;82.0;130;88;1;1;0;0;1;1
+20562;21224;1;162;54.0;90;70;1;1;0;0;1;0
+20563;18152;1;156;56.0;135;90;3;1;0;0;1;1
+20564;23462;2;158;60.0;110;80;1;1;0;0;0;1
+20565;20449;1;158;60.0;120;80;1;1;0;0;1;0
+20566;21460;1;159;68.0;140;1000;2;1;0;0;1;1
+20567;20356;1;160;77.0;110;60;1;1;0;0;1;1
+20570;15175;1;162;80.0;120;80;1;1;0;0;1;1
+20571;15822;2;170;91.0;160;100;1;1;0;0;1;1
+20572;18910;1;164;105.0;140;90;2;1;0;0;1;1
+20573;22140;2;164;58.0;120;80;2;1;0;0;0;0
+20574;15261;2;174;78.0;150;90;3;1;1;0;1;1
+20575;16080;1;166;93.0;140;80;1;1;0;0;1;1
+20577;15673;2;167;68.0;110;70;1;1;0;0;1;0
+20579;21144;2;170;77.0;140;100;1;1;0;0;0;0
+20580;22513;1;157;95.0;130;90;2;1;0;0;1;1
+20581;19541;2;167;53.0;120;80;1;1;0;0;1;0
+20582;19628;1;155;92.0;130;90;2;2;0;0;1;1
+20585;19032;1;142;51.0;130;80;1;1;0;0;1;1
+20586;18489;1;157;61.0;120;80;1;1;0;0;1;0
+20587;16634;1;165;75.0;130;90;2;2;0;0;1;1
+20588;16812;2;161;64.0;120;80;1;1;1;0;1;0
+20589;18917;2;166;58.0;120;80;1;1;0;0;1;1
+20590;15286;2;170;75.0;160;90;1;1;0;0;1;1
+20592;19928;1;154;77.0;135;80;2;1;0;0;0;1
+20595;19683;1;157;57.0;90;70;1;1;0;0;1;0
+20597;17344;1;162;71.0;140;90;1;1;0;0;1;0
+20598;18073;1;168;65.0;120;80;1;1;0;0;0;0
+20599;16178;2;173;75.0;100;60;1;1;0;0;1;0
+20601;20991;1;154;55.0;100;60;1;1;0;0;1;0
+20602;19489;2;168;63.0;120;80;1;1;0;0;0;0
+20605;23467;2;165;65.0;120;60;1;3;0;0;0;0
+20606;17394;1;156;59.0;110;80;1;1;0;0;1;0
+20607;19634;2;175;70.0;120;80;1;1;0;0;0;0
+20609;14720;1;172;83.0;150;80;2;1;0;0;1;0
+20610;20973;2;169;80.0;120;80;2;1;0;0;1;0
+20612;21010;1;168;73.0;135;80;2;1;0;0;1;1
+20614;19081;1;154;80.0;160;90;1;1;0;0;1;1
+20616;23216;1;155;110.0;130;80;3;1;0;0;1;1
+20620;21915;1;162;60.0;100;60;3;3;0;0;1;0
+20621;18348;2;158;64.0;120;80;1;1;0;0;1;0
+20623;14664;2;172;70.0;120;80;1;1;0;0;1;0
+20624;20287;1;157;89.0;100;60;2;1;0;0;0;1
+20625;17563;1;164;73.0;110;70;1;2;0;0;1;0
+20626;14800;1;155;44.0;90;60;3;3;0;0;1;0
+20627;22565;1;155;61.0;120;90;1;1;0;0;1;0
+20632;20998;1;155;52.0;160;100;3;3;0;0;1;1
+20633;17021;2;168;68.0;120;80;1;1;0;0;0;1
+20634;22630;1;155;56.0;160;100;3;3;0;0;1;1
+20637;17745;1;155;76.0;110;70;2;1;0;0;1;0
+20638;15492;1;164;67.0;100;70;1;1;0;0;1;1
+20639;19709;1;158;71.0;130;80;1;1;0;0;1;1
+20641;22719;1;164;86.0;130;80;1;1;0;0;1;0
+20642;18229;2;171;74.0;110;80;2;1;0;0;1;0
+20643;16742;2;176;60.0;110;70;1;1;1;0;0;0
+20644;23140;1;159;81.0;120;79;1;1;0;0;1;1
+20645;18237;1;165;65.0;120;80;1;1;0;0;0;0
+20648;21907;1;164;62.0;130;70;2;1;0;0;1;0
+20649;23474;1;167;64.0;160;90;2;1;0;0;1;1
+20650;23572;1;178;78.0;120;80;1;1;0;0;0;1
+20651;21022;2;178;82.0;130;90;1;3;0;0;1;1
+20654;19765;2;170;74.0;12;80;1;1;0;0;1;1
+20655;18959;1;160;60.0;120;80;1;1;0;0;1;0
+20656;18250;1;159;75.0;120;70;1;1;0;0;0;0
+20659;15314;1;160;64.0;120;80;1;1;0;0;0;0
+20660;16022;1;156;47.0;110;70;1;1;0;0;1;0
+20661;18189;1;158;85.0;110;70;1;1;0;0;1;0
+20662;21155;2;180;70.0;120;80;1;1;0;0;1;0
+20663;14472;1;166;66.0;140;90;1;1;0;0;1;1
+20664;23106;1;153;68.0;100;70;1;2;0;0;1;1
+20665;14838;1;150;108.0;110;70;2;1;0;0;1;0
+20666;16299;2;160;75.0;130;80;1;3;0;0;1;0
+20667;20328;1;154;79.94;150;90;2;1;0;0;1;1
+20668;20486;2;162;68.0;150;110;1;1;0;0;1;1
+20670;23312;1;158;74.0;120;80;2;3;0;0;1;1
+20671;19553;2;168;68.0;150;90;1;1;0;0;1;1
+20674;23213;1;160;95.0;130;90;1;1;0;0;0;0
+20676;19648;1;162;64.0;120;80;1;1;0;0;1;0
+20677;20376;1;152;83.0;150;90;2;2;0;0;1;1
+20678;17474;2;169;75.0;120;80;1;1;0;0;1;0
+20679;17589;2;179;111.0;120;70;1;1;0;0;1;1
+20680;21268;1;155;80.0;110;70;1;2;0;0;1;0
+20681;20261;2;169;67.0;120;80;1;1;0;0;1;1
+20682;23207;2;165;65.0;120;80;1;1;1;0;1;0
+20684;19649;1;164;66.0;120;80;2;1;0;0;1;1
+20685;19571;1;172;67.0;150;80;2;1;0;0;0;1
+20687;22756;1;155;70.0;130;90;1;1;0;0;1;1
+20688;17494;1;169;91.0;110;70;1;2;0;0;1;0
+20689;23467;1;156;77.0;110;70;1;3;0;0;1;0
+20692;19612;1;158;60.0;120;70;1;1;0;0;1;0
+20694;21280;1;163;61.0;130;90;1;1;0;0;1;1
+20697;18316;1;155;63.0;130;90;1;1;0;0;1;0
+20698;16494;2;170;84.0;120;80;1;1;0;0;1;1
+20699;20986;2;185;85.0;130;80;1;1;0;0;1;0
+20700;19746;1;147;69.0;140;80;1;1;0;0;1;0
+20701;23190;1;154;74.0;140;80;2;1;0;0;1;1
+20704;23344;1;170;99.0;160;100;3;1;0;0;1;0
+20707;22562;2;160;99.0;150;90;1;1;0;1;0;1
+20710;21943;1;163;69.0;140;90;3;3;0;0;1;0
+20713;21959;2;157;52.0;120;80;1;1;1;0;0;0
+20714;22031;1;157;44.0;110;70;1;1;0;0;1;0
+20716;22007;1;165;57.0;120;80;1;1;0;0;1;0
+20717;21275;2;175;64.0;110;80;1;1;0;0;1;0
+20718;16069;1;152;54.0;100;70;1;1;0;0;1;0
+20720;21259;2;168;65.0;120;80;1;1;0;0;1;0
+20723;23144;1;158;70.0;110;80;1;1;0;0;1;0
+20724;21592;1;158;80.0;180;110;1;1;0;0;1;1
+20725;16349;1;168;70.0;120;80;1;1;1;0;0;0
+20726;18284;1;160;63.0;12;80;1;1;0;0;1;0
+20727;23285;1;162;60.0;120;80;3;3;0;0;1;1
+20728;20389;2;173;81.0;120;80;1;1;0;1;1;0
+20729;18300;1;158;76.0;110;70;1;1;0;0;1;0
+20730;19750;2;160;67.0;135;80;1;1;1;0;1;1
+20732;21169;2;176;78.0;115;75;1;1;0;0;1;1
+20735;20549;1;164;72.0;140;90;1;1;0;0;1;1
+20736;23169;1;151;60.0;130;90;1;1;0;0;1;1
+20737;21154;1;155;79.0;140;90;2;3;0;0;1;1
+20738;18912;1;149;66.0;180;90;2;1;0;0;0;0
+20739;20537;1;154;65.0;120;80;3;1;0;0;1;0
+20740;19475;2;170;70.0;120;80;1;1;1;0;1;0
+20741;23645;1;167;72.0;110;80;2;1;0;0;1;1
+20742;21453;1;170;71.0;120;80;1;1;0;0;1;0
+20743;18212;1;165;65.0;110;70;1;1;0;0;1;0
+20744;17459;1;155;75.0;120;80;1;1;0;0;1;0
+20745;23489;1;165;85.0;150;80;1;1;0;0;0;1
+20746;20238;2;178;92.0;170;100;3;3;0;1;1;1
+20748;19663;2;178;80.0;120;80;1;1;0;0;0;1
+20749;20359;2;180;91.0;125;75;1;1;0;0;1;0
+20750;22031;1;170;165.0;120;80;1;1;0;0;1;0
+20751;17587;2;170;80.0;120;70;1;1;1;0;1;1
+20754;16713;2;168;74.0;120;80;1;1;0;0;0;0
+20755;19838;1;152;69.0;120;80;1;1;0;0;0;0
+20756;19010;1;166;80.0;150;100;1;1;0;0;1;1
+20757;14520;1;175;80.0;130;80;1;1;0;0;0;1
+20758;17355;2;174;83.0;120;80;2;1;0;0;0;1
+20759;15507;1;165;65.0;120;80;1;1;0;0;1;0
+20760;21050;1;154;90.0;120;80;1;1;0;0;1;0
+20761;21355;1;155;66.0;130;90;1;1;1;0;0;1
+20762;18470;1;157;57.0;100;70;1;1;0;0;1;0
+20765;21291;1;155;66.0;150;100;2;1;0;0;1;1
+20767;15931;2;166;96.0;140;90;3;1;1;0;1;1
+20768;20164;1;161;72.0;110;70;1;1;0;0;1;0
+20769;19703;2;177;133.0;160;100;1;1;0;0;0;1
+20770;19752;1;165;62.0;120;80;1;1;0;0;1;0
+20771;19040;1;169;70.0;140;80;1;3;0;0;1;1
+20772;17622;1;160;68.0;140;90;1;1;0;0;1;1
+20773;17284;2;176;89.0;140;80;1;1;0;0;1;1
+20774;20896;2;170;73.0;110;80;1;1;1;0;1;0
+20776;20220;2;167;82.0;130;80;1;1;1;0;1;0
+20777;18798;1;160;110.0;120;80;1;1;0;0;1;0
+20778;23335;1;160;69.0;150;90;1;1;0;0;0;1
+20779;23366;2;172;63.0;120;80;1;1;1;1;1;0
+20780;19112;2;175;86.0;120;80;1;1;1;0;0;0
+20781;22487;1;164;80.0;120;80;2;1;0;0;1;0
+20782;17992;2;175;98.0;140;90;1;3;0;0;1;0
+20783;19189;2;164;78.0;120;80;1;1;0;0;0;1
+20784;20393;1;159;68.0;120;80;1;1;0;0;1;0
+20786;20471;2;176;130.0;172;90;1;2;0;0;1;1
+20788;16248;1;178;78.0;120;80;1;1;0;0;1;0
+20790;21792;1;174;90.0;160;90;3;3;0;0;1;1
+20791;14395;1;163;45.8;123;45;1;1;1;1;1;0
+20792;16516;2;172;78.0;110;79;1;1;0;0;1;1
+20794;20501;1;170;77.0;110;80;1;1;0;0;1;0
+20796;15476;2;189;107.0;140;90;1;3;0;0;1;0
+20797;19770;1;154;68.0;120;80;1;1;0;0;1;0
+20799;15400;1;153;81.0;120;80;1;1;0;0;1;0
+20800;21168;1;165;70.0;130;80;1;1;0;0;0;1
+20801;20344;2;176;80.0;130;80;1;1;0;0;1;0
+20803;19154;1;160;80.0;120;80;3;3;0;0;1;0
+20804;17694;1;160;90.0;140;89;1;1;0;0;1;1
+20805;21261;2;162;68.0;140;90;3;3;0;0;1;0
+20806;23356;1;156;53.0;140;90;1;1;0;0;0;1
+20807;17974;1;163;73.0;120;80;1;1;0;0;0;0
+20809;21450;1;155;72.0;140;90;1;2;0;0;1;1
+20810;19695;2;170;76.0;120;80;1;1;1;0;1;1
+20811;22429;2;180;87.0;120;80;1;1;0;0;0;0
+20812;16760;1;167;78.0;120;80;1;1;0;0;1;0
+20813;19643;1;170;75.0;110;80;1;1;0;0;1;0
+20814;23274;1;153;72.0;130;80;3;1;0;0;1;1
+20815;18431;2;163;85.0;120;80;1;1;0;0;1;0
+20816;14745;2;180;90.0;120;80;1;1;0;0;1;1
+20818;21101;1;167;58.0;110;80;1;1;0;0;0;1
+20819;15543;1;165;64.0;120;80;1;1;0;0;1;0
+20824;18486;1;169;63.0;120;90;3;3;0;0;1;0
+20825;23139;2;168;82.0;140;80;1;1;0;0;1;1
+20827;20639;1;168;106.0;140;90;3;3;0;0;0;0
+20828;19068;2;168;90.0;130;80;1;1;0;0;1;0
+20830;18317;1;157;65.0;120;80;1;1;1;0;1;0
+20831;19875;1;164;81.0;130;90;1;1;0;0;0;1
+20832;21888;2;176;58.0;110;70;1;1;0;0;1;0
+20833;17986;2;181;105.0;110;80;1;2;1;0;1;1
+20834;17481;2;160;87.0;120;80;1;2;0;0;0;0
+20835;21173;1;170;68.0;120;80;1;1;0;0;1;1
+20836;18873;2;170;97.0;130;70;1;3;0;0;1;1
+20837;16955;1;176;65.0;120;80;1;1;0;0;1;1
+20838;15966;1;152;70.0;120;80;1;1;0;0;0;0
+20839;23194;1;160;95.0;120;50;1;1;0;0;0;0
+20840;14839;2;172;72.0;120;80;1;2;0;0;1;0
+20842;16650;1;164;64.0;100;60;2;1;0;0;1;0
+20844;14569;2;180;76.0;110;70;1;1;0;0;1;0
+20849;22466;1;160;85.0;132;93;1;1;0;0;1;1
+20850;22529;2;156;68.0;150;90;1;1;0;0;0;1
+20851;17519;1;178;52.0;120;80;2;1;0;0;1;0
+20854;17044;1;168;90.0;120;80;1;1;0;0;1;0
+20855;16530;2;161;70.0;110;70;1;1;1;0;1;0
+20856;15962;1;164;79.0;120;80;1;1;0;0;1;0
+20859;14407;1;160;80.0;140;90;1;1;0;0;1;0
+20860;20582;1;157;80.0;100;70;1;1;0;0;1;0
+20861;23488;1;163;64.0;120;70;1;3;0;0;1;1
+20862;14626;2;186;116.0;130;90;1;1;0;0;0;0
+20863;21161;2;169;55.0;120;80;3;3;0;0;1;1
+20864;17579;2;170;65.0;100;80;1;1;0;0;0;0
+20865;17576;1;168;68.0;90;60;1;1;0;0;1;0
+20867;18282;1;163;80.0;120;80;1;1;0;0;1;1
+20872;18524;1;162;85.0;120;80;1;1;0;0;1;0
+20876;15301;1;157;55.0;120;80;1;2;0;0;1;0
+20878;21594;1;164;64.0;120;80;1;1;0;0;1;1
+20879;18274;1;161;82.0;130;80;2;1;0;0;1;0
+20880;22706;1;154;87.0;135;90;1;1;0;0;1;1
+20881;21082;2;173;93.0;140;80;3;3;1;0;1;0
+20883;14668;2;178;71.0;110;70;1;1;0;0;1;0
+20884;18246;1;167;68.0;120;80;2;1;0;0;1;1
+20885;22795;2;169;58.0;150;90;3;2;0;0;1;1
+20886;21239;1;156;66.0;150;90;1;1;0;0;1;1
+20889;23454;2;165;69.0;120;80;1;1;0;0;1;0
+20890;20607;1;168;76.0;130;80;1;1;0;0;1;0
+20891;15838;1;164;96.0;150;100;2;1;0;0;0;1
+20893;18141;2;172;76.0;120;80;1;1;0;0;1;1
+20894;21015;1;155;71.0;130;90;2;1;0;0;1;0
+20895;20592;1;155;124.0;160;100;3;1;0;0;1;0
+20897;17504;1;168;68.0;120;80;1;1;0;0;0;0
+20898;20403;1;156;72.5;145;100;3;1;0;0;1;1
+20899;21954;2;168;56.0;120;80;3;1;1;1;1;0
+20900;19647;1;165;65.0;120;80;1;1;0;0;1;1
+20902;18104;1;165;86.0;120;80;1;1;0;0;1;0
+20903;18392;2;172;90.0;150;80;1;1;0;0;1;0
+20904;19598;1;156;52.0;110;70;1;1;0;0;1;0
+20905;22720;2;169;93.0;160;90;2;2;0;1;0;1
+20906;20410;1;168;72.0;130;90;1;1;0;0;0;0
+20908;16577;2;178;75.0;160;90;1;1;0;0;1;1
+20909;22490;1;163;92.0;140;87;3;1;0;0;0;1
+20910;21269;1;165;63.0;120;80;1;1;0;0;1;0
+20911;21128;1;155;83.0;120;80;3;1;0;0;1;1
+20912;21095;1;151;66.0;100;60;1;1;0;0;1;0
+20913;19655;1;168;62.0;120;80;1;1;0;0;1;0
+20914;21131;2;176;79.0;130;80;3;3;0;0;1;1
+20915;15897;1;158;60.0;120;80;1;1;0;0;1;0
+20918;15499;2;179;89.0;100;90;1;1;1;0;1;0
+20919;18951;2;172;82.0;120;80;1;1;0;0;1;1
+20920;15322;2;170;85.0;120;80;1;1;1;1;1;0
+20921;18946;2;177;85.0;110;80;1;1;0;0;1;1
+20922;20549;2;160;59.0;120;80;1;1;0;0;1;1
+20923;21454;2;161;69.0;120;80;1;1;0;0;1;0
+20926;21792;1;165;62.0;120;80;1;1;0;0;0;0
+20927;23441;1;168;68.0;110;80;1;1;0;0;1;1
+20928;23218;1;166;68.0;140;100;3;3;0;0;1;0
+20929;17510;1;156;60.0;130;80;1;1;0;0;1;1
+20930;22566;1;157;89.0;150;90;3;2;0;1;1;1
+20931;22064;2;176;103.0;130;90;1;1;0;0;1;0
+20933;23320;2;165;83.0;120;80;1;1;0;0;1;1
+20934;20497;1;156;59.0;110;70;1;1;0;0;1;1
+20937;19054;1;165;71.0;120;80;1;1;0;0;1;0
+20939;20983;1;170;70.0;110;70;1;1;0;0;1;1
+20940;18325;2;170;85.0;120;80;1;1;0;0;1;0
+20942;18864;2;173;77.0;120;80;1;1;0;0;1;0
+20944;18345;2;170;90.0;110;70;2;1;0;0;1;0
+20945;17347;1;170;63.0;120;80;1;1;0;0;1;0
+20949;15821;1;152;59.0;130;100;1;1;0;0;1;1
+20950;16020;2;171;85.0;120;80;1;1;0;0;1;0
+20951;16877;2;164;85.0;120;90;1;1;0;0;1;0
+20953;19694;1;163;75.0;100;70;1;1;0;0;1;0
+20956;20335;2;171;100.0;130;90;2;1;0;0;0;1
+20958;20877;1;158;87.0;140;80;2;1;0;0;0;0
+20959;16635;2;180;142.0;160;120;1;1;0;0;1;1
+20960;23573;1;170;65.0;120;80;1;1;0;0;1;1
+20961;22850;2;182;88.0;140;90;2;1;0;0;1;1
+20963;18759;1;159;61.0;130;80;1;1;0;0;0;1
+20964;16818;1;170;64.0;100;70;1;1;0;0;0;0
+20965;22052;1;170;70.0;120;70;1;1;0;0;1;0
+20966;22701;1;157;64.0;170;1000;1;1;0;0;1;1
+20967;21110;2;177;87.0;120;80;1;1;1;0;1;1
+20968;19667;1;162;65.0;120;80;1;1;0;0;1;0
+20969;16686;1;156;67.0;150;100;1;1;0;0;0;1
+20970;21135;1;159;153.0;120;80;1;1;0;0;1;1
+20971;20355;1;168;73.0;120;60;1;1;0;0;1;0
+20973;21731;1;158;118.0;170;100;3;1;0;0;0;1
+20974;15510;2;175;72.0;140;80;1;1;0;0;1;1
+20975;19667;1;165;75.0;120;80;1;1;0;0;1;0
+20976;21193;2;176;73.0;130;70;3;2;0;0;1;1
+20977;16758;1;172;63.0;110;70;1;1;0;0;1;0
+20978;23353;1;160;70.0;160;1100;1;1;0;0;1;0
+20981;20555;2;178;87.0;120;80;1;1;0;0;0;1
+20983;19675;2;169;65.0;110;70;1;1;0;0;1;0
+20984;15469;2;170;58.0;120;80;1;1;1;1;1;0
+20985;14409;2;174;75.0;110;70;1;1;0;0;1;0
+20989;21670;1;156;89.0;110;80;1;1;0;0;0;1
+20990;14559;1;159;56.0;90;70;1;1;0;0;0;0
+20991;23395;1;161;74.0;160;90;2;1;0;0;1;0
+20993;15435;2;164;65.0;130;80;1;1;0;0;0;0
+20995;19521;2;164;74.0;120;60;2;1;1;1;1;1
+20996;18163;1;167;83.0;120;80;1;1;0;0;1;0
+20997;23054;1;158;60.0;140;80;3;1;0;0;1;1
+20998;19805;2;176;75.0;130;80;3;3;0;0;1;1
+20999;23421;2;169;94.0;130;80;2;1;1;1;1;1
+21002;20674;1;160;69.0;120;80;1;1;0;0;0;0
+21005;21017;2;167;69.0;130;80;3;1;1;1;1;0
+21007;20667;1;165;70.0;120;80;1;1;0;0;1;0
+21009;15045;1;174;64.0;110;80;1;1;0;0;1;0
+21010;14868;2;172;80.0;120;80;1;1;0;0;0;0
+21011;22552;2;162;84.0;180;90;1;1;1;0;1;1
+21012;23049;1;154;92.0;130;90;2;1;0;0;1;1
+21013;22054;1;162;78.0;140;100;3;3;0;0;1;0
+21015;16916;2;163;53.0;110;70;1;1;0;0;1;0
+21016;20389;1;150;68.0;140;80;1;1;0;0;1;1
+21017;19782;1;150;60.0;160;100;1;3;0;0;1;1
+21019;22002;1;160;90.0;130;90;3;1;1;0;1;0
+21020;22577;1;163;69.0;110;70;1;1;0;0;1;1
+21021;19557;1;158;70.0;120;70;1;1;0;0;1;0
+21022;18773;1;160;64.0;120;80;2;1;0;0;0;1
+21023;23104;1;161;104.0;160;90;1;1;0;0;0;1
+21024;23389;1;158;77.0;120;80;1;1;0;0;1;0
+21025;22113;1;156;76.0;120;80;1;1;0;0;1;0
+21027;21293;1;162;84.0;170;100;1;1;0;0;1;1
+21028;20539;1;170;78.0;110;70;1;1;0;0;1;0
+21034;16240;2;177;76.0;110;70;1;1;0;0;1;0
+21035;16850;2;170;85.0;150;100;1;1;0;0;1;1
+21036;21121;1;158;54.0;120;80;1;1;0;0;1;0
+21037;18841;1;158;57.0;100;60;1;1;0;0;0;1
+21038;21105;2;189;88.0;160;100;3;1;0;0;0;1
+21039;19092;1;160;58.0;120;80;1;1;0;0;1;0
+21040;22663;1;143;34.0;100;70;1;1;0;0;1;0
+21041;16721;2;182;92.0;110;70;1;1;0;0;1;0
+21042;22868;1;171;75.0;120;80;1;1;0;0;1;1
+21043;20439;1;159;88.0;130;80;1;1;0;0;1;0
+21044;18479;1;170;64.0;120;80;1;1;0;0;1;0
+21045;21821;2;175;85.0;130;90;1;1;0;0;1;1
+21046;21778;1;153;86.0;120;80;1;1;0;0;1;1
+21047;21100;2;169;100.0;130;90;3;3;0;0;1;1
+21048;21284;1;154;54.0;100;66;1;1;0;0;0;1
+21049;21061;1;158;96.0;160;110;1;1;0;0;0;1
+21050;18889;1;169;80.0;150;80;2;1;0;0;1;1
+21053;17338;2;170;72.0;150;80;1;1;1;0;1;1
+21054;20536;1;162;70.0;120;80;1;1;0;0;1;0
+21056;20411;2;164;62.0;150;80;1;1;1;0;1;1
+21059;19781;1;175;95.0;110;70;1;1;0;0;1;0
+21060;21051;1;170;68.0;140;100;3;1;0;0;1;1
+21061;20243;2;172;103.0;160;100;1;1;0;0;1;1
+21062;16084;2;156;52.0;110;70;1;1;0;0;0;0
+21064;19585;2;168;75.0;120;80;1;1;0;0;1;0
+21065;17429;1;162;96.0;120;80;2;2;0;0;1;1
+21067;18946;2;180;85.0;120;80;1;1;0;0;1;1
+21068;21221;1;173;70.0;110;60;1;1;0;0;1;1
+21069;22756;1;160;75.0;130;80;2;1;0;0;1;1
+21070;16000;2;172;78.0;130;70;1;1;0;0;1;0
+21071;18047;2;175;85.0;120;80;1;1;1;0;0;0
+21072;15917;2;172;83.0;120;80;3;3;0;0;1;0
+21073;17220;1;157;53.0;130;90;2;1;0;0;1;0
+21074;16671;1;164;64.0;110;70;1;1;0;0;1;0
+21075;18010;1;160;53.0;100;70;1;1;0;1;1;0
+21076;18283;1;158;65.0;110;80;2;1;0;0;1;0
+21077;16680;1;158;64.0;110;70;1;1;0;0;1;0
+21079;21425;1;161;58.0;120;80;1;1;0;0;1;1
+21080;20493;1;162;65.0;150;98;2;1;0;0;1;0
+21082;15313;1;170;98.0;12;90;1;1;0;0;0;1
+21083;21871;1;169;77.0;140;90;3;3;0;0;1;1
+21086;21241;1;151;60.0;110;70;1;1;0;0;1;0
+21087;17677;2;170;71.0;120;80;1;1;0;0;1;0
+21089;16651;1;159;59.0;120;70;1;1;0;0;1;0
+21090;21189;1;164;82.0;140;90;2;2;0;0;1;1
+21091;20138;2;173;92.0;120;70;1;1;0;0;1;1
+21092;19566;1;159;55.0;110;70;2;1;0;0;0;0
+21093;23388;1;156;75.0;180;110;1;1;0;0;1;1
+21094;18324;1;178;86.0;140;80;1;1;0;0;1;1
+21097;16032;2;172;89.0;120;80;1;1;0;0;1;0
+21100;18088;1;158;53.0;100;70;1;1;0;0;1;0
+21101;20320;1;160;84.0;160;100;1;1;0;0;1;1
+21102;18917;1;162;60.0;120;79;1;1;0;0;0;1
+21104;21350;1;168;54.0;122;80;1;1;0;0;1;1
+21105;16166;1;158;94.0;120;80;1;1;0;0;1;0
+21106;18271;2;168;78.0;130;80;1;1;0;0;0;1
+21107;22546;1;158;100.0;123;79;3;1;0;0;1;1
+21108;21715;2;175;82.0;130;70;1;1;1;0;1;0
+21114;16071;1;158;60.0;110;80;1;1;0;0;1;0
+21115;19810;2;157;69.0;130;90;1;1;0;1;1;0
+21116;20968;1;165;65.0;140;80;1;1;0;0;1;1
+21117;18074;2;174;69.0;120;80;1;1;0;0;1;1
+21119;22325;1;162;83.0;130;80;2;3;0;0;1;1
+21120;16059;2;170;80.0;120;80;1;1;0;0;1;0
+21121;21063;1;169;59.0;120;80;1;1;0;0;1;1
+21123;20422;2;170;93.0;160;90;1;1;1;0;1;1
+21124;20264;1;163;89.0;120;80;1;1;0;0;0;1
+21126;20334;1;160;90.0;130;80;1;1;0;0;1;1
+21127;16598;1;167;85.0;120;80;1;1;0;0;1;0
+21129;19766;1;157;59.0;120;80;1;1;0;0;1;1
+21130;18454;1;157;66.0;120;70;2;2;0;0;1;0
+21131;21214;1;169;74.0;120;80;1;1;0;0;1;1
+21132;21767;2;178;92.0;120;80;2;1;1;0;1;1
+21133;15264;2;170;68.0;110;70;1;1;0;0;1;0
+21136;21935;2;171;69.0;100;70;1;1;1;0;1;0
+21137;18282;1;157;65.0;130;80;3;3;0;0;0;1
+21138;21840;1;158;74.0;120;90;1;1;0;0;1;0
+21139;17462;1;158;60.0;120;80;1;1;0;0;1;0
+21140;15359;2;165;52.0;100;70;1;1;0;0;1;0
+21142;17959;1;160;70.0;140;80;1;1;0;0;1;1
+21143;20372;1;168;59.0;120;80;1;1;0;0;1;1
+21144;21856;1;157;90.0;120;90;1;1;0;0;1;0
+21146;18874;2;162;66.0;120;80;1;1;0;0;1;0
+21147;22572;2;164;56.0;130;80;1;1;0;0;1;0
+21148;20355;2;180;65.0;120;80;1;3;0;0;1;1
+21151;14502;2;170;87.0;130;90;1;1;0;0;1;1
+21154;20482;2;166;59.0;120;80;1;1;0;0;1;1
+21155;22488;2;168;75.0;110;70;1;1;0;0;1;0
+21158;22536;2;172;90.0;140;90;1;1;1;0;1;1
+21162;19740;1;157;92.0;210;120;1;1;0;0;1;1
+21163;15970;1;160;59.0;130;90;1;1;0;0;0;0
+21164;22385;1;157;67.0;120;80;3;1;0;0;1;0
+21165;16855;2;175;76.0;120;80;1;1;0;0;1;0
+21166;15369;1;165;70.0;120;80;1;1;0;0;1;0
+21169;21092;2;168;81.0;120;80;1;1;1;0;0;1
+21170;21259;1;164;80.0;130;80;1;3;0;0;1;0
+21172;18168;1;163;97.0;140;90;3;1;0;0;1;1
+21173;18284;1;160;62.0;110;70;1;1;0;0;1;0
+21174;20228;1;158;60.0;120;80;1;1;0;0;1;0
+21176;17665;2;175;102.0;140;90;2;1;0;0;1;1
+21177;20538;1;158;54.0;120;80;1;1;0;0;1;0
+21178;21144;1;159;61.0;120;80;1;1;0;0;1;0
+21179;17579;1;162;56.0;150;100;2;1;0;0;1;1
+21181;19990;2;150;61.0;130;80;3;3;0;0;1;1
+21182;20342;1;174;65.0;120;80;1;1;0;0;1;1
+21184;19489;2;155;68.0;120;80;1;1;0;0;0;1
+21185;22231;1;158;68.0;130;90;1;1;0;0;0;0
+21186;17482;1;163;58.0;90;60;1;1;0;0;1;1
+21187;20456;2;165;70.0;150;90;1;1;0;0;0;1
+21188;18832;2;167;62.0;120;80;1;1;1;0;1;0
+21189;20267;1;165;74.0;130;89;3;1;0;0;1;0
+21190;20327;2;167;58.0;100;60;1;1;0;0;1;0
+21191;20370;2;165;65.0;120;80;1;1;0;0;1;0
+21194;16517;1;172;86.0;120;80;1;1;0;0;1;1
+21195;22167;1;160;80.0;130;90;1;1;0;0;1;0
+21196;15458;1;143;63.0;120;80;1;1;0;0;1;0
+21198;16526;1;170;73.0;140;90;1;1;0;0;1;1
+21200;18886;1;160;56.0;120;80;1;1;0;0;1;0
+21201;20984;2;178;62.0;110;70;1;1;0;0;1;1
+21202;19070;1;155;65.0;110;70;2;2;0;0;1;0
+21203;19557;1;164;68.0;120;80;1;1;0;0;0;1
+21205;18340;2;167;86.0;140;80;2;1;1;1;0;1
+21208;18403;2;160;110.0;130;80;1;3;0;0;0;1
+21210;20337;1;160;84.0;130;70;1;1;0;0;1;1
+21211;19182;2;168;72.0;120;80;1;1;0;0;0;0
+21212;20448;1;145;68.0;140;90;1;1;0;0;0;1
+21213;23362;1;165;89.0;120;86;1;1;0;0;1;1
+21214;20551;2;167;69.0;140;70;1;1;0;0;1;1
+21215;19438;1;167;87.0;140;90;1;1;0;0;0;0
+21216;16599;2;174;80.0;150;90;2;2;1;0;1;0
+21220;18012;2;173;83.0;140;90;2;1;0;0;0;1
+21221;21192;1;157;58.0;110;70;1;1;0;0;1;0
+21223;23234;1;152;69.0;120;80;3;3;0;0;1;1
+21224;20563;1;170;69.0;120;80;1;1;0;0;1;0
+21225;18275;1;160;80.0;130;90;1;1;0;0;0;1
+21226;20420;1;172;93.0;140;80;1;1;0;0;0;0
+21229;15243;1;162;65.0;110;70;1;1;0;0;1;0
+21230;18097;1;168;65.0;120;80;1;1;0;0;1;0
+21232;23465;1;164;81.0;140;90;3;1;0;0;1;1
+21233;18961;1;168;67.0;150;100;3;3;0;0;0;0
+21235;19650;2;177;83.0;150;90;1;1;0;0;1;1
+21236;19074;2;165;69.0;120;80;1;1;0;0;1;0
+21237;17547;1;159;67.0;100;65;1;1;0;0;1;0
+21238;15298;2;169;70.0;120;70;1;1;0;0;0;0
+21241;19168;2;175;89.0;140;90;1;1;1;0;1;1
+21242;23043;1;155;65.0;120;80;3;1;0;0;1;1
+21243;21335;1;162;76.0;120;80;1;1;1;0;1;1
+21245;18160;1;159;67.0;115;75;1;1;0;0;0;0
+21247;15891;1;167;72.0;90;60;1;2;0;0;1;1
+21248;19102;1;166;90.0;130;90;1;1;0;0;1;0
+21250;19755;2;174;77.0;130;80;1;1;0;0;1;0
+21251;23555;2;159;73.0;110;60;1;1;0;0;1;0
+21252;21169;1;148;58.0;110;70;1;1;0;0;1;0
+21253;21963;1;165;80.0;120;80;1;1;0;0;1;1
+21254;17582;1;165;60.0;110;80;1;1;0;0;1;0
+21255;21081;1;156;54.0;120;60;1;1;0;0;1;0
+21256;21618;1;167;85.0;130;90;3;1;0;0;1;0
+21258;22783;2;169;70.0;120;80;1;1;0;0;1;1
+21259;21712;2;179;115.0;130;90;3;3;0;0;1;0
+21260;19090;2;165;65.0;120;80;1;1;0;0;1;0
+21261;20505;1;159;70.0;120;80;1;1;0;0;1;0
+21267;18840;2;171;88.0;130;80;1;1;1;0;0;1
+21270;23135;1;153;77.0;150;100;1;1;0;0;1;1
+21271;23216;1;169;70.0;120;80;1;1;0;0;0;0
+21272;20299;1;158;63.0;120;80;3;1;0;1;1;0
+21273;19603;2;175;106.0;140;90;1;1;1;0;1;1
+21275;18019;1;160;65.0;120;80;1;1;0;0;0;1
+21277;14544;2;157;54.0;120;80;1;1;0;0;1;0
+21279;19811;1;176;86.0;120;80;1;1;0;0;0;1
+21283;22059;2;164;70.0;120;80;1;1;0;0;1;0
+21284;22380;2;170;92.0;120;80;1;1;0;0;1;1
+21288;15482;1;184;75.0;120;80;1;1;0;0;0;1
+21289;15223;2;172;72.0;110;69;1;1;0;0;1;0
+21291;20929;1;157;96.0;140;90;1;1;0;0;1;0
+21293;20521;1;165;85.0;130;80;1;1;0;0;1;1
+21294;19034;2;164;75.0;120;80;1;3;1;0;1;1
+21295;16874;1;165;95.0;130;90;1;3;0;0;1;1
+21296;19614;1;149;85.0;160;90;1;1;0;0;1;1
+21297;22791;1;166;67.0;110;80;1;1;0;0;1;1
+21299;18805;2;172;88.0;120;80;1;1;1;1;1;0
+21300;19575;1;154;72.0;110;70;1;1;0;0;1;0
+21303;20366;1;165;68.0;120;80;1;1;0;0;1;1
+21305;20999;2;166;104.0;120;80;2;1;0;0;1;0
+21306;20521;1;158;61.0;130;90;1;1;0;0;0;1
+21307;23321;1;160;63.0;120;80;1;1;0;0;1;0
+21308;18845;2;164;74.0;120;80;1;1;1;0;1;1
+21310;15213;1;159;77.0;120;80;1;1;0;0;1;1
+21311;18903;2;178;115.0;200;130;3;3;1;1;0;1
+21312;20405;1;170;54.0;120;80;1;1;0;0;1;0
+21314;21932;2;182;85.0;100;70;1;1;0;0;1;0
+21315;18987;2;171;99.0;120;70;1;1;1;0;0;0
+21316;19896;1;167;72.0;120;80;1;1;0;0;1;1
+21317;15213;1;158;80.0;120;80;1;1;0;0;1;0
+21318;16710;1;154;57.0;120;80;1;1;0;0;1;0
+21322;15471;1;157;90.0;120;80;1;1;0;0;1;0
+21323;16516;1;154;85.0;130;80;1;1;0;0;1;0
+21324;21147;2;163;62.0;120;80;1;1;0;0;1;0
+21325;23311;2;170;115.0;120;80;2;2;1;1;1;1
+21326;18962;1;175;66.0;120;80;1;1;0;0;1;1
+21327;18170;1;155;56.0;150;80;1;2;0;0;1;1
+21329;20416;1;169;78.0;130;85;2;2;0;0;0;1
+21331;19686;1;168;57.0;120;80;1;1;0;0;0;0
+21332;21033;1;160;72.0;145;100;2;1;0;0;1;1
+21333;15944;2;172;70.0;90;60;1;2;1;0;1;0
+21334;18354;2;167;69.0;140;90;1;1;0;0;1;0
+21338;16904;1;163;76.0;150;90;1;1;0;0;0;1
+21340;23491;2;169;72.0;120;80;1;1;0;0;0;1
+21341;21159;2;170;65.0;150;100;1;1;0;0;0;1
+21342;15400;1;162;85.0;160;100;1;1;0;0;1;0
+21343;22673;2;160;60.0;140;90;1;1;0;0;1;1
+21344;20549;2;188;85.0;110;60;1;1;0;1;1;0
+21345;21086;1;168;75.0;120;80;1;1;0;0;1;0
+21346;18992;1;164;69.0;120;80;1;1;0;0;1;1
+21347;18745;1;165;65.0;120;80;1;1;0;0;1;0
+21348;15147;1;165;67.0;120;80;1;1;0;0;0;0
+21349;18236;2;162;58.0;140;90;1;1;0;0;1;1
+21350;21863;1;164;71.0;125;80;1;1;0;0;1;0
+21351;23316;1;151;75.0;140;90;2;1;0;0;1;1
+21352;16116;1;172;88.0;160;90;2;2;0;0;1;1
+21353;23453;1;165;60.0;120;70;1;1;0;0;1;1
+21354;18458;1;161;83.0;120;80;2;1;0;0;0;0
+21355;21223;1;165;68.0;120;80;1;1;0;0;0;1
+21356;19107;2;170;75.0;120;80;1;3;0;0;1;1
+21357;21869;1;145;60.0;110;80;1;1;0;0;1;1
+21359;16016;2;180;80.0;130;90;1;1;0;0;1;1
+21361;18222;1;146;56.0;120;80;1;1;0;0;1;0
+21362;19698;1;152;73.0;110;80;2;1;0;0;1;1
+21363;15449;1;165;93.0;120;80;2;2;0;0;1;1
+21364;20617;1;168;71.0;150;90;2;1;0;0;0;1
+21365;22679;1;163;83.0;150;100;3;3;0;0;1;1
+21368;18244;1;166;79.0;120;70;1;1;0;0;1;0
+21371;23415;2;178;110.0;140;90;1;1;0;0;1;1
+21372;23576;2;165;75.0;150;90;2;3;0;0;1;1
+21373;14595;1;168;70.0;100;60;1;1;0;0;1;0
+21374;18262;1;163;65.0;160;90;1;1;0;0;1;0
+21375;16111;2;170;98.0;120;80;1;2;0;0;1;0
+21377;22028;1;165;67.0;120;80;1;1;0;0;0;1
+21378;20477;1;158;92.0;140;90;3;1;0;0;1;1
+21379;21065;1;156;56.0;120;80;1;1;0;0;1;1
+21380;20663;1;160;68.0;130;90;1;2;0;0;1;1
+21382;14688;1;168;68.0;120;80;2;1;0;0;0;0
+21383;19678;1;156;55.0;90;60;1;1;0;0;1;0
+21384;14755;1;172;73.0;140;90;1;1;0;0;1;1
+21385;18217;2;175;65.0;120;80;1;1;0;0;1;0
+21387;18933;2;168;97.0;120;80;1;1;1;0;1;0
+21388;18875;1;156;84.0;140;90;1;1;0;0;1;1
+21389;23306;1;165;88.0;140;90;1;1;0;0;1;1
+21392;17104;1;163;80.0;120;80;1;1;0;0;0;1
+21393;16025;1;150;60.0;120;80;1;1;0;0;1;0
+21395;15844;1;155;90.0;129;77;2;1;0;1;1;0
+21396;21916;2;165;90.0;140;90;3;1;0;0;0;1
+21397;19126;1;153;65.0;110;70;1;2;0;0;1;0
+21399;19460;2;170;70.0;120;70;1;3;0;0;1;0
+21400;22524;2;169;80.0;160;100;1;1;1;0;1;0
+21403;21917;1;160;58.0;160;90;3;1;0;0;0;1
+21404;19613;1;160;70.0;140;100;1;1;0;0;1;1
+21405;17538;2;177;95.0;150;90;2;1;0;0;1;1
+21406;16776;1;165;74.0;110;80;1;1;0;0;1;0
+21407;18938;1;158;70.0;90;70;1;1;1;0;1;0
+21408;21946;1;165;55.0;120;80;1;1;0;0;1;0
+21409;22496;1;157;80.0;130;80;1;1;0;0;1;1
+21410;15076;2;173;74.0;110;70;1;1;0;0;1;0
+21411;16256;2;170;72.0;120;80;1;1;0;0;1;0
+21412;20543;1;175;72.0;130;90;3;3;0;0;0;1
+21413;15129;1;162;76.0;120;80;2;1;0;0;1;1
+21414;15600;2;163;63.0;120;80;2;1;0;0;0;1
+21415;20366;2;164;62.0;140;90;3;3;1;0;1;1
+21416;20308;2;180;81.0;150;80;1;3;0;0;1;1
+21419;23331;2;178;80.0;140;90;1;1;1;0;0;1
+21421;16939;2;177;89.0;120;80;2;1;0;0;0;1
+21422;19005;2;168;69.0;120;80;1;1;0;0;0;0
+21423;17498;1;168;64.0;120;80;1;1;0;0;1;0
+21424;21706;2;164;83.0;120;80;1;2;0;0;1;1
+21425;15518;1;157;92.0;140;90;1;1;0;0;1;1
+21426;14755;1;168;75.0;110;80;1;1;0;0;1;0
+21427;16676;1;162;60.0;160;100;2;1;0;0;1;0
+21430;17335;2;169;58.0;120;80;1;1;0;0;1;1
+21431;18299;1;177;72.0;120;80;1;1;0;0;1;1
+21433;14567;1;161;63.0;120;80;1;3;0;0;1;0
+21435;15287;2;173;77.0;120;80;1;1;1;0;1;0
+21436;21785;1;162;64.0;120;80;1;1;0;0;1;0
+21437;22563;1;156;100.0;160;80;1;1;0;0;1;1
+21440;21774;1;168;69.0;110;70;1;1;0;0;1;1
+21441;21873;1;157;77.0;120;80;1;1;0;0;1;1
+21444;15437;1;158;67.0;110;90;1;1;0;0;0;0
+21445;18304;1;152;65.0;115;77;1;1;0;0;1;0
+21446;15324;1;169;79.0;110;60;1;1;0;0;1;0
+21448;20395;2;173;82.0;115;80;1;2;0;0;1;0
+21449;19534;2;165;67.0;130;80;1;1;1;0;1;1
+21450;19631;1;152;52.0;110;70;2;2;0;0;1;0
+21452;19787;1;164;70.0;120;80;2;1;0;0;0;0
+21455;20400;1;153;51.0;130;70;1;1;0;0;1;1
+21457;23161;1;160;85.0;140;90;3;1;0;0;0;1
+21458;19235;2;174;79.0;130;90;2;1;1;0;1;0
+21459;17421;1;157;96.0;110;70;1;1;0;0;1;0
+21460;21145;2;169;82.0;140;90;1;1;0;0;1;1
+21462;20673;2;174;70.0;110;70;1;1;0;0;1;0
+21463;19312;2;169;67.0;110;70;1;1;0;0;1;0
+21464;19730;1;163;63.0;120;80;1;1;0;0;1;0
+21465;16901;2;173;77.0;150;70;1;1;0;0;1;1
+21468;19021;1;153;52.0;120;100;1;1;0;0;1;0
+21470;21486;2;172;65.0;110;70;1;1;0;0;1;0
+21471;14624;1;165;64.0;110;70;1;1;0;0;1;0
+21472;16866;2;165;62.0;120;80;1;1;0;0;1;1
+21473;21360;2;170;87.0;140;80;3;2;0;0;1;0
+21475;20338;1;142;63.0;100;70;2;1;0;0;1;0
+21476;22715;1;154;75.0;120;80;1;1;0;0;1;1
+21477;22875;2;181;79.0;130;80;1;1;0;0;1;1
+21478;21930;1;166;78.0;110;70;1;1;0;0;1;0
+21481;14755;2;165;65.0;120;80;1;1;0;0;0;0
+21483;19048;1;166;77.0;120;80;1;1;0;0;0;0
+21484;21745;1;162;95.0;120;80;1;1;0;0;0;0
+21485;19531;2;170;69.0;160;90;1;1;1;1;1;1
+21486;19680;2;170;75.0;130;90;1;1;0;0;1;0
+21487;19060;1;156;65.0;140;80;2;3;0;0;0;0
+21490;19837;1;155;62.0;110;80;1;2;1;0;0;0
+21491;19478;2;169;80.0;120;80;1;1;0;0;0;1
+21492;15975;1;145;53.0;100;70;1;1;0;0;1;0
+21494;19693;1;163;68.0;120;80;1;1;0;0;0;0
+21497;21754;2;163;63.0;120;80;1;1;0;0;0;0
+21498;21277;1;148;51.0;120;80;1;1;0;0;1;0
+21499;19734;1;169;66.0;120;80;1;1;0;0;1;0
+21500;19483;1;158;105.0;120;90;3;3;0;0;1;1
+21502;21912;2;175;72.0;140;90;1;1;0;0;0;0
+21503;23408;1;168;68.0;120;80;1;1;0;0;1;1
+21505;18366;2;176;70.0;150;90;1;1;1;0;1;1
+21506;20651;1;152;74.0;170;1000;1;1;0;0;1;1
+21507;14456;1;167;73.0;120;80;1;1;0;0;0;1
+21508;18291;1;152;81.0;140;90;1;1;0;0;0;0
+21510;21803;1;168;69.0;120;60;2;2;0;0;1;1
+21511;19697;1;169;63.0;120;80;1;1;0;0;1;0
+21512;14504;2;168;68.0;140;80;1;1;1;1;1;1
+21513;20408;1;167;96.0;140;70;2;1;0;0;1;0
+21516;19721;1;150;80.0;90;140;1;1;0;0;0;1
+21517;22437;1;166;106.0;130;80;1;1;0;0;1;0
+21518;17718;1;159;74.0;110;70;1;1;0;0;1;0
+21520;21666;1;154;61.0;171;110;2;2;0;0;1;1
+21522;21663;1;164;77.0;150;95;1;1;0;0;1;1
+21524;15365;1;156;65.0;120;80;1;1;0;0;1;0
+21529;15217;2;170;69.0;120;80;1;1;0;0;1;0
+21531;18227;1;165;66.0;110;70;1;1;0;0;1;0
+21533;16046;1;164;80.0;120;70;1;1;0;0;1;0
+21535;23096;1;160;72.0;120;80;1;1;0;0;1;0
+21536;19760;1;155;71.0;140;90;1;1;0;0;1;1
+21537;21855;1;164;80.0;110;80;1;1;0;0;1;0
+21538;19556;1;165;65.0;120;80;1;3;0;0;1;0
+21540;18994;1;178;70.0;120;80;1;1;0;0;1;0
+21541;18814;1;156;63.0;130;90;3;1;0;1;0;1
+21542;22091;1;154;84.0;130;90;1;1;0;1;0;0
+21543;19740;1;172;70.0;110;70;1;1;0;0;1;1
+21544;23426;2;167;89.0;130;80;1;1;0;0;1;0
+21545;17546;1;184;88.0;120;80;1;1;0;0;1;0
+21547;16833;1;174;108.0;130;90;1;1;0;0;1;1
+21548;15257;2;169;71.0;120;80;1;1;0;0;1;0
+21549;18171;2;165;76.0;130;80;3;1;0;0;1;1
+21550;21840;2;176;100.0;140;1000;1;1;0;0;1;1
+21551;21216;2;177;68.0;150;80;1;1;0;0;1;1
+21553;20344;1;164;55.0;140;90;2;1;0;0;1;0
+21555;22665;1;158;83.0;120;80;1;1;0;0;1;0
+21556;18879;1;156;103.0;180;100;2;2;0;0;1;1
+21557;23230;1;162;64.0;120;80;1;1;0;0;0;1
+21558;16780;1;155;70.0;150;1000;1;1;0;0;1;1
+21565;18512;2;177;65.0;120;80;1;1;0;0;1;0
+21566;19036;1;169;85.0;120;80;2;1;0;0;1;0
+21568;20656;2;172;95.0;140;100;2;1;0;0;1;1
+21569;20385;2;169;57.0;140;80;1;1;1;1;1;1
+21571;15509;1;168;81.0;120;80;1;1;0;0;1;1
+21573;18430;1;155;56.0;140;709;1;1;0;0;1;1
+21574;18888;1;150;72.0;120;80;1;1;0;0;1;0
+21576;20485;2;168;79.0;150;90;1;1;0;0;1;1
+21577;21107;1;164;68.0;210;110;1;1;0;0;1;0
+21578;18957;2;170;71.0;120;80;2;1;0;0;0;1
+21579;20492;1;167;60.0;110;70;3;1;0;0;1;1
+21580;21205;2;169;63.0;120;80;1;1;1;0;1;0
+21582;19684;1;152;63.0;120;80;1;1;0;0;0;1
+21583;22623;1;158;97.0;140;90;1;1;0;0;1;1
+21584;19029;1;163;73.0;120;80;1;1;0;0;1;0
+21585;18389;1;160;56.0;120;80;1;1;0;0;0;0
+21586;22073;2;165;70.0;120;80;1;1;0;0;1;0
+21589;21330;2;167;95.0;120;80;1;1;0;0;1;0
+21590;16773;1;158;74.0;130;90;3;1;0;0;1;0
+21591;23554;1;165;69.0;120;80;1;1;0;0;1;0
+21593;21868;1;153;59.0;150;90;2;1;0;0;0;1
+21595;15384;2;167;64.0;120;80;1;1;0;0;1;0
+21596;18136;1;169;58.0;120;80;1;1;0;0;1;0
+21598;18371;2;182;121.0;130;90;3;1;1;1;1;1
+21599;20365;1;154;58.0;120;70;2;2;0;0;1;0
+21600;19131;1;162;70.0;120;80;1;1;0;0;1;0
+21603;23296;1;156;58.0;120;80;1;1;0;0;1;1
+21604;21328;1;166;79.0;120;80;3;1;0;0;1;1
+21605;20290;2;181;96.0;140;80;2;2;0;0;1;0
+21606;16576;1;165;69.0;100;80;1;1;0;0;1;0
+21607;22668;2;151;92.0;120;80;1;1;1;0;1;1
+21608;22500;2;170;83.0;140;100;1;1;0;1;1;1
+21609;18692;2;174;65.0;120;80;1;1;0;0;1;1
+21610;15275;2;172;78.0;150;100;1;1;1;0;1;1
+21611;19731;2;174;74.0;120;80;1;1;0;0;1;1
+21612;21047;1;160;75.0;120;80;2;1;0;0;1;1
+21613;14307;2;165;65.0;120;80;1;1;0;0;0;0
+21614;22347;2;172;88.0;140;80;1;2;1;0;1;0
+21615;22624;2;170;91.0;120;80;1;3;0;0;1;1
+21616;20296;1;168;70.0;140;90;1;1;0;0;1;1
+21617;15594;1;163;75.0;120;80;3;3;0;0;0;0
+21618;17535;1;158;72.0;90;70;1;1;0;0;1;1
+21620;16855;2;175;70.0;110;80;1;1;1;1;1;0
+21621;16857;2;170;70.0;120;80;1;1;0;0;1;1
+21622;15346;1;157;63.0;90;60;1;1;0;0;0;0
+21623;17578;2;178;66.0;130;80;1;1;0;0;1;0
+21624;18653;2;181;79.0;110;70;1;1;0;0;1;1
+21625;20413;1;157;79.0;110;70;1;1;0;0;1;0
+21626;22024;1;178;78.0;120;70;2;1;0;0;1;0
+21627;19619;2;180;89.0;120;80;1;1;1;1;1;0
+21628;19647;2;175;84.0;140;95;3;3;0;0;1;1
+21630;20996;1;167;70.0;130;90;1;1;0;0;1;1
+21632;15840;2;170;77.0;130;80;1;1;1;1;0;1
+21633;21203;2;158;93.0;130;90;2;1;0;0;1;0
+21636;19777;2;167;78.0;120;80;1;2;0;0;1;0
+21637;21717;2;172;80.0;130;80;1;1;0;0;0;1
+21638;21146;1;164;90.0;120;80;3;1;0;0;1;0
+21639;19825;2;178;98.0;170;100;1;1;0;0;1;1
+21640;21891;1;164;97.0;150;1000;3;1;0;0;1;1
+21641;16817;2;168;69.0;120;70;3;3;0;0;1;0
+21643;18729;2;168;70.0;100;60;1;1;0;1;0;0
+21644;20360;1;159;74.0;110;60;1;1;0;0;0;1
+21649;23180;2;170;74.0;120;80;1;1;0;0;1;0
+21650;23358;1;168;69.0;120;80;1;1;0;0;1;1
+21652;17449;2;180;108.0;130;90;1;1;1;1;0;1
+21654;21303;2;169;70.0;180;90;2;2;0;0;1;1
+21655;19711;1;156;69.0;110;75;2;1;0;0;1;1
+21656;19735;1;165;85.0;160;90;2;1;0;0;1;1
+21658;19650;1;159;60.0;120;80;2;3;0;0;1;0
+21659;19186;1;158;64.0;120;80;3;3;0;0;1;1
+21661;21078;1;160;76.0;140;75;1;1;0;0;1;1
+21662;17089;1;162;84.0;150;100;1;1;0;0;1;0
+21663;15412;1;169;90.0;100;60;1;1;0;0;1;0
+21664;18319;2;168;64.0;120;80;1;1;0;0;0;0
+21665;16112;2;180;86.0;120;80;1;1;0;0;1;0
+21666;17490;2;165;85.0;120;80;1;1;0;0;0;0
+21667;16232;1;160;62.0;120;70;1;3;0;0;1;1
+21668;18402;2;170;74.0;140;90;1;1;0;0;1;1
+21671;20526;2;168;68.0;120;80;1;1;0;0;1;0
+21672;23272;2;167;72.0;170;100;3;1;0;0;0;1
+21673;15182;1;162;65.0;130;80;2;2;0;0;1;1
+21676;16885;1;156;60.0;120;80;1;1;0;0;1;0
+21677;15432;1;159;58.0;110;70;1;1;0;0;1;0
+21678;19657;2;185;77.0;120;80;2;2;0;0;1;0
+21680;21795;1;170;91.0;140;90;2;1;0;0;1;1
+21681;16742;2;173;83.0;220;100;2;1;0;0;1;0
+21682;20390;1;161;97.0;120;80;2;2;1;1;0;0
+21684;15997;1;168;72.0;124;70;1;1;0;0;1;0
+21685;21014;1;154;110.0;120;70;1;1;0;0;1;1
+21686;15812;1;70;68.0;120;80;1;1;0;0;0;0
+21687;20274;1;155;71.0;110;60;2;2;0;0;1;0
+21688;21873;1;156;58.0;120;80;2;1;0;0;1;1
+21689;22012;1;156;80.0;120;80;3;1;0;0;1;1
+21690;22132;2;168;74.0;120;80;1;1;1;0;1;1
+21692;19636;1;164;82.0;140;80;3;2;0;0;1;1
+21696;20484;1;163;68.0;120;65;1;1;0;1;1;1
+21697;19774;2;176;79.0;120;80;1;1;1;1;1;0
+21698;15845;2;162;70.0;120;70;1;1;1;0;1;0
+21701;14564;1;172;59.0;120;80;1;1;0;0;1;0
+21702;18988;2;187;85.0;160;1000;2;3;1;0;1;1
+21703;21046;1;163;65.0;130;80;1;2;0;0;1;0
+21704;23362;1;156;52.0;110;70;1;1;0;0;0;0
+21705;19063;1;163;59.0;110;70;2;1;0;0;1;0
+21706;18086;1;164;72.0;120;70;1;1;0;0;0;0
+21707;20384;1;150;75.0;120;80;2;1;0;0;1;0
+21709;18211;1;160;65.0;120;90;1;1;0;0;1;0
+21712;16913;2;180;79.0;115;70;1;1;1;1;1;0
+21713;19778;1;164;69.0;100;60;2;2;0;0;1;1
+21714;21057;1;154;80.0;120;70;1;1;0;0;1;1
+21715;19609;1;156;72.0;190;110;1;1;0;1;1;1
+21716;19708;2;168;70.0;180;100;1;1;1;0;1;1
+21717;18198;2;170;97.0;140;95;2;1;0;1;1;1
+21718;23314;2;177;95.0;160;100;2;2;0;0;1;1
+21720;15504;1;155;56.0;110;70;1;1;0;1;1;0
+21721;16632;1;163;62.0;90;70;1;1;0;0;1;0
+21723;21141;1;164;98.0;140;90;3;1;0;0;1;1
+21724;19140;1;153;68.0;110;60;1;1;0;0;1;0
+21726;17261;1;155;70.0;120;80;1;1;0;0;0;0
+21727;22515;2;165;80.0;160;100;1;2;0;0;0;1
+21728;20342;1;165;72.0;120;80;1;1;0;0;1;1
+21729;19693;1;165;68.0;130;80;1;1;0;0;1;0
+21730;16027;1;161;83.0;120;80;3;1;0;1;1;1
+21731;22778;1;157;59.0;130;80;3;1;0;0;1;1
+21732;19943;1;179;83.0;120;80;1;1;0;0;0;1
+21733;14630;2;179;69.0;130;90;1;1;0;0;1;0
+21734;21012;1;158;60.0;120;80;1;1;0;0;1;1
+21735;18766;1;167;80.0;120;70;1;1;0;0;1;0
+21736;15250;2;164;56.0;110;70;1;1;1;0;1;0
+21737;21122;1;165;84.0;140;80;2;1;0;0;1;0
+21740;14651;1;168;67.0;110;70;1;1;0;0;1;0
+21741;23154;1;152;67.0;120;70;1;1;0;0;1;1
+21742;22410;1;169;70.0;120;80;1;3;1;0;1;0
+21743;14516;1;159;82.0;120;80;1;1;0;0;1;0
+21745;23220;1;162;80.0;160;100;2;1;0;0;1;1
+21747;16744;2;180;100.0;120;80;1;1;0;0;1;0
+21748;23374;1;150;72.0;120;80;1;1;0;0;1;1
+21749;18281;2;179;89.0;140;100;1;1;0;0;1;1
+21750;14411;1;158;80.0;120;80;1;1;0;0;0;1
+21753;18945;1;158;63.0;120;80;1;1;0;0;0;0
+21755;18157;1;168;65.0;90;60;1;2;0;0;1;1
+21757;17507;1;147;57.0;120;80;1;2;0;0;1;0
+21758;18730;2;173;115.0;110;70;1;1;0;0;1;0
+21759;18996;2;175;73.0;140;80;2;1;0;0;0;0
+21760;21874;2;170;80.0;140;90;1;1;0;0;0;1
+21762;14396;1;158;80.0;120;80;1;1;0;0;0;0
+21763;19742;2;165;86.0;130;80;3;1;0;0;1;1
+21764;18951;1;161;50.0;110;70;1;1;0;0;0;0
+21765;21930;1;147;55.0;110;70;1;1;0;0;1;0
+21766;22454;1;156;90.0;120;80;1;1;0;0;1;1
+21767;19800;1;163;57.0;90;60;1;1;0;0;1;0
+21768;19482;1;159;73.0;120;80;1;1;0;0;1;0
+21769;21319;1;155;100.0;150;1000;1;1;0;0;1;0
+21770;23374;2;162;62.0;120;80;3;3;0;0;1;0
+21771;21162;1;170;68.0;120;80;1;1;0;0;1;1
+21772;22258;2;163;62.4;120;70;1;1;0;0;1;0
+21773;17565;1;160;63.0;90;60;2;1;0;0;0;0
+21775;19014;2;174;60.0;110;80;3;1;1;0;1;0
+21776;17552;2;168;78.0;130;80;1;3;0;0;1;1
+21777;16043;1;160;69.0;90;60;2;1;0;0;1;0
+21778;17516;1;159;88.0;120;80;1;1;0;0;1;0
+21780;20426;1;165;86.0;120;80;1;1;0;0;1;0
+21781;15967;1;155;97.0;120;90;1;1;0;0;0;0
+21782;18323;1;158;65.0;110;70;1;1;0;0;1;0
+21783;21849;2;172;81.0;150;100;3;2;0;1;1;1
+21785;18059;1;166;80.0;130;80;1;1;0;0;0;0
+21787;16912;1;168;73.0;140;80;2;1;0;0;1;1
+21788;15215;1;160;94.0;100;70;1;1;0;0;1;0
+21789;20947;1;152;70.0;120;80;1;1;0;0;1;0
+21791;20466;1;158;61.0;150;90;1;1;0;0;1;1
+21792;20680;1;156;53.0;150;80;1;1;0;0;1;1
+21793;16854;2;157;57.0;120;80;1;1;0;0;1;1
+21795;16745;1;155;88.0;110;80;1;1;0;0;1;0
+21796;21789;1;167;67.0;120;80;1;1;0;0;1;0
+21798;14602;2;164;78.0;120;80;1;1;1;0;1;0
+21799;20155;2;163;73.0;140;80;3;1;0;0;1;1
+21801;19089;2;170;101.0;120;80;1;1;0;0;1;1
+21804;21277;1;160;60.0;120;80;1;1;0;0;1;0
+21805;16114;1;158;90.0;140;90;3;1;0;0;1;1
+21806;21874;2;169;71.0;120;80;1;1;0;0;0;1
+21807;21867;1;168;64.0;140;100;1;1;0;0;1;1
+21808;20504;2;165;65.0;120;80;1;1;0;0;1;0
+21809;19531;1;160;64.0;140;90;3;1;0;0;1;1
+21810;20492;2;169;68.0;140;90;1;1;1;1;1;1
+21811;21906;2;170;83.0;140;90;1;1;0;0;1;0
+21813;23301;1;178;75.0;120;80;1;1;0;0;1;1
+21815;18262;1;167;77.0;150;90;1;1;0;0;1;1
+21816;20495;2;163;65.0;120;80;1;1;0;0;1;0
+21818;21253;2;170;62.0;110;70;1;3;0;0;1;0
+21819;23280;1;164;54.0;120;80;2;1;0;0;1;1
+21820;20683;1;154;79.0;140;90;1;1;0;0;1;1
+21821;20457;2;168;68.0;130;80;1;1;0;0;0;0
+21823;18301;2;181;89.0;120;80;1;1;1;0;1;0
+21824;15338;1;154;51.0;110;70;1;1;0;0;1;0
+21825;18030;1;172;76.0;150;90;1;1;0;0;1;1
+21826;22810;2;170;80.0;120;90;1;1;0;0;1;1
+21827;16541;2;170;56.0;110;80;1;1;0;0;1;0
+21828;18146;1;165;67.0;120;70;1;1;0;0;1;1
+21829;19684;1;166;85.0;150;100;1;1;1;0;0;1
+21832;19694;1;168;70.0;120;80;1;1;0;0;1;1
+21833;16583;2;181;72.0;120;80;1;1;0;0;1;1
+21835;20248;1;152;56.0;160;100;1;1;0;0;1;1
+21836;16797;2;176;77.0;120;80;1;1;0;0;1;1
+21839;18369;2;168;65.0;120;80;1;1;0;0;1;0
+21840;20970;2;176;68.0;110;70;1;1;0;0;1;0
+21841;16924;2;165;70.0;140;80;2;2;0;0;0;1
+21846;15775;1;160;52.0;110;70;1;1;0;0;1;0
+21848;14399;1;164;64.0;105;70;1;1;0;0;1;0
+21849;22051;1;170;68.0;120;80;1;1;0;0;1;1
+21850;22708;1;159;67.0;140;90;1;1;0;0;1;1
+21851;16169;1;162;46.0;90;60;1;1;1;0;1;0
+21852;15133;1;167;100.0;120;80;1;1;0;0;1;1
+21853;18827;1;165;65.0;120;80;3;3;0;0;0;0
+21855;21191;1;170;68.0;130;90;1;1;0;0;1;0
+21856;17592;1;160;62.0;110;70;1;1;0;0;1;0
+21857;21952;1;160;109.0;110;80;1;2;0;0;0;0
+21858;15269;1;170;75.0;120;80;1;1;0;0;1;0
+21859;22029;1;170;68.0;120;80;1;1;0;0;0;1
+21861;21737;1;165;76.0;150;90;1;1;0;0;1;1
+21862;20406;2;175;70.0;120;80;1;1;0;0;1;0
+21866;20547;1;154;77.0;120;80;1;1;0;0;0;0
+21867;16143;2;160;68.0;130;90;1;1;0;0;1;1
+21868;17393;2;176;62.0;100;80;1;1;1;1;0;0
+21869;18478;1;164;48.0;90;60;1;1;0;0;1;0
+21870;22103;1;152;93.0;140;100;1;1;0;0;1;1
+21871;16329;1;163;97.0;130;80;2;2;0;0;1;1
+21872;18304;2;167;59.0;120;80;1;1;1;1;1;0
+21875;21303;1;148;50.0;150;80;1;1;0;0;0;1
+21876;14716;1;158;53.0;100;70;1;1;0;0;1;0
+21877;20637;1;166;90.0;190;110;3;2;1;1;1;1
+21878;21127;2;157;57.0;120;80;3;1;0;0;0;0
+21879;23523;1;168;70.0;140;90;3;3;0;0;1;1
+21880;21177;2;185;95.0;120;80;1;1;0;0;0;0
+21884;15932;1;155;61.0;90;60;1;1;0;0;1;0
+21886;15925;2;165;58.0;120;80;1;1;1;0;1;0
+21887;21187;1;168;85.0;120;80;1;1;0;0;1;1
+21888;23098;2;170;82.0;120;80;3;1;0;0;1;1
+21890;19749;2;167;59.0;120;80;1;1;0;0;1;0
+21891;23277;2;154;85.0;130;80;1;1;0;0;1;1
+21892;19679;1;157;101.0;130;80;2;2;0;0;1;0
+21893;21774;1;170;78.0;130;80;1;1;0;0;1;1
+21894;20493;1;169;77.0;160;100;2;1;0;0;1;1
+21895;23460;1;146;120.0;130;80;2;1;0;0;1;0
+21897;20972;2;178;115.0;140;80;2;1;0;1;1;1
+21898;19734;1;159;78.0;120;80;1;1;0;0;1;0
+21900;19659;1;168;60.0;120;80;2;2;0;0;1;0
+21901;22669;2;170;72.0;120;80;1;1;0;1;0;0
+21902;22734;2;176;123.0;120;80;3;1;0;0;1;0
+21904;19557;1;148;52.0;130;90;1;1;0;0;0;1
+21905;19659;1;163;91.0;140;100;3;3;0;0;1;1
+21906;22707;1;160;60.0;160;100;1;1;0;0;1;1
+21907;21188;1;144;51.0;120;80;3;1;0;0;1;1
+21908;19895;1;169;70.0;120;80;3;3;0;0;1;1
+21909;19605;1;155;95.0;130;90;2;1;0;0;1;1
+21910;16603;2;177;71.0;130;80;1;1;1;0;1;0
+21911;19468;1;169;80.0;120;80;1;1;0;0;0;1
+21912;18938;2;165;74.0;140;90;1;1;0;0;1;1
+21913;17570;1;162;122.0;200;100;1;1;0;0;1;1
+21914;23399;1;156;68.0;140;90;1;1;0;0;1;1
+21915;20691;1;168;62.0;140;80;1;1;0;0;1;1
+21916;20949;2;171;75.0;160;100;1;1;1;0;1;1
+21917;17381;1;150;60.0;120;60;1;1;0;0;1;0
+21918;20329;1;159;69.0;120;80;1;1;0;0;1;0
+21919;18065;2;182;79.0;140;100;3;1;1;0;1;1
+21920;15259;1;175;60.0;110;70;1;1;0;0;0;0
+21921;17383;1;157;92.0;120;70;1;1;0;0;1;0
+21924;23377;1;170;96.0;142;80;3;3;0;0;1;1
+21926;17746;1;157;57.0;120;80;1;1;0;0;1;0
+21927;19631;2;178;105.0;150;90;2;1;0;0;1;0
+21929;19136;1;168;86.0;110;70;1;1;0;0;1;0
+21931;17517;1;157;60.0;120;80;1;1;0;0;0;0
+21932;17421;1;165;71.0;110;70;2;1;0;0;1;0
+21935;19715;1;159;79.0;120;80;1;1;0;0;1;0
+21938;16041;1;157;62.0;110;70;1;1;0;0;1;0
+21940;18068;2;161;66.0;110;70;1;1;0;0;1;0
+21942;17581;2;182;68.0;120;70;1;1;0;0;0;0
+21943;23362;1;155;104.0;160;80;3;1;0;0;1;0
+21945;19735;1;160;60.0;120;80;3;3;0;0;1;0
+21946;14597;2;164;60.0;120;80;1;1;0;0;1;0
+21947;15345;2;171;72.0;120;80;1;1;0;0;1;1
+21948;22660;2;174;72.0;130;90;1;1;0;0;1;1
+21950;19258;2;176;81.0;135;80;1;1;1;1;1;0
+21951;17438;1;161;79.0;110;80;1;1;0;0;1;0
+21952;18919;2;178;105.0;120;80;1;1;0;0;0;0
+21953;15151;2;171;74.0;140;90;1;1;0;0;1;1
+21954;15955;1;158;54.0;120;80;1;1;0;0;1;1
+21955;16712;2;175;85.0;120;80;2;1;0;0;1;1
+21956;21831;1;165;88.0;140;90;3;1;0;0;1;1
+21957;22606;1;150;73.0;120;80;1;1;0;0;1;1
+21958;17405;1;125;167.0;180;90;1;2;0;0;1;1
+21959;20566;1;160;58.0;150;100;1;1;0;0;0;1
+21961;21274;1;157;61.0;110;70;2;1;0;0;1;0
+21966;21081;2;174;65.0;150;80;1;1;1;0;0;1
+21967;15895;1;178;70.0;120;80;1;1;0;0;1;0
+21968;16069;1;162;79.0;110;59;2;2;0;0;0;0
+21971;15024;1;166;68.0;110;70;1;1;0;0;1;0
+21972;21061;1;151;80.0;202;109;3;2;0;0;1;1
+21973;15322;1;156;79.0;120;80;1;1;0;0;1;0
+21974;18913;1;163;64.0;120;80;1;1;0;0;1;0
+21975;16984;2;163;66.0;110;79;3;3;0;0;1;1
+21976;21132;1;165;69.0;120;80;1;1;0;0;1;0
+21977;16824;1;168;88.0;150;90;2;3;0;0;1;1
+21978;23220;2;169;79.0;110;60;1;1;0;0;0;1
+21980;15908;2;176;64.0;120;60;1;1;0;0;1;0
+21983;17573;2;182;73.0;120;80;1;1;0;0;1;0
+21984;20010;1;167;84.0;120;80;1;1;0;0;1;0
+21985;21086;2;170;81.0;130;90;2;1;0;0;1;1
+21986;20219;2;171;105.0;120;80;2;1;0;0;1;1
+21987;18110;1;163;58.0;110;70;1;1;0;0;1;0
+21988;18469;1;162;79.0;160;90;3;3;0;0;1;1
+21989;18186;2;164;62.0;110;80;1;1;0;0;0;0
+21990;19624;1;156;65.0;140;90;2;1;0;0;1;1
+21991;19492;2;165;80.0;130;80;3;1;1;1;0;1
+21992;19823;1;160;78.0;110;70;1;1;0;0;1;0
+21993;22079;1;157;58.0;130;90;1;2;0;0;0;0
+21995;22499;1;160;90.0;130;80;1;1;0;0;0;0
+21996;19723;1;151;52.0;120;80;1;1;0;0;0;1
+21997;21014;1;158;73.0;140;70;1;1;0;0;1;1
+21999;14693;1;166;65.0;120;80;1;1;0;0;0;0
+22000;18179;2;180;91.0;140;1000;2;1;0;0;1;1
+22002;21862;2;168;71.0;120;80;1;1;0;0;1;0
+22003;21273;1;159;79.0;120;80;3;1;0;1;1;1
+22004;21250;2;165;60.0;120;80;1;1;0;0;1;1
+22005;23366;1;161;112.0;160;90;1;1;0;0;0;1
+22006;19721;1;165;68.0;110;70;1;1;0;0;1;1
+22007;16008;1;161;71.0;120;70;1;1;0;0;1;0
+22010;20430;1;154;68.0;100;70;2;2;0;0;1;0
+22011;21694;2;178;80.0;150;90;1;1;0;0;1;0
+22012;16009;1;158;77.0;110;70;2;1;0;1;1;1
+22015;14496;1;176;91.0;120;80;1;1;0;0;1;0
+22016;17328;2;167;65.0;140;100;1;1;1;0;1;1
+22017;18404;1;175;69.0;120;80;1;1;0;0;0;0
+22018;18080;1;169;71.0;110;80;3;1;0;0;1;1
+22019;19708;2;175;79.0;110;80;1;1;0;0;1;1
+22020;15533;1;164;71.0;120;80;1;1;0;0;1;0
+22021;17031;1;157;67.0;120;80;1;1;0;0;1;1
+22022;20493;2;170;74.0;130;80;1;1;0;0;1;0
+22025;16091;2;166;75.0;120;80;1;1;1;0;1;0
+22027;14521;2;170;74.0;120;70;1;1;1;1;1;0
+22028;21057;2;160;79.0;160;90;1;1;0;0;1;0
+22029;18415;2;162;60.0;120;80;1;1;0;0;0;0
+22032;23300;1;160;60.0;150;100;1;1;0;0;1;1
+22033;23127;2;163;81.0;100;80;1;1;0;0;0;1
+22035;22143;1;158;81.0;120;80;3;1;0;0;1;1
+22036;16291;2;170;65.0;180;1100;1;1;0;0;1;1
+22037;21884;2;175;75.0;130;80;3;1;0;0;0;1
+22038;18359;2;178;80.0;120;80;1;1;1;0;1;0
+22040;21255;2;169;76.0;120;80;1;1;1;0;1;1
+22041;16986;1;166;92.0;140;80;1;1;0;0;0;1
+22043;19896;2;181;80.0;110;70;1;1;1;0;1;0
+22044;21788;1;152;77.0;130;80;2;2;0;0;0;0
+22045;18066;2;172;80.0;140;90;1;1;0;0;1;1
+22046;23425;2;165;53.0;130;80;1;1;1;0;1;0
+22050;23315;2;171;84.0;160;90;2;1;0;0;1;1
+22053;19246;2;175;78.0;110;70;1;1;0;0;0;1
+22056;16672;2;178;78.0;130;90;1;1;0;0;1;0
+22057;22136;1;169;72.0;140;80;3;3;0;0;1;1
+22058;21195;2;173;78.0;150;90;2;1;0;0;1;1
+22061;16289;2;171;78.0;120;70;1;1;0;0;0;0
+22063;18253;1;165;63.0;140;100;1;1;0;0;0;0
+22065;19064;1;162;79.0;140;90;2;1;0;0;1;0
+22066;21473;1;170;70.0;120;80;1;1;0;0;1;1
+22069;19702;2;173;86.0;130;90;1;1;0;0;1;0
+22071;21871;1;160;60.0;120;80;1;1;0;0;1;0
+22072;21739;1;160;88.0;140;90;3;1;0;0;0;1
+22073;17467;2;169;67.0;140;90;1;1;1;0;1;1
+22074;22690;2;162;85.0;160;100;1;1;0;0;1;1
+22075;21114;2;162;84.0;140;100;3;1;1;0;1;0
+22077;18395;1;162;89.0;130;100;3;3;0;0;1;1
+22078;18455;1;167;66.0;110;80;1;1;0;0;1;1
+22080;19010;2;159;60.0;120;80;1;1;0;0;1;0
+22081;19704;1;150;65.0;120;80;1;1;0;0;1;0
+22082;15351;1;160;65.0;100;60;1;1;0;0;1;0
+22083;21591;2;163;95.0;160;100;1;2;0;0;1;1
+22084;22726;1;165;69.0;120;80;1;1;0;0;1;0
+22085;22518;1;162;72.0;130;70;3;3;0;0;0;1
+22086;17723;2;175;57.0;120;80;1;1;1;0;1;0
+22087;20271;1;160;79.0;140;100;2;1;0;0;1;1
+22088;14652;1;182;70.0;120;80;1;1;0;0;0;0
+22089;19648;1;160;68.0;120;80;1;1;0;0;1;1
+22090;14601;1;153;60.0;120;80;1;1;0;0;1;0
+22091;22923;1;171;72.0;140;80;1;1;0;0;1;1
+22092;22696;2;159;90.0;140;90;3;3;0;0;1;1
+22093;19687;1;168;62.0;130;70;1;1;0;0;1;0
+22094;19629;1;160;88.0;180;90;2;1;0;0;1;1
+22095;19494;1;156;54.0;150;90;1;1;0;0;1;1
+22096;19729;1;146;71.0;130;80;1;3;0;0;1;0
+22097;15856;1;167;90.0;130;90;1;1;0;0;1;1
+22099;15894;1;156;73.0;110;70;1;1;0;0;0;0
+22100;17387;1;168;58.0;120;80;1;1;0;0;1;0
+22101;18140;1;151;70.0;150;1000;1;2;0;0;1;1
+22102;19212;2;180;82.0;140;80;3;1;1;1;1;0
+22103;21040;2;174;70.0;120;80;1;1;0;0;1;0
+22104;19676;1;158;85.0;120;80;1;1;0;0;1;1
+22106;20328;1;155;97.0;150;100;1;1;0;0;1;1
+22107;19183;1;156;97.0;110;80;1;1;0;0;1;0
+22109;20391;1;172;89.0;120;90;1;1;0;0;1;1
+22110;17945;2;170;80.0;160;100;1;1;0;0;1;1
+22113;22022;1;151;66.0;150;90;3;1;0;0;1;1
+22114;18119;1;160;90.0;150;80;1;1;1;1;1;1
+22115;19783;2;173;77.0;130;90;1;1;0;0;1;1
+22117;21217;2;170;74.0;140;90;1;1;0;0;1;0
+22118;19706;1;153;62.0;125;80;1;1;0;0;0;0
+22119;18122;2;174;82.0;120;80;1;1;1;1;1;0
+22120;19708;2;174;92.0;120;80;1;1;1;0;1;0
+22121;21895;1;165;67.0;120;80;1;1;0;0;1;1
+22122;17634;2;168;64.0;120;80;1;1;0;0;1;1
+22126;20291;1;159;68.0;120;80;1;1;0;0;1;0
+22127;21936;1;164;98.0;130;90;3;3;0;0;1;1
+22128;18360;2;166;73.0;150;1000;3;2;0;0;1;1
+22129;22444;2;164;65.0;150;1100;1;1;0;0;1;1
+22130;20390;1;162;54.0;120;80;1;1;0;0;1;1
+22131;23393;2;173;95.0;140;80;3;3;0;0;1;0
+22132;15216;1;165;74.0;120;70;1;1;0;0;1;0
+22133;21073;1;168;92.0;120;80;3;1;0;0;1;0
+22134;21743;2;184;99.0;140;90;1;1;0;0;1;1
+22135;23324;2;160;69.0;140;100;1;1;0;0;0;1
+22136;20480;1;174;86.0;120;80;1;1;0;0;0;0
+22137;21823;2;180;69.0;120;80;1;1;0;0;1;0
+22138;18210;1;148;66.0;130;80;2;1;0;0;1;0
+22139;19776;2;176;79.0;110;80;1;1;0;0;1;0
+22141;22013;2;165;77.0;140;100;1;1;0;0;1;1
+22142;17362;1;158;65.0;130;90;2;1;0;0;1;1
+22143;17523;1;156;57.0;110;70;2;1;0;0;1;0
+22145;21154;1;160;69.0;150;100;1;1;0;0;0;1
+22147;14756;1;168;69.0;120;80;1;1;0;0;1;0
+22149;18285;1;170;68.0;120;80;1;1;0;0;0;1
+22151;16571;1;172;73.0;120;80;1;2;0;0;1;0
+22152;18024;1;164;75.0;115;75;1;1;0;0;0;0
+22153;19023;2;180;100.0;120;80;1;2;0;0;0;1
+22157;20580;2;176;79.0;120;80;1;1;0;0;1;0
+22158;20328;1;170;67.0;145;85;1;1;0;0;1;0
+22162;21108;1;156;54.0;140;90;1;1;0;0;1;1
+22163;16297;2;168;68.0;110;70;1;1;0;0;1;0
+22164;15500;2;168;58.0;120;70;1;1;0;0;1;0
+22165;20278;1;154;63.0;150;90;1;2;0;0;1;0
+22166;21796;1;145;62.0;140;90;3;1;0;1;1;1
+22167;21906;2;176;68.0;160;100;1;1;1;1;1;1
+22168;23625;2;170;85.0;150;90;2;2;0;0;1;1
+22169;14508;2;172;70.0;110;80;1;1;1;1;1;0
+22170;19667;1;154;66.0;110;80;1;1;0;0;1;0
+22171;20205;2;185;95.0;120;80;1;1;0;0;1;1
+22172;18310;2;165;72.0;190;69;2;1;0;0;0;1
+22174;16913;1;166;72.0;100;70;1;1;0;0;1;0
+22177;18302;1;156;54.0;120;80;1;1;0;0;1;0
+22178;22212;1;156;75.0;120;70;1;1;0;0;1;0
+22179;20268;1;164;70.0;140;90;3;3;0;0;1;1
+22180;22418;1;152;65.0;95;170;1;1;0;1;1;1
+22182;19818;2;172;81.0;130;95;1;1;0;1;1;0
+22186;22866;1;166;64.0;120;80;1;1;0;0;0;1
+22189;18997;2;165;74.0;140;80;1;1;0;0;0;1
+22190;21139;1;149;83.0;140;90;3;1;0;0;1;1
+22191;18934;1;160;61.0;150;100;2;2;0;0;1;1
+22193;21938;1;164;52.0;140;90;1;1;0;0;1;1
+22194;19068;1;154;90.0;140;80;1;1;0;0;1;1
+22195;22660;2;180;78.0;120;80;1;1;0;0;1;0
+22196;19767;1;164;82.0;120;80;1;1;0;0;1;0
+22197;22777;1;158;68.0;130;80;1;1;0;0;1;0
+22198;17374;1;158;60.0;150;100;2;1;0;0;1;1
+22200;21729;1;157;63.0;120;80;3;3;0;0;1;1
+22202;18864;1;155;62.0;140;80;1;1;0;0;1;1
+22204;22506;2;165;70.0;120;80;1;1;0;0;0;0
+22206;14670;2;174;97.0;130;90;1;3;0;0;1;0
+22207;23356;2;179;63.0;110;80;2;2;1;1;1;0
+22208;22556;1;168;66.0;120;80;1;1;0;0;1;0
+22210;18881;1;168;85.0;120;80;1;1;0;0;1;0
+22211;18379;1;159;64.0;120;80;3;3;0;0;1;0
+22212;19686;1;160;91.0;159;100;1;1;0;0;1;1
+22215;21244;1;164;68.0;120;80;1;1;0;0;1;0
+22216;18866;1;165;84.0;120;80;1;2;0;0;0;1
+22217;18115;1;173;50.0;120;80;1;1;0;0;1;0
+22218;20379;2;168;60.0;120;80;2;2;0;0;0;0
+22220;16829;2;185;82.0;110;70;1;1;1;1;1;0
+22221;14632;1;167;82.0;120;80;1;1;0;1;1;0
+22222;18271;2;172;81.0;110;70;1;1;0;0;0;1
+22223;20348;1;165;70.0;120;80;1;1;0;0;0;0
+22224;21806;2;190;70.0;130;80;1;1;1;0;1;0
+22225;18053;1;170;110.0;120;80;1;1;0;1;1;0
+22226;15951;2;175;76.0;125;80;1;1;0;0;1;0
+22227;18365;1;153;54.0;150;100;2;1;0;0;1;1
+22228;22423;1;154;68.0;150;90;2;2;0;0;0;1
+22229;22764;1;167;58.0;120;80;1;1;0;0;0;1
+22230;21165;2;164;63.0;110;80;2;1;0;0;1;0
+22232;23314;1;150;60.0;140;80;3;3;0;0;0;1
+22236;16650;1;158;63.0;140;80;1;1;0;0;0;0
+22237;21825;1;158;62.0;120;80;1;1;0;0;0;1
+22238;15289;1;165;65.0;120;80;1;1;0;0;1;0
+22239;19658;1;158;88.0;120;80;1;3;0;0;0;1
+22240;14545;2;176;67.0;130;708;1;2;1;1;1;0
+22241;17444;1;167;79.0;120;80;1;1;0;0;0;0
+22243;17351;1;159;82.0;150;90;1;1;0;0;1;1
+22244;21316;2;178;71.0;120;80;1;1;0;1;1;0
+22245;21113;1;168;79.0;130;80;2;3;0;0;1;1
+22246;17330;1;170;58.0;110;70;1;1;0;0;1;0
+22247;20629;2;158;69.0;160;100;3;1;0;1;1;0
+22250;20410;1;150;61.0;120;80;1;1;0;0;1;1
+22253;17638;1;159;108.0;140;90;2;1;0;0;1;1
+22254;15079;1;161;67.0;140;80;1;1;0;0;1;1
+22256;16130;1;165;65.0;120;80;1;1;0;0;1;1
+22257;18176;2;168;64.0;120;80;1;1;0;0;0;1
+22258;18830;1;163;60.0;115;70;1;1;0;0;0;0
+22259;18285;1;170;100.0;165;1000;1;1;0;0;1;1
+22260;20405;1;158;96.0;160;90;1;1;0;0;1;1
+22261;20268;2;170;80.0;110;80;1;1;1;0;1;1
+22262;18904;1;156;45.0;90;60;1;2;0;0;1;0
+22263;23362;2;165;84.0;140;90;2;1;0;0;1;1
+22264;15240;1;170;58.0;150;90;1;1;0;0;1;1
+22266;16535;2;167;105.0;160;90;2;1;1;0;1;1
+22267;18868;2;175;76.0;150;100;1;1;1;0;1;1
+22269;21178;2;173;94.0;130;90;3;1;0;0;1;1
+22270;15942;1;164;103.0;150;1000;2;1;0;0;1;1
+22271;21262;1;158;87.0;160;90;1;1;0;0;1;1
+22272;19686;1;160;60.0;130;80;1;1;0;0;1;1
+22273;18794;2;172;110.0;120;80;2;2;1;0;0;1
+22274;21196;1;147;67.0;190;100;1;1;0;0;1;1
+22275;17351;1;154;89.0;120;80;3;3;0;0;1;1
+22276;18997;1;160;65.0;130;80;1;1;0;0;1;0
+22279;15567;2;170;75.0;120;80;1;1;0;0;1;0
+22280;18898;1;165;78.0;120;80;1;1;0;0;0;0
+22281;21999;2;170;70.0;130;80;1;1;0;0;1;0
+22282;19594;1;162;89.0;120;80;1;1;0;0;0;0
+22283;22605;1;154;73.0;130;80;3;2;0;0;1;1
+22285;19879;1;162;58.0;120;80;1;1;0;0;0;0
+22286;17966;1;167;75.0;160;70;1;1;0;0;1;1
+22287;14450;2;176;76.0;140;90;2;1;1;1;1;1
+22288;18338;1;154;65.0;140;90;1;2;0;0;1;0
+22289;19846;2;174;75.0;150;90;1;1;0;1;1;1
+22290;23382;1;165;63.0;100;70;1;1;0;0;1;1
+22291;23182;2;165;68.0;120;80;1;1;0;0;0;1
+22292;20503;2;178;86.0;120;80;1;1;0;0;0;1
+22293;18091;1;162;62.0;110;70;1;1;0;0;0;1
+22294;18350;1;158;72.0;160;90;1;1;0;0;1;1
+22295;21210;1;168;69.0;120;80;1;1;0;0;1;0
+22296;18839;1;163;67.0;140;80;3;3;0;0;1;0
+22299;18844;1;163;65.0;100;60;1;1;0;0;1;0
+22300;21024;1;151;81.0;130;80;1;1;0;0;1;1
+22301;16881;1;162;67.0;110;60;2;1;0;0;1;0
+22302;20404;1;159;68.0;120;80;1;1;0;0;1;0
+22303;19130;1;153;74.0;130;80;1;1;0;0;1;0
+22304;21780;1;150;84.0;130;90;1;1;0;0;1;1
+22306;23542;2;162;80.0;120;80;1;1;0;0;0;1
+22307;20716;1;172;73.0;120;80;1;1;0;0;0;0
+22309;17523;1;160;59.0;115;80;1;1;0;0;1;0
+22310;14338;1;160;62.0;110;70;1;1;0;1;1;0
+22311;21235;1;139;51.0;120;60;1;1;0;0;1;1
+22313;18182;1;160;55.0;106;63;2;1;0;1;1;0
+22316;19103;2;168;77.0;130;90;1;1;0;0;0;1
+22318;22054;1;169;66.0;120;80;1;1;0;0;0;1
+22320;20269;2;170;80.0;140;90;1;1;1;0;1;1
+22321;21873;1;149;93.0;140;110;3;1;0;0;1;1
+22325;19890;1;169;62.0;120;80;1;1;0;0;1;1
+22326;16796;2;178;98.0;130;80;1;1;1;0;1;0
+22328;21825;2;166;90.0;130;80;1;2;0;0;1;0
+22329;19832;1;169;75.0;120;80;1;1;0;0;1;0
+22331;16008;2;165;100.0;140;90;1;1;1;0;0;0
+22333;19218;1;168;59.0;140;80;1;1;0;0;1;1
+22334;22646;1;150;70.0;140;80;1;1;0;0;1;1
+22335;20320;1;156;77.0;120;80;1;1;0;0;1;0
+22336;21956;1;155;69.0;130;90;2;1;0;0;1;1
+22337;17460;2;170;68.0;130;80;1;1;0;0;1;1
+22339;19132;2;175;70.0;130;90;1;1;0;0;1;1
+22340;21198;2;172;70.0;120;80;1;2;0;0;0;1
+22341;20400;2;176;71.0;120;80;1;1;0;0;1;0
+22342;19485;1;170;81.0;110;70;1;1;0;0;1;0
+22343;19957;1;154;50.0;90;60;1;1;0;0;1;0
+22344;23617;1;176;89.0;120;80;1;1;0;0;1;1
+22346;23364;1;157;60.0;120;80;3;1;0;0;1;1
+22347;14565;2;172;76.0;120;80;1;1;1;0;1;0
+22349;16123;1;157;70.0;100;60;1;1;0;0;1;1
+22350;18939;2;176;83.0;120;70;1;1;0;0;1;0
+22352;18284;2;176;90.0;140;100;2;1;0;0;1;1
+22354;18361;1;160;93.0;140;90;3;3;0;0;1;1
+22355;23443;2;175;93.0;130;80;3;1;0;0;1;1
+22357;20349;1;152;110.0;120;70;1;1;0;0;1;0
+22358;21894;2;160;64.0;120;80;1;1;0;0;1;1
+22359;15186;1;164;85.0;140;90;2;1;0;0;1;1
+22360;20180;1;152;95.0;140;100;2;1;0;0;0;1
+22361;17709;2;185;95.0;120;80;1;1;0;0;1;0
+22362;17352;1;167;98.0;150;90;1;1;0;0;0;1
+22364;16890;1;167;94.0;120;80;1;1;0;0;0;0
+22366;22699;1;166;76.0;120;80;3;3;0;0;1;1
+22369;21272;1;159;63.0;120;80;1;1;0;0;0;1
+22372;21310;2;160;58.0;110;80;1;1;0;0;1;0
+22373;20629;1;162;62.0;120;80;1;1;0;0;0;1
+22374;18567;1;148;62.0;120;80;1;1;0;0;1;0
+22375;20030;1;165;79.0;120;80;1;1;0;0;1;0
+22376;17649;1;159;69.0;110;80;1;1;0;0;1;0
+22378;18258;1;169;82.0;130;80;3;1;0;0;1;1
+22380;17559;1;168;57.0;140;100;1;1;0;0;1;1
+22381;16614;1;164;63.0;160;80;1;1;0;0;1;0
+22383;16858;1;157;65.0;120;80;1;1;0;0;1;0
+22384;19476;1;158;87.0;125;65;1;1;0;0;0;0
+22385;14706;2;187;85.0;120;70;1;1;0;0;1;0
+22386;21770;1;146;60.0;120;80;1;2;0;1;1;0
+22387;14799;2;171;72.0;120;90;1;1;0;0;1;0
+22388;15932;1;162;70.0;110;70;1;1;0;0;1;0
+22390;16572;2;172;90.0;120;80;1;2;1;0;1;0
+22391;15968;1;169;65.0;120;70;1;1;0;0;1;0
+22392;19870;1;170;75.0;130;90;3;1;0;0;1;1
+22394;18949;1;151;70.0;160;90;3;1;0;1;1;1
+22396;18814;1;157;104.0;130;90;1;1;0;0;1;0
+22397;18055;2;170;66.0;140;80;1;1;0;0;1;1
+22398;21825;1;163;74.0;160;90;2;2;0;0;1;1
+22399;20464;1;161;61.0;90;60;2;1;0;0;1;0
+22402;18381;1;168;62.0;120;80;1;1;0;0;0;1
+22404;20879;2;160;85.0;150;90;2;1;0;0;1;1
+22405;18268;1;163;67.0;110;80;1;1;0;0;1;0
+22407;18411;2;150;72.0;120;80;1;1;1;0;0;0
+22408;23531;2;160;60.0;100;80;1;3;1;0;1;0
+22409;23286;1;159;73.0;130;90;1;1;0;0;1;1
+22410;22081;2;162;55.0;130;90;1;1;0;0;0;1
+22411;23271;1;156;76.0;120;80;1;1;0;0;1;0
+22412;15145;2;171;96.0;130;80;2;1;0;0;1;1
+22413;19604;2;182;156.0;160;100;1;1;0;0;1;1
+22414;18263;1;170;70.0;120;80;1;1;0;0;1;0
+22415;19601;1;154;56.0;120;80;2;2;0;0;0;0
+22416;23241;1;154;60.0;120;80;1;1;1;0;1;1
+22418;21820;1;162;87.0;120;80;1;1;0;0;1;1
+22419;20473;1;167;70.0;120;80;1;1;0;0;1;0
+22420;17392;1;172;78.0;120;80;1;1;0;0;1;0
+22422;23337;1;166;82.0;120;80;1;1;0;0;1;1
+22423;20561;1;158;105.0;130;90;1;1;0;0;1;0
+22424;20361;1;161;55.0;140;90;1;1;0;0;1;1
+22428;22454;1;167;90.0;110;80;3;3;0;0;1;1
+22430;20745;1;153;90.0;120;80;1;1;0;0;1;1
+22431;21891;1;155;58.0;140;90;3;3;0;0;1;1
+22433;21294;1;165;72.0;150;90;2;3;0;0;0;1
+22434;23254;2;168;90.0;14;110;2;1;0;1;1;1
+22435;14656;1;185;85.0;120;80;1;1;0;0;1;0
+22436;23133;1;158;79.0;140;80;1;1;0;0;1;1
+22438;16163;1;160;70.0;140;100;3;3;0;0;0;1
+22439;18416;1;160;65.0;120;80;1;1;0;0;0;0
+22443;21882;1;155;71.0;130;90;1;1;0;0;0;1
+22444;21254;1;168;71.0;130;80;3;3;0;0;1;1
+22446;21189;1;164;79.0;120;80;2;1;0;0;0;1
+22447;23370;1;161;80.0;110;80;1;1;0;0;1;1
+22448;15265;1;165;65.0;150;90;2;1;0;0;1;1
+22449;23387;2;175;75.0;120;80;1;1;0;0;0;0
+22450;19616;2;178;112.0;170;110;1;2;0;0;1;1
+22451;19563;2;173;89.0;150;90;2;1;0;1;1;1
+22452;23386;2;175;80.0;120;80;1;1;0;0;1;1
+22453;16826;2;172;68.0;120;80;1;1;1;1;1;0
+22454;19602;2;167;75.0;120;80;1;1;0;0;1;0
+22455;16890;2;178;109.0;120;80;1;1;0;0;1;0
+22456;21214;2;168;68.0;110;70;1;1;0;0;1;0
+22457;19721;2;168;85.0;120;80;2;2;0;0;0;1
+22458;14494;1;161;81.0;160;110;2;2;0;0;1;1
+22461;14671;1;152;61.0;130;90;1;1;0;0;1;0
+22463;20439;1;153;75.0;125;85;1;1;0;0;1;1
+22464;17594;2;165;82.0;125;90;1;1;0;0;0;0
+22466;16007;1;165;58.0;110;60;1;1;0;0;0;0
+22467;21076;1;156;68.0;120;80;1;1;0;0;1;1
+22468;18116;1;166;100.0;90;70;2;2;0;0;0;0
+22469;19096;1;160;50.0;110;70;1;1;0;0;1;0
+22470;23341;1;169;72.0;120;80;1;1;0;0;1;1
+22471;23167;1;159;56.0;120;80;1;1;0;0;1;1
+22472;18804;2;180;60.0;150;100;1;1;1;1;1;1
+22475;14315;1;157;72.0;120;80;1;1;0;0;1;0
+22476;21816;1;171;98.0;120;80;3;1;0;0;1;1
+22477;19626;2;170;65.0;120;80;1;1;0;0;1;0
+22479;20159;2;175;75.0;120;80;1;3;0;0;1;1
+22480;19517;1;144;65.0;120;80;1;1;0;0;1;1
+22481;17581;1;154;59.0;90;60;1;1;0;0;1;0
+22482;18736;1;174;72.0;140;90;1;1;0;0;0;0
+22484;23577;1;150;82.0;150;70;1;1;0;0;1;1
+22485;16637;2;165;58.0;120;80;1;1;1;1;1;0
+22488;14701;1;171;95.0;150;90;1;1;0;0;1;1
+22489;18337;1;168;71.0;110;70;1;1;0;0;0;0
+22490;19070;1;167;57.0;110;80;1;1;0;0;1;1
+22491;21224;2;180;82.0;120;70;1;1;0;0;1;0
+22492;14647;1;160;74.0;120;80;1;2;0;0;1;0
+22493;16001;2;172;68.0;148;80;1;1;0;0;0;0
+22494;22563;1;170;87.0;135;80;2;2;0;0;1;0
+22496;18860;2;165;53.0;160;100;1;1;0;0;0;1
+22498;15185;1;160;76.0;135;80;1;1;0;0;1;1
+22499;16633;1;175;75.0;140;90;1;1;0;0;0;1
+22500;21142;1;163;62.0;120;80;1;1;0;0;1;1
+22501;18257;1;165;67.0;120;80;1;1;0;0;1;0
+22502;20388;2;176;92.0;170;90;2;2;0;0;1;1
+22507;19135;2;168;92.0;120;80;1;1;0;0;1;0
+22508;22830;1;165;69.0;110;70;1;1;0;0;1;1
+22509;19180;1;164;81.0;120;80;3;3;0;0;1;1
+22511;18277;1;162;66.0;120;80;1;1;0;0;1;0
+22512;14729;2;163;63.0;140;90;1;1;0;0;1;1
+22513;23400;1;158;83.0;110;70;1;2;0;0;1;0
+22514;19187;1;165;69.0;120;79;1;1;0;0;1;0
+22515;20417;1;166;102.0;120;80;1;1;0;0;1;0
+22516;17309;1;167;82.0;140;1000;1;1;1;0;1;1
+22517;18746;1;164;64.0;120;80;1;1;0;0;1;0
+22518;21946;1;149;80.0;130;80;3;3;0;0;0;1
+22519;19878;1;164;44.0;110;70;1;1;0;0;1;0
+22520;22736;1;165;78.0;130;79;1;1;0;0;0;0
+22521;18784;2;172;101.0;150;90;1;1;0;0;1;1
+22524;19814;2;170;80.0;140;90;1;1;0;0;1;1
+22525;23153;2;168;75.0;120;80;1;1;0;0;1;1
+22526;18267;1;169;62.0;120;80;1;1;0;0;1;0
+22527;17432;1;163;54.0;110;70;1;1;0;0;1;0
+22529;20551;2;170;92.0;120;80;1;1;0;0;1;0
+22530;19684;1;154;69.0;150;90;2;2;0;0;1;0
+22531;20621;1;154;58.0;150;90;1;1;0;0;0;0
+22532;15281;1;169;68.0;120;80;1;1;0;0;1;0
+22533;20388;2;171;61.0;100;70;1;1;0;0;1;0
+22534;22369;2;170;67.0;150;100;3;1;0;0;1;1
+22535;21454;2;170;75.0;120;80;2;1;0;0;0;1
+22538;18355;1;158;70.0;150;90;1;1;0;0;1;1
+22539;17423;1;160;64.0;120;80;1;1;0;0;1;1
+22540;16850;1;158;72.0;130;90;1;1;0;0;1;1
+22543;23249;1;158;62.0;120;80;3;1;0;0;1;1
+22544;22707;2;162;75.0;130;80;2;1;0;0;1;1
+22546;16239;1;169;62.0;140;90;1;1;0;0;1;0
+22547;20373;1;156;64.0;110;80;1;1;0;0;1;0
+22548;23388;2;164;58.0;120;80;1;1;0;0;0;0
+22549;19917;1;159;102.0;210;130;1;1;0;0;1;0
+22551;19574;1;164;66.0;120;80;1;1;0;0;1;1
+22552;17425;1;170;81.0;110;70;1;1;0;0;1;0
+22553;14626;1;165;67.0;120;80;1;1;1;1;1;0
+22554;23128;1;176;81.0;120;80;1;1;0;0;1;1
+22555;21140;2;177;94.0;120;80;3;3;1;1;1;1
+22556;15114;2;177;64.0;120;80;1;1;0;0;1;0
+22559;19595;1;165;72.0;120;80;3;1;0;0;1;0
+22560;18498;2;184;106.0;120;80;1;1;0;0;1;0
+22561;18129;1;163;79.0;150;90;3;3;0;0;1;1
+22562;15074;1;157;54.0;110;70;1;1;0;0;1;0
+22563;19893;1;169;115.0;190;75;1;1;0;0;0;1
+22564;23304;1;143;68.0;120;80;3;3;0;0;1;1
+22565;20472;2;168;75.0;140;90;1;1;0;0;0;1
+22566;21991;1;164;70.0;100;60;1;3;0;0;1;0
+22570;19591;1;166;66.0;120;80;1;1;0;0;1;0
+22571;21657;1;152;80.0;130;90;1;1;0;0;1;0
+22572;20510;2;159;65.0;120;80;1;1;0;0;1;0
+22574;23503;1;154;60.0;130;90;1;1;0;0;1;1
+22575;22824;1;165;80.0;140;80;1;1;0;0;0;1
+22576;20419;2;172;95.0;140;90;1;1;0;0;1;1
+22577;18961;1;164;58.0;110;70;1;2;0;0;0;0
+22579;17704;2;165;70.0;120;80;1;1;1;0;1;1
+22580;21942;1;160;89.0;120;80;1;1;0;0;1;1
+22582;18094;1;168;68.0;150;90;1;1;0;0;1;1
+22584;19628;1;150;75.0;160;90;1;1;0;0;1;1
+22585;20666;2;164;82.0;140;90;1;1;0;0;1;1
+22586;19900;1;160;72.0;110;70;1;1;0;0;1;1
+22587;18959;1;163;65.0;120;80;1;1;0;0;1;0
+22588;22727;1;170;72.0;160;100;1;1;0;0;1;1
+22590;19765;1;152;61.0;100;70;1;1;0;0;1;1
+22591;19481;1;145;50.0;140;90;1;1;0;0;1;1
+22592;18804;1;168;54.0;120;80;1;1;0;0;0;0
+22596;21720;1;158;85.0;170;100;3;2;0;0;0;1
+22599;19706;1;164;122.0;160;100;3;1;0;0;0;1
+22600;19464;1;157;80.0;140;80;3;1;0;0;1;1
+22601;15940;1;165;65.0;120;80;1;1;0;0;0;0
+22603;21297;2;166;75.0;140;90;2;2;0;0;0;1
+22604;16168;1;161;55.0;120;70;1;1;0;0;1;0
+22605;21264;1;175;68.0;120;80;1;1;0;0;1;1
+22606;23503;2;168;59.0;130;80;3;3;0;0;1;1
+22607;21843;1;167;79.0;160;90;2;1;0;0;0;1
+22608;21801;2;151;54.0;110;70;1;1;0;0;1;0
+22609;14457;2;176;70.0;110;70;1;1;1;0;1;0
+22610;19222;1;167;80.0;120;80;1;3;0;0;1;0
+22612;21099;2;168;84.0;120;80;1;1;1;1;1;0
+22613;21890;1;163;54.0;130;90;1;1;0;0;1;0
+22616;21171;1;152;70.0;160;110;1;1;0;0;1;0
+22617;18168;1;153;59.0;120;80;1;1;0;0;1;0
+22620;21381;1;165;78.0;140;100;1;1;0;0;1;1
+22621;20317;1;163;74.0;110;70;1;1;0;0;1;0
+22622;20323;1;163;84.0;120;80;1;1;0;0;1;0
+22623;20612;1;159;56.0;140;90;2;1;0;0;1;1
+22624;18163;1;159;77.0;150;100;1;1;0;0;1;1
+22625;21784;1;155;104.0;140;80;3;1;0;0;1;1
+22627;22479;2;167;86.0;160;90;1;2;0;0;0;1
+22629;14493;1;168;77.0;90;50;2;1;0;0;1;0
+22630;20480;1;175;77.0;140;90;1;1;0;1;1;1
+22631;17329;1;162;75.0;140;90;3;3;0;0;1;1
+22632;16208;2;172;70.0;120;80;1;1;0;0;0;0
+22633;20190;1;160;70.0;140;100;3;1;0;1;1;1
+22636;15119;2;177;74.0;120;80;1;1;0;0;1;0
+22637;19505;1;159;68.0;140;90;1;1;0;0;0;1
+22638;20160;1;160;80.0;110;70;1;1;0;0;0;0
+22640;16769;1;167;63.0;120;80;1;1;0;0;0;0
+22641;17584;1;168;85.0;140;90;1;1;0;0;1;0
+22642;20326;1;158;75.0;150;80;2;1;0;0;1;1
+22643;22910;1;163;56.0;120;90;1;1;0;0;1;0
+22644;23457;1;160;88.0;120;80;2;1;0;0;1;0
+22645;19681;1;159;72.0;120;90;1;1;0;0;1;0
+22646;20985;1;157;78.0;130;80;1;1;0;0;1;0
+22648;19757;1;160;87.0;180;1100;1;1;0;0;1;1
+22649;23314;2;154;90.0;150;70;1;1;0;0;1;1
+22650;16088;1;175;80.0;120;80;1;1;0;0;1;0
+22652;19602;1;156;68.0;120;70;1;1;0;0;1;0
+22655;23288;1;164;72.0;150;90;3;3;1;0;1;1
+22656;16064;1;175;60.0;120;80;1;1;0;0;1;0
+22657;21779;1;165;65.0;120;80;1;1;0;0;1;1
+22658;22636;2;175;65.0;120;70;1;1;0;0;1;0
+22659;19826;1;164;62.0;110;70;2;1;0;0;1;0
+22661;23419;1;165;65.0;120;80;1;1;0;0;0;1
+22665;22606;1;158;63.0;130;90;1;1;0;0;0;0
+22666;18470;1;161;66.0;130;90;1;2;0;0;1;0
+22667;18374;1;162;120.0;120;80;3;2;1;0;0;1
+22668;21422;1;160;60.0;120;80;3;3;0;0;1;1
+22669;20417;1;169;85.0;150;100;1;1;0;0;1;1
+22670;19689;1;150;81.0;151;89;3;1;0;0;1;1
+22671;14812;1;155;51.0;100;60;1;1;0;0;1;0
+22672;19932;2;156;56.0;120;80;1;1;0;0;0;1
+22673;15257;2;174;80.0;120;80;1;1;0;0;1;1
+22674;21934;2;167;60.0;120;80;1;1;0;0;1;0
+22675;15921;1;162;65.0;110;70;1;1;0;0;1;0
+22676;20527;1;174;78.0;140;90;1;1;0;0;0;1
+22677;21710;1;185;90.0;120;80;1;1;0;0;1;0
+22680;19970;1;165;75.0;120;80;1;1;0;0;1;0
+22683;18314;1;157;70.0;140;100;1;1;0;0;1;1
+22684;16701;2;178;64.0;120;70;1;1;0;0;1;1
+22687;18855;1;162;114.0;150;100;1;1;0;0;0;1
+22688;23406;2;167;83.0;140;90;1;1;0;0;1;0
+22689;20332;1;165;68.0;110;70;1;1;0;0;1;0
+22690;21870;1;165;67.0;120;80;2;1;0;0;0;1
+22693;20603;1;176;85.0;130;80;1;1;0;0;1;0
+22694;23554;2;154;65.0;130;70;1;1;0;0;1;1
+22695;15462;2;164;68.0;110;70;1;1;0;0;1;0
+22696;16799;2;168;100.0;150;80;1;1;1;1;1;0
+22697;23095;1;162;87.0;150;90;2;1;0;0;1;1
+22700;21378;2;175;70.0;120;80;1;1;0;0;0;0
+22701;18906;1;154;62.0;110;70;2;1;0;0;0;0
+22702;20580;1;170;89.0;130;80;1;1;0;0;1;0
+22704;23590;1;159;85.0;120;80;1;1;0;0;0;0
+22705;22582;1;165;66.0;145;90;1;1;0;0;1;1
+22706;21946;1;157;108.0;130;80;2;1;0;0;1;1
+22707;20907;2;166;66.0;120;80;1;1;0;0;0;1
+22708;15347;1;162;82.0;100;60;1;1;0;0;1;0
+22710;21321;2;170;68.0;120;80;1;1;0;0;0;1
+22711;16677;1;166;95.0;160;100;2;1;0;0;1;1
+22714;20909;1;158;78.0;130;80;1;1;0;0;0;1
+22715;14453;1;168;69.0;110;70;1;1;0;0;1;0
+22716;17286;1;155;80.0;120;80;1;1;0;0;1;0
+22717;17021;1;160;59.0;110;70;1;1;0;0;1;0
+22718;19029;1;165;68.0;120;80;1;1;0;0;1;0
+22719;23489;2;165;80.0;120;80;1;2;0;0;1;1
+22720;16095;1;156;79.0;90;60;1;1;0;0;1;0
+22721;20945;1;157;69.0;110;70;2;1;0;0;1;0
+22723;23244;1;163;72.0;130;80;1;1;0;0;1;0
+22724;20412;1;160;86.0;160;90;1;1;0;0;0;1
+22726;15376;2;175;89.0;120;80;1;1;0;0;1;0
+22727;15200;1;165;67.0;110;70;1;1;0;0;1;0
+22728;18037;1;154;68.0;120;80;1;1;0;0;1;0
+22729;19843;1;165;71.0;100;70;1;1;0;0;0;0
+22731;15830;2;169;70.0;120;80;1;1;0;0;1;0
+22732;22623;2;171;69.0;140;1000;1;1;0;0;1;1
+22735;20437;1;160;57.0;160;90;1;1;0;0;1;1
+22737;20443;1;165;82.0;120;80;1;2;0;0;1;1
+22738;19532;2;169;78.0;115;75;1;1;0;0;1;1
+22739;21296;2;172;62.0;130;90;1;1;0;0;1;1
+22741;16985;1;165;72.0;120;80;1;1;0;0;1;0
+22742;23479;1;169;65.0;120;80;1;1;0;0;1;1
+22743;14829;2;169;79.0;120;80;1;1;0;0;1;0
+22745;21928;2;174;112.0;130;90;1;2;1;1;1;1
+22746;20868;1;163;81.0;110;80;1;1;0;0;1;0
+22747;19657;1;162;64.0;120;80;1;2;0;0;1;0
+22748;22503;1;156;70.0;130;80;1;1;0;0;0;0
+22749;21865;1;160;58.0;110;80;1;1;0;0;0;0
+22750;17598;2;169;71.0;120;80;1;1;0;0;1;0
+22751;15436;1;155;77.0;90;60;1;1;0;0;1;0
+22753;19782;2;165;68.0;120;80;1;1;0;0;1;0
+22754;15185;2;166;73.0;110;70;1;1;0;0;1;0
+22755;16011;1;164;96.0;130;80;1;3;0;0;1;0
+22759;14610;1;160;63.0;90;70;1;1;0;0;1;0
+22760;20957;1;168;92.0;150;90;1;1;0;0;0;1
+22761;18808;1;160;100.0;110;70;1;1;1;0;1;0
+22763;18849;1;168;59.0;110;90;1;1;0;0;1;0
+22764;21907;1;162;94.0;140;90;3;3;0;0;1;1
+22768;19844;1;158;69.0;140;90;1;1;0;0;1;1
+22769;23293;1;155;78.0;140;90;2;1;0;0;0;1
+22770;17729;1;168;70.0;110;70;1;1;0;0;1;1
+22771;16133;1;156;56.0;120;80;1;1;0;0;1;0
+22774;20370;1;170;94.0;140;90;2;2;0;0;1;1
+22775;18980;2;176;85.0;120;80;1;1;1;1;1;1
+22777;19078;1;159;118.0;140;80;1;1;0;0;1;1
+22778;19097;2;170;85.0;140;90;1;1;0;0;0;1
+22779;19936;1;154;63.0;125;80;1;1;0;0;1;0
+22780;18105;1;169;73.0;130;80;1;1;0;0;1;1
+22781;21879;2;169;69.0;120;80;3;3;0;0;0;1
+22782;23401;1;154;72.0;130;80;3;1;0;0;0;1
+22783;18209;2;166;72.0;130;80;1;1;1;0;0;0
+22784;23262;1;154;84.0;120;80;1;1;0;0;1;0
+22785;14676;1;172;75.0;130;90;1;2;0;0;1;0
+22786;21251;1;161;64.0;120;80;1;1;0;0;1;0
+22787;18793;1;156;66.0;160;1100;1;1;0;0;1;0
+22789;23265;2;165;60.0;120;80;1;1;0;0;1;1
+22792;21786;2;170;77.0;130;90;2;1;0;0;1;1
+22793;18247;1;165;65.0;120;80;1;1;0;0;1;0
+22794;20493;1;167;78.0;120;80;2;1;0;0;1;1
+22797;14416;1;167;76.0;110;70;1;1;0;0;0;1
+22798;19035;1;159;89.0;120;80;1;1;0;0;1;0
+22800;20904;1;164;69.0;140;100;1;1;0;0;1;1
+22801;14599;2;168;75.0;110;70;1;1;0;0;1;0
+22802;22131;1;155;93.0;150;100;2;3;0;0;1;1
+22803;21184;1;170;90.0;140;90;1;1;0;0;1;1
+22806;18285;1;154;84.0;140;90;1;1;0;0;1;1
+22807;21164;1;149;80.0;140;100;2;1;0;0;1;1
+22809;16673;1;163;56.0;120;80;1;1;1;0;1;0
+22810;21221;1;155;91.0;140;90;1;3;0;0;1;1
+22811;17578;1;165;72.0;160;80;3;3;0;0;0;1
+22812;16519;1;158;98.0;110;90;3;2;0;0;1;1
+22813;22084;1;152;75.0;130;90;3;1;0;0;1;1
+22814;21823;1;165;100.0;120;80;1;1;0;0;1;0
+22818;18444;2;166;83.0;120;80;1;1;0;0;1;0
+22819;16769;2;175;75.0;140;90;2;1;1;1;1;1
+22821;18800;1;158;86.0;120;70;1;1;0;0;1;1
+22822;20995;1;164;62.0;100;60;1;1;0;0;1;0
+22824;16611;2;177;63.0;120;80;1;1;0;0;1;1
+22825;18314;1;170;72.0;120;80;1;1;0;0;1;0
+22826;15330;1;154;68.0;140;90;1;1;0;0;1;1
+22827;16539;1;158;80.0;120;80;1;1;0;0;1;1
+22828;17626;1;160;58.0;110;70;1;1;0;0;1;0
+22829;22150;1;160;85.0;140;90;2;1;0;0;1;0
+22830;15273;2;160;60.0;120;80;1;1;0;0;1;0
+22831;19763;1;166;64.0;140;100;1;1;0;0;1;1
+22832;14508;2;179;70.0;120;8500;1;1;0;0;1;0
+22833;19689;2;178;78.0;130;80;1;1;0;1;1;0
+22834;16710;1;165;71.0;140;90;1;1;0;0;1;1
+22835;16238;1;150;53.0;110;70;1;1;0;0;1;0
+22836;20303;1;151;76.0;120;80;2;1;0;0;1;1
+22837;20584;1;158;70.0;120;80;1;1;0;0;1;0
+22839;18434;1;173;72.0;140;90;1;1;0;0;1;0
+22840;21054;1;152;65.0;180;90;1;1;0;0;1;1
+22841;22466;1;156;60.0;110;70;1;1;0;0;1;0
+22842;19824;1;164;65.0;100;70;1;1;0;0;0;0
+22843;22690;2;164;64.0;120;60;1;1;0;0;0;1
+22845;18304;1;156;75.0;140;90;2;1;0;0;1;1
+22847;21769;1;156;76.0;150;90;1;1;0;0;1;0
+22848;15971;2;162;80.0;120;80;1;1;0;0;1;0
+22850;14535;1;165;64.0;120;60;3;3;0;0;1;1
+22852;19949;1;165;74.0;120;80;1;1;0;0;1;1
+22854;16215;2;174;72.0;120;80;1;1;0;0;1;0
+22855;21337;2;172;100.0;150;80;1;1;0;0;0;1
+22860;23229;1;155;80.0;150;100;1;1;0;0;1;1
+22862;15901;2;179;81.0;130;80;3;1;0;0;1;0
+22863;21819;2;175;56.0;120;80;1;1;0;0;1;1
+22864;16957;1;189;78.0;120;70;1;1;0;0;1;1
+22865;23498;2;158;68.0;130;90;1;1;0;0;0;1
+22867;16008;1;171;82.0;110;80;1;1;0;0;1;0
+22868;16026;2;178;75.0;90;60;1;1;1;0;1;0
+22870;18132;1;165;76.0;110;80;2;2;0;0;0;0
+22872;15279;1;160;89.0;140;90;1;1;0;0;1;1
+22873;20522;1;159;58.0;160;1100;1;1;0;0;1;0
+22874;16560;1;167;70.0;110;80;2;1;0;0;1;0
+22875;23329;2;160;63.0;120;80;1;1;0;0;1;0
+22876;21249;1;141;106.0;180;100;1;1;0;0;0;1
+22881;22108;2;161;90.0;-115;70;1;1;0;0;1;0
+22882;17763;2;167;92.0;140;90;1;2;0;0;0;1
+22883;14876;1;169;63.0;120;80;1;1;0;0;1;0
+22884;18140;1;156;88.0;150;90;3;1;0;0;1;0
+22885;22036;1;154;70.0;110;70;1;1;0;0;1;0
+22886;18266;1;154;112.0;140;80;1;1;0;0;1;1
+22887;22532;2;165;65.0;120;80;1;1;0;0;1;0
+22889;23332;2;173;74.0;110;80;1;1;0;0;1;0
+22890;18843;1;170;61.0;120;80;1;1;0;0;1;0
+22891;21192;2;172;68.0;110;70;1;1;0;0;0;0
+22892;14575;1;146;79.0;150;90;1;2;0;0;1;1
+22893;19029;1;159;69.0;120;80;2;2;0;0;1;0
+22895;18192;1;158;95.0;130;80;2;1;0;0;0;1
+22896;22806;2;176;79.0;130;80;1;1;0;0;1;0
+22898;20711;1;164;66.0;140;80;1;1;0;0;1;1
+22899;23371;2;170;82.0;150;90;1;1;0;0;1;1
+22900;18217;1;162;82.0;110;80;1;1;0;0;1;0
+22901;16200;1;182;79.0;120;80;1;1;0;0;1;0
+22902;21276;2;177;85.0;120;80;2;2;0;1;0;0
+22903;18754;2;157;59.0;120;80;1;1;0;0;1;0
+22905;18905;2;160;79.0;120;80;1;1;0;0;1;0
+22906;19037;1;164;66.0;120;80;1;1;0;0;1;0
+22907;18005;1;166;104.0;110;70;2;1;0;0;1;0
+22908;20169;2;167;60.0;160;100;1;1;0;0;1;1
+22909;23451;1;169;85.0;150;100;3;1;0;0;0;1
+22910;15280;1;168;59.0;140;60;1;1;0;0;1;1
+22911;22017;1;165;66.0;120;70;3;3;0;0;1;0
+22912;22492;2;182;85.0;160;1000;1;1;0;0;0;1
+22917;21894;2;163;75.0;90;60;1;2;0;0;0;0
+22918;21482;1;152;69.0;150;90;1;1;0;1;1;1
+22919;16965;2;169;65.0;120;80;1;1;0;0;0;0
+22920;14511;1;164;81.0;130;80;1;1;0;0;1;1
+22921;21310;1;158;60.0;120;80;1;1;0;0;0;0
+22923;22789;1;171;104.0;130;90;1;1;0;0;1;1
+22926;22616;2;159;55.0;140;70;2;2;1;0;1;0
+22927;14559;1;157;68.0;140;90;1;1;0;0;1;0
+22928;18782;1;154;96.0;130;90;1;1;0;0;1;1
+22929;16541;2;172;92.0;110;80;1;2;0;0;1;1
+22930;18915;2;170;102.0;110;70;1;1;0;0;1;0
+22931;20513;1;158;65.0;120;80;3;3;0;0;0;1
+22932;22475;1;152;78.0;130;80;3;1;0;0;0;1
+22934;23386;2;178;65.0;150;80;1;1;0;0;0;1
+22935;17511;2;174;62.0;120;80;1;1;1;0;1;0
+22936;16957;2;156;59.0;110;70;1;3;0;0;1;0
+22938;20356;1;162;83.0;120;80;1;1;0;0;1;0
+22939;18459;2;170;73.0;110;70;2;2;0;0;1;0
+22940;22053;2;168;76.0;160;90;1;1;0;0;1;1
+22941;19750;1;163;59.0;125;75;2;1;0;0;1;0
+22942;21123;2;178;80.0;130;70;2;1;1;1;1;1
+22945;19181;2;173;69.0;120;80;1;1;1;0;1;0
+22946;19406;1;156;64.0;120;80;1;1;0;0;1;0
+22947;21214;1;152;64.0;120;80;1;1;0;0;1;0
+22949;21143;1;154;51.0;130;80;1;1;0;0;1;1
+22950;20464;1;155;77.0;125;80;2;1;0;0;1;0
+22951;22062;1;157;80.0;157;80;1;1;0;0;1;1
+22952;17705;2;184;73.0;120;80;1;1;0;0;1;1
+22953;21968;2;156;55.0;120;80;1;1;0;0;1;1
+22954;22541;2;174;74.0;140;80;1;1;0;0;1;1
+22955;21272;2;169;85.0;160;80;1;1;0;0;1;1
+22956;21129;1;166;66.0;125;70;1;1;1;0;1;0
+22958;16868;2;174;84.0;145;90;1;1;0;0;1;0
+22959;20243;2;176;82.0;120;70;1;1;0;1;1;1
+22962;20396;2;172;86.0;130;80;1;1;0;0;1;1
+22963;18906;1;162;73.0;150;100;2;1;0;0;1;1
+22965;21765;2;164;84.0;120;70;1;1;0;0;1;1
+22966;23411;1;148;70.0;150;90;2;1;0;0;1;1
+22967;15192;2;156;60.0;110;70;1;1;0;0;1;0
+22971;21184;1;166;70.0;120;80;1;1;0;0;1;1
+22972;17401;1;162;73.0;150;90;1;1;0;0;1;1
+22973;19641;1;162;90.0;120;80;1;1;0;0;1;0
+22974;21869;1;170;70.0;120;80;1;1;0;0;1;0
+22975;22779;1;157;76.0;180;120;1;1;0;0;1;1
+22976;19993;1;165;63.0;150;90;1;1;0;0;0;1
+22977;19763;2;173;69.0;150;90;1;1;0;1;1;1
+22979;20300;2;168;74.0;150;100;1;1;0;0;1;1
+22981;22795;2;186;72.0;110;70;1;2;0;0;1;1
+22982;23230;1;168;80.0;150;90;1;1;0;0;1;1
+22983;19770;1;160;58.0;120;80;1;1;0;0;1;0
+22984;20310;1;158;70.0;120;80;3;3;0;0;1;0
+22985;20432;1;153;61.0;110;70;1;1;0;0;1;1
+22989;19027;2;172;75.0;140;90;1;1;1;0;1;1
+22990;18937;1;169;65.0;140;90;1;1;0;0;0;1
+22991;21803;1;168;78.0;120;80;1;1;0;0;1;1
+22992;14375;1;150;65.0;120;60;1;1;0;0;1;0
+22993;22468;2;176;74.0;130;80;3;1;0;0;1;1
+22994;21954;2;172;75.0;130;80;3;1;0;0;1;1
+22995;20936;2;184;65.0;150;90;2;1;1;0;1;1
+22997;23410;1;164;100.0;150;90;2;1;0;0;1;1
+22998;20310;2;169;75.0;120;80;3;3;0;0;1;0
+22999;22598;1;165;67.0;120;70;1;1;0;0;1;0
+23003;16110;2;175;78.0;120;80;1;1;1;0;1;0
+23004;22635;2;162;68.0;120;80;1;1;1;1;1;0
+23005;21778;1;168;58.0;120;80;1;1;0;0;1;0
+23006;14478;1;160;70.0;110;60;1;1;0;1;0;0
+23009;18291;2;164;66.0;100;80;1;1;0;0;1;1
+23010;23268;1;160;79.0;130;90;1;1;0;0;0;1
+23011;21336;1;166;74.0;120;80;1;1;0;0;1;1
+23012;14459;1;160;58.0;100;60;1;1;0;0;1;0
+23013;18741;1;174;86.0;120;80;1;1;0;0;0;1
+23017;16895;1;158;65.0;170;90;1;1;0;0;1;1
+23018;20373;2;180;87.0;130;90;1;1;0;0;0;0
+23019;23301;1;175;83.0;120;80;1;1;0;0;1;1
+23020;20403;1;165;65.0;120;80;1;1;0;0;1;0
+23022;18996;1;180;110.0;135;80;1;1;0;0;1;1
+23023;19147;2;167;62.0;120;80;1;1;0;0;1;1
+23024;18969;1;168;68.0;120;80;1;1;0;0;1;1
+23025;23154;2;168;69.0;120;80;1;1;0;0;0;1
+23026;15544;2;178;75.0;120;80;1;3;0;0;1;0
+23030;19648;1;160;62.0;120;70;2;1;0;0;0;0
+23032;21181;1;169;62.0;140;80;1;1;0;0;1;1
+23033;16855;2;175;73.0;120;80;1;1;0;0;0;0
+23034;18822;2;180;84.0;120;80;1;1;0;0;1;0
+23036;21916;1;166;80.0;120;70;1;1;0;0;1;0
+23037;22724;1;164;90.0;180;90;1;1;0;0;0;1
+23038;17589;1;158;85.0;120;80;1;1;0;0;1;0
+23040;18398;1;159;65.0;120;80;1;1;0;0;1;0
+23041;19078;2;165;87.0;110;70;1;1;0;1;1;0
+23045;16066;2;172;92.0;150;80;1;1;0;0;1;1
+23046;18818;2;164;82.0;130;90;1;1;1;0;1;1
+23047;21867;1;166;76.0;120;80;1;1;0;0;1;1
+23048;20516;2;175;72.0;120;80;1;1;0;0;1;1
+23049;16731;2;166;77.0;110;70;1;1;1;0;1;0
+23051;21097;2;170;63.0;130;90;1;1;0;0;0;0
+23052;21328;1;170;70.0;140;90;3;3;0;0;0;1
+23054;17946;2;169;75.0;120;80;1;1;0;0;1;0
+23055;15378;1;171;85.0;110;80;1;1;0;0;1;0
+23056;19070;2;170;64.0;140;80;1;1;0;0;1;1
+23059;18355;1;165;64.0;110;70;2;1;0;0;1;1
+23060;23264;2;162;77.0;140;90;1;1;0;0;1;1
+23062;22700;1;153;78.0;120;80;1;1;0;0;1;1
+23063;19669;1;158;70.0;110;70;1;1;0;0;1;0
+23064;22535;1;164;67.0;120;80;1;1;0;0;0;0
+23065;18365;1;165;68.0;120;80;1;1;0;0;1;1
+23067;23251;2;174;74.0;120;80;1;1;0;0;1;0
+23068;17369;2;168;70.0;120;80;1;1;0;0;1;1
+23070;16900;1;165;71.0;120;80;1;1;0;0;1;0
+23072;15131;1;158;58.0;150;90;1;1;0;0;1;0
+23074;21040;1;153;71.0;120;80;1;1;0;0;1;0
+23075;18402;1;162;77.0;110;70;1;2;0;0;1;0
+23076;16083;2;172;75.0;120;80;1;1;0;0;1;0
+23077;15802;1;167;63.0;120;80;1;1;0;0;0;0
+23078;19204;1;160;55.0;140;90;1;1;0;0;1;1
+23081;15317;2;171;80.0;120;80;2;1;0;0;1;0
+23084;14537;1;149;55.0;120;80;1;1;0;0;1;0
+23088;14635;2;178;77.0;190;70;1;1;1;0;0;1
+23089;20367;1;168;109.0;120;90;1;3;0;0;1;0
+23090;21220;2;168;72.0;120;80;1;1;0;0;1;1
+23091;19731;1;167;62.0;120;80;1;1;0;0;1;0
+23092;20436;1;148;59.0;160;80;2;1;0;0;1;1
+23093;18500;2;164;66.0;120;80;1;1;0;0;0;0
+23097;23301;1;160;67.0;120;80;1;1;0;0;1;0
+23098;18773;1;153;56.0;130;80;3;3;0;0;1;1
+23099;19784;1;164;69.0;140;80;3;1;0;0;0;1
+23100;19120;2;172;69.0;129;87;3;3;1;1;1;0
+23101;22358;2;168;101.0;145;80;2;1;1;0;1;1
+23104;23145;1;160;63.0;125;90;3;1;0;0;1;1
+23105;21129;2;170;70.0;110;70;1;1;0;0;1;1
+23107;18045;2;165;67.0;140;90;1;1;1;0;1;1
+23108;20900;1;150;67.0;110;80;1;1;0;0;1;0
+23109;20519;2;170;65.0;130;80;1;1;0;0;1;0
+23110;15922;2;176;78.0;110;70;1;1;0;0;1;0
+23111;18954;2;172;83.0;120;80;1;1;0;0;1;0
+23113;17961;1;162;69.0;120;90;1;1;0;0;1;1
+23114;21517;1;167;72.0;160;90;1;1;0;0;1;1
+23115;18263;1;164;70.0;120;80;1;1;0;0;1;0
+23118;19695;1;150;72.0;120;80;1;1;0;0;1;0
+23119;20608;2;165;66.0;120;80;1;1;0;0;1;0
+23120;20506;1;156;54.0;120;70;1;1;0;0;0;1
+23122;17858;1;170;68.0;140;80;2;1;0;0;1;1
+23123;16196;2;165;85.0;120;80;1;1;0;0;0;0
+23124;19824;1;168;70.0;110;70;1;1;0;0;1;0
+23125;18340;1;163;71.0;120;80;3;1;0;0;0;0
+23126;15326;1;178;75.0;140;90;1;1;0;0;1;1
+23127;19033;1;169;75.0;120;80;1;1;0;0;1;0
+23128;14575;1;163;86.0;140;90;1;1;0;0;0;1
+23130;19639;1;165;65.0;120;80;1;1;0;0;0;0
+23131;21203;1;152;90.0;130;100;1;1;0;1;1;1
+23132;22390;2;170;100.0;150;100;1;3;0;0;1;1
+23135;23335;1;159;65.0;130;80;1;1;0;0;1;1
+23136;22851;1;160;55.0;120;70;1;1;0;0;0;1
+23137;21296;1;161;70.0;120;80;1;1;0;0;1;1
+23138;14629;1;161;92.0;100;70;1;1;0;0;1;0
+23140;14390;1;157;61.0;90;50;2;1;0;0;1;1
+23141;20375;2;176;97.0;170;80;3;3;0;0;1;0
+23142;19830;1;163;57.0;110;70;1;1;1;0;1;0
+23147;15297;2;170;65.0;120;80;1;1;0;0;1;0
+23150;20336;1;158;71.0;130;90;1;1;0;0;1;1
+23155;14609;1;166;51.0;90;60;1;1;0;0;0;0
+23157;19492;1;171;73.0;120;80;1;1;0;0;1;0
+23158;23284;2;168;65.0;120;80;1;1;0;0;1;0
+23159;19567;1;161;110.0;160;90;1;1;0;0;1;1
+23160;19566;2;181;100.0;140;100;1;1;0;0;1;0
+23161;20267;1;152;77.0;140;80;1;1;0;0;0;0
+23162;22432;1;162;85.0;110;70;2;1;0;0;1;1
+23164;21293;1;166;82.0;130;80;3;3;0;0;1;1
+23166;22031;1;169;65.0;140;60;1;2;0;0;1;1
+23167;16609;2;183;85.0;140;90;1;1;0;1;1;1
+23168;18907;2;170;92.0;120;80;1;1;0;0;1;1
+23169;20330;2;159;58.0;120;80;1;1;0;1;1;1
+23173;22030;1;175;67.0;120;80;2;1;0;0;0;1
+23174;16967;1;166;100.0;140;90;1;1;0;0;1;1
+23177;18041;2;171;70.0;120;70;1;1;0;0;1;0
+23178;18722;1;159;77.0;100;60;2;1;0;0;0;1
+23179;22095;1;168;62.0;150;90;1;1;0;0;1;1
+23181;19621;1;196;56.0;125;80;1;1;0;0;1;0
+23182;21080;1;155;71.0;120;80;1;1;0;0;1;0
+23183;18971;1;147;83.0;180;1000;1;1;0;0;1;1
+23184;23544;1;168;79.0;130;80;1;1;0;0;1;0
+23185;22587;2;171;80.0;102;80;2;3;0;1;1;0
+23186;18719;1;168;65.0;120;80;1;1;0;0;1;0
+23187;23244;1;153;81.0;135;80;2;2;0;0;1;1
+23189;22680;1;175;73.0;130;80;1;1;0;0;1;1
+23190;16034;2;170;59.0;130;90;1;1;1;0;1;0
+23191;15495;1;153;60.0;120;80;1;1;0;0;1;0
+23192;18979;1;160;73.0;140;90;3;1;0;0;1;1
+23194;21089;1;159;57.0;130;90;3;1;0;1;1;1
+23195;21778;1;155;65.0;130;80;3;3;0;0;1;1
+23196;18895;2;172;70.0;120;80;1;3;0;0;1;1
+23197;14655;2;178;120.0;140;90;1;1;0;0;1;1
+23198;18542;1;160;57.0;100;60;1;1;0;0;1;0
+23200;20311;2;165;84.0;145;95;3;3;0;0;0;1
+23203;20379;2;159;80.0;140;80;3;3;0;1;1;1
+23206;16839;1;165;66.0;120;60;1;1;0;0;1;0
+23207;20264;2;178;80.0;130;90;3;1;1;0;1;1
+23208;15993;2;175;72.0;120;80;1;1;0;0;1;0
+23210;15792;2;164;58.0;120;80;1;1;0;0;0;0
+23213;14772;1;175;65.0;120;80;1;1;0;0;1;0
+23214;19076;1;165;78.0;120;80;1;1;0;0;0;0
+23215;16063;1;167;55.0;170;70;2;1;0;0;0;1
+23217;20544;1;176;94.0;90;60;1;1;0;0;1;0
+23218;14579;1;159;61.0;120;70;1;1;0;0;1;0
+23220;21214;1;155;57.0;160;100;1;1;0;0;1;1
+23221;17481;1;163;78.0;140;90;3;1;0;0;1;1
+23222;19933;1;167;60.0;120;70;1;1;0;0;1;0
+23224;21897;1;158;76.0;140;80;3;2;0;0;1;1
+23225;20697;1;156;67.0;130;90;1;1;0;0;1;1
+23226;20332;1;152;64.0;110;70;2;2;0;0;1;0
+23230;17700;2;169;81.0;130;90;2;1;0;0;1;0
+23231;18952;1;157;75.0;140;80;1;1;0;0;1;0
+23232;21298;1;157;67.0;110;80;1;1;0;0;1;0
+23234;21892;1;168;74.0;140;90;1;1;0;0;1;1
+23236;17535;1;165;70.0;120;80;1;1;0;0;1;1
+23237;21296;1;154;104.0;130;90;1;2;0;0;1;0
+23238;20969;1;165;64.0;160;90;1;1;0;0;1;0
+23241;19192;1;168;58.0;120;80;3;3;0;0;1;1
+23243;20525;1;170;80.0;120;80;1;1;0;0;1;0
+23244;18981;1;166;68.0;120;80;1;1;0;0;1;0
+23245;19580;1;174;65.0;120;80;1;1;0;0;1;0
+23246;20420;2;175;64.0;120;80;1;1;0;0;1;0
+23247;21062;1;164;65.0;110;70;1;1;0;0;1;1
+23248;18378;1;167;80.0;150;80;1;1;0;0;1;1
+23249;15377;2;168;73.0;120;80;1;1;0;0;0;0
+23250;18778;1;162;62.0;120;80;1;1;0;0;1;0
+23251;22064;1;154;86.0;110;70;1;1;0;0;1;1
+23252;21889;2;160;92.0;140;80;1;1;0;0;1;1
+23253;16797;2;174;96.0;120;80;1;2;0;0;1;1
+23255;21235;1;160;76.0;130;90;3;3;0;0;1;0
+23256;16136;1;167;71.0;110;70;1;1;0;0;1;0
+23257;21970;2;168;71.0;120;80;1;1;0;0;1;0
+23258;19147;1;169;70.0;100;60;1;1;0;0;1;0
+23259;20307;2;180;72.0;140;90;1;1;0;1;1;1
+23261;16220;2;165;71.0;120;80;1;1;1;0;1;1
+23262;21284;2;160;60.0;120;80;1;1;0;0;1;1
+23263;18065;2;175;85.0;110;70;1;1;0;0;1;0
+23264;14375;2;177;140.0;140;90;1;1;0;0;1;0
+23265;21974;2;170;90.0;130;90;1;2;0;0;0;0
+23266;22171;1;166;68.0;120;80;1;1;0;0;1;0
+23268;15285;2;176;108.0;110;70;1;1;1;1;1;0
+23270;16639;2;168;61.0;120;80;1;1;0;0;1;0
+23272;16644;2;169;73.0;130;100;1;1;0;0;1;0
+23273;19700;2;173;102.0;150;80;1;1;0;0;1;1
+23274;17540;2;174;88.0;130;90;1;1;0;0;0;1
+23278;16623;1;168;85.0;140;90;2;1;1;0;1;1
+23281;22872;2;171;75.0;120;80;1;1;0;0;1;0
+23282;20655;2;167;69.0;130;90;2;1;0;0;1;1
+23283;21074;2;169;75.0;120;80;1;1;0;0;1;0
+23285;21962;2;168;74.0;140;80;1;1;0;0;1;1
+23286;16656;1;176;105.0;140;80;2;1;0;0;1;1
+23288;20286;1;170;70.0;120;80;2;1;0;0;1;1
+23289;21935;2;161;83.0;130;90;1;1;0;0;0;1
+23290;22654;2;165;60.0;120;80;1;1;0;0;1;1
+23292;23397;1;157;61.0;120;80;3;3;0;0;1;1
+23293;20299;1;150;84.0;130;90;2;1;0;0;1;0
+23295;19766;1;162;64.0;120;70;1;1;0;0;0;1
+23297;18259;2;150;65.0;120;90;1;1;0;0;1;0
+23298;19205;2;172;72.0;120;80;1;1;0;0;1;0
+23299;20015;2;178;76.0;130;80;1;1;0;0;0;0
+23300;20418;1;154;94.0;100;85;3;3;0;0;0;1
+23301;18086;2;181;95.0;120;80;1;1;0;0;1;0
+23302;14545;1;156;72.0;120;80;1;1;0;0;1;0
+23304;19488;2;178;98.0;140;90;1;1;0;0;1;0
+23305;16816;1;160;60.0;120;80;1;1;0;0;0;1
+23306;21258;1;170;69.0;120;80;1;3;0;0;1;0
+23308;19193;1;165;72.0;120;80;1;1;0;0;1;0
+23309;19046;1;147;77.0;120;60;2;1;0;0;0;1
+23310;15851;1;160;73.0;130;80;2;2;0;0;0;1
+23311;18873;1;162;73.0;110;70;2;1;0;0;1;1
+23314;23384;1;166;68.0;140;90;3;3;0;0;1;1
+23315;19034;2;165;69.0;120;80;1;1;0;0;1;1
+23316;20561;1;163;82.0;120;80;3;1;0;0;1;1
+23317;15307;2;180;75.0;120;80;1;1;0;0;1;0
+23318;21872;1;165;35.0;100;70;1;1;0;0;1;0
+23319;22550;1;162;68.0;130;70;1;1;0;0;1;1
+23320;20462;2;179;82.0;110;80;1;1;0;0;1;0
+23321;16112;1;150;60.0;120;80;1;1;0;0;0;0
+23322;18880;1;170;69.0;120;80;3;3;0;0;1;0
+23324;20395;1;152;53.0;110;80;1;1;0;0;0;0
+23325;21034;2;166;100.0;120;80;1;1;0;1;1;0
+23327;23118;1;158;70.0;110;80;1;1;0;0;1;0
+23329;18063;1;174;84.0;140;70;1;1;0;0;1;0
+23332;21886;1;168;56.0;120;80;1;1;0;0;0;0
+23333;20315;1;160;79.0;140;70;1;1;0;0;1;1
+23334;19858;1;165;68.0;120;80;1;1;0;0;1;0
+23337;19623;2;173;63.0;120;80;1;1;0;0;1;0
+23338;21275;1;162;69.0;120;80;1;1;0;0;1;0
+23339;22166;2;175;90.0;140;90;1;1;0;0;1;1
+23340;19705;2;171;84.0;130;80;1;1;0;0;1;1
+23341;20624;2;169;71.0;140;90;1;1;1;0;1;1
+23342;18354;1;166;65.0;120;80;1;1;0;0;0;1
+23344;17523;2;170;74.0;80;60;1;1;0;0;0;0
+23345;17586;2;170;70.0;150;90;2;1;0;0;1;1
+23346;18276;1;153;72.0;110;70;1;1;0;0;1;0
+23347;18919;1;162;59.0;160;70;1;1;0;0;1;1
+23348;22065;1;152;51.0;90;60;1;1;0;0;1;1
+23349;21163;1;160;58.0;110;70;1;1;0;0;1;0
+23351;18204;2;160;58.0;120;80;1;1;0;0;1;0
+23352;15199;1;170;80.0;110;70;1;1;0;0;1;1
+23353;20674;2;160;62.0;90;60;1;1;0;0;1;0
+23354;17629;1;168;92.0;100;60;1;1;0;0;1;0
+23355;19673;1;160;71.0;100;70;1;1;0;0;0;0
+23356;20617;1;158;58.0;125;80;1;1;0;0;1;0
+23358;22110;1;162;84.0;160;100;1;1;0;0;1;1
+23359;18920;2;182;78.0;110;70;1;1;0;0;1;0
+23360;17413;1;155;71.0;150;90;1;1;0;0;1;1
+23361;22796;2;165;60.0;120;80;1;1;0;0;1;1
+23363;21172;1;160;63.0;120;80;1;1;0;0;1;0
+23366;22428;1;157;70.0;120;80;1;1;0;0;1;0
+23367;18100;1;159;84.0;170;90;2;2;0;0;1;1
+23368;21244;1;167;58.0;120;80;1;1;0;0;1;0
+23369;22674;1;160;58.0;130;80;2;1;0;0;1;1
+23370;19947;1;169;69.0;120;90;1;1;0;0;1;1
+23371;18368;2;165;58.0;120;80;1;2;0;0;1;0
+23372;20700;1;160;60.0;120;80;3;3;0;0;1;1
+23373;17414;2;160;67.0;110;70;3;3;1;1;1;1
+23376;19729;1;157;80.0;160;90;1;1;0;0;1;1
+23377;16078;1;172;98.0;120;80;1;1;0;0;1;0
+23378;20223;1;153;68.0;100;60;1;1;0;0;1;1
+23379;19659;1;158;61.0;120;80;1;1;0;0;1;0
+23380;15421;1;170;68.0;110;70;1;2;0;0;1;0
+23381;20232;1;162;56.0;120;80;1;1;0;0;1;0
+23383;21372;1;160;73.0;120;60;1;1;0;0;0;0
+23386;18173;2;168;65.0;120;80;1;1;0;0;1;0
+23387;22653;1;155;98.0;140;90;3;1;0;0;1;1
+23391;18860;1;161;80.0;100;70;1;1;0;0;1;1
+23392;23078;1;164;64.0;160;100;1;1;0;0;1;0
+23393;18923;1;170;85.0;140;90;3;3;0;0;1;1
+23394;23293;2;166;70.0;140;90;3;1;0;0;1;1
+23395;18345;2;169;70.0;120;70;1;1;0;0;0;0
+23396;18856;2;161;60.0;120;60;1;1;0;0;0;0
+23398;15931;2;166;72.0;180;100;1;1;0;0;1;1
+23399;14540;1;153;61.0;110;70;1;3;0;0;1;0
+23400;19657;1;168;67.0;130;80;2;2;0;0;0;1
+23401;20328;1;165;63.0;120;80;1;1;0;0;0;0
+23402;18026;2;170;156.0;150;90;1;3;0;0;0;0
+23403;20398;2;165;70.0;150;90;1;1;1;0;1;1
+23404;16623;2;156;59.0;120;70;1;1;1;1;1;0
+23406;16224;2;170;58.0;120;80;3;3;0;0;1;0
+23407;20334;1;155;60.0;110;70;1;1;0;0;1;0
+23411;15449;2;154;60.0;120;80;1;1;0;0;1;0
+23412;19029;2;169;83.0;120;70;1;1;0;0;1;1
+23414;20352;1;169;118.0;120;80;1;1;0;0;1;1
+23417;14744;2;167;70.0;120;80;1;1;1;0;1;0
+23418;23401;1;161;100.0;140;80;1;1;0;0;1;1
+23419;16637;2;174;71.0;130;70;1;1;0;0;1;1
+23420;22713;2;163;69.0;120;80;3;3;0;0;0;0
+23421;15142;1;167;81.0;120;80;1;1;0;0;1;0
+23422;18057;1;160;100.0;130;90;3;1;0;0;1;1
+23423;23486;2;165;70.0;120;80;1;1;0;0;0;0
+23425;20387;2;169;73.0;140;90;1;1;1;1;1;1
+23426;18254;1;175;92.0;130;80;1;1;0;0;1;1
+23427;19869;1;168;49.0;120;80;1;1;0;0;1;1
+23428;23163;2;160;80.0;130;80;3;1;0;0;1;1
+23429;19130;1;159;76.0;160;80;1;1;0;0;1;1
+23430;20541;2;172;92.0;150;100;2;1;0;0;1;1
+23431;14653;1;162;64.0;110;70;1;1;0;0;1;0
+23432;16857;1;160;72.0;150;100;1;1;0;0;1;0
+23434;21252;1;152;70.0;130;100;1;1;0;0;0;1
+23435;23234;1;153;57.0;120;80;1;1;0;1;1;0
+23438;18043;2;166;65.0;110;80;1;1;0;0;1;0
+23439;23505;2;170;72.0;120;90;1;1;0;0;1;0
+23440;22657;1;156;65.0;150;90;1;1;0;0;1;0
+23441;21125;1;155;77.0;140;100;1;1;0;0;0;1
+23442;18492;1;167;82.0;150;90;1;1;0;0;1;1
+23444;15408;1;165;54.0;140;90;1;1;0;0;1;1
+23448;23268;1;171;91.0;130;90;1;1;0;0;1;0
+23452;14772;2;174;54.0;120;80;1;2;0;0;1;0
+23453;16731;2;180;105.0;120;80;1;1;0;0;0;1
+23454;21810;2;178;63.0;140;90;1;1;0;0;0;0
+23456;20447;2;180;78.0;120;80;1;1;0;0;1;0
+23457;18215;2;157;67.0;120;80;3;3;0;0;1;1
+23458;22430;1;166;89.0;120;80;2;1;0;0;1;0
+23459;16722;1;162;72.0;120;80;1;1;0;0;1;0
+23461;17583;2;160;60.0;120;80;1;1;0;1;1;0
+23462;17478;1;157;58.0;90;60;1;1;0;0;1;0
+23463;21031;1;155;63.0;120;70;1;1;0;0;1;0
+23467;21118;1;158;84.0;160;85;3;2;0;0;1;1
+23468;21875;1;159;87.0;150;100;2;2;0;0;1;1
+23469;20217;1;159;64.0;120;70;1;1;0;0;0;0
+23471;14471;1;164;97.0;120;80;1;1;0;0;1;0
+23472;17549;2;169;80.0;130;90;1;1;1;1;1;1
+23473;21814;1;167;86.0;160;100;3;1;0;0;1;1
+23474;15077;2;178;105.0;110;70;1;1;0;0;1;0
+23475;19864;1;158;67.0;100;80;1;1;0;0;0;0
+23476;19767;1;169;67.0;120;70;1;3;0;0;0;1
+23477;19832;2;166;91.0;120;80;1;1;0;0;0;0
+23478;16158;1;162;64.0;120;80;1;1;0;0;1;0
+23479;23501;2;165;70.0;120;80;1;1;1;0;1;1
+23481;16133;1;162;70.0;120;80;1;1;0;0;1;0
+23482;23660;1;160;65.0;130;80;3;3;0;0;0;1
+23484;18189;2;172;110.0;180;100;1;1;1;0;0;1
+23485;21045;1;164;68.0;115;70;2;1;0;0;1;1
+23486;21271;1;156;78.0;120;80;1;1;0;0;0;0
+23488;18970;1;159;60.0;120;80;1;1;0;0;1;1
+23489;15845;1;150;61.0;140;90;3;3;0;0;1;1
+23492;18901;1;168;78.0;110;80;2;1;0;0;1;0
+23494;22060;2;156;75.0;110;70;1;1;0;0;1;0
+23495;19592;1;160;60.0;120;80;2;1;0;0;1;0
+23497;14804;2;178;65.0;120;80;1;1;0;0;1;0
+23498;23337;1;155;80.0;140;90;2;2;0;0;1;0
+23499;22537;2;178;84.0;120;80;1;1;0;0;1;0
+23500;23283;1;170;62.0;140;80;1;1;0;0;1;1
+23501;21986;1;169;76.0;120;80;1;1;0;0;1;1
+23503;23399;1;157;69.0;120;80;2;1;0;0;1;1
+23505;22096;2;180;85.0;130;80;1;1;0;0;1;0
+23506;19570;2;158;68.0;120;80;1;1;0;0;1;1
+23507;15763;1;172;85.0;120;80;1;1;0;0;1;0
+23510;17595;2;172;68.0;110;70;1;1;0;0;1;1
+23511;20373;1;165;85.0;110;70;2;2;0;0;0;0
+23512;20457;1;156;50.0;138;0;3;1;0;0;1;1
+23514;23256;1;164;85.0;160;100;1;1;0;0;0;1
+23515;20592;1;162;66.0;120;80;1;1;0;0;1;0
+23516;19681;1;162;84.0;140;90;1;2;0;1;0;1
+23517;18124;1;170;78.0;130;80;1;1;0;0;1;1
+23518;19493;1;158;95.0;180;100;1;2;0;0;0;1
+23522;20948;1;172;69.0;120;80;1;1;0;0;1;1
+23523;20603;1;165;62.0;120;800;1;1;0;0;1;1
+23524;21012;1;148;74.0;110;80;3;1;0;0;1;1
+23527;17424;1;159;65.0;140;90;1;1;0;0;0;0
+23528;19497;1;154;49.0;120;80;3;3;0;0;1;1
+23531;18279;1;156;53.0;120;80;2;1;0;0;1;0
+23534;16651;1;170;70.0;120;80;1;1;0;0;1;0
+23536;16674;2;158;63.0;120;80;1;1;1;1;1;0
+23538;18443;1;160;61.0;90;60;1;1;0;0;1;0
+23540;21999;1;160;84.0;120;80;2;2;0;0;1;0
+23541;22357;1;154;68.0;110;70;1;2;0;0;1;1
+23542;21963;1;152;52.0;120;90;1;1;0;0;1;1
+23543;22701;1;159;94.0;140;90;3;3;0;0;1;1
+23544;17279;2;179;87.0;110;90;1;1;0;0;0;0
+23545;16838;2;170;90.0;13;90;1;2;0;0;0;1
+23546;21045;1;163;72.0;130;80;1;1;0;0;1;1
+23548;17622;1;157;97.0;160;100;3;1;0;0;1;1
+23549;18936;1;168;78.0;130;80;1;1;0;0;1;1
+23552;17393;1;151;72.0;140;90;1;1;0;0;0;1
+23553;15945;2;176;114.0;130;80;1;1;1;1;1;0
+23554;16810;2;172;62.0;120;80;1;1;1;0;1;0
+23556;15229;1;165;68.0;110;70;1;1;0;0;1;0
+23557;21393;1;161;93.0;190;110;1;1;0;0;1;1
+23559;18379;1;165;68.0;120;80;1;1;0;0;0;0
+23560;15457;1;160;68.0;110;80;1;2;0;0;1;1
+23561;16719;1;161;52.0;120;80;1;1;0;0;1;0
+23562;20459;1;150;69.0;140;90;3;3;0;0;1;1
+23563;17669;1;150;47.0;110;80;1;1;0;0;1;0
+23564;14398;1;160;64.0;110;70;1;1;0;0;0;1
+23565;16846;1;168;69.0;130;80;1;1;0;0;1;0
+23566;21790;1;158;58.0;120;80;1;2;0;0;0;0
+23568;18270;1;169;57.0;150;110;1;1;0;0;1;1
+23569;22165;2;176;83.0;130;80;3;3;0;0;1;1
+23570;21001;2;178;70.0;140;90;1;1;0;0;1;0
+23571;17604;2;174;79.0;110;80;1;1;0;0;1;0
+23572;19123;2;171;91.0;150;1000;1;1;1;0;0;1
+23575;21735;1;176;84.0;150;90;1;1;0;0;1;1
+23576;18126;1;162;63.0;120;70;1;1;0;0;0;0
+23577;16089;1;170;69.0;120;80;1;1;0;0;1;0
+23580;19803;1;168;72.0;120;80;1;1;0;0;1;0
+23581;18250;1;155;60.0;170;90;1;1;0;0;1;1
+23582;21929;2;180;85.0;120;80;1;1;0;0;1;0
+23583;18826;1;160;73.0;153;85;2;2;0;0;1;1
+23585;18037;1;160;71.0;110;70;1;1;0;0;1;0
+23586;14499;1;159;84.0;100;60;1;1;0;0;0;0
+23587;19594;1;158;70.0;140;80;1;1;0;0;1;1
+23590;19841;2;186;85.0;110;70;1;1;0;0;1;0
+23591;19067;1;162;66.0;120;90;1;1;0;0;1;0
+23592;22033;1;176;78.0;140;80;1;1;0;0;1;1
+23595;19613;2;175;75.0;110;80;1;1;1;0;1;1
+23596;21931;1;158;57.0;120;80;1;1;0;0;1;0
+23597;20265;2;173;82.0;120;70;1;1;0;0;1;0
+23601;15974;1;168;63.0;110;70;1;1;0;0;1;0
+23602;22447;1;153;62.0;110;70;3;1;0;0;1;1
+23603;15202;1;160;52.0;110;70;1;1;0;0;1;0
+23605;18521;2;171;68.0;150;90;1;1;0;0;1;1
+23606;15136;1;152;85.0;130;90;1;3;0;0;1;1
+23607;19187;2;165;68.0;120;80;1;1;0;0;1;0
+23608;18223;1;166;88.0;120;80;1;1;0;1;1;0
+23609;16669;2;172;72.0;140;90;1;1;1;1;1;1
+23610;19404;1;150;68.0;180;100;1;1;0;0;1;1
+23611;20940;2;157;61.0;120;80;1;1;0;0;1;0
+23613;16099;1;164;60.0;150;90;3;1;0;0;1;1
+23615;18126;1;158;69.0;100;60;2;1;0;0;1;1
+23616;20338;1;156;92.0;140;90;1;1;0;0;1;0
+23617;18043;2;172;110.0;160;1000;2;2;1;0;1;1
+23619;19132;1;160;66.0;120;70;1;1;0;0;1;0
+23622;18360;1;160;50.0;100;80;2;1;0;0;1;0
+23624;23228;1;158;60.0;130;80;1;1;0;0;1;0
+23625;18172;1;168;65.0;120;80;1;1;0;0;1;0
+23626;15874;1;156;72.0;134;109;2;2;0;0;1;1
+23627;17596;1;147;72.0;110;80;2;1;0;0;1;0
+23628;15212;1;160;72.0;120;80;1;1;0;0;1;0
+23633;15097;1;165;59.0;110;80;2;1;0;0;0;1
+23634;22688;1;164;74.0;150;80;2;1;0;0;1;1
+23636;19720;2;169;69.0;110;90;1;1;0;1;0;0
+23637;18729;2;169;65.0;170;100;1;1;0;0;1;0
+23638;15970;1;160;90.0;120;80;1;1;0;0;1;0
+23640;17621;1;164;73.0;120;80;1;1;0;0;1;0
+23641;21935;1;169;67.0;140;80;1;1;0;0;1;1
+23642;20509;1;165;64.0;150;90;1;1;1;0;0;1
+23645;19085;1;155;83.0;110;80;2;1;0;0;1;1
+23646;21660;1;156;72.0;110;70;1;1;0;0;1;1
+23647;19132;2;154;79.0;140;100;1;1;0;0;1;1
+23649;16635;1;156;70.0;180;100;1;1;0;0;1;1
+23650;21368;2;170;65.0;120;80;1;1;0;0;1;0
+23652;18304;2;170;94.0;130;80;1;1;0;0;1;0
+23653;23251;2;170;93.0;140;90;1;1;0;0;1;1
+23654;14461;2;171;97.0;165;120;1;1;0;0;0;1
+23655;21858;1;151;53.0;120;80;1;1;0;0;1;0
+23656;19661;1;165;65.0;120;80;1;1;0;0;0;1
+23657;19584;1;158;80.0;130;80;2;1;0;0;1;0
+23660;20282;2;172;91.0;180;90;1;1;0;0;0;1
+23661;18931;1;155;65.0;120;80;1;1;0;0;1;1
+23662;22037;2;180;92.0;120;80;1;1;0;0;0;1
+23665;21250;1;165;68.0;120;80;1;1;0;0;1;0
+23666;18778;1;166;94.0;140;80;1;1;0;0;1;1
+23667;21392;1;160;80.0;160;90;1;1;0;0;0;1
+23669;23236;2;171;70.0;130;90;1;1;0;0;1;1
+23671;17484;1;162;73.0;120;80;2;2;1;0;1;0
+23672;16796;1;156;98.0;160;100;3;2;0;0;1;1
+23674;22876;1;160;76.0;120;80;1;1;0;0;1;1
+23677;18211;1;161;77.0;120;80;2;1;0;0;1;0
+23679;15321;2;169;65.0;120;80;1;1;1;0;1;0
+23680;19303;1;165;56.0;130;80;3;3;0;0;1;0
+23681;18371;2;163;69.0;120;80;1;1;0;0;1;0
+23683;22449;1;153;57.0;120;80;1;1;0;0;1;1
+23685;19048;1;161;67.0;120;80;2;1;0;0;1;0
+23687;15224;1;168;62.0;120;80;1;1;0;0;1;0
+23688;17526;1;157;67.0;110;80;1;1;0;0;1;1
+23689;20305;1;165;51.0;100;80;1;1;0;0;1;0
+23690;19795;1;169;65.0;140;90;3;3;0;0;1;0
+23691;20596;1;157;90.0;130;80;1;2;0;0;1;0
+23692;21164;1;159;77.0;130;80;1;1;0;0;1;1
+23693;15433;2;167;78.0;120;75;1;1;0;0;1;0
+23694;18075;2;156;66.0;160;100;2;2;0;0;1;1
+23695;17366;1;158;41.0;130;90;1;1;0;0;0;1
+23696;21202;2;172;60.0;130;80;1;1;0;1;1;0
+23697;22646;1;160;60.0;160;90;1;1;0;0;0;1
+23698;17425;1;176;71.0;110;70;1;1;0;0;1;0
+23699;20500;1;162;88.0;130;90;1;3;0;1;1;0
+23700;21427;2;159;64.0;150;90;1;1;0;0;1;1
+23702;16055;2;166;84.0;140;80;2;2;0;1;1;1
+23703;15934;1;150;84.0;120;80;1;1;0;0;1;0
+23704;18425;1;162;52.0;140;90;1;1;1;1;1;0
+23705;20257;1;158;56.0;120;80;1;1;0;0;1;0
+23706;19728;1;158;78.0;130;80;1;1;0;0;1;0
+23708;21638;2;178;95.0;160;100;3;1;0;0;0;1
+23709;20405;1;171;98.0;130;90;1;1;0;1;1;1
+23710;23372;1;170;78.0;150;90;1;1;0;0;1;1
+23711;23325;1;163;75.0;130;80;2;2;0;1;1;1
+23712;21173;1;170;74.0;150;100;1;1;0;0;0;0
+23713;18887;1;160;84.0;160;100;2;1;0;0;0;1
+23715;20224;2;174;102.0;120;80;2;2;1;0;1;0
+23717;17570;2;172;75.0;120;70;1;1;0;0;1;0
+23718;21680;1;152;58.0;120;80;1;1;0;0;1;0
+23719;18923;1;167;75.0;100;60;1;1;0;0;1;0
+23721;20344;1;161;93.0;120;80;1;1;0;0;0;1
+23722;20238;2;170;65.0;120;80;1;1;0;0;1;0
+23723;19639;1;154;56.0;120;80;1;1;0;0;1;0
+23724;22377;1;158;73.0;140;80;2;1;0;0;1;1
+23725;16011;1;157;75.0;120;79;1;1;0;0;1;0
+23727;19946;1;154;63.0;120;80;3;3;0;0;1;1
+23728;19837;1;157;75.0;150;100;1;1;0;0;1;1
+23729;14577;1;158;63.0;106;60;1;1;0;1;1;0
+23730;16873;2;168;74.0;120;80;1;1;0;0;1;1
+23735;18144;1;150;52.0;120;80;1;1;0;0;0;0
+23736;23205;1;162;89.0;120;80;2;1;0;1;1;0
+23738;18425;1;159;63.0;110;70;1;1;0;0;1;1
+23740;22034;1;161;65.0;130;80;3;1;0;0;1;1
+23742;18885;2;175;90.0;130;80;1;1;1;0;1;1
+23743;19783;2;178;75.0;110;70;1;1;0;0;1;0
+23745;19050;2;172;78.0;120;80;1;1;0;0;1;0
+23746;22664;1;161;90.0;130;90;2;1;0;0;1;1
+23747;20325;1;145;85.0;130;80;2;1;0;0;1;1
+23748;18364;2;167;72.0;120;80;1;1;0;0;0;0
+23749;19090;1;162;65.0;120;70;1;1;0;0;0;1
+23750;14825;2;174;95.0;120;80;2;2;0;0;1;0
+23751;14504;2;153;65.0;110;80;1;1;0;0;1;0
+23752;20210;1;165;85.0;130;80;2;1;0;0;1;1
+23755;19109;2;175;75.0;140;90;1;1;0;0;1;1
+23757;14832;1;162;48.0;120;80;1;1;0;0;1;0
+23758;14689;1;163;105.0;130;95;1;1;0;0;1;1
+23759;19546;1;155;73.0;90;60;1;2;0;0;1;0
+23761;14506;1;162;57.0;70;50;1;1;0;0;1;0
+23762;23399;2;162;89.0;160;100;1;2;0;0;1;0
+23763;19733;1;172;69.0;110;70;1;1;0;0;1;0
+23764;15257;2;175;79.0;110;70;1;1;0;0;0;0
+23766;16653;2;161;67.0;140;100;1;1;0;0;0;0
+23768;16605;2;170;89.0;160;90;1;1;0;0;1;0
+23770;14541;1;169;72.0;110;80;3;3;0;0;0;0
+23773;15865;1;160;73.0;120;70;1;1;0;0;1;0
+23774;22481;2;169;109.0;120;80;3;3;0;0;1;1
+23775;21083;2;175;90.0;120;80;1;1;0;0;1;1
+23777;15208;1;163;80.0;160;80;1;1;0;0;0;1
+23778;20438;2;170;98.0;120;80;1;2;0;0;1;0
+23780;20295;1;152;80.0;140;80;1;1;0;0;0;1
+23782;17251;2;173;93.0;150;90;2;1;0;0;1;1
+23783;14545;2;171;68.0;120;80;1;1;0;0;1;0
+23784;18324;2;160;70.0;120;80;1;1;0;0;0;0
+23785;20976;1;155;62.0;160;100;1;2;0;0;0;1
+23786;14596;1;160;73.0;100;70;1;1;0;0;1;0
+23787;22178;1;157;54.0;110;70;1;1;0;0;1;0
+23788;14671;1;167;62.0;110;70;1;1;0;0;1;0
+23789;19848;1;157;65.0;120;80;1;1;0;0;1;0
+23790;20536;1;170;66.0;120;80;1;1;0;0;0;0
+23791;20453;1;153;69.0;120;80;1;1;0;0;1;1
+23792;15280;1;165;80.0;110;70;1;1;0;0;1;0
+23794;19647;2;167;87.0;140;80;1;1;0;0;0;1
+23795;23264;2;170;93.0;120;80;1;1;0;0;1;0
+23796;23508;1;156;62.0;125;80;1;1;0;0;1;1
+23797;18977;2;166;70.0;160;90;1;1;1;1;1;0
+23798;15989;2;177;118.0;140;90;3;2;0;0;1;0
+23800;19867;1;148;64.0;110;80;1;1;0;0;0;0
+23801;20982;2;172;55.0;120;80;1;1;1;1;1;0
+23804;18212;1;158;63.0;120;80;1;1;0;0;1;0
+23805;19816;1;160;78.0;120;80;1;1;0;0;0;1
+23807;22700;2;164;85.0;130;90;1;1;0;0;1;1
+23808;22774;1;152;69.0;145;85;1;1;0;0;1;1
+23809;21129;1;158;55.0;120;80;1;1;0;0;1;0
+23810;19844;1;158;87.0;120;80;1;1;0;0;0;1
+23811;19161;1;170;86.0;110;80;1;1;0;0;1;1
+23812;22755;2;170;89.0;120;80;1;1;0;0;0;1
+23813;21200;2;166;75.0;110;70;1;1;0;0;1;0
+23814;19662;2;172;90.0;130;90;3;1;0;0;1;1
+23815;17473;2;170;94.0;130;80;1;1;0;0;0;1
+23816;22499;2;169;57.0;120;80;1;1;0;0;1;0
+23817;20045;1;165;69.0;120;80;1;1;0;0;0;0
+23818;20455;1;165;92.0;130;80;2;1;1;0;1;0
+23820;23150;1;150;72.0;140;90;1;1;0;0;1;1
+23821;18238;2;175;65.0;140;80;1;1;0;0;1;1
+23822;20439;1;165;76.0;130;90;3;1;0;0;1;1
+23823;20435;1;133;49.0;90;70;1;1;0;0;0;0
+23824;16950;1;160;90.0;117;73;1;1;0;0;1;0
+23826;20523;2;168;65.0;120;80;1;1;0;0;1;0
+23828;22741;2;174;69.0;125;80;1;1;0;0;1;1
+23829;18938;2;170;81.0;120;80;1;1;0;0;1;0
+23830;19824;1;160;65.0;120;80;1;1;0;0;1;0
+23831;18224;2;171;74.0;130;90;2;2;1;1;0;1
+23832;19885;1;163;112.0;160;90;3;2;0;0;1;1
+23833;18370;2;172;81.0;130;80;1;1;1;1;1;0
+23834;20573;1;160;62.0;120;70;1;1;0;0;1;1
+23836;14482;2;177;80.0;110;70;1;1;1;0;1;0
+23838;20561;2;171;102.0;100;60;2;3;0;0;1;1
+23840;18230;2;175;65.0;120;80;1;1;0;0;1;0
+23842;20913;1;155;52.0;120;80;1;1;0;0;1;0
+23844;16107;1;166;68.0;110;70;1;1;0;0;1;0
+23847;17361;2;165;75.0;120;80;1;1;0;0;1;0
+23848;19776;2;176;78.0;120;80;1;1;0;0;1;0
+23850;18391;1;170;68.0;140;90;1;1;0;0;1;0
+23852;22372;1;164;76.0;160;70;1;1;0;0;1;0
+23855;18073;2;174;91.0;100;70;1;1;0;0;1;0
+23857;17478;1;159;63.0;110;70;2;2;0;0;1;0
+23858;19040;1;164;69.0;120;80;1;1;0;0;1;0
+23859;19680;2;74;98.0;140;90;1;1;0;0;1;1
+23860;15831;1;168;105.0;150;90;1;1;0;0;1;1
+23861;19645;1;160;68.0;160;90;2;2;0;0;1;1
+23863;18376;2;170;68.0;120;80;1;1;0;0;1;1
+23864;21783;2;175;79.0;100;60;1;1;0;0;0;1
+23865;16772;1;164;68.0;120;80;2;1;0;0;1;1
+23866;15549;1;158;52.0;120;80;1;2;0;0;1;1
+23868;16792;1;156;84.0;110;70;1;1;0;0;0;0
+23870;16968;1;176;88.0;120;80;1;1;0;1;0;0
+23874;18307;1;159;61.0;160;100;1;1;0;0;1;1
+23875;16600;1;156;55.0;125;85;1;1;0;0;1;1
+23876;17366;1;167;56.0;120;80;1;1;0;0;0;0
+23879;19553;2;170;65.0;140;90;1;1;0;0;1;1
+23880;21252;1;166;66.0;110;70;3;3;0;0;1;0
+23881;16054;2;169;76.0;130;70;1;1;1;1;0;0
+23883;20384;1;162;78.0;120;80;1;3;0;0;1;1
+23884;20355;1;166;70.0;120;80;1;1;0;0;1;0
+23886;16741;2;171;72.0;130;70;1;1;0;0;1;0
+23887;19172;1;168;67.0;120;80;1;1;0;0;1;0
+23888;18259;1;156;53.0;120;80;1;1;0;0;1;0
+23892;19808;1;152;43.0;120;80;1;3;0;0;1;0
+23893;21241;1;169;78.0;120;80;1;1;0;0;1;1
+23896;14616;2;170;80.0;120;80;1;1;0;0;1;0
+23897;19082;1;172;85.0;140;80;1;1;0;0;1;1
+23898;23388;1;146;80.0;150;100;1;1;0;0;1;1
+23900;22526;1;163;73.0;150;90;1;1;0;0;1;0
+23901;19725;1;165;87.0;160;90;3;1;0;0;1;1
+23903;21900;2;166;105.0;120;90;1;1;1;0;1;0
+23904;19702;1;152;82.0;120;80;1;1;0;0;1;1
+23905;22538;1;156;67.0;140;85;3;1;0;0;1;0
+23908;18987;1;172;69.0;120;80;1;1;0;0;0;0
+23910;21892;2;178;85.0;150;80;2;1;1;0;1;1
+23911;19535;1;160;54.0;110;70;1;1;0;0;1;0
+23913;19692;1;161;102.0;170;1100;3;1;0;0;0;1
+23914;21904;2;178;84.0;150;80;1;1;1;0;1;1
+23915;18793;2;170;74.0;170;110;1;1;1;0;1;1
+23917;19729;1;160;57.0;110;70;1;1;0;0;0;0
+23918;21860;1;160;77.0;100;69;1;1;0;0;1;0
+23919;22462;1;150;59.0;150;90;1;1;0;0;1;1
+23920;16038;2;147;70.0;110;60;1;1;1;1;0;1
+23922;22559;1;155;88.0;160;100;1;1;0;0;1;1
+23924;14611;2;175;82.0;120;80;1;1;1;0;1;0
+23925;21114;2;172;64.0;110;70;2;1;0;0;1;0
+23928;19803;2;164;78.0;110;80;1;1;0;0;1;0
+23929;18190;1;170;65.0;110;70;1;3;0;0;1;0
+23930;21982;2;165;67.0;120;80;1;1;1;0;1;0
+23931;19676;1;151;54.0;130;80;1;1;0;0;1;0
+23932;18258;2;171;85.0;130;90;1;1;1;0;1;1
+23933;21697;2;166;69.0;130;90;1;1;0;0;0;0
+23934;22568;2;178;100.0;130;90;3;1;1;0;1;1
+23935;16942;1;156;55.0;120;80;1;1;0;0;0;0
+23937;21204;1;163;69.0;130;85;1;1;0;0;1;1
+23939;20676;2;173;107.0;150;100;1;1;1;0;1;1
+23940;14595;1;162;116.0;130;80;3;1;0;0;1;1
+23941;16760;2;175;89.0;120;80;1;1;1;0;1;0
+23942;22703;1;158;68.0;120;80;1;3;0;1;1;0
+23945;22586;2;171;84.0;170;100;1;1;0;0;0;1
+23947;18226;1;153;57.0;110;70;2;1;0;0;1;0
+23948;20510;1;170;72.0;120;80;1;1;0;0;1;0
+23949;16855;1;160;71.0;120;70;1;1;0;0;1;1
+23950;15380;1;163;69.0;120;80;1;1;0;0;1;0
+23951;17467;1;170;69.0;110;70;1;1;0;0;1;0
+23954;20714;1;159;72.0;120;80;2;1;0;0;1;0
+23955;19031;1;167;58.0;120;80;1;1;0;0;1;0
+23956;17497;1;160;70.0;120;80;1;1;0;0;1;0
+23957;19610;2;160;68.0;120;80;3;3;0;0;1;0
+23958;19320;1;165;65.0;120;80;3;3;0;0;1;0
+23959;19808;2;172;83.0;120;80;1;1;1;0;1;0
+23960;21834;1;165;72.0;120;70;1;1;0;0;0;1
+23961;18896;1;163;74.0;120;80;1;1;0;0;1;1
+23962;16864;1;162;90.0;120;80;2;1;0;0;0;0
+23963;21280;1;158;68.0;120;80;1;1;0;0;1;1
+23964;19509;1;153;84.0;180;100;2;1;0;0;1;1
+23965;18876;1;168;75.0;120;80;1;1;0;0;1;0
+23968;22790;1;168;79.0;120;80;1;1;0;0;1;1
+23969;18938;2;175;90.0;120;80;1;1;1;0;1;0
+23970;20587;1;155;72.0;150;90;1;1;0;0;0;1
+23971;15365;1;165;75.0;120;70;1;1;0;0;1;0
+23972;18340;2;170;89.0;130;90;2;2;0;0;1;0
+23975;16117;1;154;58.0;110;70;1;1;0;0;1;0
+23976;14619;1;163;84.0;120;80;1;1;0;0;1;0
+23977;14507;2;173;71.0;120;80;1;1;0;0;1;1
+23980;21841;2;170;97.0;125;80;1;1;0;0;1;1
+23981;20423;2;172;68.0;130;90;2;2;0;0;1;1
+23982;18999;2;169;73.0;120;80;1;2;0;0;1;1
+23983;15263;2;171;70.0;120;70;1;1;0;0;1;0
+23986;21911;2;173;85.0;130;90;1;1;0;0;0;1
+23987;18873;2;175;80.0;120;80;1;1;0;0;1;0
+23988;23074;1;151;64.0;140;70;1;1;0;0;1;1
+23989;23267;2;162;69.0;130;80;1;1;0;0;1;1
+23991;14849;1;165;59.0;130;80;1;1;0;0;1;1
+23992;20492;1;167;75.0;120;80;1;1;0;0;1;0
+23993;14548;2;169;65.0;120;80;1;1;0;0;1;0
+23994;21037;1;164;72.0;120;80;1;3;0;0;1;1
+23997;20753;1;160;60.0;120;80;3;3;0;0;0;0
+23998;16720;2;175;69.0;110;70;1;1;1;1;1;0
+23999;18928;1;158;55.0;120;80;1;1;0;0;1;0
+24001;19741;1;156;48.0;120;80;3;3;0;0;0;0
+24002;21475;1;155;67.0;130;90;1;1;0;0;1;1
+24004;16242;1;167;67.0;145;80;1;1;0;0;1;0
+24005;21068;1;159;82.0;140;90;2;1;0;0;0;1
+24007;15263;2;170;73.0;120;80;1;3;1;0;1;0
+24008;16609;1;159;78.0;110;70;1;1;0;0;0;1
+24010;14588;1;155;54.0;120;80;1;1;0;0;1;0
+24012;16006;1;163;106.0;170;90;1;1;0;0;1;1
+24013;20361;1;153;67.0;130;70;1;1;0;0;0;0
+24015;20198;2;161;68.0;130;80;3;1;0;0;1;1
+24017;23137;1;162;75.0;120;70;2;1;0;0;1;0
+24018;19881;2;176;72.0;140;90;3;1;1;0;1;1
+24019;20555;2;163;70.0;145;95;1;1;0;0;1;1
+24020;21112;1;190;90.0;120;80;1;1;0;0;1;0
+24022;18033;2;170;72.0;110;70;2;1;0;0;1;0
+24023;15876;1;155;51.0;100;75;1;3;0;0;1;0
+24024;18766;2;170;75.0;110;70;1;1;0;0;1;1
+24025;15172;1;172;87.0;120;80;1;1;0;0;1;0
+24026;21153;2;168;82.0;180;100;1;3;1;0;1;1
+24027;20495;1;162;81.0;150;100;1;2;0;0;0;1
+24029;22870;1;165;65.0;120;79;3;2;0;0;0;1
+24031;20510;2;156;56.0;120;80;2;1;0;0;0;0
+24034;21746;2;169;73.0;120;80;1;1;0;0;0;1
+24036;19533;1;163;62.0;120;80;1;1;0;0;1;1
+24038;22795;2;172;70.3;120;80;1;1;1;0;1;0
+24039;21124;1;167;70.0;140;90;2;1;0;0;1;1
+24040;19253;1;166;69.0;120;80;1;1;0;0;1;0
+24041;16006;1;156;78.0;110;70;1;1;0;0;1;0
+24042;17344;1;159;88.0;160;100;1;1;0;0;1;1
+24043;22503;1;156;60.0;120;80;1;1;0;0;0;1
+24044;19875;1;155;68.0;120;80;1;1;0;0;1;0
+24045;14467;1;168;81.0;120;80;2;2;0;0;1;0
+24046;19556;1;162;54.0;120;70;2;1;0;0;1;0
+24048;19252;2;171;79.0;120;80;1;1;0;0;0;0
+24049;18434;2;182;101.0;130;80;1;1;0;0;1;0
+24051;22764;1;164;65.0;110;70;1;1;0;0;0;0
+24052;22417;1;145;50.0;130;80;1;1;0;0;0;1
+24053;17658;1;160;92.0;130;90;3;1;0;0;1;1
+24055;21087;1;160;85.0;110;70;1;1;0;0;0;1
+24056;21090;1;155;65.0;120;80;1;1;0;0;1;0
+24057;19562;1;155;52.0;155;90;1;1;0;0;1;1
+24058;18994;2;170;70.0;120;80;1;1;0;0;1;1
+24059;19443;1;162;75.0;140;80;1;1;0;0;1;1
+24060;16917;1;162;65.0;130;80;1;1;0;0;1;0
+24061;23178;1;160;79.0;110;70;3;1;0;0;1;1
+24063;21246;1;167;82.0;140;90;3;3;0;0;1;1
+24064;19799;1;168;68.0;120;80;1;1;0;0;0;1
+24065;23128;1;163;72.0;160;90;3;3;0;0;1;1
+24066;17387;2;164;70.0;130;70;1;1;0;0;0;1
+24067;19076;1;158;69.0;110;70;2;1;0;0;0;0
+24072;20392;1;163;102.0;130;80;1;1;0;0;0;0
+24075;23528;2;170;73.0;120;80;1;1;0;0;1;0
+24077;22703;2;177;93.0;120;100;2;1;1;1;1;1
+24079;18219;1;165;68.0;120;80;1;3;0;0;1;1
+24080;20405;2;170;99.0;130;80;1;1;0;0;1;1
+24081;23435;1;151;54.0;120;80;3;3;0;0;1;1
+24085;20724;1;161;84.0;120;80;1;1;0;0;0;0
+24086;19002;1;158;66.0;120;80;1;1;0;0;1;0
+24087;16043;1;156;56.0;120;80;2;1;0;0;1;0
+24088;18962;1;174;100.0;130;70;2;3;1;0;1;1
+24089;21189;1;168;70.0;120;70;1;1;0;0;1;1
+24092;19050;1;154;68.0;120;80;1;1;0;0;1;0
+24093;18341;1;165;63.0;120;80;1;1;0;0;1;0
+24094;15309;2;165;70.0;110;80;1;1;1;0;1;1
+24095;15354;1;150;68.0;90;60;1;1;0;0;0;0
+24097;21392;1;168;60.0;120;79;1;1;0;0;0;1
+24099;16827;2;166;78.0;150;90;1;1;1;0;1;1
+24100;21123;2;182;83.0;120;80;1;1;0;0;1;1
+24101;16192;2;169;75.0;140;90;1;1;0;0;1;1
+24102;18958;1;151;95.0;120;80;1;1;0;0;1;1
+24103;15893;2;169;69.0;110;90;2;1;1;0;1;1
+24104;20329;2;160;82.0;140;90;2;2;0;0;0;1
+24107;21851;1;161;76.0;120;80;1;1;0;0;1;0
+24114;21097;1;165;65.0;120;80;1;1;0;0;1;1
+24115;23084;2;155;79.0;120;90;3;3;0;1;1;1
+24116;23140;2;173;77.0;120;80;1;2;0;0;1;1
+24117;21852;1;156;56.0;110;70;2;1;0;0;1;0
+24118;17528;2;180;80.0;120;70;1;1;0;0;1;0
+24122;17486;2;162;54.0;120;80;1;1;1;0;0;0
+24123;20449;1;164;70.0;120;70;1;1;0;0;1;0
+24125;19740;2;170;69.0;140;80;1;1;0;0;1;1
+24126;18376;1;158;79.0;140;90;1;1;0;0;0;1
+24127;20560;1;152;65.0;105;75;2;1;0;0;1;0
+24130;20223;1;165;84.0;160;90;1;1;0;0;1;1
+24131;23495;1;166;79.0;105;65;3;3;0;0;0;1
+24132;22384;1;149;50.0;120;80;2;1;0;0;1;0
+24133;18329;1;169;71.0;110;70;1;1;0;0;1;0
+24134;16630;2;170;86.0;130;80;1;1;0;0;1;0
+24135;23279;1;152;77.0;150;90;1;2;0;0;1;1
+24136;20289;1;164;65.0;110;70;1;3;0;0;1;1
+24139;15583;2;174;73.0;120;80;1;1;0;0;1;0
+24141;19718;1;167;60.0;120;80;1;1;0;0;1;0
+24142;21165;2;176;92.0;120;80;1;1;0;0;1;0
+24143;20343;1;160;60.0;130;80;1;1;0;0;1;1
+24145;19880;2;165;65.0;110;70;1;1;0;0;1;0
+24146;18766;1;170;70.0;110;70;2;1;0;0;1;0
+24148;20296;1;160;58.0;160;58;1;1;0;0;1;1
+24149;22743;1;176;93.0;120;80;2;2;0;0;1;1
+24151;16674;2;160;60.0;120;80;1;1;0;0;1;0
+24152;19147;1;150;82.0;170;90;1;2;0;0;1;1
+24153;22678;1;162;78.0;130;80;1;1;0;0;1;0
+24154;18909;1;155;84.0;150;89;1;1;0;0;0;1
+24155;15900;2;170;65.0;110;70;1;1;1;0;1;0
+24156;19041;2;171;53.0;110;70;1;1;1;0;1;0
+24157;18274;1;169;68.0;120;80;1;1;0;0;0;0
+24159;15389;1;170;68.0;140;80;1;1;0;0;1;1
+24161;22087;1;165;86.0;140;90;3;1;0;0;1;0
+24163;18341;1;162;58.0;110;69;1;1;0;0;1;0
+24164;18883;1;157;60.0;110;70;1;1;0;0;1;0
+24165;15325;1;164;73.0;90;70;3;3;1;0;1;0
+24167;17272;2;170;31.0;150;90;2;2;0;0;1;1
+24168;18193;1;163;89.0;120;80;2;2;0;0;1;1
+24169;15455;2;165;55.0;120;80;1;1;1;0;1;0
+24171;20270;2;184;73.0;130;80;1;1;0;0;1;0
+24172;23108;2;176;68.0;120;80;3;3;0;0;1;1
+24173;15974;1;165;70.0;100;80;1;1;0;0;1;0
+24174;19065;1;156;60.0;110;70;1;1;0;0;1;0
+24175;18306;1;169;79.0;110;80;1;2;0;0;1;0
+24176;19915;2;158;73.0;110;70;1;1;0;0;0;0
+24177;22745;2;174;83.0;190;90;2;1;1;1;1;1
+24178;16020;1;158;53.0;120;80;1;1;0;0;1;0
+24180;17455;1;155;92.0;150;90;1;2;0;0;1;1
+24184;20507;1;155;71.0;130;70;1;1;0;0;0;0
+24185;16143;2;177;88.0;145;90;1;1;0;0;1;0
+24186;20480;2;171;83.0;120;80;1;1;0;0;1;1
+24187;20284;2;154;52.0;130;80;1;1;1;1;1;0
+24188;18944;1;156;55.0;160;100;1;1;0;0;1;1
+24189;14500;1;180;87.0;110;80;1;1;0;0;1;0
+24190;21783;1;160;94.0;150;90;1;1;0;0;1;1
+24193;20417;1;155;70.0;120;80;3;3;0;0;1;0
+24194;18978;2;160;81.0;130;80;1;1;0;0;0;1
+24195;23223;2;171;70.0;130;70;1;1;1;0;1;0
+24196;16037;2;169;68.0;150;90;2;1;0;0;1;0
+24198;19536;1;158;74.0;130;110;1;1;0;0;0;0
+24202;17990;1;152;59.0;140;90;1;1;0;0;1;1
+24203;21104;2;168;66.0;130;80;1;1;0;0;1;1
+24204;16045;1;165;76.0;120;80;1;1;0;0;1;1
+24205;22029;1;164;130.0;120;90;2;2;0;0;1;0
+24206;22696;2;177;86.0;110;80;1;1;0;0;1;1
+24207;21245;2;189;89.0;110;70;1;1;0;0;1;0
+24208;22848;2;174;80.0;120;80;1;1;1;0;1;1
+24209;18751;1;165;70.0;110;70;1;1;0;0;1;0
+24211;23252;2;160;56.0;120;80;1;1;0;0;1;0
+24212;15357;1;158;50.0;110;70;1;1;0;0;1;1
+24214;20377;1;157;64.0;120;80;1;1;0;0;1;0
+24216;21299;1;155;75.0;120;80;3;3;0;0;0;1
+24217;17544;1;155;83.0;150;90;1;1;0;0;1;1
+24218;15263;1;162;68.0;100;70;1;1;0;0;1;0
+24219;21135;2;170;85.0;140;80;3;1;0;0;1;1
+24220;18836;1;165;67.0;130;80;1;1;0;0;1;0
+24221;20285;1;164;71.0;140;70;2;1;0;0;1;0
+24222;23486;2;172;91.0;200;100;2;2;1;1;1;1
+24224;21843;1;150;68.0;110;70;1;1;0;0;0;1
+24225;17598;1;150;70.0;130;80;3;1;0;0;1;1
+24226;15356;2;180;65.0;120;80;1;2;0;0;0;0
+24227;21018;1;160;86.0;120;80;2;1;0;0;1;0
+24228;19737;2;170;70.0;120;80;1;1;0;0;0;1
+24229;16858;1;159;62.0;110;70;1;1;0;0;1;0
+24230;18109;2;176;72.0;120;80;1;1;0;0;1;0
+24231;14522;2;177;86.0;120;80;2;1;0;0;1;0
+24232;14562;1;164;72.0;150;90;2;1;0;0;1;1
+24233;21113;1;162;70.0;130;70;1;1;0;0;1;1
+24234;16254;1;161;59.0;110;70;1;1;0;0;1;0
+24235;18751;1;148;74.0;120;80;1;1;0;0;1;0
+24237;21328;1;165;70.0;120;80;1;1;0;0;1;0
+24238;15288;1;168;68.0;140;100;2;1;0;0;1;1
+24239;21053;1;169;69.0;125;90;3;3;0;0;1;1
+24240;19620;2;168;65.0;150;90;1;1;0;0;0;1
+24241;21653;1;156;61.0;110;80;1;1;0;0;1;1
+24242;22118;2;173;60.5;130;80;1;1;1;0;1;1
+24244;21860;1;165;40.0;90;60;2;1;0;0;1;1
+24245;21888;1;170;62.0;120;80;1;1;0;0;1;0
+24247;18173;1;165;57.0;100;60;1;1;0;0;1;0
+24250;21219;1;161;82.0;120;80;1;1;0;0;1;0
+24251;20207;1;155;72.0;110;70;1;1;0;0;1;0
+24253;14503;2;172;77.0;125;80;1;1;1;0;1;0
+24254;21829;1;156;80.0;130;90;2;2;0;0;1;1
+24255;18277;1;158;113.0;130;70;1;1;0;0;0;0
+24257;18235;1;160;150.0;140;90;2;1;0;0;1;1
+24258;19847;1;167;94.0;110;80;2;1;0;0;1;0
+24259;18195;1;165;88.0;120;80;3;1;0;0;1;0
+24260;16701;2;176;68.0;110;70;1;1;0;0;0;0
+24262;14526;2;163;73.0;120;80;1;1;0;0;1;0
+24263;23426;2;171;62.0;150;90;1;1;1;0;0;0
+24266;17360;1;169;62.0;110;70;1;1;0;0;1;0
+24267;22526;1;158;73.0;130;80;3;3;0;0;1;1
+24268;14610;1;162;66.0;120;80;1;1;0;0;1;0
+24269;18387;1;166;75.0;110;70;1;1;0;0;0;0
+24270;19114;2;179;80.0;120;70;1;1;1;0;0;0
+24275;15942;2;170;75.0;120;80;1;1;0;0;0;0
+24276;18485;1;158;62.0;120;80;2;1;0;0;1;0
+24278;20343;1;178;91.0;120;70;1;1;0;0;1;1
+24279;21280;2;174;79.0;120;80;1;1;0;0;1;0
+24280;21946;1;158;60.0;120;80;1;1;0;0;1;0
+24281;17524;2;170;109.0;160;100;1;1;0;0;0;1
+24282;18233;2;175;88.0;150;90;1;1;0;0;1;1
+24285;19285;1;165;58.0;120;80;1;2;0;0;1;0
+24288;17216;1;161;96.0;130;90;1;1;0;0;1;1
+24290;15290;1;159;64.0;120;80;1;1;0;0;1;0
+24293;17376;1;165;76.0;110;80;1;1;0;0;1;0
+24294;20347;1;172;73.0;120;80;1;1;0;0;1;0
+24295;19632;1;165;80.0;140;90;1;1;0;0;1;0
+24297;22073;1;161;67.0;110;80;2;1;0;0;1;1
+24298;16573;1;160;85.0;200;100;1;1;0;0;1;1
+24302;15319;1;155;62.0;120;80;1;2;0;0;1;0
+24303;18340;1;161;69.0;120;80;1;1;0;0;1;0
+24304;19614;1;160;75.0;120;80;1;3;0;0;1;0
+24305;21000;2;174;86.0;160;100;1;2;0;0;1;0
+24306;19000;1;169;77.0;120;90;1;1;0;0;1;0
+24307;23369;1;162;118.0;120;80;1;1;0;0;1;0
+24308;21794;2;174;78.0;130;80;1;1;0;0;1;1
+24309;16187;2;162;54.0;100;70;2;1;0;0;1;1
+24310;20182;1;159;70.0;124;76;2;3;0;0;1;0
+24311;16150;1;159;76.0;100;70;1;1;0;0;1;0
+24312;20469;1;169;82.0;105;80;1;1;0;0;1;0
+24313;19645;2;173;90.0;150;90;1;1;0;0;0;1
+24314;16133;1;166;61.0;120;80;1;1;0;0;1;0
+24315;20714;2;181;76.0;120;60;1;1;0;0;1;0
+24316;23262;1;152;43.0;100;80;1;1;0;0;0;0
+24317;19950;1;166;63.0;111;70;2;1;0;0;1;1
+24318;18442;2;174;62.0;120;80;1;1;0;0;0;0
+24321;18411;2;180;81.0;120;80;1;1;0;0;0;1
+24322;17249;2;165;80.0;140;90;1;1;0;0;1;1
+24323;19762;1;168;68.0;140;80;1;1;0;0;0;1
+24325;19524;2;167;59.0;120;80;1;1;1;1;0;0
+24326;22710;1;150;57.0;140;90;2;1;0;0;0;1
+24327;21926;2;168;64.0;120;80;1;1;0;0;1;1
+24328;16615;1;159;73.0;150;90;1;1;0;0;1;1
+24329;18959;1;155;61.0;100;60;2;1;0;0;0;1
+24332;15555;2;178;69.0;120;80;1;1;0;0;0;1
+24334;19708;2;170;80.0;140;90;1;1;0;0;1;1
+24335;16737;1;156;84.0;110;70;1;1;0;0;0;0
+24337;20573;2;176;78.0;140;80;3;1;0;0;0;1
+24338;19812;1;165;77.0;120;80;1;1;0;0;0;1
+24340;18081;1;159;63.0;110;70;1;1;0;0;1;1
+24341;18802;1;154;88.0;171;100;3;1;0;0;1;1
+24342;15420;2;173;62.0;130;80;2;1;0;0;1;0
+24344;21121;1;171;75.0;140;90;1;1;0;0;1;1
+24345;17684;1;162;67.0;110;70;1;1;0;0;0;0
+24346;22478;1;160;66.0;120;80;3;3;0;0;1;1
+24347;23217;1;169;66.0;150;90;2;1;0;0;1;1
+24348;21300;2;170;71.0;140;90;1;1;0;0;1;1
+24349;21832;2;170;74.0;120;80;1;1;1;0;0;1
+24350;18804;2;180;69.0;90;60;1;1;0;0;1;0
+24351;22021;1;166;82.0;120;80;1;1;0;0;1;0
+24353;19747;1;168;79.0;120;80;1;1;0;0;0;0
+24354;15960;2;169;71.0;120;70;1;1;1;0;1;1
+24355;20313;1;165;99.0;150;100;2;2;0;0;1;1
+24356;18209;1;166;68.0;110;80;1;1;0;0;1;0
+24357;19622;1;153;55.0;90;60;1;1;0;0;1;0
+24358;16621;2;175;79.0;140;100;2;1;0;0;1;1
+24360;23617;2;173;69.0;130;80;1;2;1;0;0;1
+24361;16003;2;163;66.0;130;90;1;1;0;0;0;0
+24362;18327;2;166;70.0;120;80;2;2;1;1;0;0
+24364;17287;1;162;80.0;140;80;2;1;0;1;1;1
+24365;22493;1;153;61.0;140;1100;1;1;0;0;1;0
+24366;19693;1;169;71.0;120;80;1;1;0;0;1;0
+24367;18415;1;165;68.0;120;80;1;1;0;0;1;1
+24369;16318;2;171;84.0;140;90;2;1;0;0;1;1
+24370;22710;1;165;69.0;140;90;1;1;0;0;1;1
+24371;21946;1;161;74.0;120;80;1;1;0;0;1;1
+24372;16160;1;171;71.0;100;60;1;1;0;0;1;0
+24373;15573;2;178;74.0;120;80;1;1;0;0;1;0
+24375;19122;1;156;89.0;140;80;1;1;0;0;1;1
+24376;19142;1;147;44.0;140;90;3;1;0;0;1;1
+24377;16690;1;159;61.0;140;80;3;2;0;0;1;1
+24378;15314;2;180;120.0;120;80;2;2;1;1;1;1
+24379;21242;2;160;58.0;130;80;1;1;0;0;1;0
+24381;18336;1;162;59.0;110;70;1;1;0;0;1;0
+24384;21086;1;164;64.0;120;80;1;1;0;0;1;0
+24385;18095;1;162;81.0;120;80;3;1;0;0;0;0
+24386;21644;1;157;79.0;130;90;2;1;0;0;1;1
+24387;18206;2;168;65.0;130;90;1;1;1;0;1;1
+24388;18404;2;156;65.0;120;80;2;1;0;0;0;1
+24391;18975;1;161;87.0;180;1200;1;1;0;0;1;1
+24392;19958;2;170;70.0;120;80;1;1;0;0;1;0
+24393;17466;1;172;75.0;160;80;3;1;0;0;1;1
+24395;21010;1;159;80.0;140;90;1;1;0;0;1;1
+24396;21259;1;100;86.0;110;70;1;1;0;0;1;1
+24398;14607;2;173;70.0;160;80;1;1;0;0;1;1
+24399;18973;1;161;87.0;150;100;3;1;0;0;1;1
+24405;15159;1;157;62.0;120;80;1;1;0;0;1;0
+24406;22510;1;161;78.0;140;90;1;1;0;0;1;1
+24408;21753;1;147;59.0;150;80;1;1;0;0;1;1
+24409;19757;2;180;90.0;140;90;1;1;1;0;0;1
+24410;22730;2;167;68.0;110;80;1;1;0;0;1;1
+24411;22512;1;168;85.0;120;80;1;1;0;0;1;1
+24412;21077;2;170;74.0;150;70;1;1;0;0;0;1
+24413;20661;2;177;76.0;150;90;1;1;0;0;1;1
+24414;20308;2;168;65.0;140;90;1;1;0;0;1;1
+24415;20305;2;176;74.0;100;60;1;1;0;0;1;0
+24417;21151;2;173;88.0;160;90;2;1;0;1;1;1
+24418;23517;1;164;62.0;130;90;1;1;0;0;1;1
+24419;17399;2;155;69.0;120;80;1;1;0;0;1;1
+24420;23339;1;174;85.0;110;70;1;1;0;0;0;1
+24423;19074;2;174;82.0;140;90;3;1;1;0;1;1
+24424;15834;1;159;61.0;120;80;1;1;0;0;1;0
+24425;18692;1;150;83.0;140;90;1;1;0;0;1;1
+24426;16177;1;158;80.0;140;90;1;1;0;0;1;1
+24428;21890;1;151;68.0;110;80;1;1;0;0;1;0
+24429;19000;1;158;56.0;120;80;1;1;0;0;1;0
+24431;18812;1;147;76.0;170;110;1;1;0;0;0;1
+24432;21087;1;168;65.0;120;80;1;1;0;0;1;1
+24433;15384;2;169;74.0;120;80;1;1;0;0;1;0
+24434;17348;1;162;92.0;110;90;1;1;0;0;0;0
+24435;16160;1;168;65.0;120;80;1;1;0;0;1;1
+24436;18238;1;174;65.0;120;80;1;1;0;0;1;0
+24438;16254;1;182;76.0;120;80;2;1;0;0;1;0
+24439;18973;2;178;75.0;120;80;1;1;0;0;1;0
+24442;18080;1;158;63.0;140;80;1;1;0;0;1;0
+24443;20390;1;159;60.0;130;90;1;1;0;0;0;1
+24444;22119;1;168;78.0;120;80;1;1;0;0;0;1
+24445;21117;1;161;82.0;150;90;1;1;0;0;1;1
+24446;22752;2;171;80.0;150;90;1;1;0;0;1;1
+24447;18252;1;170;78.0;120;80;1;1;0;0;1;1
+24448;23264;1;152;86.0;150;80;3;3;0;0;0;1
+24449;19633;2;178;77.0;130;70;1;1;1;0;0;0
+24450;21154;2;165;78.0;120;80;1;1;1;1;1;0
+24451;19794;1;158;56.0;140;90;1;1;0;0;0;1
+24452;22395;1;160;108.0;150;90;1;1;0;0;1;0
+24453;23453;1;169;62.0;130;80;1;1;0;0;1;1
+24456;21255;1;154;63.0;110;70;2;1;0;0;1;1
+24457;19039;1;156;80.0;120;80;3;3;0;0;1;1
+24458;18146;2;169;68.0;120;80;1;1;0;0;1;0
+24459;19666;2;176;118.0;120;80;2;1;0;0;1;1
+24462;22587;2;169;102.0;160;100;2;2;1;1;1;1
+24466;19011;1;165;65.0;140;79;2;1;0;0;0;1
+24467;17821;1;160;68.0;120;80;1;1;0;0;1;0
+24469;18022;1;159;89.0;140;100;1;1;0;0;1;0
+24470;19538;1;156;79.0;160;120;3;1;0;0;1;1
+24471;17484;1;157;53.0;90;60;3;3;0;1;1;0
+24472;18426;1;168;71.0;110;70;1;1;0;0;1;0
+24473;23210;1;164;70.0;150;90;3;1;0;0;0;1
+24476;23142;1;160;71.0;130;90;2;1;0;0;1;1
+24478;23394;1;154;68.0;105;69;1;1;0;0;1;0
+24479;16036;1;169;74.0;140;90;2;1;0;0;1;1
+24480;17008;1;167;77.0;120;80;1;1;0;0;1;0
+24481;22541;2;169;75.0;160;90;2;1;0;0;1;1
+24482;23099;1;165;65.0;110;70;1;1;0;0;0;1
+24484;19857;2;155;77.0;150;100;1;1;0;0;1;1
+24485;17365;1;157;80.0;160;90;2;1;0;0;1;1
+24487;19754;1;165;68.0;130;90;1;1;0;0;0;1
+24488;21172;2;178;80.0;120;80;1;3;1;0;1;1
+24490;16106;1;158;84.0;120;80;1;1;0;0;1;0
+24492;18218;1;164;68.0;120;80;1;1;0;0;1;1
+24493;15446;1;170;59.0;110;70;2;2;0;0;1;0
+24495;19673;1;160;60.0;120;80;1;1;0;0;1;0
+24499;21732;1;150;68.0;160;100;1;1;0;0;1;1
+24501;20443;1;160;62.0;120;80;1;1;0;0;1;0
+24503;20478;2;169;74.0;120;80;1;3;0;0;0;1
+24504;23299;2;174;89.0;155;85;1;1;0;0;1;1
+24505;21484;1;165;68.0;120;80;1;1;0;0;0;0
+24506;16799;1;158;60.0;90;60;1;1;0;0;1;0
+24507;17611;1;168;67.0;110;70;1;1;0;0;1;1
+24509;21289;1;156;65.0;120;80;3;3;0;0;1;1
+24511;17417;1;159;77.0;120;60;3;3;0;0;1;1
+24512;19965;1;163;82.0;140;100;1;1;0;0;1;1
+24515;14734;1;170;71.0;110;70;1;3;0;0;1;0
+24516;19005;2;177;59.0;120;80;1;1;1;0;1;0
+24517;18755;1;161;75.0;110;80;1;1;0;0;0;0
+24519;20699;1;166;70.0;140;90;3;3;0;0;1;1
+24520;18278;1;154;101.0;110;80;1;1;0;0;1;0
+24522;17523;2;181;91.0;130;80;3;1;0;0;1;1
+24523;15395;2;172;80.0;110;80;1;1;0;0;1;0
+24526;21928;2;180;70.0;120;80;1;1;0;0;1;0
+24528;18272;1;166;70.0;100;80;1;1;0;0;0;0
+24529;23187;2;165;78.0;150;90;2;2;0;0;1;1
+24531;18986;1;160;62.0;140;90;1;1;0;0;1;1
+24535;16810;2;174;115.0;120;70;1;2;1;1;0;1
+24536;20652;2;160;90.0;130;90;2;1;1;0;0;1
+24537;22465;1;157;62.0;130;80;2;2;0;0;1;0
+24538;21837;2;174;80.0;150;100;1;1;1;1;1;1
+24539;21230;1;164;62.0;120;80;1;1;0;0;1;0
+24540;21835;2;171;97.0;190;100;2;1;1;0;1;1
+24541;15941;1;160;72.0;130;80;1;1;0;0;1;0
+24542;20557;1;172;61.0;120;80;1;1;0;0;1;0
+24543;21025;1;168;90.0;140;80;2;2;0;0;1;0
+24544;23541;2;168;68.0;120;80;1;1;0;0;1;1
+24545;18799;1;161;124.0;160;90;2;1;0;0;1;1
+24547;19831;2;176;90.0;130;80;1;1;0;0;1;1
+24548;20650;1;161;87.0;120;90;1;1;0;0;1;1
+24549;19000;1;154;85.0;90;60;1;1;0;0;1;1
+24550;22807;2;180;80.0;190;1000;1;1;1;0;0;1
+24552;18414;1;168;73.0;140;70;1;1;0;0;1;1
+24553;20133;2;172;78.0;120;80;2;2;0;0;0;1
+24554;18316;2;162;64.0;110;70;2;1;1;0;1;0
+24555;21035;1;158;61.0;140;90;1;1;0;0;1;1
+24557;18140;1;161;80.0;130;80;3;3;0;0;0;1
+24559;20932;1;158;67.0;149;90;1;1;0;0;0;1
+24560;21061;1;168;98.0;130;80;1;1;0;1;1;1
+24564;21864;2;165;76.0;140;90;1;1;0;0;1;0
+24565;17562;1;162;65.0;110;70;1;1;0;0;0;0
+24566;21087;2;166;77.0;110;70;1;1;0;0;1;0
+24567;22587;1;152;53.0;130;90;1;1;0;0;1;1
+24568;18117;1;170;75.0;130;70;1;1;0;0;1;1
+24570;21329;2;171;78.0;120;80;1;1;0;0;0;1
+24571;21228;1;160;50.0;180;100;2;1;0;0;1;1
+24572;14533;2;176;94.0;120;80;3;3;0;0;1;1
+24573;21961;2;154;58.0;100;70;1;1;0;0;1;0
+24574;18412;1;160;62.0;110;70;1;1;0;0;1;0
+24575;17355;1;155;50.0;120;80;1;1;0;0;1;0
+24576;20656;1;161;72.0;130;80;3;1;0;0;1;1
+24577;21393;1;169;69.0;140;90;2;2;0;0;0;0
+24578;20008;1;173;79.0;130;90;1;1;0;0;1;0
+24579;19787;2;170;75.0;100;80;2;1;0;0;1;0
+24581;19665;2;171;107.0;150;80;2;1;0;0;1;1
+24583;16586;2;166;105.0;120;80;1;1;1;0;1;0
+24584;20394;1;165;69.0;150;1000;1;1;0;0;0;1
+24586;21821;1;168;73.0;100;90;2;1;0;0;1;0
+24587;23319;1;169;75.0;120;80;1;1;0;0;1;1
+24588;18870;1;172;76.0;120;80;1;1;0;0;1;1
+24589;14619;2;168;76.0;110;80;1;1;1;0;1;0
+24590;23228;1;170;73.0;120;80;1;1;0;0;1;0
+24591;16735;1;159;71.0;100;70;3;1;0;0;1;0
+24592;14456;2;167;73.0;140;80;1;1;1;0;1;1
+24593;18960;2;178;70.0;150;80;1;1;0;0;1;1
+24597;20337;1;165;62.0;120;80;1;1;0;0;1;0
+24599;19115;1;167;68.0;110;70;1;1;0;0;1;0
+24600;19592;1;167;68.0;130;80;1;1;0;0;1;0
+24601;22485;1;156;82.0;130;80;1;1;0;0;1;0
+24602;16196;2;180;78.0;90;60;1;1;0;0;1;0
+24604;15292;1;163;63.0;120;80;3;3;0;0;0;0
+24605;21764;1;164;92.0;130;90;2;1;0;0;1;0
+24606;21207;1;163;95.0;120;80;3;1;0;1;0;1
+24608;21147;1;164;59.0;120;80;1;1;0;0;1;1
+24611;17537;1;167;68.0;120;80;1;1;0;0;1;1
+24612;20565;2;174;72.0;120;80;1;1;0;0;1;0
+24613;18313;1;166;74.0;110;70;1;1;0;0;1;0
+24614;15348;2;175;102.0;140;90;1;1;0;0;0;1
+24615;18995;1;169;66.0;120;80;1;1;0;0;1;0
+24617;19043;2;170;61.0;120;60;1;1;0;0;0;1
+24618;15234;1;154;53.0;140;90;2;2;0;0;1;1
+24619;21196;1;175;70.0;110;70;1;1;0;0;1;0
+24622;19528;2;167;80.0;140;80;1;1;1;0;1;1
+24623;19703;2;164;55.0;110;70;2;1;0;0;1;0
+24624;19786;1;174;76.0;130;80;1;1;0;0;1;0
+24625;23439;1;170;68.0;120;80;1;1;0;0;0;1
+24626;18901;1;150;75.0;160;80;1;1;0;0;1;1
+24627;17385;1;158;93.0;120;80;1;1;0;0;1;0
+24628;21418;1;159;59.0;120;80;1;1;0;0;1;0
+24629;19686;1;163;80.0;140;100;2;1;0;0;1;1
+24630;19759;1;172;64.0;95;60;1;1;0;0;0;0
+24631;18115;1;166;78.0;110;80;1;1;0;0;1;0
+24632;21639;1;165;64.0;120;70;1;1;0;0;1;0
+24634;19041;2;170;71.0;120;80;1;1;0;0;1;0
+24635;21154;2;166;80.0;120;80;1;1;0;0;1;1
+24636;19111;2;162;69.0;140;90;1;1;0;0;1;1
+24639;16797;2;182;92.0;110;80;2;1;0;0;1;0
+24640;21101;2;165;58.0;120;79;1;1;0;0;1;1
+24641;21885;2;179;78.0;120;80;1;1;0;0;1;1
+24642;17734;1;158;53.0;110;70;1;1;0;0;1;0
+24644;19063;1;165;80.0;160;90;3;1;0;0;1;1
+24645;21200;2;175;72.0;80;120;2;1;0;1;1;0
+24646;15266;1;167;72.0;110;70;1;1;0;0;1;0
+24647;19844;1;170;70.0;140;90;1;1;0;0;1;0
+24648;16076;1;156;52.0;120;80;1;1;0;0;1;0
+24649;17578;1;152;70.0;110;70;1;1;0;0;1;0
+24652;23311;1;160;76.0;140;80;1;1;0;0;1;1
+24656;21282;2;167;55.0;110;70;1;1;0;0;1;0
+24657;19137;2;172;72.0;140;80;2;1;0;0;1;0
+24658;21715;2;164;73.0;120;80;3;1;0;0;1;1
+24659;20607;1;161;72.0;120;80;1;1;0;0;1;0
+24660;21123;1;163;63.0;140;100;1;1;0;1;1;1
+24663;20490;1;159;60.0;120;80;1;1;0;0;0;0
+24664;21926;2;172;71.0;120;80;1;1;0;0;1;0
+24665;18922;1;156;76.0;110;80;1;1;0;0;0;1
+24666;21758;1;159;69.0;120;80;1;1;0;0;0;0
+24667;19655;1;154;71.0;140;90;3;3;0;0;0;1
+24668;19591;1;160;64.0;110;70;1;1;0;0;1;0
+24669;17509;2;169;70.0;110;70;2;1;1;1;1;0
+24671;20316;2;178;102.0;160;1000;1;1;0;0;1;0
+24673;15372;2;171;70.0;160;100;1;1;1;0;1;1
+24674;19772;2;178;80.0;120;80;1;1;0;0;1;0
+24676;20397;1;157;100.0;140;100;2;2;0;0;1;1
+24677;22551;2;171;72.0;150;100;1;1;0;0;1;1
+24678;15350;2;171;69.8;140;90;2;1;0;0;1;1
+24679;21869;2;161;73.0;150;100;2;1;0;1;1;1
+24680;15344;1;158;61.0;120;80;1;1;0;0;1;1
+24681;21149;1;145;49.0;140;96;1;1;0;0;1;0
+24685;20719;2;170;70.0;130;80;1;1;0;0;1;0
+24689;19717;2;165;70.0;110;80;1;1;0;0;1;0
+24690;17530;1;98;45.0;12;80;1;1;0;0;1;0
+24691;19878;1;168;65.0;120;80;3;3;0;0;0;0
+24692;19657;1;163;65.0;120;80;1;1;0;0;1;0
+24693;21740;1;167;100.0;120;80;1;1;0;0;1;0
+24694;22700;2;168;70.0;120;80;1;1;0;0;1;0
+24695;19004;1;157;63.0;120;80;1;1;0;0;1;1
+24696;23331;1;162;69.0;140;90;3;1;0;0;1;0
+24697;20170;1;168;89.0;130;90;2;1;0;0;1;1
+24698;15248;1;169;75.0;100;70;1;1;0;0;1;0
+24699;14717;1;160;60.0;110;70;1;3;0;0;0;0
+24700;23369;2;165;75.0;160;100;1;1;0;1;1;1
+24701;19753;2;170;94.0;120;80;3;3;0;0;0;1
+24703;14552;2;168;75.0;120;80;1;1;0;0;1;0
+24704;20583;1;160;85.0;110;70;1;1;0;0;0;1
+24705;16037;2;160;60.0;120;80;1;1;0;0;0;0
+24706;16002;2;167;70.0;110;70;1;1;1;0;1;0
+24707;14358;1;170;79.0;150;90;1;1;0;0;1;1
+24708;20649;2;182;80.0;120;60;1;1;0;1;1;0
+24709;21821;1;162;62.0;120;80;2;1;0;0;0;1
+24711;21133;1;149;80.0;120;80;1;1;0;0;1;0
+24712;17533;2;172;83.0;120;79;1;2;1;0;1;0
+24713;15835;1;165;72.0;180;1000;1;1;0;0;0;1
+24714;21242;2;168;70.0;120;80;1;1;0;0;0;0
+24715;18239;1;166;64.0;120;80;3;3;0;0;1;0
+24716;19099;2;160;96.0;120;70;3;3;0;0;1;0
+24719;22397;1;164;97.0;160;90;1;1;0;0;1;1
+24721;17252;1;163;68.0;120;80;1;1;0;0;1;0
+24722;18235;1;168;60.0;130;80;1;1;0;0;1;1
+24725;21122;2;186;75.0;100;80;1;1;1;1;1;0
+24726;19064;1;168;62.0;110;90;1;3;0;0;1;0
+24727;17431;2;171;61.0;130;80;1;1;1;0;1;0
+24728;18890;1;166;91.0;110;80;1;1;0;0;1;1
+24729;22721;1;164;82.0;130;90;3;2;0;0;1;1
+24731;22383;2;177;94.0;140;70;3;1;0;0;0;1
+24732;20379;2;168;66.0;110;70;1;1;0;1;1;1
+24734;20494;1;158;78.0;130;90;1;1;0;0;1;1
+24737;22647;2;171;104.0;160;90;2;2;0;0;1;1
+24738;16855;1;162;114.0;130;80;3;1;0;0;1;1
+24739;19488;1;157;80.0;120;80;2;2;0;0;1;0
+24741;22657;2;137;86.0;130;80;1;2;0;0;1;1
+24743;23447;1;167;61.0;120;80;1;1;0;0;1;1
+24744;23379;2;160;58.0;150;90;1;1;0;0;1;1
+24745;23277;1;160;70.0;140;90;2;1;0;0;1;1
+24746;20389;2;164;89.0;120;80;1;1;0;0;0;0
+24747;21931;1;162;90.0;120;80;1;1;0;0;1;0
+24748;18310;1;160;53.0;150;100;1;1;0;0;1;0
+24750;17486;1;157;82.0;90;60;1;1;0;0;1;0
+24753;20270;2;169;71.0;140;90;1;1;0;0;0;1
+24755;21833;1;170;58.0;120;80;1;1;0;0;1;1
+24756;18495;1;161;60.0;120;70;1;1;0;0;1;0
+24757;20449;2;170;81.0;130;90;1;1;1;0;1;0
+24758;22428;1;162;72.0;80;140;3;3;0;0;1;1
+24760;19784;2;179;86.0;140;90;3;1;1;0;1;1
+24761;16118;1;156;63.0;110;70;1;1;0;0;1;0
+24764;18824;2;185;97.0;190;100;2;2;0;0;1;1
+24765;21205;1;179;85.0;120;80;1;1;0;0;1;0
+24766;15966;1;170;80.0;140;60;1;1;0;0;1;1
+24768;18987;1;162;91.0;130;90;1;1;0;0;0;1
+24769;20485;2;166;102.0;120;80;1;1;1;1;1;1
+24770;14438;1;159;56.0;110;70;1;1;0;0;1;0
+24771;23579;2;169;75.0;120;80;1;1;0;0;0;1
+24774;20280;1;166;87.0;140;90;3;3;0;0;1;1
+24775;16193;1;160;62.0;110;70;1;1;0;0;1;0
+24776;18172;2;169;78.0;120;80;1;1;0;0;1;1
+24777;23083;1;149;92.0;130;80;1;1;0;0;1;0
+24778;21933;1;154;56.0;130;70;1;1;0;0;1;0
+24781;18877;1;172;80.0;180;90;1;1;0;0;1;1
+24782;14534;2;172;78.0;120;80;1;1;0;0;0;0
+24783;19610;2;165;75.0;140;80;1;1;0;0;0;1
+24784;20511;1;149;67.0;110;60;1;1;0;0;1;0
+24786;22595;1;165;98.0;150;90;1;1;0;0;1;1
+24788;19770;1;151;72.0;140;90;1;1;0;0;1;1
+24789;14415;2;176;64.0;110;70;1;1;0;0;1;0
+24790;20417;1;163;70.0;110;80;1;1;0;0;1;0
+24791;15901;1;163;75.0;110;80;1;1;0;0;1;0
+24792;16022;1;158;48.0;140;100;1;1;0;0;0;0
+24794;21457;1;165;63.0;110;70;1;1;0;0;0;0
+24795;20233;2;172;101.0;140;90;1;1;0;0;1;1
+24796;16292;1;164;82.0;120;80;1;3;0;0;1;0
+24798;22023;1;153;67.0;120;80;3;3;0;0;0;0
+24800;23306;1;167;75.0;140;80;2;1;0;0;0;1
+24801;16294;1;156;70.0;110;70;2;2;0;0;1;0
+24803;18283;1;171;82.0;146;98;1;1;0;0;1;0
+24804;23294;1;164;100.0;130;80;1;1;0;0;1;1
+24805;15226;1;160;60.0;120;80;1;1;0;0;1;0
+24808;14534;1;167;70.0;120;80;1;1;0;0;0;0
+24809;21754;1;165;52.0;110;80;1;1;0;0;1;0
+24811;20359;1;155;77.0;160;100;3;3;0;0;1;1
+24813;18973;1;165;60.0;120;80;3;3;0;0;0;0
+24814;22839;1;168;65.0;120;80;1;1;0;0;0;1
+24815;15192;1;169;103.0;110;70;1;1;0;0;1;0
+24816;20280;1;155;41.0;120;80;1;1;0;0;1;0
+24819;18357;1;158;57.0;120;80;1;1;0;0;1;0
+24821;21761;1;152;48.0;140;90;1;1;0;0;1;1
+24822;21230;1;146;86.0;120;80;1;1;0;0;1;1
+24823;20479;2;174;65.0;150;80;2;2;0;0;1;1
+24824;18979;1;157;69.0;112;800;1;1;0;0;1;1
+24825;15864;2;173;81.0;120;80;1;1;1;0;1;0
+24826;21032;2;161;68.0;120;80;1;1;0;0;1;1
+24828;16051;2;173;70.0;130;90;1;1;1;0;1;1
+24830;23377;1;158;67.0;120;80;3;1;0;0;1;1
+24834;21284;1;169;67.0;110;70;1;1;0;0;1;0
+24835;23333;1;162;85.0;120;80;3;3;0;0;0;1
+24836;21786;2;172;98.0;120;80;1;1;1;0;1;0
+24837;18226;1;164;78.0;138;0;1;1;0;0;1;0
+24838;20574;2;158;59.0;120;80;1;1;0;0;1;0
+24839;15831;2;177;79.0;130;80;1;1;1;0;1;0
+24840;19097;1;153;80.0;110;70;1;1;0;0;1;0
+24841;20552;1;168;86.0;130;80;3;1;0;0;1;1
+24842;16907;1;165;89.0;140;90;1;1;0;0;1;1
+24843;18413;1;162;78.0;120;80;2;2;0;0;1;0
+24844;17594;2;175;75.0;120;70;1;1;0;0;1;0
+24845;17372;1;176;97.0;120;80;1;1;0;0;1;0
+24846;20212;2;167;83.0;140;90;1;2;1;0;1;1
+24848;22600;2;178;90.0;150;100;2;1;0;0;1;1
+24850;22432;2;172;95.0;120;80;3;1;0;0;1;1
+24851;17543;1;150;54.0;110;80;1;1;0;0;0;0
+24852;14607;2;160;60.0;120;80;1;1;1;0;1;0
+24853;19586;2;175;76.0;115;60;3;1;0;0;1;1
+24854;18309;1;158;52.0;140;90;1;1;0;0;1;1
+24856;21911;1;155;90.0;120;80;3;3;0;0;1;0
+24857;21033;2;169;74.0;120;80;2;1;0;0;0;1
+24858;17566;2;173;50.0;120;80;3;1;1;0;1;1
+24859;19054;1;154;77.0;120;80;1;1;0;0;0;0
+24860;23404;1;164;82.0;110;70;2;1;0;0;1;1
+24861;21055;1;174;70.0;130;80;1;1;0;0;1;0
+24862;20524;1;164;74.0;90;60;1;2;0;0;1;1
+24863;20675;2;180;75.0;120;80;1;1;0;0;0;0
+24864;19016;1;160;58.0;120;80;1;1;0;0;1;0
+24865;17495;1;159;69.0;140;90;1;2;0;0;1;0
+24866;19140;2;171;89.0;150;100;1;1;1;1;1;1
+24872;14434;1;162;58.0;120;80;1;1;0;0;1;0
+24874;22405;1;161;60.0;160;80;2;2;0;0;1;1
+24875;17382;1;172;71.0;150;90;2;1;0;0;1;1
+24876;18996;2;181;99.0;110;70;1;1;0;0;1;0
+24878;20289;2;171;71.0;150;90;1;1;0;0;1;1
+24879;19025;1;184;70.0;140;100;1;1;0;0;1;0
+24880;20465;1;167;90.0;150;90;1;1;0;0;1;1
+24881;19829;1;148;65.0;120;80;1;1;0;0;1;1
+24882;14777;2;165;48.0;120;80;1;1;0;0;1;0
+24884;14505;1;170;68.0;140;90;2;1;0;0;0;1
+24885;19549;1;147;90.0;160;100;3;3;0;0;1;1
+24886;18300;1;158;95.0;140;90;3;1;0;0;1;1
+24888;19530;2;176;98.0;130;79;3;1;0;0;1;1
+24889;23448;2;168;66.0;120;80;1;1;1;1;1;1
+24890;16716;1;152;72.0;130;80;1;1;0;0;1;0
+24891;18280;1;156;71.0;120;80;2;1;0;0;1;1
+24893;22097;2;165;65.0;130;80;1;1;1;0;1;1
+24894;19179;1;160;66.0;110;70;1;1;0;0;1;0
+24895;23488;2;170;72.0;140;90;1;1;0;0;1;1
+24896;18990;1;166;103.0;120;70;1;1;0;0;1;1
+24897;20467;1;153;80.0;140;90;1;3;0;0;1;1
+24898;15973;1;168;88.0;120;80;2;2;0;0;0;1
+24899;18332;2;172;75.0;120;80;1;1;0;0;1;0
+24900;19881;1;168;65.0;100;70;1;1;0;0;0;1
+24901;18062;1;160;98.0;130;90;1;1;0;0;1;1
+24903;16739;1;152;101.0;150;100;1;1;0;1;0;1
+24904;20350;1;163;66.0;120;80;1;1;0;0;1;1
+24905;21176;2;160;54.0;100;70;1;1;1;0;1;0
+24909;21926;1;156;56.0;120;80;1;1;0;0;1;0
+24910;21089;2;170;79.0;120;70;1;1;0;0;1;0
+24912;20992;2;176;95.0;168;1110;2;2;0;0;1;1
+24913;21103;1;162;73.0;140;90;3;3;0;0;1;1
+24917;21210;1;155;73.0;180;100;1;1;0;0;1;1
+24918;20223;2;176;110.0;130;80;3;1;0;0;1;1
+24921;16592;1;162;59.0;110;70;1;1;0;0;1;1
+24922;22816;1;167;78.0;120;80;1;1;0;0;1;0
+24923;19523;1;160;60.0;120;80;1;1;0;0;1;0
+24924;18162;1;156;65.0;110;70;1;1;0;0;1;0
+24925;21900;2;171;93.0;150;100;3;3;0;0;1;1
+24926;16580;1;162;64.0;130;90;1;1;0;0;1;1
+24928;19012;1;160;92.0;160;1000;1;1;0;1;1;1
+24929;21835;2;166;86.0;140;90;1;1;0;0;0;1
+24930;15414;1;161;95.0;105;70;1;1;0;1;1;0
+24932;20557;2;170;69.0;120;80;1;1;1;0;1;1
+24933;19158;1;167;78.0;120;80;2;2;0;0;1;0
+24934;17539;1;167;72.0;110;80;1;1;0;0;1;0
+24935;21902;1;164;96.0;120;80;1;1;0;0;1;1
+24938;14386;1;163;72.0;120;60;1;2;0;0;1;1
+24939;21246;1;172;74.0;120;80;1;1;0;0;1;1
+24940;23277;2;182;83.0;150;90;2;1;0;0;0;1
+24941;20610;1;165;75.0;120;80;1;1;0;0;1;0
+24947;18171;1;165;94.0;110;70;1;1;0;0;1;0
+24948;19598;1;165;87.0;150;100;1;2;0;0;0;1
+24949;18754;1;150;67.0;90;60;1;1;0;0;1;0
+24950;21989;1;164;110.0;110;80;3;1;0;0;1;1
+24952;20952;1;156;105.0;130;80;1;1;0;1;1;1
+24955;15266;2;170;80.0;130;90;1;1;0;0;1;1
+24956;16062;2;185;84.0;120;80;1;1;0;0;1;0
+24957;16717;2;169;85.0;145;90;2;1;1;0;1;1
+24959;15009;1;161;75.0;140;90;2;1;0;0;1;1
+24960;14550;1;169;70.0;110;70;1;3;0;0;1;0
+24961;22471;2;168;83.0;140;90;3;1;1;1;1;1
+24962;15545;2;174;64.0;140;90;1;1;1;1;1;1
+24963;15507;2;166;69.0;120;80;1;1;0;0;0;1
+24965;20245;2;165;63.0;120;80;1;1;0;0;1;0
+24970;18934;2;165;66.0;120;80;1;1;0;0;1;0
+24971;21268;1;166;100.0;150;90;3;1;0;0;1;1
+24972;19748;1;160;72.0;160;100;1;1;0;0;1;1
+24973;20547;1;170;70.0;140;90;1;1;0;0;1;1
+24974;20384;1;168;74.0;120;80;1;1;0;0;1;0
+24975;18225;2;167;91.0;180;100;1;1;1;0;1;1
+24976;21733;1;168;65.0;120;80;1;1;0;0;0;0
+24978;22073;1;152;57.0;140;1000;1;1;0;0;1;1
+24979;21220;1;172;67.0;120;80;1;1;0;1;1;1
+24982;17339;1;168;59.0;120;80;1;1;0;0;1;1
+24983;20676;1;157;88.0;140;90;3;1;0;0;0;1
+24986;22466;1;158;73.0;110;70;2;1;0;0;1;0
+24987;15526;2;176;76.0;130;80;2;1;1;0;1;0
+24988;17350;1;166;93.0;100;80;1;1;0;0;1;1
+24989;14608;2;176;117.0;130;90;1;1;0;0;1;0
+24990;22010;1;156;54.0;130;80;1;1;0;0;1;1
+24991;21854;2;170;86.0;90;60;1;1;0;0;0;1
+24993;23389;2;168;55.0;120;80;3;3;0;0;0;1
+24994;17522;2;166;117.0;150;90;2;2;0;0;1;1
+24995;20327;1;164;65.0;130;80;1;1;0;0;1;0
+24996;19578;2;183;75.0;150;100;1;1;0;0;0;1
+24997;16173;1;158;83.0;130;80;1;1;0;0;1;1
+24998;16695;1;165;90.0;130;80;1;1;0;0;1;0
+25000;19711;1;168;52.0;150;80;1;1;0;0;1;1
+25002;23237;1;162;68.0;140;90;1;1;0;0;1;0
+25003;18895;1;159;78.0;150;90;3;3;0;0;1;1
+25006;17335;2;166;64.0;90;60;1;2;0;0;1;0
+25007;19674;1;152;60.0;120;80;1;1;0;0;0;0
+25008;23191;1;156;90.0;130;90;1;1;0;0;1;1
+25009;18962;2;160;100.0;160;100;1;2;1;1;1;1
+25010;21468;1;158;63.0;140;90;1;1;0;0;1;1
+25012;17583;2;167;95.0;120;80;1;1;0;0;1;0
+25013;21837;1;168;68.0;120;80;1;1;0;0;1;0
+25014;19308;1;168;68.0;120;80;1;1;0;0;1;0
+25015;19052;2;164;68.0;150;80;2;1;1;0;1;1
+25016;19190;1;163;82.0;150;90;1;1;0;0;1;1
+25017;15453;2;167;60.0;110;80;1;1;0;0;1;0
+25019;16844;1;173;69.0;110;70;1;1;0;0;1;0
+25021;22690;1;170;70.0;100;70;1;1;0;0;0;1
+25022;22382;2;168;92.0;150;90;1;1;0;0;1;1
+25023;20298;1;176;116.0;130;90;3;1;0;0;0;1
+25024;21144;1;163;72.0;145;90;3;2;0;0;1;1
+25026;15466;2;174;74.0;110;70;1;1;0;0;1;1
+25027;18979;1;169;85.0;140;80;1;1;0;0;1;1
+25028;14426;2;170;83.0;110;70;1;1;1;1;1;0
+25030;18785;1;153;48.0;140;80;2;2;0;0;1;0
+25031;21179;1;168;59.0;120;60;1;1;0;0;1;0
+25032;19051;2;169;72.0;120;80;1;1;1;1;0;0
+25034;16749;2;167;72.0;120;80;1;1;1;0;1;0
+25035;18479;1;143;44.0;130;90;3;3;0;0;1;1
+25038;18245;1;152;74.0;140;90;2;1;0;0;1;0
+25039;18818;1;158;63.0;110;70;1;1;0;0;0;1
+25041;18357;1;160;57.0;140;80;3;1;0;0;1;1
+25042;16778;2;170;80.0;120;80;1;1;0;1;1;0
+25043;15093;2;178;68.0;110;80;1;1;1;0;1;0
+25045;15192;1;169;93.0;110;70;2;1;0;0;1;0
+25046;20011;1;160;76.0;80;130;1;1;0;0;1;1
+25048;22594;1;154;71.0;170;100;1;1;0;0;1;1
+25049;19159;1;173;69.0;120;80;1;3;0;0;1;0
+25050;18253;1;158;73.0;115;70;1;1;0;1;0;0
+25051;18978;1;161;68.0;90;60;1;1;0;0;0;0
+25052;17587;2;182;85.0;160;120;1;1;0;0;1;0
+25053;20412;1;168;67.0;120;70;2;1;0;0;0;0
+25054;23324;1;178;75.0;140;90;1;1;0;0;1;1
+25055;19585;1;174;69.0;140;80;1;1;0;0;1;1
+25056;18182;1;169;75.0;120;80;1;1;0;0;1;0
+25057;18995;1;162;88.0;120;80;1;1;0;0;0;0
+25058;23241;1;151;83.0;130;80;1;2;0;0;1;1
+25059;19698;2;170;98.0;140;90;3;3;0;0;1;0
+25061;21027;1;168;78.0;120;80;2;2;0;0;0;1
+25062;19939;1;178;56.0;120;80;1;1;0;0;0;0
+25063;21132;1;170;72.0;130;80;1;1;0;0;0;1
+25065;20240;2;163;62.0;180;100;1;1;0;1;1;1
+25068;18499;2;177;98.0;120;80;3;3;0;0;1;0
+25069;18845;1;155;76.0;125;80;1;1;0;0;0;1
+25070;16161;1;158;73.0;120;80;1;1;0;0;1;0
+25071;18216;1;165;103.0;160;100;1;1;0;0;1;1
+25072;21124;2;170;65.0;140;90;1;1;0;0;1;0
+25073;19152;1;158;57.0;130;90;1;1;0;0;1;0
+25074;15302;1;159;56.0;130;40;1;1;0;0;1;1
+25077;19029;1;152;87.0;120;80;1;1;0;0;1;0
+25078;14886;1;158;57.0;110;70;1;1;0;0;1;0
+25079;22689;2;175;80.0;120;80;1;1;0;0;1;0
+25080;22874;1;171;78.0;120;80;1;1;0;0;1;0
+25082;19557;1;160;58.0;120;80;1;1;0;0;1;0
+25083;20472;1;167;85.0;120;80;1;1;0;0;1;1
+25084;16593;2;170;89.0;120;80;1;1;0;0;1;0
+25085;17507;1;169;75.0;120;80;1;1;0;0;0;0
+25086;21092;1;165;71.0;120;80;3;1;0;0;0;1
+25087;21853;1;159;98.0;150;80;2;1;0;0;1;1
+25088;21155;1;156;106.0;180;130;1;1;0;0;1;1
+25089;19897;1;159;76.0;120;80;1;1;0;0;0;1
+25090;23426;1;170;85.0;130;80;1;1;0;0;1;1
+25093;14730;2;165;69.0;120;80;1;1;0;0;0;1
+25096;18442;2;168;56.0;120;80;1;1;0;0;1;0
+25097;16171;2;166;76.0;130;90;1;1;0;0;1;1
+25098;20562;1;181;87.0;120;80;1;1;0;0;1;0
+25099;18787;2;167;67.0;120;90;1;1;0;0;0;0
+25100;17471;1;150;66.0;110;70;1;1;0;0;1;1
+25103;18814;1;164;75.0;140;90;2;1;0;0;1;1
+25104;16762;2;174;66.0;110;80;1;1;0;0;1;0
+25105;18263;1;156;70.0;110;70;1;1;0;0;1;0
+25106;22681;1;163;72.0;160;120;1;1;0;0;0;1
+25108;20502;2;162;65.0;120;80;1;1;0;0;1;0
+25109;21883;1;169;76.0;120;80;1;1;0;0;1;1
+25110;23454;1;158;61.0;160;80;1;1;0;0;1;1
+25111;18831;1;160;58.0;130;90;1;1;0;0;1;1
+25112;21016;2;169;68.0;105;65;2;1;0;0;1;0
+25113;17542;2;168;74.0;168;74;1;2;1;0;1;1
+25114;16787;1;168;61.0;120;70;1;1;0;0;1;0
+25115;17387;1;168;63.0;100;80;1;1;0;0;1;0
+25116;22664;2;180;72.0;130;80;1;1;1;0;1;0
+25117;16975;2;170;81.0;140;90;2;2;1;1;1;1
+25118;21989;1;170;71.0;110;80;1;1;0;0;1;0
+25120;19030;2;170;76.0;120;70;1;1;1;1;1;0
+25123;18253;2;170;70.0;120;70;1;1;1;0;0;0
+25125;19708;1;153;63.0;90;60;2;1;0;0;0;0
+25126;23438;2;168;66.0;150;100;2;2;0;0;1;0
+25127;19130;1;162;60.0;150;85;3;1;0;0;1;1
+25128;20536;2;170;64.0;110;70;1;1;1;1;1;0
+25129;23247;1;156;80.0;120;80;1;1;0;0;1;0
+25130;14302;1;153;57.0;100;60;1;1;0;0;1;0
+25132;18249;1;169;64.0;120;80;1;1;0;0;0;0
+25135;21938;2;160;68.0;110;70;1;1;0;0;1;0
+25136;18206;2;159;80.0;120;80;1;1;0;0;1;0
+25139;18313;2;177;78.0;120;80;1;1;0;0;1;1
+25140;17419;2;160;60.0;120;80;1;1;1;0;1;0
+25141;18314;1;157;110.0;130;90;1;1;0;0;1;1
+25142;19042;2;169;75.0;130;80;1;1;1;0;1;0
+25145;21900;1;168;65.0;120;80;1;1;0;0;1;0
+25147;18119;1;156;65.0;120;80;1;1;0;0;1;0
+25148;22177;1;164;94.0;110;70;3;1;0;0;1;1
+25149;14533;1;156;75.0;90;80;1;2;0;0;1;0
+25150;22568;2;178;123.0;147;108;3;3;0;1;1;1
+25152;21412;1;168;104.0;130;80;2;2;0;0;0;1
+25153;21957;1;161;79.0;130;80;1;1;0;0;1;1
+25156;21756;1;165;57.0;117;84;2;1;0;0;1;0
+25159;18959;1;160;85.0;130;90;3;3;0;0;1;1
+25160;22595;1;166;78.0;130;80;1;1;0;0;1;1
+25161;22697;2;165;67.0;165;67;1;1;0;0;1;1
+25163;20730;2;170;69.0;140;80;3;3;0;0;0;1
+25164;20403;1;156;78.0;110;70;1;1;0;0;1;0
+25165;20999;2;168;78.0;110;80;1;1;0;0;0;0
+25168;20542;1;169;56.0;120;80;1;1;0;0;1;0
+25169;18980;2;176;88.0;140;90;1;1;0;0;1;1
+25170;16920;2;168;57.0;120;80;1;1;0;0;1;1
+25171;22758;2;172;95.0;140;80;3;3;0;0;1;1
+25175;22556;1;169;85.0;115;80;2;1;0;0;1;1
+25176;16798;1;160;60.0;160;100;1;1;0;0;1;1
+25177;21205;1;162;85.0;120;80;1;1;0;0;1;0
+25178;19167;2;160;72.0;130;80;2;2;0;0;0;0
+25179;21262;1;165;65.0;120;80;1;1;0;0;0;1
+25181;15106;2;179;60.0;95;70;1;1;1;0;1;0
+25182;21120;1;168;110.0;120;80;1;1;0;0;1;1
+25183;20908;1;160;73.0;120;80;3;1;0;0;1;0
+25185;20487;2;168;74.0;130;90;1;1;0;0;1;1
+25189;19825;2;175;75.0;140;90;1;1;0;0;0;1
+25190;19038;1;170;69.0;130;90;3;3;0;0;1;1
+25192;15524;1;170;75.0;120;80;1;1;0;0;0;1
+25193;18276;1;148;71.0;120;80;1;2;0;0;0;1
+25194;16722;2;159;60.0;120;80;1;1;0;0;1;0
+25195;17652;1;154;45.0;100;70;2;1;0;0;1;0
+25196;15196;1;148;56.0;110;70;1;1;0;0;1;0
+25198;21168;2;170;58.0;120;80;1;1;0;0;1;0
+25200;20497;1;153;110.0;150;100;1;1;0;0;1;1
+25201;18906;1;169;59.0;120;80;1;1;0;0;0;0
+25203;17390;1;156;60.0;120;80;1;1;0;0;1;0
+25205;23243;2;178;82.0;160;80;1;1;1;1;1;1
+25206;18404;2;187;74.0;130;90;1;1;0;0;1;0
+25207;14559;1;162;73.0;110;80;1;1;0;0;1;0
+25209;16885;2;172;90.0;130;89;1;1;0;0;1;0
+25212;17627;1;166;89.0;120;80;1;1;0;0;1;0
+25214;15279;2;170;68.0;110;80;1;1;0;0;1;0
+25215;20408;2;165;90.0;140;80;1;1;1;1;1;1
+25216;15389;1;163;78.0;120;80;1;1;0;0;1;0
+25218;17791;2;167;65.0;120;80;1;1;0;0;1;1
+25219;21037;1;171;102.0;130;90;3;1;0;0;1;1
+25220;14383;1;155;61.0;110;70;2;2;0;0;0;0
+25221;22464;2;166;90.0;160;100;3;2;0;0;1;1
+25222;22557;1;156;90.0;130;80;1;1;0;0;1;1
+25223;14519;1;160;65.0;120;80;1;1;0;0;1;1
+25224;21034;1;168;64.0;140;90;2;1;0;0;0;1
+25226;16166;2;172;65.0;120;60;1;1;0;0;0;1
+25227;18441;1;162;82.0;110;70;1;1;0;0;1;0
+25231;18914;1;167;69.0;180;90;1;1;0;0;0;1
+25232;16507;1;158;102.0;180;1000;3;3;0;0;1;1
+25233;15318;2;175;92.0;120;80;1;1;1;0;1;0
+25234;21619;1;161;101.0;160;90;3;3;0;0;1;1
+25236;17624;2;165;72.0;110;70;2;1;0;0;1;1
+25237;18944;1;160;60.0;120;80;1;1;0;0;1;0
+25238;22444;1;157;65.0;120;70;3;1;0;0;1;1
+25239;17057;1;160;80.0;120;80;1;1;0;0;1;0
+25240;14605;1;155;65.0;130;80;1;1;0;0;1;0
+25243;15818;1;163;64.0;100;70;2;2;0;0;1;0
+25246;18357;1;175;76.0;120;80;1;1;0;0;1;0
+25247;21970;1;170;69.0;110;70;3;3;0;0;1;1
+25250;22797;2;167;70.0;150;100;1;1;0;0;1;0
+25251;18231;1;174;62.3;140;90;1;1;0;0;0;0
+25253;19538;1;168;70.0;120;80;2;1;0;0;1;1
+25255;14465;2;160;66.0;120;80;1;1;1;0;1;0
+25256;18372;1;163;98.0;90;60;1;1;0;0;0;0
+25257;21051;1;165;80.0;120;80;1;1;0;0;1;0
+25259;22383;1;165;72.0;130;70;1;1;0;0;1;1
+25260;16644;1;163;57.0;110;68;1;1;0;0;1;0
+25261;16799;2;173;87.0;120;80;1;1;1;1;1;0
+25262;20519;1;174;74.0;120;80;1;1;0;0;1;1
+25263;23328;1;158;79.0;140;80;1;1;0;0;1;0
+25264;19179;2;175;75.0;120;80;1;1;0;0;0;1
+25268;22100;2;167;69.0;140;90;1;1;0;0;1;1
+25271;15883;1;160;83.0;100;60;2;1;0;0;1;0
+25272;21065;1;166;76.0;120;80;2;1;0;0;0;1
+25273;16675;1;161;64.7;160;90;1;1;0;0;1;1
+25274;21709;1;145;52.0;110;70;1;1;0;0;1;1
+25277;18357;1;165;60.0;120;80;1;1;0;0;1;1
+25279;19566;2;168;65.0;120;70;1;1;0;0;0;0
+25280;21987;1;160;66.0;120;80;1;1;0;0;1;1
+25281;21391;2;170;72.0;120;80;1;1;1;0;1;0
+25282;20501;1;164;106.0;120;70;3;3;1;0;1;1
+25285;23517;1;157;76.0;130;90;1;2;0;0;1;0
+25287;21279;1;156;65.0;120;80;1;1;0;0;1;0
+25288;18049;1;161;49.0;120;80;1;1;0;0;1;1
+25289;20484;1;170;62.0;110;80;1;1;0;0;1;0
+25291;21788;2;169;65.0;120;80;1;1;0;0;1;0
+25293;22703;1;150;80.0;130;70;3;2;0;0;1;1
+25294;20450;1;154;94.0;150;90;1;1;0;0;1;1
+25295;20332;1;150;76.0;130;90;3;1;0;0;1;1
+25297;20358;2;173;81.0;130;80;2;2;0;0;1;0
+25298;21818;1;167;63.0;120;80;2;1;0;0;1;0
+25299;20422;1;158;61.0;110;70;1;1;0;0;1;0
+25300;21327;2;170;99.0;150;90;1;1;0;0;1;1
+25301;19005;1;165;71.0;120;80;1;1;0;0;1;0
+25303;21137;2;174;62.0;100;70;1;2;0;0;1;1
+25304;19060;2;172;83.0;120;80;1;1;0;0;1;1
+25305;16122;1;161;62.0;110;80;2;1;0;0;1;0
+25306;17500;2;160;62.0;120;80;1;1;0;0;1;0
+25307;23139;2;170;68.0;160;90;2;2;0;0;1;1
+25308;17458;1;150;42.0;110;70;3;1;0;0;1;0
+25309;17581;2;176;94.0;120;80;2;1;0;0;1;0
+25312;17659;2;175;70.0;140;80;1;1;0;0;1;1
+25313;19789;2;180;75.0;120;80;1;1;0;0;1;1
+25314;22398;2;163;50.0;907;70;3;3;0;0;1;1
+25316;21057;1;158;68.0;130;80;1;1;0;0;1;1
+25317;19661;1;164;75.0;110;70;1;1;0;0;1;0
+25318;14630;2;168;71.0;110;70;1;1;1;1;0;1
+25319;21889;2;171;74.0;150;90;1;1;1;0;1;1
+25320;15214;2;151;53.0;110;70;1;1;0;0;1;0
+25321;19676;1;156;71.0;140;100;1;1;0;0;1;1
+25325;20410;1;166;72.0;120;80;2;1;0;0;0;0
+25326;22565;1;149;65.0;120;80;3;3;0;0;1;1
+25327;19232;1;152;61.0;140;90;1;1;0;0;1;1
+25329;17998;1;160;64.0;110;80;3;3;0;0;1;0
+25330;22910;1;169;81.0;140;90;2;1;0;0;1;1
+25331;20220;1;148;70.0;140;80;2;2;0;0;0;1
+25332;16754;1;160;81.0;120;80;1;1;0;0;1;1
+25333;19627;1;168;78.0;120;70;2;1;0;0;1;0
+25334;22481;2;164;57.0;110;70;1;1;0;0;1;1
+25335;17519;1;158;66.0;150;90;1;1;0;0;1;1
+25337;21895;1;170;78.0;140;90;2;2;0;0;0;1
+25338;18800;1;158;105.0;120;80;2;1;0;0;1;1
+25340;19056;2;170;60.0;130;80;3;1;0;0;1;0
+25342;16656;1;170;80.0;130;80;1;1;0;0;1;1
+25343;16619;1;154;72.5;150;80;1;1;0;0;1;1
+25344;21888;2;176;90.0;140;90;1;1;0;0;1;1
+25345;15330;2;179;105.0;140;90;1;1;1;1;1;1
+25346;18128;1;160;90.0;150;90;2;1;0;0;1;1
+25348;19573;1;151;57.0;140;8099;1;1;0;0;0;0
+25349;20477;1;157;71.0;120;80;1;1;0;0;1;1
+25350;18930;1;170;70.0;120;80;1;1;0;0;1;0
+25351;16890;2;169;102.0;110;80;1;1;0;0;1;0
+25353;17660;2;170;65.0;120;80;1;1;0;0;1;0
+25354;19836;1;165;68.0;140;85;3;1;0;0;1;1
+25355;21241;1;164;70.0;140;90;1;1;0;0;1;1
+25356;21146;1;164;74.0;120;80;1;3;0;0;1;1
+25357;20895;1;162;75.0;140;90;1;3;0;0;0;1
+25358;21393;1;170;70.0;120;80;1;1;0;0;0;0
+25359;19634;2;168;65.0;115;70;3;1;1;0;1;1
+25361;20274;1;156;81.0;150;100;1;1;0;0;1;1
+25362;18350;2;174;86.0;130;70;1;1;0;0;0;0
+25363;19867;2;166;87.0;120;80;1;1;0;0;1;0
+25364;15333;1;169;83.0;120;80;2;1;0;0;1;1
+25365;22500;2;164;62.0;120;80;1;1;0;0;1;1
+25368;22433;1;150;82.0;140;40;2;1;0;0;1;1
+25369;19605;1;162;80.0;125;80;2;1;0;0;1;0
+25371;17415;1;158;70.0;150;90;2;2;0;0;1;1
+25372;21928;1;152;62.0;130;80;2;1;0;0;1;1
+25373;23259;2;168;80.0;150;80;1;1;0;0;0;1
+25374;18097;1;167;127.0;100;80;2;3;0;0;1;0
+25376;20195;2;175;60.0;120;70;1;1;0;0;0;1
+25377;21213;1;158;82.0;120;80;2;1;0;0;1;1
+25379;20489;1;156;60.0;120;80;1;1;0;0;1;1
+25381;22815;1;168;64.0;130;80;2;2;0;0;0;1
+25382;19578;1;155;85.0;130;90;2;1;0;0;1;1
+25383;23609;1;164;73.0;120;80;1;1;0;0;1;1
+25385;22014;1;150;70.0;130;90;1;1;0;0;1;1
+25386;16150;1;169;72.0;130;90;1;1;0;0;1;0
+25389;21839;1;162;56.0;110;70;1;1;0;0;1;0
+25390;21297;2;166;52.0;120;80;1;1;0;0;1;0
+25393;20140;2;162;111.0;130;80;2;1;1;0;1;0
+25394;21060;1;168;87.0;120;80;1;1;0;0;1;0
+25396;21151;1;159;82.0;140;80;3;1;0;0;1;0
+25397;19739;1;169;82.0;120;80;1;1;0;0;0;1
+25398;15837;1;159;64.0;120;80;1;1;0;0;1;1
+25401;16697;1;161;57.0;120;80;1;1;0;0;1;0
+25402;20299;2;170;63.0;120;80;1;1;0;0;1;0
+25403;18140;1;162;61.0;100;70;1;2;0;0;1;0
+25404;21027;2;160;62.0;130;80;1;1;0;0;1;1
+25405;19657;1;165;65.0;120;80;1;1;0;0;0;1
+25406;23266;2;169;67.0;150;100;3;1;0;0;1;1
+25408;19786;1;158;58.0;120;70;1;1;0;0;0;1
+25409;21065;2;172;85.0;120;80;1;1;0;0;1;1
+25410;18510;2;170;75.0;160;90;1;1;0;0;1;1
+25413;14428;1;166;91.0;120;70;1;1;0;0;1;0
+25414;21892;2;168;64.0;110;80;1;1;0;0;1;1
+25415;23239;2;164;74.0;130;80;1;1;1;0;1;1
+25416;17981;1;153;75.0;180;100;1;1;0;0;1;1
+25417;19013;1;152;70.0;120;80;1;1;0;0;1;0
+25418;14752;1;170;79.0;120;80;1;1;0;0;0;0
+25419;19724;1;165;70.0;120;80;1;2;0;0;1;0
+25420;18171;1;167;81.0;120;80;1;1;0;0;1;1
+25422;22418;1;150;69.0;160;1000;1;1;0;0;0;0
+25425;21791;1;159;74.0;130;90;3;1;0;0;1;1
+25426;16859;1;157;63.0;120;80;1;1;1;1;0;0
+25429;20274;2;167;58.0;150;90;2;3;1;0;1;1
+25430;21308;2;174;65.0;150;90;3;1;1;0;1;1
+25432;14720;1;169;65.0;120;80;1;1;0;0;1;1
+25433;19454;1;164;60.0;100;60;3;1;0;0;1;1
+25434;21116;1;154;61.0;130;90;1;1;0;0;1;1
+25435;19568;1;163;62.0;100;70;1;1;0;0;0;0
+25436;18918;1;162;70.0;120;80;3;3;0;0;1;0
+25437;21308;1;156;66.0;150;100;1;1;0;0;1;0
+25440;23282;1;165;82.0;140;80;1;1;0;0;1;1
+25443;22523;2;170;66.0;110;70;1;1;0;0;1;0
+25444;16557;1;165;62.0;130;70;3;3;0;0;1;0
+25445;16623;1;159;75.0;120;80;1;1;0;0;0;0
+25447;19653;1;166;66.0;120;79;1;1;0;0;1;0
+25448;20403;1;168;85.0;150;100;1;2;0;0;1;1
+25450;21303;2;170;72.0;120;80;1;1;0;0;1;0
+25451;20418;2;167;74.0;140;100;3;1;0;0;1;1
+25453;17990;1;150;80.0;100;60;2;1;0;0;0;0
+25454;23391;2;183;95.0;120;80;2;3;0;0;1;0
+25455;15091;1;158;62.0;110;80;1;1;0;0;1;0
+25457;21685;2;169;81.0;150;90;2;2;0;0;1;1
+25459;20177;2;177;80.0;110;90;1;2;0;0;0;0
+25460;17505;1;171;94.0;140;90;1;1;0;0;1;1
+25461;17445;1;168;66.0;120;80;1;1;0;0;1;0
+25462;22028;1;167;82.0;120;90;3;1;0;0;1;0
+25463;21888;1;167;74.0;120;80;2;1;0;0;1;0
+25464;23382;1;169;83.0;120;70;1;1;0;1;1;0
+25466;21373;1;157;90.0;120;80;1;1;0;0;1;0
+25467;18309;1;162;66.0;120;80;1;1;0;0;0;0
+25471;22558;1;160;98.0;150;90;3;1;0;0;1;1
+25473;18257;1;164;84.0;110;70;2;1;0;0;1;0
+25474;22522;1;156;80.0;164;1088;1;1;0;0;1;1
+25475;20352;1;152;60.0;120;70;1;1;0;0;1;1
+25477;18092;2;186;96.0;150;80;2;1;0;0;1;1
+25478;20231;1;164;70.0;120;80;1;1;0;0;1;1
+25480;18571;1;156;65.0;120;80;1;1;0;0;1;0
+25481;18982;1;170;70.0;120;80;1;1;0;0;0;1
+25484;21322;2;175;70.0;110;70;1;3;0;0;1;0
+25485;18778;1;168;84.0;140;90;1;1;0;0;0;1
+25487;23454;1;165;75.0;130;80;1;1;0;0;1;1
+25488;15438;1;163;54.0;110;70;1;1;0;0;0;0
+25490;18259;1;162;68.0;110;70;1;1;0;0;1;0
+25491;18151;1;155;55.0;110;70;1;1;0;0;1;0
+25492;17970;1;167;68.0;140;90;1;1;0;0;0;1
+25493;16100;1;153;85.0;130;80;1;1;0;0;1;0
+25494;15532;1;166;82.0;120;80;1;1;0;0;1;0
+25496;19842;1;162;79.0;120;80;1;1;0;0;1;0
+25498;22538;2;175;85.0;120;80;1;1;0;0;0;1
+25499;20536;1;157;53.0;110;70;2;1;0;0;0;0
+25500;14451;1;154;63.0;140;90;1;1;0;0;0;1
+25504;22916;1;165;65.0;120;60;1;3;0;0;0;0
+25505;22592;2;190;104.0;150;90;1;1;0;0;1;1
+25506;21364;1;160;52.0;120;80;3;3;0;0;1;1
+25507;23318;1;164;78.0;140;80;1;1;0;0;1;1
+25509;14433;1;160;70.0;120;80;1;1;0;0;0;0
+25510;14479;1;165;60.0;120;80;2;1;0;0;1;0
+25511;22100;2;180;109.0;120;80;2;1;0;0;1;1
+25512;19831;1;163;110.0;120;80;1;1;0;0;1;0
+25514;21078;2;158;58.0;120;80;3;3;1;0;1;0
+25515;23244;2;174;78.0;140;90;1;1;1;0;1;1
+25516;22546;1;168;75.0;120;80;1;1;0;0;1;0
+25517;20169;2;175;95.0;180;120;3;1;0;0;1;1
+25518;21743;1;165;76.0;100;70;3;1;0;0;1;0
+25521;14494;1;164;53.0;100;70;1;1;0;0;1;1
+25524;19573;1;152;65.0;100;70;1;1;0;0;1;0
+25526;19170;1;166;89.0;90;60;1;1;0;0;1;0
+25527;20421;2;169;83.0;130;90;1;1;0;0;1;1
+25529;22761;1;153;56.0;120;80;1;1;0;0;0;1
+25530;19677;1;160;60.0;120;80;1;1;0;0;1;1
+25531;22672;1;168;86.0;120;80;3;1;0;0;1;1
+25532;23153;2;173;70.0;110;80;1;1;0;0;0;1
+25534;20391;1;155;41.0;145;100;2;1;0;0;1;1
+25536;22107;1;168;78.0;120;80;1;1;0;0;1;0
+25537;14615;1;165;58.0;120;80;1;1;0;0;1;0
+25539;20177;1;155;51.0;100;70;1;1;0;0;0;0
+25540;23120;1;160;100.0;120;80;1;1;0;0;0;0
+25541;18210;1;160;65.0;130;80;1;1;0;0;0;0
+25542;20986;1;156;54.0;110;60;1;1;0;0;1;0
+25543;20367;2;181;79.0;20;80;1;1;0;0;1;1
+25544;18944;2;178;77.0;110;70;1;1;0;0;1;0
+25545;18238;1;165;79.0;140;90;1;1;0;0;1;1
+25546;20483;1;160;104.0;140;90;1;1;0;0;0;1
+25547;18752;2;174;73.0;120;90;1;1;0;1;1;0
+25548;16558;1;156;75.0;160;100;3;1;0;0;1;1
+25549;15391;1;165;66.0;110;70;1;1;0;0;1;0
+25550;19010;1;166;48.0;120;80;1;1;0;0;0;1
+25551;23418;2;174;64.0;120;80;1;1;0;0;1;0
+25552;20442;2;169;73.0;130;80;3;3;0;0;1;0
+25553;20433;1;165;65.0;140;90;1;1;0;0;1;1
+25555;23187;1;166;87.0;162;85;3;2;1;1;1;1
+25556;17356;1;159;80.0;120;80;1;1;0;1;1;0
+25558;17298;2;165;79.0;140;100;1;1;0;0;1;1
+25559;19525;1;156;59.0;120;80;1;1;0;1;1;0
+25560;23268;1;158;65.0;130;80;1;1;0;0;1;1
+25561;21966;1;162;63.0;110;80;1;1;0;0;1;0
+25566;20492;2;175;69.0;125;75;1;1;0;0;0;0
+25568;19041;2;173;74.0;130;80;2;1;0;0;0;1
+25571;21816;1;158;83.0;120;80;3;2;0;0;1;1
+25573;15936;1;161;59.0;110;70;1;1;1;0;1;0
+25576;15981;1;159;110.0;130;80;1;1;0;0;0;0
+25577;22086;2;185;90.0;140;90;3;1;0;1;1;1
+25578;19078;1;158;74.0;160;100;1;1;0;0;1;0
+25579;16795;1;169;80.0;120;80;1;1;0;0;1;0
+25580;22521;1;148;71.0;140;90;1;1;0;0;1;1
+25581;20355;2;154;55.0;120;80;1;1;0;0;0;0
+25582;18398;1;162;60.0;120;80;1;2;1;1;1;0
+25583;20876;1;156;58.0;130;80;1;1;0;0;1;0
+25584;16741;2;172;69.0;120;80;2;1;0;0;1;0
+25587;14588;2;175;70.0;120;80;1;1;0;0;1;0
+25588;15975;1;165;65.0;120;80;1;1;0;0;0;1
+25590;14514;1;152;68.0;120;80;1;1;0;0;1;0
+25591;18199;1;166;72.0;110;80;2;2;0;0;0;1
+25593;22446;1;157;64.0;180;90;1;1;0;0;1;1
+25595;17996;1;169;75.0;110;70;1;1;0;0;1;0
+25596;15245;1;161;73.0;120;80;1;1;0;0;0;0
+25597;18433;2;165;65.0;120;80;1;1;0;0;1;0
+25598;16856;1;167;65.0;120;80;1;1;0;0;0;0
+25599;19958;2;158;83.0;130;90;1;1;0;0;0;1
+25600;16090;1;177;72.0;170;100;2;1;0;0;1;0
+25603;21980;1;165;60.0;120;80;1;1;0;0;1;1
+25604;18253;1;153;62.0;120;70;1;1;0;0;0;0
+25605;21820;1;155;81.0;150;90;2;1;0;0;1;1
+25606;22647;1;158;98.0;120;80;1;2;0;0;0;1
+25608;19066;2;160;70.0;110;80;1;1;0;0;1;0
+25609;23137;2;161;64.0;140;80;1;1;0;0;1;1
+25610;16872;1;167;68.0;120;80;1;1;0;0;1;0
+25611;19741;1;153;53.0;140;90;1;1;0;0;1;0
+25612;17422;1;144;55.0;110;70;1;1;0;0;1;0
+25613;18274;2;189;98.0;160;100;1;2;0;0;1;1
+25616;18056;2;174;79.0;120;80;2;1;0;0;1;0
+25617;18235;1;160;57.0;100;70;1;1;0;0;0;0
+25618;21222;1;155;80.0;120;80;1;1;0;0;1;0
+25619;18186;1;158;68.0;160;1000;1;1;0;0;1;1
+25621;15295;1;156;73.0;130;90;1;2;0;0;1;1
+25622;19770;2;159;65.0;130;90;2;1;0;0;1;0
+25624;19616;1;170;65.0;12;80;1;1;0;0;0;1
+25625;19946;1;157;72.0;140;90;3;3;0;0;1;0
+25626;18160;1;166;45.0;120;80;1;1;0;0;0;1
+25627;22548;2;152;62.0;137;70;3;3;1;1;1;1
+25628;14490;2;185;75.0;120;80;1;1;0;0;0;0
+25629;22489;1;166;65.0;110;70;1;1;0;0;1;1
+25630;14519;1;159;59.0;110;70;2;1;0;0;1;0
+25631;21390;2;172;86.0;150;90;2;3;0;0;1;1
+25632;15291;2;180;77.0;150;100;1;1;0;0;0;1
+25633;15905;1;160;85.0;135;100;1;1;0;0;1;1
+25634;20992;1;157;84.0;80;60;1;1;0;0;1;0
+25635;21367;2;170;76.0;120;80;1;1;0;0;1;0
+25636;18985;1;162;65.0;130;80;1;1;0;0;1;0
+25637;21988;2;167;80.0;120;80;3;3;0;0;1;0
+25639;20884;1;166;100.0;130;90;2;3;0;0;0;1
+25642;17528;1;165;75.0;120;70;1;3;0;0;1;0
+25643;21278;1;160;60.0;100;60;1;1;0;0;1;0
+25644;21003;2;162;87.0;220;140;2;2;1;1;1;1
+25645;21227;1;160;60.0;120;80;1;1;0;0;1;0
+25646;18291;2;192;76.0;120;80;1;1;1;1;1;0
+25647;14547;2;170;55.0;110;60;1;1;0;0;1;0
+25648;18141;2;173;113.0;120;70;3;3;0;0;1;0
+25649;17436;1;170;100.0;120;80;1;1;0;0;1;0
+25650;22768;1;148;62.0;160;80;2;1;0;1;0;0
+25651;14460;1;176;87.0;110;80;2;1;0;0;1;0
+25654;18782;2;164;100.0;210;126;2;2;0;0;1;1
+25656;22583;1;158;59.0;120;80;1;1;0;0;1;0
+25657;18581;1;156;56.0;120;80;1;1;0;0;1;0
+25658;15081;1;172;72.0;110;70;1;1;0;0;1;0
+25659;19089;1;164;93.0;150;90;2;1;0;0;0;1
+25660;19573;2;174;97.0;120;80;3;3;0;0;1;0
+25661;19818;1;156;58.0;120;80;1;1;0;0;1;0
+25662;16872;2;176;95.0;130;90;1;1;0;0;1;1
+25663;20675;2;167;72.0;120;80;1;1;0;0;1;1
+25664;22023;1;160;88.0;120;80;1;1;0;0;1;0
+25665;19667;1;160;90.0;120;79;2;1;0;0;1;0
+25667;23394;1;162;63.0;140;90;1;1;0;0;1;1
+25668;16634;1;170;85.0;120;80;1;1;0;0;1;0
+25669;18997;1;167;57.0;140;100;3;3;0;0;0;1
+25670;19938;2;165;80.0;140;90;3;1;1;0;1;1
+25672;18795;1;165;64.0;110;70;1;1;0;0;0;0
+25673;18912;1;153;70.0;110;80;1;1;0;0;1;0
+25674;20370;2;167;88.0;160;100;1;1;0;0;1;1
+25675;22691;2;168;74.0;120;80;1;1;1;1;0;1
+25676;16037;1;163;75.0;100;70;1;2;0;0;1;1
+25678;19874;2;168;69.0;130;80;1;1;0;0;1;0
+25681;21088;2;171;84.0;140;90;1;1;0;0;1;1
+25682;20528;1;158;63.0;120;90;1;1;0;0;1;0
+25683;21773;2;170;55.0;110;70;1;1;1;0;1;0
+25684;19040;1;174;70.0;120;80;1;1;0;0;0;0
+25685;19831;2;165;70.0;100;60;1;1;0;0;1;0
+25686;17650;2;172;80.0;122;85;1;1;0;0;0;0
+25687;16126;2;170;60.0;120;80;2;1;0;0;1;1
+25688;18339;1;170;70.0;120;80;3;3;0;0;1;1
+25692;20637;1;157;120.0;110;70;1;1;0;0;1;0
+25693;17474;1;165;65.0;120;80;1;1;0;0;0;0
+25694;19785;2;187;84.0;120;80;1;1;0;0;1;1
+25698;21857;1;168;74.0;140;90;1;1;0;0;1;1
+25699;18413;1;164;65.0;120;80;1;1;0;0;0;0
+25701;21882;1;141;55.0;140;90;3;1;0;0;1;1
+25702;17428;1;155;51.0;140;100;2;2;0;0;1;1
+25703;21775;1;168;88.0;120;80;1;1;0;0;1;0
+25704;15928;1;156;59.0;120;80;1;1;0;0;1;1
+25705;17426;2;182;80.0;115;60;1;1;1;0;1;0
+25707;21026;2;166;71.0;130;90;1;2;0;0;1;0
+25708;19473;2;170;65.0;130;90;3;1;0;0;1;1
+25711;15809;1;158;68.0;100;60;1;1;0;1;1;0
+25712;19660;2;178;100.0;120;70;1;1;0;0;1;0
+25714;22035;1;175;74.0;130;90;1;1;0;0;1;0
+25715;21132;2;176;86.0;110;70;1;1;1;0;1;0
+25716;22887;2;169;67.0;120;80;1;1;0;0;1;0
+25717;18249;1;164;60.0;110;70;3;3;0;0;1;1
+25718;23425;1;162;76.0;120;80;1;1;0;0;1;1
+25719;18929;2;165;53.0;120;80;1;1;1;0;1;0
+25720;21141;1;159;83.0;140;70;3;1;0;0;1;1
+25721;21319;1;172;73.0;120;80;1;1;0;0;1;0
+25722;20960;1;158;93.0;120;80;1;1;0;0;1;0
+25723;15164;1;158;57.0;100;70;1;1;0;0;0;0
+25724;17372;1;168;65.0;120;80;1;1;0;0;1;0
+25726;18485;1;170;62.0;130;80;1;1;0;0;1;0
+25727;20010;1;155;78.0;120;80;1;1;0;0;0;1
+25728;15289;2;158;66.0;120;80;1;1;1;0;1;0
+25730;15231;1;165;114.0;120;80;1;1;0;0;1;0
+25731;21695;1;160;104.0;130;80;3;3;0;0;0;1
+25732;15298;2;174;73.0;125;80;2;2;0;0;1;1
+25733;19932;1;159;51.0;110;70;1;1;0;0;1;1
+25734;15825;2;172;75.0;120;80;1;1;0;0;1;0
+25735;19649;1;162;68.0;120;80;1;1;0;0;0;0
+25737;21411;1;154;59.0;110;70;3;3;0;0;1;0
+25739;18294;1;167;75.0;110;60;1;1;0;0;1;0
+25740;18124;1;164;61.0;140;90;1;1;0;0;1;1
+25741;16527;1;170;85.0;120;80;1;1;0;0;1;1
+25742;16152;1;163;58.0;110;70;1;1;0;0;1;0
+25743;15240;2;175;68.0;140;90;1;1;1;0;0;1
+25744;17478;1;162;60.0;120;80;1;1;0;0;1;0
+25745;15852;1;176;94.0;120;80;2;1;0;0;0;0
+25746;23411;1;152;73.0;120;90;1;1;0;0;1;0
+25748;21299;2;173;80.0;130;70;2;1;0;0;1;1
+25749;17656;1;165;68.0;150;80;2;1;0;0;1;1
+25750;21783;1;165;60.0;110;70;1;1;0;0;1;1
+25752;21880;1;155;79.0;140;80;3;3;0;0;1;1
+25753;15188;2;169;65.0;110;70;1;1;0;0;1;0
+25757;15086;2;190;165.0;160;60;1;1;0;0;0;1
+25761;21410;2;175;65.0;120;80;1;1;1;1;1;1
+25763;21257;2;179;74.0;130;60;2;1;0;0;0;1
+25764;21115;1;155;74.0;140;90;3;1;0;0;1;1
+25765;17831;2;173;73.0;110;80;1;1;1;0;1;1
+25766;21865;1;170;86.0;130;80;3;1;0;0;1;0
+25767;19738;1;158;65.0;130;90;1;1;0;0;1;1
+25768;14744;2;175;75.0;120;60;2;1;0;0;1;0
+25769;16987;1;163;61.0;150;90;1;1;0;0;1;1
+25770;19044;2;167;56.0;110;80;1;1;0;0;0;1
+25772;21060;1;178;69.0;120;90;1;1;0;0;0;1
+25773;17515;2;172;96.0;130;90;1;1;0;1;1;1
+25775;15991;1;155;98.0;160;100;3;1;0;0;0;1
+25776;21678;1;158;90.0;120;80;1;1;0;0;1;0
+25778;19529;1;160;60.0;120;80;1;1;0;0;0;1
+25780;15965;1;160;63.0;130;70;1;1;0;0;1;0
+25781;16899;2;170;88.0;120;80;3;1;1;0;1;1
+25782;23093;2;166;69.0;110;70;3;1;0;0;1;1
+25783;17535;2;165;62.0;120;80;1;1;0;0;1;0
+25784;14591;1;165;57.0;110;70;2;1;0;0;1;0
+25785;18239;2;168;76.0;130;90;1;1;0;0;1;0
+25786;18094;2;172;74.0;90;60;1;1;0;0;1;0
+25788;16960;1;165;89.0;160;89;1;1;0;0;0;1
+25789;16302;1;156;55.0;120;80;1;1;0;0;0;0
+25790;21370;1;160;78.0;120;80;1;1;0;0;1;1
+25791;22874;2;150;68.0;130;80;1;1;0;0;1;0
+25792;19793;1;165;70.0;120;80;1;1;0;0;1;0
+25795;19548;1;169;75.0;120;80;1;1;0;0;1;0
+25796;23527;2;160;60.0;120;70;1;1;1;0;1;0
+25797;15849;1;159;63.0;150;90;2;1;0;0;1;1
+25798;14591;1;159;84.0;110;80;2;1;0;0;1;0
+25799;23675;1;140;48.0;170;100;2;1;0;0;1;1
+25800;17801;1;152;71.0;90;60;1;1;0;0;1;0
+25801;18224;1;160;55.0;120;80;1;1;0;0;1;1
+25802;18526;2;171;77.0;110;70;1;1;0;0;1;0
+25803;17477;1;164;85.0;130;80;2;1;0;0;0;1
+25804;14464;1;159;58.0;120;80;1;1;0;0;1;0
+25805;19452;2;165;60.0;120;80;1;1;0;0;1;0
+25806;14695;2;170;63.0;120;70;1;1;0;0;1;0
+25808;23280;1;167;100.0;130;80;1;3;0;0;1;1
+25809;19575;1;158;85.0;120;80;3;1;0;0;1;0
+25810;22353;1;156;91.0;150;90;3;1;0;0;1;1
+25811;21226;1;168;87.0;110;70;1;1;0;0;1;0
+25812;18134;2;165;70.0;155;94;2;2;0;0;1;1
+25813;20200;2;170;74.0;150;100;2;1;0;0;1;1
+25816;14563;2;169;85.0;120;80;1;1;0;0;1;0
+25817;19926;1;158;105.0;180;90;1;1;0;0;1;1
+25818;22511;1;157;52.0;120;80;3;3;0;0;1;0
+25819;15849;1;156;58.0;110;70;2;2;0;0;1;0
+25820;18253;2;165;65.0;128;80;1;1;0;0;1;0
+25824;20262;1;156;52.0;160;90;3;2;0;0;1;1
+25825;21386;1;161;84.0;150;90;1;1;0;0;1;1
+25826;17571;1;168;90.0;120;80;1;1;0;0;1;0
+25827;15316;2;164;53.0;110;70;1;1;0;0;1;0
+25829;18362;1;157;61.0;158;1077;1;1;0;1;1;1
+25831;22468;1;148;70.0;130;80;1;1;0;0;1;1
+25832;20542;1;158;82.0;120;80;2;2;0;0;1;0
+25833;22106;1;162;67.0;120;80;1;1;0;0;0;1
+25834;21842;1;165;65.0;120;80;2;1;0;0;0;1
+25835;21696;1;165;72.0;120;80;3;3;0;0;1;1
+25837;16659;2;176;62.0;120;80;1;1;0;0;1;0
+25839;21838;1;133;51.0;150;100;1;1;0;0;1;1
+25840;21287;1;164;83.0;130;80;3;3;0;0;1;1
+25841;20393;1;160;86.0;125;80;1;1;0;0;1;0
+25842;22532;1;152;53.0;120;80;1;1;0;0;1;1
+25843;16101;1;165;68.0;12;80;1;1;0;0;0;0
+25844;17040;2;174;73.0;140;80;1;1;1;0;1;1
+25845;22482;1;169;100.0;130;80;3;3;0;0;0;1
+25848;19121;1;155;70.0;120;80;2;1;0;0;1;0
+25850;17539;1;174;81.0;120;80;1;1;0;0;1;0
+25851;15981;1;164;75.0;140;80;1;1;1;0;0;1
+25852;18260;1;162;82.0;120;80;1;1;0;1;1;0
+25854;18151;1;182;70.0;150;90;2;2;0;0;0;1
+25855;15353;1;155;56.0;100;70;1;1;0;0;1;0
+25856;21213;2;180;140.0;110;70;1;1;1;0;1;0
+25857;21304;1;153;60.0;140;80;1;3;0;0;1;0
+25860;21930;2;163;67.0;150;100;3;1;0;0;1;1
+25861;18046;1;159;59.0;110;70;1;1;0;0;1;0
+25862;18409;2;171;68.0;160;89;3;3;0;0;1;1
+25863;21443;2;175;85.0;160;90;2;1;0;0;1;0
+25865;23410;2;172;89.0;130;60;3;3;0;0;1;0
+25866;21855;1;170;92.0;160;90;1;1;0;0;0;1
+25870;18105;1;160;78.0;160;90;1;1;0;0;1;1
+25871;15216;1;166;100.0;120;80;1;1;0;0;1;0
+25873;19546;1;156;68.0;90;60;1;1;0;0;1;0
+25875;19641;2;168;69.0;140;90;1;1;0;0;1;1
+25877;21976;1;170;77.0;120;80;1;1;0;0;1;0
+25878;18102;1;167;88.0;140;90;1;1;0;0;1;1
+25879;23386;1;161;74.0;140;80;1;1;0;0;0;1
+25880;22219;1;160;68.0;140;90;3;3;0;0;1;1
+25881;16121;2;174;75.0;120;80;1;1;0;0;1;0
+25882;20330;1;153;64.0;170;100;2;1;0;0;1;1
+25884;18841;1;151;64.0;130;80;1;1;0;0;1;1
+25885;21914;1;158;71.0;130;80;1;1;0;0;1;0
+25886;18353;2;150;52.0;120;80;1;1;0;0;0;0
+25887;16621;1;164;79.0;130;90;1;1;0;0;1;1
+25889;18205;2;176;74.0;110;80;3;1;0;0;1;1
+25890;23454;1;157;96.0;150;90;1;1;0;0;1;1
+25891;17618;1;169;65.0;110;70;1;1;0;0;1;0
+25892;23472;2;170;68.0;120;80;1;2;0;0;0;0
+25893;18425;1;165;70.0;120;80;1;1;0;0;0;0
+25894;22471;2;172;72.0;160;100;1;1;1;0;0;1
+25895;19997;1;162;91.0;150;90;1;1;0;0;0;1
+25896;20378;1;150;76.0;130;80;2;1;0;0;1;1
+25897;18378;1;165;65.0;120;80;1;1;0;0;1;0
+25898;18806;1;169;68.0;120;80;1;1;0;0;1;0
+25899;21124;1;165;80.0;120;70;1;1;0;0;0;0
+25901;19051;2;170;70.0;120;80;1;1;0;0;0;1
+25902;20265;1;163;100.0;100;60;1;1;0;0;1;1
+25904;23347;2;170;79.0;140;70;3;1;0;0;0;1
+25906;20331;1;157;62.0;110;70;1;1;0;0;1;0
+25907;20446;1;168;86.0;120;80;2;2;0;0;1;0
+25908;17492;2;164;68.0;120;80;1;1;1;0;0;0
+25909;21367;1;155;56.0;130;80;1;3;0;0;1;0
+25911;17285;1;176;70.0;120;80;1;1;0;0;1;0
+25913;18426;1;154;59.0;110;80;1;1;0;0;1;0
+25914;22728;2;162;60.0;120;80;1;1;0;0;1;1
+25916;16816;1;160;50.0;120;80;1;1;0;0;0;0
+25920;18247;1;157;55.0;120;80;1;1;0;0;1;0
+25921;21314;1;165;65.0;120;79;1;2;0;0;0;1
+25922;16258;1;150;56.0;110;80;1;1;0;0;1;0
+25923;14553;2;169;75.0;110;70;1;2;1;0;0;1
+25924;21120;2;159;82.0;120;80;1;1;0;0;1;1
+25925;20360;1;154;103.0;160;90;1;1;0;0;1;1
+25927;14428;2;170;74.0;120;80;1;1;0;1;1;0
+25928;14653;2;175;70.0;100;80;1;1;1;0;1;0
+25929;23515;1;162;80.0;160;1000;1;1;0;0;1;1
+25930;21157;2;178;69.0;120;80;1;1;0;0;1;0
+25931;15216;1;168;68.0;110;70;1;1;0;0;0;0
+25933;19418;2;182;72.0;121;80;1;1;1;1;1;0
+25936;20499;1;178;65.0;120;80;1;1;0;0;0;1
+25942;21955;1;155;56.0;120;90;1;1;0;0;1;0
+25943;17439;1;152;56.0;120;80;1;1;0;0;1;1
+25947;22542;2;180;107.0;160;1000;1;1;0;0;1;1
+25949;18324;1;165;69.0;140;90;1;1;0;0;1;1
+25955;20337;1;168;65.0;120;80;1;1;0;0;1;0
+25957;15330;1;156;65.0;120;70;1;1;0;0;1;0
+25958;20496;1;150;63.0;150;1100;3;1;0;0;1;1
+25959;17266;2;169;75.0;90;70;1;1;0;0;1;0
+25960;21923;1;186;96.0;150;90;1;1;0;0;1;1
+25961;21834;2;179;79.0;120;80;1;1;0;0;0;0
+25962;17469;2;171;83.0;130;79;3;1;0;0;1;1
+25963;23184;1;161;81.0;140;90;3;1;0;0;1;1
+25964;16132;1;156;73.0;110;70;1;1;0;0;1;0
+25965;18442;2;168;59.0;120;80;1;1;1;1;1;0
+25966;23387;2;162;57.0;120;80;1;1;0;0;0;1
+25967;20296;1;168;65.0;120;80;1;1;0;0;0;0
+25968;22894;2;163;60.0;130;80;1;3;0;0;1;1
+25969;15955;2;186;86.0;140;80;1;2;1;0;1;1
+25971;21195;1;160;73.0;140;90;2;1;0;0;1;1
+25972;15260;1;166;76.0;110;70;3;1;0;0;1;1
+25973;23398;1;162;80.0;160;80;1;1;0;0;1;1
+25975;18136;1;168;70.0;120;80;2;2;0;0;1;0
+25976;20293;1;161;68.0;120;80;2;2;0;0;1;0
+25977;18248;2;160;72.0;120;80;2;2;0;0;0;1
+25978;21795;2;166;66.0;120;80;1;1;0;0;0;0
+25979;21183;2;177;70.0;110;80;2;1;0;0;1;0
+25980;19758;1;156;98.0;150;90;2;1;0;0;1;1
+25981;16134;2;165;65.0;120;80;1;1;0;0;1;0
+25982;18450;1;150;65.0;120;80;1;1;0;0;1;1
+25983;15879;1;162;70.0;110;70;2;3;0;0;1;0
+25985;20484;1;165;82.0;120;70;1;1;1;0;0;0
+25986;17510;1;161;98.0;180;70;3;3;0;0;1;1
+25987;19551;1;165;65.0;120;80;1;1;0;0;1;1
+25988;14821;2;170;80.0;120;80;1;1;0;0;0;0
+25990;18270;1;170;70.0;120;80;1;1;0;0;1;0
+25991;23402;2;185;89.0;120;80;1;2;0;0;1;0
+25994;19852;2;168;110.0;180;1120;3;2;0;0;1;1
+25995;21028;2;170;100.0;160;80;1;3;1;1;1;1
+25997;19781;1;164;65.0;110;80;2;1;0;0;1;0
+25998;18386;1;175;65.0;120;80;1;1;0;0;1;0
+25999;20466;1;156;59.0;120;80;1;1;0;0;0;0
+26000;20999;2;173;98.0;130;80;1;1;0;0;1;1
+26001;22100;1;150;70.0;100;70;2;1;0;0;1;0
+26003;19145;2;156;53.0;110;70;1;1;0;0;1;0
+26004;21173;1;164;81.0;120;80;2;1;0;0;1;0
+26006;22524;2;175;91.0;160;100;2;2;0;0;1;1
+26008;21989;2;179;120.0;180;1000;1;1;0;0;1;1
+26009;22438;2;155;60.0;110;70;1;1;0;0;1;1
+26010;20421;1;167;63.0;120;70;1;1;0;0;1;0
+26012;19558;2;166;71.0;130;90;1;2;1;0;1;1
+26013;18055;1;169;69.0;120;80;3;3;0;0;0;0
+26015;17642;1;165;69.0;140;90;1;1;0;0;1;1
+26016;19983;1;160;60.0;130;90;1;1;0;0;1;0
+26017;16867;2;170;69.0;120;70;1;1;0;1;0;1
+26018;16635;1;170;110.0;170;110;3;1;0;0;1;1
+26019;21639;2;168;68.0;120;90;1;1;0;0;0;1
+26020;21169;1;156;70.0;150;90;1;1;0;0;1;1
+26021;23177;1;170;72.0;180;100;3;2;0;0;0;1
+26023;22700;2;174;78.0;110;70;1;1;0;0;1;1
+26026;18068;1;151;89.0;160;90;1;1;0;0;1;1
+26028;19559;1;162;75.0;110;80;1;1;0;0;1;1
+26030;15120;2;175;75.0;110;70;1;1;0;0;0;0
+26031;16971;2;160;68.0;120;80;1;1;0;0;1;0
+26032;23518;1;157;72.0;130;80;1;1;0;0;1;0
+26033;18223;1;160;107.0;130;80;1;1;0;0;1;1
+26035;16743;2;173;80.0;140;100;1;1;0;0;1;0
+26036;21951;1;160;71.0;130;80;3;1;0;0;1;1
+26037;16040;1;159;74.0;130;70;1;1;0;0;1;1
+26038;22572;2;178;66.0;150;50;3;1;0;0;1;1
+26039;14530;1;163;58.0;110;70;3;3;0;0;1;0
+26041;22781;2;177;72.0;110;70;1;1;0;0;0;0
+26042;22472;1;158;68.0;190;100;2;1;0;0;1;1
+26043;21005;1;174;84.0;160;90;2;1;0;0;1;0
+26044;20451;2;162;85.0;90;70;1;1;1;0;1;0
+26045;19569;1;177;96.0;140;90;1;1;0;0;1;0
+26046;19821;1;162;65.0;110;70;1;1;0;0;1;0
+26048;20231;2;159;69.0;140;90;1;1;0;0;1;0
+26049;19023;2;160;67.0;120;60;3;3;0;0;0;0
+26050;21775;1;159;74.0;120;80;1;1;0;1;1;0
+26051;18808;1;160;79.0;140;90;1;1;0;0;1;1
+26053;15170;1;158;55.0;120;80;1;1;0;0;1;0
+26054;15410;1;164;90.0;120;80;2;1;0;0;0;0
+26055;21011;1;160;70.0;120;80;1;1;0;0;1;0
+26056;23313;2;175;72.0;120;80;1;1;0;0;1;1
+26057;22847;1;156;62.0;160;90;1;1;0;0;0;1
+26062;22585;2;176;75.0;120;70;1;1;1;0;1;0
+26063;19091;1;160;78.0;200;110;3;3;0;0;0;1
+26065;19656;2;150;69.0;150;60;1;1;0;0;1;0
+26066;20388;1;155;64.0;150;1000;3;1;0;0;1;1
+26067;21927;1;162;62.0;120;80;1;1;0;0;1;0
+26068;18752;1;168;70.0;100;70;1;1;0;0;1;0
+26070;18194;2;178;82.0;130;80;1;1;0;0;1;0
+26071;15076;2;160;81.0;115;75;1;1;0;0;0;0
+26072;18293;2;160;65.0;100;60;1;1;0;0;1;1
+26073;18166;2;169;92.0;140;100;1;1;0;0;1;1
+26076;21391;2;168;85.0;140;80;1;1;1;0;1;1
+26077;16552;1;167;90.0;120;80;3;2;1;0;1;1
+26079;23435;2;154;80.0;140;90;1;1;0;0;1;1
+26081;23283;2;168;95.0;140;90;1;1;1;0;1;1
+26082;16903;1;160;58.0;130;90;1;1;0;0;1;1
+26083;18983;1;167;81.0;130;80;1;1;0;0;1;0
+26084;15988;1;165;78.0;150;1000;2;1;0;0;1;1
+26086;20359;2;165;75.0;120;80;1;1;0;0;1;0
+26087;21273;2;171;94.0;160;90;1;2;1;0;1;1
+26090;20956;2;175;92.0;130;90;1;1;0;0;1;1
+26091;21082;2;172;72.0;140;90;1;1;0;0;0;1
+26092;21138;2;170;72.0;120;80;1;1;0;0;1;0
+26094;14556;2;172;70.0;120;70;1;1;0;0;1;0
+26095;15219;1;167;55.0;120;80;1;1;0;0;1;0
+26096;19691;1;165;66.0;140;90;1;1;0;0;1;1
+26097;23476;1;164;78.0;130;80;1;1;0;0;1;1
+26099;20527;1;170;72.0;120;80;1;1;0;0;0;0
+26101;19447;2;160;69.0;140;90;2;1;1;0;0;1
+26102;21054;1;156;70.0;120;80;2;1;0;0;1;1
+26103;22071;1;156;96.0;125;80;1;1;0;0;1;1
+26104;19948;1;171;80.0;130;100;1;1;0;0;1;1
+26105;19085;1;162;85.0;160;90;2;3;0;0;1;1
+26106;22640;1;153;77.0;140;90;3;3;0;0;1;1
+26107;16636;1;149;48.0;107;67;1;1;0;0;1;0
+26108;16006;1;168;72.0;120;80;1;1;0;0;1;0
+26109;16110;2;168;68.0;120;80;2;1;0;0;1;0
+26112;17634;1;150;69.0;110;80;2;1;0;0;1;0
+26113;20535;2;151;62.0;120;80;1;1;0;0;1;0
+26114;17305;2;150;97.0;150;90;2;2;0;0;0;1
+26115;15229;2;171;65.0;120;80;1;1;0;0;1;0
+26116;15370;1;162;57.0;120;80;3;1;0;0;1;1
+26117;18074;1;163;60.0;140;90;1;1;0;0;1;1
+26118;21135;1;157;84.0;131;83;3;3;0;0;1;1
+26119;15245;2;175;70.0;130;70;1;1;1;1;0;1
+26121;18874;2;168;90.0;110;70;1;1;0;0;1;0
+26122;23338;1;156;89.0;130;80;1;1;0;0;0;0
+26125;21836;1;155;80.0;120;80;1;1;0;0;1;0
+26127;21332;1;165;65.0;120;60;1;1;0;0;1;1
+26128;21818;1;151;80.0;120;80;1;1;0;0;1;1
+26129;21249;1;162;79.0;130;90;1;1;0;0;1;1
+26130;19570;2;167;81.0;120;80;1;1;0;0;1;1
+26132;18056;2;168;104.0;130;80;3;1;0;0;1;0
+26133;20427;2;155;65.0;110;80;1;1;0;0;0;0
+26134;22121;2;172;100.0;160;100;1;1;0;1;1;1
+26135;21230;2;171;81.0;140;70;2;1;0;0;1;1
+26136;21913;2;176;85.0;120;82;1;1;0;0;1;1
+26137;16126;2;166;99.0;140;90;1;1;0;0;0;1
+26138;19614;2;180;75.0;120;80;1;1;1;1;0;1
+26139;16895;2;170;93.0;130;90;1;1;1;0;1;0
+26140;20923;1;150;52.0;120;80;2;1;0;0;1;0
+26141;22064;1;167;84.0;135;80;1;1;0;0;1;0
+26144;15090;1;163;84.0;140;80;1;1;0;0;1;1
+26145;19504;1;155;56.0;140;90;1;1;0;0;1;1
+26146;23351;1;158;71.0;120;80;1;1;0;0;1;1
+26148;23412;1;162;69.0;120;80;1;1;0;0;1;1
+26149;18126;1;157;67.0;120;80;2;1;0;0;0;1
+26150;18462;1;160;76.0;120;80;1;1;0;0;0;0
+26151;18214;1;165;103.0;130;90;1;1;0;0;1;1
+26153;15170;2;168;83.0;120;80;2;2;1;1;1;1
+26154;21742;1;156;58.0;160;100;1;1;0;0;1;1
+26155;18007;1;165;65.0;120;80;1;1;0;0;1;0
+26158;17434;2;164;70.0;120;80;1;1;1;0;1;0
+26159;14703;2;179;70.0;110;70;1;1;0;0;1;0
+26160;18125;1;158;94.0;130;90;1;1;0;0;0;1
+26162;16312;1;162;56.0;120;80;3;3;0;0;1;1
+26163;22067;1;164;71.0;110;70;1;1;0;0;1;1
+26165;20651;1;157;74.0;140;90;1;1;0;0;1;1
+26168;22443;1;158;96.0;130;1000;3;1;0;0;1;1
+26170;15771;1;168;60.0;110;70;1;1;0;0;1;0
+26171;21127;2;160;86.0;130;90;1;1;0;0;1;1
+26173;19828;2;178;54.0;90;60;1;1;1;0;0;0
+26174;23222;1;171;67.0;110;70;1;1;0;0;1;0
+26175;22441;1;152;78.0;160;1000;1;1;0;0;0;1
+26176;21054;1;165;90.0;140;90;3;3;0;0;1;1
+26177;23289;1;152;65.0;140;100;2;1;0;0;0;1
+26179;16003;1;169;54.0;120;80;1;1;0;0;1;0
+26180;16043;2;159;65.0;150;80;1;1;0;0;0;1
+26182;18158;1;150;82.0;120;80;2;1;0;0;1;1
+26183;22630;2;180;89.0;150;90;1;1;0;0;0;1
+26184;21314;1;168;75.0;130;80;3;3;0;0;1;1
+26185;19057;1;165;65.0;150;79;1;1;0;0;0;1
+26186;21094;1;164;90.0;120;80;1;1;0;0;1;1
+26187;17545;1;156;92.0;120;80;1;1;0;0;1;1
+26189;22509;1;164;80.0;120;80;1;1;0;0;1;0
+26190;19845;2;160;80.0;160;80;1;1;0;0;1;1
+26191;18967;1;172;72.0;140;80;1;1;0;0;0;1
+26193;20693;1;171;75.0;120;80;1;1;0;0;1;0
+26194;23178;1;164;68.0;100;60;2;1;0;0;1;0
+26196;18260;2;150;65.0;140;90;1;1;1;1;0;1
+26197;14504;1;165;78.0;120;80;1;1;0;0;1;0
+26198;18341;1;176;85.0;120;80;1;1;0;0;1;1
+26199;18964;1;165;65.0;110;70;1;1;0;0;1;1
+26200;18187;2;175;93.0;150;90;1;1;0;1;1;1
+26201;18249;1;161;63.0;110;70;1;1;0;0;1;0
+26202;18493;1;164;66.0;106;78;1;1;0;0;1;0
+26203;20558;2;166;78.0;125;90;1;1;0;0;1;1
+26204;23444;2;163;80.0;180;90;3;3;1;0;1;1
+26205;16941;2;160;58.0;110;70;1;1;1;0;1;0
+26207;22206;2;167;84.0;150;90;1;2;0;0;1;0
+26208;18313;1;152;58.0;150;90;1;1;0;0;1;1
+26209;20403;1;165;59.0;160;90;1;1;0;0;0;0
+26211;17356;1;160;78.0;110;80;2;1;0;0;1;1
+26212;21155;1;160;74.0;110;70;1;1;1;0;1;0
+26213;23428;1;154;73.0;120;80;3;2;0;0;1;0
+26214;23196;1;166;68.0;130;90;1;1;0;0;1;1
+26215;14375;1;157;56.0;110;70;1;1;0;0;1;0
+26216;19008;1;165;65.0;120;80;1;1;0;0;0;0
+26218;18958;1;156;78.0;120;80;1;1;0;0;0;1
+26219;19947;1;150;87.0;140;100;2;1;0;0;1;1
+26220;16013;2;172;90.0;140;90;1;1;0;0;1;0
+26222;17529;1;164;67.0;130;80;1;2;0;0;1;1
+26224;23299;1;158;48.0;110;70;1;1;0;0;1;0
+26228;19904;2;185;85.0;120;80;1;1;0;0;0;1
+26229;22626;2;172;82.0;160;100;1;1;0;0;1;0
+26232;22635;2;172;75.0;120;80;1;1;0;0;1;0
+26233;19031;2;190;89.0;120;80;1;1;0;0;0;0
+26234;18943;1;153;62.0;110;90;2;1;0;0;1;0
+26235;21274;1;175;80.0;120;80;2;1;0;0;1;0
+26237;21364;1;168;70.0;150;1100;1;1;0;0;1;1
+26238;14681;1;166;58.0;120;80;1;1;0;0;1;1
+26239;21878;2;165;66.0;120;80;2;1;1;1;1;0
+26240;23269;1;160;69.0;110;70;3;3;0;0;1;0
+26241;19692;1;155;63.0;110;70;3;1;0;0;1;1
+26242;21928;1;176;90.0;140;90;1;1;0;0;1;1
+26244;19661;1;156;55.0;110;70;1;1;0;0;1;0
+26245;22626;2;174;72.0;110;70;1;1;0;0;1;0
+26248;15178;2;170;105.0;120;80;1;1;0;0;1;0
+26249;18253;1;154;65.0;90;60;1;1;0;0;1;0
+26250;20974;1;158;100.0;130;80;1;1;0;0;1;1
+26251;18070;1;165;79.0;110;80;1;1;0;0;1;0
+26252;21175;2;168;91.0;120;70;1;1;1;0;1;0
+26255;17433;2;180;80.0;140;80;1;1;0;0;1;1
+26256;14786;1;163;63.0;130;80;1;1;0;0;0;0
+26258;17061;1;170;72.0;120;80;1;1;0;0;0;0
+26259;19628;1;160;60.0;140;80;1;1;0;0;1;1
+26260;17992;1;168;68.0;120;80;2;1;0;0;1;0
+26261;15325;2;170;90.0;120;80;2;1;0;0;0;1
+26263;19791;1;161;57.0;150;90;1;1;0;0;1;0
+26264;21100;1;165;74.0;120;80;2;2;0;0;0;1
+26267;21090;2;163;87.0;140;90;1;1;0;0;1;1
+26268;17591;2;163;62.0;120;80;1;1;0;0;0;1
+26269;19055;2;176;84.0;140;95;1;1;0;0;1;1
+26271;14541;2;174;70.0;140;70;1;1;0;0;1;1
+26272;23278;1;164;83.0;150;90;1;1;0;0;1;1
+26273;16157;2;173;95.0;150;100;2;2;1;1;0;1
+26274;19126;1;161;78.0;140;90;1;1;0;0;0;1
+26275;18452;1;169;68.0;120;80;1;1;0;0;1;0
+26280;18747;1;158;106.0;130;80;3;3;0;1;0;1
+26281;18401;1;165;64.0;140;90;1;1;0;0;1;1
+26282;21774;1;154;58.0;120;80;1;1;0;0;1;1
+26283;16302;2;177;79.0;130;90;1;1;0;0;1;0
+26284;21262;2;175;120.0;120;80;1;1;0;1;1;1
+26286;18977;1;163;98.0;150;90;1;1;0;0;1;1
+26287;20034;2;173;73.0;120;80;1;1;0;0;0;0
+26288;16601;2;170;68.0;120;80;1;1;0;0;1;0
+26289;18951;2;174;84.0;120;80;3;3;0;1;1;1
+26292;20235;2;165;77.0;90;70;1;2;0;0;1;0
+26293;16892;1;152;60.0;120;80;1;1;0;0;1;0
+26294;17553;1;151;67.0;100;60;1;2;0;0;1;0
+26295;20509;1;169;95.0;110;70;1;1;0;0;1;0
+26296;22632;1;163;73.0;140;90;1;2;0;0;1;1
+26297;21187;2;176;106.0;130;80;1;1;0;1;1;1
+26300;19874;1;159;61.0;120;80;1;3;0;0;1;0
+26301;17224;1;154;52.0;120;80;1;1;0;0;1;0
+26302;22663;1;154;42.0;130;80;3;1;0;1;1;1
+26303;16010;1;157;73.0;120;80;2;1;0;0;1;1
+26305;19184;2;160;60.0;120;80;1;1;0;0;0;0
+26306;20336;1;168;74.0;120;80;1;1;0;0;0;1
+26308;21177;2;175;62.0;120;70;1;1;0;0;0;1
+26309;22363;2;164;95.0;160;1000;1;1;0;0;1;1
+26312;21020;1;159;81.0;130;90;3;3;0;0;1;1
+26313;20171;1;165;72.0;160;100;1;1;0;0;1;1
+26314;20509;2;180;94.0;130;90;2;1;0;0;0;0
+26315;21700;1;156;54.0;110;70;1;1;0;0;1;0
+26317;16070;1;160;77.0;156;94;3;1;0;0;1;1
+26318;20522;1;161;82.0;140;100;2;1;0;0;0;1
+26320;22488;1;158;55.0;110;70;1;1;0;0;1;0
+26321;19790;1;166;90.0;130;90;1;1;0;0;1;1
+26323;18970;1;160;68.0;160;90;2;1;0;0;1;1
+26324;18242;1;160;68.0;110;70;1;1;0;0;1;0
+26325;20405;1;170;98.0;140;90;2;1;0;0;1;0
+26326;22135;1;170;64.0;120;80;3;3;0;0;1;0
+26328;14353;1;160;122.0;130;80;1;1;0;1;1;0
+26329;21845;2;173;95.0;110;70;1;1;0;0;1;1
+26331;16504;2;174;92.0;120;80;1;1;0;0;1;0
+26332;20667;2;163;76.0;120;80;1;1;0;0;0;0
+26333;14593;2;165;60.0;120;80;1;1;0;0;0;0
+26335;21755;1;160;80.0;140;80;3;1;0;0;1;1
+26337;19159;1;164;75.0;120;80;2;1;0;0;1;0
+26340;17001;1;155;65.0;140;90;1;1;0;0;1;1
+26343;22517;1;164;67.0;150;90;1;1;0;0;1;1
+26345;20234;1;155;61.0;100;80;1;1;0;0;1;0
+26346;18823;1;154;54.0;120;60;1;1;0;0;1;0
+26347;20645;1;157;75.0;140;1100;3;1;0;0;0;1
+26348;23297;1;178;85.0;140;90;1;1;0;0;1;1
+26349;20215;1;158;78.0;160;1000;3;1;0;0;1;1
+26351;15394;2;165;78.0;120;79;1;1;1;0;0;0
+26354;23359;2;167;75.0;150;100;1;1;0;0;0;0
+26355;20506;1;159;62.0;120;80;1;1;0;0;1;1
+26358;19593;1;169;75.0;150;100;1;1;0;0;1;1
+26362;22347;1;158;98.0;120;80;1;1;0;0;1;0
+26363;22852;2;163;67.0;150;90;2;3;1;0;1;1
+26365;22463;1;167;84.0;120;80;2;1;0;0;1;0
+26366;20547;1;178;68.0;140;90;1;1;0;0;1;1
+26368;17649;1;161;58.0;110;80;1;1;0;0;1;0
+26369;21283;2;165;103.0;140;90;1;1;0;0;1;0
+26371;18039;2;178;78.0;130;80;3;1;0;0;1;1
+26372;17653;1;161;68.0;110;80;1;1;0;0;1;0
+26374;21894;2;178;106.0;160;100;1;1;0;0;1;0
+26375;20456;1;154;60.0;120;80;3;1;0;0;1;1
+26376;22758;2;176;72.0;120;80;1;1;0;0;1;0
+26377;18511;1;167;75.0;150;90;1;1;0;0;1;1
+26380;19064;1;169;94.0;90;60;1;1;1;0;1;0
+26381;14738;1;158;71.0;140;90;2;1;0;0;1;0
+26382;21089;1;160;70.0;130;80;1;1;0;0;1;1
+26383;18146;1;172;82.0;110;80;1;1;0;0;0;0
+26384;22003;1;155;77.0;150;90;1;1;0;0;0;1
+26385;22383;1;154;61.0;140;100;3;3;0;0;1;0
+26386;16876;2;170;80.0;110;70;1;1;0;0;1;0
+26387;19095;2;167;96.0;120;79;1;1;0;0;1;0
+26388;19541;2;176;93.0;180;110;1;1;1;0;1;1
+26389;15234;1;160;80.0;150;90;1;1;0;0;0;1
+26391;18829;2;166;64.0;120;80;1;1;1;0;1;0
+26392;19916;1;160;77.0;140;90;1;1;0;0;1;1
+26393;20725;1;162;84.0;130;90;1;1;0;0;1;0
+26394;15306;1;161;98.0;130;80;1;1;0;0;1;1
+26395;18759;1;168;64.0;110;80;1;1;0;0;1;0
+26397;18306;1;165;98.0;120;80;1;1;0;0;1;1
+26401;23344;1;165;70.0;150;90;1;1;0;0;1;1
+26402;16118;1;165;75.0;140;90;2;2;0;0;1;1
+26403;18052;1;162;62.0;110;70;1;1;0;0;1;0
+26405;22752;1;162;79.0;140;90;1;2;0;0;1;1
+26407;16931;1;152;58.0;130;100;1;1;0;0;1;1
+26409;18334;1;168;64.0;120;80;1;1;0;0;1;0
+26410;17947;2;172;72.0;120;60;1;1;0;0;0;0
+26412;23358;2;168;64.0;130;80;3;3;0;0;1;1
+26413;17492;2;164;64.1;120;80;1;1;1;0;1;0
+26414;16026;2;163;63.0;120;80;3;3;0;0;0;0
+26415;23517;1;166;75.0;110;60;3;3;0;0;1;0
+26416;21190;2;164;69.0;110;70;1;1;0;0;1;1
+26418;17466;1;157;61.0;130;90;1;1;0;0;0;1
+26419;19717;2;180;80.0;120;80;1;1;0;0;1;0
+26421;19793;1;158;85.0;140;80;3;1;0;0;1;1
+26422;21107;2;169;76.0;130;90;1;1;1;1;1;1
+26423;18416;1;165;85.0;130;80;2;3;0;0;0;1
+26424;21435;1;178;78.0;140;80;1;1;0;0;1;1
+26425;18976;1;167;86.0;120;70;1;1;0;0;1;0
+26426;20555;1;158;91.0;140;90;2;1;0;0;1;0
+26428;19667;1;153;56.0;120;80;1;1;0;1;1;0
+26429;22477;1;156;58.0;110;70;2;1;0;0;0;0
+26430;21967;2;167;86.0;110;70;1;1;0;0;1;1
+26431;19026;1;156;79.0;120;80;2;1;0;1;1;0
+26433;18896;2;162;50.0;110;70;1;1;0;0;1;0
+26434;19762;1;156;61.0;110;70;1;1;0;0;1;0
+26436;21782;2;170;70.0;130;90;1;1;0;0;1;0
+26437;18207;2;175;76.0;120;80;1;1;1;0;1;0
+26438;20520;2;178;92.0;110;70;1;1;0;0;1;1
+26439;15406;2;166;60.0;12;80;1;1;0;0;1;0
+26440;23276;2;174;78.0;130;90;1;1;0;0;1;0
+26441;19854;1;160;58.0;120;80;1;1;0;0;1;0
+26442;21440;1;170;75.0;120;80;1;1;0;0;1;0
+26443;22148;1;156;67.0;140;90;1;1;0;0;0;1
+26444;18945;1;162;63.0;110;70;1;1;0;0;1;0
+26450;18887;2;170;79.0;100;60;1;1;0;0;1;0
+26451;21075;1;155;75.0;120;80;3;1;0;0;1;1
+26452;20442;2;163;77.0;160;90;1;1;0;0;1;0
+26454;23276;1;161;90.0;150;80;3;3;0;0;1;1
+26455;15886;1;165;61.0;110;70;1;1;0;0;1;0
+26456;23090;1;148;58.0;120;80;2;1;0;0;1;1
+26457;18392;1;165;68.0;120;80;1;2;0;0;1;0
+26458;19132;2;170;85.0;130;80;1;3;0;0;0;1
+26459;19622;1;156;66.0;120;80;3;1;0;0;1;0
+26460;17323;2;174;69.0;100;70;1;1;0;0;1;0
+26461;22754;1;165;85.0;136;86;3;1;0;0;1;1
+26463;23478;1;168;85.0;120;80;1;2;0;0;1;0
+26464;17735;2;173;76.0;120;80;1;1;0;0;1;0
+26466;18203;2;165;63.0;120;80;1;1;0;0;1;1
+26468;15398;1;175;86.0;120;80;1;1;0;0;1;0
+26469;23128;2;174;82.0;150;80;2;2;0;0;1;0
+26472;23483;1;168;98.0;120;80;1;1;0;1;1;0
+26473;15092;2;170;87.0;120;80;1;1;1;1;1;0
+26474;18001;1;152;80.0;150;90;3;3;0;0;0;0
+26475;20386;2;171;77.0;130;90;1;1;1;0;1;0
+26477;20163;2;164;72.0;140;80;1;1;1;0;1;1
+26478;19524;2;170;77.0;130;80;1;1;0;0;1;1
+26480;21896;1;164;97.0;150;90;3;1;0;0;1;1
+26481;15330;2;168;65.0;160;1000;1;1;0;1;1;0
+26482;21991;2;178;110.0;150;80;3;3;1;0;1;1
+26484;18734;1;155;66.0;120;80;1;1;0;0;1;0
+26485;21794;1;165;65.0;120;79;3;3;0;0;0;0
+26486;19710;1;156;58.0;120;80;1;1;0;0;0;1
+26487;14730;2;174;86.0;100;70;2;2;0;0;1;0
+26488;19688;2;174;87.0;155;106;1;3;1;0;0;1
+26489;21244;1;160;75.0;110;70;1;1;0;0;1;1
+26490;21329;2;165;60.0;120;80;1;1;0;0;1;0
+26492;15915;1;165;65.0;120;80;1;1;0;0;1;0
+26493;21121;1;163;70.0;120;80;1;1;0;0;1;0
+26494;22014;2;168;87.0;130;100;1;1;0;0;1;1
+26495;16594;2;162;73.0;120;80;1;1;0;0;0;0
+26496;16756;1;161;72.0;130;90;1;1;0;0;1;1
+26500;18164;2;180;85.0;140;90;1;1;0;1;0;1
+26501;16355;1;170;76.0;110;70;1;1;0;0;1;0
+26503;18140;1;160;30.0;120;80;1;1;0;0;1;1
+26504;15332;1;168;68.0;140;90;1;1;0;0;1;1
+26505;18944;1;164;83.0;140;80;2;2;0;0;0;1
+26507;21911;1;172;109.0;120;70;2;1;0;0;1;0
+26509;19748;1;156;68.0;120;80;1;1;0;0;1;0
+26510;17363;2;160;67.0;130;90;1;1;0;0;0;0
+26511;17742;1;170;70.0;110;70;1;1;0;0;1;0
+26514;15913;2;173;70.0;180;110;3;1;0;0;0;1
+26515;16214;2;175;74.0;140;90;1;1;1;0;1;1
+26516;16107;1;151;59.0;130;90;1;1;0;0;0;0
+26517;23406;2;166;64.0;140;90;1;1;0;0;0;1
+26518;23136;1;164;83.0;150;90;2;1;0;0;1;1
+26519;19803;1;160;76.0;110;80;1;1;0;0;1;0
+26520;17542;2;162;69.0;120;80;1;1;0;0;0;1
+26521;20693;2;168;85.0;140;90;2;1;1;0;1;1
+26522;21147;2;172;70.0;130;80;1;1;1;0;0;0
+26524;22533;1;173;100.0;160;90;1;1;0;0;1;1
+26525;20374;1;155;70.0;130;100;1;1;0;0;1;1
+26526;18348;1;164;72.0;140;90;2;1;0;0;1;1
+26527;21026;1;161;80.0;140;1000;2;3;0;0;0;1
+26529;19809;1;170;62.0;110;70;1;1;0;0;1;0
+26531;14581;1;174;65.0;110;70;1;1;0;0;1;0
+26532;20361;2;170;83.0;120;80;1;1;0;0;1;0
+26534;22673;2;175;92.0;120;75;1;1;0;0;1;0
+26535;19183;1;150;92.0;140;90;3;2;0;0;1;0
+26536;15183;1;160;82.0;120;80;1;1;0;0;1;0
+26538;20353;1;162;56.0;120;80;1;1;0;0;1;1
+26539;18145;1;159;73.0;140;80;1;3;0;0;1;1
+26540;18927;2;162;70.0;130;70;2;1;0;0;1;1
+26541;20947;1;152;62.0;120;80;1;1;0;0;0;0
+26543;19799;1;163;52.0;110;70;2;1;0;0;0;0
+26544;19097;1;165;80.0;130;60;1;1;0;0;1;0
+26546;20435;2;173;103.0;160;100;3;3;0;0;1;0
+26547;23505;1;165;65.0;120;80;1;1;0;0;1;1
+26548;18190;2;175;63.0;140;90;1;1;1;0;1;1
+26549;20565;2;170;80.0;160;100;1;1;0;0;0;1
+26551;19525;2;172;84.0;120;80;1;1;0;0;1;1
+26552;18884;2;165;58.0;140;90;1;1;1;0;1;1
+26554;18985;2;176;67.0;100;80;1;1;0;0;1;0
+26556;20464;1;165;65.0;120;79;2;2;0;0;0;1
+26557;17995;1;155;58.0;130;80;1;1;0;0;1;0
+26559;20434;1;166;84.0;120;80;1;1;0;0;0;1
+26561;17411;1;154;60.0;120;70;1;1;0;0;1;0
+26562;21771;2;165;60.0;140;80;1;1;0;0;1;1
+26563;22608;1;154;78.0;140;90;1;1;0;0;1;0
+26564;22445;2;164;77.0;150;90;1;1;0;0;1;0
+26565;18273;1;166;68.0;130;80;1;1;0;0;1;1
+26567;23300;1;172;85.0;130;90;1;1;0;0;0;1
+26568;16715;1;165;74.0;100;60;1;1;0;0;1;0
+26569;20530;1;159;54.0;110;70;3;3;0;0;1;0
+26571;15192;1;170;75.0;120;70;1;1;0;0;0;0
+26572;16780;1;157;86.0;160;100;1;1;0;0;1;1
+26573;20365;1;158;89.0;120;80;1;1;0;0;0;1
+26574;16849;2;166;64.0;120;80;1;1;0;0;1;0
+26578;17349;1;155;73.0;120;80;1;1;0;0;1;0
+26579;21635;1;155;58.0;120;80;1;1;0;0;0;1
+26580;17677;1;170;59.0;110;70;1;1;0;0;1;1
+26581;22679;1;156;71.0;120;80;1;1;0;0;0;1
+26583;19073;2;159;66.0;140;90;1;1;0;0;1;1
+26584;18165;1;161;67.0;120;80;1;1;0;0;0;0
+26586;20444;1;170;72.0;120;80;1;1;0;0;1;0
+26587;22038;1;170;82.0;100;60;1;1;0;0;1;1
+26588;19008;2;171;59.0;130;80;1;1;0;0;1;0
+26590;23377;2;168;73.0;140;90;1;1;0;0;1;1
+26591;21181;1;160;58.0;120;80;1;1;0;0;1;0
+26592;18944;1;169;65.0;110;70;1;1;0;0;1;0
+26594;22644;1;150;82.0;130;85;3;1;0;0;1;1
+26596;19005;2;180;106.0;130;90;3;1;1;0;1;1
+26597;20990;1;150;70.0;120;80;3;3;0;0;0;1
+26598;18555;1;161;55.0;120;80;1;1;0;0;1;0
+26600;20462;2;170;69.0;110;70;1;1;0;0;1;0
+26601;15258;2;175;70.0;110;70;1;1;1;0;1;0
+26603;16837;2;168;78.0;128;80;1;2;0;0;1;0
+26604;19562;1;158;87.0;150;90;1;1;0;0;1;1
+26606;22374;1;165;65.0;120;80;1;1;0;0;1;0
+26607;21912;2;172;67.0;110;80;1;1;0;0;1;0
+26608;23502;1;169;75.0;130;90;1;1;0;0;1;1
+26610;14489;2;176;65.0;120;80;1;1;0;0;1;0
+26611;14633;1;158;80.0;130;90;1;1;0;1;1;0
+26616;19205;2;164;60.0;120;80;1;1;1;0;0;0
+26617;20471;2;160;53.0;120;80;1;1;0;0;1;1
+26618;20944;1;157;77.0;110;70;1;1;0;0;1;1
+26619;14680;2;178;152.0;140;90;2;2;0;0;1;0
+26620;18252;1;161;68.0;100;80;1;1;0;0;1;0
+26623;15231;1;167;78.0;120;80;1;1;0;0;1;0
+26626;20293;1;168;68.0;120;80;1;1;0;0;1;0
+26627;21909;1;160;99.0;153;70;3;2;0;0;0;1
+26628;18990;2;160;58.0;120;80;1;1;0;0;1;0
+26629;20870;2;169;72.0;120;80;1;1;0;0;1;0
+26630;18273;1;168;168.0;110;70;1;1;0;0;1;1
+26631;15115;2;168;82.0;140;90;1;1;0;0;1;1
+26632;18228;2;172;86.0;120;80;1;1;0;0;1;0
+26633;21182;2;179;99.0;110;70;1;1;1;1;1;0
+26634;20374;2;165;87.0;120;80;1;1;0;0;1;0
+26635;14512;2;169;78.0;110;70;1;1;0;0;1;0
+26636;18854;1;153;52.0;110;70;2;1;0;0;0;0
+26637;20555;1;168;69.0;100;60;3;1;0;0;1;1
+26639;19485;1;172;70.0;120;80;1;1;0;0;1;1
+26640;20362;2;180;93.0;150;98;1;1;0;0;0;1
+26641;19113;1;155;107.0;100;60;1;1;0;1;1;0
+26642;20286;2;165;72.0;120;80;1;1;0;0;1;0
+26643;18905;1;165;65.0;120;80;1;1;0;0;1;0
+26645;14388;2;176;94.0;130;90;2;1;0;0;1;0
+26646;16101;1;160;68.0;120;80;1;1;0;0;1;0
+26648;18843;1;158;90.0;110;65;1;1;0;0;1;0
+26650;21018;2;166;75.0;130;80;2;1;0;0;1;1
+26651;17720;1;155;50.0;130;80;3;1;0;0;1;1
+26653;21847;2;165;65.0;130;80;2;2;1;0;0;1
+26654;18932;2;168;56.0;110;90;1;1;0;0;0;0
+26657;21600;1;168;66.0;150;90;1;2;0;0;1;1
+26658;22381;1;164;81.0;120;80;1;2;0;1;1;1
+26660;17389;1;172;105.0;140;90;1;1;0;0;1;1
+26662;21855;1;172;64.0;110;70;1;1;0;0;1;0
+26664;15289;1;157;59.0;110;70;1;1;0;0;1;0
+26667;19144;1;164;86.0;90;60;3;1;0;0;1;1
+26668;19110;2;162;59.0;100;70;1;1;1;1;1;0
+26669;16472;1;157;64.0;100;60;1;1;0;0;1;0
+26670;22903;1;162;61.0;120;80;1;1;0;0;1;0
+26671;14513;2;168;64.0;110;70;1;1;0;0;1;0
+26672;21954;2;170;72.0;130;90;1;1;0;0;1;0
+26673;22789;1;156;73.0;150;90;1;1;0;0;1;1
+26676;21949;1;164;70.0;132;85;1;1;0;0;1;0
+26680;23494;1;162;60.0;130;90;2;1;0;0;0;1
+26681;19386;1;155;59.5;120;85;1;1;0;0;1;0
+26682;22460;2;168;70.0;120;80;1;1;0;0;1;0
+26685;18116;2;165;78.0;140;90;1;1;0;0;1;1
+26686;16034;2;174;65.0;120;80;1;1;0;0;1;1
+26687;15058;1;164;120.0;100;70;2;1;0;0;1;0
+26688;18337;1;167;70.0;120;70;1;1;0;0;1;1
+26689;22785;2;164;69.0;130;80;2;1;0;0;1;1
+26690;18855;1;162;75.0;150;100;1;2;0;0;1;1
+26692;22762;2;176;80.0;140;80;2;2;0;0;0;1
+26693;21708;2;150;58.0;140;80;1;1;0;0;1;1
+26694;16144;1;165;70.0;120;80;1;1;0;0;1;0
+26695;15944;1;168;60.0;120;80;1;1;0;0;1;1
+26696;19629;1;160;65.0;120;70;1;1;0;0;1;0
+26697;14722;1;170;100.0;120;80;1;1;0;0;1;0
+26699;19806;2;170;65.0;120;80;1;1;0;0;1;1
+26702;16076;1;149;63.0;120;80;1;1;0;0;1;0
+26703;18154;1;168;82.0;140;90;1;1;0;0;1;0
+26704;17308;1;158;71.0;120;80;1;1;0;0;1;0
+26705;21184;2;172;85.0;120;80;3;1;0;0;1;1
+26706;22550;1;164;75.0;140;80;3;2;0;0;0;1
+26708;17610;2;154;78.0;120;80;1;1;0;0;1;0
+26709;14658;1;155;62.0;120;80;1;1;0;0;1;0
+26710;23446;2;186;100.0;130;90;1;2;0;0;1;0
+26711;18488;2;170;65.0;120;80;1;1;1;1;1;0
+26712;17532;1;154;70.0;180;110;1;1;0;0;1;1
+26713;15410;1;164;73.0;110;70;1;1;0;0;0;0
+26714;18432;2;167;70.0;120;80;1;1;0;0;1;0
+26716;21878;1;160;67.0;110;75;1;1;0;0;1;1
+26717;21722;1;159;66.0;130;80;1;1;0;1;0;0
+26718;18154;1;158;65.0;90;60;1;1;0;0;1;0
+26719;19816;1;165;92.0;140;90;1;1;0;0;0;1
+26720;19117;1;162;70.0;132;94;1;1;0;0;1;0
+26724;20378;1;163;70.0;120;80;1;1;0;0;1;1
+26727;15937;2;170;68.0;125;80;1;1;0;0;1;0
+26728;15183;1;168;70.0;100;60;1;1;0;0;1;0
+26729;23140;1;160;67.0;120;80;3;3;0;0;1;1
+26730;14693;1;164;60.0;110;70;1;1;0;0;1;0
+26731;23113;1;164;56.0;120;80;2;3;0;0;1;1
+26734;19055;2;156;58.0;120;80;1;1;0;0;0;0
+26735;18405;1;164;66.0;110;73;1;1;0;0;0;0
+26738;22015;2;171;75.0;140;90;1;2;0;0;1;1
+26740;22622;2;170;70.0;170;100;1;1;0;0;0;1
+26741;18021;2;172;68.0;110;80;1;1;0;0;1;0
+26743;19629;2;158;53.0;130;80;1;1;0;0;1;0
+26744;17545;1;165;60.0;120;80;1;1;0;0;1;0
+26745;20388;1;150;71.0;140;90;2;1;0;0;1;1
+26746;16626;1;162;98.0;140;1100;1;1;0;0;1;1
+26747;21767;2;165;104.0;140;90;1;1;0;0;1;0
+26748;21882;1;164;75.0;120;80;1;1;0;0;1;0
+26750;19832;1;156;71.0;90;60;2;1;0;1;1;0
+26752;19537;2;168;91.0;140;90;2;1;0;0;1;1
+26753;14453;1;163;80.0;100;70;1;1;0;0;0;0
+26755;20394;2;165;65.0;120;80;1;1;1;0;0;0
+26759;23450;1;145;50.0;120;80;1;1;0;0;1;1
+26761;22523;1;165;78.0;115;75;1;1;0;0;1;1
+26762;15480;1;153;61.0;110;80;2;2;0;0;1;0
+26763;22189;1;152;70.0;120;80;1;1;0;0;1;1
+26765;15191;1;178;76.0;110;70;1;1;0;0;1;0
+26766;22704;1;161;75.0;120;80;1;1;0;0;1;1
+26767;21742;2;172;66.0;130;80;1;1;0;0;1;1
+26768;15909;1;159;64.0;120;80;1;1;0;0;1;0
+26769;20440;2;165;74.0;110;70;2;1;1;0;1;0
+26771;18165;2;168;69.0;110;70;1;1;0;0;1;0
+26772;18274;2;178;50.0;110;60;1;1;1;0;1;1
+26773;18359;1;160;80.0;130;80;2;1;0;0;0;1
+26775;21922;2;170;122.0;110;70;1;1;0;0;0;0
+26777;17537;1;166;81.0;150;1000;2;1;1;1;1;1
+26779;16067;1;166;66.0;100;65;2;1;0;0;1;0
+26780;23348;2;182;91.0;120;80;1;1;0;0;1;1
+26782;20474;1;165;59.0;110;70;1;1;0;0;1;0
+26783;18108;2;188;68.0;110;70;1;1;0;0;1;0
+26784;19052;1;176;90.0;160;1000;3;1;0;0;1;1
+26785;18275;1;145;48.0;100;80;1;1;0;0;1;0
+26787;14311;2;175;87.0;125;79;1;1;0;0;1;0
+26788;21167;1;151;57.0;120;80;1;1;0;0;1;0
+26790;19044;1;154;76.0;135;80;1;3;0;0;1;1
+26791;19522;1;164;67.0;130;90;1;1;0;0;1;1
+26792;15281;2;162;60.0;120;80;1;1;1;0;1;1
+26793;18905;1;165;98.0;120;80;3;3;0;0;1;1
+26794;23401;2;178;80.0;120;79;1;1;0;0;1;1
+26795;18193;1;156;67.0;110;70;2;1;0;0;1;1
+26796;21262;1;164;66.0;120;80;2;2;0;0;1;1
+26798;23318;2;166;79.0;170;80;1;1;0;0;1;1
+26799;17005;1;162;77.0;140;90;3;1;0;0;1;1
+26800;21820;1;151;63.0;130;80;2;1;0;0;1;0
+26801;18344;2;167;80.0;130;80;2;2;0;0;1;1
+26802;21854;2;162;52.0;160;90;1;1;0;0;1;1
+26808;14483;2;168;100.0;120;80;2;2;0;0;1;1
+26809;19681;1;158;78.0;120;80;1;1;0;0;0;0
+26810;23431;1;163;65.0;110;70;2;2;0;0;1;0
+26811;20332;2;171;74.0;140;80;1;1;0;0;0;1
+26812;19923;2;162;63.0;110;70;2;1;0;0;1;1
+26813;18413;2;170;79.0;122;80;2;1;0;0;1;0
+26814;18857;1;171;80.0;120;80;1;1;0;0;1;0
+26815;16772;2;178;76.0;120;80;1;1;0;0;1;1
+26816;18468;2;168;98.0;140;90;1;1;1;0;1;1
+26818;19745;1;163;60.0;130;70;1;1;0;0;1;0
+26819;20499;1;163;69.0;130;90;1;1;0;0;0;0
+26820;14756;1;156;81.0;110;70;2;1;0;0;0;0
+26821;16881;2;172;74.0;120;80;1;1;0;0;0;0
+26822;21785;1;161;66.0;130;80;3;1;0;0;0;1
+26824;15171;2;170;74.0;140;90;3;1;0;0;1;1
+26826;21142;2;178;68.0;110;80;1;1;0;0;1;1
+26827;21856;1;167;88.0;120;80;1;3;0;0;1;1
+26828;19613;1;162;78.0;130;80;1;1;0;0;1;0
+26832;17435;1;162;70.0;110;70;1;1;0;0;1;0
+26833;17382;1;153;50.0;140;90;1;2;0;0;1;1
+26834;21170;1;162;70.0;130;80;1;1;0;0;1;1
+26835;17387;2;176;72.0;140;90;2;1;1;0;0;1
+26837;18825;1;170;78.0;120;80;1;1;0;0;0;0
+26838;19645;1;150;74.0;130;90;1;1;0;0;0;1
+26839;23094;1;158;94.0;140;90;1;1;0;0;0;1
+26840;14457;1;171;70.0;100;90;1;1;0;0;1;1
+26841;20396;1;164;69.0;160;80;1;1;0;0;1;1
+26842;19718;2;168;65.0;110;70;1;1;0;0;1;0
+26843;21100;2;150;64.0;125;76;3;1;0;0;1;0
+26844;18253;2;175;67.0;120;80;1;1;0;0;1;0
+26845;16845;1;158;65.0;120;80;1;1;0;0;1;0
+26846;21771;2;170;50.0;130;90;2;1;1;1;1;1
+26847;15318;2;174;63.0;120;80;1;1;0;0;1;0
+26848;19022;2;176;83.0;120;80;1;1;0;0;1;0
+26849;20650;1;178;78.0;120;80;1;1;0;0;0;0
+26851;20388;1;166;73.0;140;80;2;1;0;1;1;1
+26852;17536;2;169;78.0;120;80;2;2;0;0;0;1
+26854;21253;1;157;71.0;140;90;3;2;0;1;1;1
+26855;23403;2;170;71.0;120;70;2;1;0;0;1;1
+26856;19840;2;170;69.0;140;90;1;1;0;0;0;1
+26857;19755;1;163;96.0;110;70;1;3;0;0;1;1
+26858;19151;2;178;67.0;140;100;2;2;1;1;1;0
+26859;22805;1;162;72.0;110;70;1;1;0;0;1;0
+26860;18049;1;167;68.0;120;80;1;1;0;0;1;1
+26862;19869;1;172;75.0;110;70;1;1;0;0;1;1
+26863;18201;1;154;77.0;160;110;1;1;0;0;1;1
+26864;19958;1;157;60.0;110;60;1;1;0;0;0;0
+26865;16210;1;162;58.0;110;70;1;3;0;0;1;0
+26866;23423;1;159;89.0;180;100;1;1;0;0;1;1
+26867;17508;2;171;74.0;120;80;1;1;0;0;1;0
+26868;22652;1;163;73.0;120;80;2;3;0;0;0;0
+26869;23263;2;167;80.0;130;90;1;1;0;0;1;0
+26870;16574;1;165;66.0;120;80;1;1;0;0;1;0
+26873;15213;1;160;59.0;100;80;1;1;0;0;0;0
+26875;18420;1;169;110.0;160;1000;3;3;0;0;1;1
+26878;18244;2;169;83.0;140;90;2;1;0;0;1;1
+26882;18251;1;163;72.0;100;80;1;1;0;0;1;0
+26883;18903;1;168;76.0;130;80;1;1;0;0;1;1
+26884;17651;1;162;76.0;120;80;1;1;0;0;1;0
+26888;16559;1;169;73.0;150;100;2;1;0;0;1;0
+26890;18239;1;154;83.0;160;90;3;1;0;0;1;0
+26891;14664;1;151;49.0;110;80;1;1;0;0;1;0
+26892;18141;2;162;85.0;120;80;1;1;1;0;1;0
+26893;19045;1;167;90.0;120;80;1;1;0;0;1;1
+26894;18078;1;157;76.0;120;80;1;1;0;0;1;1
+26895;19625;2;176;82.0;120;80;1;1;1;0;1;0
+26896;21472;1;165;64.0;120;80;1;1;0;0;1;0
+26898;21001;2;162;92.0;140;90;1;1;0;0;0;1
+26899;21748;2;168;67.0;140;80;1;1;0;1;1;1
+26902;18007;1;160;62.0;120;80;1;3;0;0;1;1
+26903;20507;2;163;72.0;120;80;3;1;0;0;1;0
+26904;18854;1;160;72.0;140;80;3;3;0;1;1;1
+26905;15373;1;158;60.0;120;80;1;1;0;0;1;1
+26907;21984;1;164;68.0;110;70;1;1;0;0;0;0
+26909;16736;2;163;82.0;130;80;1;1;0;0;1;0
+26912;18159;1;158;65.0;130;90;1;1;0;0;1;1
+26913;19471;1;164;63.0;120;70;1;1;0;0;1;1
+26914;20491;1;160;62.0;110;70;2;1;0;0;1;0
+26915;21407;1;164;76.0;120;80;1;1;0;0;1;0
+26916;23334;1;146;62.0;150;100;1;1;0;0;0;1
+26917;19078;2;174;72.0;120;80;2;1;1;1;1;0
+26919;22828;2;164;76.0;120;80;1;1;0;0;1;0
+26920;19806;1;154;60.0;105;60;1;1;0;0;1;0
+26922;20549;2;176;64.0;113;80;1;1;0;0;1;0
+26923;23192;1;156;78.0;130;80;2;2;0;0;0;1
+26925;22000;1;163;69.0;140;90;1;1;0;0;1;1
+26927;16321;1;157;54.0;120;80;1;1;0;0;0;0
+26928;21225;2;176;82.0;150;100;2;1;1;0;1;1
+26929;21954;1;163;74.0;130;80;1;1;0;0;0;1
+26930;19553;1;154;68.0;120;80;1;1;0;0;1;1
+26931;18189;2;160;81.0;188;113;1;1;0;0;1;1
+26932;19990;1;164;94.0;130;80;3;1;0;0;1;1
+26933;21127;2;163;54.0;120;80;1;1;1;0;1;0
+26934;20516;2;170;72.0;150;100;1;1;1;1;1;1
+26935;19195;1;168;90.0;120;90;1;1;0;0;1;1
+26937;19701;2;165;63.0;120;80;1;1;0;0;1;0
+26940;21939;1;164;65.0;110;70;2;1;0;0;1;1
+26941;18034;1;157;64.0;120;80;1;1;0;0;1;0
+26942;16691;1;164;131.0;150;90;3;1;0;0;1;0
+26944;18767;1;165;65.0;110;70;1;1;0;0;1;0
+26945;21073;1;168;89.0;120;80;1;1;0;1;1;0
+26946;20271;2;180;110.0;120;80;1;1;0;0;1;1
+26948;17991;2;171;73.0;110;70;1;1;0;0;1;0
+26949;16777;1;150;80.0;110;70;1;1;0;0;0;0
+26950;21045;2;164;91.0;160;1100;2;1;1;0;1;1
+26952;18995;1;160;60.0;140;90;1;1;0;0;1;1
+26953;17378;1;161;62.4;100;70;1;1;0;0;1;0
+26954;20261;1;162;71.0;130;80;2;2;0;0;1;0
+26957;21156;1;165;65.0;80;120;2;1;0;0;1;1
+26958;20273;1;169;64.0;120;80;1;1;0;0;1;0
+26960;19847;1;168;83.0;120;80;1;1;0;0;0;1
+26961;17421;1;160;60.0;120;80;1;1;0;0;1;1
+26962;14432;1;168;80.0;150;80;1;2;0;0;0;1
+26963;16121;2;174;82.0;120;80;1;1;0;0;1;0
+26964;16061;2;184;91.0;120;80;1;1;0;0;1;0
+26965;18159;1;152;71.0;100;60;1;1;0;0;1;0
+26966;21718;1;153;78.0;130;90;1;1;0;0;1;0
+26967;21852;1;172;84.0;160;100;1;3;0;0;1;1
+26968;19834;2;159;72.0;160;100;2;1;0;0;1;1
+26970;21765;2;166;66.0;120;80;1;1;0;0;0;1
+26971;16111;1;167;65.0;120;80;1;1;0;0;1;0
+26973;22396;1;162;78.0;135;80;2;1;0;0;1;1
+26975;20523;2;185;98.0;150;1000;2;1;0;0;1;1
+26976;23424;2;173;90.0;140;85;1;1;0;0;1;1
+26978;18317;1;170;62.0;130;90;1;1;0;0;1;0
+26979;16140;1;153;59.0;120;80;1;1;0;0;1;0
+26980;14376;1;155;76.0;90;60;1;1;0;0;1;0
+26981;22601;1;169;75.0;120;80;1;2;0;0;1;1
+26982;22590;1;154;68.0;130;80;3;3;0;0;1;1
+26983;17531;1;171;68.0;110;7;1;1;0;0;1;0
+26984;18994;2;165;69.0;120;80;1;1;0;0;1;0
+26986;20311;1;160;65.0;100;60;1;1;0;0;1;0
+26987;16136;1;165;65.0;120;80;1;1;0;0;1;1
+26988;21187;2;165;90.0;120;80;1;1;0;1;1;0
+26989;19546;2;180;78.0;150;100;1;1;1;0;1;1
+26990;19519;1;158;70.0;141;81;1;1;0;0;1;0
+26991;16053;1;175;60.0;110;80;2;1;0;0;1;0
+26992;22691;2;177;115.0;140;80;2;2;0;0;1;1
+26993;20572;1;167;65.0;120;70;1;1;0;1;1;0
+26994;22681;1;158;69.0;150;70;1;1;0;0;1;1
+26995;21111;1;154;49.0;110;80;3;3;0;0;1;0
+27000;16080;1;165;70.0;130;80;1;1;0;0;1;0
+27001;17555;2;169;89.0;130;85;1;1;0;0;0;1
+27002;21346;1;158;68.0;130;90;1;1;0;0;1;0
+27003;14505;1;159;79.0;110;80;1;1;0;1;0;0
+27004;19671;2;165;65.0;140;90;1;1;0;0;1;1
+27005;15216;2;162;75.0;112;80;1;1;0;0;1;0
+27006;19730;1;158;83.0;120;80;2;1;0;0;0;1
+27007;20474;1;160;62.0;140;90;1;1;0;0;1;1
+27009;21979;1;162;64.0;130;90;1;1;0;0;1;1
+27011;14341;2;161;64.0;120;70;1;1;0;0;1;0
+27013;21780;2;168;70.0;120;60;1;1;1;1;1;0
+27014;22840;2;166;73.0;120;80;1;1;0;0;1;1
+27016;14797;1;150;80.0;120;80;1;1;0;0;1;0
+27017;23551;2;178;78.0;130;90;1;1;0;0;1;0
+27019;21370;1;148;86.0;150;100;2;1;0;0;1;0
+27020;21900;2;164;61.0;160;100;1;2;0;0;1;1
+27021;23410;2;168;70.0;120;70;1;1;0;0;1;1
+27023;19624;1;160;84.0;130;80;2;1;0;0;1;1
+27024;14570;2;173;80.0;120;80;1;1;0;0;1;0
+27025;23439;2;163;60.0;120;80;1;1;0;0;1;1
+27026;19666;1;155;79.0;160;1000;3;3;0;0;1;1
+27028;20315;1;170;67.0;110;70;1;1;0;0;1;0
+27029;22499;1;161;94.0;100;70;1;1;0;0;0;0
+27031;21890;1;161;64.0;120;80;1;1;0;0;1;0
+27033;15829;1;165;79.0;120;80;1;1;0;0;1;1
+27035;21047;1;168;59.0;120;80;1;3;1;0;0;0
+27036;19697;2;170;69.0;170;110;1;1;0;0;1;1
+27037;18948;1;160;58.0;120;80;1;1;0;0;1;0
+27038;18138;2;169;79.0;120;90;1;1;0;0;1;0
+27039;20371;2;181;87.0;120;90;1;1;0;0;0;0
+27041;23239;2;163;98.0;130;80;2;1;0;0;0;1
+27043;18079;1;166;69.0;120;80;1;2;0;0;1;0
+27046;15541;1;159;62.0;120;70;1;1;0;0;1;0
+27048;16880;1;165;117.0;120;80;1;1;0;0;1;0
+27050;21207;1;170;70.0;120;70;1;1;0;0;1;0
+27052;18458;2;172;80.0;130;90;1;1;0;0;1;1
+27054;20328;1;159;53.0;120;70;1;1;0;0;1;0
+27058;19749;1;158;97.0;140;90;2;2;0;0;1;1
+27059;21135;1;158;83.0;160;100;3;1;0;1;1;1
+27060;14720;1;163;79.0;120;80;1;1;0;0;1;0
+27061;21158;1;168;64.0;120;80;1;1;0;0;0;0
+27062;14835;1;168;97.0;100;60;2;2;0;0;1;0
+27063;15421;1;155;163.0;180;100;1;1;0;0;1;1
+27064;18863;2;179;88.0;120;80;1;1;0;0;1;0
+27065;17602;2;181;91.0;140;90;1;1;0;0;1;1
+27066;15946;2;170;61.0;110;70;1;1;1;1;1;0
+27067;21975;2;169;65.0;120;80;1;1;0;0;1;0
+27068;21951;2;168;70.0;140;90;1;1;0;1;1;1
+27069;17452;2;170;62.0;110;20;1;1;0;0;1;1
+27070;23195;1;150;69.0;150;80;3;1;0;0;1;0
+27072;16046;2;175;65.0;120;80;1;1;0;0;1;0
+27074;15281;2;172;83.0;120;80;1;1;0;0;1;0
+27076;16784;1;158;81.0;100;70;1;1;0;0;1;0
+27077;21102;1;167;68.0;130;70;1;1;0;0;1;1
+27079;20408;1;168;79.0;120;80;1;1;0;0;1;1
+27080;14627;1;172;75.0;120;80;1;1;0;1;1;0
+27081;21238;1;162;81.0;130;80;2;2;0;0;1;0
+27082;18158;2;170;104.0;150;90;1;1;0;0;1;1
+27084;17706;2;163;66.0;120;80;1;1;0;0;1;0
+27086;19163;2;161;68.0;120;90;1;3;1;1;1;0
+27087;19961;1;156;72.0;120;80;1;1;0;0;1;0
+27089;18702;1;160;71.0;140;90;1;1;0;0;0;0
+27090;20354;1;160;60.0;120;80;1;1;0;0;0;0
+27091;19731;2;171;56.0;120;80;1;1;1;0;1;0
+27093;23406;2;170;95.0;160;90;2;1;0;0;1;1
+27094;22521;1;154;58.0;110;60;1;1;0;0;1;0
+27097;22005;1;165;66.0;140;90;1;1;0;0;1;1
+27098;16224;1;158;55.0;110;60;1;1;0;0;1;0
+27099;19791;1;155;75.0;90;60;1;3;0;0;1;1
+27101;19751;1;165;69.0;120;80;1;1;0;0;1;0
+27102;20351;2;168;70.0;150;1000;1;1;0;0;1;1
+27103;21066;2;154;47.0;130;90;1;1;0;0;1;0
+27104;21915;1;165;70.0;120;80;1;1;0;0;1;1
+27105;18116;1;157;56.0;100;60;1;1;0;0;1;0
+27106;14793;2;180;67.0;120;80;1;1;1;0;1;0
+27107;22009;1;160;90.0;120;80;1;1;0;0;1;1
+27110;17474;1;160;60.0;110;80;2;1;0;0;1;0
+27111;18269;1;165;63.0;110;80;1;1;0;0;1;0
+27113;23517;1;160;72.0;150;90;1;1;0;0;1;1
+27114;19720;1;156;69.0;120;80;1;1;0;0;1;0
+27115;14771;2;179;70.0;130;80;1;1;1;0;1;0
+27116;17360;1;164;76.0;110;80;1;1;1;0;0;0
+27117;19782;1;153;80.0;130;80;3;1;0;0;1;1
+27118;20510;1;167;77.0;100;80;1;1;0;0;1;1
+27121;16032;1;176;103.0;145;80;2;1;0;0;1;1
+27122;19013;1;167;58.0;120;80;1;1;0;0;1;0
+27127;18326;1;150;47.0;120;80;2;1;0;0;1;0
+27129;19625;1;160;75.0;120;80;1;1;0;0;1;0
+27130;22686;1;159;65.0;130;90;2;1;0;0;0;1
+27131;18186;1;153;67.0;120;90;1;1;0;0;1;0
+27132;21052;2;163;66.0;160;100;2;1;0;1;1;1
+27133;18094;1;166;69.0;120;80;1;1;0;0;1;0
+27134;21147;1;162;69.0;110;80;1;1;0;0;1;0
+27135;21226;1;160;75.0;120;80;1;1;0;0;1;1
+27136;18797;2;176;102.0;130;90;1;1;1;0;0;0
+27138;20384;1;150;60.0;120;80;1;1;0;0;1;0
+27139;16958;2;172;84.0;120;80;1;1;1;1;1;0
+27140;21050;1;164;62.0;120;80;1;1;0;1;1;1
+27141;18263;1;167;69.0;110;60;1;1;0;0;1;0
+27142;21295;2;169;89.0;140;90;3;1;0;0;1;1
+27143;20371;1;170;74.0;140;90;1;1;0;0;0;1
+27144;22876;2;168;64.0;120;80;1;1;0;0;0;1
+27147;19062;1;164;90.0;150;90;3;1;0;0;1;1
+27148;19911;1;162;61.0;140;80;2;2;0;0;1;0
+27149;18991;1;170;76.0;140;1000;3;3;0;0;1;0
+27150;22479;2;167;100.0;200;100;3;1;0;0;1;0
+27151;20256;2;170;85.0;130;80;1;1;0;0;0;1
+27152;17393;2;165;62.0;120;80;1;1;0;0;0;1
+27156;21819;1;161;100.0;130;80;1;1;0;0;1;0
+27157;18976;1;164;76.0;130;80;1;1;0;0;1;0
+27159;18869;1;158;96.0;130;80;3;1;0;0;1;0
+27160;21810;2;170;70.0;150;80;3;3;0;0;1;1
+27161;23268;2;162;87.0;170;90;1;1;1;0;1;1
+27162;23284;1;154;61.0;110;70;1;1;0;0;0;0
+27163;17952;1;172;74.0;120;70;1;1;0;0;0;0
+27165;21688;1;165;65.0;120;80;1;1;0;0;1;0
+27168;20393;1;165;71.0;120;80;1;1;0;0;1;0
+27169;18107;1;158;50.0;130;90;1;1;0;0;1;0
+27170;15138;1;160;71.0;120;80;1;1;0;0;1;0
+27171;16139;2;170;84.0;130;80;1;1;0;0;1;0
+27172;16209;2;169;65.0;120;60;1;1;1;0;1;0
+27173;19771;1;172;79.0;130;80;1;1;0;0;0;0
+27175;14449;2;172;82.0;120;80;1;1;0;0;1;0
+27177;22491;1;158;64.0;120;80;1;1;0;0;1;0
+27178;18310;1;160;62.0;120;80;1;1;0;0;1;0
+27179;19900;2;166;98.0;120;80;1;1;0;0;1;1
+27181;14462;1;168;66.0;130;80;1;1;0;0;1;0
+27183;22507;2;180;70.0;120;80;1;1;1;1;0;1
+27184;18523;1;161;80.0;110;80;2;1;0;0;1;0
+27187;21121;1;162;75.0;110;70;1;1;0;0;1;0
+27189;16855;2;176;100.0;120;80;1;1;1;0;1;0
+27190;22057;1;165;70.0;130;90;1;1;0;0;1;1
+27191;20301;2;169;71.0;120;80;1;1;0;0;1;1
+27192;15556;2;173;78.0;140;90;2;1;0;0;1;1
+27193;15253;1;162;62.0;11;70;2;2;0;0;1;0
+27194;23255;2;173;80.0;170;100;3;1;0;0;1;1
+27196;19024;1;164;68.0;120;70;2;2;0;0;1;0
+27198;21141;1;144;80.0;130;85;3;1;0;0;1;1
+27199;20426;1;165;90.0;140;80;1;1;0;0;0;1
+27200;20923;2;157;53.0;110;70;1;1;1;1;1;0
+27201;19950;1;168;65.0;120;80;1;1;0;0;1;1
+27202;18916;1;162;61.0;120;80;1;1;0;0;0;0
+27203;16802;1;154;130.0;170;110;1;1;0;0;1;1
+27208;22878;1;156;65.0;120;80;2;2;0;0;1;0
+27209;19923;1;168;70.0;100;60;1;1;0;0;1;0
+27210;18959;1;165;78.0;110;80;1;1;0;0;0;0
+27211;19665;2;170;66.0;120;80;1;1;1;1;1;0
+27212;16908;1;148;55.0;110;80;1;1;0;0;1;1
+27213;18946;2;168;72.0;150;90;1;3;0;0;1;1
+27214;21259;2;178;101.0;130;80;3;3;0;0;1;1
+27216;14622;2;179;85.0;120;80;1;1;0;0;1;0
+27218;16194;1;160;59.0;100;80;2;1;0;0;1;1
+27219;19018;2;173;71.0;110;70;1;1;0;0;1;1
+27220;19594;2;163;81.0;110;80;2;1;0;1;1;1
+27221;19755;2;168;72.0;120;80;1;1;1;0;1;0
+27223;15230;1;168;71.0;120;70;1;1;0;0;1;0
+27224;19808;1;156;61.0;120;80;1;1;0;0;0;1
+27229;16251;1;170;67.0;110;90;1;3;0;0;1;0
+27230;19244;1;163;60.0;120;80;1;1;0;0;0;0
+27231;18970;1;172;67.0;120;80;1;1;0;0;1;0
+27232;19695;1;163;69.0;110;70;1;1;0;0;1;1
+27233;21843;2;170;86.0;170;100;1;1;0;0;1;1
+27236;16053;2;176;61.0;120;80;1;1;0;0;1;0
+27237;18097;1;165;84.0;110;80;1;1;0;0;1;0
+27240;22751;1;168;65.0;120;80;1;1;0;0;1;1
+27242;19771;2;168;68.0;110;7;1;1;0;0;1;0
+27243;14895;1;169;62.0;120;80;1;1;0;0;0;0
+27244;22733;1;160;72.0;120;80;1;1;0;0;1;0
+27245;15290;1;155;65.0;102;57;1;1;0;0;1;0
+27246;20427;1;170;78.0;100;60;2;1;0;0;0;0
+27247;21363;1;170;70.0;120;80;1;1;1;0;1;1
+27248;23189;1;159;65.0;148;80;1;1;0;0;1;0
+27249;20466;2;174;87.0;130;80;1;1;0;0;1;1
+27250;18071;1;170;72.0;110;70;1;1;0;0;1;0
+27255;22679;2;177;87.0;140;90;1;1;0;0;1;1
+27257;17221;2;161;69.0;120;90;1;1;1;1;1;1
+27258;21828;2;172;92.0;190;120;2;1;1;0;1;1
+27259;16790;1;154;65.0;140;90;1;1;0;0;0;1
+27260;21179;2;174;68.0;120;80;1;1;0;1;1;1
+27261;18737;1;167;96.0;140;90;1;2;0;0;0;1
+27262;19755;2;171;80.0;149;103;2;2;0;0;1;1
+27263;14682;1;156;55.0;130;85;1;1;0;0;1;0
+27264;17314;2;168;62.0;110;70;1;1;0;0;1;0
+27265;18446;2;165;74.0;130;100;3;1;0;0;1;1
+27266;19659;1;164;74.0;120;79;3;1;0;0;1;1
+27270;19164;2;168;85.0;140;90;1;3;0;0;1;0
+27271;19880;2;170;87.0;150;80;1;1;1;0;1;1
+27273;21340;1;162;75.0;120;80;1;1;0;0;1;0
+27274;20268;1;162;62.0;120;80;1;1;0;0;1;1
+27275;18451;1;164;94.0;120;80;1;2;0;0;1;1
+27276;21714;1;164;93.0;150;100;3;1;0;0;1;1
+27279;19232;1;164;81.0;150;90;1;1;0;0;1;1
+27280;18002;2;180;72.0;100;60;1;1;0;0;1;0
+27281;20437;1;158;66.0;115;75;3;3;0;0;1;1
+27282;16551;1;168;73.0;110;80;1;1;0;0;1;0
+27284;20542;1;165;65.0;120;80;1;1;0;0;1;0
+27286;15324;2;167;70.0;150;100;1;1;1;1;1;1
+27287;20396;1;159;85.0;110;80;3;1;0;1;1;1
+27288;23225;1;179;77.0;130;90;1;1;0;0;1;1
+27290;15955;1;166;84.0;130;80;2;1;0;1;1;0
+27291;18805;1;164;84.0;130;70;2;1;0;1;1;1
+27293;20519;2;165;63.0;130;90;3;1;0;0;0;0
+27294;18233;1;163;68.0;120;70;1;1;0;0;1;0
+27295;20534;1;155;74.0;128;85;1;1;0;0;0;0
+27297;19610;2;177;99.0;125;85;1;1;1;1;1;0
+27298;23159;1;155;54.0;117;80;3;1;0;0;1;0
+27299;22685;1;165;67.0;140;90;2;2;0;0;0;1
+27301;21827;2;172;113.0;130;100;1;1;0;0;0;0
+27302;22322;1;168;90.0;120;80;1;1;0;0;0;1
+27305;20426;2;174;75.0;120;80;1;1;1;0;1;0
+27306;19949;1;178;69.0;140;90;2;1;0;0;0;1
+27307;22086;1;167;45.0;120;79;3;3;0;0;1;1
+27308;18074;1;168;66.0;120;80;1;1;0;0;1;1
+27309;21057;1;156;59.0;160;90;3;3;0;0;1;1
+27310;16732;2;169;76.0;140;90;1;1;0;0;0;1
+27312;20715;2;168;59.0;120;80;1;1;0;0;1;0
+27315;22013;1;157;60.0;120;70;1;1;0;0;0;0
+27316;22590;1;159;67.0;150;90;2;1;0;0;1;1
+27317;19628;1;162;60.0;110;70;1;1;0;1;1;0
+27319;23316;2;160;50.0;140;90;3;3;1;0;1;1
+27320;19047;2;173;80.0;140;100;1;1;1;1;1;1
+27321;17601;1;157;91.0;130;90;1;3;0;0;1;1
+27322;23436;1;158;59.0;130;90;3;1;0;0;0;1
+27323;21332;2;171;107.0;140;90;1;1;0;0;1;1
+27325;20447;1;155;67.0;130;80;2;1;0;0;1;0
+27326;21087;1;158;86.0;140;90;2;1;0;0;1;1
+27329;23545;2;175;72.0;120;80;1;1;0;0;1;1
+27330;20422;2;158;65.0;120;80;1;1;0;0;1;1
+27332;20920;2;173;73.0;120;80;1;1;0;0;1;0
+27333;16842;1;157;63.0;100;70;1;1;0;0;1;0
+27334;22558;1;163;67.0;150;100;3;3;0;0;1;1
+27335;21828;2;170;80.0;120;80;1;1;0;0;1;0
+27336;20457;1;154;78.0;140;90;1;1;0;0;1;1
+27337;22696;2;165;84.0;140;80;3;1;0;0;1;1
+27339;14621;1;151;53.0;90;60;1;1;0;0;1;0
+27340;22690;1;159;60.0;140;90;1;1;0;0;1;1
+27341;21882;1;152;67.0;150;90;2;1;0;0;1;1
+27342;21221;2;169;78.0;150;90;2;1;0;0;1;1
+27344;23488;2;173;81.0;120;80;2;2;0;0;1;0
+27345;14456;1;165;80.0;120;80;1;1;0;0;1;0
+27347;18434;2;170;80.0;140;90;1;1;0;0;1;1
+27349;20331;1;162;78.0;120;80;2;1;0;0;0;1
+27350;19106;2;147;54.0;120;80;2;1;0;0;0;1
+27356;21741;1;168;68.0;120;80;1;1;0;0;1;1
+27357;16044;1;163;80.0;130;70;1;1;0;0;1;1
+27361;20428;1;165;65.0;120;79;3;3;0;0;0;1
+27362;19080;1;171;78.0;120;80;1;1;0;0;1;1
+27363;18123;2;167;59.0;120;80;1;1;1;0;1;0
+27365;14641;2;180;90.0;130;70;1;1;0;0;1;0
+27366;14825;1;174;73.0;130;90;1;1;0;0;1;1
+27368;15334;1;162;92.0;120;80;1;1;0;0;1;0
+27369;22651;2;159;80.0;120;80;1;1;0;0;1;0
+27370;17642;1;152;63.0;130;90;1;1;0;0;1;1
+27371;23522;1;165;58.0;110;70;1;1;0;0;1;1
+27373;23254;2;162;80.0;120;80;1;2;0;1;1;1
+27376;19569;1;153;92.0;130;80;3;1;0;1;1;1
+27378;19631;1;158;51.0;100;70;1;1;1;0;0;0
+27379;14618;1;163;105.0;120;80;1;1;0;0;1;0
+27380;23263;2;160;62.0;130;90;1;1;0;0;1;1
+27381;19618;1;164;94.0;120;80;1;1;0;0;1;0
+27382;22462;1;158;84.0;170;100;1;1;0;0;1;1
+27384;19639;2;176;93.0;140;1000;3;1;0;0;1;1
+27385;20559;1;160;61.0;120;80;1;1;0;0;1;0
+27386;23271;1;163;68.0;130;80;2;2;0;0;1;0
+27387;18301;1;161;70.0;120;80;1;1;0;0;0;0
+27389;18619;1;165;54.0;120;80;3;3;0;0;1;0
+27390;17559;1;160;66.0;130;80;1;1;1;1;1;0
+27392;18425;1;142;44.0;110;60;1;1;0;0;0;0
+27394;19079;1;163;90.0;140;80;1;1;0;0;0;1
+27395;18813;1;169;65.0;110;70;1;1;0;0;0;1
+27397;18789;1;165;65.0;110;70;1;1;0;0;1;0
+27399;18094;1;157;60.0;140;70;1;2;0;0;0;1
+27400;20218;1;163;80.0;120;80;3;1;0;1;1;1
+27405;18931;1;171;82.0;150;90;1;1;0;0;0;1
+27406;18099;1;159;49.0;100;80;1;1;0;0;1;0
+27408;18100;1;146;67.0;150;90;1;1;0;0;1;1
+27409;21988;2;167;69.0;110;70;3;3;0;0;1;1
+27410;15374;1;170;58.0;110;80;1;1;0;0;1;0
+27411;20965;1;170;80.0;120;80;1;1;1;1;1;0
+27413;23396;2;160;60.0;150;90;3;1;0;0;1;1
+27415;23364;2;168;108.0;160;100;1;1;0;0;1;1
+27416;18872;1;160;92.0;120;80;1;3;0;0;1;1
+27417;19801;2;171;92.0;120;80;1;1;1;1;1;0
+27419;21876;1;161;68.0;120;80;1;1;0;0;1;0
+27420;14471;1;154;68.0;110;70;1;1;0;0;1;0
+27421;22038;1;163;71.0;120;80;3;3;0;0;1;1
+27422;15904;2;173;97.0;130;100;1;1;0;0;1;1
+27423;16841;2;162;100.0;130;80;1;1;0;0;1;0
+27424;20343;1;160;78.0;150;80;2;1;0;0;1;1
+27425;20462;1;170;75.5;120;70;2;1;0;1;0;0
+27426;20439;1;148;63.0;120;80;1;1;0;0;1;0
+27427;18776;1;175;80.0;120;80;1;1;0;0;0;0
+27428;19135;1;164;77.0;120;80;1;1;0;0;0;0
+27429;18894;1;156;84.0;150;90;3;2;0;0;1;1
+27430;19865;1;154;58.0;150;90;1;1;0;0;0;1
+27431;15239;2;172;62.0;110;70;1;1;1;0;1;0
+27434;23452;1;156;72.0;110;70;1;1;0;0;1;1
+27435;14571;1;159;96.0;90;60;1;1;0;0;1;0
+27436;20218;2;171;64.0;120;80;1;1;0;0;1;0
+27438;15110;1;165;70.0;120;80;1;1;0;0;1;1
+27440;21146;2;169;63.0;120;60;1;1;0;0;0;0
+27442;21671;2;183;78.2;150;95;3;1;1;1;1;1
+27443;14590;1;167;80.0;100;80;1;1;0;0;1;0
+27446;21483;1;172;80.0;130;90;1;1;0;0;1;0
+27449;15150;2;185;100.0;140;100;3;1;1;1;1;1
+27451;20383;2;161;65.0;130;70;1;1;0;0;1;0
+27453;17311;1;159;58.0;130;90;1;1;0;0;1;1
+27454;17545;1;167;81.0;150;90;1;1;0;0;0;1
+27456;19544;2;162;60.0;120;80;1;1;0;0;1;0
+27459;18896;1;165;64.0;120;80;1;1;0;0;1;0
+27460;20324;1;159;80.0;120;80;1;1;0;0;1;1
+27464;16096;1;163;58.0;110;70;1;1;0;0;1;0
+27465;16144;2;168;62.0;110;80;1;1;0;0;1;0
+27466;22068;1;159;68.0;130;80;1;1;0;0;1;1
+27467;17383;2;168;70.0;120;70;1;1;1;1;1;0
+27468;20512;1;157;67.0;130;80;3;1;0;0;1;1
+27469;21786;2;177;79.0;130;80;3;1;1;0;1;1
+27472;20259;1;153;65.0;200;110;2;1;0;0;1;0
+27473;17458;1;160;60.0;100;80;1;1;0;0;1;0
+27474;15997;1;154;72.0;110;70;1;1;0;0;1;0
+27476;23269;1;158;58.0;160;90;2;1;0;0;1;1
+27477;16158;1;163;51.0;100;70;1;1;0;0;1;0
+27478;18842;1;170;48.0;120;80;1;1;0;0;1;0
+27479;17053;1;170;69.0;120;80;1;1;0;0;1;0
+27480;14523;2;167;71.0;100;80;1;1;0;0;1;0
+27481;20677;1;165;70.0;125;80;1;1;0;0;0;0
+27483;21728;1;169;65.0;140;90;1;1;0;0;1;1
+27484;21991;2;184;108.0;120;80;2;1;0;0;1;0
+27485;21052;1;146;69.0;130;80;1;1;0;0;1;1
+27487;17335;1;158;70.0;160;100;2;1;0;0;0;1
+27489;16728;1;164;59.0;110;70;1;1;0;0;1;1
+27490;23522;2;174;78.0;120;80;3;3;1;0;1;0
+27492;21352;1;163;56.0;90;70;1;1;0;0;1;0
+27493;17455;2;178;109.0;120;80;1;1;1;0;0;1
+27494;19151;1;164;65.0;110;70;1;1;0;0;1;1
+27496;19637;1;150;65.0;120;80;1;1;0;0;1;0
+27498;22535;1;157;63.0;150;80;1;1;0;0;0;1
+27501;22021;1;167;65.0;110;70;2;1;0;0;0;0
+27502;19182;2;186;97.0;130;80;1;1;0;0;0;1
+27503;19784;2;169;72.0;130;90;1;1;1;0;1;0
+27505;23131;1;164;68.0;130;80;1;1;0;0;1;0
+27506;19680;1;167;102.0;120;80;1;1;0;0;0;0
+27507;20193;1;167;68.0;120;80;1;1;0;0;1;1
+27508;17032;2;175;72.0;120;80;1;1;0;0;1;1
+27509;21077;1;170;70.0;120;80;1;1;0;0;1;0
+27510;18840;1;160;68.0;90;60;1;2;0;0;0;0
+27511;23394;2;160;90.0;150;90;1;1;0;0;1;1
+27512;21908;1;158;57.0;150;90;1;1;1;0;1;1
+27514;14362;1;165;82.0;110;70;1;1;0;0;0;0
+27515;15867;1;160;77.0;110;80;1;1;0;1;0;0
+27517;19516;1;173;87.0;140;90;1;1;0;0;1;1
+27519;16872;1;165;85.0;130;90;1;1;0;0;1;0
+27520;21757;2;170;70.0;130;90;3;3;0;0;1;0
+27521;18124;1;165;65.0;120;80;1;1;0;0;0;0
+27522;21102;2;172;72.0;120;80;3;3;0;0;1;0
+27523;21025;2;166;81.0;140;90;2;1;0;0;1;1
+27526;20535;2;168;86.0;140;90;1;1;0;0;1;1
+27528;21174;1;162;74.0;150;90;2;1;0;0;0;1
+27533;14491;1;159;60.0;120;80;1;1;0;0;0;0
+27534;20306;1;165;71.0;130;100;1;1;0;0;1;1
+27535;16730;2;177;109.0;120;80;1;1;0;0;1;0
+27536;23174;2;164;97.0;120;80;1;1;0;0;1;1
+27537;16164;1;168;65.0;140;90;2;1;0;0;0;1
+27538;21140;1;154;64.0;140;100;3;1;0;0;1;0
+27539;21678;2;176;68.0;110;70;2;1;0;0;1;0
+27540;20988;1;158;55.0;120;80;1;1;0;0;0;0
+27541;19657;1;167;85.0;150;90;3;3;0;0;1;1
+27542;19705;1;165;75.0;130;90;1;1;0;0;1;0
+27546;21759;1;159;73.0;130;90;1;1;0;0;0;1
+27547;20562;1;163;80.0;140;100;3;1;0;0;1;1
+27548;23389;1;158;77.0;110;90;1;1;0;0;0;1
+27549;18977;1;162;70.0;120;80;1;1;0;0;1;0
+27550;18232;1;169;67.0;120;80;1;1;0;0;0;0
+27551;22022;1;165;67.0;120;80;1;1;0;0;1;1
+27552;19003;1;162;75.0;120;70;1;1;0;0;1;0
+27553;15274;1;163;81.0;120;80;1;1;1;0;1;0
+27554;21674;1;158;87.0;150;100;1;1;0;0;1;1
+27555;20990;1;160;91.0;130;90;3;1;0;0;1;0
+27556;21548;2;169;72.0;120;80;1;1;0;0;0;1
+27558;22850;1;158;65.0;130;80;1;3;0;0;1;1
+27559;18791;2;163;85.0;120;80;1;1;0;0;1;1
+27560;20462;1;158;64.0;150;70;1;1;0;0;1;1
+27561;19082;2;168;83.0;120;80;1;1;0;0;0;1
+27562;19662;1;180;68.0;120;80;1;1;0;1;0;1
+27563;18137;2;178;71.0;110;80;1;1;1;0;0;0
+27564;22659;2;168;77.0;160;1000;1;1;0;0;1;1
+27565;19831;1;160;84.0;140;80;3;1;0;0;0;1
+27566;20362;1;160;72.0;120;80;1;1;0;0;1;0
+27568;17457;2;175;93.0;120;80;1;1;0;0;1;0
+27570;22869;1;159;72.0;140;90;2;1;0;0;1;1
+27571;18940;2;176;105.0;120;80;1;1;0;0;1;1
+27573;16860;1;162;60.0;130;90;1;1;0;0;0;1
+27574;20526;1;166;60.0;130;70;2;1;0;0;0;1
+27575;22555;1;165;60.0;120;80;1;1;0;0;1;1
+27576;22525;2;175;88.0;120;80;2;1;1;1;1;0
+27578;20577;2;185;68.0;110;70;1;1;1;0;1;0
+27579;19911;1;158;63.0;120;80;1;1;0;0;1;0
+27580;15840;1;166;52.0;110;70;1;2;0;0;1;0
+27581;16880;2;165;62.0;110;70;1;1;0;0;1;1
+27582;14588;1;165;85.0;120;80;1;2;0;0;0;0
+27586;14294;1;166;80.0;160;90;2;1;0;0;1;1
+27587;16517;2;162;59.0;140;90;2;1;0;0;1;1
+27588;21289;2;162;65.0;120;80;2;1;0;0;1;0
+27589;22639;1;151;69.0;120;80;1;1;0;0;1;0
+27594;23146;1;161;74.0;120;80;1;1;0;0;0;0
+27596;20271;2;172;65.0;110;90;1;1;1;0;1;1
+27597;20334;2;168;73.0;160;1100;1;1;0;0;1;1
+27598;19478;1;155;76.0;180;100;1;1;0;0;1;1
+27599;16693;1;165;102.0;130;80;3;1;1;0;1;1
+27600;20628;2;162;52.0;110;70;1;1;0;0;1;0
+27602;15234;1;160;60.0;120;80;1;1;0;0;1;0
+27604;17697;1;165;60.0;120;80;1;1;0;0;0;0
+27605;14706;1;168;72.0;120;70;1;1;0;0;1;1
+27606;18251;2;170;70.0;110;60;1;1;0;0;0;0
+27608;16729;1;153;65.0;90;60;1;1;0;0;1;0
+27609;21873;1;163;65.0;120;70;1;1;0;0;0;0
+27611;21854;1;163;85.0;140;80;1;1;0;0;1;0
+27612;15247;2;162;62.0;120;80;1;1;0;0;1;0
+27613;14521;1;155;85.0;120;80;2;1;0;0;0;0
+27614;22685;2;172;78.0;110;70;1;1;0;0;1;1
+27615;15366;2;166;57.0;110;70;1;1;0;0;1;0
+27617;19014;2;170;75.0;120;80;1;1;1;0;1;0
+27618;14637;1;156;67.0;110;70;1;1;0;0;1;0
+27619;15194;1;156;70.0;158;113;1;2;0;0;1;1
+27620;20474;2;160;75.0;120;80;1;1;0;0;1;1
+27622;15846;1;150;55.0;100;70;1;1;0;0;1;0
+27623;20538;1;160;64.0;160;80;1;1;0;0;1;1
+27624;17374;1;162;62.0;120;80;1;1;0;0;1;0
+27626;16033;1;167;74.0;120;70;1;1;0;0;1;0
+27628;19741;2;178;77.0;140;100;3;3;1;0;1;0
+27630;22460;1;165;70.0;130;90;1;1;0;0;0;0
+27632;17533;1;156;58.0;120;80;1;1;0;0;1;0
+27633;20468;1;161;88.0;130;80;1;1;0;0;1;1
+27635;21272;2;170;65.0;110;70;1;1;0;0;1;1
+27636;19822;1;164;76.0;110;80;1;1;0;1;1;1
+27638;17445;1;159;55.0;110;70;1;1;0;0;1;0
+27639;16848;1;148;81.0;120;80;1;1;0;0;1;0
+27640;22416;2;183;89.0;150;90;1;1;0;0;1;1
+27641;16567;1;162;61.0;120;70;1;1;0;0;1;1
+27642;21988;1;165;65.0;120;80;1;1;0;0;0;0
+27643;18940;1;156;57.0;120;80;1;1;0;0;1;0
+27646;14502;1;165;100.0;120;90;1;1;0;0;1;1
+27647;18908;2;163;64.0;120;60;1;1;0;0;1;0
+27648;14611;1;165;54.0;100;60;1;1;0;0;1;0
+27650;21146;1;154;50.0;110;70;1;1;0;0;1;0
+27651;23159;1;165;73.0;120;80;3;1;0;0;1;1
+27653;19765;1;168;68.0;120;80;1;1;0;0;1;0
+27654;19568;1;169;71.0;150;1000;1;1;0;0;1;1
+27656;17576;1;164;83.0;110;70;1;1;0;0;1;1
+27658;21741;1;166;80.0;120;80;1;1;0;0;1;1
+27659;23509;1;152;54.0;160;1000;3;3;0;0;1;1
+27660;22372;1;154;62.0;160;80;1;2;0;0;1;1
+27661;14619;2;167;91.0;120;80;1;1;0;0;0;1
+27662;21166;1;168;66.0;12;80;1;1;0;0;0;1
+27665;16747;1;168;67.0;90;70;1;1;0;0;1;1
+27666;18922;1;165;76.0;120;80;2;1;0;0;0;1
+27667;18565;1;165;52.0;100;70;1;1;0;0;1;0
+27668;23234;2;174;76.0;150;60;2;1;0;0;1;0
+27669;17600;1;158;46.0;150;100;1;1;0;0;0;1
+27671;23392;1;165;63.0;130;60;1;1;0;0;1;1
+27673;19735;2;176;83.0;140;100;1;1;0;0;1;1
+27674;15938;1;158;52.0;110;70;1;1;0;0;1;1
+27675;22903;2;169;74.0;140;80;2;1;0;0;1;1
+27677;16931;2;162;69.0;100;60;2;2;1;0;1;0
+27678;20899;1;154;71.0;150;100;1;1;0;0;1;0
+27681;23286;1;156;72.0;140;80;1;2;0;0;0;1
+27682;21151;2;168;70.0;120;80;1;1;0;0;1;0
+27683;15328;1;159;76.0;95;60;1;1;0;0;1;0
+27685;21208;2;160;60.0;120;80;1;1;0;0;1;0
+27686;14774;2;174;60.0;110;70;1;1;0;0;1;0
+27687;20378;1;158;62.0;120;80;3;1;0;0;1;1
+27688;19064;1;155;67.0;130;90;2;2;0;0;1;1
+27689;21788;2;172;78.0;150;100;3;3;0;1;1;1
+27690;23507;1;158;68.0;120;80;1;1;0;0;0;1
+27692;21991;1;156;56.0;110;70;1;1;0;0;1;0
+27693;16203;2;170;53.0;110;80;1;1;0;1;1;0
+27694;21968;1;158;61.0;140;95;1;1;0;0;1;0
+27695;19675;1;159;112.0;150;90;2;2;0;0;0;1
+27696;19623;1;154;73.0;120;80;2;2;0;0;1;1
+27699;19609;1;164;70.0;120;80;2;1;0;0;1;0
+27700;18191;2;175;81.0;120;80;1;1;0;0;1;0
+27701;21269;2;170;70.0;120;80;1;1;0;0;1;0
+27703;18896;1;159;67.0;120;80;1;1;0;0;0;0
+27704;18889;1;162;51.0;100;70;1;2;0;1;1;0
+27705;19616;1;170;65.0;120;60;1;1;0;0;1;0
+27707;16036;1;163;55.0;120;85;1;1;0;0;1;0
+27708;16800;2;175;79.0;120;80;2;1;1;1;1;0
+27709;22044;2;180;61.0;120;80;2;1;1;1;1;0
+27710;19615;1;153;58.0;110;80;1;1;0;0;0;0
+27712;18862;2;180;102.0;120;80;1;1;0;0;1;0
+27714;23230;1;165;63.0;140;90;2;1;0;0;1;1
+27716;16863;2;166;66.0;120;80;1;1;0;0;0;0
+27718;21121;1;160;80.0;130;80;1;1;0;0;1;1
+27719;22727;2;167;76.0;140;70;1;1;0;0;1;0
+27720;19977;1;163;69.0;120;80;1;1;0;0;0;1
+27722;21252;2;167;83.0;160;100;1;2;0;0;1;1
+27723;16768;2;163;61.0;110;70;1;1;0;0;1;0
+27725;18416;2;169;71.0;120;80;3;3;0;0;0;0
+27726;19740;1;162;60.0;120;80;1;1;0;0;1;1
+27727;18859;1;150;89.0;140;90;3;3;0;0;1;0
+27728;16602;2;182;73.0;100;70;2;1;1;0;1;0
+27730;21935;1;157;61.0;120;80;1;1;0;0;1;1
+27732;19566;1;162;68.0;140;90;1;1;0;0;1;1
+27733;16561;2;159;64.0;150;100;1;1;0;0;0;1
+27734;18994;1;160;65.0;100;70;1;1;0;0;1;0
+27736;20975;1;165;56.0;120;80;1;1;0;0;1;1
+27737;23344;2;170;67.0;120;80;1;1;0;0;0;1
+27738;23246;1;155;71.0;110;80;2;1;0;0;1;1
+27739;15911;2;178;69.0;140;90;2;1;1;0;1;1
+27740;21108;2;164;102.0;150;90;1;1;0;0;1;1
+27741;18936;2;170;76.0;130;80;1;1;0;1;1;0
+27743;21883;1;141;51.0;140;90;1;1;0;0;1;1
+27744;18400;2;160;60.0;120;80;1;1;0;0;1;0
+27745;18854;2;165;64.0;120;80;1;1;0;0;0;1
+27747;15187;1;160;79.0;110;70;1;1;0;0;1;0
+27748;23189;2;174;84.0;140;90;1;2;0;0;0;0
+27750;22907;1;159;64.0;140;90;1;1;0;0;1;1
+27751;21908;2;163;75.0;120;80;3;3;0;0;1;1
+27752;17734;1;158;78.0;120;80;1;1;0;0;0;0
+27755;16638;1;157;69.0;120;80;1;1;0;0;1;0
+27756;21823;2;160;67.0;120;90;1;1;0;0;1;0
+27758;21889;1;168;70.0;120;80;1;1;0;0;1;1
+27759;18194;1;160;88.0;120;80;1;1;0;0;1;0
+27760;16666;1;164;68.0;120;80;1;1;0;0;1;0
+27761;14787;2;187;107.0;120;80;1;2;1;1;1;0
+27763;21007;1;158;66.0;140;90;2;2;0;0;1;1
+27765;21261;1;160;60.0;110;70;1;1;0;0;1;1
+27767;22566;2;168;69.0;140;90;1;1;0;0;1;1
+27768;18175;1;168;85.0;120;80;1;1;0;0;1;1
+27769;18848;1;151;65.0;185;90;2;1;0;0;0;0
+27771;22164;1;160;70.0;120;80;1;1;0;0;1;0
+27772;18234;1;164;65.0;110;70;1;1;0;0;1;0
+27776;18717;2;185;108.0;120;80;1;1;0;0;1;0
+27778;19595;1;169;75.0;120;80;1;1;0;0;1;0
+27779;15942;1;159;61.0;110;70;2;2;0;0;1;0
+27780;18086;2;170;91.0;120;80;3;3;0;0;1;1
+27781;19658;1;156;83.0;90;60;1;1;0;0;1;0
+27782;20950;1;160;68.0;120;70;1;1;0;0;1;1
+27784;17592;1;160;46.0;140;100;1;1;0;0;1;1
+27785;18754;1;165;87.0;110;70;1;1;0;0;1;0
+27786;22526;2;170;78.0;120;79;1;1;1;1;1;0
+27787;23302;2;172;105.0;120;80;2;2;0;0;1;1
+27788;15370;2;178;74.0;120;60;1;1;0;0;1;0
+27789;21172;1;151;92.0;130;90;1;1;0;0;0;1
+27790;17471;1;162;90.0;130;80;2;1;0;0;1;1
+27791;19639;2;171;78.0;120;80;1;1;0;0;0;1
+27792;21276;2;170;75.0;120;80;1;1;0;0;0;1
+27793;19780;1;158;70.0;15;90;1;1;0;0;1;1
+27794;21735;1;155;75.0;170;1100;1;1;0;0;1;1
+27795;22836;1;154;65.0;120;80;1;1;0;0;1;0
+27797;16835;1;163;59.0;120;80;1;1;0;0;1;1
+27798;15125;1;155;60.0;110;70;2;2;0;0;1;0
+27799;14425;1;160;63.0;100;60;2;2;0;0;0;1
+27801;21765;1;169;61.0;140;80;1;1;0;0;1;0
+27802;15863;1;160;75.0;150;90;2;1;0;0;0;1
+27803;18840;1;163;63.0;140;90;1;1;0;0;1;1
+27804;14625;2;173;64.0;110;70;1;1;0;0;1;0
+27805;19723;1;163;74.0;130;90;3;1;0;0;1;1
+27806;18267;1;153;97.0;120;80;2;1;0;0;0;0
+27807;15910;1;162;55.0;140;80;2;1;0;0;1;1
+27808;20529;1;162;82.0;110;80;1;1;0;0;1;0
+27810;18965;1;155;55.0;120;80;1;1;0;0;1;0
+27812;21968;2;169;66.0;130;90;1;1;0;0;0;0
+27813;21916;2;161;70.0;160;90;2;2;0;0;1;1
+27814;20254;1;164;91.0;130;90;1;1;0;0;1;0
+27815;18169;1;154;88.0;120;80;1;1;0;0;1;0
+27816;18724;2;186;96.0;140;90;2;3;1;1;0;1
+27818;17046;1;165;62.0;110;80;1;1;0;0;1;0
+27819;20978;1;165;55.0;140;80;1;1;0;0;1;1
+27820;18387;1;160;70.0;150;90;1;1;0;0;1;1
+27821;20496;2;172;90.0;130;70;1;1;0;0;0;1
+27822;14630;2;181;90.0;120;80;1;1;0;0;1;1
+27824;23250;1;158;80.0;120;80;2;1;0;0;1;1
+27825;21953;1;174;69.0;120;79;1;1;0;0;1;0
+27826;23482;2;167;71.0;120;80;1;1;0;0;1;0
+27827;22714;2;170;78.0;130;80;1;3;0;0;1;0
+27828;20962;1;160;63.0;150;80;1;1;0;0;1;1
+27829;22638;2;169;74.0;130;80;2;1;0;0;1;0
+27830;18094;1;150;77.0;150;90;1;1;1;1;1;0
+27831;17419;2;174;79.0;130;70;2;2;1;0;0;1
+27833;23359;1;162;71.0;130;80;1;1;0;0;0;1
+27834;20286;1;160;84.0;130;90;1;1;0;0;1;1
+27835;15318;2;174;50.0;120;80;1;1;1;1;1;0
+27836;17559;2;173;72.0;130;60;1;1;1;0;1;1
+27838;21179;1;158;56.0;140;90;3;3;0;0;1;1
+27839;16183;1;180;91.0;120;80;1;1;0;0;1;0
+27841;23309;1;152;70.0;150;90;1;1;0;0;1;1
+27842;18989;2;157;54.0;120;80;2;1;0;0;0;1
+27843;21163;1;146;63.0;90;60;1;1;0;0;1;0
+27845;17353;1;156;92.0;130;90;3;1;0;0;1;1
+27846;19825;1;168;78.0;130;90;1;1;0;0;0;1
+27849;17617;1;169;85.0;130;90;2;1;0;0;1;1
+27850;18860;1;162;65.0;120;80;1;1;0;0;1;0
+27851;22713;1;156;74.0;140;90;1;1;0;1;0;1
+27852;14325;2;167;51.0;120;80;1;1;0;0;1;0
+27853;21918;1;161;93.0;150;80;3;3;0;0;1;1
+27855;16586;1;168;90.0;120;80;2;2;0;0;1;0
+27856;20500;1;174;78.0;120;80;1;1;0;0;1;0
+27857;19163;1;163;73.0;140;80;1;1;0;0;1;1
+27858;21058;1;161;65.0;130;75;1;1;0;0;1;1
+27859;15368;2;150;52.0;120;80;2;1;0;0;1;0
+27861;16869;2;176;75.0;90;60;1;1;1;0;1;0
+27862;14562;1;180;79.0;130;90;3;3;0;0;0;1
+27863;20404;1;150;50.0;90;60;1;2;0;0;1;0
+27864;19721;1;180;73.0;110;70;1;1;0;0;0;0
+27872;21950;1;155;70.0;150;100;3;1;0;0;1;0
+27873;16595;2;165;59.0;119;78;1;1;0;0;1;1
+27874;19037;1;158;48.0;120;80;1;1;0;0;1;0
+27875;20570;1;165;60.0;120;80;1;1;0;0;1;0
+27876;21217;1;152;87.0;120;80;1;3;0;0;1;1
+27877;23312;1;169;70.0;120;80;1;1;0;0;1;1
+27878;15570;2;170;76.0;120;80;1;1;1;0;1;1
+27880;21268;1;156;51.0;110;70;1;1;0;0;1;0
+27881;20470;1;154;74.0;110;70;1;1;0;0;1;0
+27887;18905;1;175;77.0;120;80;1;1;0;0;1;0
+27888;20516;1;161;69.0;120;80;1;1;0;0;0;0
+27889;21914;1;169;64.0;120;80;1;1;0;0;1;1
+27891;22597;1;153;90.0;160;110;1;1;0;0;1;1
+27894;19170;1;170;109.0;120;90;1;1;0;0;1;1
+27896;21794;1;163;72.0;160;1100;3;1;0;0;1;0
+27897;19678;2;175;102.0;120;70;1;1;1;0;0;0
+27898;18150;2;160;73.0;121;80;1;1;0;1;1;0
+27899;17631;1;154;64.0;110;67;1;1;0;0;1;0
+27900;14713;2;175;83.0;120;80;1;1;0;1;1;1
+27901;21205;1;152;67.0;160;90;1;1;0;0;1;1
+27903;17338;2;168;67.0;200;100;1;1;0;0;1;1
+27904;15232;2;173;70.0;100;80;1;1;1;1;0;0
+27905;16633;1;158;77.0;130;90;1;1;0;0;1;1
+27906;17482;1;156;64.0;110;70;1;1;0;0;1;0
+27907;17480;1;150;50.0;120;80;1;1;0;0;1;0
+27908;19613;1;160;57.0;110;70;1;1;0;0;1;0
+27909;15595;1;160;62.0;140;80;1;3;0;0;1;1
+27910;14590;1;165;81.0;120;70;1;1;0;0;0;0
+27911;15947;2;160;70.0;140;90;1;1;0;0;0;1
+27912;20307;2;165;65.0;120;80;1;1;0;0;1;0
+27913;21957;1;168;64.0;120;80;2;1;0;0;1;0
+27914;21013;1;150;58.0;120;80;1;1;0;0;1;0
+27916;21379;1;171;83.0;120;80;1;1;0;0;1;1
+27917;14515;1;162;54.0;110;70;1;1;0;0;0;0
+27918;16808;1;162;75.0;110;80;1;1;0;0;1;0
+27921;20499;1;153;64.0;120;80;1;1;0;0;1;0
+27922;19688;1;158;57.0;120;80;1;1;0;0;1;0
+27923;19823;2;168;67.0;120;80;1;1;1;0;1;0
+27924;18293;1;151;69.0;120;80;1;1;0;0;1;0
+27925;18175;2;162;65.0;120;80;1;1;1;0;1;0
+27926;19973;2;164;65.0;120;80;1;1;0;0;1;0
+27927;15480;1;172;70.0;120;80;1;1;0;0;0;0
+27929;21158;1;154;55.0;120;90;1;1;0;0;1;0
+27931;18053;2;168;75.0;120;80;1;1;0;0;1;0
+27933;18999;2;178;83.0;140;90;1;1;1;1;1;1
+27935;19657;2;175;72.0;120;80;2;2;1;0;0;0
+27939;21814;1;160;65.0;120;80;1;1;0;0;0;0
+27940;21824;1;164;96.0;110;70;3;2;0;0;1;0
+27941;15424;1;158;45.0;120;80;1;1;0;0;1;0
+27942;20445;1;158;71.0;150;90;1;1;0;0;1;0
+27944;15151;2;160;65.0;110;80;2;1;0;0;1;0
+27947;17555;1;172;70.0;130;90;1;1;0;0;1;0
+27948;21879;1;165;85.0;180;100;3;3;0;1;1;0
+27949;21785;2;162;84.0;180;89;1;1;0;0;1;0
+27950;15966;2;164;66.0;110;70;1;1;1;0;1;0
+27951;21853;1;170;80.0;120;80;1;1;0;0;1;0
+27952;15220;1;170;70.0;140;90;3;3;0;0;1;0
+27953;15226;1;158;75.0;120;80;1;1;0;0;1;1
+27954;18195;1;156;68.0;130;90;1;1;0;0;1;1
+27955;19529;2;171;69.0;140;85;1;2;0;0;1;1
+27956;15995;2;172;89.0;130;80;1;1;0;0;1;0
+27958;22407;1;152;110.0;190;110;3;2;0;0;1;1
+27959;21273;2;163;63.0;120;80;2;3;0;0;0;1
+27961;15531;1;169;72.0;120;80;1;1;0;0;1;0
+27962;23193;1;162;162.0;150;90;1;1;0;0;1;1
+27963;14633;1;165;81.0;130;80;1;1;0;0;0;0
+27964;21170;1;173;71.0;130;80;1;1;0;0;1;1
+27965;21334;1;152;38.0;110;80;1;1;0;0;1;0
+27967;22572;1;165;75.0;147;90;3;3;0;0;1;1
+27969;16123;2;168;70.0;120;80;1;1;1;0;1;0
+27970;19761;1;163;72.0;120;80;1;1;0;0;1;0
+27971;15317;1;158;54.0;100;70;1;1;0;1;1;0
+27972;22495;2;163;62.0;120;80;1;1;0;0;1;0
+27974;22413;1;163;58.0;120;80;1;1;0;0;1;0
+27975;23442;1;155;80.0;100;70;3;1;0;0;0;1
+27976;18936;2;180;65.0;120;80;1;1;0;0;1;1
+27977;17678;1;154;69.0;120;80;1;1;0;0;1;0
+27978;20948;2;170;86.0;140;90;1;1;0;0;1;0
+27979;18988;1;162;63.0;120;80;1;1;0;0;1;0
+27980;21917;1;168;65.0;120;90;1;1;0;0;0;0
+27981;21323;2;170;96.0;130;80;3;1;0;0;1;1
+27982;21400;1;158;131.0;130;80;1;1;0;0;1;0
+27983;22592;1;157;94.0;190;100;3;3;0;0;1;1
+27985;20172;2;174;68.0;160;100;1;1;0;0;1;1
+27987;23175;2;179;83.0;120;70;1;1;0;0;1;1
+27988;23572;2;173;68.0;140;90;1;1;0;0;0;1
+27989;16640;2;169;65.0;110;70;1;1;0;0;1;1
+27990;19734;1;165;64.0;120;80;3;3;0;0;1;1
+27993;21146;2;175;80.0;90;60;1;3;0;0;1;1
+27994;19135;1;168;59.0;130;70;1;1;0;0;1;1
+27995;19145;1;155;108.0;120;80;1;1;0;0;0;0
+27996;19064;2;167;70.0;130;90;2;1;0;0;1;0
+27998;21910;1;159;65.0;100;70;3;3;0;0;1;0
+27999;14840;1;158;65.0;120;80;1;1;0;0;1;0
+28001;18229;1;167;65.0;120;70;1;1;0;0;0;0
+28002;21922;1;164;68.0;120;80;1;1;0;0;1;1
+28003;19801;2;185;80.0;120;80;1;1;1;0;1;0
+28004;15481;1;160;85.0;110;70;1;1;0;0;1;0
+28005;17980;1;160;90.0;130;80;1;1;0;0;1;0
+28006;21902;1;161;74.0;140;90;1;2;0;0;1;0
+28008;21280;2;169;74.0;140;90;2;1;0;0;1;1
+28009;19927;1;170;65.0;120;80;1;1;0;0;1;0
+28010;14596;2;168;90.0;110;70;1;1;0;0;1;1
+28011;14827;1;162;61.0;120;77;2;1;0;0;0;0
+28012;19813;2;168;106.0;140;90;2;1;0;0;1;1
+28013;17422;2;172;75.0;120;80;2;2;0;0;0;0
+28014;16109;1;155;55.0;130;80;1;1;0;0;1;1
+28015;23291;1;166;78.0;110;70;1;1;0;0;1;1
+28016;19873;1;170;70.0;120;80;1;1;0;0;1;1
+28017;18320;1;165;75.0;120;80;1;1;0;0;1;0
+28022;20617;2;160;84.0;120;80;1;1;1;0;0;1
+28023;16726;2;175;80.0;110;70;1;1;0;0;1;0
+28024;23228;2;167;80.0;140;90;1;3;0;0;1;1
+28025;21191;2;176;77.0;140;90;3;2;0;0;1;1
+28027;15289;2;167;68.0;120;80;1;1;0;0;1;0
+28028;20168;1;149;82.0;140;90;1;1;0;0;1;0
+28029;20391;2;166;61.0;120;80;1;1;1;0;1;0
+28031;18137;2;174;100.0;120;80;1;3;0;0;1;1
+28033;19000;2;169;69.0;120;80;1;1;1;0;1;0
+28034;20999;1;147;70.0;150;90;1;2;0;0;1;1
+28035;20594;1;170;65.0;140;80;1;1;0;0;1;1
+28036;20387;1;160;72.0;120;80;1;1;0;0;1;0
+28037;19914;1;158;65.0;140;90;1;1;0;0;0;1
+28040;21832;2;167;86.0;120;80;1;1;1;0;1;1
+28041;19158;1;162;140.0;130;80;1;1;0;0;1;1
+28042;19901;1;162;53.0;120;80;1;1;0;0;1;0
+28045;19493;1;160;58.0;120;70;1;1;0;0;1;0
+28046;23129;1;152;60.0;130;80;2;3;0;0;1;1
+28047;17413;1;152;64.0;90;70;1;2;0;0;1;1
+28048;18384;1;165;73.0;140;80;2;1;0;0;1;1
+28049;18598;1;163;65.0;100;60;2;1;0;0;1;0
+28050;21233;1;153;68.0;120;80;1;1;0;0;1;0
+28051;23380;1;164;117.0;170;100;1;1;0;0;1;0
+28053;21143;1;156;83.0;120;80;3;3;0;0;1;0
+28056;18243;2;160;75.0;120;80;3;3;0;0;1;1
+28058;21985;1;153;66.0;140;90;3;2;0;0;0;1
+28059;21033;1;164;101.0;120;80;3;1;0;0;1;1
+28061;14786;1;170;69.0;110;70;1;3;0;0;1;0
+28062;18783;1;160;75.0;100;70;3;1;0;0;1;1
+28063;18988;1;165;88.0;132;92;1;1;0;0;1;0
+28065;21051;1;163;57.0;145;90;3;1;0;0;1;1
+28066;17448;1;156;79.0;140;100;1;1;0;0;1;1
+28067;18719;2;172;62.0;120;70;1;1;1;0;1;0
+28071;15932;1;158;64.0;105;65;1;1;0;0;1;0
+28073;19587;1;157;92.0;200;90;3;3;0;0;1;1
+28074;22581;1;170;70.0;120;80;1;1;0;0;1;0
+28075;21773;1;162;85.0;140;90;1;1;0;0;0;1
+28076;22820;2;170;80.0;140;90;1;1;1;1;1;1
+28077;23303;2;167;63.0;120;80;3;1;0;0;1;0
+28081;19840;1;160;62.0;120;80;1;1;0;0;1;0
+28082;18320;1;160;73.0;110;70;2;1;0;0;1;0
+28083;16145;1;155;54.0;110;70;1;1;0;0;1;0
+28084;21236;2;174;78.0;120;60;1;1;0;0;0;0
+28085;22567;2;156;70.0;130;80;1;1;0;0;0;1
+28086;18216;1;167;77.0;110;80;1;1;0;0;1;0
+28087;18958;1;159;92.0;160;100;1;1;0;0;1;1
+28088;17468;1;168;60.0;150;90;1;1;0;0;1;1
+28090;14546;1;120;80.0;120;80;1;1;0;0;0;1
+28091;19226;1;177;78.0;120;80;1;1;0;0;1;0
+28092;21256;1;167;57.0;130;70;1;1;0;0;1;0
+28094;16925;2;170;72.0;130;80;1;1;0;0;1;0
+28095;19681;1;160;55.0;130;80;2;1;0;0;1;0
+28096;23125;1;160;90.0;140;70;1;1;0;0;0;1
+28097;21314;1;154;69.0;120;80;1;1;0;0;0;1
+28098;21846;1;158;80.0;130;80;3;1;0;0;1;1
+28100;22594;1;160;58.0;130;90;1;1;0;0;1;1
+28101;19060;1;181;85.0;120;80;1;1;0;0;1;1
+28102;19659;1;165;74.0;120;80;2;1;0;0;1;0
+28103;16177;1;159;71.0;120;80;1;1;0;0;1;0
+28106;21151;2;169;92.0;170;80;2;2;0;0;1;1
+28107;18134;1;167;69.0;120;80;1;1;0;0;1;1
+28108;21840;1;162;74.0;112;80;1;1;0;0;1;1
+28109;15270;1;168;65.0;120;80;1;1;0;0;1;0
+28110;21226;1;158;60.0;100;70;3;1;0;0;0;0
+28111;23297;1;154;65.0;120;75;3;3;0;0;1;0
+28112;17626;1;154;64.0;100;60;1;1;0;0;0;0
+28113;19649;1;167;84.0;140;90;1;1;0;0;1;1
+28114;21829;1;162;83.0;120;80;3;1;0;0;1;1
+28117;18860;2;170;70.0;120;80;1;1;0;0;1;0
+28118;21933;2;165;60.0;120;80;1;1;0;0;1;1
+28119;21857;2;177;105.0;140;90;2;1;0;0;1;1
+28121;19034;2;174;74.0;130;80;1;1;1;0;1;0
+28122;18187;2;180;78.0;120;80;1;1;0;0;0;0
+28123;20373;1;164;71.0;140;90;1;1;0;0;1;1
+28125;18344;2;178;70.0;120;80;1;1;0;0;1;1
+28127;14829;1;165;70.0;120;80;1;1;0;0;1;0
+28128;19714;2;178;95.0;130;80;1;1;0;0;1;1
+28129;15146;1;151;62.0;100;70;1;1;0;0;1;0
+28132;22620;1;160;86.0;140;90;2;2;0;0;1;0
+28133;20733;1;170;94.0;140;90;1;1;0;0;1;0
+28135;22036;1;175;69.0;120;80;1;1;0;0;0;1
+28136;19768;1;166;79.0;130;89;3;3;0;0;1;1
+28137;21942;2;178;67.0;120;70;1;1;0;0;1;0
+28138;21186;1;170;69.0;120;80;1;1;0;0;1;0
+28139;20587;1;156;60.0;130;80;3;3;0;0;0;1
+28142;19051;1;165;55.0;120;60;1;1;0;0;1;1
+28143;15155;2;172;60.0;140;90;3;1;0;0;1;1
+28144;15896;1;166;62.0;100;70;1;1;0;0;1;0
+28145;18910;1;155;78.0;110;80;1;1;0;0;1;0
+28146;22055;1;160;55.0;120;80;1;1;0;0;1;0
+28149;14848;2;178;127.0;140;90;2;1;1;0;1;1
+28151;21824;2;168;78.0;120;80;1;1;0;0;1;0
+28154;18177;2;169;71.0;141;90;2;1;0;0;0;1
+28155;22640;1;153;66.0;120;80;3;1;0;0;1;1
+28156;14418;2;176;115.0;140;80;3;1;0;0;1;1
+28157;18040;2;159;56.0;120;60;1;1;0;0;1;1
+28158;20464;2;167;57.0;110;70;1;1;1;0;1;0
+28160;21741;2;163;82.0;140;90;1;1;0;1;1;0
+28161;21254;2;169;98.0;140;90;2;1;1;0;1;1
+28163;17455;2;168;76.0;110;80;1;1;0;0;1;0
+28164;17559;1;172;70.0;110;60;1;1;0;0;1;0
+28165;22360;1;152;65.0;120;80;3;3;0;0;1;0
+28166;20758;2;167;82.0;100;70;1;1;1;1;1;0
+28167;18265;2;170;68.0;120;80;1;1;0;0;1;0
+28168;21932;2;170;68.0;130;80;1;1;0;0;0;1
+28170;14646;2;160;70.0;120;80;1;1;0;0;0;1
+28171;22647;1;160;58.0;140;90;1;1;0;0;1;1
+28172;23332;1;165;78.0;170;150;3;1;0;0;1;1
+28173;14580;1;163;63.0;120;80;1;1;0;0;1;0
+28174;15409;1;169;79.0;110;90;2;3;0;0;1;1
+28175;16255;2;178;85.0;120;80;2;2;1;0;1;1
+28176;21125;1;154;65.0;120;80;1;1;0;0;0;1
+28177;22605;1;156;86.0;100;80;2;1;0;0;0;1
+28178;18230;2;173;84.0;120;90;1;1;1;0;0;1
+28179;19179;1;167;74.0;120;80;1;1;0;0;1;0
+28181;22637;1;167;64.0;110;80;1;1;0;0;1;0
+28182;21110;1;168;53.0;120;80;1;1;0;0;1;1
+28184;17617;2;168;80.0;120;80;1;1;0;0;1;0
+28185;19741;1;165;65.0;120;80;1;1;0;0;1;1
+28186;21975;2;168;74.0;130;80;1;1;0;0;1;0
+28188;19660;2;165;68.0;110;80;1;1;0;0;1;0
+28189;19563;2;177;74.0;120;80;1;1;1;1;1;0
+28194;18895;2;170;77.0;130;70;1;1;0;0;1;1
+28196;23522;2;175;80.0;150;90;1;1;1;0;1;1
+28198;18482;2;176;80.0;120;80;1;1;0;0;1;0
+28200;19708;1;160;58.0;120;80;1;1;0;0;1;0
+28202;20469;2;152;49.0;120;80;1;1;0;0;0;0
+28204;18411;2;169;70.0;140;80;1;1;0;0;1;0
+28206;15894;1;160;59.0;110;70;1;1;0;0;1;0
+28207;23508;1;165;70.0;130;100;1;1;0;0;1;1
+28208;15168;1;152;72.0;120;80;2;2;0;0;1;1
+28209;16006;2;167;75.0;120;80;1;1;0;0;1;0
+28210;20439;1;158;74.0;120;80;1;1;0;0;1;1
+28212;22772;1;163;82.0;120;80;3;1;0;0;0;1
+28213;22074;1;153;85.0;160;100;1;1;0;0;1;1
+28214;19812;1;175;85.0;150;60;1;1;0;0;1;0
+28216;17329;2;178;88.0;120;80;2;1;0;0;1;0
+28217;23149;2;168;74.0;130;90;1;1;0;0;0;0
+28218;22632;1;161;60.0;160;90;3;1;0;0;1;1
+28221;19447;2;161;54.0;90;60;1;1;0;0;1;0
+28222;20512;2;168;67.0;140;80;1;1;0;0;1;0
+28223;19891;2;167;81.0;150;1000;1;1;1;1;1;1
+28224;21443;2;161;82.0;130;90;1;1;0;0;1;0
+28225;21069;1;156;78.0;120;80;2;2;0;0;1;0
+28229;17413;2;179;81.0;120;80;1;1;0;0;1;0
+28230;16579;2;171;93.0;160;100;1;1;0;1;1;0
+28232;21671;1;170;78.0;140;90;1;1;0;0;1;1
+28234;17645;1;150;65.0;120;80;1;1;0;0;1;0
+28235;14438;2;175;73.0;100;80;1;1;0;0;1;0
+28237;15264;2;170;64.0;120;80;1;1;1;0;0;0
+28238;18417;2;173;101.0;135;90;3;1;0;1;1;1
+28239;18079;2;168;85.0;140;90;3;1;0;1;1;1
+28240;15564;2;172;69.0;120;80;1;1;0;0;1;0
+28241;18910;2;175;129.0;140;100;1;1;0;0;0;1
+28242;21056;1;155;59.0;120;80;2;1;0;0;1;1
+28243;17380;1;169;81.0;150;100;3;1;0;1;1;1
+28244;22379;1;164;94.0;140;90;2;1;0;0;0;0
+28245;21048;1;165;76.0;130;80;1;1;0;0;1;1
+28247;16709;1;155;50.0;90;60;2;1;0;0;1;0
+28248;17815;1;158;77.0;130;80;2;1;0;0;1;0
+28249;19576;1;177;132.0;130;80;2;3;0;0;0;1
+28250;19721;1;148;58.0;120;80;1;1;0;0;1;1
+28252;23211;1;153;68.0;170;90;2;1;0;0;1;1
+28253;16184;2;168;89.0;125;80;1;1;1;1;1;0
+28254;19762;1;162;72.0;110;70;3;3;0;0;1;0
+28255;23449;1;151;83.0;180;100;2;1;0;0;1;1
+28258;18203;1;165;65.0;120;80;1;1;0;0;1;0
+28259;19835;1;158;75.0;120;70;3;1;0;0;0;0
+28262;21097;1;157;59.0;110;70;1;1;0;0;1;0
+28263;19650;2;178;110.0;140;90;1;1;0;0;1;1
+28264;14769;2;178;68.0;110;80;1;1;0;0;0;0
+28265;21186;2;170;80.0;120;80;1;1;0;1;1;0
+28266;19078;2;170;91.0;180;110;2;1;0;0;1;1
+28268;15366;1;163;71.0;100;70;1;1;0;0;1;0
+28269;19170;1;172;89.0;130;90;2;2;0;0;1;1
+28270;15836;2;169;78.0;120;79;1;1;0;0;1;1
+28272;15419;2;172;71.0;140;80;1;1;1;1;1;0
+28273;21191;2;170;70.0;120;80;1;1;0;1;1;0
+28276;19721;1;168;84.0;140;90;3;1;0;0;1;1
+28277;23191;2;160;63.0;120;79;3;1;1;0;0;1
+28278;18382;2;170;82.0;120;70;1;1;0;0;1;0
+28280;16669;1;152;49.0;120;70;1;1;0;0;1;0
+28281;19710;2;156;60.0;120;80;1;1;0;0;1;1
+28282;15869;1;163;72.0;110;90;3;1;0;0;1;1
+28283;21772;2;167;64.0;120;80;1;1;0;0;1;0
+28284;19976;1;169;66.0;120;80;1;1;0;0;0;1
+28285;22060;1;156;71.0;130;70;1;1;0;0;0;1
+28287;22643;1;171;64.0;120;90;1;1;0;0;1;1
+28288;20511;1;167;112.0;140;90;3;1;0;0;1;1
+28289;21725;1;152;86.0;140;90;3;3;0;0;1;0
+28290;15456;2;175;82.0;130;80;1;2;1;1;1;0
+28292;19233;1;165;68.0;125;70;1;1;0;0;1;0
+28294;22610;2;180;83.0;120;80;1;1;0;0;1;1
+28295;23391;2;176;100.0;140;100;1;1;0;0;1;1
+28296;22038;1;163;95.0;130;90;1;1;0;0;1;1
+28297;19748;1;162;82.0;120;80;1;1;0;0;1;1
+28298;19681;1;165;78.0;145;95;1;1;0;0;1;1
+28299;17216;1;159;69.0;160;90;3;1;0;0;1;1
+28300;14842;1;176;64.0;100;60;1;1;0;0;1;0
+28303;19013;1;158;76.0;140;100;3;1;0;0;1;1
+28305;20520;1;157;64.0;130;80;1;1;0;0;1;1
+28306;21801;2;174;62.0;130;80;3;1;0;0;0;1
+28307;22586;1;154;99.0;130;90;1;1;0;0;1;0
+28309;23320;2;163;102.0;130;80;1;1;0;0;0;0
+28310;20433;1;162;68.0;110;70;1;1;1;0;1;1
+28311;22599;1;167;60.0;90;70;3;1;0;0;0;0
+28314;21203;1;162;89.0;150;1125;2;1;0;0;1;1
+28315;19625;1;152;70.0;110;80;1;1;0;0;1;0
+28316;19005;1;155;67.0;120;80;1;1;0;0;1;1
+28317;17309;1;165;60.0;140;90;1;2;0;0;1;1
+28318;19132;1;156;50.0;110;70;1;1;0;0;0;0
+28321;20149;1;161;62.0;140;80;2;1;0;0;1;1
+28323;16219;2;170;66.0;150;90;3;3;0;0;1;0
+28325;18291;1;172;95.0;110;80;1;1;0;0;1;1
+28327;16347;1;165;79.0;140;80;1;1;0;0;1;1
+28328;22576;2;170;90.0;140;90;1;1;0;0;1;1
+28329;16755;1;165;100.0;120;80;1;2;0;0;0;0
+28330;20663;2;168;63.0;120;80;1;1;0;0;1;0
+28331;21892;1;164;62.0;120;80;2;1;0;0;1;0
+28332;19729;1;158;60.0;110;70;1;1;0;0;1;0
+28334;20545;2;170;88.0;170;90;1;1;0;0;1;1
+28335;16534;2;169;70.0;100;60;2;1;0;0;1;0
+28339;23482;2;177;82.0;150;100;3;1;0;0;1;1
+28340;20387;2;162;80.0;140;90;2;1;0;0;1;1
+28341;20198;1;151;58.0;120;80;1;1;0;0;1;0
+28345;21064;1;154;75.0;140;80;1;3;0;0;1;1
+28346;23299;1;155;64.0;120;70;3;1;0;0;0;1
+28347;22397;1;157;86.0;120;80;3;2;0;0;1;1
+28348;19063;2;175;68.0;140;80;1;1;0;0;0;1
+28349;22480;1;159;92.0;130;80;3;3;1;0;1;1
+28350;19814;1;164;58.0;110;70;1;1;0;0;1;0
+28351;23557;2;165;76.0;130;80;1;1;1;1;1;1
+28352;19784;2;176;88.0;130;90;1;1;0;0;1;0
+28353;18297;2;160;62.0;125;80;1;1;0;0;1;0
+28356;20655;1;169;68.0;120;80;1;1;0;0;0;1
+28357;20132;2;170;72.0;120;80;1;1;0;0;1;0
+28361;17584;2;176;90.0;130;90;2;1;0;0;0;0
+28362;20638;2;178;84.0;120;80;1;1;0;0;1;1
+28363;19088;2;172;83.0;120;80;1;1;0;0;0;0
+28364;21305;1;165;89.0;130;100;1;1;0;0;1;1
+28365;19771;1;160;83.0;105;80;1;1;0;0;1;0
+28366;19892;1;166;97.0;150;80;1;1;0;0;1;1
+28367;18976;2;178;83.0;120;80;1;1;0;0;1;0
+28368;21345;2;168;86.0;135;80;2;1;0;0;1;1
+28369;21252;2;183;105.0;130;90;1;2;0;0;1;0
+28371;21711;1;153;74.0;120;80;1;1;0;0;1;0
+28373;17360;2;168;88.0;160;110;1;1;1;1;1;1
+28374;20539;2;175;65.0;140;90;2;1;0;0;0;1
+28376;15268;1;156;112.0;120;80;1;1;0;0;1;0
+28377;15843;2;169;80.0;120;80;1;1;0;0;1;0
+28379;19078;2;174;63.0;120;80;1;1;0;0;1;1
+28380;20418;2;168;70.0;170;100;1;1;0;0;1;0
+28381;15984;1;162;82.0;110;70;1;1;0;0;1;0
+28382;19430;1;154;69.0;105;85;2;1;0;0;1;1
+28383;16648;1;155;56.0;100;70;2;1;0;0;0;0
+28384;22485;2;174;74.0;120;80;1;1;0;0;1;1
+28385;20272;1;168;54.0;120;80;1;1;0;0;0;0
+28386;21921;1;154;92.0;120;80;1;1;0;0;1;1
+28387;14681;1;165;55.0;120;80;3;3;0;0;1;0
+28388;22053;1;163;92.0;130;80;1;1;0;0;1;1
+28389;21029;1;151;56.0;140;80;1;1;0;0;0;1
+28391;18015;1;157;69.0;100;64;1;1;0;0;1;0
+28392;21439;1;172;75.0;120;70;1;1;0;0;1;1
+28396;23392;2;165;67.0;110;70;1;1;0;0;0;1
+28397;18948;2;160;68.0;110;70;1;1;0;1;1;0
+28399;15796;1;163;68.0;110;70;1;1;0;0;1;0
+28400;20980;1;154;79.0;140;90;3;3;0;0;1;1
+28401;21236;1;164;100.0;120;80;1;1;0;0;0;0
+28402;21166;2;171;70.0;110;70;1;1;0;0;1;0
+28404;14770;1;167;84.0;120;80;1;1;0;0;1;0
+28405;14458;2;174;86.0;100;60;1;1;0;0;1;1
+28406;21204;1;148;66.0;140;90;2;3;0;0;1;0
+28408;14454;1;150;65.0;157;73;1;1;0;0;1;0
+28411;17585;1;170;81.0;110;60;1;1;0;0;1;0
+28413;19494;1;165;62.0;160;90;1;2;0;0;1;1
+28415;23354;1;156;93.0;140;80;3;1;0;0;1;1
+28416;18184;1;175;67.0;120;80;1;1;0;0;1;1
+28417;18308;1;158;93.0;130;90;1;1;0;0;1;1
+28418;22594;1;159;61.0;100;70;2;1;0;0;0;0
+28420;14898;1;165;73.0;110;70;1;2;0;0;1;0
+28421;22611;1;168;68.0;110;80;1;1;0;0;1;0
+28423;14575;2;167;94.0;110;70;2;2;0;0;1;0
+28425;17706;2;162;67.0;110;70;1;1;0;0;0;0
+28426;18197;1;158;104.0;120;80;2;1;0;0;1;1
+28427;19713;1;165;70.0;120;80;1;1;0;0;1;0
+28428;15932;1;170;60.0;120;70;1;1;0;0;1;0
+28429;15121;1;159;97.0;140;90;1;2;0;0;0;1
+28430;16782;1;171;79.0;120;80;1;1;0;0;1;0
+28431;16231;1;168;69.0;120;60;1;1;0;0;1;0
+28432;17459;1;153;75.0;120;80;1;1;0;0;0;0
+28434;14593;1;158;58.0;110;70;1;1;0;0;1;0
+28435;22645;1;160;60.0;120;850;1;1;0;0;1;1
+28436;16791;2;170;80.0;140;90;1;1;1;0;1;1
+28437;14861;1;164;50.0;90;60;1;1;0;0;1;0
+28438;19687;1;161;73.0;130;90;1;1;0;0;1;1
+28440;18164;2;175;77.0;110;80;1;1;1;1;1;0
+28442;21367;1;169;65.0;120;80;1;1;0;0;1;0
+28443;21438;1;157;58.0;120;80;3;3;0;0;1;0
+28444;20922;2;168;75.0;160;1000;1;1;0;0;1;1
+28446;18368;2;174;78.0;120;80;2;1;0;0;1;0
+28449;22817;1;160;88.0;150;180;1;1;0;0;0;1
+28450;19094;1;168;66.0;120;80;1;1;0;0;0;0
+28452;19633;2;176;79.0;110;80;3;3;0;0;1;0
+28453;14833;1;162;75.0;110;70;1;1;0;0;1;0
+28454;14442;1;159;73.0;130;80;1;1;0;0;0;1
+28455;14778;1;164;54.0;100;70;1;1;0;0;1;0
+28456;21783;1;153;65.0;180;90;1;1;0;1;1;1
+28457;17453;1;174;135.0;110;80;1;1;0;0;0;1
+28458;18306;2;174;86.0;140;90;1;2;0;0;1;0
+28460;21269;2;170;84.0;125;80;1;1;1;0;1;0
+28461;14562;1;160;72.0;120;80;1;1;0;0;1;0
+28463;18831;1;157;63.0;140;80;2;2;0;0;1;0
+28464;15856;1;172;57.0;120;80;1;1;0;0;1;1
+28466;21252;1;169;72.0;120;90;1;1;0;0;1;0
+28467;18235;2;169;72.0;140;80;1;1;0;0;0;1
+28468;20626;2;174;55.0;120;80;2;1;1;1;1;1
+28470;22672;1;164;78.0;120;80;1;1;0;0;1;0
+28472;18335;2;150;80.0;150;100;1;3;0;0;1;1
+28473;22682;1;170;65.0;120;80;1;1;0;0;1;0
+28474;18152;1;152;73.0;160;90;1;1;0;0;1;1
+28475;19465;2;185;80.0;120;80;1;1;0;0;1;0
+28476;18951;2;165;65.0;120;80;1;1;0;0;1;0
+28479;14398;2;172;65.0;120;80;1;1;0;1;1;0
+28480;23215;1;160;70.0;140;90;1;1;0;0;1;1
+28481;17542;1;148;48.0;110;70;1;1;0;0;1;0
+28482;15585;2;175;85.0;140;90;1;1;1;0;1;1
+28485;18541;1;167;64.0;120;80;1;1;0;0;1;0
+28486;21311;1;165;65.0;110;79;1;1;0;0;0;1
+28489;21853;1;168;63.0;140;80;1;1;0;0;0;1
+28495;21150;1;152;74.0;130;80;2;1;0;0;1;0
+28497;21980;2;171;81.0;170;90;3;1;1;0;1;1
+28498;19600;1;152;63.0;190;100;1;1;0;0;0;1
+28503;18339;1;178;75.0;130;80;1;1;0;0;1;0
+28504;20386;1;150;67.0;120;80;3;1;0;0;1;1
+28507;19250;1;174;81.0;120;60;1;1;0;0;1;0
+28508;18336;2;170;68.0;120;80;1;1;0;0;1;0
+28510;22690;2;167;65.0;120;80;3;3;0;0;0;0
+28511;14809;1;162;60.0;140;80;1;1;0;0;0;1
+28513;16966;2;156;67.0;120;80;1;1;0;0;1;1
+28514;19884;1;147;58.0;153;84;1;1;0;0;1;1
+28516;20385;2;167;83.0;150;90;1;1;1;0;1;1
+28517;18488;1;168;85.0;130;90;1;1;0;0;1;1
+28520;18379;1;161;49.0;100;60;1;1;1;0;1;0
+28521;22208;1;156;63.0;100;80;1;1;0;0;1;0
+28522;23224;1;147;70.0;170;1000;2;1;0;0;1;1
+28525;18934;1;164;57.0;120;75;1;1;0;0;1;1
+28526;20437;2;168;82.0;110;80;1;1;0;0;1;0
+28527;17648;2;176;72.0;120;80;2;2;0;0;1;0
+28528;19787;1;165;74.0;130;80;1;1;0;0;1;0
+28529;18060;1;160;60.0;120;80;1;1;0;0;1;0
+28530;21186;1;156;84.0;120;80;1;1;0;0;1;0
+28531;21380;1;170;76.0;130;80;1;1;0;0;0;1
+28532;20880;1;152;69.0;120;80;3;1;0;0;1;1
+28535;16988;1;163;88.0;120;80;1;1;0;0;1;0
+28536;15176;2;186;92.0;100;70;1;1;0;0;1;0
+28539;18751;2;168;76.0;130;80;3;3;1;1;0;1
+28540;21717;1;165;60.0;120;60;1;2;0;0;1;0
+28541;23078;1;154;65.0;130;70;1;1;0;0;1;1
+28544;16002;1;160;60.0;120;80;1;1;0;0;1;0
+28545;16788;2;178;71.0;110;70;1;1;0;0;0;0
+28546;14668;2;165;84.0;130;90;1;1;0;0;0;1
+28547;21857;1;154;105.0;150;90;1;1;0;0;0;1
+28549;19585;1;170;83.0;110;70;2;1;0;0;1;0
+28550;19853;2;167;121.3;180;100;2;1;0;1;1;1
+28552;16802;1;166;67.0;120;80;2;1;0;0;1;1
+28554;22616;1;158;75.0;110;70;1;1;0;0;1;1
+28555;19079;1;155;77.0;120;80;1;1;0;0;0;1
+28556;18308;1;165;74.0;140;90;1;1;0;0;1;1
+28557;19600;1;168;67.0;120;90;3;1;0;0;1;1
+28558;22599;2;166;74.0;130;80;3;3;1;0;1;0
+28559;14332;2;160;110.0;120;80;1;1;1;0;1;0
+28560;21935;1;156;70.0;160;90;1;1;0;0;1;0
+28561;19972;1;153;98.0;120;80;1;1;0;0;1;0
+28563;22858;1;156;95.0;130;80;2;1;0;0;0;1
+28564;19122;1;170;125.0;170;90;2;2;0;0;1;1
+28566;22733;1;153;68.0;130;80;1;1;0;0;1;1
+28567;20417;1;163;95.0;130;80;1;1;0;0;0;1
+28569;21229;2;169;70.0;110;70;1;1;0;0;0;0
+28570;17539;1;161;70.0;120;80;1;1;0;0;1;0
+28574;17007;1;168;72.0;120;80;1;1;0;0;0;0
+28575;19745;1;164;64.0;120;80;1;1;0;0;1;0
+28576;19713;1;165;90.0;120;80;1;1;0;0;0;1
+28578;16059;1;170;72.0;100;60;1;1;0;0;1;0
+28579;19022;2;168;71.0;120;80;1;1;0;0;1;0
+28581;19854;1;164;86.0;100;80;3;3;0;0;0;0
+28582;19579;1;154;76.0;160;90;2;1;0;0;0;1
+28583;19075;1;172;70.0;110;70;1;3;0;0;0;0
+28585;18033;1;172;62.0;120;80;1;1;0;0;1;0
+28586;14295;2;172;79.0;120;80;3;1;0;0;1;1
+28587;20496;2;163;51.0;110;70;1;1;0;0;1;0
+28588;18257;1;158;78.0;100;70;1;1;0;0;0;0
+28589;22014;1;166;68.0;120;80;1;1;0;0;1;0
+28591;15501;2;168;77.0;120;80;1;2;0;0;1;0
+28592;18034;2;186;86.0;150;1000;1;1;0;0;1;1
+28593;23278;1;148;62.0;180;1000;2;1;0;0;1;1
+28594;19160;1;166;68.0;110;80;1;3;0;0;1;0
+28595;21810;1;165;65.0;120;80;1;1;0;0;0;1
+28596;20532;2;175;70.0;150;90;1;1;0;0;1;0
+28598;23383;1;155;80.0;170;100;3;1;0;0;1;1
+28600;20463;1;163;95.0;130;80;3;1;0;1;0;0
+28601;22515;2;178;75.0;120;70;1;1;0;0;1;0
+28602;22531;2;162;64.0;190;1000;1;1;1;0;0;1
+28603;23488;2;173;79.0;130;80;1;2;0;0;1;1
+28605;19777;1;112;167.0;180;120;1;1;0;1;1;0
+28606;22715;1;149;56.0;120;80;3;3;0;0;0;1
+28607;20582;1;167;72.0;140;90;2;1;0;0;1;0
+28608;20162;2;175;93.0;110;80;1;3;0;0;1;0
+28611;20376;1;163;74.0;140;80;1;1;0;0;1;1
+28612;19670;2;166;99.0;120;80;1;1;0;0;1;0
+28613;22582;1;164;70.0;130;80;1;1;0;0;0;0
+28614;19012;1;161;90.0;130;89;3;1;0;0;1;1
+28617;20265;1;165;95.0;150;90;3;3;0;0;1;1
+28618;18188;2;164;62.0;110;80;1;1;1;0;1;0
+28622;22606;2;173;73.0;130;60;2;1;0;0;1;0
+28623;21894;1;153;77.0;150;90;3;1;0;0;1;1
+28624;19059;1;165;65.0;120;80;1;1;0;0;1;1
+28625;18737;1;154;51.0;100;60;1;1;0;0;1;0
+28627;14438;1;159;58.0;100;70;1;1;0;0;1;0
+28628;23294;2;180;62.0;120;80;2;1;0;0;1;0
+28629;18506;1;164;68.0;120;80;1;1;0;0;0;1
+28630;16782;2;171;85.0;145;100;2;1;0;0;1;1
+28631;18241;1;163;74.0;120;80;1;1;0;0;1;0
+28632;16163;2;184;89.0;180;90;3;3;1;1;1;1
+28633;23255;1;163;66.0;120;80;2;2;0;0;1;0
+28634;18973;1;173;70.0;120;80;1;1;0;0;0;0
+28635;19723;1;185;85.0;120;80;1;1;0;0;0;1
+28636;17445;1;160;63.0;140;90;1;1;0;0;1;1
+28637;19637;2;157;52.0;110;70;1;1;0;0;1;1
+28638;16837;1;176;71.0;120;80;1;1;0;0;1;0
+28639;17562;2;163;64.0;140;80;1;1;0;0;0;1
+28640;20559;1;155;125.0;130;90;2;3;1;0;1;1
+28641;21783;2;179;65.0;110;70;2;1;1;1;1;1
+28642;20010;1;166;75.0;130;80;1;1;0;0;1;1
+28643;23500;1;162;68.0;130;90;1;1;0;0;1;1
+28644;19778;1;157;70.0;130;80;1;1;0;0;1;1
+28645;15478;2;169;66.0;120;80;1;1;0;0;1;0
+28646;20664;2;170;68.0;110;70;1;3;0;0;0;0
+28648;22679;1;162;59.0;110;60;1;1;0;0;1;1
+28649;21181;1;170;69.0;130;70;1;1;0;0;1;1
+28651;20474;1;155;77.0;140;90;1;1;0;0;1;1
+28652;21008;2;161;69.0;140;1000;1;1;0;0;1;1
+28653;20223;1;163;56.0;120;80;1;1;0;0;1;0
+28654;21897;1;154;74.0;110;70;1;1;0;0;1;0
+28655;18305;1;163;60.0;140;80;1;1;0;0;1;1
+28656;20987;1;164;66.0;140;80;1;1;0;0;1;1
+28658;18388;1;162;95.0;120;80;1;1;0;0;1;0
+28659;19804;2;160;60.0;120;80;1;1;0;0;1;0
+28660;18980;2;190;92.0;130;80;1;1;0;0;1;1
+28661;21242;1;159;80.0;100;65;2;1;0;0;1;1
+28662;21823;1;157;80.0;150;90;3;1;0;0;1;1
+28663;18889;2;174;99.0;140;90;3;3;0;0;1;0
+28664;19563;2;170;70.0;120;80;1;1;0;0;1;0
+28665;19871;1;164;64.0;140;90;1;1;0;0;1;1
+28666;20489;2;161;54.0;140;90;1;1;0;0;1;1
+28667;15935;1;155;50.0;90;60;1;1;0;0;0;0
+28668;16098;1;161;72.0;140;100;1;1;0;0;0;1
+28670;23498;2;178;72.0;130;80;1;2;0;0;1;0
+28671;19551;1;154;73.0;130;80;3;3;0;0;1;1
+28672;23544;1;158;69.0;130;90;2;1;0;0;1;0
+28675;19541;2;176;95.0;120;80;3;1;1;1;0;1
+28676;21831;1;167;75.0;120;80;1;1;0;0;0;1
+28677;15394;1;161;55.0;100;60;1;1;0;0;1;0
+28678;18279;1;159;71.0;160;100;2;2;0;0;1;1
+28679;19708;1;153;60.0;140;90;2;2;0;0;1;1
+28680;19784;1;165;80.0;120;80;1;1;0;0;1;0
+28681;16828;1;162;68.0;110;70;2;1;0;0;1;1
+28682;18989;2;169;65.0;90;130;1;1;0;0;1;1
+28683;20656;2;165;178.0;120;80;1;1;1;1;1;0
+28684;16788;1;165;70.0;120;80;1;1;0;0;1;0
+28685;20478;1;157;69.0;120;80;1;1;0;0;1;1
+28686;21878;1;162;73.0;120;80;1;1;0;0;0;1
+28687;15319;1;162;60.0;110;70;1;1;0;0;0;0
+28688;14786;1;160;60.0;110;60;1;1;0;0;1;1
+28689;21927;1;155;67.0;100;80;1;1;0;0;0;0
+28691;18267;1;162;78.0;130;80;2;1;0;0;1;1
+28692;18066;1;154;87.0;110;70;1;1;0;0;0;1
+28693;17987;1;156;50.0;120;80;1;1;0;0;1;0
+28695;20938;2;172;94.0;120;80;1;1;1;0;1;0
+28697;21785;1;156;54.0;110;70;1;1;0;0;1;0
+28698;20421;1;150;69.0;127;75;3;1;0;0;1;1
+28699;23412;1;155;90.0;140;80;3;1;0;0;1;1
+28700;17413;1;167;71.0;110;70;1;1;0;0;1;1
+28701;20299;2;167;64.0;120;80;1;1;0;0;0;0
+28703;20428;2;170;68.0;110;70;1;1;1;0;1;1
+28704;19675;1;175;81.0;120;80;1;1;0;0;1;0
+28705;21720;2;173;113.0;160;90;1;1;1;0;1;1
+28708;20991;1;175;74.0;140;90;2;1;0;0;0;0
+28709;19499;2;162;85.0;120;90;1;1;0;0;0;0
+28712;21887;2;163;62.0;120;80;2;2;0;0;0;1
+28713;21278;2;174;101.0;120;80;1;1;0;0;1;1
+28714;18816;2;178;88.0;100;60;1;1;0;0;1;1
+28715;22753;1;161;74.0;140;90;2;1;0;0;1;1
+28716;17375;2;178;74.0;120;80;1;1;0;0;1;0
+28718;21066;1;166;72.0;120;80;1;1;0;0;1;0
+28719;18343;2;165;67.0;120;80;1;1;0;0;1;1
+28720;17613;1;160;82.0;160;100;2;1;0;0;1;1
+28721;19672;1;152;75.0;90;60;1;1;0;0;1;0
+28722;14476;2;165;74.0;110;70;1;1;0;0;1;0
+28726;22754;1;160;80.0;120;80;1;1;0;0;1;1
+28727;16006;1;180;75.0;120;80;1;1;0;0;1;1
+28729;19711;1;160;80.0;130;80;3;1;0;0;1;1
+28732;18185;1;175;80.0;120;90;1;1;0;0;1;0
+28733;22651;2;175;82.5;140;90;1;1;1;1;0;1
+28735;15967;1;165;83.0;160;100;3;1;0;0;1;1
+28736;18284;1;158;77.0;150;100;3;3;0;0;1;0
+28737;22056;1;165;63.0;120;80;1;1;0;0;0;0
+28738;20711;2;170;56.0;120;80;1;1;0;0;1;1
+28739;18829;1;158;76.0;120;80;1;1;0;0;0;1
+28740;23334;2;167;68.0;150;90;3;1;0;0;1;0
+28741;15927;1;163;62.0;120;80;1;1;0;0;1;0
+28742;21436;1;160;72.0;110;20;2;2;0;0;0;0
+28743;21925;2;172;74.0;140;80;1;1;0;0;1;0
+28744;23499;2;172;84.0;140;70;1;1;0;0;1;0
+28745;19114;1;161;58.0;120;80;1;1;0;0;1;0
+28747;18241;2;179;102.0;120;80;1;1;1;0;1;0
+28748;18395;1;165;78.0;160;100;1;1;0;0;1;1
+28749;17426;2;169;58.0;120;80;1;1;0;0;1;0
+28750;19995;2;170;60.0;120;80;1;1;1;1;1;1
+28751;23114;2;173;86.0;130;80;3;1;0;0;1;1
+28752;20987;2;168;66.0;110;90;1;1;0;0;0;1
+28754;22693;1;160;90.0;160;105;2;1;0;0;1;1
+28756;23180;1;130;60.0;113;67;1;1;0;0;1;0
+28757;21725;1;161;93.0;165;100;3;1;0;0;1;1
+28760;23577;2;169;65.0;140;80;1;1;0;0;1;1
+28761;20469;2;165;65.0;150;80;1;1;0;0;1;1
+28762;22544;1;152;68.0;120;80;3;3;0;0;0;1
+28763;17621;1;156;60.0;120;80;1;1;0;0;1;1
+28766;16653;1;164;62.0;110;70;1;1;0;0;1;0
+28768;22680;2;174;86.0;120;80;3;3;0;0;1;1
+28770;22422;1;160;95.0;120;80;2;1;0;0;1;1
+28772;21124;1;160;82.0;120;80;1;1;0;0;1;0
+28773;18064;1;155;55.0;140;80;1;1;1;1;1;1
+28774;18901;2;173;77.0;130;90;2;1;0;0;0;1
+28775;18037;1;167;68.0;120;80;1;1;0;0;1;0
+28776;18288;2;172;107.0;120;80;1;1;0;0;1;0
+28779;22619;1;169;67.0;120;80;3;3;0;0;0;1
+28781;20382;2;167;63.0;130;80;1;1;0;0;1;0
+28783;22580;2;162;58.0;120;79;1;1;0;0;1;1
+28784;23154;1;170;68.0;120;80;1;1;0;0;1;0
+28785;20552;1;156;96.0;150;90;3;3;0;0;0;1
+28787;19819;1;160;71.0;120;80;1;1;0;0;1;0
+28788;23180;1;153;71.0;130;80;1;3;0;0;1;1
+28791;21119;1;168;52.0;120;80;1;1;0;0;1;0
+28793;19942;1;165;70.0;130;80;3;3;0;0;1;0
+28794;23500;1;159;81.0;130;80;1;1;0;0;1;0
+28795;22871;1;178;68.0;130;90;1;1;0;0;1;1
+28796;19669;1;167;59.0;120;80;1;1;0;0;0;1
+28797;19851;1;152;61.0;140;90;1;2;0;0;1;0
+28799;19716;1;165;75.0;120;80;2;1;0;0;1;0
+28801;19538;1;160;59.0;90;60;2;1;0;0;1;0
+28803;21743;1;162;56.0;120;80;1;1;0;0;1;1
+28804;14673;1;165;76.0;120;80;2;1;0;0;1;0
+28806;18785;2;174;82.0;110;80;1;1;0;0;1;1
+28808;21795;1;151;51.0;120;80;1;1;0;0;1;1
+28809;21091;1;175;114.0;150;1000;2;2;0;0;0;0
+28810;23321;2;177;92.0;170;110;1;1;0;0;1;1
+28811;18356;2;172;87.0;140;100;2;2;1;0;1;0
+28812;15570;1;167;75.0;140;90;1;1;0;0;1;1
+28813;21396;2;174;78.0;130;80;1;1;0;0;1;1
+28816;21227;1;153;71.0;120;80;1;1;0;0;0;1
+28817;18946;1;145;45.0;150;80;2;1;0;0;1;1
+28818;19037;1;151;64.0;120;80;1;1;0;0;1;0
+28819;17455;2;175;90.0;130;80;2;1;1;1;1;1
+28820;16960;2;180;82.0;140;90;1;1;1;1;1;1
+28823;15815;1;166;68.0;110;70;1;1;0;0;1;0
+28825;15761;1;148;42.0;100;70;2;1;0;0;1;0
+28826;14768;1;152;61.0;120;80;1;1;0;0;1;0
+28827;15205;2;170;67.0;12;80;3;3;0;0;0;0
+28828;18199;2;178;91.0;90;140;1;1;0;0;1;1
+28830;19697;1;165;78.0;130;90;1;2;0;0;1;0
+28831;18954;1;162;65.0;140;100;1;1;0;0;0;1
+28833;22449;1;158;90.0;130;90;1;1;0;0;1;1
+28834;18239;1;165;75.0;150;90;2;1;0;0;1;1
+28835;21795;2;175;95.0;140;90;1;1;0;0;1;1
+28836;18816;1;147;70.0;150;100;1;1;0;0;1;0
+28837;21912;2;168;67.0;120;80;1;1;0;0;1;0
+28838;19897;1;166;58.0;130;90;2;1;0;0;1;1
+28839;17514;1;166;87.0;190;60;2;1;0;0;1;1
+28840;19818;1;172;76.0;120;80;1;1;0;0;1;0
+28841;20498;1;165;85.0;180;100;2;1;1;1;1;1
+28842;19046;2;180;91.0;120;80;1;1;0;0;1;0
+28843;18990;1;165;63.0;120;80;1;1;0;0;1;0
+28844;18207;1;163;62.0;130;80;1;1;0;0;0;0
+28845;20353;1;152;69.0;120;80;3;1;0;1;1;1
+28847;17245;2;158;59.0;120;80;1;1;1;1;1;0
+28850;22700;1;162;77.0;120;80;2;1;0;0;1;0
+28852;22880;1;167;79.0;110;70;1;1;0;0;1;1
+28853;15103;2;172;97.0;130;80;2;1;0;0;1;1
+28854;18254;1;154;74.0;100;70;1;1;0;0;1;0
+28855;21357;2;175;111.0;160;60;1;1;0;0;0;0
+28856;20228;1;158;42.0;150;90;1;1;0;0;1;0
+28857;20390;1;162;71.0;172;97;1;1;0;0;1;1
+28858;19752;2;166;78.0;120;80;2;2;1;0;1;0
+28859;19756;1;156;68.0;110;70;2;1;0;1;0;0
+28860;23343;2;175;62.0;140;90;1;1;0;0;0;1
+28861;18939;1;157;59.0;110;70;1;1;0;0;1;1
+28862;19778;2;158;72.0;130;80;3;1;0;0;1;1
+28863;21950;1;164;64.0;160;90;3;2;0;0;1;1
+28864;21375;1;159;82.0;120;80;1;1;0;0;1;0
+28865;18766;1;174;76.0;120;80;1;1;0;0;1;0
+28866;21612;1;141;70.0;140;80;3;3;0;0;1;1
+28867;22356;1;162;64.0;180;100;3;1;0;0;1;1
+28868;18058;2;169;91.0;120;80;1;1;1;0;1;1
+28869;19809;1;159;94.0;130;90;1;1;0;0;1;1
+28871;19549;2;168;70.0;120;80;1;1;0;0;1;0
+28872;18939;2;173;66.0;100;70;1;1;1;0;1;0
+28873;18424;1;158;99.0;110;90;1;1;0;0;1;0
+28876;19589;1;155;75.0;110;70;1;1;0;0;1;1
+28877;17058;2;178;78.0;120;90;1;1;1;0;1;0
+28880;20474;1;162;85.0;140;90;2;2;0;0;0;1
+28882;23283;1;148;72.0;160;100;1;1;0;0;0;1
+28883;16861;1;156;67.0;100;70;1;1;0;0;1;0
+28885;23373;2;173;82.0;120;80;3;1;0;0;1;1
+28886;18217;1;168;65.0;120;80;1;1;0;0;1;0
+28888;20334;1;153;54.0;130;80;3;3;0;0;1;1
+28889;23400;2;163;78.0;120;90;1;1;0;0;1;0
+28890;23432;1;154;93.0;148;78;3;2;0;0;1;1
+28891;14493;1;154;55.0;100;60;1;3;0;0;1;1
+28892;18321;1;160;72.0;120;80;1;1;0;0;1;1
+28894;20180;1;164;65.0;170;100;2;1;0;0;0;1
+28897;19856;2;164;68.0;150;100;3;1;0;0;1;1
+28898;21787;2;165;68.0;140;80;1;1;0;0;1;1
+28899;15290;2;170;110.0;110;70;1;1;0;0;1;0
+28900;23498;2;160;60.0;120;80;1;1;0;0;1;1
+28901;15544;1;171;83.0;120;80;1;1;0;0;1;0
+28903;21847;1;170;70.0;120;80;2;1;0;0;1;1
+28904;19693;1;165;65.0;120;70;3;3;0;0;0;0
+28906;21311;1;168;72.0;140;100;1;1;0;0;1;1
+28907;22010;2;161;57.0;125;80;1;1;0;0;1;0
+28908;21185;1;159;62.0;120;80;1;1;0;0;1;0
+28909;21243;1;168;80.0;130;100;1;1;0;0;1;1
+28910;21644;2;168;68.0;120;70;1;1;0;0;1;0
+28911;22435;1;151;70.0;120;80;3;1;0;0;1;1
+28912;16302;1;170;65.0;110;70;1;1;0;0;1;0
+28913;20381;1;162;86.0;160;90;3;3;0;0;1;1
+28914;23284;2;182;111.0;130;90;2;2;0;0;1;1
+28916;23252;2;174;85.0;110;60;1;1;0;0;0;1
+28917;23446;2;180;67.0;110;80;1;1;0;0;1;0
+28918;22760;2;161;70.0;160;110;3;3;0;0;0;1
+28919;21054;1;153;51.0;130;100;2;1;0;0;1;1
+28920;14504;2;170;72.0;120;80;1;1;0;0;1;0
+28921;21927;1;154;56.0;110;70;2;1;0;0;0;0
+28922;21421;2;164;74.0;150;90;1;2;1;1;1;1
+28923;19901;2;170;75.0;150;90;1;1;0;0;1;1
+28924;19509;1;168;75.0;133;121;1;1;0;0;0;1
+28927;16020;1;160;88.0;120;80;1;1;0;0;1;1
+28928;23373;2;165;65.0;120;60;1;3;0;0;0;0
+28929;23372;2;172;83.0;120;80;1;2;0;0;0;0
+28930;15353;1;165;62.0;120;80;1;1;0;0;1;0
+28931;22371;1;155;75.0;140;90;3;1;0;0;1;0
+28932;17462;2;168;52.0;100;70;1;1;0;0;0;0
+28935;22029;1;165;56.0;140;90;3;1;0;0;1;1
+28936;21354;1;163;67.0;120;80;1;1;0;0;1;1
+28938;19650;2;156;62.0;130;90;1;1;0;0;1;0
+28939;22541;1;160;59.0;130;80;3;1;0;0;1;1
+28940;21354;1;170;71.0;120;80;2;2;0;0;1;0
+28941;21282;1;150;93.0;120;80;1;1;0;0;1;1
+28942;15207;1;175;58.0;120;80;1;1;0;0;1;0
+28943;15193;2;170;74.0;130;90;1;1;0;0;1;1
+28944;18274;1;171;69.0;120;80;1;1;0;0;1;0
+28945;19842;1;165;74.0;135;90;3;2;0;0;1;1
+28946;23111;2;164;87.0;120;80;1;3;0;0;1;0
+28950;17514;2;170;90.0;140;90;1;1;0;0;1;1
+28951;18371;2;165;68.0;120;60;1;1;0;0;1;0
+28953;17681;2;165;57.0;120;80;1;1;0;0;1;0
+28955;19795;2;164;71.0;120;80;1;2;1;1;1;1
+28956;17439;1;171;75.0;150;90;1;1;0;0;0;1
+28957;21889;1;164;72.0;140;80;3;1;0;0;1;1
+28958;16046;2;172;102.0;120;80;1;1;0;0;1;1
+28959;23429;1;170;80.0;110;70;1;1;0;0;1;0
+28960;21765;1;171;78.0;120;80;1;1;0;0;1;0
+28963;18427;1;166;74.0;130;80;3;3;0;0;1;0
+28965;16748;2;180;85.0;120;80;2;1;1;0;0;0
+28966;19737;1;161;72.0;110;60;1;1;0;0;1;0
+28969;22694;2;176;70.0;120;80;1;1;0;0;1;0
+28971;22646;2;166;85.0;130;80;1;1;0;0;1;1
+28972;19774;2;163;74.0;140;90;3;1;1;1;1;1
+28974;18826;2;162;64.0;130;80;1;1;0;0;1;0
+28975;20393;1;148;49.0;130;80;2;1;0;0;1;1
+28977;18067;1;162;81.0;120;80;3;2;0;0;0;1
+28978;23318;1;168;74.0;130;91;1;1;0;0;1;1
+28981;23162;1;156;62.0;150;80;1;1;0;0;1;1
+28983;20342;1;157;69.0;130;90;1;1;0;0;1;1
+28985;19606;2;173;84.0;110;90;3;1;1;0;1;1
+28988;17630;2;172;111.0;110;80;1;1;0;0;1;0
+28989;19788;1;168;70.0;120;90;1;1;0;0;0;0
+28990;21768;1;158;85.0;139;79;2;2;0;0;1;1
+28991;23504;1;160;60.0;130;90;3;3;0;0;1;0
+28992;18421;1;168;65.0;110;70;1;1;0;0;1;1
+28993;20224;1;175;126.0;130;80;1;1;0;0;1;0
+28995;20473;1;162;67.0;163;100;1;1;1;0;1;1
+28999;16813;2;163;60.0;120;80;1;1;0;0;1;0
+29000;23539;1;158;61.0;120;80;1;1;0;0;1;0
+29001;21504;1;166;79.0;130;80;1;1;0;0;1;0
+29003;15303;2;171;78.0;120;90;1;1;1;0;1;1
+29004;21671;1;156;73.0;120;80;1;1;0;0;1;0
+29005;23287;2;173;94.0;120;80;1;2;0;0;1;1
+29007;21019;2;170;81.0;140;90;1;1;0;0;1;1
+29008;18940;1;165;60.0;130;90;1;1;0;0;1;0
+29009;18435;1;160;67.0;110;80;1;2;0;0;1;0
+29011;15133;2;186;90.0;120;80;1;1;0;1;1;0
+29012;14454;1;169;83.0;120;80;1;1;0;0;0;0
+29013;21177;1;149;66.0;120;80;1;1;0;0;1;1
+29014;17479;1;164;58.0;120;80;1;1;0;0;1;0
+29017;18129;1;155;61.0;110;70;1;1;0;0;1;0
+29018;15458;1;164;78.0;140;80;3;2;0;0;1;1
+29020;19523;2;176;90.7;180;100;2;1;0;0;1;1
+29021;21142;1;159;66.0;120;80;1;1;0;0;1;0
+29022;16044;1;167;70.0;120;80;1;1;0;0;1;0
+29023;23223;1;153;96.0;140;80;2;1;0;0;0;0
+29026;20488;1;160;50.0;150;100;1;1;0;0;1;1
+29027;20406;2;162;70.0;120;80;1;1;0;0;1;0
+29028;14511;1;166;92.0;120;80;1;1;0;0;1;0
+29029;21633;1;152;48.0;110;80;1;2;0;0;1;0
+29031;22533;2;175;79.0;140;80;2;2;1;0;1;1
+29032;19891;1;172;76.0;145;90;1;1;0;0;1;0
+29033;19651;1;154;64.0;180;100;2;1;0;0;1;1
+29034;19707;2;168;59.0;90;50;1;1;1;0;1;0
+29035;15354;2;164;82.0;140;90;2;1;0;0;1;1
+29036;17537;1;164;105.0;130;80;2;1;0;0;0;1
+29037;18546;2;175;85.0;130;90;1;1;1;0;0;1
+29038;17487;1;178;70.0;120;80;1;1;0;0;0;0
+29040;22677;1;160;60.0;140;80;1;1;0;0;1;1
+29041;20410;2;160;75.0;120;80;1;1;0;0;1;1
+29044;15211;1;166;70.0;120;70;1;1;0;0;1;0
+29045;19697;1;177;70.0;120;80;1;1;0;0;0;1
+29046;19079;2;160;60.0;120;80;1;1;0;0;1;1
+29047;18820;2;167;70.0;120;80;1;1;0;0;1;1
+29049;18267;1;165;63.0;120;80;1;1;0;0;1;0
+29050;20259;2;168;85.0;140;80;1;1;1;0;1;0
+29051;14571;1;160;62.0;100;60;1;1;0;0;1;0
+29052;20936;2;171;76.0;120;90;1;1;1;0;1;0
+29055;16558;1;161;69.0;120;80;1;1;0;0;1;0
+29057;14544;1;170;69.0;110;70;1;1;0;0;1;0
+29059;20016;1;145;65.0;120;80;1;1;0;0;1;1
+29060;23365;1;161;81.0;140;90;1;1;0;0;1;1
+29061;19095;2;164;66.0;120;80;3;3;0;0;1;0
+29063;20311;1;162;60.0;120;80;1;1;0;0;1;0
+29064;19757;1;153;98.0;160;90;3;1;0;0;0;0
+29067;18309;1;170;90.0;120;70;1;1;0;0;0;0
+29069;21003;1;165;63.0;120;80;1;1;0;0;1;0
+29071;18331;2;170;68.0;110;80;1;1;0;1;1;0
+29073;22033;1;152;48.0;120;80;1;1;0;0;1;0
+29074;19512;2;190;120.0;130;80;1;2;1;1;0;0
+29075;14681;2;167;94.0;140;100;1;1;1;1;0;0
+29076;19900;1;162;78.0;110;70;1;1;0;0;0;1
+29079;20309;1;154;73.0;120;80;3;1;0;0;1;1
+29081;21804;1;168;60.0;160;80;1;1;0;0;0;1
+29083;16050;1;168;70.0;120;80;1;1;0;0;0;0
+29084;18794;2;171;71.0;160;90;3;3;0;0;1;1
+29085;15996;2;162;69.0;130;80;1;1;0;0;1;1
+29086;16091;1;151;64.0;110;80;1;1;0;0;0;0
+29088;19605;1;156;71.0;140;90;1;1;0;0;1;0
+29091;18153;2;176;86.0;120;70;1;1;0;0;1;0
+29092;16102;1;158;85.0;120;80;1;1;0;0;1;0
+29093;16180;2;169;73.0;120;80;1;1;0;0;0;1
+29094;21835;1;152;79.0;90;60;1;1;0;0;0;0
+29095;18789;1;168;101.0;140;100;1;1;0;0;1;1
+29097;19099;1;168;58.0;120;80;1;3;0;0;1;0
+29098;21756;1;160;75.0;110;70;1;1;0;0;1;0
+29099;18288;1;162;95.0;140;90;1;1;0;0;0;1
+29100;21138;2;184;95.0;110;70;1;2;0;0;1;1
+29102;20971;1;162;72.0;150;90;3;3;0;0;1;1
+29104;22138;2;178;72.0;140;70;2;1;0;0;1;1
+29105;17448;2;174;64.0;120;80;1;1;1;0;0;0
+29106;18959;2;183;78.0;120;80;1;1;0;0;1;0
+29107;22426;1;147;68.0;130;80;2;1;0;0;0;0
+29109;18332;1;169;85.0;120;80;2;1;0;0;1;0
+29110;20248;2;160;63.0;130;90;1;1;1;0;1;0
+29111;21316;1;157;68.0;120;80;1;1;0;0;0;1
+29112;18743;1;162;81.0;200;110;2;2;0;0;1;1
+29114;21009;2;165;65.0;120;80;1;1;0;0;1;0
+29115;21856;2;171;70.0;120;80;1;1;0;0;1;1
+29116;20366;1;156;76.0;140;90;3;1;0;0;1;1
+29117;17434;1;167;95.0;140;80;1;1;0;0;1;1
+29118;16684;2;156;62.0;110;70;1;1;1;1;1;0
+29119;17772;2;170;68.0;110;70;1;3;0;0;1;0
+29121;22661;1;158;59.0;110;60;1;1;0;0;1;0
+29122;23141;1;165;90.0;110;70;1;1;0;0;1;1
+29123;19247;1;163;67.0;130;80;1;1;0;0;1;1
+29125;18947;2;167;70.0;167;95;1;1;0;0;1;1
+29126;21310;1;154;78.0;120;80;1;1;0;0;1;0
+29128;14590;1;169;70.0;120;80;1;1;0;0;1;1
+29129;14932;1;164;76.0;140;90;2;1;0;0;1;1
+29130;22077;1;167;61.0;110;70;1;1;0;0;1;0
+29131;23551;2;152;61.0;160;90;1;1;0;0;1;1
+29132;18210;1;168;63.0;110;70;1;1;0;0;1;0
+29133;18836;1;161;74.0;140;90;1;1;0;0;1;1
+29135;16662;2;168;78.0;140;60;1;1;0;0;0;1
+29136;18454;2;163;89.0;160;90;2;1;1;1;1;1
+29138;19635;2;174;84.0;120;80;3;3;1;1;1;1
+29139;19716;1;156;73.0;130;70;1;1;0;0;1;1
+29141;22070;1;149;89.0;120;80;3;1;0;0;1;1
+29142;18281;1;160;65.0;120;80;1;1;0;0;1;0
+29145;20421;2;175;75.0;120;70;1;1;1;1;1;0
+29146;20323;1;165;66.0;140;90;1;1;0;0;1;0
+29147;18126;2;165;61.0;140;90;1;1;0;0;1;1
+29148;20178;1;163;79.0;130;80;3;1;0;0;0;1
+29149;17023;1;163;79.0;110;70;1;1;0;0;1;0
+29151;22664;2;162;58.0;150;90;1;1;0;0;1;1
+29152;20423;2;165;65.0;150;90;1;1;0;0;1;1
+29154;17374;2;163;65.0;120;80;2;1;0;1;1;0
+29156;19922;1;168;72.0;110;60;1;1;0;0;1;0
+29157;19498;2;170;98.0;130;80;2;1;1;0;1;1
+29158;19778;2;160;60.0;130;80;1;1;0;0;0;0
+29159;16832;1;161;63.0;135;80;1;1;0;0;1;1
+29162;18522;1;163;67.0;90;60;2;2;0;0;1;0
+29163;21094;1;156;58.0;130;90;1;1;1;0;1;0
+29164;18176;2;176;80.0;110;70;2;1;0;0;1;1
+29165;17931;1;157;84.0;130;69;1;1;0;0;0;1
+29166;20438;1;167;103.0;150;90;1;1;0;0;0;1
+29167;17459;1;158;70.0;120;80;1;1;0;0;1;0
+29168;19587;2;171;75.0;120;80;1;1;0;0;1;0
+29169;16184;1;160;77.0;120;80;1;1;0;0;1;0
+29170;15066;2;175;87.0;120;80;1;1;1;0;1;1
+29171;21017;1;159;89.0;140;80;1;1;0;0;1;1
+29172;17680;1;160;60.0;120;80;1;1;0;0;1;1
+29176;18094;1;148;77.0;140;80;1;2;0;0;1;1
+29178;21765;1;153;72.0;140;80;1;1;0;0;1;1
+29180;21289;1;164;65.0;150;80;1;1;0;0;0;1
+29181;21044;1;154;56.0;120;80;1;1;0;0;0;0
+29183;18767;1;164;64.0;150;90;1;1;0;0;1;1
+29184;16910;1;180;89.0;130;100;2;1;0;0;0;1
+29185;21179;1;156;83.0;140;90;3;1;0;0;1;1
+29187;19049;2;172;63.0;140;90;1;1;0;0;1;1
+29188;14468;1;162;72.0;110;70;1;1;0;0;1;0
+29189;18865;2;181;103.0;120;80;3;1;0;0;1;1
+29190;15285;1;164;59.0;110;69;2;1;0;0;1;1
+29195;17557;1;168;70.0;140;80;2;1;1;0;1;1
+29196;17701;1;173;99.0;140;90;1;1;0;0;1;1
+29197;21952;2;165;66.0;180;90;1;1;1;0;1;1
+29199;22546;2;158;56.0;130;80;1;1;0;0;1;1
+29202;20312;1;158;77.0;120;80;2;1;0;0;1;0
+29203;18990;1;159;67.0;140;90;2;1;0;0;1;1
+29204;15203;2;177;85.0;120;80;1;1;1;0;1;0
+29206;22559;2;184;89.0;140;90;2;1;1;0;1;1
+29207;16831;2;179;78.0;130;80;2;2;1;0;1;1
+29210;21669;1;154;67.0;120;80;1;1;0;0;0;0
+29211;18209;2;177;112.0;140;90;3;3;0;1;0;1
+29212;22551;1;153;75.0;160;90;1;1;0;0;1;1
+29214;16793;2;176;71.0;120;80;1;1;0;0;1;0
+29215;16198;1;162;83.0;120;80;1;1;0;0;1;0
+29216;18955;1;163;83.0;150;90;2;1;0;0;1;1
+29217;21047;1;163;90.0;140;90;1;1;0;0;1;1
+29218;18427;2;176;87.0;150;1008;2;1;0;1;1;1
+29219;20219;1;174;65.0;110;80;1;1;0;0;1;0
+29220;19117;1;169;65.0;120;70;1;1;0;0;1;0
+29221;21782;2;170;90.0;130;90;1;1;1;0;1;0
+29222;16304;1;168;62.0;120;80;1;1;0;0;1;0
+29223;18294;1;158;84.0;130;90;1;1;0;0;1;1
+29224;17321;1;167;63.0;110;70;1;1;0;0;1;1
+29228;23394;1;156;77.0;120;80;3;3;0;0;1;1
+29229;14354;1;158;80.0;120;80;1;1;0;0;1;1
+29230;19149;1;152;51.0;90;60;1;1;0;0;1;0
+29231;20426;1;159;92.0;120;80;2;1;0;0;0;0
+29232;21155;1;162;84.0;150;90;1;1;0;0;0;1
+29233;19945;1;149;52.0;130;80;1;1;0;0;1;1
+29234;22325;1;155;75.0;170;110;3;3;0;0;1;0
+29235;21034;1;151;85.0;150;70;3;1;0;0;1;1
+29237;19754;1;165;65.0;120;80;1;1;0;0;1;0
+29238;15405;1;153;60.0;100;70;1;1;0;0;1;0
+29239;20450;1;152;72.0;110;65;1;1;0;0;1;0
+29241;20393;1;169;88.0;130;70;1;1;0;0;1;0
+29242;21892;2;157;62.0;120;80;1;1;0;0;0;0
+29245;17292;1;162;78.0;100;60;1;1;0;0;0;0
+29246;14636;1;164;69.0;110;70;1;1;0;0;1;0
+29247;15510;1;169;67.0;160;90;1;1;0;0;1;1
+29248;19610;2;182;84.0;113;62;1;1;0;0;1;0
+29250;18902;2;168;85.0;120;80;1;3;1;1;1;0
+29251;19808;1;169;77.0;120;90;1;1;0;0;1;0
+29252;21904;2;177;130.0;170;90;1;1;0;0;0;0
+29253;22018;1;146;83.0;140;90;3;3;0;0;1;1
+29254;16903;1;165;78.0;100;60;1;1;0;0;1;0
+29255;20396;1;156;60.0;120;70;1;1;0;0;0;0
+29256;20895;1;163;55.0;120;80;2;1;0;0;1;0
+29257;19795;2;161;65.0;180;1000;1;1;0;1;0;1
+29259;17455;2;165;62.0;110;70;1;2;0;0;1;0
+29260;19657;1;160;100.0;150;90;2;1;0;0;1;1
+29264;23299;1;157;53.0;120;80;1;1;0;0;1;1
+29267;18961;1;159;86.0;120;80;1;3;0;0;1;0
+29268;18885;2;167;62.0;125;70;1;1;0;0;1;0
+29269;19525;2;171;74.0;120;90;1;1;0;0;1;1
+29270;19083;1;168;52.0;120;80;1;1;0;0;1;0
+29271;19749;1;154;66.0;140;90;1;1;0;0;1;1
+29272;21888;1;177;84.0;120;80;1;1;0;0;1;1
+29274;19610;1;163;102.0;130;90;1;1;0;0;1;1
+29275;20308;2;174;84.0;150;90;1;1;0;0;0;1
+29276;21725;1;156;78.0;140;80;1;1;0;0;1;1
+29277;18296;1;170;89.0;140;90;2;1;0;0;1;1
+29279;21184;2;165;76.0;140;100;1;1;0;0;1;1
+29283;18219;2;172;77.0;120;80;1;2;1;0;1;0
+29284;18891;1;153;80.6;160;1000;1;1;0;0;0;1
+29285;20437;1;155;77.0;160;90;1;1;0;0;1;1
+29288;21041;1;164;75.0;130;80;1;1;0;0;1;1
+29289;17656;1;160;58.0;140;80;1;1;0;0;1;1
+29290;21294;1;169;85.0;140;90;3;1;0;0;0;1
+29292;21312;1;168;74.0;120;80;1;1;0;0;0;0
+29293;15961;1;168;61.0;115;70;1;1;0;0;1;0
+29294;20532;1;162;61.0;130;80;1;1;0;0;0;0
+29295;20027;1;157;58.0;120;80;3;3;0;0;1;0
+29297;18965;2;174;89.0;120;80;1;3;0;0;0;1
+29298;21009;1;157;80.0;120;80;2;2;0;0;1;1
+29299;19653;2;172;83.0;180;100;2;1;0;0;1;1
+29300;14749;1;162;81.0;140;80;1;1;0;0;1;1
+29301;19231;1;164;110.0;180;90;2;1;0;0;1;1
+29302;19661;1;152;72.0;140;90;2;1;0;0;1;0
+29303;18900;2;165;92.0;160;90;2;1;1;0;1;1
+29304;15335;2;163;60.0;110;70;1;2;1;1;1;0
+29306;19605;2;167;80.0;110;70;2;1;1;0;1;0
+29310;18222;1;175;59.0;110;70;1;1;0;0;1;0
+29312;19916;2;170;78.0;140;90;1;1;0;0;1;1
+29313;15581;1;153;54.0;-100;70;1;1;0;0;1;0
+29314;22643;1;152;75.0;140;90;3;1;0;0;1;0
+29315;23252;2;163;91.0;130;70;3;1;0;0;0;0
+29316;20337;2;165;72.0;100;80;1;1;1;1;1;0
+29318;17483;2;163;73.0;110;60;1;1;0;0;0;0
+29320;15859;2;165;53.0;130;70;2;2;1;0;0;1
+29321;17728;1;160;65.0;120;80;1;1;0;0;0;0
+29322;15947;2;180;76.0;120;80;1;1;0;0;1;1
+29323;23312;2;168;66.0;120;80;1;1;0;0;1;0
+29325;18318;1;162;57.0;120;80;1;1;0;1;1;0
+29326;21193;1;162;69.0;140;90;3;3;0;0;1;1
+29327;16006;1;161;62.0;120;80;1;1;0;0;1;0
+29328;23434;2;173;82.0;140;110;1;1;0;0;1;1
+29329;23267;2;168;59.0;110;80;2;1;0;0;0;0
+29330;19005;1;159;80.0;120;80;1;1;0;0;1;0
+29333;21657;2;180;88.0;130;90;3;1;0;1;1;1
+29335;22114;1;158;55.0;150;80;3;1;0;0;1;1
+29336;23479;1;156;70.0;140;100;3;1;0;0;1;1
+29337;22778;2;172;85.0;150;80;1;1;0;0;0;1
+29339;22830;1;165;69.0;120;80;1;1;0;0;1;0
+29341;18527;1;174;76.0;120;80;1;1;0;0;0;1
+29342;19857;1;165;83.0;160;80;1;1;0;0;1;1
+29343;14557;1;157;40.0;90;60;1;1;0;0;1;0
+29344;16158;2;164;55.0;120;80;1;1;0;0;1;0
+29345;14368;2;170;76.0;100;69;1;1;0;0;1;0
+29346;20300;1;159;60.0;120;80;1;1;0;0;1;0
+29347;21962;1;156;63.0;110;70;1;1;0;0;1;0
+29348;18394;1;165;50.0;130;90;1;1;0;0;1;0
+29350;18209;1;158;61.0;120;80;3;3;0;1;1;0
+29352;14520;2;174;80.0;120;80;1;1;0;0;1;1
+29353;15989;2;168;71.0;150;80;1;1;0;0;1;1
+29354;17605;1;160;76.0;100;70;1;1;0;0;1;0
+29356;23443;1;154;65.0;120;80;1;1;0;0;1;0
+29357;19611;2;172;77.0;120;80;1;1;0;0;0;1
+29358;18489;2;168;68.0;120;80;1;1;0;0;0;0
+29359;19692;1;175;75.0;120;70;1;1;0;1;0;0
+29360;21693;1;149;70.0;120;90;2;1;0;0;0;1
+29361;20608;1;154;57.0;130;90;2;1;0;0;1;1
+29362;15174;1;162;105.0;140;80;2;2;0;0;0;1
+29364;15382;1;168;65.0;120;80;1;1;0;0;1;0
+29365;21081;1;165;64.0;120;80;1;1;0;0;1;0
+29366;16050;2;174;83.0;140;90;1;1;0;0;1;1
+29367;19070;1;157;51.0;100;70;1;1;0;0;1;0
+29368;19794;1;162;81.0;120;90;2;2;0;0;1;0
+29370;20417;1;155;65.0;160;110;2;1;0;0;1;1
+29372;21903;1;171;82.0;140;90;1;3;0;0;1;1
+29374;16160;1;164;62.0;130;90;3;1;0;0;1;1
+29375;23371;1;160;68.0;130;100;1;1;0;0;0;1
+29376;18857;1;156;95.0;150;100;3;1;0;0;0;1
+29377;22734;1;168;80.0;120;80;1;1;0;0;1;1
+29378;20431;1;165;78.0;130;90;1;1;0;0;1;0
+29379;21144;2;180;84.0;110;70;1;1;0;0;1;1
+29380;15892;1;151;79.0;120;80;2;1;0;0;1;0
+29381;23403;2;173;92.0;140;90;1;1;0;1;1;1
+29382;17477;1;167;61.0;120;80;1;1;0;0;1;0
+29383;20429;1;157;53.0;130;90;3;1;0;0;1;1
+29384;15368;1;167;119.0;140;100;1;1;0;0;1;1
+29385;21115;2;165;76.0;170;100;2;1;1;1;1;1
+29387;21258;1;155;55.0;110;77;1;1;0;0;1;0
+29389;22508;1;169;70.0;140;90;1;1;0;0;1;1
+29393;19598;2;172;93.0;130;80;2;2;0;0;1;1
+29394;17629;2;176;82.0;120;80;1;1;0;0;1;0
+29395;16223;1;168;72.0;100;70;1;1;0;0;1;1
+29396;18024;2;174;87.0;170;80;2;1;1;0;0;1
+29397;15160;2;167;70.0;120;80;1;1;0;0;1;0
+29398;21291;1;165;82.0;140;90;1;1;0;0;1;1
+29400;20318;1;167;75.0;120;80;2;2;0;0;1;0
+29401;21055;1;161;70.0;160;1000;2;1;0;0;1;1
+29402;20425;1;162;76.0;140;90;1;1;0;0;1;1
+29405;21922;2;172;90.0;160;100;1;2;0;0;1;1
+29406;20328;2;176;73.0;110;70;1;1;1;0;1;0
+29407;18916;1;160;87.0;140;90;1;1;0;0;1;1
+29408;23147;1;156;86.0;110;80;1;1;0;0;1;0
+29410;19116;1;164;68.0;120;80;1;1;0;0;0;0
+29411;23399;1;159;71.0;120;80;1;1;0;0;1;1
+29412;19816;2;165;76.0;120;80;1;1;0;0;1;1
+29414;16673;1;158;86.0;130;100;1;2;0;0;1;1
+29416;17592;2;179;118.0;160;110;3;3;1;0;0;1
+29419;23335;1;156;83.0;140;90;1;1;0;0;1;1
+29420;22660;1;165;68.0;140;80;1;1;0;0;0;1
+29421;21682;1;160;59.0;120;80;1;1;0;0;1;0
+29422;21062;1;153;65.0;110;90;1;1;0;0;1;0
+29423;22413;1;156;73.0;120;80;1;1;0;0;1;1
+29424;16059;1;166;57.0;120;80;1;1;0;0;1;0
+29425;17379;1;163;80.0;140;90;1;1;0;0;1;1
+29426;16870;1;154;55.6;110;70;1;1;0;0;1;0
+29427;22734;2;170;80.0;130;70;1;1;0;0;1;0
+29428;18911;1;164;72.0;120;80;1;1;0;0;1;0
+29429;18402;2;167;68.0;120;80;1;1;0;0;0;0
+29430;16557;1;168;65.0;120;90;1;1;0;0;0;0
+29431;21066;2;165;65.0;120;80;1;1;0;0;1;0
+29432;22765;2;172;90.0;150;90;3;3;0;0;1;1
+29435;15414;2;175;80.0;120;80;1;1;0;0;1;0
+29436;16852;2;162;75.0;130;80;3;3;0;1;1;1
+29438;21206;2;167;71.0;160;100;1;1;0;0;1;1
+29441;20617;1;160;60.0;120;80;2;1;0;0;1;1
+29442;19701;1;150;70.0;120;80;1;1;0;0;1;1
+29443;21981;1;162;62.0;130;90;2;1;0;0;1;0
+29444;18196;2;159;68.0;145;95;1;1;0;0;0;1
+29447;19796;2;172;85.0;170;90;3;1;1;0;1;1
+29449;17799;2;170;70.0;110;60;1;1;0;0;1;0
+29451;19691;2;166;75.0;130;90;2;1;1;0;1;1
+29452;21047;1;155;60.0;120;80;3;3;0;0;1;1
+29456;23303;1;154;67.0;118;59;3;1;0;0;1;1
+29457;21892;1;155;65.0;140;90;1;1;0;0;1;0
+29458;18767;1;170;80.0;120;80;1;1;0;0;0;1
+29460;15934;2;170;69.0;120;70;1;1;0;1;1;0
+29462;19992;1;169;73.0;140;80;1;1;0;0;1;1
+29463;20302;2;168;98.0;140;90;1;1;0;0;1;1
+29464;19623;1;161;67.0;110;90;3;3;0;0;0;1
+29465;20968;1;148;58.0;140;90;1;2;0;0;1;1
+29466;21392;1;164;71.0;140;80;2;1;0;0;1;1
+29467;18112;1;154;87.0;130;80;3;1;0;0;0;1
+29468;15171;2;164;60.0;110;75;1;1;0;0;1;0
+29470;18236;1;156;52.0;100;67;1;1;0;0;0;0
+29471;20476;1;158;115.0;160;90;2;1;0;0;1;1
+29472;17563;2;166;66.0;120;70;2;1;0;0;1;0
+29473;16144;1;165;60.0;110;70;1;3;0;0;0;0
+29475;19711;1;163;61.0;110;70;1;1;0;0;1;0
+29476;18164;1;155;52.0;130;70;2;2;0;0;0;1
+29477;20625;2;165;67.0;120;70;1;1;0;0;1;0
+29478;16935;2;172;68.0;135;85;1;1;0;0;1;1
+29479;17409;1;164;70.0;110;80;1;1;0;0;1;0
+29481;21982;2;169;62.0;140;90;1;1;0;0;1;1
+29482;15968;1;165;65.0;120;80;1;1;0;0;1;0
+29483;22131;1;190;110.0;160;100;1;1;0;0;0;0
+29484;23453;1;157;73.0;120;80;1;1;0;0;1;0
+29485;14429;1;162;62.0;110;80;2;1;0;0;1;0
+29490;19031;2;175;71.0;130;80;1;1;1;0;0;1
+29492;18126;2;175;75.0;120;80;1;1;0;0;1;0
+29494;19558;2;169;71.0;160;100;2;1;0;0;1;1
+29497;21893;2;173;78.0;130;80;1;1;0;1;1;0
+29499;16027;2;164;70.0;120;80;1;2;0;0;0;0
+29500;14676;1;170;60.0;100;60;1;1;0;0;1;1
+29502;19914;1;155;91.0;120;90;1;1;0;0;1;1
+29503;17535;2;162;71.0;120;80;1;1;0;0;1;0
+29504;19794;1;169;65.0;120;80;1;1;0;0;1;1
+29505;20632;2;160;80.0;120;80;1;1;0;0;0;1
+29506;18343;1;156;58.0;110;70;1;1;0;0;1;0
+29508;21015;1;156;59.8;120;70;1;1;0;1;1;0
+29512;15935;2;189;94.0;140;90;1;1;0;0;1;1
+29513;18891;2;168;85.0;120;80;1;1;0;0;1;0
+29514;18205;2;173;112.0;160;100;1;1;0;0;1;1
+29516;19523;1;157;61.0;120;80;1;1;0;0;1;0
+29518;21763;1;153;66.0;130;80;1;1;0;0;1;1
+29519;14610;1;160;99.0;130;90;3;1;0;0;1;1
+29520;22488;1;156;72.0;120;80;1;1;0;0;1;0
+29521;21980;2;173;76.0;120;80;1;1;0;0;1;1
+29523;18178;1;155;92.0;140;90;3;1;0;0;1;1
+29524;17043;1;178;80.0;120;70;1;1;0;0;1;0
+29525;18738;2;176;63.0;110;70;1;1;0;0;0;0
+29526;18234;2;160;64.0;120;80;3;3;1;0;1;1
+29527;20553;1;157;60.0;120;79;1;1;0;0;1;0
+29529;21964;1;166;80.0;150;90;1;1;0;0;1;0
+29530;23469;1;150;69.0;150;100;1;1;0;0;0;1
+29532;14550;1;158;54.0;100;70;1;1;0;0;1;0
+29533;19054;1;165;91.0;150;88;3;1;0;0;1;0
+29535;17686;2;172;79.0;120;80;1;1;0;0;1;1
+29536;15248;1;155;48.0;80;60;1;1;0;0;1;0
+29537;22701;2;170;103.0;150;100;1;1;0;0;1;1
+29540;16112;1;158;60.0;120;80;2;1;0;0;1;0
+29541;22626;1;165;61.0;70;110;1;3;0;0;0;0
+29542;18364;2;167;65.0;120;60;1;1;0;0;0;0
+29543;18353;2;162;70.0;140;90;2;1;0;0;1;1
+29544;22582;1;160;98.0;110;70;1;3;0;0;1;1
+29545;20432;1;173;83.0;130;90;2;2;0;0;1;1
+29547;17602;1;150;60.0;100;70;1;1;0;0;1;0
+29548;20426;1;165;70.0;120;80;1;1;0;0;0;0
+29550;14387;2;174;107.0;140;80;2;2;0;0;0;1
+29552;22519;1;161;91.0;140;90;2;1;0;0;1;1
+29554;17584;1;165;67.0;110;70;1;1;0;0;1;0
+29555;20271;1;164;98.0;180;100;3;1;0;1;1;1
+29557;14423;2;178;72.0;130;70;1;1;1;0;1;0
+29558;23269;1;160;80.0;140;100;1;1;0;0;1;1
+29559;16940;1;159;88.0;130;90;1;1;0;0;1;1
+29560;21866;1;167;100.0;120;80;1;1;0;0;1;1
+29561;19635;1;162;66.0;120;80;1;1;0;0;1;0
+29562;17607;2;176;89.0;140;90;1;1;0;0;0;1
+29564;22570;2;165;65.0;120;80;1;1;0;0;1;0
+29567;22716;1;156;64.0;110;80;1;1;0;0;1;1
+29569;17606;2;172;70.0;140;90;3;3;1;1;1;1
+29570;20279;1;157;51.0;120;80;1;1;0;0;1;1
+29571;20395;2;160;105.0;130;80;3;3;0;0;1;0
+29575;21296;1;149;81.0;150;90;1;1;0;0;1;1
+29576;19626;1;169;80.0;90;60;1;1;0;0;1;0
+29577;15533;2;180;80.0;110;89;1;1;0;0;1;0
+29578;18094;1;151;54.0;130;80;1;1;0;0;1;1
+29579;23401;2;156;50.0;110;70;1;1;0;0;1;0
+29580;21812;1;167;83.0;140;90;2;1;0;0;1;0
+29581;18968;1;168;70.0;130;90;2;1;0;0;1;1
+29582;16682;1;156;60.0;100;60;1;1;0;0;1;0
+29584;18799;1;159;61.0;120;80;1;1;0;0;1;0
+29586;19623;2;150;59.0;120;80;1;1;0;0;0;1
+29587;15300;1;162;94.0;120;80;1;1;1;0;1;0
+29591;23198;1;164;85.0;130;90;1;3;0;0;1;0
+29592;18314;1;162;59.0;100;60;1;3;0;0;1;0
+29593;17366;1;164;72.0;110;80;1;1;0;0;1;0
+29594;23402;1;161;97.0;140;70;2;2;0;0;0;0
+29595;18718;1;165;75.0;120;80;1;1;0;0;1;0
+29596;21112;1;160;80.0;160;100;1;1;0;0;1;1
+29598;14394;2;165;75.0;140;100;1;1;1;1;1;1
+29603;21911;1;147;51.0;110;70;2;1;0;0;1;0
+29605;20413;1;165;63.0;130;80;1;1;0;0;1;1
+29608;17737;1;164;60.0;110;70;1;1;0;0;1;0
+29611;21193;2;182;90.0;120;90;1;2;1;0;1;1
+29612;19749;1;156;56.0;120;80;1;1;0;0;1;0
+29613;19798;1;153;50.0;90;60;1;1;0;0;0;0
+29614;17383;2;165;62.0;120;70;1;1;0;0;1;0
+29615;19497;2;179;77.0;140;1000;3;3;0;0;1;1
+29616;18489;2;175;72.0;150;70;1;1;0;0;1;1
+29617;17774;2;173;76.0;150;90;1;1;0;0;1;1
+29618;19583;1;172;73.0;120;80;2;1;0;0;1;0
+29619;21064;2;180;90.0;140;90;1;1;0;1;1;1
+29620;20950;2;172;99.0;180;100;3;3;0;0;0;1
+29622;19079;1;180;62.0;120;60;1;1;0;0;1;0
+29625;14707;2;176;86.0;100;60;1;1;0;0;1;0
+29626;18999;2;180;83.0;120;70;1;3;0;0;1;0
+29627;20216;1;172;52.0;110;60;1;1;0;0;1;1
+29628;19101;1;160;58.0;120;80;1;1;0;0;0;1
+29630;14464;1;170;70.0;120;70;1;1;0;0;1;0
+29631;16487;1;165;65.0;120;80;1;1;0;0;1;0
+29632;18136;2;168;97.0;140;90;1;1;0;0;1;0
+29633;17645;2;170;106.0;120;80;1;2;0;0;1;1
+29634;20385;2;168;54.0;110;70;1;1;0;0;1;0
+29636;21738;2;174;95.0;140;80;1;1;0;0;1;1
+29637;23480;1;151;67.0;140;90;3;1;0;0;1;1
+29638;17674;2;162;82.0;210;110;1;2;1;1;1;1
+29643;18523;2;176;83.0;140;100;2;1;0;0;1;1
+29644;19727;1;158;60.0;160;100;2;1;0;0;1;1
+29645;18326;1;158;57.0;150;70;1;1;0;0;1;1
+29646;21844;1;159;74.77;190;120;1;1;0;0;1;1
+29647;15844;2;181;98.0;150;90;3;1;0;0;1;1
+29648;18311;2;163;85.0;90;130;3;3;0;0;1;1
+29649;19599;1;165;65.0;120;80;1;1;0;0;0;1
+29652;21276;1;170;68.0;110;70;1;1;0;0;1;0
+29653;16175;1;162;76.0;180;1000;1;1;0;0;0;1
+29655;21159;1;170;105.0;120;80;1;1;0;0;1;0
+29657;19550;1;160;54.0;110;80;1;1;0;0;1;0
+29658;16742;2;168;80.0;110;70;3;3;0;1;1;0
+29662;18981;2;170;65.0;120;80;1;1;0;0;1;0
+29663;17589;1;160;59.0;120;80;1;1;0;0;1;0
+29665;18982;1;165;66.0;12;80;1;1;0;0;1;0
+29667;17026;2;170;80.0;120;60;1;1;0;0;1;0
+29668;18085;1;167;73.0;120;70;2;1;0;0;1;0
+29669;21760;2;178;92.0;125;84;1;1;0;0;0;0
+29673;23395;1;157;86.0;130;90;1;1;0;0;1;1
+29674;19026;1;157;70.0;140;90;1;1;1;0;1;1
+29675;19790;1;157;62.0;120;80;1;1;0;0;1;0
+29676;21282;2;178;73.0;130;80;1;1;1;0;1;0
+29679;18367;1;160;67.0;120;80;1;1;0;0;1;1
+29680;19437;2;168;62.0;100;70;1;1;0;0;0;0
+29682;23152;1;158;93.0;160;90;1;1;1;0;0;1
+29683;18047;1;154;52.0;120;80;1;1;0;0;1;0
+29684;17381;2;165;94.0;140;80;1;1;1;0;1;1
+29685;18194;2;172;72.0;110;70;3;1;0;0;1;1
+29686;18818;1;160;78.0;160;1000;2;2;0;1;1;1
+29687;23488;1;160;75.0;140;90;1;1;0;0;1;1
+29688;19604;2;168;72.0;140;80;3;3;0;0;1;1
+29690;22633;1;165;89.0;150;100;1;1;0;0;1;1
+29691;19112;1;165;82.0;120;80;1;1;0;0;1;1
+29692;17429;2;173;74.0;120;80;1;1;0;0;1;1
+29693;19056;2;168;70.0;120;70;3;3;0;0;1;0
+29694;18098;1;158;85.0;130;90;3;1;0;0;1;1
+29697;19706;2;170;76.0;120;80;1;1;1;0;1;1
+29699;23350;2;167;80.0;140;90;1;1;0;0;0;0
+29700;16531;2;166;67.0;140;90;1;1;0;0;1;1
+29701;18285;1;165;68.0;120;80;1;1;0;0;1;0
+29706;18183;1;165;60.0;120;70;1;1;0;0;1;1
+29707;18266;2;176;61.0;120;80;3;3;1;0;1;0
+29708;22540;1;156;58.0;120;80;1;1;0;0;1;0
+29710;23464;2;160;65.0;120;80;1;1;0;0;1;1
+29711;20243;1;163;73.0;160;100;1;1;0;0;1;1
+29713;15264;2;186;90.0;140;80;1;1;1;1;1;0
+29715;20384;1;171;68.0;120;80;1;1;0;0;0;0
+29716;19818;2;178;80.0;150;90;1;1;0;0;0;1
+29717;15419;2;159;67.0;130;80;1;1;0;0;1;0
+29719;17582;2;180;103.0;140;80;1;1;0;0;0;1
+29720;15362;1;167;70.0;110;70;1;1;1;0;1;0
+29721;21715;2;173;63.0;100;70;1;1;0;0;1;0
+29724;18301;1;150;67.0;130;80;2;2;1;0;1;0
+29726;21910;1;160;62.0;145;80;2;1;0;0;1;1
+29727;16677;1;167;87.0;110;70;1;1;0;0;1;0
+29728;18913;1;152;53.0;120;80;1;1;0;0;1;0
+29731;19067;1;169;80.0;125;85;1;1;0;0;1;0
+29732;20333;1;160;72.0;120;80;1;1;0;0;1;0
+29734;16089;2;165;65.0;120;80;1;1;0;0;1;0
+29735;23515;1;165;68.0;120;80;1;1;0;0;1;0
+29736;15938;1;162;50.0;130;80;1;1;0;0;1;0
+29737;21186;2;159;61.0;110;70;1;1;0;0;1;1
+29738;18462;1;168;81.0;150;90;1;1;0;0;1;1
+29740;20426;1;161;64.0;120;80;1;1;0;0;1;1
+29743;20204;2;171;69.0;148;90;1;1;0;0;1;1
+29744;16712;1;161;62.0;110;70;1;2;0;0;1;0
+29746;18253;1;150;51.0;120;80;1;1;0;0;0;0
+29747;18904;1;164;85.0;100;70;1;1;0;0;0;0
+29748;14595;2;183;92.0;120;80;1;1;0;0;1;0
+29749;19670;1;160;65.0;150;90;1;1;0;0;1;1
+29751;16896;1;167;91.0;120;80;1;1;0;0;1;0
+29753;18091;2;164;91.0;140;90;1;1;0;0;1;0
+29755;15194;1;151;47.0;100;70;1;1;0;0;1;0
+29756;22746;1;170;65.0;120;80;1;1;0;0;1;1
+29757;22435;1;162;84.0;130;80;3;3;0;0;1;1
+29758;21191;2;168;84.0;130;90;3;1;1;0;1;0
+29759;14608;1;179;82.0;120;80;2;1;0;0;1;0
+29761;23421;1;166;56.0;120;80;3;3;0;0;0;1
+29762;19763;1;169;52.0;140;100;3;3;0;0;1;1
+29763;16575;2;172;70.0;120;80;1;1;0;0;1;0
+29765;20314;2;167;69.0;110;70;1;1;1;1;0;0
+29766;19743;2;171;75.0;120;80;1;1;0;0;1;0
+29767;18705;1;160;63.0;100;60;1;1;0;0;1;0
+29768;14604;1;164;84.0;120;80;1;1;0;0;0;0
+29770;22702;1;175;65.0;140;80;1;1;0;0;1;1
+29772;15230;1;157;73.0;140;90;2;1;0;0;1;1
+29774;21042;2;172;77.0;150;100;1;3;0;0;1;0
+29775;15123;1;159;62.0;100;70;1;1;0;0;1;1
+29776;16669;1;169;70.0;110;70;1;1;0;0;1;0
+29777;20397;2;167;84.0;120;80;3;3;0;0;1;0
+29778;20513;1;164;72.0;130;70;1;1;0;0;1;1
+29779;20292;2;167;78.0;140;90;1;1;0;0;1;1
+29781;17591;1;169;74.0;110;70;1;1;0;0;1;0
+29785;19281;2;166;58.0;120;80;1;1;1;0;1;0
+29787;19671;1;164;88.0;150;90;2;1;0;0;1;1
+29788;17525;1;170;76.0;140;90;1;1;0;0;1;1
+29789;18136;1;155;119.0;170;90;2;1;0;0;1;1
+29791;23484;2;160;52.0;140;100;3;2;1;0;1;1
+29792;15851;2;177;80.0;120;80;2;1;0;0;1;0
+29793;20503;1;160;93.0;170;100;1;1;0;0;1;1
+29794;22028;2;175;75.0;185;120;3;3;0;0;1;1
+29795;22038;2;165;65.0;110;70;1;1;0;0;1;0
+29796;23427;2;177;92.0;120;80;1;1;0;0;1;0
+29797;20589;1;163;70.0;140;80;1;1;0;0;1;1
+29798;16545;2;171;63.0;110;60;1;1;0;0;1;0
+29801;20578;1;163;62.0;130;70;1;1;0;0;1;0
+29802;19466;2;175;76.0;110;70;3;3;0;0;1;0
+29803;23367;1;152;51.0;130;80;1;1;0;0;0;1
+29805;16842;1;167;68.0;120;60;2;2;0;0;1;0
+29807;18786;1;165;95.0;110;70;1;1;0;0;1;1
+29808;20706;1;170;64.0;170;90;1;1;0;0;1;1
+29809;22005;1;160;64.0;120;80;1;2;0;0;1;0
+29810;18078;1;161;75.0;160;90;1;1;0;0;0;0
+29812;18329;1;160;60.0;120;80;1;1;0;0;1;0
+29814;19254;2;162;58.0;110;70;1;1;0;0;1;0
+29815;18806;1;164;65.0;105;70;1;1;0;0;1;0
+29816;19660;1;163;95.0;120;80;1;1;0;0;1;0
+29819;22714;2;175;69.0;120;80;1;1;1;1;1;0
+29820;21118;1;168;74.0;110;70;1;1;0;0;0;0
+29821;19121;1;155;81.0;160;8100;1;1;0;0;1;1
+29824;22700;1;158;73.0;120;90;1;1;0;0;1;1
+29825;22688;2;178;80.0;150;90;3;3;0;0;0;1
+29826;20490;2;173;95.0;120;80;1;1;0;0;1;0
+29827;19523;1;155;55.0;10;60;1;1;0;0;0;0
+29828;19712;2;175;76.0;120;80;1;1;0;0;1;0
+29830;20328;1;168;92.0;110;80;2;2;0;0;0;1
+29832;21097;2;157;86.0;130;70;1;1;0;0;0;0
+29833;19780;1;168;86.0;130;80;1;1;0;0;1;0
+29835;19770;1;159;62.0;120;80;1;1;0;0;1;0
+29836;17401;1;156;64.0;100;60;1;1;0;0;1;0
+29839;18285;2;172;93.0;120;80;2;1;1;1;0;1
+29841;22053;2;161;69.0;120;80;1;1;0;0;1;1
+29842;19919;1;165;65.0;120;80;1;1;0;0;1;1
+29843;20488;2;177;87.0;150;100;1;2;0;0;0;1
+29845;15392;1;156;59.0;120;80;1;1;0;0;1;0
+29846;18250;2;163;49.0;110;70;1;1;0;0;1;0
+29847;23364;1;171;71.0;140;90;2;1;0;0;1;1
+29848;20594;2;167;68.0;140;1100;2;1;0;0;1;0
+29849;16269;2;165;72.0;140;80;1;1;0;0;0;1
+29850;17670;2;172;75.0;120;80;1;1;0;0;1;0
+29852;21777;1;156;72.0;156;95;1;1;0;0;1;0
+29853;18323;1;162;84.0;123;90;1;2;0;1;0;1
+29854;22556;1;160;62.0;130;80;3;2;0;0;1;0
+29857;21250;2;171;83.0;110;70;1;3;1;1;0;0
+29860;18145;1;157;114.0;140;90;3;3;0;0;1;1
+29861;17038;1;168;108.0;120;80;1;1;0;0;1;1
+29862;19718;1;155;105.0;130;80;2;1;0;0;1;0
+29863;20361;1;156;63.0;130;80;1;1;0;0;1;0
+29864;22761;2;180;106.0;160;80;1;1;0;0;1;1
+29866;20471;2;177;87.0;130;80;1;2;0;0;0;0
+29868;21220;1;158;78.0;150;70;1;1;0;0;1;1
+29869;23479;2;160;63.0;120;80;1;1;0;0;1;0
+29872;16638;1;158;97.0;120;80;1;1;0;0;0;0
+29875;22662;1;157;70.0;140;90;1;1;0;0;1;1
+29876;18854;2;168;87.0;12;70;1;1;0;0;1;1
+29877;18953;2;175;78.0;110;80;1;1;0;0;1;0
+29878;20956;1;157;63.0;110;70;2;1;0;0;1;1
+29879;21854;2;170;64.0;160;110;2;1;0;0;1;1
+29880;19493;1;165;97.0;160;80;1;1;0;0;0;0
+29881;22779;1;156;74.0;120;80;2;1;0;0;1;1
+29882;19663;1;163;100.0;160;80;2;2;0;0;1;1
+29883;18198;1;164;136.0;150;80;2;2;1;0;1;1
+29884;19075;2;164;49.0;100;70;1;1;0;0;1;0
+29885;14684;1;158;69.0;180;90;2;1;0;0;1;1
+29886;17228;1;160;92.0;120;80;3;1;0;0;1;1
+29889;15998;1;170;72.0;120;80;1;1;0;0;1;0
+29890;22637;1;168;80.0;120;80;3;3;0;0;1;1
+29891;18160;1;165;58.0;120;70;1;1;0;0;1;0
+29892;23690;1;165;63.0;150;90;2;1;0;0;1;1
+29893;19871;1;160;71.0;120;80;1;1;0;0;1;1
+29894;22783;1;150;64.0;160;90;2;1;0;0;1;1
+29895;19696;1;165;68.0;110;90;1;1;0;0;1;0
+29896;21316;1;158;75.0;180;100;2;2;0;0;1;1
+29897;19511;1;162;67.0;100;60;1;1;0;0;1;0
+29898;21813;1;163;67.0;140;80;1;1;0;0;1;1
+29899;18680;1;154;77.0;120;80;1;1;0;0;1;0
+29902;18805;1;150;45.0;120;80;1;1;0;0;1;0
+29903;17230;1;153;115.0;120;80;3;3;0;0;1;1
+29904;22059;1;168;74.0;140;80;1;1;0;0;0;1
+29905;21685;2;172;98.0;130;80;2;1;0;0;0;0
+29906;20227;1;163;61.0;130;80;1;1;0;0;1;1
+29907;21836;1;162;84.0;120;80;1;1;0;0;0;1
+29908;21425;1;165;60.0;130;80;1;1;0;0;1;0
+29909;14706;1;167;63.0;150;100;1;2;0;0;1;0
+29911;15954;1;174;89.0;120;80;1;1;0;0;0;0
+29912;20503;1;160;88.0;110;70;1;1;0;0;1;0
+29913;20329;1;158;71.0;160;80;1;1;1;0;1;0
+29914;21217;2;175;70.0;140;80;1;1;0;0;1;1
+29916;16103;1;165;71.0;120;70;1;1;0;0;1;0
+29917;21848;2;175;70.0;110;70;1;1;0;0;1;1
+29918;21228;2;168;82.0;150;90;1;1;0;0;0;1
+29919;20502;2;170;72.0;80;120;1;1;0;0;0;1
+29920;19589;1;145;65.0;120;80;2;1;0;0;1;0
+29921;15863;1;160;62.0;120;80;1;1;0;0;1;0
+29922;16899;1;158;62.0;100;60;1;1;0;0;1;0
+29923;18132;1;175;75.0;120;80;1;1;0;0;1;0
+29924;19020;1;160;60.0;120;80;1;1;0;0;1;1
+29928;21785;1;158;52.0;110;80;1;1;0;0;1;1
+29929;21088;1;168;75.0;120;80;1;1;0;0;0;0
+29930;16052;1;164;69.0;130;90;3;1;0;0;0;1
+29931;16150;1;170;106.0;90;60;1;1;0;0;1;0
+29932;19662;2;170;67.0;90;60;1;1;0;0;0;1
+29934;21169;2;172;65.0;110;80;1;1;0;0;1;0
+29935;16582;2;169;76.0;160;120;1;1;0;0;1;1
+29936;14767;1;169;60.0;120;80;1;1;0;0;1;0
+29940;21080;1;162;87.0;150;100;1;1;0;0;1;1
+29943;22133;2;159;63.0;90;60;1;1;0;0;1;0
+29944;14615;2;155;66.0;110;70;1;1;0;0;0;0
+29945;22678;1;161;64.0;140;90;3;1;0;0;1;1
+29946;22083;1;168;57.0;150;90;1;1;0;0;1;1
+29948;18117;1;168;74.0;120;80;1;1;0;0;1;0
+29950;21362;2;175;65.0;110;70;1;1;1;0;1;1
+29951;21194;1;170;65.0;110;70;1;3;0;0;0;1
+29952;22589;1;156;97.0;140;90;1;1;0;0;1;1
+29954;14722;1;168;57.0;120;80;1;2;1;0;1;0
+29955;23467;2;168;89.0;130;90;1;3;0;0;1;0
+29957;22031;1;156;59.0;120;80;1;1;0;0;1;0
+29958;20981;2;157;101.0;190;100;1;1;0;0;0;1
+29959;17494;1;160;89.0;130;85;2;1;0;0;1;1
+29960;19829;1;175;75.0;120;80;3;1;0;0;1;0
+29961;23414;2;158;76.0;120;80;1;1;0;0;1;1
+29962;20466;1;159;63.0;160;70;1;1;0;0;1;1
+29963;17452;1;156;63.0;120;80;1;1;0;0;1;0
+29964;19721;1;174;80.0;120;80;1;1;0;0;0;1
+29965;20583;1;162;67.0;120;80;1;1;0;0;1;1
+29966;17324;2;170;60.0;120;70;1;1;1;1;1;0
+29971;22335;1;147;75.0;140;90;3;3;0;0;1;1
+29972;22699;1;165;71.0;140;80;2;1;0;0;1;1
+29973;16533;2;167;81.0;140;80;2;1;1;0;1;1
+29975;23248;1;169;68.0;120;80;1;1;0;0;1;0
+29976;21922;1;163;59.0;110;70;1;1;0;0;0;0
+29977;16123;2;171;70.0;120;80;1;1;1;0;1;0
+29978;20884;1;168;60.0;120;80;1;1;0;0;0;0
+29981;19666;1;152;50.0;110;70;1;1;0;0;1;0
+29982;21915;1;169;72.0;120;80;1;1;0;0;1;0
+29983;20476;1;171;75.0;120;80;1;1;0;0;0;1
+29984;17681;1;164;60.0;120;80;3;3;0;0;1;1
+29988;17561;2;170;73.0;120;80;1;1;1;0;1;0
+29989;22659;1;153;110.0;140;90;3;1;0;0;0;1
+29994;18096;1;165;60.0;100;90;1;1;0;0;1;0
+29995;21760;1;156;120.0;120;80;3;2;0;0;1;1
+29996;22501;1;169;94.0;170;100;1;1;0;0;1;1
+29998;23401;2;170;72.0;150;90;1;1;0;0;1;1
+29999;18283;2;152;70.0;120;80;1;1;0;0;1;0
+30002;17452;1;160;45.0;110;70;1;1;0;0;1;0
+30004;23563;2;174;81.0;160;100;1;1;1;0;1;1
+30005;17739;1;162;69.0;110;80;2;1;0;0;1;0
+30006;22734;1;166;79.0;126;78;1;2;0;0;1;1
+30007;20351;1;170;72.0;120;60;2;3;0;0;1;0
+30009;14497;1;153;44.0;100;70;1;1;0;0;1;0
+30011;20442;1;158;60.0;110;70;1;1;0;0;1;0
+30014;21200;1;158;56.0;90;85;1;1;0;0;1;0
+30017;21268;1;163;76.0;130;80;1;1;0;0;1;0
+30018;21160;2;171;80.0;120;80;3;3;0;0;1;1
+30019;16900;1;166;65.0;100;70;1;1;0;0;1;0
+30020;18466;2;174;84.0;130;90;1;2;1;0;1;1
+30022;15194;1;146;53.0;140;90;1;1;0;0;1;1
+30024;21117;1;161;74.0;140;80;2;1;0;0;1;1
+30025;19543;2;171;84.0;120;80;1;1;0;0;1;0
+30026;16895;1;169;74.0;120;80;1;1;0;0;1;1
+30027;14514;1;163;73.0;120;70;1;1;0;0;1;0
+30028;18828;1;160;54.0;110;80;1;1;0;0;1;0
+30029;18126;1;169;78.0;130;90;3;3;0;0;1;0
+30030;21154;1;160;58.0;125;80;1;1;0;0;1;1
+30031;21921;2;176;100.0;130;80;1;1;0;0;1;0
+30035;17246;1;153;87.0;180;110;1;2;0;0;1;1
+30036;18871;1;158;60.0;120;80;2;2;0;0;1;1
+30039;16037;1;163;77.0;120;80;1;1;0;0;1;0
+30040;20472;1;165;65.0;110;70;1;1;0;0;1;0
+30042;20497;1;159;92.0;110;80;1;1;0;0;0;1
+30043;22579;1;165;65.0;120;80;1;1;0;0;0;1
+30045;15379;1;158;70.0;140;90;1;2;0;0;1;1
+30046;23540;1;159;76.0;140;80;3;1;0;0;1;1
+30048;17597;2;175;73.0;120;80;1;1;0;0;0;1
+30049;22508;2;165;103.0;120;80;1;1;0;0;1;1
+30051;19019;1;164;78.0;120;80;1;1;0;0;1;0
+30052;17522;1;161;90.0;140;1100;1;1;0;0;1;1
+30054;21724;1;162;64.0;120;80;3;1;0;0;1;1
+30055;14389;1;167;79.0;120;80;1;1;0;0;1;0
+30057;21026;1;156;99.0;156;99;1;1;0;0;1;1
+30058;20487;2;175;80.0;130;90;1;3;0;0;1;1
+30059;23266;2;187;85.0;130;1000;1;1;0;0;1;1
+30061;20601;2;165;60.0;110;60;2;1;0;0;1;0
+30064;20537;1;165;84.0;120;80;1;1;0;0;1;0
+30065;22710;1;161;64.0;120;80;3;1;0;0;1;1
+30066;15211;1;174;70.0;110;70;1;1;0;0;0;0
+30068;15903;1;157;80.0;120;90;1;1;0;0;1;0
+30072;20548;2;162;91.0;110;80;1;1;1;0;0;1
+30073;16829;2;171;70.0;120;70;1;1;0;0;1;0
+30074;21853;2;176;110.0;150;120;1;1;0;0;1;1
+30075;21750;1;160;59.0;110;70;1;1;0;0;1;0
+30076;18233;1;175;78.0;110;70;1;1;0;0;1;0
+30078;16212;1;167;68.0;120;80;1;1;0;0;0;1
+30079;19003;1;164;74.0;110;80;1;1;0;0;1;0
+30080;20508;1;159;70.0;100;80;1;1;1;0;1;1
+30081;16872;2;173;94.0;120;80;1;1;1;1;1;0
+30082;20472;2;170;77.0;110;80;1;1;1;1;1;1
+30083;17572;1;165;80.0;140;90;1;1;0;0;0;1
+30085;22523;2;164;66.0;130;80;1;1;0;0;1;1
+30088;20462;2;168;75.0;120;80;1;1;0;0;0;1
+30089;22727;1;164;64.0;100;60;1;1;0;0;1;0
+30090;15917;2;167;62.0;120;80;1;1;0;1;1;0
+30091;16797;1;158;72.0;140;90;1;1;0;0;1;1
+30092;14664;2;168;80.0;110;80;1;1;0;0;1;0
+30096;20572;1;166;66.0;120;80;1;1;0;0;1;1
+30097;16007;2;169;77.0;120;80;1;1;0;0;0;0
+30098;22768;2;175;82.0;120;80;1;3;0;0;0;0
+30099;21811;1;158;98.0;110;70;3;1;0;0;1;1
+30101;17384;1;160;62.0;120;80;1;1;0;0;1;0
+30102;22398;2;170;75.0;180;90;3;1;0;0;1;1
+30103;20428;1;158;60.0;120;80;3;1;0;0;1;1
+30104;22709;2;170;86.0;130;85;3;3;0;0;1;1
+30105;18474;2;160;89.0;140;90;1;1;0;0;1;1
+30106;18451;1;155;78.0;130;90;1;1;0;0;1;1
+30107;17672;1;170;72.0;120;80;1;1;0;0;1;0
+30108;20639;2;169;75.0;140;90;3;1;0;0;1;1
+30109;22562;1;155;77.0;130;80;1;1;0;0;1;0
+30110;21584;2;177;74.0;130;90;1;3;0;0;0;0
+30111;23192;1;154;56.0;160;80;1;1;0;0;1;1
+30112;18380;1;161;79.0;120;80;2;3;0;0;1;0
+30113;19005;2;163;79.0;120;80;1;1;1;0;1;1
+30115;19087;1;165;76.0;120;80;3;1;0;0;1;1
+30118;19517;2;185;70.0;120;80;2;1;1;0;1;1
+30119;21872;1;146;50.0;120;80;1;1;0;0;1;1
+30120;22466;2;182;102.0;120;80;3;1;1;0;1;1
+30122;21166;2;164;106.0;160;100;2;1;1;0;0;1
+30123;19122;1;159;82.0;90;60;2;2;0;0;1;0
+30125;20239;1;156;79.0;137;87;1;1;0;0;1;0
+30126;19056;1;170;81.0;151;92;1;1;0;0;1;0
+30127;20347;1;165;87.0;120;70;1;1;0;0;0;0
+30128;17516;2;171;124.0;160;100;1;1;1;0;1;1
+30129;21279;1;158;63.0;120;80;1;1;0;0;1;1
+30130;19593;1;165;67.0;120;80;1;1;0;0;1;0
+30131;18817;1;163;65.0;130;90;1;1;0;0;0;1
+30135;21147;1;148;41.0;100;70;2;1;0;0;1;0
+30137;21876;1;166;67.0;120;80;1;1;0;0;0;1
+30138;14550;1;162;65.0;130;80;3;3;0;0;1;1
+30139;22841;1;159;70.0;145;80;1;1;0;0;1;1
+30140;18174;1;168;58.0;140;100;1;1;0;0;1;1
+30141;18866;2;170;80.0;160;90;1;1;0;0;1;0
+30143;18444;1;154;64.0;140;90;1;2;0;0;0;1
+30144;18923;1;162;50.0;110;80;1;1;0;0;1;0
+30146;19117;2;163;63.0;120;80;2;1;0;0;0;1
+30147;19646;1;167;89.0;120;80;1;1;0;0;1;0
+30149;15104;2;173;63.0;110;80;2;1;0;0;1;0
+30150;18924;2;170;69.0;120;80;1;1;1;0;1;0
+30151;20230;1;158;74.0;140;70;1;1;0;0;1;1
+30152;14607;1;154;58.0;100;70;1;1;0;0;1;0
+30153;14734;1;160;54.0;95;65;1;1;0;0;0;0
+30154;16873;2;172;65.0;120;80;1;1;0;0;1;0
+30155;20513;1;157;58.0;130;90;1;1;0;0;1;0
+30156;18359;1;165;70.0;130;80;1;3;0;0;1;0
+30157;20635;2;167;67.0;145;90;3;3;0;0;1;1
+30158;18288;2;168;75.0;160;60;1;1;1;0;1;0
+30159;21959;1;164;85.0;140;90;1;1;0;0;0;0
+30160;21844;2;173;71.0;130;90;1;1;1;1;1;0
+30162;17381;2;163;73.0;120;80;2;1;0;0;1;0
+30163;20531;2;175;78.0;140;90;1;1;1;0;1;1
+30164;23431;1;152;74.0;140;90;3;2;0;0;0;1
+30167;19591;1;150;80.0;130;80;2;1;0;0;1;1
+30171;23073;2;172;82.0;130;80;1;1;0;0;0;1
+30174;21172;2;160;91.0;130;100;1;1;0;0;1;1
+30176;19888;2;176;79.0;120;70;1;1;0;0;1;1
+30177;22492;1;157;89.0;130;90;1;1;0;0;1;1
+30179;18886;1;157;64.0;120;80;1;1;0;0;1;0
+30180;17507;2;165;83.0;110;80;1;1;0;0;1;0
+30181;20630;1;170;80.0;120;80;3;3;0;0;0;1
+30182;19689;2;179;89.0;120;80;1;1;1;1;1;0
+30183;16836;1;158;70.0;140;80;1;1;0;0;0;1
+30185;22540;2;170;81.0;130;80;3;3;0;0;1;1
+30187;21323;2;168;70.0;160;100;1;1;0;0;1;1
+30190;21051;2;165;59.0;140;90;1;1;1;0;0;0
+30192;19093;2;175;74.0;110;70;1;1;0;1;1;0
+30193;18949;1;155;87.0;130;80;1;2;0;0;1;0
+30195;15304;1;160;63.0;120;80;1;2;0;0;1;1
+30196;15231;1;161;106.0;150;90;1;1;0;0;1;1
+30197;21220;1;159;72.0;120;80;2;2;0;0;1;0
+30199;14689;2;174;84.0;200;110;1;1;0;0;1;1
+30200;16836;1;166;105.0;110;80;1;1;1;0;1;0
+30202;16627;1;164;73.0;120;70;1;1;0;0;1;0
+30204;22017;1;163;95.0;140;90;1;1;0;0;1;1
+30205;18243;1;155;78.0;120;80;1;1;0;0;1;0
+30206;22557;1;172;85.0;120;80;1;1;0;0;0;0
+30207;18300;2;170;99.0;150;90;1;1;1;1;0;1
+30208;20612;2;165;82.0;140;100;1;1;0;0;1;0
+30212;20599;1;165;74.0;140;90;1;1;0;0;1;1
+30213;22654;2;163;78.0;120;80;3;3;0;0;1;1
+30214;19088;1;149;50.0;110;70;2;1;0;0;1;1
+30216;19644;1;163;60.0;120;80;1;1;0;0;1;0
+30217;22641;2;156;52.0;140;80;1;1;0;0;1;1
+30218;15946;2;161;66.0;130;90;3;1;0;0;1;1
+30219;18157;1;166;70.0;110;70;1;1;0;0;1;0
+30220;18248;1;154;77.0;160;100;1;2;0;0;0;1
+30221;23276;1;153;85.0;120;80;1;1;0;0;1;1
+30222;21951;1;161;80.0;120;80;3;1;0;0;1;1
+30223;18444;2;185;82.0;110;70;1;1;1;0;1;0
+30225;15993;2;180;87.0;120;80;1;1;0;1;1;0
+30226;22884;2;171;67.0;175;95;2;1;0;0;1;1
+30227;20590;1;158;52.0;110;70;1;1;0;0;1;0
+30228;20377;2;168;68.0;140;80;2;1;0;0;1;1
+30229;22529;1;147;67.0;130;90;3;3;0;0;1;1
+30230;15882;1;154;87.0;120;80;1;1;0;0;1;0
+30231;18535;1;170;85.0;130;80;2;2;0;0;1;0
+30232;23414;1;160;80.0;140;100;3;1;0;0;0;1
+30234;14627;1;166;109.0;120;80;1;2;0;0;1;0
+30235;19478;1;158;74.0;120;80;1;1;0;0;1;0
+30237;22546;2;168;61.0;150;90;3;1;0;0;1;1
+30239;18245;2;165;65.0;140;80;1;1;1;1;1;1
+30242;21712;1;156;84.0;115;80;2;3;0;0;1;1
+30245;21964;2;169;75.0;120;80;1;1;0;0;1;0
+30248;20409;2;177;84.0;130;80;1;1;0;0;1;0
+30252;21908;1;165;65.0;120;80;1;1;0;0;0;0
+30253;21134;1;166;78.0;120;90;1;1;0;0;1;0
+30255;20597;1;161;70.0;120;80;1;1;0;0;0;1
+30257;19458;2;180;127.0;140;100;1;1;0;0;1;1
+30259;23351;1;155;80.0;130;90;1;1;0;0;1;0
+30260;22602;1;170;82.0;130;80;3;1;0;0;1;1
+30261;20347;1;165;86.0;120;80;2;2;0;0;1;1
+30262;19695;1;169;72.0;120;80;1;1;0;0;1;0
+30263;21972;2;184;75.0;140;90;1;1;0;0;1;1
+30264;20365;2;170;71.0;120;70;1;1;0;0;1;1
+30265;22494;1;168;69.0;160;90;1;1;0;0;1;1
+30266;18036;1;161;80.0;110;60;2;2;0;0;0;1
+30268;18096;1;165;75.0;125;84;1;1;0;0;1;0
+30270;19627;1;168;65.0;120;80;2;1;0;0;1;0
+30271;20965;2;168;73.0;130;90;1;1;1;1;1;0
+30273;15087;1;168;75.0;120;60;1;1;0;0;1;0
+30275;20471;1;149;66.0;130;90;3;1;0;0;1;0
+30276;23222;2;171;119.0;120;80;1;1;0;0;1;0
+30277;20524;1;155;77.0;140;90;1;1;0;1;1;1
+30278;16667;2;160;92.0;120;80;1;1;0;0;1;0
+30279;18498;1;158;58.0;120;80;1;1;0;0;1;0
+30280;22912;2;159;56.0;110;70;1;1;0;0;1;1
+30281;14805;1;164;52.0;100;70;1;1;0;0;1;0
+30282;15937;2;165;72.0;110;80;1;1;0;0;1;0
+30284;18916;1;165;80.0;150;80;1;1;0;0;1;1
+30285;17388;1;150;58.0;100;60;1;1;0;0;1;0
+30286;20546;2;180;80.0;150;90;1;1;0;0;1;1
+30287;21866;2;167;77.0;160;100;2;3;0;0;1;0
+30289;20338;1;155;75.0;140;80;1;1;0;0;0;1
+30290;21306;1;160;60.0;120;80;1;1;0;0;1;0
+30292;20294;1;151;82.0;130;80;1;1;0;0;1;1
+30294;14512;2;171;69.0;130;80;1;1;0;0;1;0
+30295;20593;1;158;69.0;130;90;1;1;0;0;1;1
+30296;20999;2;178;82.0;120;80;1;1;0;0;1;1
+30297;15944;1;159;70.0;110;70;1;1;0;0;1;1
+30299;16083;2;168;79.0;130;70;1;1;0;0;1;0
+30301;23359;1;168;77.0;120;80;1;1;0;0;1;0
+30302;15163;1;155;66.0;110;70;1;1;0;0;1;0
+30303;19095;1;169;95.0;130;80;1;3;0;0;1;0
+30304;18724;2;174;76.0;140;90;1;1;0;0;1;1
+30305;19464;1;150;94.0;130;100;2;1;0;0;1;0
+30306;20645;1;160;65.0;120;80;1;1;0;0;1;0
+30307;19659;1;157;62.0;110;70;1;1;0;0;0;0
+30308;21835;1;175;83.0;130;80;1;3;0;0;1;1
+30309;21025;1;168;90.0;140;1000;1;1;0;0;1;1
+30310;23405;2;185;70.0;110;70;1;1;0;0;0;0
+30311;18778;2;174;81.0;100;60;1;1;1;1;1;0
+30312;20688;1;162;61.0;120;80;1;3;0;0;1;0
+30313;21786;1;153;66.0;120;70;2;1;0;0;0;0
+30314;22770;1;152;58.0;110;60;1;3;0;1;0;0
+30317;18236;1;160;62.0;150;90;2;1;0;0;1;1
+30318;21000;1;161;92.0;140;90;2;1;0;0;0;0
+30320;23363;1;170;68.0;180;90;2;1;0;0;1;1
+30321;21336;1;159;74.0;130;80;1;3;0;0;1;0
+30322;16934;2;164;70.0;120;80;1;1;1;0;1;0
+30323;22574;2;165;72.0;130;80;1;1;1;0;1;0
+30324;19063;1;161;89.0;140;80;1;1;0;0;1;1
+30325;22612;1;155;68.0;140;90;1;1;0;0;1;1
+30328;21096;2;168;86.0;130;80;1;3;0;0;1;0
+30329;23357;1;150;64.0;130;80;1;1;0;0;0;1
+30330;17421;1;178;72.0;100;70;1;1;0;0;1;1
+30331;17461;1;158;97.0;180;100;1;1;0;0;1;1
+30332;20460;2;165;65.0;120;80;1;1;1;0;1;1
+30333;19736;2;175;64.0;125;84;1;1;1;1;1;0
+30338;18094;1;157;68.0;90;60;1;1;0;0;1;0
+30339;20643;1;159;69.0;140;80;1;1;0;0;1;1
+30340;19041;1;158;74.0;130;80;2;1;0;0;1;1
+30343;20253;1;165;66.0;110;80;1;1;0;0;1;0
+30344;22058;2;180;69.0;120;80;1;1;0;0;1;0
+30345;23289;1;158;76.0;120;80;3;3;0;0;0;1
+30349;21277;1;165;63.0;140;90;1;1;0;0;1;1
+30351;15897;1;158;59.0;110;60;1;1;0;0;1;0
+30353;16877;2;170;75.0;110;80;1;1;0;0;0;1
+30354;20377;1;161;101.0;190;110;3;1;0;0;1;1
+30355;21789;2;164;93.0;130;100;1;1;0;0;1;0
+30356;16212;1;173;78.0;110;710;1;1;0;0;1;0
+30357;20449;2;164;83.0;150;90;1;1;0;0;0;1
+30358;17552;1;150;63.0;110;70;1;1;0;0;0;0
+30360;15957;1;166;64.0;110;70;1;1;0;0;1;0
+30361;17535;1;165;55.0;140;80;3;1;0;0;1;1
+30363;19818;2;170;70.0;110;70;1;1;0;0;0;0
+30364;16484;2;170;73.0;140;100;1;1;0;0;1;1
+30365;19610;2;156;77.0;130;70;1;1;0;0;1;0
+30366;22598;2;174;92.0;130;80;2;1;0;0;1;0
+30367;18295;1;163;50.0;110;66;1;1;0;0;0;0
+30368;23503;2;168;69.0;150;100;1;1;0;0;1;1
+30370;19479;2;171;92.0;130;70;3;1;0;0;1;1
+30371;17504;1;165;71.0;120;80;1;1;0;0;1;1
+30372;21869;1;156;60.0;120;80;2;2;0;0;0;1
+30373;16776;1;153;66.0;110;60;1;1;0;0;1;0
+30374;23443;1;170;78.0;120;80;1;1;0;0;1;1
+30375;14656;1;161;54.0;110;70;1;1;0;0;0;0
+30376;23444;1;168;66.0;120;80;1;1;0;0;0;1
+30379;22511;2;168;71.0;130;90;1;1;0;0;1;1
+30380;14624;1;161;49.0;90;60;1;1;0;0;1;0
+30381;19114;2;166;54.0;160;100;3;1;0;0;0;1
+30382;18840;1;164;107.0;150;100;3;1;0;0;1;1
+30384;16868;2;169;68.0;120;80;1;1;0;0;1;1
+30385;22723;1;163;101.0;140;80;1;1;0;0;0;0
+30387;22790;1;168;68.0;120;80;1;1;0;0;1;0
+30388;18442;2;170;68.0;130;80;1;1;1;0;1;0
+30389;15972;1;174;61.0;110;80;1;1;0;0;1;0
+30392;18258;2;166;90.0;110;70;1;1;1;0;1;0
+30393;21222;2;165;65.0;120;80;1;1;0;0;1;1
+30394;18777;2;174;83.0;130;80;1;1;1;0;1;1
+30397;20371;2;162;74.0;130;80;3;3;0;0;1;1
+30398;19831;2;177;79.0;140;90;1;1;0;0;0;1
+30399;23443;2;165;65.0;130;90;1;1;0;0;0;1
+30401;19852;1;164;96.0;130;90;3;2;0;0;1;1
+30402;16016;1;169;90.0;120;80;2;1;0;1;1;0
+30405;18367;1;165;69.0;120;70;1;1;0;0;1;0
+30408;19544;2;169;103.0;130;80;1;1;0;0;1;0
+30409;18183;2;168;72.0;130;80;3;1;1;0;0;1
+30410;20444;1;164;57.0;112;71;1;1;0;0;1;0
+30411;21229;1;165;90.0;110;80;1;1;0;0;1;0
+30412;18231;1;160;73.0;123;82;1;1;0;0;1;0
+30413;21289;1;169;74.0;120;80;1;1;0;0;1;1
+30415;21177;1;150;73.0;140;90;3;3;0;0;1;0
+30416;14651;1;158;71.0;100;70;1;1;0;0;1;0
+30417;22703;1;168;76.0;120;80;1;1;0;0;1;1
+30418;18934;1;158;69.0;110;80;1;1;0;0;0;0
+30419;15962;1;158;68.0;100;70;1;1;0;0;0;0
+30420;19457;2;168;68.0;140;90;1;1;1;0;1;1
+30422;14361;1;166;107.0;120;80;1;1;0;0;1;0
+30423;19130;1;175;82.0;140;90;1;1;0;0;1;1
+30424;16774;1;152;70.0;110;80;1;3;0;0;1;0
+30425;21844;1;165;96.0;180;1100;2;2;0;0;1;1
+30426;20274;1;160;76.0;150;90;1;1;0;0;1;1
+30427;21811;1;168;78.0;140;90;3;3;0;0;1;1
+30428;22593;1;153;63.0;116;80;1;1;0;0;1;1
+30429;23361;2;160;67.0;130;75;1;1;0;0;1;1
+30431;23267;2;157;84.0;160;83;1;2;0;0;1;1
+30434;16533;2;168;78.0;130;80;1;1;0;0;1;1
+30435;19643;1;167;70.0;120;70;1;1;0;0;1;1
+30436;21840;2;166;85.0;130;80;1;1;0;0;0;1
+30437;14665;2;180;78.0;140;90;2;1;0;0;1;1
+30440;22686;1;165;71.0;110;70;1;1;0;0;1;0
+30442;21787;2;170;78.0;140;90;3;3;0;0;1;1
+30443;18358;2;181;70.0;110;70;1;1;1;1;1;0
+30445;18273;1;157;74.0;113;81;1;1;0;0;1;1
+30447;19014;1;164;60.0;140;100;1;1;0;0;1;1
+30448;21650;2;167;70.0;170;80;1;1;1;1;1;1
+30449;19586;1;160;59.0;100;70;1;1;1;0;1;0
+30451;20464;1;172;62.0;120;70;1;1;0;0;1;0
+30453;21716;1;151;63.0;115;75;1;1;0;0;1;0
+30454;17690;2;170;56.0;110;80;1;3;1;0;1;0
+30456;20437;1;168;72.0;110;70;1;3;0;0;1;0
+30457;17750;1;163;85.0;140;90;1;1;0;0;1;0
+30461;19770;2;171;92.0;150;100;3;3;0;0;0;1
+30462;18843;1;150;73.0;140;80;1;1;0;0;1;1
+30463;21765;1;160;60.0;110;80;1;1;0;0;1;1
+30464;20499;1;159;70.0;120;80;1;1;0;0;1;1
+30466;17379;1;150;65.0;150;100;2;1;0;0;1;1
+30467;21958;1;153;52.0;110;70;1;1;0;0;1;0
+30468;17462;1;159;46.0;120;80;1;1;0;0;1;1
+30469;20313;1;154;60.0;140;90;1;1;0;0;1;0
+30472;20912;1;169;91.0;130;90;1;1;0;0;0;1
+30475;20287;1;168;70.0;140;80;3;3;0;0;1;1
+30477;19802;1;160;75.0;120;80;1;1;0;0;1;0
+30478;18254;2;172;68.0;100;70;1;1;1;0;1;1
+30479;18903;2;165;65.0;120;80;1;1;0;0;0;1
+30480;21267;1;168;77.0;130;80;1;1;0;0;1;0
+30481;18946;2;162;60.0;90;60;2;1;1;0;1;0
+30482;22060;1;162;69.0;120;80;1;1;0;0;1;0
+30483;15252;1;154;48.0;140;1000;1;1;0;0;1;1
+30484;18875;1;164;63.0;140;1100;1;1;0;0;1;1
+30485;18858;2;178;84.0;140;90;1;1;0;0;1;1
+30486;18334;2;160;55.0;150;70;1;1;0;0;0;1
+30488;20506;1;156;70.0;140;90;1;1;0;0;1;1
+30489;21197;1;162;60.0;140;90;1;1;0;0;1;1
+30493;19656;2;172;83.0;120;80;3;3;0;0;1;0
+30495;21180;2;174;58.0;120;80;3;3;0;0;1;1
+30496;20981;1;166;77.0;130;90;1;1;0;0;1;1
+30497;21738;1;161;87.0;130;80;2;3;0;0;0;0
+30499;19620;1;166;93.0;160;110;3;2;0;0;1;1
+30501;22836;1;169;75.0;140;90;1;1;0;0;0;1
+30502;15818;1;160;64.0;120;80;1;1;0;0;0;0
+30503;18308;2;171;86.0;120;80;1;1;0;0;1;1
+30504;20448;1;158;80.0;150;90;1;1;0;0;1;1
+30505;21866;1;153;74.0;150;100;1;1;1;1;1;1
+30507;21979;1;159;78.0;130;80;2;1;0;0;1;1
+30509;19021;1;165;69.0;120;60;1;1;0;0;1;1
+30511;16885;2;165;95.0;160;90;2;1;1;0;1;1
+30512;22628;2;172;80.0;150;100;1;1;0;0;1;1
+30514;14626;1;165;85.0;120;90;1;1;0;0;1;0
+30515;21226;1;168;80.0;120;80;2;1;0;0;1;1
+30516;23248;2;175;88.0;158;95;1;2;0;1;1;1
+30517;15418;1;160;70.0;120;80;3;1;0;0;1;1
+30518;18959;1;155;101.0;140;90;1;1;0;0;1;1
+30519;17621;1;165;68.0;140;80;1;1;0;0;1;0
+30522;20354;1;156;56.0;140;80;1;1;0;0;1;1
+30523;16652;1;161;62.0;110;70;1;1;0;0;1;0
+30525;16688;1;157;73.0;110;70;1;1;0;0;0;0
+30526;22790;2;178;72.0;150;90;1;1;0;0;1;1
+30527;21894;1;159;55.0;110;70;1;1;0;0;0;0
+30528;18184;1;145;53.0;120;80;2;1;0;0;1;0
+30530;17596;2;165;60.0;120;80;1;1;0;0;1;0
+30531;19715;2;169;87.0;140;80;1;1;0;0;1;0
+30534;20480;1;146;85.0;120;80;2;1;0;0;0;1
+30535;21345;1;164;54.0;120;80;1;1;0;0;1;0
+30536;19519;2;170;60.0;120;75;1;1;1;0;1;0
+30537;18264;1;150;55.0;140;80;3;1;0;0;1;1
+30538;19574;1;160;89.0;140;100;1;1;0;0;1;1
+30540;19208;2;164;96.0;130;80;1;1;0;0;1;0
+30543;17595;1;165;66.0;120;70;1;1;0;0;0;0
+30545;20427;2;176;95.0;120;80;1;1;1;0;1;1
+30546;21730;1;157;92.0;190;100;3;1;0;0;1;1
+30547;21151;2;173;87.0;150;100;2;2;0;0;1;1
+30549;19819;2;171;66.0;90;60;2;1;0;0;1;0
+30550;14423;1;155;68.0;90;60;1;1;0;0;1;0
+30551;20379;2;183;104.0;120;90;1;1;0;0;1;0
+30552;15375;1;170;69.0;130;80;1;1;0;0;1;0
+30553;18173;1;167;67.0;120;80;1;1;0;0;1;0
+30554;16725;2;171;73.0;140;90;1;1;0;0;1;0
+30555;19070;1;158;65.0;110;70;1;1;0;0;0;1
+30556;22515;2;175;84.0;140;80;1;1;0;0;1;0
+30557;20495;2;163;69.0;120;80;1;1;0;0;1;0
+30558;21894;1;162;100.0;130;90;3;1;0;0;1;1
+30560;23385;2;178;81.0;120;80;1;1;1;1;1;1
+30561;23263;2;165;64.0;120;80;1;1;0;0;1;0
+30563;16176;1;157;55.0;120;80;1;1;0;0;1;0
+30564;18340;1;153;67.0;105;96;1;1;0;0;0;0
+30565;15894;2;157;68.0;110;80;1;1;0;0;0;0
+30569;15004;1;161;68.0;130;90;1;1;0;0;1;1
+30570;21317;2;169;78.0;120;79;1;1;1;1;1;0
+30571;20178;1;156;75.0;130;80;3;3;0;0;1;1
+30572;14643;1;167;67.0;100;70;1;1;0;0;1;0
+30574;20585;1;176;92.0;120;80;1;1;0;0;1;0
+30575;16134;1;174;86.0;110;70;1;1;0;0;1;0
+30576;22817;1;168;85.0;130;80;3;3;0;0;1;1
+30577;21947;1;162;80.0;110;70;1;1;0;0;1;0
+30581;20523;2;176;78.0;120;80;1;1;1;0;0;1
+30582;15909;1;160;78.0;150;120;1;1;0;0;1;1
+30583;19073;1;165;56.0;120;80;1;1;0;0;1;1
+30584;20244;1;162;69.0;120;80;1;1;0;0;1;1
+30585;19061;1;169;89.0;120;80;1;1;0;0;1;1
+30586;16829;1;156;76.0;120;80;1;1;0;0;1;0
+30587;19094;1;157;81.0;130;80;1;1;0;0;0;0
+30588;15385;1;167;90.0;110;70;1;1;0;0;1;0
+30592;22809;1;159;80.0;130;80;1;1;0;0;1;0
+30593;14591;1;165;65.0;100;70;1;1;0;0;1;0
+30594;19104;1;156;64.0;110;60;2;2;0;0;1;0
+30595;20411;1;178;97.0;150;80;1;1;0;0;1;1
+30598;18132;2;170;60.0;120;80;1;1;0;0;1;1
+30599;15443;2;179;83.0;120;80;1;1;0;0;1;0
+30600;17536;1;165;63.0;130;80;1;1;0;0;1;1
+30602;19464;2;175;85.0;140;90;3;1;0;0;1;1
+30605;20633;1;161;58.0;130;90;1;1;0;0;1;0
+30606;18409;2;175;75.0;120;90;1;1;0;0;0;0
+30607;18676;1;164;71.0;120;80;1;2;0;0;1;0
+30608;18750;1;170;62.0;120;60;1;1;0;0;1;1
+30609;17474;1;163;75.0;12;80;1;1;0;0;1;1
+30610;20257;1;164;58.0;120;80;1;1;0;0;1;1
+30611;21830;2;172;58.0;120;80;1;1;0;0;1;0
+30615;23126;2;160;60.0;120;80;2;1;0;0;1;1
+30616;18404;1;168;78.0;100;80;1;1;0;0;1;0
+30617;18959;1;156;82.0;130;80;1;1;0;0;1;1
+30620;15237;2;172;70.0;110;80;1;1;0;0;1;0
+30621;20903;2;173;62.0;150;90;1;2;0;0;0;1
+30624;20265;1;154;58.0;110;70;1;1;0;0;1;0
+30627;18151;1;162;69.0;120;80;1;1;0;0;0;0
+30628;21103;2;163;55.0;110;90;1;1;0;0;1;0
+30629;16041;2;172;76.0;130;80;1;1;0;0;1;0
+30630;19690;1;158;68.0;130;80;1;1;0;0;0;1
+30632;18806;1;171;72.0;110;80;1;1;0;0;0;1
+30633;21724;2;163;90.0;160;90;1;1;0;0;1;1
+30634;18049;2;178;82.0;120;80;1;1;0;0;1;0
+30635;19043;1;156;80.0;140;90;3;1;0;0;0;1
+30636;21831;1;158;62.0;140;90;1;1;0;0;1;0
+30637;22389;2;177;82.0;110;80;2;1;0;0;1;1
+30639;19434;1;148;64.0;120;80;3;1;0;0;1;1
+30640;21209;1;157;95.0;140;80;2;1;0;0;1;1
+30642;22587;2;172;102.0;160;100;2;1;0;0;1;1
+30645;22114;2;170;89.0;130;80;1;1;1;0;0;1
+30646;20347;1;162;79.0;130;80;3;3;0;0;1;1
+30647;23130;2;169;82.0;180;110;1;1;0;0;1;1
+30649;14708;1;178;68.0;121;70;1;1;0;0;0;1
+30650;18401;1;163;92.0;110;70;1;1;0;0;1;0
+30651;22637;2;175;93.0;140;90;2;1;1;0;1;0
+30652;19668;2;171;84.0;100;60;2;2;0;0;0;1
+30653;16938;1;165;62.0;120;80;1;1;0;0;1;0
+30655;19084;1;161;60.0;110;70;1;1;0;0;1;0
+30656;18797;1;164;65.0;120;80;1;2;0;0;1;1
+30659;20593;1;163;68.0;120;80;1;1;0;0;1;0
+30660;14631;1;168;78.0;120;80;1;1;0;0;0;0
+30662;19207;1;173;80.0;120;80;1;1;0;0;1;1
+30664;20294;2;172;68.0;160;80;1;1;0;0;1;0
+30665;21022;1;159;56.0;120;80;1;1;0;0;1;1
+30667;16054;2;174;52.0;120;80;1;1;0;0;1;0
+30668;17264;1;169;72.0;120;80;1;1;0;0;1;0
+30669;21286;1;168;71.0;140;90;1;1;0;0;1;1
+30670;20301;2;168;68.0;100;70;1;1;1;1;1;0
+30672;19666;1;158;68.0;120;80;1;1;0;0;1;1
+30674;18206;2;173;74.0;140;70;1;1;0;1;1;1
+30675;19133;1;170;75.0;110;70;1;1;0;0;1;0
+30677;18956;2;163;86.0;180;120;1;1;0;0;1;1
+30678;20185;2;168;67.0;140;90;1;1;0;0;0;1
+30679;21974;1;170;75.0;130;80;1;1;0;0;1;1
+30680;23186;2;176;80.0;125;80;2;2;0;0;1;0
+30681;23302;1;145;77.0;170;100;2;1;0;0;1;1
+30682;20530;1;170;69.0;120;80;1;1;0;0;1;0
+30683;16759;2;155;89.0;110;70;1;1;0;1;0;0
+30684;22382;1;155;80.0;130;90;2;1;0;0;0;1
+30685;16817;1;158;61.0;110;70;2;1;0;0;0;0
+30686;23388;1;163;96.0;150;90;3;1;1;0;1;1
+30687;19668;1;165;63.0;120;80;1;1;0;0;1;0
+30688;14442;2;168;73.0;110;70;1;1;0;0;1;1
+30689;16907;1;164;100.0;120;80;1;1;0;0;1;0
+30691;14525;2;167;72.0;110;70;1;1;0;0;1;0
+30692;17555;1;157;56.0;120;70;1;1;0;0;0;1
+30693;23649;1;161;71.0;120;80;1;1;0;0;1;0
+30694;20558;2;156;65.0;120;80;3;1;1;0;1;0
+30695;17290;2;172;77.0;120;70;2;2;0;0;0;1
+30696;16054;1;168;75.0;90;60;1;1;0;0;1;0
+30697;19628;1;150;59.0;110;75;1;1;0;0;1;0
+30699;21877;1;157;61.0;120;80;1;1;0;0;1;1
+30700;18104;1;160;78.0;150;90;1;1;0;0;1;1
+30701;15304;1;157;55.0;120;80;1;1;0;0;1;0
+30704;17474;1;174;136.0;150;90;1;1;1;0;1;1
+30706;21363;2;171;69.0;160;1000;1;1;0;0;1;1
+30707;15889;1;158;60.0;120;80;1;1;0;0;0;0
+30708;18188;1;156;66.0;120;80;1;1;0;0;1;0
+30709;22864;1;156;70.0;130;80;1;1;0;0;1;1
+30710;20351;1;153;60.0;130;80;1;1;0;0;1;0
+30711;18144;2;177;107.0;150;100;2;1;0;1;1;1
+30714;18868;2;168;58.0;160;90;1;1;0;0;1;1
+30715;16764;2;175;90.0;120;90;1;1;1;0;1;1
+30716;15789;2;165;60.0;120;80;2;1;0;0;0;0
+30717;21194;1;170;102.0;150;90;1;1;0;0;1;1
+30721;22401;1;172;65.0;120;70;1;1;0;0;1;1
+30723;21215;2;167;90.0;130;100;2;1;0;0;1;1
+30724;21263;1;158;52.0;120;80;1;1;0;0;1;0
+30725;17624;2;163;65.0;120;70;1;1;0;0;1;0
+30727;18974;2;168;76.0;140;1000;1;1;0;0;1;1
+30728;14427;1;169;74.0;110;70;1;1;0;0;1;0
+30729;20413;2;165;93.0;130;80;1;1;0;0;0;1
+30730;22834;1;158;54.0;150;90;1;1;0;0;1;1
+30731;21290;1;156;60.0;120;85;3;2;0;0;1;0
+30733;23117;1;157;78.0;100;60;1;1;0;0;1;1
+30734;18247;1;162;82.0;130;80;1;1;0;0;1;0
+30735;19080;1;154;62.0;130;90;2;1;0;0;1;1
+30736;21981;1;167;71.0;120;80;1;1;0;0;1;0
+30738;18995;1;168;90.0;120;80;2;1;0;0;0;0
+30740;22896;2;165;78.0;120;80;1;1;0;0;1;1
+30743;21029;2;170;78.0;150;90;3;1;0;0;1;1
+30744;23104;1;158;98.0;130;90;3;1;0;0;1;1
+30746;16940;1;162;69.0;100;70;1;1;0;0;1;0
+30747;15990;2;180;92.0;120;80;1;3;0;0;0;1
+30748;17608;1;163;74.0;140;80;2;1;0;0;1;1
+30749;22580;1;162;88.0;130;80;3;3;0;0;1;1
+30750;18199;1;153;63.0;130;100;1;1;0;0;1;0
+30751;20490;2;172;70.0;120;80;1;1;0;0;0;1
+30753;21996;2;172;75.0;100;60;1;1;1;1;1;0
+30754;21223;1;169;61.0;120;80;1;1;0;0;1;1
+30756;20278;1;165;65.0;120;80;3;3;0;0;0;1
+30757;18408;2;171;88.0;160;100;2;1;1;1;1;1
+30759;20592;1;159;79.0;130;80;2;1;0;0;1;1
+30760;15344;1;157;76.0;120;90;1;1;0;0;0;0
+30761;19821;2;171;73.0;120;80;1;1;1;0;1;0
+30762;22093;1;172;92.0;130;90;1;1;0;0;1;1
+30767;22463;2;176;72.0;120;80;1;1;0;0;0;1
+30768;22113;1;161;65.0;110;80;1;1;0;0;1;0
+30769;21849;1;149;60.0;120;60;1;1;0;0;1;0
+30770;18915;1;151;95.0;130;90;1;1;0;0;0;1
+30771;22430;2;171;94.0;150;90;1;1;0;1;0;1
+30772;23181;1;163;60.0;140;80;1;1;0;0;1;1
+30773;15154;1;164;68.0;120;70;2;2;0;0;1;0
+30775;19062;1;150;47.0;120;80;1;1;0;0;1;0
+30776;18125;2;169;67.0;120;80;3;1;0;0;1;1
+30777;22579;1;162;90.0;130;80;2;3;0;0;1;0
+30778;23421;1;151;75.0;130;80;1;1;0;1;0;1
+30779;18134;1;174;81.0;120;80;1;1;0;0;1;0
+30780;21148;2;165;78.0;120;80;1;1;1;0;1;0
+30782;17674;1;166;69.0;125;85;1;1;0;0;1;0
+30783;15238;2;183;108.0;135;80;1;1;0;1;1;1
+30785;21731;1;164;75.0;120;80;1;1;0;0;1;0
+30786;22657;1;158;78.0;150;90;1;1;0;0;1;1
+30787;16710;2;171;92.0;110;80;2;2;0;0;1;1
+30788;20631;1;172;63.0;110;70;1;1;0;0;1;0
+30789;15305;1;165;97.0;110;80;1;1;0;1;1;0
+30790;19811;1;158;83.0;150;90;1;1;0;0;1;1
+30791;18207;1;160;78.0;110;80;1;1;0;0;1;0
+30792;19629;1;165;119.0;180;120;2;2;1;0;1;1
+30794;22683;2;166;71.0;120;80;1;3;1;0;1;1
+30795;19803;2;158;69.0;120;90;1;1;0;0;1;1
+30796;21154;2;165;56.0;120;80;1;1;0;0;1;1
+30800;14575;2;172;84.0;100;70;1;1;1;0;1;0
+30801;18326;1;167;78.0;120;80;1;1;0;0;0;0
+30802;21088;1;157;75.0;130;80;1;2;0;0;0;0
+30806;17566;1;162;60.0;110;60;1;1;0;0;1;0
+30807;21091;2;172;84.0;120;80;1;1;0;0;1;0
+30808;19571;1;155;58.0;120;80;1;1;0;0;1;0
+30809;16821;1;154;58.0;90;140;1;1;0;0;1;1
+30810;18357;1;159;60.0;90;60;1;1;0;0;0;0
+30812;17972;1;165;64.0;120;80;1;1;0;0;1;0
+30814;14422;1;159;53.0;110;70;1;1;0;0;1;0
+30815;16650;1;152;72.0;120;80;2;3;0;0;0;0
+30816;20670;1;157;68.0;151;100;1;1;0;0;1;0
+30817;23426;1;164;105.0;140;80;1;1;0;0;1;1
+30818;19886;2;165;87.0;120;80;1;1;0;0;0;1
+30820;22486;1;158;81.0;160;100;3;3;0;0;0;1
+30821;18187;1;169;69.0;140;90;3;3;0;0;1;0
+30822;20560;1;168;65.0;140;90;1;1;0;0;1;1
+30823;19788;2;183;102.0;110;60;2;1;1;0;1;1
+30824;22430;2;169;95.0;150;70;1;1;1;0;0;0
+30826;21126;2;160;84.0;150;90;1;1;1;0;0;1
+30827;18214;2;175;103.0;120;80;2;1;0;0;1;0
+30828;21240;1;165;58.0;130;70;3;1;0;0;1;1
+30829;18214;1;160;82.0;120;80;1;1;0;0;0;1
+30831;21614;2;169;82.0;100;70;2;2;0;0;1;0
+30833;22348;1;170;78.0;120;80;3;3;0;0;1;1
+30834;16490;1;168;77.0;160;90;2;1;0;1;1;1
+30835;19297;1;163;77.0;140;90;1;1;0;0;1;0
+30836;16787;1;170;67.0;110;70;1;1;0;0;1;1
+30837;18442;1;161;70.0;120;80;1;1;0;0;1;0
+30838;15138;1;157;59.0;110;70;1;1;0;0;1;0
+30840;18879;2;168;89.0;140;90;1;1;0;0;1;1
+30841;21963;1;166;68.0;120;80;1;1;0;0;1;0
+30844;23412;1;153;82.0;120;70;3;3;0;0;0;1
+30845;20430;1;168;166.0;150;90;3;3;0;0;1;1
+30846;20135;1;147;72.0;151;91;3;2;0;0;1;1
+30847;15391;2;170;73.0;120;80;1;1;1;0;1;0
+30848;23623;1;169;84.0;120;80;1;1;0;0;1;1
+30849;19743;1;168;74.0;100;70;1;1;0;0;0;0
+30850;22342;2;170;78.0;120;80;1;1;0;0;1;1
+30851;21874;1;171;76.0;120;80;1;1;0;0;1;0
+30852;18254;2;168;90.0;150;80;1;1;0;0;1;1
+30853;19979;1;165;60.0;120;80;1;1;0;0;1;0
+30854;16253;1;158;60.0;120;80;1;1;0;0;1;0
+30855;14748;2;163;61.0;120;80;1;1;0;0;1;0
+30856;23424;1;161;85.0;140;80;1;1;0;0;1;1
+30857;18358;2;174;74.0;120;80;1;2;0;0;1;0
+30859;18286;1;159;63.0;120;70;1;1;0;0;1;0
+30860;20312;2;162;70.0;120;90;1;1;0;0;1;0
+30861;18282;1;166;77.0;120;80;1;1;0;0;1;0
+30862;22689;1;166;75.0;120;80;1;1;0;0;0;0
+30865;15898;1;160;72.0;100;70;1;1;0;0;0;0
+30867;19629;1;165;60.0;110;70;1;1;0;0;1;0
+30870;18800;1;168;63.0;120;80;1;1;0;0;1;0
+30874;19119;2;172;70.0;140;90;2;1;0;0;0;1
+30876;22851;2;172;64.0;160;80;1;1;0;0;0;1
+30878;16802;1;170;70.0;120;80;1;1;0;0;1;0
+30880;21150;1;160;60.0;120;80;1;1;0;0;1;0
+30881;22801;1;164;79.0;120;80;2;1;0;0;1;1
+30883;19620;1;154;72.0;130;80;3;3;0;0;1;1
+30884;16692;1;168;65.0;120;80;1;1;0;0;1;0
+30885;23309;1;158;82.0;160;90;1;1;0;0;1;0
+30886;18031;2;169;130.0;120;90;1;1;0;0;1;1
+30887;17996;2;162;60.0;140;90;1;1;0;0;1;1
+30888;20312;1;168;58.0;120;80;1;1;0;0;1;0
+30890;21110;2;163;80.0;130;80;1;1;1;1;1;1
+30891;18952;1;173;80.0;110;70;1;1;0;0;1;0
+30892;19072;1;162;90.0;150;90;1;1;0;0;1;1
+30893;21278;1;154;81.0;100;80;1;1;0;0;1;0
+30894;19054;2;207;78.0;100;70;1;1;0;1;1;0
+30895;17952;1;154;82.0;130;80;1;1;0;0;1;1
+30897;21962;1;155;79.0;130;90;3;3;0;0;0;1
+30898;21988;2;167;69.0;120;80;1;1;0;0;1;0
+30899;19577;1;154;62.0;120;80;2;2;0;0;1;1
+30900;21029;1;166;68.0;140;90;1;1;0;0;1;1
+30901;22686;2;170;80.0;150;90;1;1;0;1;1;1
+30902;16700;2;169;76.0;120;90;1;1;1;0;1;1
+30903;23101;1;155;64.0;140;90;3;1;0;0;1;1
+30904;15844;1;160;87.0;100;70;2;2;0;0;1;0
+30905;14794;1;165;70.0;120;80;1;1;0;0;1;0
+30907;21859;1;170;68.0;120;80;1;1;0;0;1;1
+30908;18243;2;169;76.0;160;80;1;1;0;0;1;1
+30909;20430;1;162;71.0;140;90;1;1;0;0;1;1
+30910;20191;1;165;75.0;140;90;1;1;0;0;0;0
+30911;18243;2;178;95.0;130;90;1;1;0;0;1;1
+30912;16250;2;164;64.0;140;90;2;1;0;0;1;0
+30913;15130;2;173;69.0;120;70;1;1;0;0;1;1
+30914;22497;1;164;68.0;110;80;2;1;0;0;1;1
+30915;19745;1;175;90.0;120;80;1;2;0;0;0;0
+30917;18422;1;161;63.0;110;70;2;1;0;0;1;0
+30918;20937;1;171;70.0;120;80;1;1;0;0;1;1
+30920;23296;1;155;90.0;125;80;1;1;0;0;1;0
+30922;15073;1;154;58.0;140;80;3;1;0;0;1;1
+30924;18068;1;160;60.0;120;90;1;1;0;0;1;0
+30925;17311;1;160;83.0;120;80;1;2;0;0;1;1
+30926;19190;1;158;84.0;150;90;1;1;0;0;1;1
+30927;15248;1;172;75.0;120;75;1;1;0;0;1;0
+30930;23357;2;170;93.0;160;90;1;1;0;0;1;1
+30931;16867;1;160;70.0;160;1000;3;1;0;0;1;1
+30933;22593;2;171;82.0;120;80;1;1;0;0;1;0
+30934;14640;1;165;68.0;120;80;1;1;0;0;1;0
+30935;16958;1;164;56.0;120;80;1;1;0;1;1;0
+30936;17948;1;163;49.0;140;90;1;1;0;0;1;0
+30938;16759;2;172;84.0;150;110;1;1;0;0;1;1
+30939;18937;1;166;66.0;100;80;1;1;0;0;1;0
+30940;18936;1;166;64.0;150;90;1;1;0;0;1;1
+30941;18881;1;162;81.0;130;80;3;3;0;0;0;1
+30942;19051;1;168;65.0;120;80;1;1;0;0;0;0
+30943;16080;2;179;77.0;130;70;1;1;0;0;1;0
+30945;20189;1;170;66.0;120;80;1;1;0;0;1;0
+30946;16014;1;161;61.0;120;80;1;1;0;0;0;0
+30948;19670;2;167;74.0;120;80;1;1;0;0;1;0
+30949;21215;1;157;61.0;120;80;1;1;0;0;1;1
+30950;16740;2;175;81.0;120;80;1;1;0;0;0;1
+30951;20521;2;167;71.0;110;80;1;1;0;0;1;0
+30953;23308;1;153;65.0;140;90;1;1;0;0;1;1
+30954;23439;1;170;69.0;110;90;1;1;0;0;1;0
+30956;20167;1;156;83.0;160;100;1;1;0;0;1;1
+30957;19709;1;163;63.0;120;80;3;3;0;0;0;1
+30958;20379;2;173;59.0;173;59;1;1;1;0;1;0
+30960;15957;1;153;55.0;110;70;1;1;0;0;1;0
+30961;21101;1;159;73.0;120;80;1;1;0;0;1;1
+30963;18780;1;155;65.5;120;80;1;1;0;0;0;1
+30965;21310;1;161;87.0;110;70;1;1;0;0;1;0
+30966;19090;2;166;65.0;120;80;1;1;0;0;1;0
+30967;20578;2;192;75.0;140;90;1;1;0;0;1;1
+30968;19081;1;168;126.0;160;100;3;2;0;0;1;1
+30969;18807;1;160;75.0;200;120;2;2;0;0;1;1
+30970;17963;2;176;84.0;160;100;1;1;1;0;1;1
+30972;18253;2;178;88.0;120;80;1;1;1;0;1;0
+30973;20498;2;175;95.0;140;80;1;1;1;0;1;1
+30975;19632;1;170;100.0;150;90;1;1;0;0;1;1
+30977;15849;1;160;64.0;100;70;1;1;0;0;1;0
+30978;14494;2;170;73.0;110;70;1;1;0;0;1;0
+30981;18857;1;169;72.0;120;80;2;1;0;0;1;0
+30982;16085;1;163;61.0;120;80;1;1;0;0;1;0
+30984;15421;1;159;58.0;110;80;1;1;0;0;1;0
+30985;16852;2;160;64.0;120;90;1;1;1;0;1;1
+30986;17529;1;166;70.0;120;80;1;1;0;0;0;1
+30987;16119;2;176;108.0;180;90;1;1;1;0;1;1
+30988;18032;1;170;68.0;120;80;1;1;0;0;0;1
+30990;20987;2;165;71.0;150;90;1;1;0;0;1;1
+30991;19965;1;162;60.0;120;80;2;1;0;0;1;1
+30993;18250;1;156;70.0;120;80;1;1;0;0;1;1
+30994;15266;2;178;78.0;120;80;3;3;0;0;0;0
+30995;16109;1;167;62.0;115;70;1;1;0;0;1;0
+30997;22579;1;161;62.0;140;90;3;1;0;0;1;0
+30998;19688;2;174;89.0;120;90;1;1;0;0;1;0
+31000;19855;1;168;78.0;120;80;1;1;0;0;1;0
+31001;21693;2;167;61.0;130;70;1;1;0;0;1;1
+31002;17517;2;166;58.0;110;70;1;1;0;0;1;0
+31003;22838;2;165;69.0;120;80;1;1;0;0;0;0
+31004;21738;2;159;62.0;120;80;3;3;0;0;1;1
+31005;21024;2;160;65.0;120;80;1;1;0;0;1;1
+31008;19711;1;168;87.0;140;100;1;1;0;0;1;1
+31009;18835;1;164;68.0;110;70;1;3;0;0;1;1
+31010;22800;2;170;70.0;110;80;1;1;0;0;1;1
+31011;21913;1;175;69.0;120;80;2;2;0;0;1;0
+31012;23357;1;160;80.0;120;80;3;3;0;0;1;1
+31015;21919;1;159;74.0;160;101;1;1;0;1;1;0
+31017;19006;2;169;63.0;120;80;1;1;0;0;1;0
+31019;20493;1;160;60.0;120;80;1;1;0;0;1;1
+31020;21018;1;155;64.0;140;70;3;3;0;0;1;1
+31021;19871;1;148;62.0;160;90;1;2;0;0;0;1
+31022;20359;2;175;66.0;100;70;1;1;1;0;1;0
+31023;23284;1;155;85.0;130;80;3;1;0;0;1;1
+31024;17715;1;168;56.0;120;80;2;2;0;0;0;1
+31025;15123;1;158;66.0;110;70;1;1;0;0;0;0
+31026;16757;1;156;63.0;120;80;1;1;0;0;1;0
+31027;14517;2;180;85.0;130;80;1;1;0;0;1;0
+31028;19785;2;179;75.0;120;80;1;1;0;0;0;0
+31029;16646;1;165;64.0;110;70;1;1;0;0;0;0
+31030;23337;1;150;72.0;130;80;1;1;0;0;0;1
+31031;19578;1;164;84.0;120;80;1;1;0;0;1;1
+31032;18221;2;174;91.0;120;80;1;1;1;1;1;0
+31033;18187;1;165;83.0;110;70;1;1;0;0;1;0
+31037;19786;1;157;70.0;120;80;1;1;0;0;1;0
+31038;19555;1;158;94.0;120;80;1;1;0;0;1;1
+31040;15173;2;164;78.0;140;90;2;2;0;0;1;1
+31042;21971;2;160;88.0;120;70;1;1;0;0;0;0
+31043;22023;1;151;63.0;110;70;1;1;0;0;1;0
+31044;18280;2;170;70.0;120;80;1;1;0;0;0;0
+31045;21198;2;166;72.0;120;80;2;1;0;0;1;0
+31046;16970;2;170;82.0;120;80;1;1;0;0;1;0
+31047;18263;2;160;60.0;120;80;1;1;0;0;1;0
+31048;18033;2;168;70.0;140;80;1;1;0;0;1;1
+31050;22363;2;170;75.0;120;70;1;1;0;0;1;1
+31052;22461;1;158;63.0;120;80;3;1;0;0;1;1
+31053;20313;1;178;80.0;130;80;3;3;0;0;0;1
+31054;15500;2;167;75.0;120;70;1;1;1;1;1;0
+31057;21835;2;166;87.0;170;90;1;2;0;0;0;1
+31058;21197;2;160;65.0;120;80;1;1;0;0;1;0
+31059;21382;1;162;80.0;120;80;1;1;0;0;0;0
+31060;21995;1;157;82.0;150;90;3;1;0;0;1;0
+31062;21317;1;158;63.0;100;80;1;1;0;0;1;1
+31063;14619;1;159;61.0;100;70;1;1;0;0;1;0
+31064;21203;1;160;65.0;100;60;1;1;0;0;1;0
+31066;21048;1;165;89.0;120;70;3;1;0;0;1;1
+31073;15150;1;165;69.0;90;60;1;1;0;0;1;0
+31074;20387;1;164;68.0;120;80;1;1;0;0;1;1
+31075;15385;2;165;85.0;120;80;1;1;0;0;1;1
+31076;18293;1;173;73.0;150;100;2;1;0;0;1;1
+31077;19926;1;160;70.0;130;80;1;1;0;0;1;0
+31078;19778;1;160;54.0;130;80;2;2;0;0;1;0
+31080;18296;2;182;79.0;140;90;1;1;0;0;1;1
+31081;15064;2;171;93.0;130;89;1;1;0;0;1;1
+31085;17583;1;158;74.0;90;60;1;1;0;0;1;0
+31088;18864;1;158;59.0;150;90;2;1;0;0;1;1
+31089;23514;1;160;60.0;120;80;1;1;0;0;1;0
+31090;23221;1;168;70.0;140;90;3;1;0;0;1;1
+31091;18283;1;175;78.0;120;80;1;1;0;0;0;0
+31092;17363;1;165;71.0;120;80;1;1;0;0;0;1
+31094;15214;2;170;75.0;140;80;2;1;0;0;0;1
+31095;15133;1;155;74.0;160;90;1;1;0;0;1;1
+31096;16710;1;164;70.0;110;89;1;1;0;0;1;1
+31097;19528;2;172;87.0;150;90;3;3;1;0;1;1
+31098;19130;1;170;65.0;130;80;1;1;0;0;1;0
+31099;21078;2;170;54.0;120;80;1;1;0;0;0;1
+31100;22463;1;157;82.0;120;80;2;2;0;0;1;0
+31102;23461;2;165;64.0;130;90;1;3;0;1;1;0
+31103;19812;2;171;79.0;120;80;1;1;0;0;1;0
+31106;18394;2;169;61.0;120;80;1;1;0;0;1;1
+31107;20389;1;166;60.0;120;80;1;1;0;0;1;0
+31108;21791;1;167;78.0;120;70;1;1;0;0;1;0
+31109;14780;1;180;69.0;110;80;1;1;0;0;1;0
+31110;16793;1;165;68.0;120;80;1;1;0;0;1;0
+31114;14547;1;165;64.0;110;60;1;1;0;0;0;0
+31115;15442;2;171;83.0;130;80;1;1;0;0;1;0
+31117;15394;2;168;70.0;120;70;1;1;1;0;1;0
+31118;21814;2;180;72.0;120;80;2;1;0;0;0;1
+31119;21867;1;156;52.0;120;80;1;1;0;0;0;1
+31121;20578;1;168;87.0;120;80;3;3;0;0;1;0
+31122;23385;1;147;44.0;130;80;1;1;0;0;1;0
+31123;23358;1;165;68.0;130;80;3;1;0;0;1;1
+31125;16548;2;172;99.0;100;70;2;1;1;0;1;1
+31127;15254;2;175;92.0;120;80;2;2;0;1;1;1
+31128;23426;1;156;99.0;120;80;1;1;0;0;1;1
+31129;18773;1;154;64.0;116;69;1;1;0;0;0;0
+31130;21965;1;153;51.0;120;90;3;2;0;0;1;1
+31131;20556;1;158;66.0;120;80;2;1;0;0;0;1
+31132;19641;2;182;110.0;160;90;2;1;1;0;0;0
+31135;23409;2;173;80.0;120;80;1;1;0;0;1;0
+31136;23259;1;152;84.0;154;100;1;1;0;0;1;1
+31138;20630;2;169;65.0;120;80;1;1;0;0;0;1
+31139;18173;1;164;72.0;120;80;1;1;0;0;1;0
+31140;22095;1;156;56.0;120;80;1;1;0;0;1;0
+31145;14463;1;160;70.0;120;80;1;1;0;0;0;0
+31146;15262;2;170;69.0;120;70;1;1;0;0;1;0
+31148;23522;2;163;50.0;140;90;2;1;0;0;1;1
+31149;16856;2;157;58.0;150;80;1;1;0;0;0;1
+31151;18513;2;176;84.0;140;80;2;1;0;1;1;1
+31152;21889;1;150;55.0;140;90;1;1;0;0;0;1
+31154;22763;1;158;59.0;130;80;1;2;0;0;1;0
+31155;18907;1;163;84.0;100;90;3;3;0;0;1;0
+31156;22709;1;147;65.0;140;100;1;1;0;0;1;0
+31159;23537;1;175;68.0;130;70;1;1;0;0;1;1
+31163;20393;2;170;110.0;120;70;1;1;0;1;1;1
+31164;18201;1;150;50.0;160;100;1;1;0;0;1;1
+31165;22698;1;175;110.0;140;90;3;3;0;0;0;1
+31166;18455;1;162;75.0;140;100;2;1;0;0;1;1
+31167;16891;1;165;90.0;120;80;1;1;0;0;0;0
+31168;18090;1;164;85.0;110;70;2;1;0;0;1;0
+31169;19439;1;187;113.0;160;80;3;3;0;0;1;1
+31171;19031;2;175;70.0;120;80;1;1;0;0;1;0
+31172;21225;1;167;65.0;110;70;3;3;0;0;1;1
+31173;21066;1;150;54.0;130;80;1;1;0;1;1;0
+31176;14577;2;170;71.0;120;80;1;1;0;0;1;0
+31177;15218;2;170;80.0;120;80;1;1;0;0;1;0
+31178;17542;2;164;53.0;120;80;1;1;0;0;1;1
+31179;16595;1;168;101.0;170;110;2;1;0;0;1;1
+31181;15995;2;161;60.0;120;80;1;1;0;0;1;1
+31182;21771;2;165;72.0;120;80;1;1;0;0;1;1
+31183;16170;1;151;80.0;140;70;1;1;0;0;0;1
+31184;19580;1;164;73.0;120;80;3;3;0;0;1;1
+31186;21069;1;162;75.0;150;100;1;1;0;0;0;1
+31187;17288;1;162;63.0;120;70;1;1;0;0;1;0
+31188;18889;2;178;63.0;110;80;2;1;0;0;1;0
+31189;23583;1;162;82.0;140;80;1;1;0;0;1;1
+31190;19598;1;163;65.0;120;80;3;3;0;0;1;1
+31191;20988;2;167;120.0;130;90;1;1;0;0;0;1
+31193;21171;1;159;84.0;120;80;3;2;0;0;0;1
+31194;23427;1;163;66.0;150;90;1;1;0;0;1;1
+31195;21236;1;149;62.0;140;90;1;1;0;0;0;1
+31197;22420;2;170;86.0;130;80;3;3;0;0;1;1
+31198;21194;1;164;70.0;110;70;1;1;0;0;1;1
+31200;21882;1;176;74.0;120;80;1;1;0;0;1;1
+31202;18138;2;159;99.0;140;90;1;1;0;1;1;0
+31203;20440;2;168;73.0;120;80;1;1;0;0;0;1
+31206;19646;2;171;61.0;180;90;1;1;1;0;1;1
+31207;18820;1;158;58.0;150;1000;3;3;0;0;0;1
+31208;15301;2;171;53.0;110;70;1;1;1;0;1;0
+31210;20129;1;170;70.0;145;80;1;1;0;0;1;1
+31211;18254;1;152;86.0;130;90;1;1;0;0;1;1
+31212;23346;1;176;84.0;120;80;1;2;0;0;0;0
+31213;21298;2;169;69.0;120;80;1;1;0;0;0;0
+31214;21129;2;168;61.0;110;80;1;1;0;0;1;0
+31215;23411;1;153;83.0;120;80;1;1;0;0;0;0
+31216;21743;1;162;70.0;120;80;1;1;0;0;1;1
+31217;16661;2;168;71.0;120;80;1;1;0;0;1;1
+31218;19635;1;158;55.0;120;80;1;1;0;0;1;0
+31219;18849;1;159;102.0;150;90;1;1;0;0;1;1
+31221;18046;1;171;72.0;130;80;1;2;0;0;0;0
+31223;16921;1;160;80.0;120;80;1;1;0;0;1;1
+31225;15274;2;175;80.0;120;80;1;1;1;0;1;0
+31227;22851;1;151;75.0;140;90;1;1;0;0;0;0
+31228;18939;2;163;85.0;140;90;2;1;0;1;1;1
+31229;17355;1;154;72.0;100;60;1;1;0;0;1;0
+31234;18087;2;178;90.0;120;80;1;1;1;1;1;0
+31235;16116;1;168;72.0;120;80;2;1;0;0;1;0
+31236;21691;1;165;65.0;120;79;2;1;0;0;0;1
+31240;21824;1;164;74.0;120;70;1;1;0;0;0;0
+31241;15193;2;175;80.0;120;80;2;2;0;0;1;0
+31244;21280;1;165;65.0;120;80;1;1;0;0;1;0
+31246;21816;2;170;82.0;120;70;2;1;0;0;1;1
+31247;20543;1;156;88.0;120;80;2;3;0;0;1;0
+31248;19003;1;162;69.0;140;90;1;1;0;0;0;1
+31249;18302;2;174;65.0;120;80;1;1;0;0;1;1
+31250;18238;2;178;93.0;170;1000;1;1;0;0;1;1
+31251;19818;1;169;72.0;130;90;1;1;0;0;1;1
+31252;18906;1;162;62.0;110;70;2;1;0;0;1;0
+31254;20263;2;164;68.0;140;90;1;1;0;0;1;1
+31255;22612;1;158;54.0;120;80;3;1;0;0;1;1
+31258;21201;1;153;90.0;120;80;1;1;0;0;1;1
+31260;21005;1;151;61.0;180;1000;1;1;0;0;1;1
+31263;20543;1;165;87.0;160;90;1;1;0;0;1;1
+31264;20990;1;158;100.0;130;100;1;1;0;0;1;1
+31266;15853;1;164;100.0;140;80;1;1;0;0;1;1
+31267;18443;1;156;60.0;130;90;1;1;0;0;1;0
+31268;21294;1;160;56.0;120;60;1;1;1;1;1;1
+31269;21131;1;155;64.0;140;80;1;1;0;0;1;0
+31270;19974;1;160;60.0;120;80;1;1;0;0;1;1
+31274;16781;2;175;91.0;160;100;3;3;0;0;1;1
+31275;23546;1;158;60.0;120;80;1;1;0;0;1;1
+31276;19756;1;157;60.0;120;80;1;1;0;0;1;0
+31277;20452;2;178;98.0;120;80;1;1;0;0;1;0
+31279;20358;1;162;88.0;120;79;1;1;0;0;1;0
+31280;18843;1;163;83.0;110;70;1;1;0;0;1;0
+31281;20490;1;158;78.0;120;80;1;1;0;0;1;1
+31283;21951;1;156;65.0;170;100;1;1;0;0;1;1
+31284;20392;1;165;59.0;110;80;1;1;0;0;1;0
+31285;20419;2;170;70.0;120;80;1;1;0;0;1;0
+31286;18250;2;170;73.0;120;90;1;1;1;0;1;0
+31287;21102;1;165;60.0;140;80;1;1;0;0;1;1
+31288;16914;2;170;88.0;120;80;1;1;0;0;1;1
+31289;22653;1;163;73.0;150;90;1;1;0;0;1;0
+31293;20438;1;165;62.0;130;80;3;1;0;0;1;1
+31295;21856;2;171;77.0;150;90;2;1;0;0;1;1
+31296;18343;1;168;68.0;120;80;1;1;0;0;1;0
+31298;15857;1;164;92.0;140;90;1;1;0;0;1;1
+31299;21213;1;164;78.0;130;80;3;1;0;0;0;1
+31300;15178;2;170;70.0;110;70;1;1;0;0;1;0
+31301;17616;1;162;74.0;120;80;1;1;0;0;1;0
+31302;17530;1;158;57.0;120;80;1;1;0;0;1;0
+31303;19267;1;161;76.0;140;79;1;1;0;0;1;1
+31304;18981;2;158;63.0;120;80;1;1;0;0;0;0
+31305;21943;1;159;69.0;120;90;1;1;0;0;1;0
+31306;14539;2;168;69.0;130;80;1;1;1;0;1;0
+31308;15872;2;180;79.0;120;90;3;1;0;0;1;1
+31309;16295;2;176;72.0;120;80;1;1;0;0;0;0
+31310;19178;1;165;67.0;120;80;1;1;0;0;1;1
+31313;14405;1;156;58.0;90;60;2;1;0;0;0;1
+31315;21760;1;160;60.0;130;90;1;1;0;0;1;0
+31316;22745;1;170;75.0;120;80;1;1;0;0;1;1
+31317;22462;1;154;73.0;160;90;3;3;0;0;0;1
+31319;15294;2;173;85.0;150;80;1;1;0;0;0;0
+31320;20343;1;152;73.0;160;90;2;1;0;1;1;1
+31321;22535;1;148;80.0;120;80;1;1;0;0;1;1
+31322;21750;1;156;69.0;130;80;3;1;0;0;1;1
+31323;18363;1;165;97.0;110;80;1;2;0;0;0;0
+31325;18283;1;168;71.0;150;90;1;1;0;0;1;0
+31326;22613;2;180;94.0;140;80;3;3;0;1;1;0
+31327;19666;2;176;114.0;180;1000;1;1;0;0;1;1
+31328;19023;1;175;68.0;120;80;3;3;0;0;1;0
+31330;19425;1;169;66.0;120;80;2;1;0;0;0;0
+31331;15961;2;166;68.0;100;80;1;1;0;0;1;0
+31332;23313;1;174;69.0;140;80;1;3;0;0;1;1
+31335;21174;2;166;64.0;200;1000;3;3;0;0;1;1
+31336;22698;2;170;75.0;130;80;1;1;0;0;1;1
+31339;21132;2;170;65.0;130;80;1;1;0;0;1;0
+31340;14597;1;163;65.0;100;70;1;1;0;0;1;0
+31341;18287;1;165;88.0;130;80;1;1;0;0;1;0
+31342;20483;1;170;70.0;110;70;1;1;0;0;1;0
+31343;21054;2;170;69.0;110;70;3;1;0;0;1;1
+31344;17669;1;162;62.0;150;89;1;1;0;0;1;1
+31345;18367;1;164;70.0;110;80;1;1;0;0;1;0
+31346;20469;2;172;92.0;140;100;1;1;0;0;1;1
+31347;18886;1;162;73.0;140;110;1;1;0;0;1;1
+31348;20206;1;159;65.0;110;80;1;1;0;0;1;0
+31350;23544;2;167;74.0;140;90;1;1;0;0;1;1
+31351;21704;1;155;95.0;160;100;3;3;0;0;1;1
+31352;16123;2;171;70.0;120;80;1;1;0;0;1;0
+31353;16830;2;174;85.0;140;80;2;1;0;0;1;0
+31354;20429;1;152;66.0;120;80;1;1;0;0;1;0
+31355;16875;2;179;78.0;130;80;1;1;0;0;1;0
+31356;22686;2;166;72.0;100;60;1;1;0;0;0;0
+31357;22362;1;156;70.0;110;70;1;2;0;0;1;0
+31360;14492;2;170;85.0;120;80;1;1;0;0;0;0
+31361;19080;1;163;72.0;140;90;3;3;0;0;1;1
+31362;22561;1;158;54.0;140;80;1;1;0;0;1;1
+31364;14714;2;170;60.0;120;80;1;1;0;0;1;0
+31366;18225;1;157;71.0;110;60;1;1;0;0;1;0
+31367;21055;1;160;57.0;110;70;3;3;0;0;1;1
+31369;15523;2;167;75.0;150;100;1;1;1;0;0;0
+31370;20199;1;163;73.0;110;70;3;3;0;0;1;0
+31371;20309;1;164;87.0;140;90;1;1;0;0;0;0
+31372;14407;1;156;87.0;120;80;1;1;0;0;0;1
+31373;14453;1;170;65.0;120;70;1;1;0;0;0;1
+31375;22534;1;156;106.0;160;100;1;2;0;0;1;1
+31376;18145;1;163;111.0;110;70;2;2;0;0;0;0
+31377;18393;1;165;75.0;120;80;1;1;0;0;1;1
+31379;19743;2;182;82.0;110;80;1;1;0;0;1;0
+31380;18292;2;170;74.0;140;90;1;1;1;0;1;1
+31382;15839;1;163;69.0;110;70;1;3;0;0;1;1
+31383;16162;2;176;75.0;130;90;1;1;1;1;1;1
+31384;17020;2;168;75.0;130;90;1;1;0;0;1;1
+31385;18032;1;163;106.0;150;90;2;1;0;0;1;1
+31387;19942;1;161;75.0;160;100;1;1;0;1;1;0
+31388;15894;1;161;79.0;130;90;1;1;0;0;1;1
+31389;19130;1;158;57.0;120;80;1;1;0;0;0;1
+31390;23136;1;164;96.0;150;90;1;1;0;0;1;1
+31391;15886;2;175;130.0;120;80;1;1;1;0;1;1
+31392;22509;2;175;62.0;130;90;1;1;0;0;1;0
+31393;18122;1;152;64.0;130;80;1;1;0;0;0;0
+31397;16118;1;162;98.0;150;90;2;1;0;0;1;1
+31398;19737;1;153;90.0;120;80;2;2;0;0;1;0
+31399;20240;2;169;76.0;120;80;1;1;1;1;1;0
+31400;17522;2;167;87.0;120;80;1;1;0;0;1;1
+31401;23560;1;177;98.0;168;100;1;1;0;0;1;1
+31402;16171;2;165;86.0;120;60;1;1;0;0;1;0
+31403;18277;2;164;78.0;130;80;3;1;0;0;1;1
+31404;18692;2;162;76.0;150;100;1;2;0;0;0;1
+31405;18436;1;170;70.0;110;70;1;1;0;0;1;1
+31406;20445;1;161;88.0;179;102;1;2;0;0;1;1
+31407;19795;1;175;70.0;110;70;1;1;0;0;1;1
+31410;18884;1;161;92.0;120;80;2;1;0;0;1;1
+31411;21940;2;168;73.0;120;80;1;1;0;0;1;0
+31412;21332;1;153;51.0;130;80;2;2;0;0;1;1
+31413;21654;1;152;61.0;120;80;1;1;0;0;0;1
+31414;22773;2;160;58.0;110;70;1;1;0;0;1;0
+31415;20290;1;154;62.0;120;80;1;1;0;0;0;0
+31417;14726;2;180;75.0;110;90;1;1;0;0;0;0
+31418;14455;2;156;51.0;100;75;1;1;0;0;1;0
+31420;18039;2;161;59.0;140;90;3;3;0;0;1;1
+31421;18394;2;175;62.0;150;90;2;1;0;0;1;1
+31422;15351;2;172;87.0;160;100;1;1;0;0;1;1
+31423;23291;1;170;93.0;130;80;1;2;0;0;1;1
+31424;15335;1;169;77.0;180;100;1;1;0;0;1;1
+31425;20938;1;162;105.0;120;80;1;1;0;0;0;1
+31427;15253;1;160;89.0;90;60;1;1;1;0;1;0
+31428;21930;1;156;58.0;120;80;1;1;0;0;1;0
+31430;21943;1;155;72.0;140;90;1;1;0;0;1;0
+31431;20317;2;165;65.0;160;100;1;1;0;0;1;0
+31432;21800;1;156;79.0;120;80;1;1;0;0;1;1
+31433;20465;2;160;60.0;120;80;1;1;0;1;1;1
+31434;23589;1;158;98.0;140;90;2;1;0;0;1;1
+31435;23302;2;165;60.0;130;80;1;1;0;0;1;0
+31436;15475;1;161;68.0;110;70;1;1;0;0;1;0
+31439;15359;1;146;32.0;100;70;1;1;0;0;0;0
+31442;18937;1;156;58.0;140;90;1;2;0;0;1;1
+31446;21275;1;168;74.0;120;80;1;1;0;0;1;1
+31447;21721;2;173;116.0;190;80;1;3;1;1;0;1
+31451;22681;2;175;80.0;140;90;1;1;1;1;1;1
+31453;17420;1;156;70.0;110;70;2;1;0;0;1;0
+31455;19867;1;150;64.0;120;80;1;1;0;0;1;0
+31457;21797;1;165;62.0;120;80;1;1;0;0;1;1
+31458;15531;1;168;67.0;90;60;2;2;0;0;1;0
+31459;20986;1;150;62.0;140;90;2;1;0;0;0;1
+31460;19048;1;159;60.0;140;90;1;3;0;0;1;1
+31461;18240;1;155;64.0;120;80;1;1;0;0;1;0
+31462;20383;2;170;72.0;120;80;1;1;1;0;1;0
+31463;14291;2;170;67.0;120;80;1;1;0;0;1;0
+31464;23507;1;157;82.0;140;90;3;1;0;0;1;1
+31465;18314;1;165;80.0;130;90;1;1;0;0;1;0
+31466;16046;1;160;56.0;100;70;2;1;0;0;1;1
+31467;21886;1;155;70.0;160;100;2;1;0;0;1;1
+31468;21964;1;175;83.0;110;70;2;1;0;0;1;0
+31469;17649;1;157;85.0;140;90;1;1;0;0;1;1
+31470;16582;1;162;76.0;110;70;2;2;0;0;1;1
+31471;20361;1;169;69.0;120;80;1;1;0;0;1;0
+31472;18388;1;161;74.0;160;100;1;1;0;0;1;1
+31473;23461;1;160;110.0;140;80;1;1;0;0;0;1
+31474;16047;1;161;62.0;120;80;2;1;0;0;1;0
+31477;17392;1;167;57.0;120;80;1;1;0;0;1;0
+31478;15409;1;158;58.0;95;60;1;1;0;0;1;0
+31479;20461;2;163;58.0;110;70;1;3;1;0;1;0
+31480;23602;2;180;95.0;120;80;1;2;0;0;0;1
+31483;21889;2;168;66.0;150;90;1;1;0;0;1;0
+31485;17364;1;175;69.0;130;90;3;2;0;0;0;1
+31486;22498;1;156;71.0;120;80;1;1;0;0;1;1
+31488;19765;2;167;92.0;160;120;2;1;0;0;0;1
+31489;16862;1;166;59.0;120;80;1;1;0;0;1;0
+31490;17515;2;172;83.0;120;80;1;1;1;0;1;1
+31491;18226;2;174;74.0;120;80;1;1;0;0;1;0
+31493;21225;1;162;63.0;110;70;1;2;0;0;1;0
+31494;18715;2;160;70.0;120;80;1;1;0;0;0;1
+31497;19797;1;162;85.0;140;80;3;1;0;0;1;1
+31498;19005;1;164;58.0;110;70;1;1;0;0;1;0
+31499;18310;2;162;64.0;120;80;3;3;0;0;1;0
+31501;17647;1;156;70.0;110;69;1;1;0;0;0;0
+31503;21674;1;165;65.0;120;80;2;1;0;0;1;1
+31506;22490;2;162;90.0;140;100;1;1;0;0;1;0
+31507;21820;2;166;74.0;120;80;1;1;0;0;1;0
+31508;20573;1;165;79.0;120;80;1;1;0;0;1;0
+31512;22479;1;164;90.0;150;90;3;3;0;0;1;1
+31513;21871;2;171;110.0;110;70;3;1;0;0;1;1
+31514;22379;1;148;54.0;110;80;1;1;0;0;1;1
+31517;14726;1;163;79.0;110;70;1;1;0;0;1;0
+31519;18244;2;168;70.0;120;80;1;1;0;0;1;0
+31521;19774;1;161;65.0;120;80;1;1;0;0;1;0
+31522;20978;1;156;96.0;150;90;1;1;0;0;1;1
+31523;19022;1;164;73.0;110;80;1;1;0;0;0;1
+31524;16726;2;161;53.0;120;70;1;1;0;0;1;1
+31526;20223;1;163;92.0;140;90;2;1;0;0;1;1
+31528;17592;1;162;81.0;150;100;1;1;0;0;1;1
+31529;20403;1;162;81.0;120;80;1;1;0;0;1;1
+31530;20946;1;162;70.0;130;80;1;1;0;0;1;0
+31532;19055;1;167;63.0;14;90;2;1;0;0;1;0
+31533;23185;2;178;113.0;140;90;1;1;0;0;1;1
+31534;18144;2;170;87.0;130;90;1;1;0;0;1;0
+31535;18990;1;165;62.0;110;80;1;1;0;0;0;1
+31537;15261;2;176;72.0;120;80;1;1;0;0;1;0
+31538;21976;2;180;90.0;140;80;3;1;0;0;1;1
+31540;14481;1;153;90.0;110;90;1;1;0;0;1;0
+31541;19040;2;165;67.0;130;70;1;1;0;0;1;1
+31542;19636;2;174;98.0;120;90;1;1;0;0;1;0
+31543;18157;1;158;69.0;120;80;1;1;0;0;1;0
+31546;17708;1;167;65.0;110;70;1;1;0;0;1;0
+31547;17557;1;162;63.0;165;100;1;1;0;0;0;0
+31548;16101;1;171;69.8;120;80;1;1;0;0;1;1
+31551;21970;2;179;80.0;150;90;2;1;0;0;1;1
+31553;19686;2;170;75.0;120;80;1;1;0;0;0;1
+31555;19147;1;165;68.0;120;80;1;1;0;0;1;0
+31556;22595;1;168;87.0;140;90;1;1;0;0;1;0
+31557;18552;1;161;58.0;110;70;1;1;0;0;0;1
+31559;20492;1;157;86.0;130;100;3;1;0;0;1;1
+31562;19588;2;162;71.0;150;90;1;1;0;0;1;1
+31563;16012;1;168;121.0;140;1000;1;1;0;0;1;1
+31564;21131;1;162;69.0;120;80;1;2;0;0;0;0
+31566;20662;2;158;69.0;120;75;1;1;0;0;1;1
+31567;23140;2;167;75.0;130;90;1;1;0;0;0;0
+31569;20437;1;167;70.0;140;90;1;1;0;0;1;0
+31570;23430;1;154;82.0;140;90;1;1;0;0;1;1
+31571;21415;1;162;91.0;120;70;1;1;0;0;1;0
+31572;21747;2;165;82.0;120;80;1;1;0;0;0;1
+31573;17291;1;164;68.0;130;90;1;1;0;0;1;1
+31574;19210;1;160;80.0;120;80;3;1;0;0;1;1
+31576;16712;2;163;67.0;110;80;1;1;0;0;0;1
+31578;16258;2;161;57.0;100;70;2;1;0;0;1;0
+31579;18391;1;158;76.0;110;70;1;1;0;0;1;0
+31582;20164;1;165;68.0;120;80;1;1;0;0;1;1
+31583;22059;1;172;87.0;120;80;1;1;0;0;1;1
+31584;20347;1;167;62.0;130;80;1;1;0;0;1;0
+31586;18319;1;165;79.0;150;90;1;1;0;0;1;1
+31587;20557;2;170;72.0;120;90;1;1;0;0;1;0
+31588;23166;1;154;63.0;110;80;1;1;0;0;1;0
+31589;21942;2;174;78.0;120;80;1;1;0;0;1;0
+31591;18418;1;145;54.0;130;80;1;1;0;0;1;0
+31592;19041;2;179;86.0;130;80;3;3;0;0;0;1
+31593;19946;1;163;90.0;140;90;1;1;0;0;0;1
+31597;18990;1;170;67.0;120;70;1;1;0;0;1;0
+31600;16677;2;160;58.0;120;80;1;1;0;0;1;0
+31601;16146;1;161;59.0;140;90;1;1;0;0;1;0
+31602;17656;1;162;76.0;120;80;1;1;0;0;1;0
+31603;21699;1;170;70.0;100;70;1;1;0;0;0;0
+31604;19751;1;159;85.0;130;90;1;1;0;0;1;0
+31606;18037;1;165;65.0;140;80;2;2;0;0;1;0
+31607;21201;1;159;90.0;140;90;1;3;0;0;0;1
+31608;19136;1;161;57.0;120;80;1;1;0;0;1;0
+31609;18082;1;165;73.0;120;80;1;1;0;0;0;1
+31610;19887;1;170;98.0;150;90;2;1;0;0;1;1
+31611;18504;2;169;80.0;120;80;1;1;0;0;1;1
+31612;18438;1;169;69.0;130;80;2;1;0;0;1;0
+31613;17531;1;167;80.0;130;80;1;1;0;0;0;0
+31614;18939;1;162;64.0;130;70;1;1;0;0;1;0
+31615;16607;1;156;86.0;160;80;1;1;0;0;1;1
+31616;18779;2;172;84.0;120;80;2;1;1;0;0;1
+31617;20200;1;166;56.0;110;60;1;1;0;0;0;0
+31618;18740;1;176;72.0;115;74;2;1;0;0;0;0
+31623;14490;1;162;59.0;110;70;1;1;0;0;1;0
+31624;17502;1;178;68.0;110;80;1;1;0;0;0;0
+31625;18237;1;154;59.0;130;80;1;2;0;0;1;0
+31628;21665;1;152;45.0;110;80;1;3;0;0;1;0
+31629;19769;1;158;95.0;140;80;3;1;0;0;1;1
+31630;20288;1;164;84.0;130;80;3;3;0;0;1;0
+31631;17565;1;164;63.0;140;90;3;1;0;0;1;1
+31633;18920;2;160;98.0;120;80;1;1;0;0;1;0
+31634;21237;1;159;65.0;170;120;1;1;0;0;1;1
+31635;21143;1;157;72.0;130;80;3;1;0;0;1;1
+31636;14821;1;162;66.0;120;80;3;3;0;0;1;0
+31638;15445;1;168;65.0;120;80;1;1;0;0;1;0
+31639;20413;1;152;80.0;140;80;3;3;0;0;1;1
+31641;21161;2;170;83.0;145;90;1;3;0;0;1;1
+31643;23356;1;151;80.0;120;80;1;1;0;0;0;1
+31644;16802;1;155;62.0;150;90;1;1;0;0;1;0
+31645;20250;1;159;60.0;160;1100;2;1;0;0;1;1
+31647;15523;1;168;88.0;140;90;1;1;0;0;1;0
+31650;18067;1;165;60.0;120;80;1;1;0;0;1;0
+31651;14393;1;164;78.0;150;90;1;1;0;0;1;1
+31652;15228;2;169;78.0;120;79;1;1;0;0;0;0
+31653;21222;1;159;52.0;145;90;1;1;0;0;1;0
+31654;20428;2;173;106.0;160;80;3;1;1;0;0;1
+31657;22801;1;157;79.0;150;90;1;1;0;0;1;1
+31658;18193;1;170;85.0;120;80;1;1;0;0;1;0
+31659;18318;1;158;61.0;110;70;1;1;0;0;1;0
+31660;17479;2;172;78.0;140;90;2;2;1;0;1;1
+31662;21147;1;166;73.0;110;80;3;3;0;0;1;1
+31663;18795;1;165;64.0;120;80;1;1;0;0;0;1
+31664;21951;1;156;56.0;120;80;1;1;0;0;1;1
+31665;15986;1;168;61.0;130;80;1;1;0;0;1;0
+31666;18795;1;157;70.0;170;100;3;3;0;0;1;1
+31669;22113;1;158;63.0;120;80;2;2;0;0;1;1
+31673;14680;2;176;72.0;120;80;1;1;1;1;1;0
+31674;22464;1;169;65.0;120;80;1;1;0;0;1;1
+31677;21026;1;172;100.0;150;90;3;1;0;0;1;1
+31678;19527;1;156;85.0;110;80;1;1;0;0;1;1
+31680;18402;1;174;65.0;180;90;2;2;0;0;1;1
+31681;18085;1;173;82.0;140;80;1;1;0;0;0;1
+31684;17445;2;165;70.0;120;90;1;1;0;0;1;0
+31685;19837;1;170;70.0;120;80;1;1;0;0;1;0
+31686;22348;1;151;61.0;180;90;2;1;0;0;1;1
+31688;19192;1;169;73.0;110;70;1;1;0;0;1;0
+31690;19002;2;172;80.0;150;90;3;2;0;0;1;1
+31691;16605;1;164;66.0;130;90;1;2;0;0;1;1
+31693;19249;2;173;70.0;110;80;1;1;0;0;1;0
+31696;22539;2;169;65.0;100;60;1;1;0;0;1;0
+31698;15888;2;166;79.0;120;80;1;1;0;0;1;0
+31699;20958;1;164;80.0;140;80;3;1;0;0;1;1
+31700;16872;1;158;85.0;130;80;1;1;0;0;1;1
+31702;17008;1;161;72.0;130;80;1;1;0;0;1;0
+31704;22391;2;179;110.0;120;70;1;3;0;0;1;0
+31705;23550;1;158;68.0;140;90;1;1;0;0;1;1
+31706;22039;1;165;74.0;120;80;1;1;0;0;1;0
+31707;16963;2;173;87.0;100;80;2;1;0;0;1;1
+31708;18982;1;160;81.0;130;80;1;1;0;0;0;1
+31709;15063;1;156;78.0;120;80;1;1;0;0;1;0
+31710;19137;1;160;60.0;120;80;1;1;0;0;1;1
+31711;18142;1;156;60.0;110;70;1;1;0;0;1;1
+31712;22462;1;150;45.0;90;60;2;1;0;0;1;1
+31713;14546;1;158;59.0;100;70;1;1;1;1;1;0
+31715;15397;2;160;60.0;120;80;1;1;0;0;0;0
+31717;21905;2;170;86.0;140;90;1;3;0;0;1;1
+31718;19008;1;160;70.0;120;90;1;1;1;1;0;1
+31720;21281;1;154;79.0;120;80;2;1;0;0;1;0
+31721;14592;2;183;76.0;120;80;1;1;0;0;0;0
+31723;19718;1;164;68.0;120;80;1;1;0;0;1;0
+31724;19164;1;163;71.0;150;100;1;1;0;0;1;1
+31726;18880;2;180;92.0;190;110;1;1;0;0;1;1
+31727;16933;2;175;79.0;120;80;1;3;0;0;1;1
+31729;16870;2;171;79.0;140;80;1;1;0;0;1;1
+31730;19619;1;157;58.0;140;90;1;1;0;0;1;0
+31731;20516;2;170;85.0;120;80;1;1;0;0;0;1
+31732;16846;1;165;60.0;110;70;1;1;0;0;1;0
+31733;21686;2;170;92.0;130;90;1;1;1;0;1;1
+31734;20246;1;159;81.0;170;100;1;1;0;0;1;0
+31736;19217;1;163;77.0;120;80;2;2;0;0;0;0
+31737;19624;2;167;63.0;120;80;3;3;0;0;1;1
+31738;18932;2;175;83.0;120;80;1;1;0;0;1;0
+31739;20686;1;162;86.0;125;85;1;1;0;1;0;0
+31740;21011;1;151;66.0;140;80;1;1;0;0;1;1
+31741;19587;1;160;68.0;120;80;1;1;0;0;0;0
+31742;21630;1;170;85.0;150;100;1;1;0;0;1;0
+31743;20311;2;166;64.0;120;80;1;1;0;0;1;0
+31744;18867;2;157;80.0;140;90;2;1;0;0;0;1
+31747;21991;1;160;67.0;120;80;1;1;0;0;1;0
+31748;21225;1;162;70.0;120;80;1;1;0;0;1;1
+31749;18047;1;159;83.0;130;80;2;1;0;0;1;1
+31750;21993;1;160;65.0;130;80;1;1;0;0;0;1
+31751;22847;2;171;65.0;120;80;1;1;0;0;1;0
+31753;21041;1;156;85.0;110;80;1;1;0;0;1;0
+31754;18693;1;170;65.0;120;80;1;1;0;0;0;0
+31758;23666;2;170;91.0;130;90;1;1;0;0;1;0
+31760;20431;1;154;70.0;130;90;1;1;0;0;0;1
+31762;22353;1;158;69.0;136;74;1;1;0;0;1;1
+31764;22739;2;184;89.0;140;90;1;1;0;0;1;1
+31765;16145;1;155;86.0;130;80;2;1;0;0;0;0
+31766;23347;1;169;60.0;120;80;1;1;0;0;1;1
+31767;23389;1;154;74.0;110;80;2;1;0;0;1;1
+31769;21712;1;160;60.0;120;80;1;1;0;0;1;1
+31771;16250;2;169;85.0;150;80;2;2;1;0;1;1
+31773;17486;1;165;72.0;120;80;1;1;0;0;1;1
+31774;19491;1;140;68.0;140;70;1;1;0;0;1;1
+31778;17478;1;174;81.0;120;80;1;1;0;0;1;0
+31779;21179;2;169;79.0;110;70;1;1;0;0;1;0
+31780;21133;1;158;76.0;120;80;1;2;0;0;1;0
+31784;19834;1;159;63.0;120;80;1;1;0;0;0;0
+31785;23219;2;168;60.0;140;85;1;1;0;0;1;1
+31786;16794;2;174;80.0;120;80;1;1;1;0;1;1
+31787;19646;1;165;68.0;120;80;1;1;0;0;0;0
+31789;22494;1;150;68.5;150;90;2;1;0;0;1;1
+31790;18027;1;156;55.0;120;800;1;1;0;0;1;0
+31791;19606;1;163;75.0;130;80;1;1;0;0;1;1
+31792;21988;2;175;97.0;120;80;1;1;1;0;1;0
+31794;19600;2;174;76.0;120;80;1;1;1;1;1;0
+31795;18252;2;172;70.0;120;80;1;1;0;0;0;0
+31796;22673;1;141;70.0;140;80;1;1;0;0;1;0
+31797;21232;2;189;79.0;120;70;1;1;0;0;1;0
+31798;21848;2;174;80.0;110;70;1;1;0;0;1;0
+31799;16611;2;178;64.0;120;80;1;1;0;0;1;0
+31800;16771;2;183;115.0;150;100;1;1;0;0;1;1
+31802;17414;1;169;69.0;140;80;1;1;0;0;1;1
+31803;20639;1;168;60.0;150;90;1;1;0;0;1;1
+31804;20454;1;158;45.0;120;80;1;1;0;0;1;1
+31805;19059;1;165;78.0;120;80;1;1;0;0;1;0
+31806;21174;1;165;74.0;120;80;1;1;0;0;1;0
+31807;22128;1;168;66.0;120;80;1;1;0;0;1;1
+31808;19514;1;160;89.0;150;90;1;1;0;0;0;1
+31809;20587;1;170;68.0;150;90;1;1;0;0;1;1
+31811;23102;1;164;79.0;120;80;1;2;0;0;1;1
+31812;19724;1;154;105.0;140;89;3;3;0;0;1;1
+31813;19485;1;164;90.0;90;60;1;1;0;0;1;0
+31814;19487;1;165;91.0;150;100;3;1;0;0;1;1
+31817;19153;1;163;62.0;110;70;1;1;0;0;1;0
+31818;23354;1;158;76.0;100;60;1;1;0;0;1;1
+31819;20535;1;160;120.0;140;110;1;1;0;0;1;1
+31820;16802;2;186;82.0;120;80;1;1;0;0;1;1
+31821;23158;1;147;70.0;150;90;2;1;0;1;1;1
+31822;21686;1;170;70.0;140;90;1;1;0;0;1;1
+31823;19611;2;179;80.0;110;70;1;1;0;0;1;1
+31825;22060;1;164;89.0;120;80;2;1;0;0;1;1
+31826;23153;2;173;95.0;150;90;1;1;0;1;1;1
+31828;23420;1;165;90.0;130;90;1;1;0;0;1;0
+31831;18238;1;161;72.0;120;80;1;1;0;0;1;0
+31832;20971;1;162;75.0;120;80;1;1;0;0;1;0
+31834;18832;1;158;70.0;120;60;1;1;0;0;1;0
+31835;17533;1;160;65.0;120;80;2;2;0;0;0;0
+31836;19000;2;165;93.0;140;80;1;1;1;0;1;1
+31837;18972;1;149;67.0;140;90;1;1;0;0;1;1
+31839;15613;2;178;78.0;150;100;1;1;0;0;0;1
+31840;21819;1;172;76.0;160;90;3;3;0;0;1;1
+31841;20471;1;158;124.0;120;80;1;1;0;0;1;1
+31842;19627;1;164;79.0;140;80;1;1;0;0;1;0
+31843;21168;1;165;70.0;120;80;1;1;0;0;1;0
+31844;22175;1;151;85.0;170;100;1;2;0;0;0;1
+31846;14501;1;165;70.0;120;80;1;1;0;0;1;1
+31848;16665;2;168;80.0;120;80;1;1;0;0;1;0
+31849;20542;2;182;100.0;130;90;1;1;0;0;1;1
+31852;22432;1;153;84.0;120;90;2;1;0;0;1;1
+31853;20710;1;169;76.0;130;90;3;1;0;0;1;1
+31855;15837;2;168;65.0;120;60;1;1;0;0;1;0
+31857;18296;2;170;75.0;140;90;1;1;1;1;1;1
+31858;21276;1;152;61.0;160;100;1;1;0;0;1;0
+31859;17532;2;167;65.0;150;90;1;1;0;0;1;1
+31860;20955;1;160;60.0;120;80;2;1;0;0;0;0
+31861;21305;2;157;69.0;110;70;1;1;0;0;1;0
+31863;20531;1;155;67.0;120;80;1;1;0;0;1;0
+31865;19640;1;153;62.0;110;70;1;1;0;0;0;0
+31866;19516;1;162;87.0;150;80;1;1;0;0;1;1
+31867;18418;1;169;56.0;120;80;1;1;0;0;0;1
+31869;21228;1;169;42.0;150;90;2;2;0;0;0;0
+31870;20882;1;149;52.0;125;80;2;1;0;0;1;1
+31875;22622;1;162;79.0;160;100;3;2;0;0;1;0
+31877;18050;2;176;88.0;160;100;2;2;1;1;1;1
+31878;18330;1;166;69.0;120;80;1;1;0;0;1;0
+31879;17586;2;179;135.0;140;80;1;1;1;1;1;1
+31880;21775;1;168;54.0;120;80;1;1;0;0;1;0
+31881;20499;1;171;65.0;120;80;1;1;1;1;1;0
+31882;23193;1;159;93.0;120;80;1;1;0;0;1;1
+31883;19796;2;163;65.0;120;80;2;1;1;0;1;0
+31884;17556;1;162;86.0;140;90;2;1;0;0;1;1
+31885;18362;1;166;103.0;160;100;3;1;0;0;1;1
+31886;16528;1;171;69.0;120;80;3;3;0;0;1;1
+31887;16023;1;165;87.0;160;110;3;1;0;0;1;1
+31888;17371;1;166;65.0;110;70;2;2;0;0;1;1
+31889;19072;1;158;61.0;120;80;1;2;0;0;1;0
+31891;21040;1;158;74.0;140;90;3;3;0;0;1;1
+31894;16960;2;169;68.0;110;80;1;1;0;0;1;0
+31897;23190;2;165;65.0;120;80;1;1;0;0;1;0
+31898;19136;1;162;80.0;110;70;1;1;0;0;1;0
+31900;16844;1;170;100.0;120;80;1;1;0;0;1;1
+31902;16807;1;170;80.0;120;80;2;2;0;0;1;0
+31905;23465;1;180;82.0;130;80;1;1;0;0;1;1
+31906;18871;1;164;80.0;110;70;2;1;0;0;1;0
+31907;22114;2;172;68.0;100;60;1;1;1;0;1;0
+31908;16034;2;178;71.0;120;80;1;1;0;0;1;0
+31909;20483;2;182;78.0;140;90;2;1;0;0;1;1
+31910;21459;1;154;65.0;110;80;3;2;0;0;0;0
+31911;15994;1;157;89.0;130;90;1;1;1;1;1;0
+31912;17264;1;159;60.0;100;60;1;1;0;0;1;1
+31913;18371;1;169;79.0;130;80;1;1;0;0;1;1
+31915;23092;1;155;92.0;150;90;1;1;0;0;1;1
+31916;21895;1;161;67.0;120;90;1;1;0;0;1;0
+31918;16758;2;169;79.0;120;80;1;1;0;0;0;0
+31919;21150;1;158;58.0;100;70;2;1;0;0;1;0
+31921;19454;2;183;69.0;110;70;1;1;1;1;0;0
+31922;10798;2;175;92.0;100;60;1;1;0;0;1;0
+31923;18307;1;152;56.0;120;70;3;1;0;0;1;0
+31924;18855;1;156;55.0;110;70;1;1;0;0;0;0
+31926;19174;1;149;88.0;120;80;1;1;1;0;1;0
+31927;18230;2;175;80.0;120;80;1;1;0;0;1;0
+31928;22014;2;170;100.0;120;80;1;1;0;0;1;1
+31929;19622;1;165;69.0;120;80;1;1;0;0;1;1
+31930;17433;1;154;64.0;110;80;2;2;0;0;1;1
+31931;21260;2;165;70.0;150;90;1;1;0;0;0;1
+31932;20564;1;160;138.0;170;100;1;1;0;0;1;1
+31933;15930;1;155;57.0;100;70;1;1;0;0;1;0
+31934;16723;1;158;61.0;110;60;1;1;0;0;1;0
+31935;20784;1;164;65.0;120;80;3;3;0;0;1;0
+31936;17340;1;160;95.0;135;90;3;3;0;0;1;1
+31937;23310;1;165;72.0;120;80;1;1;0;0;0;1
+31938;20497;2;170;74.0;120;80;1;2;0;0;1;1
+31939;20547;2;170;86.0;120;80;1;1;0;1;1;0
+31941;17578;2;169;68.0;120;80;1;1;0;0;1;1
+31942;15097;1;160;67.0;100;70;1;1;0;0;0;0
+31943;20305;1;160;83.0;120;80;1;1;0;0;1;0
+31944;20276;1;164;84.0;130;80;2;1;0;0;0;1
+31945;20523;2;170;65.0;120;80;1;1;0;0;0;0
+31947;14480;2;169;68.0;170;80;1;1;1;1;1;0
+31948;19082;1;162;65.0;120;80;1;1;0;0;0;0
+31949;19753;1;172;79.0;120;80;1;1;0;0;1;0
+31950;21194;1;158;69.0;120;80;1;1;0;0;1;0
+31951;21937;1;150;77.0;140;90;1;1;0;0;0;0
+31953;14562;2;175;65.0;110;70;1;1;1;0;1;0
+31954;22583;2;175;68.0;120;80;1;1;0;0;1;1
+31955;21962;1;162;48.0;120;60;1;1;0;0;1;0
+31957;22724;1;170;84.0;140;90;1;1;0;0;1;1
+31959;21955;2;175;113.0;150;90;2;2;0;0;1;1
+31960;22030;1;162;68.0;130;80;1;3;0;0;1;1
+31961;18880;1;170;95.0;120;80;1;1;0;0;1;0
+31962;20583;1;165;65.0;160;100;1;1;0;0;1;1
+31963;19078;1;166;62.0;120;80;1;1;0;0;1;0
+31964;18952;1;159;77.0;110;80;1;2;0;0;1;0
+31965;16120;2;170;66.0;120;20;1;1;0;0;1;1
+31966;22748;1;158;107.0;170;100;3;1;0;0;1;1
+31968;19087;2;168;70.0;150;100;1;1;0;0;1;1
+31969;19757;2;170;79.0;120;80;1;1;0;0;0;1
+31970;22483;1;155;102.0;140;90;1;1;0;0;0;0
+31972;21025;2;166;72.0;130;80;1;2;0;1;0;0
+31973;18025;2;160;60.0;120;60;1;1;0;0;1;1
+31975;21939;1;162;75.0;140;85;3;2;0;0;0;1
+31976;18996;1;162;70.0;140;90;1;1;0;0;1;0
+31977;22714;1;154;75.0;150;90;1;1;0;0;1;1
+31979;19800;1;152;68.0;120;80;1;1;0;0;1;0
+31982;17504;2;175;70.8;120;80;2;1;1;1;0;0
+31983;21674;1;153;58.0;120;80;1;1;0;0;1;1
+31988;14540;1;160;58.0;120;80;1;1;0;0;1;0
+31989;20146;1;156;78.0;130;80;1;1;0;0;1;0
+31990;14671;1;165;61.0;120;80;1;1;0;0;1;0
+31991;18962;2;162;73.0;130;80;1;1;0;0;1;1
+31992;20451;1;164;73.0;100;70;1;1;0;0;1;0
+31993;21927;1;166;80.0;120;80;1;1;0;0;1;1
+31995;15439;1;160;80.0;160;80;1;1;0;0;1;1
+31996;16682;1;160;60.0;130;100;1;1;0;0;1;1
+31999;22549;1;163;62.0;120;80;1;1;0;0;1;0
+32001;22665;2;174;95.0;130;79;3;1;0;0;1;1
+32002;21094;2;176;86.0;120;80;1;1;0;0;1;0
+32003;23265;1;156;75.0;140;90;2;1;0;0;1;1
+32005;18964;1;156;90.0;120;80;1;1;0;0;1;0
+32006;23436;1;163;72.0;160;80;3;3;0;0;1;1
+32008;16793;1;168;71.0;120;80;1;1;0;0;1;1
+32012;17440;2;166;75.0;160;110;1;2;0;0;1;1
+32013;14477;2;167;69.0;120;80;1;1;1;1;1;0
+32014;22524;1;161;104.0;120;80;3;1;0;0;1;1
+32015;18255;2;176;75.0;130;90;1;1;0;0;0;1
+32018;22643;2;159;58.0;120;80;2;1;0;0;0;1
+32019;18056;1;165;65.0;110;80;1;1;0;0;0;0
+32023;21708;1;158;93.0;160;100;1;1;0;0;0;1
+32024;16909;1;158;65.0;160;110;1;2;0;0;1;1
+32026;20211;1;159;62.0;130;80;1;1;0;0;1;0
+32027;21936;2;165;72.0;140;100;1;1;0;0;1;1
+32028;20412;2;178;81.0;110;70;1;1;0;0;0;1
+32029;16791;2;180;78.0;110;74;1;2;1;0;1;0
+32031;19116;1;153;51.0;130;80;1;1;0;0;1;1
+32032;23399;1;158;45.0;110;70;1;1;0;0;1;1
+32033;15888;2;177;70.0;140;90;2;1;0;0;1;1
+32035;18905;2;170;100.0;130;80;1;1;0;0;1;0
+32036;18881;1;164;76.0;120;80;1;1;0;0;1;0
+32037;18110;1;164;61.0;120;80;1;1;0;0;1;0
+32038;21046;1;156;66.0;110;70;2;1;0;0;1;0
+32039;20421;2;169;60.0;120;80;1;1;0;0;1;0
+32040;18288;1;159;79.0;120;80;1;1;0;0;1;0
+32041;17581;1;163;62.0;100;80;2;1;0;0;1;0
+32042;18122;1;154;50.0;120;80;1;1;0;0;1;0
+32043;19854;1;166;66.0;120;80;1;1;0;0;1;0
+32044;20985;1;160;98.0;150;80;1;1;0;0;0;1
+32045;14837;1;159;56.0;110;70;1;1;0;0;1;0
+32046;19708;2;157;75.0;140;90;3;1;0;0;1;1
+32047;18158;2;164;72.0;120;80;1;1;0;0;1;1
+32048;20514;1;163;107.0;120;80;1;1;0;0;1;0
+32049;14370;2;167;80.0;120;80;1;1;0;0;0;0
+32051;19715;1;160;60.0;120;80;1;1;0;0;1;0
+32052;21095;2;174;89.0;140;100;2;2;1;0;1;1
+32053;14610;2;164;65.0;120;80;1;1;0;0;1;0
+32056;20601;2;181;90.0;140;100;1;1;0;0;1;1
+32058;18326;1;158;68.0;90;60;1;1;0;0;1;0
+32062;20929;1;167;84.0;160;100;1;1;0;0;1;1
+32064;21150;1;160;72.0;150;80;1;1;0;0;1;1
+32069;21277;1;162;77.0;110;70;1;1;0;0;1;0
+32071;16723;1;157;94.0;120;80;2;2;0;0;1;1
+32072;20250;1;158;78.0;120;80;3;3;0;0;1;1
+32073;17496;1;157;54.0;110;70;1;1;0;0;1;0
+32074;19614;2;167;86.0;170;109;1;1;0;0;1;1
+32075;20508;1;165;96.0;150;90;3;1;0;0;0;1
+32076;16636;2;170;65.0;110;80;1;1;1;0;1;0
+32077;23234;2;178;86.0;120;80;1;1;1;0;1;1
+32080;23650;2;169;72.0;120;80;1;1;0;0;1;0
+32081;16763;1;161;109.0;130;80;1;1;0;0;1;0
+32082;15332;1;160;64.0;120;80;1;1;0;0;1;0
+32083;23417;1;166;50.0;130;80;3;1;0;0;0;1
+32084;20237;1;156;67.0;140;90;1;1;0;0;1;1
+32085;21276;1;164;71.0;120;80;1;1;0;0;0;1
+32087;18922;1;165;60.0;160;90;3;2;0;0;0;0
+32089;20527;1;175;80.0;120;80;1;1;0;0;1;0
+32090;17375;1;157;67.0;110;70;1;1;0;0;1;0
+32092;14818;1;171;95.0;120;80;1;1;0;0;1;0
+32093;19613;2;178;97.0;160;100;2;1;1;1;1;1
+32096;15209;1;162;56.0;160;100;1;1;0;0;1;1
+32098;20471;2;180;85.0;120;80;1;1;1;1;1;1
+32099;20416;2;177;95.0;120;80;1;1;1;0;1;1
+32102;14747;2;162;64.0;120;70;1;1;0;0;1;0
+32103;16124;2;178;83.0;110;69;1;1;0;0;1;1
+32104;21190;2;176;90.0;130;90;1;2;1;1;1;0
+32105;14878;1;165;86.0;140;90;1;1;0;0;1;1
+32106;23271;2;180;75.0;220;130;1;1;0;0;1;1
+32107;18849;1;165;64.0;120;80;1;2;0;0;1;1
+32108;19561;1;161;60.0;130;89;1;1;0;0;0;1
+32110;20475;1;165;85.0;120;80;1;1;0;0;1;0
+32111;23448;1;158;75.0;140;90;3;1;0;0;1;1
+32112;20364;1;156;46.0;130;90;3;3;0;0;1;1
+32113;14765;2;169;78.0;120;70;1;1;0;1;1;0
+32114;22273;1;156;60.0;110;70;1;1;0;0;1;1
+32115;21061;1;151;59.0;140;80;2;1;0;0;1;1
+32116;22809;1;158;62.0;130;90;2;1;0;0;0;1
+32118;21666;1;162;75.0;120;80;1;1;0;0;1;1
+32119;21155;1;158;79.0;120;80;1;1;0;0;1;0
+32121;18819;2;182;82.0;120;79;1;1;0;0;1;1
+32124;17835;1;161;63.0;120;80;1;1;0;0;1;0
+32125;18883;2;172;69.0;120;80;1;1;0;0;0;1
+32126;20481;2;168;68.0;120;80;1;1;0;0;1;1
+32130;14657;1;162;62.0;120;80;1;1;0;0;0;1
+32131;18094;1;163;83.0;110;70;1;1;0;0;1;0
+32133;18180;1;157;60.0;130;100;1;1;0;0;1;1
+32134;22464;2;165;60.0;120;80;1;1;1;0;1;0
+32135;21081;2;165;70.0;120;80;1;1;0;0;1;0
+32136;20632;2;180;94.0;120;80;1;1;0;0;1;0
+32138;23413;1;155;66.0;140;90;1;1;0;0;1;1
+32140;18247;1;156;60.0;140;70;1;1;0;0;1;1
+32141;16722;1;160;87.0;110;70;2;1;0;0;1;0
+32142;19068;1;170;69.0;120;70;1;1;0;0;0;0
+32143;18229;2;168;80.0;130;80;1;1;0;0;1;0
+32144;18418;1;165;83.0;140;80;1;1;0;0;1;1
+32145;19140;1;164;96.0;140;90;2;1;0;0;1;1
+32147;22530;1;160;60.0;150;90;3;1;0;0;1;1
+32148;18240;2;185;105.0;130;80;3;3;0;0;1;0
+32150;21073;1;165;73.0;110;70;3;1;1;0;1;1
+32151;21210;2;171;83.0;140;90;1;1;0;1;1;1
+32152;16936;2;165;72.0;120;80;1;1;0;0;1;0
+32153;22658;2;170;70.0;160;90;3;1;0;0;0;0
+32154;20529;1;146;70.0;110;80;1;1;0;0;1;0
+32155;23351;1;157;71.0;120;80;3;3;0;0;1;1
+32156;18924;2;176;68.0;176;68;1;1;0;0;1;0
+32157;22040;1;178;85.0;120;80;1;1;0;0;0;0
+32158;15915;1;154;48.0;80;60;1;1;0;0;1;0
+32159;22189;1;160;74.0;110;70;1;1;0;0;1;0
+32161;16789;2;155;58.0;140;80;1;3;0;0;1;1
+32162;21224;1;160;90.0;130;80;1;1;0;0;1;1
+32163;19062;2;175;90.0;150;100;1;1;1;0;1;0
+32166;17422;1;162;69.0;130;80;1;1;0;0;1;1
+32167;18948;1;167;89.0;120;80;1;1;0;0;1;0
+32170;22809;2;172;69.0;120;80;3;1;1;0;1;1
+32171;16826;2;160;60.0;120;80;1;1;1;0;1;0
+32172;18895;2;178;88.0;140;80;3;3;0;0;1;0
+32176;23422;1;158;67.0;160;80;1;1;0;0;0;1
+32177;21098;1;165;63.0;130;80;1;1;0;0;1;0
+32178;19011;2;175;70.0;120;80;1;1;0;0;1;1
+32179;22490;1;140;57.0;130;80;1;1;0;0;1;0
+32184;23466;1;164;56.0;130;100;1;1;0;0;1;1
+32185;15154;2;172;80.0;150;90;1;1;0;0;1;0
+32186;22505;2;169;74.0;120;80;3;3;1;0;1;1
+32187;16742;2;176;61.0;120;79;1;1;1;0;1;0
+32188;21908;2;168;64.0;120;79;2;1;0;0;1;0
+32190;20388;1;168;80.0;140;90;3;3;0;0;1;1
+32191;20398;2;160;60.0;140;90;1;1;0;0;0;1
+32193;19047;2;170;80.0;140;90;2;1;0;0;0;1
+32194;22489;1;168;72.0;140;80;1;2;0;0;1;1
+32196;16789;1;155;60.0;120;80;1;1;0;0;1;0
+32198;20425;2;165;70.0;120;80;1;1;0;0;1;1
+32199;22716;1;159;67.0;150;100;1;1;0;0;1;1
+32200;21225;1;165;71.0;120;90;2;2;0;0;1;0
+32201;22361;1;168;70.0;120;80;1;2;0;0;1;1
+32202;18266;1;161;68.0;120;80;2;1;0;0;1;0
+32204;18757;1;168;66.0;120;80;1;1;0;0;1;0
+32205;14719;1;175;56.0;110;70;1;1;0;0;1;0
+32206;15282;1;164;97.0;120;80;1;1;0;0;1;0
+32207;14538;1;68;65.0;100;60;1;1;0;0;0;0
+32208;20453;2;158;68.0;120;80;1;1;0;0;1;0
+32209;17490;2;167;84.0;180;120;2;1;0;1;1;1
+32210;17809;2;167;75.0;125;85;1;1;0;0;1;0
+32211;19789;1;162;64.0;140;80;1;1;0;0;1;0
+32213;22531;1;161;62.0;120;80;1;1;0;0;1;0
+32215;20335;1;165;95.0;150;90;1;1;0;0;0;0
+32216;18297;1;164;68.0;110;70;3;3;0;0;1;0
+32217;18937;2;172;80.0;130;90;2;1;0;0;1;1
+32218;19628;1;158;65.0;150;90;1;1;0;0;1;0
+32220;22780;1;145;86.0;120;80;1;1;0;0;1;1
+32221;22470;1;161;79.0;177;91;3;2;0;1;1;1
+32222;21848;1;164;78.0;130;60;2;2;0;0;0;1
+32226;15817;2;165;90.0;150;90;1;1;1;0;1;0
+32228;23513;1;157;77.0;140;90;2;2;0;0;1;0
+32230;15361;1;170;65.0;120;80;1;1;0;0;1;0
+32231;20355;1;163;62.0;140;80;1;1;0;0;1;0
+32233;16507;1;167;69.0;120;80;1;1;0;0;1;0
+32234;20442;1;165;67.0;120;80;1;1;0;0;1;0
+32235;18930;1;169;65.0;120;80;1;1;0;0;1;0
+32236;21191;1;152;51.0;170;110;1;1;0;0;1;0
+32237;20498;1;171;72.0;190;1200;1;1;0;0;1;1
+32238;18158;1;167;65.0;120;80;1;1;0;0;1;1
+32239;18988;1;168;70.0;110;70;1;1;0;0;1;1
+32243;19726;1;159;62.0;100;60;2;1;0;0;0;0
+32245;19442;2;172;76.0;140;90;2;1;1;0;1;1
+32246;23523;1;155;72.0;140;90;1;2;0;0;1;1
+32247;18258;1;156;114.0;180;1200;3;3;0;0;1;1
+32248;19644;2;165;75.0;120;80;1;1;0;0;1;0
+32249;18230;1;152;63.0;120;80;2;1;0;0;1;0
+32250;18392;1;170;99.0;140;90;1;1;0;0;1;1
+32251;14753;1;158;62.0;120;80;1;1;0;0;1;0
+32252;18088;2;169;75.0;170;90;2;2;1;0;1;1
+32253;22007;1;164;83.0;120;80;1;1;0;0;1;0
+32254;15260;1;166;83.0;100;70;1;1;0;1;1;0
+32255;18994;1;162;99.0;140;100;1;3;0;0;1;1
+32256;22766;1;158;65.0;160;90;1;1;0;0;0;0
+32257;22423;1;151;49.0;130;70;1;2;0;0;1;0
+32258;20939;2;172;75.0;130;90;1;1;0;1;1;0
+32259;21810;1;156;61.0;115;70;1;2;0;0;0;0
+32261;22629;1;163;100.0;130;80;3;1;0;0;1;0
+32262;21823;1;155;116.0;180;90;1;3;0;0;1;1
+32265;18158;1;170;70.0;100;60;1;1;0;0;1;0
+32267;22657;1;159;59.0;120;80;1;1;0;0;0;0
+32268;17335;1;156;60.0;120;80;1;1;0;0;1;0
+32269;16064;1;162;66.0;140;90;1;1;0;0;1;1
+32270;18534;2;167;67.0;120;80;1;1;0;0;0;1
+32272;17440;2;188;86.0;120;80;1;1;0;0;0;0
+32273;22380;1;163;76.0;130;80;2;1;0;0;0;1
+32274;20453;2;169;75.0;130;80;1;1;0;1;1;0
+32276;19444;1;170;70.0;110;80;1;1;0;0;1;0
+32278;21636;1;170;89.0;150;90;1;1;0;0;1;1
+32279;21263;1;161;87.0;120;80;1;1;0;0;1;1
+32282;16852;2;159;59.0;120;80;1;1;0;1;1;0
+32283;22605;1;168;74.0;140;90;1;1;0;0;1;1
+32284;15952;2;165;66.0;120;80;1;1;0;0;0;0
+32285;19668;1;157;70.0;120;80;1;1;0;0;1;1
+32286;20257;2;176;100.0;160;1110;1;2;0;0;1;1
+32287;22683;1;170;68.0;150;90;1;3;0;0;1;1
+32288;21325;1;168;85.0;120;80;3;1;0;0;1;1
+32289;20485;1;158;85.0;120;80;1;3;0;0;1;0
+32290;20416;1;166;55.0;110;70;1;1;0;0;1;1
+32291;22723;2;161;79.0;110;80;1;1;0;0;1;0
+32292;15848;1;164;100.0;150;100;2;3;0;0;1;1
+32294;19620;2;176;70.0;140;90;1;1;1;0;0;0
+32296;19521;1;159;70.0;140;90;2;2;0;0;0;1
+32298;21270;2;168;89.0;150;80;3;1;1;1;1;1
+32300;23427;1;170;102.0;150;100;3;2;0;0;1;1
+32301;19889;2;180;110.0;170;110;1;1;0;0;1;1
+32302;18340;1;169;92.0;150;90;3;3;0;0;1;1
+32304;16135;1;161;73.0;140;90;1;1;0;0;1;1
+32305;21017;1;172;75.0;120;70;1;1;0;0;1;0
+32306;20332;2;157;75.0;140;80;3;3;1;0;1;1
+32307;21882;2;168;86.0;130;80;3;3;0;0;1;0
+32308;16830;1;164;75.0;120;80;1;1;0;0;1;1
+32309;21751;1;164;85.0;120;80;1;1;0;0;1;1
+32310;23419;2;168;92.0;120;80;1;1;0;0;1;1
+32311;19667;1;167;75.0;130;90;1;1;0;0;1;1
+32312;18833;2;168;68.0;120;80;1;1;1;1;1;0
+32313;16128;1;163;57.0;100;70;1;2;0;0;1;0
+32314;23390;1;155;89.0;130;80;3;1;0;0;1;1
+32315;19994;2;168;82.0;130;90;1;1;1;1;1;0
+32316;23344;1;159;54.0;130;80;1;1;0;0;1;0
+32317;19902;1;168;70.0;150;100;3;3;0;0;1;1
+32319;15997;2;162;54.0;95;65;1;1;0;0;1;0
+32320;21322;2;172;84.0;110;70;1;1;0;0;1;0
+32321;17388;1;178;67.0;130;80;3;3;0;0;1;1
+32322;21092;2;172;74.0;150;90;2;1;1;1;0;1
+32323;21855;1;156;58.0;130;80;1;1;0;0;0;0
+32324;15398;2;176;76.0;120;80;1;1;1;1;1;0
+32326;23108;1;161;89.0;130;90;1;2;0;0;1;1
+32329;22589;2;169;79.0;140;90;1;1;0;0;1;1
+32331;19643;1;164;66.0;120;80;3;3;0;0;0;1
+32332;19747;1;179;81.0;150;100;1;1;0;0;0;1
+32333;20440;2;176;89.0;120;80;1;1;1;0;1;0
+32335;19864;2;170;80.0;130;70;1;1;0;0;1;0
+32336;18221;1;160;56.0;140;90;1;1;0;0;0;1
+32337;21853;1;158;70.0;110;70;3;1;0;0;1;1
+32339;14313;1;169;64.0;100;70;1;1;0;0;1;0
+32341;21003;1;158;57.0;130;90;2;1;0;0;1;0
+32342;19055;2;172;82.0;140;90;1;1;0;0;1;0
+32343;23228;2;180;70.0;130;90;1;1;1;1;1;1
+32344;15882;1;171;73.0;125;70;1;1;0;0;1;1
+32345;19073;1;168;82.0;120;80;1;1;0;0;1;0
+32347;18840;1;160;60.0;110;70;1;1;0;0;1;1
+32349;15334;2;176;60.0;110;80;1;1;1;0;1;0
+32350;16156;1;165;93.0;150;100;1;2;0;0;1;1
+32351;22898;1;162;75.0;140;90;3;1;0;0;1;1
+32353;15567;1;156;50.0;110;70;1;1;0;0;1;0
+32355;15302;1;160;60.0;100;60;1;1;0;0;0;1
+32356;22508;1;165;76.0;120;80;1;1;0;0;0;1
+32358;21137;1;165;82.0;100;90;1;2;0;0;1;1
+32359;23490;2;152;43.0;130;90;1;1;0;0;1;1
+32361;18184;2;183;91.0;120;80;1;1;0;0;1;0
+32363;18965;1;163;80.0;120;80;1;1;0;1;1;0
+32364;19718;2;160;65.0;150;80;3;1;0;0;1;1
+32366;19066;2;168;87.0;140;70;1;1;1;0;1;1
+32368;20615;2;160;68.0;120;80;1;1;0;0;1;0
+32369;14428;1;164;55.0;110;70;1;1;0;1;1;0
+32371;22612;1;162;75.0;150;1000;3;3;0;0;0;1
+32373;15343;1;152;50.0;100;70;1;1;0;0;1;0
+32374;18218;1;161;60.0;100;80;1;1;0;0;1;0
+32376;18829;1;162;65.0;130;90;1;1;0;0;1;1
+32377;21848;2;170;70.0;135;90;1;1;0;0;1;0
+32378;22704;2;172;56.0;135;80;1;1;1;1;1;0
+32379;14670;2;178;78.0;120;80;1;1;0;0;1;0
+32380;22017;1;163;115.0;145;80;3;3;0;0;1;1
+32382;18803;1;157;74.0;120;80;1;1;0;0;1;0
+32384;22014;1;163;66.0;11;80;1;1;0;0;1;0
+32385;20364;1;164;63.0;110;70;1;1;0;0;0;0
+32387;18941;2;173;70.0;120;80;1;1;0;0;1;0
+32388;22890;1;188;80.0;110;60;1;1;0;0;1;1
+32389;20576;1;160;60.0;150;100;1;1;0;0;1;1
+32390;15824;1;159;97.0;140;90;1;1;0;0;1;1
+32391;16629;1;162;65.0;110;60;2;1;0;0;1;1
+32392;23147;1;156;74.0;140;80;3;1;0;0;1;1
+32396;16660;2;167;69.0;110;70;1;1;0;0;1;0
+32397;21930;2;177;83.0;90;60;1;1;0;0;0;1
+32398;20625;1;156;54.0;120;80;1;1;0;0;1;0
+32399;21039;1;161;88.0;150;80;3;3;0;0;1;1
+32400;22009;1;159;74.0;140;90;2;3;0;0;1;1
+32403;21860;1;170;75.0;130;80;1;3;0;0;0;1
+32405;19236;1;166;71.0;120;80;1;1;0;0;1;0
+32406;20037;1;168;80.0;130;90;1;2;0;0;1;0
+32407;18430;1;168;77.0;120;80;1;1;0;0;0;1
+32408;23193;2;165;60.0;120;80;1;2;0;0;1;1
+32409;22019;1;160;65.0;160;90;1;1;0;0;1;1
+32410;15382;2;162;63.0;120;80;1;1;0;0;1;0
+32411;18166;1;151;67.0;110;70;1;1;0;0;1;0
+32412;18264;2;172;76.0;140;90;3;3;1;0;1;1
+32413;15961;2;170;70.0;140;90;1;1;0;0;1;1
+32415;17462;1;174;58.0;120;80;1;1;0;0;1;1
+32416;18353;1;169;67.0;120;80;1;1;0;0;1;0
+32417;17327;1;172;70.0;120;80;1;1;0;0;1;0
+32418;21196;2;175;78.0;120;80;1;1;0;0;1;0
+32420;15906;1;150;53.0;130;80;1;1;0;0;1;0
+32422;20435;2;166;64.0;140;80;1;1;0;0;1;1
+32423;16774;1;161;87.0;120;80;1;1;0;0;1;0
+32424;16050;1;168;70.0;110;80;1;1;0;0;1;0
+32426;21869;1;156;64.0;90;60;1;1;0;0;1;1
+32427;18838;1;157;66.0;130;90;1;1;0;0;1;0
+32428;15158;1;163;63.0;135;85;2;1;0;0;1;1
+32430;18266;1;169;75.0;120;80;1;1;0;0;1;0
+32432;15392;1;158;59.0;120;80;1;1;0;0;1;0
+32433;21011;2;170;80.0;120;80;1;1;1;0;1;0
+32434;15133;2;162;60.0;110;70;1;1;0;0;1;0
+32435;22078;1;169;78.0;120;90;1;1;0;0;1;1
+32436;23142;1;156;85.0;110;80;2;2;0;0;1;1
+32437;22735;2;160;72.0;160;1100;1;1;1;0;1;1
+32438;21098;2;176;74.0;130;80;1;1;1;0;1;0
+32440;22354;2;166;86.0;120;90;1;1;0;0;1;1
+32441;15864;1;165;67.0;120;80;2;2;0;0;1;0
+32442;14456;2;167;85.0;180;100;1;1;0;0;1;1
+32443;22413;2;185;103.0;120;80;1;1;0;0;1;1
+32444;21125;1;153;71.0;180;120;1;1;0;0;1;1
+32445;15473;1;156;86.0;150;90;1;1;0;0;1;1
+32446;18932;2;180;110.0;120;80;3;1;0;0;1;1
+32448;15473;1;161;56.0;100;70;1;1;0;0;1;0
+32452;18959;1;165;76.0;110;80;1;1;0;0;1;0
+32454;14501;2;176;81.0;120;80;1;1;0;0;1;0
+32455;20378;1;161;108.0;140;80;3;1;0;0;1;0
+32456;23386;1;55;81.0;130;90;1;1;0;0;1;1
+32457;21764;1;156;76.0;130;60;1;1;0;0;1;1
+32459;18304;1;155;70.0;110;70;2;2;0;0;0;0
+32461;17423;2;165;65.0;110;70;1;1;1;1;1;0
+32463;19676;1;155;95.0;160;100;1;1;0;0;1;0
+32464;18287;1;157;70.0;135;80;1;1;0;0;1;0
+32466;16862;1;158;69.0;110;80;1;1;0;0;1;0
+32469;19808;1;153;54.0;120;80;1;1;0;0;1;0
+32470;16000;1;162;69.0;140;80;1;1;0;0;1;1
+32471;15327;1;152;62.0;140;80;1;1;0;0;1;1
+32472;18405;1;169;69.0;120;80;3;3;0;0;0;1
+32473;14725;1;178;60.0;100;80;1;1;0;0;1;0
+32474;17468;2;170;78.0;120;80;1;1;1;0;1;1
+32475;22578;1;152;67.0;160;90;3;1;0;0;1;0
+32480;16591;2;169;71.0;120;80;1;1;0;0;1;1
+32481;19462;1;165;52.0;90;60;1;2;0;0;1;0
+32484;21238;1;175;62.0;120;80;1;1;0;0;1;1
+32485;23386;2;164;68.0;120;80;1;1;0;0;1;1
+32486;22428;1;154;89.0;160;80;1;1;0;0;0;1
+32487;21703;1;168;109.0;130;80;3;3;0;0;1;0
+32488;20470;1;165;65.0;120;80;1;1;0;0;0;1
+32490;21188;2;178;94.0;140;90;1;2;1;0;1;1
+32491;14358;1;161;78.0;120;70;1;1;0;0;1;0
+32492;19001;1;165;65.0;120;90;1;1;0;0;1;0
+32493;20508;1;165;65.0;120;80;1;1;0;0;1;0
+32494;19730;1;162;96.0;130;80;3;3;0;0;0;1
+32495;19625;2;164;85.0;120;80;1;1;0;0;1;1
+32501;16170;1;170;70.0;110;70;1;1;0;0;1;0
+32502;14418;2;170;89.0;130;80;1;1;1;0;1;0
+32503;19859;2;160;67.0;160;90;2;2;0;0;1;0
+32504;18953;2;169;74.0;120;80;1;1;0;0;1;0
+32505;19915;1;158;69.0;120;80;1;1;0;0;1;0
+32506;20251;1;151;60.0;120;70;1;1;0;0;1;0
+32507;19617;1;167;60.0;100;60;2;1;0;0;1;0
+32508;18971;1;172;69.0;120;80;1;1;0;0;1;0
+32509;19748;1;155;95.0;115;80;1;1;0;1;1;0
+32510;21355;1;165;67.0;110;70;1;1;0;0;0;0
+32511;21213;1;165;74.0;130;80;1;1;0;0;0;1
+32514;22802;1;165;65.0;120;80;1;1;0;0;1;1
+32515;18291;1;171;68.0;140;80;1;1;0;0;1;1
+32516;22447;2;160;71.0;150;100;1;1;0;0;1;0
+32517;19809;1;162;63.0;150;800;1;1;0;0;1;1
+32518;22205;1;168;74.0;150;90;3;3;0;0;1;0
+32519;19809;1;165;123.0;150;90;3;3;0;0;1;1
+32520;22615;2;174;79.0;120;80;1;1;0;0;1;0
+32521;20357;2;174;70.0;160;100;1;3;0;0;0;1
+32522;22403;1;152;55.0;120;70;1;1;0;0;1;1
+32523;22454;1;160;61.0;110;80;1;1;0;0;0;1
+32524;21249;1;167;100.0;120;79;1;1;0;0;1;0
+32528;20971;1;141;43.0;80;60;1;1;0;0;1;0
+32529;20608;1;149;66.0;160;80;1;1;0;0;1;1
+32530;19146;2;182;89.0;140;1000;1;1;0;0;1;1
+32531;22352;1;170;105.0;150;80;3;1;0;0;1;1
+32532;21059;2;160;60.0;140;70;1;1;0;0;1;1
+32533;17400;1;168;71.0;120;80;1;1;0;0;1;0
+32534;20598;2;167;91.0;150;100;1;1;0;0;1;1
+32536;16059;1;146;49.0;110;70;1;1;0;0;1;0
+32537;18086;1;164;94.0;120;80;1;1;0;0;1;1
+32539;15462;1;164;105.0;130;80;3;3;0;1;0;1
+32541;17252;1;172;68.0;130;80;1;1;0;0;1;0
+32542;16947;1;157;59.0;160;100;1;1;0;0;1;1
+32545;18975;1;160;107.0;110;80;2;2;0;0;1;0
+32546;22058;2;175;92.0;140;90;3;3;0;0;1;1
+32547;17613;2;168;54.0;110;60;1;1;0;0;1;0
+32548;18334;1;160;58.0;120;80;1;1;0;0;1;0
+32549;15977;2;167;74.0;120;80;1;1;0;0;0;0
+32550;21782;2;172;114.0;120;80;3;1;0;0;1;1
+32551;15058;1;158;80.0;120;80;1;1;0;0;0;1
+32552;21745;1;160;60.0;120;80;1;1;0;0;1;0
+32554;20506;1;152;65.0;140;90;1;1;0;0;1;1
+32556;17483;1;170;65.0;130;80;1;1;0;0;0;1
+32557;20583;1;163;74.0;110;70;1;1;0;0;1;0
+32559;18140;2;170;72.0;120;60;1;1;0;0;1;1
+32560;19822;2;171;75.0;140;80;1;1;0;0;1;1
+32562;21203;2;154;57.0;140;90;2;1;1;1;1;1
+32563;18207;1;159;50.0;90;60;2;1;0;0;1;0
+32564;18038;1;162;70.0;120;80;1;1;0;0;1;0
+32565;15946;1;158;59.0;110;80;1;1;0;0;1;0
+32566;18193;1;152;57.0;140;110;1;1;0;1;0;1
+32567;17257;1;158;59.0;110;80;1;1;0;0;1;0
+32568;16925;1;165;55.0;110;70;1;1;0;0;0;0
+32569;21480;1;165;65.0;120;90;3;3;0;0;1;0
+32570;21099;2;169;79.0;120;80;3;1;0;0;1;1
+32571;19082;1;161;98.0;140;90;1;1;0;0;1;1
+32572;23158;1;163;72.0;130;80;1;1;0;0;1;0
+32575;19221;1;164;66.0;120;80;1;1;0;0;1;0
+32576;21770;1;164;60.0;100;60;2;2;0;0;1;0
+32581;15510;2;185;76.0;120;80;1;1;0;0;1;0
+32582;18104;2;165;69.0;120;80;1;1;0;0;1;1
+32583;21103;2;169;61.0;140;90;1;1;0;0;1;0
+32584;18964;1;167;66.0;120;80;1;1;0;0;1;0
+32585;16098;2;180;103.0;141;90;1;2;0;0;1;1
+32586;20955;2;164;80.0;110;80;1;1;0;0;1;1
+32589;18139;2;170;71.0;120;80;1;1;0;0;1;0
+32591;16597;2;170;68.0;120;80;1;1;1;1;1;0
+32592;16910;2;120;80.0;120;80;1;3;0;0;1;1
+32594;22186;1;166;65.0;120;80;3;3;0;0;1;1
+32595;22799;1;167;83.0;130;80;2;1;0;0;1;1
+32596;19638;1;158;65.0;150;90;1;1;0;0;1;1
+32597;19050;1;165;70.0;120;80;1;1;0;0;1;1
+32598;20512;1;165;65.0;120;80;1;1;0;0;1;0
+32599;22603;2;160;78.0;130;90;1;1;0;0;1;1
+32601;20650;1;154;70.0;130;1000;1;1;0;0;1;1
+32602;19675;1;158;75.0;80;60;1;1;0;0;1;0
+32603;20281;1;156;79.0;130;80;1;1;0;0;1;1
+32604;19041;1;159;80.0;150;90;2;1;0;0;1;1
+32606;19171;2;167;83.0;130;80;1;1;1;1;1;0
+32608;18059;2;162;56.0;120;80;3;3;0;0;1;1
+32609;18330;1;160;76.0;120;80;1;1;0;0;1;0
+32610;21253;2;172;95.0;140;90;2;2;0;0;1;0
+32612;19781;1;167;70.0;120;80;1;1;0;0;1;0
+32616;20527;2;162;76.0;150;80;1;1;0;0;1;1
+32617;16063;1;157;64.0;110;70;1;1;0;0;0;0
+32618;20638;2;171;73.0;120;80;1;1;0;0;1;0
+32620;17594;1;162;74.0;120;80;2;2;0;0;1;1
+32621;18503;1;140;90.0;140;90;1;1;0;0;1;1
+32622;15138;2;173;93.0;150;100;2;1;1;1;0;1
+32623;22739;1;160;92.0;120;80;2;2;0;0;1;1
+32627;18982;1;165;80.0;120;80;1;1;0;0;1;1
+32628;20515;1;163;79.0;130;80;3;3;0;0;1;0
+32629;18731;1;165;100.0;140;80;2;1;0;0;1;0
+32630;19553;1;150;65.0;120;80;2;1;0;0;1;0
+32631;19750;1;164;75.0;120;80;1;1;0;0;0;1
+32632;14486;1;156;54.0;120;80;1;1;0;0;1;0
+32633;18788;1;164;76.0;110;70;1;1;0;0;1;0
+32634;14479;1;155;119.0;150;100;1;1;0;0;1;1
+32635;16122;1;164;73.0;120;80;1;1;0;0;1;0
+32636;18213;1;154;120.0;160;80;2;3;0;0;1;1
+32637;18921;2;165;63.0;140;80;3;1;0;0;1;1
+32639;14583;1;162;79.0;120;80;1;1;0;0;1;0
+32643;17408;1;155;76.0;130;90;3;3;0;1;1;1
+32644;18128;2;176;85.0;150;100;1;1;0;0;1;1
+32645;18214;1;165;63.0;120;80;1;1;0;0;1;1
+32646;16169;1;167;65.0;110;70;1;1;0;0;0;0
+32648;20570;2;170;80.0;160;100;3;3;0;0;1;0
+32649;23441;1;162;73.0;150;1000;1;1;0;1;1;1
+32650;21216;1;154;60.0;110;70;1;1;0;0;1;0
+32652;16836;1;165;84.0;120;80;1;1;0;0;1;1
+32654;17588;1;155;62.0;140;110;2;1;0;0;1;1
+32657;17568;1;159;48.0;100;80;1;1;0;0;0;1
+32658;16895;1;160;66.0;165;100;1;1;0;0;1;1
+32660;19033;1;162;59.0;110;70;1;1;0;0;1;0
+32661;18941;1;168;65.0;120;80;1;1;0;0;0;0
+32662;15329;2;172;79.0;120;80;2;3;0;0;1;0
+32663;15398;1;165;86.0;100;65;1;2;0;0;0;1
+32665;20418;1;162;100.0;130;90;3;1;0;0;0;1
+32666;20385;1;160;58.0;130;80;1;1;0;0;0;1
+32667;14562;1;160;60.0;120;90;3;3;0;0;1;1
+32668;23441;1;160;56.0;110;60;1;1;1;0;0;1
+32670;18821;1;159;69.0;110;80;1;1;0;0;1;0
+32672;20212;1;159;62.0;120;80;1;1;0;0;1;1
+32675;14752;2;160;68.0;120;80;1;1;0;0;1;0
+32676;23471;1;162;99.0;180;100;3;1;0;0;1;1
+32677;21712;1;158;85.0;150;80;3;1;0;0;1;1
+32678;21867;2;174;82.0;140;90;1;1;0;0;1;1
+32679;19668;1;157;60.0;120;80;1;1;0;0;1;0
+32680;16103;2;167;68.0;120;90;1;1;0;0;1;0
+32681;18720;1;148;64.0;120;80;1;1;0;0;1;0
+32682;20254;2;163;92.0;140;90;1;1;0;0;1;1
+32683;19115;2;169;68.0;110;60;1;1;0;0;1;0
+32684;19656;2;174;85.0;110;70;1;1;1;0;1;0
+32686;18414;1;165;57.0;110;80;2;2;0;0;1;0
+32689;19581;1;165;110.0;120;80;1;2;0;0;1;0
+32690;22523;2;170;83.0;150;90;1;1;0;0;1;1
+32692;19157;1;158;90.0;150;90;1;2;0;0;1;1
+32693;22130;2;174;57.0;110;70;1;2;0;0;1;0
+32694;21989;2;165;70.0;140;90;1;1;0;0;0;1
+32695;14334;1;164;68.0;114;70;1;1;0;0;0;0
+32696;21195;1;159;70.0;160;80;1;1;0;0;1;1
+32697;22692;1;178;78.0;160;90;1;1;0;0;0;0
+32698;15929;1;155;61.0;160;100;1;1;0;0;1;1
+32700;18967;2;179;70.0;160;90;1;1;1;0;1;1
+32701;19827;2;162;86.0;140;70;1;1;0;0;0;1
+32702;20467;2;178;84.0;95;100;1;1;0;1;0;1
+32705;21915;1;158;58.0;140;80;1;1;0;0;1;1
+32707;18789;2;176;78.0;100;70;1;1;0;0;1;0
+32708;15594;2;166;70.0;110;70;1;1;0;0;0;0
+32710;20261;1;167;83.0;130;1000;2;1;0;0;1;1
+32712;18500;2;174;88.0;140;90;2;1;0;0;1;1
+32713;20411;1;165;64.0;130;80;3;3;0;0;0;0
+32715;22045;2;190;85.0;120;80;1;1;0;0;1;1
+32716;20205;1;164;69.0;120;80;3;3;0;0;0;1
+32718;18802;1;155;75.0;130;80;3;1;0;0;1;1
+32719;23383;1;147;72.0;130;80;2;1;0;0;1;0
+32721;14369;2;176;109.0;120;80;1;1;1;0;1;0
+32722;20660;1;159;71.0;120;80;1;3;0;0;1;0
+32723;21859;1;160;59.0;150;90;1;1;0;0;1;1
+32727;17655;1;164;90.0;140;80;3;1;0;0;0;0
+32728;20751;1;168;70.0;120;80;1;1;0;0;1;1
+32730;18036;2;167;90.0;130;80;1;1;0;0;1;0
+32733;21893;1;167;76.0;130;80;3;3;0;0;1;1
+32736;21872;2;183;100.0;140;100;2;1;0;1;1;1
+32738;20933;1;151;69.0;130;90;1;1;0;0;0;1
+32739;15338;1;172;71.0;120;80;1;1;0;0;1;0
+32741;21141;1;167;81.0;120;80;1;1;0;0;1;0
+32742;21887;2;170;72.0;120;80;1;1;0;0;0;0
+32744;20672;1;165;83.0;130;80;1;1;0;0;1;0
+32745;20189;1;161;73.0;135;80;1;2;0;0;1;0
+32746;17447;1;167;80.0;130;80;1;1;0;0;1;0
+32748;15511;1;165;63.0;100;70;1;1;0;0;1;0
+32749;21182;2;166;68.0;149;0;1;1;0;0;1;1
+32750;18296;1;168;73.0;120;80;1;1;0;0;1;0
+32751;21104;2;179;100.0;160;80;1;2;0;0;1;1
+32752;22051;2;167;81.0;130;80;1;1;0;0;1;1
+32753;22776;2;172;89.0;130;80;1;2;0;0;1;1
+32756;18930;1;158;54.0;140;80;2;1;0;0;1;0
+32760;19566;1;157;57.0;120;80;1;1;0;0;1;0
+32763;18783;1;152;60.0;110;70;3;3;0;0;1;0
+32764;21796;1;156;130.0;145;90;3;3;0;0;0;0
+32766;21866;1;156;80.0;140;100;2;3;0;0;1;1
+32767;19782;2;168;78.0;120;90;3;1;1;0;0;1
+32768;14578;1;157;61.0;108;73;2;2;0;0;1;0
+32769;21079;2;158;65.0;140;90;1;1;1;1;1;0
+32771;16902;1;171;70.0;120;80;1;1;0;0;1;1
+32773;17534;1;161;65.0;90;60;2;1;0;0;1;0
+32774;19644;1;159;64.0;150;90;1;1;0;0;1;1
+32776;23165;1;153;48.0;140;90;1;1;0;0;1;1
+32778;23157;2;180;88.0;145;95;3;2;0;0;1;1
+32779;16108;1;153;85.0;130;80;1;1;0;0;1;1
+32781;20481;1;164;70.0;130;90;2;1;1;1;1;0
+32784;17495;2;168;87.0;140;92;1;1;0;0;1;0
+32786;18982;1;160;108.0;130;80;1;1;0;0;0;1
+32788;22022;2;160;90.0;120;80;2;1;0;0;1;1
+32789;17732;1;163;89.0;120;80;1;1;0;0;0;1
+32790;21473;1;158;62.0;120;80;1;1;0;0;1;0
+32791;14644;1;158;71.0;100;70;1;1;0;0;1;0
+32792;19696;2;168;67.0;130;90;1;1;0;0;0;0
+32793;17987;1;155;70.0;90;60;1;1;0;0;1;0
+32795;18795;1;164;89.0;150;90;3;1;0;0;1;1
+32797;21660;1;144;41.0;110;70;3;3;1;0;1;0
+32798;20446;1;160;60.0;120;80;1;1;0;0;1;1
+32799;16524;1;163;78.0;130;90;1;1;0;0;1;1
+32801;19509;2;165;89.0;140;100;1;1;0;0;1;1
+32802;20588;2;170;69.0;120;80;1;1;0;0;1;0
+32803;22597;2;169;79.0;140;90;1;1;0;0;1;1
+32804;21787;1;160;58.0;140;90;1;1;0;0;0;1
+32805;18238;1;159;57.4;120;60;1;1;0;0;1;0
+32806;22635;1;160;65.0;120;80;1;3;0;0;1;0
+32807;21963;1;165;70.0;120;80;1;1;0;0;1;0
+32809;21815;2;179;70.0;120;90;2;1;0;0;0;0
+32810;19198;1;165;69.0;120;80;1;1;0;0;0;1
+32812;19229;1;169;55.0;120;80;1;2;0;0;0;0
+32815;20706;2;171;80.0;160;90;1;1;0;0;1;1
+32818;15800;1;169;78.0;110;60;2;1;0;1;0;0
+32820;22649;1;154;70.0;135;90;2;2;0;1;0;1
+32821;18934;2;181;91.0;160;90;1;1;0;0;1;0
+32822;20264;2;170;84.0;120;80;1;1;0;0;1;0
+32823;18819;1;166;81.0;140;80;3;1;0;0;1;1
+32825;17310;1;167;62.0;120;80;1;1;0;0;1;0
+32826;18216;1;164;78.0;100;60;1;1;0;0;1;0
+32828;18235;1;163;66.0;110;70;1;1;0;0;1;0
+32829;22600;2;160;60.0;120;80;1;1;0;0;1;1
+32830;21789;1;161;82.0;150;90;3;1;0;0;1;1
+32831;19516;2;172;71.0;120;80;1;1;0;0;1;0
+32832;21178;1;165;62.0;130;90;1;1;0;0;1;1
+32833;18265;2;172;70.0;120;80;1;1;0;0;1;0
+32834;21864;1;153;84.0;130;80;1;2;0;0;1;1
+32835;19058;2;178;73.0;160;90;1;1;0;0;1;1
+32836;16073;1;168;57.0;120;80;1;1;0;0;1;0
+32837;18312;1;168;74.0;130;90;1;2;0;0;1;0
+32839;21378;1;164;80.0;120;80;1;1;0;0;1;0
+32840;19485;1;150;67.5;110;80;2;2;0;0;0;0
+32841;17335;1;170;66.0;100;70;2;1;0;0;1;1
+32842;16041;1;164;90.0;110;70;1;1;0;0;1;0
+32843;19556;1;147;46.0;150;100;1;1;0;0;1;1
+32845;20257;2;174;82.0;150;80;2;1;0;0;1;1
+32848;18019;1;163;61.0;120;80;1;1;0;0;1;0
+32849;21314;1;164;57.0;110;70;2;1;0;0;1;0
+32850;19681;1;174;69.0;130;70;1;1;0;0;0;0
+32851;17591;2;173;85.0;120;80;1;1;0;0;1;1
+32852;20620;1;160;63.0;110;70;1;2;0;0;0;1
+32853;22444;1;168;69.0;130;80;3;1;0;0;1;1
+32854;18378;1;156;71.0;120;80;1;1;0;0;1;0
+32857;22554;1;160;73.0;140;80;1;1;0;0;1;0
+32858;21729;1;154;68.0;100;80;1;1;0;0;0;0
+32859;18253;2;176;86.0;130;90;1;1;0;0;1;1
+32860;20382;1;163;86.0;160;120;3;3;0;0;1;1
+32861;17359;2;172;100.0;130;80;1;1;0;0;0;1
+32863;22680;2;166;75.0;120;80;2;1;0;0;0;1
+32864;23139;2;172;97.0;160;100;1;3;0;1;1;1
+32865;19494;1;161;111.0;170;1000;3;1;0;0;1;1
+32867;15802;1;165;61.0;120;80;1;1;0;0;1;0
+32868;19759;1;158;83.0;140;90;1;1;0;0;1;1
+32869;19744;1;169;95.0;130;80;1;1;0;1;1;0
+32870;16026;1;157;76.0;120;80;2;1;0;0;1;0
+32871;21299;1;170;68.0;120;80;1;1;0;0;1;0
+32872;22692;1;152;87.0;140;80;1;1;0;1;1;1
+32873;22458;2;176;93.0;160;100;3;1;0;0;1;1
+32874;19798;1;157;60.0;125;80;1;1;0;0;1;0
+32876;21264;1;165;70.0;110;70;2;1;0;0;0;0
+32877;17422;1;155;87.0;150;90;1;1;0;0;0;1
+32878;17621;1;169;76.0;120;80;1;1;0;0;1;0
+32879;21649;1;151;74.0;130;90;1;1;0;0;1;1
+32882;17359;1;165;63.0;130;90;1;1;0;0;1;0
+32883;15326;2;172;71.0;120;80;1;1;0;0;1;0
+32885;20623;2;162;65.0;120;80;1;1;0;0;0;1
+32886;17686;1;171;61.0;120;80;1;1;0;0;1;0
+32888;21076;2;168;57.0;125;80;1;1;1;0;1;0
+32892;20525;2;168;79.0;110;70;1;1;1;0;0;0
+32893;20964;2;172;80.0;110;70;2;2;0;0;1;1
+32894;22560;1;158;68.0;120;80;1;1;0;0;1;0
+32895;20589;1;120;80.0;120;80;1;1;0;0;0;0
+32896;23400;1;163;63.0;120;80;3;3;0;0;0;1
+32897;18322;2;160;78.0;150;90;1;1;0;0;1;1
+32898;15880;1;163;58.0;110;70;1;1;0;0;1;0
+32900;14453;1;175;69.0;120;80;1;1;0;0;1;0
+32901;20463;1;160;60.0;120;80;1;1;0;0;0;1
+32902;23224;1;172;73.0;120;80;1;3;0;0;1;0
+32903;14435;1;152;54.0;120;80;2;1;0;0;0;0
+32904;21051;2;173;70.0;120;80;1;1;0;0;1;0
+32905;18888;1;165;65.0;140;100;2;1;0;0;0;1
+32906;21733;1;159;76.0;120;80;1;1;0;0;1;0
+32910;23384;2;160;68.0;140;80;2;1;0;0;1;0
+32911;20290;1;154;70.0;140;100;1;1;0;0;0;1
+32912;17059;1;157;80.0;160;100;1;1;0;0;1;1
+32913;20498;1;164;77.0;120;70;1;1;1;1;1;0
+32914;21972;1;156;62.0;120;80;1;3;0;0;1;0
+32917;18321;2;179;84.0;110;70;1;1;0;0;1;0
+32918;21736;1;156;56.0;120;80;1;1;0;0;1;0
+32921;21524;1;153;70.0;110;70;3;3;0;0;1;1
+32922;18184;1;170;61.0;110;60;1;1;0;0;1;1
+32923;19680;1;166;89.0;130;90;1;1;0;0;1;1
+32924;22554;2;172;110.0;130;80;3;1;0;0;1;1
+32925;20987;1;158;68.0;190;100;2;1;0;0;0;1
+32926;21890;1;159;118.0;130;90;3;3;0;0;0;1
+32927;17990;1;163;65.0;130;90;1;1;0;0;1;1
+32928;17585;1;162;73.0;135;80;1;2;0;0;1;0
+32932;19063;1;157;54.0;110;80;1;1;0;0;1;0
+32934;19599;1;160;68.0;100;60;1;1;0;0;0;0
+32935;23389;1;168;65.0;120;80;1;1;0;0;1;1
+32938;17537;1;161;100.0;130;80;1;3;0;0;0;1
+32939;15480;1;159;59.0;120;80;1;1;0;0;0;0
+32940;15896;2;172;73.0;120;70;1;1;0;0;1;0
+32941;16737;2;168;70.0;110;60;1;1;0;0;1;0
+32942;14717;1;172;84.0;120;80;1;1;0;0;1;1
+32943;18518;1;165;63.0;120;60;2;1;0;0;1;0
+32944;19657;1;166;85.0;130;90;1;1;0;0;0;1
+32946;16811;1;152;56.0;110;80;1;1;0;0;0;1
+32947;18006;1;149;73.0;150;100;2;2;0;0;1;1
+32948;20473;1;159;67.0;140;90;3;3;0;0;1;1
+32949;16768;2;179;76.0;120;80;1;2;1;0;1;0
+32950;17376;1;159;76.0;90;60;2;1;0;0;1;0
+32953;21995;1;163;74.0;110;70;1;1;0;0;1;0
+32954;16044;2;170;115.0;150;100;1;1;0;0;1;1
+32955;22503;2;160;72.0;140;80;1;1;0;0;0;1
+32957;14536;1;160;70.0;110;80;1;1;0;0;1;1
+32959;15262;1;151;67.0;160;1000;1;1;0;0;1;0
+32960;16708;1;161;102.0;150;80;3;3;0;0;1;1
+32961;21700;2;167;70.0;120;80;1;1;0;0;1;0
+32962;18148;2;167;95.0;130;80;1;1;1;0;1;0
+32964;18947;2;174;83.0;140;87;1;1;0;0;1;1
+32965;19696;1;158;65.0;120;70;1;2;0;0;1;0
+32966;14749;1;167;57.0;110;70;1;1;0;0;1;0
+32967;21207;1;164;69.0;120;80;3;3;0;0;1;0
+32968;21741;1;156;91.0;190;95;1;1;0;0;1;1
+32969;21206;1;165;72.0;140;80;3;3;0;0;0;1
+32970;19093;1;170;77.0;140;90;3;3;0;0;1;1
+32971;22560;2;172;83.0;120;70;1;1;0;0;1;0
+32973;17474;1;156;60.0;110;80;1;1;0;0;1;0
+32974;16068;1;161;80.0;144;90;3;1;0;0;1;1
+32975;20978;1;150;80.0;140;81;3;1;0;0;1;1
+32976;21127;1;175;75.0;120;80;1;1;1;1;1;0
+32977;21202;1;160;66.0;140;70;1;1;0;0;1;1
+32978;23440;1;152;70.0;120;80;1;1;0;0;0;1
+32979;16144;2;168;66.0;120;80;1;1;0;0;1;1
+32981;21174;1;167;69.0;120;80;1;1;0;0;0;0
+32982;15459;1;158;62.0;150;100;1;2;0;0;0;1
+32983;18259;2;168;58.0;110;80;1;1;1;1;1;0
+32984;18409;1;165;68.0;180;90;2;1;0;0;1;1
+32985;19032;1;152;100.0;140;89;1;1;0;0;1;1
+32986;16325;1;162;88.0;90;60;2;2;1;1;1;0
+32987;21345;1;152;70.0;120;79;1;1;0;0;1;0
+32988;21267;1;169;68.0;120;79;2;1;0;0;1;1
+32989;20671;1;165;85.0;120;80;1;1;0;0;1;0
+32990;20686;1;162;95.0;120;80;1;1;0;0;1;1
+32992;19032;2;165;65.0;120;80;3;3;0;0;0;0
+32993;22038;1;165;69.0;140;90;1;1;0;0;0;0
+32996;14325;2;178;72.0;100;80;1;1;0;0;1;0
+32997;19745;2;164;61.0;130;80;1;1;0;0;1;0
+32998;22536;2;170;89.0;110;70;1;1;0;0;1;0
+32999;22019;1;156;48.0;120;70;1;1;0;0;1;0
+33000;16735;1;162;64.0;130;80;1;1;0;0;1;1
+33001;21173;2;172;72.0;140;90;1;1;0;0;1;1
+33002;15246;1;150;56.0;120;80;1;1;0;0;1;0
+33003;18702;1;169;69.0;120;70;1;1;0;0;1;0
+33004;19080;2;173;69.0;120;90;2;1;0;0;0;0
+33005;14537;2;164;68.0;110;70;1;1;0;0;1;0
+33006;23360;1;154;47.0;120;80;1;3;0;0;1;0
+33007;16138;1;156;101.0;120;80;1;1;0;0;1;0
+33008;21051;1;165;65.0;120;80;1;1;0;0;1;0
+33010;20347;2;192;71.0;130;90;1;3;1;1;0;0
+33011;22160;1;155;62.0;140;80;2;1;0;0;1;1
+33014;23305;2;169;65.0;110;70;1;1;0;0;0;1
+33015;16072;1;168;78.0;120;80;1;1;0;0;1;1
+33016;21195;2;178;82.0;150;80;1;1;1;0;1;1
+33017;20344;2;165;79.0;120;80;3;3;0;0;1;1
+33018;21310;1;175;71.0;130;80;1;1;0;0;1;0
+33019;18260;2;174;68.0;180;1000;2;1;0;0;1;1
+33020;18178;1;178;79.0;140;90;3;2;0;0;1;1
+33022;21914;2;168;70.0;130;60;1;1;0;0;1;0
+33023;14723;1;160;61.0;120;80;1;1;0;0;0;0
+33024;17578;2;175;80.0;120;70;1;1;0;0;0;0
+33026;19108;2;174;71.0;120;80;1;1;0;0;0;1
+33027;22028;1;158;71.0;180;100;3;1;0;0;1;1
+33028;21806;2;176;120.0;140;80;1;1;0;0;1;1
+33030;19746;1;170;66.0;120;80;1;1;0;0;1;1
+33032;18766;1;153;136.0;140;90;2;1;0;0;1;0
+33035;18350;1;178;85.0;120;80;1;1;0;0;0;1
+33036;17644;1;156;76.0;120;80;1;1;0;0;0;1
+33040;19859;1;167;60.0;100;70;1;1;0;0;1;1
+33041;20189;1;165;70.0;120;80;1;1;0;0;1;0
+33042;22315;1;164;70.0;150;100;2;1;0;0;1;1
+33044;14445;2;162;62.0;120;80;1;1;0;0;1;0
+33045;19703;2;174;82.0;120;70;1;3;0;0;0;0
+33046;21778;1;161;44.0;120;80;1;1;1;0;1;0
+33047;20424;1;144;45.0;120;70;2;1;0;0;1;1
+33048;14710;1;170;63.0;130;90;1;1;0;0;1;1
+33049;15278;1;168;69.0;110;70;2;2;0;0;0;0
+33050;18418;1;165;72.0;120;80;1;1;0;0;1;1
+33051;14839;1;166;55.0;120;79;1;1;0;0;0;0
+33052;17235;1;161;51.0;90;60;1;1;0;0;1;1
+33054;19707;1;164;79.0;140;90;1;1;0;0;0;1
+33055;21271;2;170;95.0;110;80;3;1;1;0;1;1
+33057;21057;1;158;50.0;100;60;1;1;0;0;1;0
+33059;22093;1;165;67.0;120;80;1;1;0;0;1;0
+33060;19827;1;150;68.0;110;70;1;1;0;0;1;0
+33061;22589;2;161;81.0;140;80;3;2;1;1;1;1
+33062;21866;1;164;85.0;100;70;1;1;0;0;1;1
+33063;15954;1;159;64.0;120;80;1;1;0;0;1;0
+33064;19532;2;183;103.0;130;80;1;2;0;0;1;1
+33066;14628;1;158;61.0;120;80;1;1;0;0;0;0
+33067;20904;1;163;104.0;150;90;1;1;0;0;1;1
+33068;23308;1;153;90.0;120;80;1;3;0;0;1;1
+33071;20382;2;167;76.0;180;120;1;1;0;0;1;1
+33072;19055;1;165;79.0;120;80;1;1;0;0;1;0
+33073;21163;1;168;70.0;130;80;1;1;0;0;0;1
+33076;19125;2;168;86.0;150;90;2;1;0;0;1;1
+33077;22457;1;154;90.0;145;90;2;2;0;0;1;1
+33078;20232;1;169;75.0;150;90;1;1;0;0;1;0
+33081;22420;1;157;100.0;150;90;1;1;0;0;1;1
+33083;23491;1;159;62.0;120;80;1;3;0;0;1;1
+33085;18392;1;162;75.0;110;70;1;1;0;0;0;0
+33086;21125;1;162;105.0;130;80;1;2;0;0;1;0
+33087;17560;1;154;112.0;110;70;1;2;0;0;0;0
+33088;22000;1;148;63.0;120;80;1;1;0;0;1;0
+33090;18253;2;174;84.0;130;80;1;1;0;0;1;0
+33091;20252;1;167;89.0;120;80;2;1;0;0;1;1
+33093;19721;1;170;73.0;130;70;1;1;0;0;0;1
+33094;21125;2;168;70.0;120;60;1;1;0;0;1;1
+33096;15497;1;163;85.0;120;80;1;1;0;0;1;0
+33099;23302;1;182;77.0;150;100;1;1;0;0;1;1
+33104;19959;2;170;75.0;120;80;1;1;1;0;1;0
+33105;20483;1;167;60.0;120;80;1;1;0;0;1;0
+33106;20448;2;170;92.0;120;80;1;1;1;0;1;1
+33107;16130;1;153;63.0;140;90;1;1;0;0;1;1
+33108;21054;1;163;70.0;120;80;1;1;0;0;1;0
+33111;16758;1;162;77.0;130;80;1;1;0;0;0;0
+33112;21042;1;160;54.0;120;70;1;1;0;0;0;0
+33117;22341;1;157;93.0;140;90;3;2;0;0;1;1
+33119;15260;2;175;95.0;120;80;1;1;0;0;1;0
+33121;21787;1;165;70.0;120;80;1;1;0;0;0;1
+33123;22570;2;176;97.0;120;80;1;1;0;0;1;0
+33124;21252;2;175;78.0;160;1008;1;1;0;0;1;1
+33125;21829;2;168;74.0;140;80;2;1;0;0;0;1
+33126;21040;1;161;98.0;130;80;3;3;0;0;1;0
+33127;21868;1;155;64.0;100;60;1;1;0;0;1;0
+33131;19782;2;164;49.0;130;70;1;1;1;0;1;0
+33132;19018;1;160;65.0;150;100;1;1;0;0;1;1
+33134;20353;1;159;93.0;140;100;1;1;0;0;1;1
+33136;15130;1;178;70.0;120;80;1;1;0;0;1;1
+33137;21314;1;165;70.0;150;90;1;1;1;1;0;1
+33139;15420;2;169;61.0;110;70;2;1;0;0;1;1
+33140;16529;1;164;60.0;120;80;1;1;0;0;1;1
+33142;21303;1;167;67.0;110;70;1;1;0;0;1;0
+33143;16032;1;153;67.0;100;70;1;1;0;0;1;1
+33145;19075;2;169;69.0;120;80;3;3;0;0;0;1
+33146;19521;1;168;60.0;110;70;1;2;0;0;0;1
+33147;21094;2;180;100.0;120;80;1;1;0;0;1;0
+33151;17326;2;166;70.0;120;90;1;1;0;0;1;1
+33153;18927;2;175;86.0;110;70;1;1;0;0;1;0
+33155;18072;1;164;61.0;110;70;1;1;0;0;1;0
+33156;22361;2;156;54.0;130;80;1;1;0;0;1;1
+33158;19825;2;171;101.0;140;90;1;1;1;0;0;1
+33160;18266;2;178;84.0;120;80;1;1;0;0;1;1
+33161;18511;1;166;71.0;120;70;1;1;0;0;1;0
+33162;18287;1;164;118.0;150;100;1;1;0;0;0;1
+33163;18444;1;153;62.0;120;70;1;1;0;0;1;0
+33164;23142;1;154;50.0;140;70;1;1;0;0;1;0
+33166;18499;1;175;76.0;120;80;3;3;0;0;0;0
+33168;14496;1;153;52.0;100;70;1;1;0;0;1;1
+33170;15956;1;175;70.0;120;80;1;1;0;0;1;0
+33171;22496;2;154;89.0;120;80;1;1;1;1;1;1
+33172;16291;1;153;48.0;100;70;1;1;0;0;1;0
+33175;17719;2;163;74.0;120;80;1;1;0;0;1;0
+33177;15797;2;164;73.0;130;90;2;1;0;0;1;0
+33178;15977;1;160;83.0;140;90;1;1;0;0;1;1
+33179;19130;2;162;78.0;120;80;1;1;0;0;1;0
+33180;20946;1;170;58.0;120;65;1;1;0;0;0;1
+33181;23236;2;172;85.0;130;80;2;1;0;0;1;1
+33182;18452;2;173;68.0;120;80;1;1;0;0;1;0
+33183;21887;1;160;80.0;110;70;1;1;0;0;1;1
+33185;20948;2;174;91.0;170;90;2;1;1;1;1;1
+33186;17524;2;180;98.0;120;80;1;3;0;0;1;0
+33187;18420;2;172;67.0;150;90;1;1;0;0;1;1
+33188;23373;2;170;92.0;130;70;1;1;0;0;1;1
+33189;21257;2;162;65.0;130;80;1;1;0;0;0;0
+33190;18869;2;177;81.0;120;80;2;2;0;0;1;1
+33191;19932;2;170;70.0;112;5700;1;2;0;0;1;1
+33192;18790;1;164;69.0;120;80;1;1;0;0;1;1
+33193;18343;2;163;75.0;100;70;1;1;0;0;1;1
+33194;21670;2;166;65.0;100;60;3;1;1;1;1;0
+33195;18173;2;164;64.0;140;90;2;1;1;1;1;1
+33196;21719;2;167;81.0;160;80;1;1;0;0;0;1
+33197;14697;1;166;61.0;120;80;1;1;0;0;1;0
+33198;16744;1;152;80.0;120;80;1;1;0;0;0;0
+33199;17610;2;175;110.0;130;90;2;1;0;0;1;0
+33200;16657;1;157;42.0;120;80;1;1;0;0;1;0
+33205;19181;1;162;105.0;130;80;1;1;0;0;1;0
+33206;17776;1;162;108.0;120;80;1;3;0;0;1;1
+33207;21852;1;164;76.0;120;80;1;1;0;0;1;1
+33208;20877;1;169;61.0;120;80;1;1;0;0;1;0
+33209;18227;2;169;67.0;130;80;1;1;1;0;1;0
+33210;20623;1;161;74.0;120;80;1;1;0;0;1;0
+33211;14475;1;178;55.0;100;70;1;1;0;0;1;0
+33212;22581;1;170;98.0;160;100;2;2;0;0;1;0
+33215;17320;1;167;66.0;120;80;1;1;0;0;1;0
+33216;21225;1;168;60.0;120;80;1;1;0;0;0;1
+33217;22720;1;162;69.0;120;70;1;1;0;0;0;0
+33218;19112;2;170;68.0;120;80;1;1;0;0;1;0
+33219;14424;1;157;82.0;110;80;1;1;0;0;0;0
+33220;20466;1;160;62.0;120;80;1;1;0;0;1;0
+33221;20542;2;175;75.0;120;60;1;1;0;0;1;1
+33223;19535;1;163;59.0;120;70;1;1;0;0;1;0
+33225;22523;1;145;65.0;130;80;2;1;0;0;1;1
+33227;21170;1;167;78.0;120;80;1;1;0;0;0;0
+33228;23166;1;165;63.0;120;80;2;2;0;0;0;1
+33229;16920;2;154;68.0;160;90;3;1;1;0;1;1
+33230;17625;2;170;80.0;120;80;1;1;0;0;1;0
+33231;19792;1;163;110.0;150;80;3;2;0;0;1;0
+33232;20217;2;160;69.0;120;80;1;1;0;0;0;0
+33233;18892;1;159;80.0;140;100;3;3;0;0;1;1
+33235;15935;1;167;68.0;110;60;1;1;0;0;1;0
+33236;21764;1;151;76.0;150;90;3;1;0;0;1;1
+33239;16808;1;154;86.0;130;90;1;1;0;0;0;1
+33240;23513;1;152;68.0;110;70;1;1;0;0;0;1
+33241;20630;1;162;57.0;140;90;1;3;0;0;1;1
+33242;17640;1;155;81.0;110;80;1;1;0;0;1;0
+33243;23368;2;160;78.0;120;80;1;1;0;0;1;0
+33244;18955;2;165;80.0;120;80;1;1;0;0;1;1
+33245;22054;2;165;95.0;160;80;1;1;0;0;0;1
+33246;14423;1;164;93.0;120;80;1;1;0;0;1;0
+33247;21871;2;169;85.0;130;90;1;1;1;0;1;0
+33250;19588;2;169;86.0;150;100;1;2;0;0;0;1
+33251;18070;1;150;64.0;120;80;2;2;0;0;1;0
+33252;22759;2;160;60.0;120;80;1;1;0;1;1;0
+33254;17515;1;164;64.0;120;80;1;1;0;0;1;0
+33256;17479;2;178;86.0;120;70;1;1;0;0;1;1
+33257;16933;2;170;72.0;130;90;1;1;1;0;1;1
+33259;19799;2;169;70.0;120;80;1;1;0;0;1;0
+33261;22725;1;149;56.0;110;70;2;1;0;0;1;1
+33262;17732;1;159;62.0;140;90;1;1;0;0;1;1
+33265;15314;1;160;60.0;180;1000;1;1;0;0;1;0
+33266;23358;1;167;102.0;210;100;2;1;0;0;0;1
+33269;18118;1;166;58.0;110;70;1;1;0;0;1;0
+33270;23587;2;165;65.0;120;80;1;1;0;0;0;0
+33271;21083;2;158;48.0;134;90;1;1;1;0;1;0
+33272;23285;1;160;103.0;130;90;1;1;0;0;1;0
+33275;18930;1;162;60.0;140;90;1;1;0;0;1;1
+33276;15909;2;167;62.0;140;80;1;1;0;0;1;1
+33280;20251;1;160;65.0;125;80;1;1;0;0;1;0
+33281;18118;2;182;98.0;150;70;1;1;0;0;1;0
+33282;19897;2;160;60.0;120;80;1;1;0;0;0;0
+33283;16643;1;147;74.0;120;80;3;1;0;0;0;1
+33285;20691;1;170;68.0;140;100;1;1;0;0;1;1
+33286;21838;2;163;57.0;140;90;3;1;1;0;1;1
+33287;23390;2;164;62.0;110;80;1;1;0;0;0;1
+33288;21959;1;154;53.0;110;70;1;1;0;0;1;0
+33290;23372;2;186;84.0;150;80;2;1;1;0;1;1
+33291;17580;1;158;75.0;140;90;1;3;1;0;0;1
+33292;18816;1;168;80.0;110;80;1;1;0;0;1;0
+33293;20959;1;158;96.0;150;80;1;3;0;0;0;1
+33294;21722;1;160;80.0;140;90;1;1;0;0;1;1
+33295;16641;2;172;66.0;120;20;1;1;0;0;0;0
+33296;22031;1;156;84.0;130;80;1;1;0;0;1;0
+33297;19022;1;156;68.0;110;79;1;1;0;0;1;0
+33298;19763;1;165;90.0;120;80;3;1;0;0;1;0
+33301;23449;2;183;112.0;140;70;1;1;1;1;0;1
+33302;23299;1;155;79.0;130;80;1;1;1;0;1;0
+33303;21834;1;160;60.0;120;80;1;1;0;0;1;1
+33304;19040;1;175;68.0;120;80;1;1;0;0;1;0
+33305;21231;1;162;77.0;130;80;2;1;0;0;0;0
+33307;23559;2;188;81.0;120;70;1;1;0;0;1;0
+33308;18427;1;155;75.0;100;60;1;1;0;0;0;0
+33309;19645;1;160;80.0;130;80;3;1;0;0;1;1
+33310;22587;1;164;70.0;110;70;1;1;0;0;1;1
+33312;16892;2;165;96.0;150;90;1;1;1;0;1;1
+33314;21265;2;168;76.0;120;80;1;1;1;0;0;0
+33315;19004;1;155;55.0;120;80;1;1;0;0;1;0
+33316;20179;2;160;59.0;120;70;1;1;0;0;1;0
+33317;18117;1;165;68.0;120;80;1;1;0;0;0;0
+33319;19691;1;151;67.0;120;70;1;1;0;0;1;0
+33320;18389;2;168;68.0;140;90;1;2;0;0;1;1
+33321;19009;1;165;65.0;120;80;1;1;0;0;1;0
+33322;17344;2;172;83.0;140;90;1;1;0;0;1;1
+33323;21838;1;156;65.0;130;90;3;1;0;0;0;1
+33325;19822;1;169;65.0;120;80;3;3;0;0;1;1
+33326;18983;1;152;64.0;110;70;2;1;0;0;1;0
+33327;23587;1;169;55.0;110;70;1;1;0;0;1;0
+33329;22605;2;173;71.0;120;80;1;1;1;0;1;0
+33330;18238;1;169;56.0;101;70;1;1;0;0;0;0
+33331;22116;1;148;65.0;130;90;3;1;0;0;1;1
+33333;15499;1;160;64.0;120;80;1;1;0;0;1;0
+33334;19236;1;159;100.0;130;90;1;2;0;0;0;0
+33336;16141;2;175;86.0;140;100;2;1;0;0;1;1
+33337;18867;1;160;80.0;150;100;2;2;0;0;1;1
+33338;16193;1;165;63.0;120;80;1;1;0;0;1;0
+33339;20481;1;165;80.0;140;80;3;1;0;0;1;1
+33340;23338;1;155;60.0;120;80;1;1;0;0;1;1
+33341;18393;2;163;65.0;120;80;3;3;0;0;1;1
+33342;18712;2;177;92.0;130;80;1;2;0;0;1;0
+33343;17987;1;160;59.0;100;80;2;1;1;0;1;0
+33345;21898;1;158;64.0;120;80;1;1;0;0;0;1
+33346;21654;1;167;80.0;120;70;1;1;0;0;1;1
+33347;16657;2;178;76.0;110;80;2;1;0;0;1;0
+33349;21336;1;169;70.0;140;70;1;1;0;0;1;1
+33353;14561;1;164;70.0;150;90;2;2;0;0;1;1
+33354;23427;1;158;84.0;140;70;1;1;0;0;1;0
+33356;16556;1;154;80.0;120;80;1;2;0;1;1;0
+33357;19696;2;168;94.0;140;90;1;3;0;1;1;1
+33358;19635;1;163;63.0;120;80;1;1;0;0;1;0
+33359;20365;1;155;80.0;170;90;3;1;0;0;1;1
+33361;22724;2;166;78.0;130;80;1;1;0;0;1;1
+33362;17696;1;170;68.0;130;90;2;2;0;0;0;1
+33364;16220;2;169;73.0;120;80;2;1;0;0;1;0
+33366;21093;2;150;63.0;145;90;1;1;0;0;1;1
+33367;20293;1;164;64.0;120;80;1;1;0;0;0;0
+33368;14651;2;173;107.0;130;90;1;1;1;1;1;0
+33369;20326;1;158;62.0;120;80;2;1;0;0;1;1
+33371;23435;2;170;94.0;120;80;1;2;0;0;1;1
+33373;18969;1;163;65.0;120;80;2;1;0;0;1;1
+33375;19997;1;165;89.0;120;80;1;1;0;0;1;1
+33377;22082;1;168;77.0;140;90;2;1;0;0;0;1
+33379;16100;2;164;70.0;130;70;1;1;0;0;0;1
+33380;22687;1;160;80.0;150;90;1;1;0;0;1;0
+33382;18355;2;165;65.0;120;79;3;3;0;0;0;0
+33384;21308;2;185;79.0;130;60;1;1;1;0;1;0
+33385;22756;1;162;106.0;120;80;1;1;0;0;1;1
+33386;18183;1;167;89.0;120;80;1;1;0;0;1;0
+33387;21686;1;160;58.0;130;80;1;1;0;0;1;0
+33390;21992;2;173;70.0;170;1100;1;1;1;0;1;1
+33391;15476;2;185;90.0;180;60;1;1;0;0;0;0
+33393;15514;1;160;65.0;120;80;1;1;0;0;0;1
+33394;14591;2;165;67.0;120;70;1;1;0;0;1;0
+33397;20641;1;170;76.0;130;70;1;1;0;0;1;0
+33398;20323;2;176;101.0;150;100;1;1;0;0;1;0
+33399;19811;1;150;59.0;130;90;1;3;0;0;0;1
+33401;19798;1;160;68.0;120;90;1;3;0;0;1;0
+33402;19673;1;168;78.0;120;80;1;1;0;0;0;1
+33404;16646;1;160;66.0;120;80;1;1;0;0;1;0
+33405;23433;2;170;90.0;140;90;1;1;0;0;1;1
+33407;21761;2;195;125.0;145;80;3;3;0;0;1;1
+33408;22493;1;146;76.0;100;70;3;1;0;0;1;1
+33411;20974;2;171;76.0;140;90;3;1;0;0;1;1
+33413;20905;1;164;83.0;110;80;1;1;0;0;1;0
+33414;23366;1;167;76.0;140;90;1;1;0;0;1;1
+33415;14730;1;160;49.0;110;70;1;1;0;0;1;0
+33416;14389;2;165;70.0;120;80;1;1;0;0;1;0
+33419;23468;2;161;59.0;110;70;1;1;0;0;1;1
+33420;22614;2;167;77.0;130;100;1;2;0;0;1;0
+33421;18879;1;159;91.0;140;80;1;1;0;1;1;1
+33422;22457;2;170;74.0;140;90;3;1;0;0;0;1
+33423;19960;1;176;70.0;120;80;1;1;1;0;1;0
+33424;20320;2;172;70.0;140;90;1;1;0;0;1;1
+33425;23231;2;170;71.0;150;90;2;2;0;0;1;1
+33426;15229;2;165;62.0;120;70;1;1;0;0;1;1
+33427;23346;2;165;78.0;130;80;2;1;1;1;1;1
+33428;17667;1;165;68.0;120;80;1;1;0;0;1;1
+33430;17514;1;165;70.0;110;70;1;1;0;0;1;0
+33432;21018;2;172;69.0;130;90;2;1;0;0;1;1
+33434;18227;2;175;80.0;110;70;1;1;1;0;0;0
+33435;22729;2;175;75.0;138;90;3;1;0;0;1;1
+33436;21002;1;160;60.0;120;80;1;1;0;0;1;1
+33437;16915;2;167;75.0;120;80;1;1;0;0;1;0
+33439;22508;2;162;66.0;130;80;3;1;1;0;0;1
+33440;22743;1;158;79.0;170;90;1;1;0;0;1;1
+33441;17076;2;180;75.0;120;70;1;1;0;0;1;0
+33444;18053;1;165;60.0;120;80;3;1;0;0;1;1
+33447;15934;2;170;68.0;120;60;1;1;0;0;1;0
+33449;19056;1;156;108.0;120;80;1;1;0;0;1;0
+33450;22154;1;161;76.0;120;80;1;1;0;0;1;1
+33451;18221;1;166;62.0;110;80;2;2;0;0;1;0
+33452;22010;1;154;110.0;177;95;3;3;0;0;1;1
+33453;19000;1;170;75.0;120;80;3;3;0;0;1;0
+33454;15274;1;156;64.0;100;70;1;1;0;0;0;0
+33455;17291;2;162;85.0;140;100;1;1;0;0;1;0
+33456;18375;1;158;64.0;120;80;1;1;0;0;1;0
+33457;23167;1;154;80.0;136;90;3;3;0;0;1;1
+33458;21827;1;157;75.0;120;80;3;1;0;0;1;1
+33460;22092;1;173;69.0;110;80;1;1;0;0;1;0
+33461;20910;1;166;79.0;120;80;1;1;0;0;1;1
+33464;14632;2;179;91.0;120;80;1;1;1;0;1;0
+33465;21843;1;170;87.0;120;80;1;1;0;0;1;0
+33467;16537;2;172;89.0;110;80;1;1;0;0;1;1
+33468;15188;1;152;66.0;130;80;1;1;0;0;1;0
+33469;15869;1;169;70.0;120;80;2;2;0;0;0;1
+33470;20460;1;159;87.0;130;90;2;2;0;0;1;0
+33473;18088;1;169;69.0;120;80;1;1;0;0;1;0
+33474;19275;1;156;58.0;120;80;1;1;0;0;1;0
+33475;19889;1;162;75.0;100;60;2;1;0;1;1;0
+33476;22087;1;154;47.0;120;80;1;1;0;0;1;0
+33477;18146;1;158;78.0;110;70;2;1;0;0;1;0
+33478;15147;1;169;78.0;110;70;1;1;0;0;0;0
+33479;22596;1;163;98.0;100;60;1;1;0;0;1;1
+33480;18309;1;168;70.0;140;90;3;3;0;0;1;1
+33481;20430;1;164;67.0;120;80;1;1;0;0;0;0
+33482;21301;1;150;68.0;120;60;1;1;0;0;0;1
+33483;22039;1;153;90.0;90;60;1;3;0;0;1;0
+33484;21996;1;162;74.0;130;80;1;1;0;0;0;0
+33485;22361;1;157;86.0;140;80;1;1;0;0;0;1
+33489;22122;1;160;61.0;120;80;1;1;0;0;0;1
+33496;23139;1;165;95.0;120;80;1;3;0;0;1;0
+33497;16595;1;165;61.0;120;90;1;1;0;0;1;0
+33499;18698;1;163;63.0;135;90;2;1;0;0;1;1
+33500;16648;1;162;64.0;110;80;1;1;0;0;1;0
+33501;22451;1;159;95.0;120;69;3;3;0;0;1;1
+33503;21940;1;166;90.0;180;100;1;1;0;0;1;1
+33504;18349;1;164;64.0;160;80;1;1;0;0;0;1
+33505;14680;2;163;73.0;150;1000;1;1;0;0;1;1
+33506;18175;2;176;89.0;120;80;1;1;0;1;1;0
+33507;20325;2;172;89.0;120;80;1;2;0;0;1;1
+33509;17773;1;175;65.0;120;60;1;1;0;0;1;0
+33510;17673;2;169;67.0;120;80;1;1;1;1;1;0
+33511;17552;1;156;85.0;120;80;1;1;0;0;1;0
+33512;23474;2;165;64.0;110;90;2;1;0;0;1;1
+33514;15305;1;163;66.0;130;90;1;1;0;0;1;0
+33516;14364;2;172;72.0;140;80;2;1;0;0;1;1
+33517;20265;2;179;98.0;150;70;3;1;0;0;1;1
+33519;15184;1;153;63.0;110;70;1;1;0;0;0;1
+33521;17491;1;164;65.0;130;80;1;1;0;0;1;1
+33524;17359;2;168;70.0;140;90;3;3;0;0;1;1
+33525;21316;2;162;82.0;100;90;1;1;1;1;1;1
+33526;21336;1;159;56.0;150;90;1;3;0;0;1;1
+33527;21799;1;154;70.0;130;90;2;1;0;0;1;1
+33528;21793;1;160;131.0;170;100;1;3;0;0;1;1
+33530;21841;1;160;60.0;120;80;1;1;0;0;1;1
+33531;21779;1;158;79.0;140;80;1;2;0;0;1;1
+33532;22000;1;164;71.0;120;80;1;1;0;0;1;0
+33533;19582;1;171;89.0;120;80;1;1;0;0;1;0
+33534;21207;2;170;102.0;160;100;3;1;0;0;1;1
+33535;21183;2;164;69.0;120;80;3;3;0;0;1;1
+33536;19153;1;161;121.0;180;110;1;2;0;0;1;0
+33537;18754;1;162;72.0;151;90;1;1;0;0;1;1
+33540;15181;1;173;71.0;120;80;1;1;0;0;0;0
+33541;20287;1;167;67.0;120;80;1;1;0;0;1;0
+33543;19932;1;155;82.0;180;80;2;1;0;0;1;1
+33546;15375;1;161;84.0;120;80;1;1;0;0;1;1
+33547;15850;2;182;90.0;120;80;1;1;1;1;1;0
+33548;23163;1;157;76.0;140;90;3;3;0;0;1;1
+33549;16036;1;158;67.0;110;80;2;1;0;0;1;0
+33551;18952;1;161;75.0;110;70;1;1;0;0;1;0
+33553;21418;1;172;64.0;125;75;1;1;0;0;1;1
+33555;19690;1;165;65.0;120;80;1;1;0;0;0;0
+33557;19013;2;168;71.0;160;80;1;1;1;0;1;1
+33558;21092;2;169;70.0;120;80;1;1;0;0;1;0
+33559;14617;2;168;72.0;110;80;1;1;0;0;0;0
+33560;18382;2;166;74.0;90;60;1;1;0;0;1;0
+33561;21071;2;172;92.0;120;80;1;1;0;0;0;1
+33563;17392;1;169;73.0;120;80;1;2;0;0;0;0
+33564;23192;1;157;88.0;160;67;3;3;0;1;1;1
+33566;18150;1;165;88.0;130;80;3;1;0;0;1;1
+33567;15378;1;157;63.0;120;80;1;1;0;0;0;1
+33568;19782;1;153;83.0;120;80;2;1;1;0;1;1
+33569;18932;1;167;75.0;140;90;1;1;0;0;1;0
+33571;21028;1;168;75.0;160;100;1;1;0;0;1;1
+33572;22488;2;170;88.0;120;80;1;1;0;0;1;0
+33573;17487;1;158;86.0;140;90;1;1;0;0;0;1
+33575;22681;1;164;90.0;120;70;1;1;0;0;0;1
+33576;20243;2;178;95.0;110;80;3;2;0;0;1;1
+33577;18221;1;156;60.0;120;80;1;1;0;0;1;0
+33580;19746;2;169;64.0;120;8079;1;1;0;0;0;0
+33581;22833;2;174;82.0;160;90;1;3;1;0;1;1
+33582;15934;1;165;61.0;120;80;1;1;0;0;1;0
+33583;19058;1;165;58.0;150;90;1;1;0;0;1;1
+33584;17576;1;160;60.0;150;100;1;1;0;0;1;1
+33585;20684;1;164;70.0;120;80;1;1;0;0;1;0
+33588;21693;1;159;63.0;110;70;1;1;0;0;1;1
+33590;16760;1;158;55.0;110;70;1;1;0;0;1;0
+33591;18839;2;165;75.0;120;80;1;1;0;0;1;0
+33593;20644;1;160;65.0;120;80;1;1;0;0;1;0
+33594;15176;2;171;68.0;120;80;1;1;0;0;1;0
+33599;16059;1;168;90.0;120;80;1;1;0;0;1;0
+33600;21234;1;168;65.0;110;70;1;1;0;0;1;0
+33603;18188;1;161;100.0;160;95;1;1;0;0;1;1
+33604;20589;1;159;58.0;110;70;1;1;0;0;1;0
+33606;22586;1;153;72.0;120;80;1;1;0;0;1;0
+33607;17468;1;170;72.0;120;80;1;1;0;0;0;1
+33608;19139;2;174;72.0;110;79;1;1;0;0;0;0
+33612;18467;1;164;90.0;120;90;1;1;0;0;1;0
+33613;20298;1;158;96.0;140;90;3;1;0;0;1;1
+33614;17378;1;160;65.0;120;80;1;1;0;0;1;0
+33617;20549;1;158;87.0;140;80;1;1;0;0;1;1
+33618;19129;2;169;79.0;130;80;1;1;0;1;1;0
+33620;19796;2;164;65.0;140;100;1;1;0;0;1;1
+33622;19540;1;162;110.0;150;100;1;2;0;0;0;1
+33625;17359;2;181;62.0;120;80;1;1;0;0;0;0
+33628;20872;2;163;63.0;120;80;3;3;0;0;0;0
+33629;21773;1;156;62.0;100;70;2;1;1;0;0;0
+33630;18174;1;164;65.0;100;60;1;1;0;0;1;0
+33631;16855;1;153;79.0;120;80;3;1;0;0;1;1
+33632;15875;2;169;105.0;120;80;1;1;0;0;1;0
+33633;14499;1;163;69.0;120;80;1;1;0;0;0;0
+33634;22010;2;174;91.0;140;90;3;3;0;0;1;0
+33635;18147;1;165;70.0;120;80;1;1;0;0;1;0
+33637;18955;1;153;62.0;120;80;1;1;0;0;1;0
+33638;14586;1;163;66.0;110;70;2;1;0;0;1;0
+33639;21906;2;169;85.0;120;80;1;1;0;0;1;0
+33641;16810;1;154;44.0;100;70;1;2;0;0;1;0
+33642;17467;1;171;64.0;110;90;1;1;0;0;1;0
+33643;22000;1;161;71.0;140;90;2;1;0;0;1;1
+33644;17958;1;155;108.0;130;100;1;1;0;0;1;1
+33646;23205;2;162;72.0;155;100;1;1;0;0;1;1
+33647;21761;2;172;102.0;110;70;1;1;0;0;0;0
+33649;22641;2;167;73.0;140;80;1;1;0;0;1;1
+33650;20943;1;162;68.0;120;80;1;1;0;0;1;0
+33652;23555;1;165;77.0;120;80;3;3;0;0;1;1
+33655;20991;1;164;76.0;160;90;2;2;0;0;0;1
+33656;22753;2;174;82.0;144;95;1;1;0;0;1;0
+33657;21137;1;162;86.0;120;80;1;1;0;0;1;0
+33658;19525;1;161;82.0;110;70;1;1;0;0;1;0
+33659;21173;1;156;60.0;120;80;1;1;0;0;1;0
+33660;21202;2;170;67.0;130;80;1;1;0;0;1;1
+33661;18120;1;154;52.0;140;80;1;1;0;0;1;1
+33662;23462;1;168;85.0;110;95;1;2;0;0;1;1
+33664;23402;1;158;58.0;130;80;1;1;0;0;1;1
+33666;15509;2;155;55.0;120;80;1;1;0;0;1;0
+33667;18940;1;168;85.0;130;90;1;1;0;0;1;0
+33668;20623;1;165;65.0;120;80;1;1;0;0;0;0
+33669;15952;1;160;62.0;120;80;1;1;0;0;1;0
+33670;16136;2;169;71.0;100;80;1;1;1;0;1;0
+33671;17376;1;152;67.0;150;100;1;1;0;0;1;1
+33673;21096;1;160;66.0;130;80;1;1;0;0;1;0
+33675;14636;2;166;65.0;120;80;1;1;0;0;1;0
+33677;18869;2;158;59.0;120;80;2;1;0;0;0;1
+33678;14664;1;168;67.0;120;80;1;1;0;0;1;0
+33679;21239;1;166;67.0;100;60;1;1;0;0;1;1
+33680;18973;1;164;77.0;110;80;1;1;0;0;1;0
+33682;23109;1;163;66.0;120;80;1;1;0;0;1;0
+33683;21979;1;160;70.0;140;70;1;1;0;0;1;1
+33684;21792;1;156;74.0;120;80;1;1;0;0;1;0
+33685;21480;1;160;95.0;150;90;2;2;0;0;0;1
+33686;21104;1;170;70.0;120;80;1;1;0;0;1;0
+33687;20306;1;157;78.0;150;100;1;1;0;0;1;1
+33688;20693;2;166;97.0;110;70;1;3;0;0;1;0
+33689;16968;1;165;63.0;110;80;1;2;0;0;1;1
+33692;16778;2;167;95.0;120;80;1;1;0;0;1;0
+33695;18249;1;160;60.0;120;80;1;1;0;0;1;1
+33697;18319;1;162;65.0;110;80;3;1;0;1;1;1
+33698;22366;1;165;76.0;120;80;2;2;0;0;1;1
+33699;22702;2;174;67.0;120;80;1;1;1;0;1;0
+33704;23146;1;157;55.0;130;80;2;1;0;0;1;0
+33705;19693;1;158;64.0;120;80;1;1;0;0;1;1
+33706;18879;2;168;72.0;120;80;1;1;0;0;1;0
+33707;18153;1;160;65.0;120;80;1;1;0;0;1;0
+33708;23424;1;160;78.0;140;90;1;1;0;0;1;0
+33709;18955;2;169;73.0;120;80;1;3;1;0;1;0
+33710;19032;2;170;80.0;120;80;1;1;0;0;1;1
+33711;20295;2;168;55.0;110;70;1;1;0;0;1;0
+33712;23407;1;150;63.0;140;80;1;1;0;0;0;1
+33713;17433;1;158;58.0;100;70;1;1;0;0;1;0
+33718;18052;2;170;98.0;120;80;3;3;0;0;1;1
+33719;19020;1;163;72.0;105;70;3;3;1;0;1;0
+33720;18037;1;165;80.0;130;90;1;1;0;0;1;0
+33721;17465;1;159;56.0;130;80;2;1;0;0;1;1
+33723;15294;2;163;70.0;120;80;1;1;0;0;0;0
+33724;23557;1;147;80.0;160;100;1;1;0;0;0;0
+33725;19641;1;154;76.0;150;1100;1;1;0;0;1;0
+33730;19903;2;168;68.0;120;70;1;1;1;0;1;0
+33731;15952;1;154;77.0;100;60;1;1;0;0;1;0
+33733;21070;1;157;54.0;130;80;3;3;0;0;1;0
+33736;16701;1;160;84.0;110;70;1;1;0;0;1;0
+33737;21085;1;156;62.0;120;70;1;1;0;0;1;0
+33739;14630;2;173;71.0;110;80;1;1;0;0;0;0
+33740;21911;1;150;61.0;120;80;1;1;0;0;0;1
+33741;21741;1;154;90.0;168;90;2;1;0;0;1;1
+33742;20932;1;151;82.0;120;80;3;3;0;0;1;1
+33744;18973;1;155;82.0;130;80;1;3;0;0;1;0
+33745;23343;1;162;90.0;140;90;1;1;0;0;1;1
+33749;19754;1;165;50.0;120;80;1;1;0;0;0;1
+33750;19785;2;172;94.0;120;80;1;1;0;0;0;1
+33751;20513;1;164;78.0;120;80;1;1;0;0;1;1
+33752;15380;2;174;70.0;120;80;1;1;0;0;1;0
+33753;19569;1;160;69.0;140;90;1;1;0;0;1;1
+33754;18848;2;164;88.0;140;90;3;1;0;0;1;1
+33756;18949;2;160;70.0;140;90;1;1;0;0;1;1
+33758;23336;1;149;49.0;158;80;1;2;0;0;1;1
+33759;20678;1;174;69.0;120;80;3;3;0;0;1;1
+33760;15861;1;170;90.0;120;80;1;1;0;0;1;0
+33761;17402;2;177;107.0;140;90;1;1;0;0;1;1
+33763;22054;1;156;84.0;120;80;1;1;0;0;0;0
+33765;21976;2;183;91.0;150;90;3;2;0;0;1;0
+33766;19072;1;169;65.0;120;80;1;1;0;0;0;1
+33767;19586;1;169;65.0;120;80;1;1;0;0;0;1
+33769;15185;1;150;60.0;115;75;1;1;0;0;1;1
+33770;20429;1;178;66.0;120;80;1;1;0;0;0;1
+33772;20677;1;164;61.0;120;80;1;1;0;0;1;0
+33776;17686;1;165;70.0;120;80;1;1;0;0;1;1
+33777;16019;2;171;75.0;130;80;1;1;1;1;1;0
+33780;17371;2;165;63.0;120;80;1;1;1;1;1;0
+33782;22541;2;174;57.0;90;60;1;1;0;0;0;0
+33783;19834;2;166;68.0;120;80;1;1;0;0;0;1
+33785;22037;2;168;59.0;160;100;2;1;0;0;1;1
+33786;15795;1;165;56.0;140;90;1;1;1;1;1;0
+33788;19645;2;165;111.0;145;80;2;1;0;0;1;1
+33789;21680;1;158;62.0;110;70;2;1;0;0;1;0
+33790;21217;1;165;72.0;130;90;3;1;0;0;1;0
+33792;14810;2;188;90.0;150;80;2;1;1;0;1;1
+33793;15589;2;175;72.0;120;80;1;1;0;0;0;0
+33794;16729;2;176;80.0;120;80;1;1;0;0;1;0
+33795;14824;2;175;75.0;120;80;1;1;0;0;1;0
+33796;22208;1;160;76.0;140;90;1;1;0;0;0;1
+33797;20500;1;155;93.0;130;80;1;1;0;0;0;0
+33798;21969;1;168;75.0;130;90;1;1;0;0;1;1
+33799;20266;1;159;70.0;110;70;1;1;0;0;0;0
+33800;14451;1;160;58.0;90;60;1;1;0;0;1;0
+33801;18235;1;155;60.0;110;60;1;1;0;0;0;0
+33802;23522;1;165;72.0;120;80;3;3;0;0;1;1
+33803;16976;2;172;74.0;110;70;1;1;0;0;1;0
+33804;20289;1;154;72.0;170;100;3;1;0;0;1;1
+33805;21898;1;164;77.0;180;100;2;1;0;0;1;1
+33806;21840;1;164;74.0;110;70;1;1;0;0;1;1
+33807;21070;1;160;70.0;114;75;1;1;0;0;0;0
+33808;18240;1;165;85.0;120;80;1;1;0;0;1;1
+33809;23346;1;157;86.0;125;80;1;1;0;0;1;1
+33811;19657;1;166;75.0;120;80;1;1;0;0;1;0
+33812;19934;1;168;68.0;120;75;1;1;0;0;1;0
+33814;21009;1;150;74.0;120;80;3;1;0;0;1;1
+33815;15307;2;174;62.0;140;90;1;1;0;0;1;1
+33816;19274;1;152;75.0;120;80;2;1;0;0;0;1
+33817;15101;1;152;40.0;110;70;1;1;0;0;1;0
+33818;21949;1;158;110.0;140;110;1;1;0;0;1;1
+33819;20513;1;155;98.0;160;100;2;1;0;1;1;0
+33821;14519;2;165;67.0;110;80;1;1;0;0;1;0
+33822;20333;1;179;86.0;130;80;3;3;0;0;0;1
+33824;17283;1;161;81.0;140;90;1;1;0;0;1;1
+33825;22060;1;157;45.0;90;60;1;1;0;0;0;0
+33827;17647;1;160;102.0;130;70;1;1;0;0;0;1
+33828;18165;2;167;72.0;130;90;1;1;0;0;1;1
+33830;19589;2;166;67.0;130;90;1;1;0;0;1;0
+33831;18081;2;164;59.0;120;80;1;1;0;0;1;1
+33832;21329;2;164;82.0;145;100;1;1;0;1;0;1
+33835;17681;2;172;69.0;125;80;1;1;1;0;1;0
+33838;19603;1;152;69.0;150;85;3;1;0;0;1;1
+33839;23570;1;168;72.0;145;90;2;2;0;0;1;1
+33847;21954;1;162;65.0;120;80;2;1;0;0;1;0
+33848;14606;1;156;74.0;140;80;1;1;0;0;1;0
+33851;18924;2;165;73.0;120;80;1;1;0;0;0;0
+33852;17516;2;168;65.0;120;80;1;1;0;0;1;0
+33853;20220;2;180;103.0;120;80;3;1;0;0;1;1
+33854;22715;1;155;61.0;140;90;2;1;0;0;1;1
+33855;23365;1;154;75.0;140;80;2;1;0;0;1;1
+33856;22042;2;166;77.0;110;70;1;1;0;0;1;0
+33858;19823;2;175;86.0;120;80;1;1;1;1;1;1
+33859;16672;2;170;70.0;120;80;1;1;1;1;0;0
+33860;18283;2;170;70.0;120;80;1;1;0;0;1;1
+33862;21333;2;172;82.0;120;70;1;1;1;0;1;0
+33863;18835;1;162;55.0;160;90;1;1;0;0;1;1
+33865;19747;1;166;68.0;110;70;3;1;0;0;1;1
+33866;22451;1;155;70.0;140;80;3;1;0;0;1;1
+33868;14277;2;168;109.0;150;100;1;2;0;1;1;1
+33869;20860;2;164;110.0;140;90;3;1;0;0;1;0
+33870;23289;2;171;63.0;160;90;3;1;0;0;1;1
+33871;20368;1;154;56.0;130;80;3;1;0;0;1;0
+33872;16022;1;142;40.0;90;60;1;1;0;0;1;0
+33873;20448;2;156;58.0;140;90;1;1;0;0;1;1
+33875;21981;1;157;68.0;120;80;1;1;0;0;1;1
+33876;23482;1;169;63.0;140;70;1;1;0;0;1;1
+33878;17567;2;167;66.0;150;90;2;2;0;0;1;1
+33879;19185;2;163;62.0;120;80;1;1;0;0;0;0
+33880;20250;1;157;59.0;120;80;1;1;0;0;1;0
+33881;18883;1;155;56.0;130;80;1;1;0;0;0;0
+33882;17476;1;160;60.0;70;110;1;1;0;0;1;0
+33883;20219;1;164;72.0;160;100;1;1;0;0;1;1
+33884;23342;1;167;110.0;140;90;1;3;0;0;1;1
+33885;16003;1;154;43.0;120;80;1;1;0;0;1;0
+33886;19074;1;162;65.0;120;80;1;1;0;0;1;0
+33887;23486;1;165;62.0;120;80;1;1;0;0;1;1
+33888;22714;2;170;72.0;150;80;3;1;0;0;1;1
+33890;21416;1;180;72.0;120;80;1;1;0;0;1;1
+33893;18530;1;156;85.0;120;70;1;1;0;1;1;0
+33894;18045;1;170;70.0;120;80;1;1;0;0;1;0
+33895;21931;1;150;100.0;150;80;3;1;0;0;0;1
+33896;17446;1;167;97.0;146;82;2;2;0;1;1;1
+33899;14443;1;165;63.0;120;70;1;1;0;0;1;1
+33900;19057;2;177;82.0;120;90;1;1;1;1;1;0
+33901;16890;2;180;81.0;120;80;1;1;1;1;1;0
+33903;16084;1;165;98.0;120;80;1;1;0;0;1;0
+33904;18149;2;188;90.0;120;80;3;1;0;0;1;1
+33905;20363;1;176;85.0;140;90;1;1;0;0;1;1
+33907;15928;1;153;59.0;100;70;1;1;0;0;1;0
+33908;18866;1;175;65.0;120;80;1;1;0;0;1;0
+33910;21906;2;179;75.0;120;80;1;1;1;0;1;0
+33911;19751;2;155;70.0;120;80;2;1;0;0;1;0
+33913;21886;1;180;82.0;120;80;3;3;0;0;0;1
+33915;18245;1;159;82.0;120;90;1;1;0;0;1;0
+33916;16153;1;166;70.0;120;80;1;1;0;0;1;0
+33917;22743;1;156;73.0;120;80;1;1;0;0;0;1
+33919;22669;1;177;75.0;150;90;1;1;0;0;1;0
+33921;15162;1;160;76.0;100;70;1;1;0;0;1;0
+33922;23242;1;164;85.0;120;80;3;3;0;0;1;1
+33923;14644;1;157;65.0;100;80;1;2;0;1;1;1
+33924;21077;1;153;68.0;130;90;2;1;0;0;1;0
+33925;22742;2;172;84.0;120;80;1;3;0;0;0;0
+33926;20968;2;172;75.0;120;80;1;1;0;0;1;1
+33927;19899;2;178;76.0;150;80;1;1;1;0;1;1
+33928;22768;2;172;82.0;110;60;1;1;1;0;1;1
+33929;21119;1;165;64.0;120;80;3;1;0;0;1;0
+33931;18787;2;175;63.0;130;80;1;1;0;0;1;0
+33932;16834;1;165;65.0;120;80;1;1;0;0;1;0
+33933;22635;2;169;79.0;140;80;3;3;0;1;1;1
+33934;16153;1;161;77.0;100;60;1;1;0;0;1;0
+33936;23351;1;156;70.0;100;70;1;1;0;0;0;1
+33938;19902;1;160;55.0;120;80;1;1;0;0;0;0
+33939;15322;2;166;82.0;120;80;1;1;0;0;0;0
+33940;20459;1;160;63.0;120;80;1;1;0;0;1;0
+33941;21866;1;161;92.0;150;90;3;3;0;0;1;1
+33942;21793;1;150;68.0;120;80;1;1;0;0;1;0
+33943;14693;1;161;88.0;120;80;1;1;0;0;1;0
+33944;20948;2;172;66.0;150;90;1;1;0;0;1;1
+33945;18315;1;171;70.0;110;80;1;1;0;0;1;0
+33949;21242;1;155;58.0;160;100;3;1;0;0;1;1
+33950;15569;1;156;64.0;140;90;3;1;0;0;0;1
+33951;23181;1;147;67.0;160;90;1;1;0;0;1;1
+33952;17428;1;153;70.0;110;70;1;1;0;0;0;0
+33953;15403;1;168;64.0;90;60;1;1;0;0;1;0
+33956;19668;1;159;76.0;120;80;1;1;0;0;1;0
+33957;21280;1;158;89.0;120;80;1;1;0;0;1;0
+33958;20569;2;170;96.0;140;90;3;1;0;0;1;1
+33960;21940;2;171;90.0;150;90;1;1;0;0;1;1
+33962;20209;1;154;78.0;120;80;3;3;0;1;0;1
+33963;16043;1;165;60.0;120;60;1;1;0;0;1;0
+33964;21170;1;169;65.0;120;80;3;3;0;0;1;0
+33965;18399;2;165;80.0;130;80;1;1;1;0;0;0
+33968;16861;1;161;102.0;140;90;3;3;0;0;1;0
+33970;20330;1;162;57.0;120;80;1;1;0;0;1;0
+33971;23351;1;155;68.0;120;80;2;1;0;0;0;1
+33972;16269;2;162;62.0;120;80;1;1;0;0;1;0
+33974;16525;1;165;69.0;120;80;1;1;0;0;1;1
+33976;21445;1;161;102.0;150;90;3;1;0;0;1;1
+33978;14629;2;167;87.0;120;80;1;1;0;0;1;0
+33980;21935;1;152;62.0;140;70;1;1;0;0;0;1
+33981;18799;2;187;75.0;120;80;1;1;0;0;1;0
+33982;18886;1;163;65.0;110;70;2;1;0;0;1;1
+33983;20574;1;166;70.0;110;70;1;1;0;0;1;1
+33984;15277;2;174;85.0;120;80;1;1;0;0;1;0
+33985;14396;1;133;89.0;110;70;1;1;0;0;1;0
+33986;20855;1;167;72.0;130;79;3;1;0;0;1;1
+33988;21107;2;180;81.0;140;90;3;1;0;1;1;1
+33992;15345;1;158;62.0;140;90;1;1;0;0;0;0
+33993;19779;1;156;57.0;120;80;1;1;0;0;1;0
+33997;20248;1;160;71.0;140;100;1;3;0;0;1;1
+33999;19176;1;150;61.0;120;80;1;1;0;0;1;0
+34000;20383;1;168;95.0;120;80;2;1;0;0;1;0
+34002;19612;1;166;65.0;130;95;2;1;0;1;1;1
+34003;14583;1;150;80.0;135;95;1;1;0;0;1;0
+34004;21099;2;160;60.0;120;80;1;1;0;0;1;1
+34006;17309;1;159;103.0;140;80;1;3;0;0;1;1
+34007;17349;1;158;63.0;100;70;1;1;0;0;1;0
+34008;23578;1;172;105.0;160;90;1;1;0;0;1;1
+34009;19688;1;164;75.0;110;80;2;1;0;1;1;0
+34010;21395;1;162;52.0;120;80;3;3;0;0;1;0
+34011;18803;2;175;85.0;150;90;1;1;0;0;1;1
+34013;18923;1;160;66.0;130;80;1;1;0;0;0;0
+34014;19683;1;160;87.0;120;80;1;1;0;0;1;0
+34015;20249;1;158;82.0;160;90;2;2;0;0;1;1
+34016;19015;2;151;70.0;120;70;1;1;0;0;1;1
+34017;16517;2;167;71.0;140;90;1;1;1;1;1;1
+34019;23358;1;161;72.0;130;80;1;1;0;0;0;1
+34021;20260;2;160;80.0;130;80;1;1;0;0;1;1
+34022;22439;1;164;70.0;110;70;1;1;0;0;1;1
+34023;19693;2;172;78.0;100;80;1;1;0;0;1;0
+34024;15180;2;167;54.0;120;80;1;1;1;1;1;0
+34026;22560;1;155;58.0;140;90;1;2;0;0;1;1
+34028;21894;2;176;86.0;130;80;3;3;0;0;0;1
+34030;20998;2;173;98.0;200;100;3;3;0;0;1;1
+34032;22134;2;163;73.0;120;80;2;1;0;0;1;1
+34033;16732;2;164;68.0;130;70;1;1;0;0;1;1
+34034;15328;1;158;60.0;100;80;1;1;0;0;1;0
+34036;21751;1;157;64.0;110;90;3;1;0;0;1;1
+34040;21257;1;162;61.0;120;80;1;1;0;0;1;0
+34043;17562;1;174;58.0;130;80;1;1;0;0;0;1
+34044;16800;1;161;56.0;140;90;2;1;0;0;1;1
+34047;20431;1;153;73.0;130;80;1;1;0;0;1;1
+34048;19665;1;155;78.0;140;90;1;1;0;0;1;1
+34049;15274;1;169;67.0;130;90;1;1;0;0;1;0
+34050;20510;2;185;75.0;120;80;1;1;0;0;1;0
+34051;21149;1;178;89.0;120;80;3;3;0;0;1;0
+34052;16810;1;156;66.0;130;80;3;1;0;0;0;1
+34053;22030;1;155;64.0;110;69;1;1;0;0;1;0
+34055;18352;1;167;66.0;120;80;1;1;0;0;1;1
+34057;21885;2;165;61.0;170;100;1;1;0;0;1;1
+34058;17996;1;166;88.0;120;80;1;1;0;0;1;0
+34059;14666;1;155;62.0;90;60;1;1;0;0;1;0
+34060;21882;2;178;115.0;150;100;2;1;0;1;1;1
+34062;22789;2;160;63.0;140;90;1;3;0;0;1;1
+34063;21027;2;170;70.0;120;80;1;1;0;0;1;1
+34065;19711;2;168;82.0;130;90;3;1;0;0;1;1
+34066;20203;2;166;73.0;130;80;3;2;1;0;1;1
+34067;21338;1;165;85.0;130;90;1;1;0;0;1;1
+34068;18891;1;163;73.8;115;80;2;2;0;0;0;0
+34069;19150;1;166;96.0;110;70;1;1;0;0;1;0
+34070;14330;2;170;67.0;100;60;1;1;0;0;1;0
+34074;20305;2;164;61.0;110;70;1;1;0;0;1;0
+34075;20511;1;172;80.0;130;90;2;1;0;0;1;0
+34076;19497;2;173;80.0;90;60;1;1;1;0;1;0
+34078;15239;2;170;97.0;120;80;1;1;0;0;1;0
+34080;23382;1;165;79.0;140;80;1;1;0;0;1;0
+34082;15218;2;179;82.0;120;80;1;1;0;0;1;0
+34083;21890;2;171;79.0;120;80;1;1;0;0;1;1
+34085;22696;2;178;68.0;130;90;1;1;0;0;1;1
+34087;15378;1;168;58.0;120;80;1;1;0;0;0;0
+34089;22648;1;160;60.0;120;70;1;1;0;0;1;0
+34090;19304;2;160;52.0;120;80;1;1;0;0;1;0
+34091;19471;2;169;79.0;120;80;2;1;0;0;1;1
+34093;18153;1;159;62.0;120;80;1;1;0;0;1;1
+34096;14517;1;164;73.0;110;70;1;1;0;0;1;0
+34097;23372;1;155;53.0;100;70;1;1;0;0;0;1
+34098;18102;2;169;86.0;150;10000;2;2;0;1;1;1
+34100;21588;1;160;62.0;140;90;1;1;0;0;1;1
+34101;21233;1;151;100.0;130;80;3;3;0;0;1;0
+34102;16800;2;189;82.0;100;60;1;1;0;0;1;0
+34103;18468;1;156;71.0;100;70;1;1;0;0;1;0
+34105;19075;1;167;72.0;120;70;2;2;0;0;0;0
+34106;22490;2;165;62.0;140;90;1;1;0;0;0;1
+34108;19144;2;178;115.0;140;80;1;1;1;0;0;1
+34109;21374;1;156;75.0;140;90;3;1;0;0;1;1
+34110;20402;1;169;56.2;150;90;1;1;0;0;1;1
+34111;15214;2;175;93.0;125;80;1;3;0;0;1;0
+34112;19233;2;163;63.0;120;80;1;1;0;0;0;1
+34113;15443;1;158;67.0;120;80;1;1;0;0;1;0
+34114;21824;2;175;72.0;170;90;1;1;0;0;1;1
+34115;23270;2;170;65.0;150;100;1;1;0;0;0;1
+34116;17440;1;165;63.0;120;80;1;1;0;0;1;0
+34118;20400;1;163;93.0;130;80;2;1;0;0;1;1
+34119;20658;1;164;72.0;140;90;2;2;0;0;1;1
+34120;16131;1;161;92.0;906;0;2;1;0;0;1;1
+34121;18527;2;178;82.0;120;80;2;1;1;0;1;0
+34122;15999;2;172;79.0;120;80;1;1;1;0;1;0
+34123;23274;2;174;60.0;130;80;1;1;0;0;1;1
+34125;21184;1;156;72.0;150;80;3;3;0;0;1;1
+34126;21273;1;167;102.0;140;80;1;3;0;0;1;1
+34128;18963;1;163;54.0;120;80;1;1;0;0;0;0
+34129;14686;1;170;68.0;120;80;1;1;0;0;0;0
+34131;22771;1;158;59.0;120;80;1;1;0;0;0;0
+34132;20398;1;164;65.0;140;100;1;1;0;0;0;1
+34133;15360;1;159;75.0;120;70;1;1;0;0;1;0
+34134;20652;1;172;78.0;160;80;1;3;0;0;1;1
+34135;19159;2;162;60.0;120;80;1;1;0;0;1;0
+34137;21956;1;164;57.0;100;60;2;3;0;0;0;0
+34138;15855;1;180;69.0;115;70;1;1;0;0;1;1
+34140;21928;1;156;52.0;120;80;2;1;0;0;1;1
+34141;14677;1;164;60.0;110;70;1;2;0;0;0;0
+34143;19002;1;165;85.0;120;70;1;1;0;0;1;1
+34144;18805;1;162;92.0;140;80;2;1;0;0;1;1
+34145;21367;2;180;78.0;120;80;1;1;0;0;1;0
+34146;19520;1;152;84.0;130;80;1;1;0;0;1;1
+34147;21045;1;150;57.0;148;89;1;1;0;0;0;0
+34149;19597;1;162;77.0;130;80;1;2;0;0;0;0
+34151;18309;1;165;65.0;120;80;1;1;0;0;1;1
+34153;15423;1;173;90.0;120;80;1;1;0;0;0;1
+34154;19662;2;160;62.0;120;80;1;1;1;0;1;0
+34156;19241;1;169;60.0;120;80;3;3;0;0;0;0
+34157;22567;1;156;56.0;120;80;1;1;0;0;1;1
+34158;23177;1;149;75.0;120;80;3;1;0;0;1;0
+34159;20140;2;160;70.0;120;80;3;1;0;0;1;0
+34160;16724;1;169;141.0;150;90;2;1;0;0;0;1
+34161;21183;1;162;65.0;120;80;3;3;0;0;1;1
+34167;14829;1;152;48.0;110;70;1;1;0;0;1;0
+34168;19697;2;177;77.0;120;80;1;1;0;0;1;0
+34169;19228;1;164;70.0;120;80;3;3;0;0;1;1
+34170;21867;2;167;71.0;130;80;1;1;0;0;1;1
+34172;22031;1;160;65.0;140;80;3;3;0;0;1;0
+34173;19641;2;179;75.0;120;70;1;1;0;1;1;0
+34174;18196;1;168;65.0;120;80;1;1;0;0;1;0
+34175;20371;1;155;90.0;180;100;1;1;0;0;0;1
+34176;19665;2;172;70.0;120;80;1;1;0;0;1;0
+34177;21755;1;156;70.0;130;80;3;3;0;0;1;1
+34178;15362;1;161;67.0;130;90;1;1;0;0;1;1
+34180;14488;1;165;62.0;120;80;1;1;0;0;1;0
+34181;21898;1;155;95.0;160;80;3;1;0;0;0;1
+34182;21086;2;171;97.0;150;90;1;1;0;0;1;1
+34186;19074;1;81;156.0;140;90;1;1;0;0;1;0
+34187;17454;2;169;76.0;110;80;2;1;1;1;1;1
+34188;19770;2;156;52.0;120;80;1;1;0;0;1;0
+34192;20216;1;165;81.0;150;90;2;1;0;0;1;0
+34195;15328;1;164;54.0;100;60;1;1;0;0;1;0
+34196;18726;1;159;62.0;120;80;1;1;0;0;1;0
+34197;23278;2;161;59.0;150;80;3;1;0;0;1;1
+34198;20345;2;176;87.0;120;80;1;1;0;0;1;1
+34202;18273;2;169;75.0;110;70;1;1;0;0;1;0
+34204;18780;1;178;85.0;120;80;1;1;0;0;0;0
+34206;19626;2;169;83.0;110;79;1;1;0;0;0;1
+34207;22604;2;156;65.0;120;80;1;1;0;0;1;0
+34211;15952;1;159;56.0;100;60;1;1;0;0;1;0
+34212;19834;1;166;63.0;120;80;1;1;0;0;1;1
+34213;23384;1;162;99.0;130;79;2;2;0;0;1;0
+34214;19819;2;170;90.0;120;80;1;1;0;0;1;0
+34215;21379;2;170;81.0;120;79;1;1;1;0;1;1
+34216;17442;1;157;50.0;100;70;1;1;0;0;1;0
+34217;16012;1;162;71.0;110;70;1;1;0;0;1;0
+34220;18964;1;168;67.0;130;80;1;1;0;0;0;0
+34222;15941;2;170;68.0;110;70;1;1;0;0;1;0
+34223;21228;1;159;60.0;120;80;1;1;0;0;1;0
+34224;22542;2;160;65.0;100;80;1;1;0;0;1;1
+34227;19522;1;156;67.0;150;90;1;1;0;0;1;1
+34228;21145;2;168;67.0;140;90;1;1;0;0;1;1
+34229;22022;1;162;72.0;130;70;2;2;0;0;1;1
+34230;17938;1;170;61.0;110;70;1;1;0;0;1;0
+34231;23391;2;164;75.0;140;90;2;1;0;0;1;0
+34234;15315;1;156;55.0;90;70;1;1;0;0;1;0
+34237;21505;1;169;70.0;110;80;2;2;0;0;1;1
+34238;20396;1;163;70.0;140;90;1;1;0;0;0;1
+34239;21812;2;171;70.0;120;80;1;1;0;0;1;0
+34240;18290;1;165;84.0;110;70;2;1;0;1;1;0
+34241;18265;2;171;78.0;125;85;1;1;1;0;1;0
+34242;20933;1;156;47.0;150;80;2;1;0;0;1;0
+34243;18926;1;162;88.0;120;80;1;1;0;0;1;1
+34245;18049;1;163;73.0;140;90;1;1;0;0;1;1
+34247;21147;1;156;69.5;150;90;1;1;0;0;1;1
+34248;20376;1;164;78.0;120;80;1;1;0;0;1;1
+34250;20386;1;162;58.0;120;90;1;1;0;0;1;0
+34251;20961;1;165;69.0;140;90;3;1;0;0;1;1
+34252;18873;1;163;98.0;170;100;2;1;0;0;1;1
+34253;21175;1;165;81.0;140;100;2;1;0;0;0;1
+34254;18811;2;165;65.0;110;80;1;1;0;0;0;0
+34257;19756;1;170;75.0;120;80;1;1;0;0;1;1
+34258;23293;1;156;56.0;120;80;1;1;0;0;1;1
+34260;18386;1;162;96.0;130;70;3;1;0;0;1;1
+34261;14359;2;169;82.0;120;80;1;1;0;0;0;0
+34262;23101;2;169;97.0;140;90;2;1;0;0;0;1
+34265;20563;1;162;61.0;150;100;1;1;0;0;1;1
+34266;16279;2;167;70.0;120;80;1;1;1;0;1;0
+34267;19646;1;170;89.0;120;80;1;1;0;0;1;0
+34268;18811;2;168;92.0;135;90;1;3;0;0;1;0
+34270;22025;1;165;94.0;130;70;1;1;0;0;1;1
+34272;16754;1;163;70.0;140;80;1;1;0;0;1;0
+34273;18847;1;158;52.0;90;60;1;1;0;0;1;0
+34275;21369;1;156;90.0;150;90;1;1;0;0;1;0
+34276;22104;1;150;73.0;120;80;1;1;0;0;0;1
+34277;22023;1;174;70.0;160;100;1;1;0;0;1;1
+34278;21844;2;178;80.0;150;90;2;1;1;0;0;1
+34279;19928;2;170;67.0;140;90;1;1;1;1;1;1
+34280;22671;2;180;70.0;120;80;1;1;1;0;0;1
+34281;17011;2;178;76.0;160;100;1;1;0;0;1;1
+34282;17492;1;170;78.0;140;90;2;1;0;0;0;1
+34283;17676;2;180;72.0;110;70;1;1;0;0;0;0
+34284;20664;1;165;63.0;120;70;1;1;0;0;0;1
+34285;22563;1;162;71.5;140;80;3;1;0;0;1;1
+34286;18879;1;162;85.0;140;90;1;1;0;0;1;1
+34287;21958;1;168;75.0;120;80;1;1;0;0;1;1
+34289;19480;1;165;68.0;120;80;1;1;0;0;1;0
+34290;21698;1;155;63.0;110;70;1;1;0;0;1;0
+34291;21838;2;172;75.0;120;80;1;1;0;0;1;1
+34292;20585;1;163;68.0;120;80;1;1;0;0;1;0
+34293;17545;2;168;79.0;150;80;1;1;0;0;0;1
+34294;19039;1;149;60.0;130;90;1;1;0;0;1;1
+34295;18301;1;162;74.0;-140;90;1;1;0;0;1;1
+34296;19720;2;171;104.0;120;80;3;3;0;0;0;1
+34297;19080;1;158;66.0;140;90;1;1;0;0;1;1
+34298;19929;2;163;53.0;115;80;1;1;0;0;0;0
+34299;19847;1;150;50.0;120;80;1;1;0;0;1;1
+34300;21722;1;165;88.0;120;75;1;1;0;0;1;1
+34301;22745;2;183;90.0;130;70;1;1;0;0;1;0
+34302;19938;1;155;82.0;110;70;1;1;0;0;1;0
+34303;17613;1;163;81.0;130;70;3;3;0;0;1;0
+34305;14727;1;156;59.0;120;70;1;1;0;0;1;0
+34309;21289;1;162;63.0;120;80;1;1;0;0;1;1
+34310;16020;1;162;99.0;110;70;1;1;0;0;1;0
+34311;21260;2;168;82.0;140;90;2;1;0;1;1;1
+34312;17545;2;173;75.0;120;80;1;1;0;0;0;0
+34313;16019;1;174;87.0;145;95;1;1;1;0;1;0
+34314;22532;2;172;80.0;130;90;1;1;0;0;1;0
+34315;21323;1;168;111.0;120;80;1;1;0;0;1;1
+34316;20520;2;170;106.0;120;80;1;1;1;0;1;0
+34317;22013;1;120;90.0;120;80;1;1;0;0;0;0
+34318;21198;1;174;65.0;120;80;1;1;0;0;1;0
+34319;18220;2;172;69.0;120;80;1;1;0;0;1;0
+34320;16784;1;158;70.0;110;70;1;1;0;0;1;0
+34321;20235;2;154;60.0;120;80;1;3;0;0;1;0
+34322;21867;1;146;84.0;160;100;2;1;0;0;1;1
+34324;21865;1;156;50.0;90;60;1;1;0;0;0;1
+34326;21980;1;158;87.0;130;90;3;1;0;0;1;1
+34327;18958;1;167;58.0;90;60;1;1;0;0;0;0
+34328;16699;1;165;92.0;117;74;1;1;0;0;1;0
+34329;15126;1;158;70.0;100;60;1;1;0;0;1;0
+34331;19817;1;153;52.0;120;80;1;1;0;0;1;0
+34332;19690;2;170;74.0;120;80;1;1;0;0;1;1
+34333;16075;2;166;62.0;120;80;1;1;1;0;0;0
+34334;18182;2;164;72.0;140;80;3;3;0;0;1;1
+34336;21908;2;170;70.0;120;80;1;1;0;0;1;0
+34337;14677;1;175;100.0;120;80;1;1;0;0;1;0
+34340;21760;1;168;65.0;140;80;2;2;1;0;1;1
+34341;17989;1;150;62.0;140;86;3;1;0;0;1;1
+34342;21016;1;167;71.0;120;80;3;3;0;0;0;1
+34343;20506;1;154;62.0;110;70;1;1;0;0;1;0
+34344;21117;2;169;79.0;120;80;1;1;0;0;0;0
+34345;23499;1;152;60.0;180;100;2;1;0;0;1;0
+34347;20566;2;159;73.0;120;80;1;1;1;0;0;0
+34349;18052;1;165;75.0;120;80;1;1;0;0;1;0
+34351;15996;1;163;92.0;120;80;1;1;0;0;1;1
+34352;22633;1;165;90.0;140;90;3;1;0;0;1;1
+34353;15797;1;154;73.0;110;70;1;1;0;0;1;0
+34354;21065;1;156;58.0;120;80;1;1;0;0;0;0
+34356;16087;1;164;65.0;120;70;1;1;0;1;1;0
+34357;20262;2;177;86.0;120;80;1;1;1;0;0;1
+34360;16620;1;161;77.0;130;100;1;1;0;0;1;1
+34361;21108;1;160;60.0;120;80;1;1;0;0;0;0
+34362;15345;2;165;50.0;100;60;1;1;0;0;1;0
+34363;16090;1;161;77.0;120;80;1;1;0;0;1;0
+34365;21040;1;156;47.0;130;90;3;1;0;0;1;1
+34366;18236;2;170;75.0;130;90;1;1;0;0;0;1
+34367;21280;1;156;79.0;120;60;1;3;0;0;1;0
+34371;21943;1;154;81.0;180;100;3;3;0;0;1;1
+34372;14734;1;151;50.0;120;70;1;1;0;0;1;0
+34373;23381;1;148;65.0;110;80;1;1;0;0;1;1
+34374;16245;1;163;80.0;110;80;1;1;0;0;1;0
+34375;22518;2;170;50.0;110;70;1;1;0;0;1;0
+34376;20540;1;165;80.0;120;80;1;1;0;0;1;0
+34377;16979;1;156;62.0;90;80;1;1;0;0;0;0
+34378;22502;2;170;59.0;120;80;1;1;0;0;1;0
+34379;16729;1;163;52.0;120;60;1;1;0;0;1;0
+34380;19822;1;160;75.0;120;80;1;1;0;0;1;0
+34382;22788;1;164;79.0;140;95;1;1;0;0;1;1
+34383;16710;2;169;79.0;140;100;1;1;0;0;1;1
+34384;19618;2;176;69.0;120;80;1;1;0;0;1;0
+34386;17982;1;162;85.0;150;100;1;1;0;0;1;1
+34387;18993;2;178;82.0;130;70;1;1;0;0;1;1
+34388;21932;1;153;70.0;130;80;2;2;0;0;1;1
+34390;18069;1;166;75.0;130;80;2;1;0;0;1;1
+34391;18382;1;159;84.0;100;70;3;1;0;1;0;0
+34392;20365;1;163;72.0;130;80;1;1;0;0;1;1
+34393;22047;1;160;60.0;120;80;1;1;0;0;1;0
+34394;14870;1;175;76.0;150;90;1;1;0;0;0;0
+34395;19201;1;159;78.0;110;70;1;1;0;0;1;0
+34397;19080;2;168;70.0;120;80;1;1;1;0;1;0
+34398;18172;1;154;52.0;90;60;1;1;0;0;1;0
+34399;19669;1;163;79.0;150;90;1;1;0;0;1;1
+34400;17612;2;168;61.0;120;80;1;1;0;0;0;0
+34401;19095;2;168;77.0;120;80;1;1;1;1;1;0
+34402;18940;2;173;73.0;100;80;1;1;0;0;1;0
+34403;18931;2;166;65.0;120;80;1;1;0;0;1;1
+34405;20334;1;155;51.0;110;60;1;1;0;0;1;0
+34407;17383;2;172;70.0;110;70;1;1;1;1;1;0
+34409;19042;2;180;100.0;140;100;1;1;1;0;1;0
+34410;22040;1;164;78.0;120;80;2;2;0;0;1;0
+34411;15942;1;162;65.0;120;80;2;2;0;0;1;0
+34413;20549;2;163;62.0;110;70;1;1;0;0;1;1
+34414;18349;1;157;73.0;115;65;1;1;0;0;0;0
+34416;18194;2;176;64.0;120;60;1;1;0;0;1;0
+34418;19686;1;160;60.0;120;80;2;1;0;0;1;1
+34419;18992;1;168;74.0;120;80;1;1;0;0;1;0
+34420;15128;1;170;80.0;100;60;1;1;0;0;1;0
+34423;19180;2;172;97.0;140;90;1;2;0;0;1;0
+34424;16635;1;164;66.0;140;80;1;1;0;0;1;1
+34425;19866;2;156;64.0;120;80;1;3;0;0;1;1
+34426;21296;2;177;98.0;150;1000;2;1;0;0;1;1
+34427;17365;1;164;84.0;140;80;1;1;0;0;1;1
+34428;21624;2;169;104.0;140;90;1;2;1;0;1;1
+34429;18054;1;152;59.0;110;70;1;1;0;0;1;0
+34430;22577;1;172;89.0;180;100;1;3;0;0;1;1
+34431;18172;2;175;79.0;150;110;1;1;1;0;1;1
+34433;17391;2;174;56.0;100;60;1;1;0;0;1;0
+34434;21201;1;162;76.0;120;90;1;1;0;0;1;1
+34435;20522;1;170;65.0;120;80;1;1;0;0;1;0
+34436;17974;2;178;82.0;120;80;1;1;1;0;1;0
+34437;14410;2;175;78.0;120;80;1;1;0;0;1;0
+34438;20411;2;170;90.0;145;90;2;1;0;0;1;1
+34441;20378;1;157;69.0;120;80;1;1;0;0;1;0
+34444;20583;2;168;75.0;140;90;1;1;0;0;1;1
+34445;18493;1;160;63.0;160;1000;2;1;0;0;1;1
+34448;20471;2;160;58.0;120;80;1;1;0;0;1;0
+34449;16201;1;160;62.0;120;80;1;1;0;0;1;1
+34450;22724;1;167;80.0;120;80;1;1;0;0;1;1
+34451;15318;1;175;76.0;110;70;1;3;0;0;0;1
+34453;15323;1;162;56.0;120;80;1;1;0;0;1;0
+34454;21079;2;173;89.0;130;90;1;1;0;0;1;1
+34455;20442;1;154;126.0;140;90;3;1;0;0;1;0
+34457;21090;1;166;88.0;160;100;1;3;0;0;1;0
+34459;23533;1;151;66.0;110;60;1;3;0;0;1;0
+34460;20958;1;156;72.0;110;80;1;1;0;0;1;1
+34461;18311;2;168;101.0;140;100;1;1;0;0;1;1
+34462;18852;1;164;80.0;120;80;1;1;0;0;1;0
+34463;19613;2;167;64.0;110;80;1;1;1;0;0;0
+34464;15596;1;163;59.0;90;60;1;1;0;0;1;0
+34465;16129;1;158;62.0;120;80;1;1;0;0;1;0
+34466;23308;1;165;63.0;110;80;3;1;0;0;1;1
+34469;17491;1;150;50.0;90;60;1;1;0;0;1;0
+34470;15844;1;156;58.0;140;90;2;1;0;0;1;1
+34471;20587;2;168;70.0;150;100;1;1;0;0;1;1
+34472;19800;1;166;78.0;120;80;1;1;0;0;1;1
+34473;23377;2;163;63.0;110;70;1;1;0;0;1;0
+34474;14880;2;177;82.0;140;90;3;1;0;0;1;1
+34475;17518;1;159;60.0;150;90;1;1;0;0;1;1
+34476;19043;2;163;78.0;110;80;2;1;0;0;1;0
+34477;20609;2;160;60.0;140;90;1;1;0;0;1;1
+34478;23363;1;164;77.0;120;60;1;1;0;0;1;1
+34479;20513;1;160;76.0;150;90;1;1;0;0;1;1
+34480;21903;1;160;59.0;140;80;1;1;0;0;1;1
+34482;20486;2;150;71.0;120;80;1;1;0;0;0;0
+34483;19650;1;165;60.0;120;80;1;1;0;0;1;0
+34484;20405;2;170;67.0;120;90;3;1;1;0;1;1
+34485;16290;2;156;80.0;120;80;1;1;0;0;1;0
+34486;23313;2;159;74.0;120;80;1;1;0;0;1;0
+34487;16072;2;168;72.0;120;80;1;1;0;0;0;0
+34488;18876;1;157;83.0;140;90;3;2;0;0;1;1
+34489;16792;2;183;80.0;120;80;1;1;0;0;0;0
+34490;21852;2;168;80.0;160;110;2;1;0;0;1;1
+34491;18233;1;159;66.0;120;80;1;2;0;0;1;0
+34493;17418;1;161;54.0;130;80;1;1;0;0;0;0
+34494;19967;2;175;67.0;110;70;1;1;0;0;1;0
+34495;19601;1;170;65.0;120;80;1;1;0;0;1;1
+34496;15503;2;162;75.0;120;80;1;1;0;0;1;0
+34497;17707;2;157;62.0;120;80;1;1;0;0;1;1
+34498;21068;2;173;95.0;130;80;3;1;1;1;1;1
+34500;19030;2;178;85.0;120;80;1;2;1;0;1;1
+34501;14557;2;160;61.0;120;80;1;1;0;0;1;0
+34503;21258;1;169;62.0;120;80;1;1;0;0;1;0
+34506;18080;2;170;67.0;140;70;1;1;0;0;1;1
+34507;21999;1;160;65.0;130;80;1;1;0;0;1;1
+34509;22590;1;163;83.0;110;70;1;1;0;0;1;1
+34510;18380;1;168;64.0;120;80;1;1;0;0;0;0
+34511;22616;2;176;64.0;120;80;1;1;0;0;1;0
+34512;22118;2;170;72.0;120;80;1;1;0;0;1;1
+34513;16233;2;151;89.1;140;90;1;2;1;1;0;1
+34515;19555;1;151;75.0;150;90;1;1;0;0;1;1
+34516;15159;1;170;68.0;120;80;1;1;0;0;1;1
+34517;21223;1;164;65.0;120;70;2;1;0;0;1;0
+34518;21831;2;169;69.0;120;80;1;1;0;0;1;1
+34519;21591;1;164;58.0;120;80;1;1;0;0;1;1
+34521;21395;1;168;71.0;110;70;1;1;0;0;1;1
+34523;21101;1;154;58.0;140;70;1;1;0;0;1;1
+34525;18041;2;170;109.0;100;60;1;1;1;0;0;0
+34526;21766;1;162;50.0;120;80;1;1;0;0;1;0
+34527;20223;2;158;68.0;120;70;1;1;1;1;1;1
+34528;16306;2;175;66.0;120;80;1;1;0;0;1;0
+34533;20156;1;152;54.0;120;70;1;1;0;0;1;0
+34535;16031;2;166;105.0;160;100;2;1;0;1;1;1
+34536;19942;2;168;78.0;110;70;1;1;0;0;1;0
+34537;17992;1;159;80.0;120;80;1;2;0;0;0;1
+34539;23319;1;160;59.0;120;80;3;1;0;0;0;0
+34540;23385;1;170;78.0;130;80;3;1;0;0;1;1
+34541;18261;1;164;92.0;140;90;1;2;0;0;1;0
+34543;21016;1;151;61.0;100;80;1;1;0;0;1;0
+34544;21237;1;156;80.0;130;90;3;1;0;0;1;1
+34545;16220;1;172;69.0;120;80;1;1;0;0;0;1
+34546;19733;1;163;66.0;150;90;1;1;0;1;1;1
+34547;15968;1;167;63.0;110;80;1;1;0;0;1;0
+34548;16046;1;159;77.0;150;90;1;1;0;0;1;1
+34549;14405;1;169;72.0;110;70;1;1;0;0;1;0
+34550;15113;2;180;90.0;120;80;1;1;0;0;1;0
+34551;21313;1;148;67.0;120;80;1;1;0;0;1;0
+34552;23214;1;160;86.0;155;90;1;1;0;0;0;1
+34553;19117;1;167;80.0;100;70;1;1;0;0;0;1
+34554;15805;1;168;60.0;150;100;1;1;0;0;0;1
+34555;14730;2;170;79.0;120;80;1;1;0;0;0;0
+34557;14678;1;156;60.0;110;70;1;1;0;0;1;0
+34558;20470;2;167;98.0;120;80;1;1;1;0;1;1
+34559;21936;1;160;60.0;130;80;3;1;0;0;1;0
+34560;23423;1;159;65.0;90;80;1;3;0;0;1;0
+34561;21474;2;170;87.0;120;80;1;1;1;1;1;0
+34562;15211;1;155;53.0;110;80;2;1;0;0;1;0
+34563;16923;1;160;60.0;160;100;1;1;0;0;1;1
+34565;18853;2;150;90.0;120;60;1;1;0;0;0;1
+34569;15192;1;159;65.0;120;80;1;1;0;0;1;1
+34570;19202;2;170;66.0;120;80;1;1;0;0;1;0
+34572;20416;1;160;65.0;140;90;1;1;0;0;1;1
+34573;14494;2;178;70.0;120;80;1;1;0;0;1;0
+34574;22394;1;170;70.0;150;60;1;1;0;0;1;1
+34575;19061;1;164;55.0;120;80;1;1;0;0;0;1
+34577;18255;2;166;80.0;120;80;1;1;0;0;1;1
+34578;21393;1;165;63.0;130;90;1;1;0;0;1;1
+34579;16873;2;167;95.0;120;90;1;1;0;0;1;0
+34581;20461;2;175;65.0;120;80;1;1;0;0;1;0
+34583;16079;2;165;75.0;150;90;1;1;0;0;0;1
+34584;19238;1;158;63.0;120;80;1;1;0;0;1;0
+34585;21176;1;160;89.0;140;80;3;1;0;0;1;1
+34586;22640;1;158;68.0;140;90;3;1;0;0;1;1
+34587;20151;2;170;71.0;120;80;1;1;0;0;1;1
+34588;19640;2;173;107.0;150;90;1;1;0;0;1;1
+34589;18856;1;158;93.0;130;90;1;2;0;0;1;0
+34590;18458;2;175;120.0;120;80;1;1;0;0;1;1
+34592;19756;1;164;60.0;120;70;1;1;0;0;0;0
+34593;17515;2;158;58.0;90;70;2;2;0;0;1;1
+34594;19724;1;165;82.0;120;80;1;1;0;0;1;0
+34596;21919;2;170;109.0;130;80;1;1;0;0;1;1
+34597;18970;1;160;80.0;120;80;1;1;0;0;0;1
+34598;15955;2;181;61.0;100;80;1;1;0;0;1;1
+34599;15199;2;168;83.0;120;80;1;2;1;1;1;0
+34600;20315;1;162;71.0;120;80;1;1;0;1;1;1
+34603;19700;1;159;115.0;120;90;3;1;0;0;1;1
+34604;20564;2;165;68.0;120;80;1;1;0;0;0;0
+34605;18012;2;178;95.0;130;90;3;1;1;0;1;1
+34606;23107;1;157;83.0;125;70;3;1;0;0;1;1
+34607;23342;2;160;62.0;110;70;1;1;0;0;1;1
+34608;20230;2;155;74.0;120;70;1;1;1;0;1;0
+34609;19190;1;163;74.0;120;80;2;1;0;0;1;1
+34611;21913;1;160;77.0;155;90;1;2;0;0;1;1
+34612;22605;2;164;103.0;140;80;2;2;0;0;1;1
+34613;18001;2;182;96.0;140;90;2;1;1;1;1;1
+34614;22652;2;165;64.0;120;80;3;1;0;0;1;1
+34615;17729;1;165;70.0;140;90;1;1;0;0;1;1
+34616;18956;1;160;60.0;120;80;1;1;0;0;0;0
+34618;22497;2;180;78.0;130;70;1;1;1;0;1;0
+34619;19305;1;165;78.0;120;80;1;1;0;0;0;0
+34620;17569;1;148;56.0;110;90;1;2;0;0;1;1
+34621;21891;1;161;78.0;120;80;1;1;0;0;1;0
+34623;21976;2;168;79.0;115;70;1;1;0;0;1;0
+34625;23387;2;165;93.0;130;90;3;3;1;0;1;1
+34628;20342;2;173;96.0;140;90;1;1;0;0;1;1
+34629;21048;1;154;82.0;130;80;1;1;0;0;0;1
+34631;20133;2;166;84.0;140;80;1;1;0;0;1;1
+34633;19828;1;175;80.0;120;80;1;1;0;0;1;0
+34634;21024;1;175;80.0;130;90;3;1;0;0;1;1
+34636;19126;1;165;70.0;120;80;1;1;0;0;1;1
+34638;15219;1;168;85.0;110;70;1;1;0;0;1;0
+34639;18316;1;177;74.0;130;80;3;3;0;0;0;0
+34643;18292;1;150;60.0;120;95;1;1;0;0;1;0
+34644;22709;1;175;83.0;145;90;1;3;0;0;1;0
+34645;21758;1;160;112.0;120;1000;1;1;0;0;1;1
+34646;16175;1;163;79.0;120;90;1;1;0;0;1;0
+34647;15396;2;164;84.0;130;90;2;1;1;0;1;0
+34648;19156;2;170;75.0;170;100;3;1;1;0;1;1
+34649;17485;1;158;83.0;110;70;2;1;0;0;1;1
+34652;20526;2;168;66.0;150;90;2;1;1;0;1;1
+34653;17496;1;156;90.0;140;80;1;1;0;0;1;1
+34654;22564;1;161;83.0;190;80;2;1;0;0;1;1
+34655;19560;1;172;65.0;120;80;1;1;1;1;1;0
+34656;21404;2;170;68.0;150;90;1;1;1;0;0;1
+34657;16744;1;159;63.0;140;80;1;1;0;0;1;1
+34659;18893;1;156;100.0;180;80;2;2;0;0;1;1
+34661;22374;1;156;78.0;140;90;1;1;0;0;1;1
+34662;15218;1;167;69.0;120;80;1;1;0;0;1;0
+34663;23458;1;169;65.0;120;80;1;1;0;0;1;1
+34665;19289;1;170;85.0;140;90;1;1;0;0;1;1
+34666;16630;1;163;59.0;120;70;1;1;0;0;1;0
+34668;16727;1;165;80.0;120;70;1;1;0;0;1;0
+34669;19831;2;142;62.0;160;80;1;1;0;0;1;1
+34670;20299;1;166;90.0;120;90;1;1;0;0;1;0
+34673;21112;2;164;92.0;130;90;1;1;0;0;1;0
+34675;21361;2;171;68.0;130;70;3;3;0;0;1;0
+34676;15047;1;153;74.0;100;80;2;1;0;0;0;0
+34677;14469;2;158;60.0;130;90;1;1;1;1;1;0
+34678;19623;2;166;56.0;110;70;1;1;0;0;1;0
+34684;18088;1;163;62.0;110;60;1;1;0;0;1;0
+34685;22709;1;165;95.0;140;90;1;2;0;0;1;1
+34687;20521;2;171;91.0;120;80;1;1;1;0;1;0
+34688;18880;1;166;79.0;130;90;1;1;0;0;0;0
+34689;18558;1;170;72.0;120;80;1;1;0;0;1;0
+34693;20519;2;172;80.0;120;80;1;1;0;0;1;0
+34694;18476;1;171;77.0;190;60;2;1;0;0;1;1
+34696;18393;1;162;94.0;120;80;1;1;0;0;1;0
+34697;18423;1;170;69.0;120;80;1;1;0;0;1;0
+34698;21868;1;168;75.0;100;70;1;1;0;0;1;0
+34700;23387;2;178;80.0;140;92;1;1;1;0;1;1
+34701;15168;2;169;69.0;120;80;1;1;0;0;1;0
+34702;15446;1;172;70.0;120;80;1;1;0;0;1;0
+34705;15899;1;163;64.0;110;70;1;1;0;0;1;0
+34708;22472;1;156;73.0;140;90;1;1;0;0;1;1
+34709;19145;2;170;78.0;120;80;1;1;0;1;1;1
+34710;17446;2;170;78.0;140;80;2;2;0;0;1;0
+34712;23189;1;155;60.0;150;90;2;1;0;0;1;1
+34714;15288;1;161;67.0;110;80;1;1;0;0;1;0
+34715;20649;1;170;69.0;130;80;1;1;0;0;1;1
+34719;19018;1;164;60.0;120;80;1;1;0;0;1;0
+34720;20445;2;182;105.0;130;100;1;1;0;0;1;1
+34722;19625;1;158;72.0;120;90;2;2;0;0;1;0
+34723;21891;1;172;84.0;135;80;3;1;0;0;0;1
+34724;19768;1;163;78.0;120;80;1;1;0;0;1;0
+34725;19021;2;170;100.0;140;80;1;1;0;0;0;1
+34726;23171;1;155;63.0;120;80;1;1;0;0;1;1
+34727;23058;2;172;73.0;150;90;2;3;0;0;1;1
+34728;15845;1;158;78.0;110;80;2;1;0;0;1;0
+34730;18180;1;165;60.0;120;80;1;1;0;0;1;0
+34732;20459;2;170;68.0;120;70;1;1;0;0;1;0
+34734;19787;1;169;99.0;120;80;1;1;0;0;1;0
+34735;21116;1;160;82.0;140;90;3;3;0;0;0;0
+34736;16771;1;154;74.0;100;70;1;1;0;0;1;1
+34737;19254;1;153;70.0;140;90;1;1;0;0;1;1
+34738;17398;2;168;84.0;150;90;1;1;0;0;1;1
+34739;19039;2;158;50.0;110;70;1;1;0;0;1;0
+34740;15434;2;153;65.0;120;80;1;1;0;0;1;0
+34741;20305;2;164;64.0;90;70;1;1;0;0;1;0
+34743;16659;1;159;89.0;115;70;1;2;0;0;1;0
+34745;21330;1;152;80.0;120;90;2;2;0;0;0;1
+34746;16136;2;172;85.0;120;70;1;1;0;0;1;0
+34747;19054;1;162;72.0;120;80;1;1;0;0;1;0
+34748;22729;1;156;48.0;90;60;1;2;0;0;1;0
+34749;18279;2;167;54.0;120;80;1;2;0;0;1;0
+34752;19476;1;164;74.0;120;90;1;1;0;0;0;0
+34753;23210;1;166;82.0;120;80;1;1;0;0;1;1
+34754;22475;2;166;84.0;110;70;1;1;0;0;1;0
+34756;20588;1;159;56.0;140;90;1;1;0;0;1;1
+34757;14730;2;170;70.0;120;80;1;1;0;0;1;1
+34758;22435;2;158;60.0;160;1000;1;1;0;0;1;1
+34759;22685;1;166;66.0;120;70;1;1;0;0;1;0
+34760;23484;2;169;93.0;140;90;1;1;0;0;1;1
+34761;14865;1;165;65.0;120;80;1;1;0;0;1;0
+34763;20499;1;162;94.0;120;80;1;1;0;0;1;0
+34765;19740;1;161;84.0;140;90;2;1;0;1;1;1
+34766;18940;1;155;68.0;130;100;2;2;0;0;1;1
+34768;20557;1;158;60.0;100;60;1;1;0;0;1;0
+34770;21082;1;166;68.0;110;70;1;1;0;0;1;0
+34771;21351;2;166;69.0;140;80;1;1;1;0;1;1
+34772;22696;1;168;75.0;150;110;3;1;0;0;1;1
+34773;16158;2;155;52.0;120;80;1;1;0;0;1;0
+34774;21890;1;167;59.0;120;60;1;1;0;0;1;0
+34775;15445;1;163;62.0;120;80;2;1;0;0;1;1
+34777;19079;2;160;84.0;140;90;1;1;0;0;1;1
+34778;19049;1;162;82.0;110;70;1;1;0;0;1;0
+34779;17346;2;167;63.0;120;70;1;1;0;0;1;0
+34780;19870;1;161;70.0;110;70;1;1;0;0;1;1
+34781;19137;1;167;61.0;120;80;1;1;0;0;1;1
+34782;20643;1;147;48.0;140;90;1;1;0;0;1;1
+34785;20493;2;165;60.0;130;80;1;1;0;0;1;0
+34786;22743;2;165;62.0;120;80;3;3;0;0;1;0
+34787;21398;1;165;75.0;120;80;1;1;0;0;1;0
+34788;22746;1;166;81.0;130;90;1;1;0;0;1;1
+34790;20271;1;156;65.0;140;90;2;1;0;0;1;1
+34792;22525;1;153;87.0;160;90;3;1;0;0;1;1
+34793;19439;1;169;77.0;120;80;1;1;0;0;1;0
+34794;15375;1;152;85.0;140;100;2;1;0;0;1;1
+34795;14403;2;182;59.0;100;69;1;1;0;0;1;0
+34796;19780;1;154;72.0;120;79;1;1;0;0;1;0
+34797;22687;2;156;50.0;110;70;1;1;0;0;1;1
+34798;20516;1;164;66.0;120;80;1;1;0;0;0;0
+34799;19516;2;185;99.0;140;80;3;1;0;0;0;1
+34800;22647;2;170;88.0;140;90;3;1;0;0;1;1
+34801;18301;1;153;61.0;90;60;1;1;0;0;0;0
+34803;19531;1;150;56.0;100;70;1;1;0;0;1;0
+34804;18918;1;160;73.0;140;90;1;1;0;0;1;1
+34805;15093;1;169;67.0;110;80;1;1;0;0;1;0
+34808;18921;1;171;80.0;120;80;1;1;0;0;1;0
+34809;20296;2;169;75.0;120;80;1;1;0;0;1;0
+34810;14547;2;171;73.0;120;80;1;1;0;0;1;0
+34811;21723;2;172;92.0;140;80;1;1;0;0;1;1
+34815;22895;2;167;92.0;130;80;1;1;1;0;1;1
+34816;21934;2;167;74.0;110;90;1;1;0;0;0;0
+34817;18874;2;180;127.0;170;90;2;2;1;0;1;1
+34818;21828;1;160;62.0;120;90;1;1;0;0;1;0
+34819;21783;1;164;72.0;150;90;3;1;0;0;1;1
+34820;22669;2;174;88.0;160;90;3;3;0;0;1;1
+34821;21717;2;174;100.0;130;80;1;1;0;0;1;0
+34822;21843;1;163;62.0;120;80;1;1;0;0;1;1
+34823;21890;1;165;98.0;120;80;2;1;0;0;1;1
+34825;14461;2;171;120.0;110;70;2;1;1;0;1;1
+34827;23258;1;168;76.0;140;90;1;1;0;0;1;1
+34828;23317;1;156;66.0;120;80;1;1;0;0;0;0
+34829;20555;1;165;69.0;120;80;1;1;0;0;1;0
+34830;18857;1;184;79.0;150;100;2;1;0;0;0;1
+34831;17416;1;168;61.0;150;80;2;1;0;0;1;1
+34833;14789;1;168;65.0;110;70;1;3;0;0;1;0
+34836;18098;2;163;80.0;150;90;1;1;0;0;1;1
+34837;23467;1;165;65.0;120;80;1;1;0;0;0;1
+34840;23329;1;157;59.0;150;90;3;3;0;0;1;0
+34841;19730;1;161;67.0;120;70;1;1;0;0;1;1
+34842;19643;2;172;70.0;140;90;1;1;0;0;1;1
+34844;18897;2;166;45.0;110;70;1;1;0;0;1;0
+34846;18129;1;162;63.0;110;60;1;1;0;0;0;0
+34847;22607;1;165;66.0;110;80;1;1;0;0;0;0
+34848;16803;1;168;75.0;120;80;3;2;0;0;1;1
+34849;21934;1;158;55.0;150;90;1;1;0;0;1;1
+34853;21997;1;162;62.0;110;70;1;1;0;0;0;0
+34854;20597;1;165;70.0;120;60;2;2;0;0;1;0
+34855;16654;1;161;81.0;140;90;1;2;0;0;1;1
+34856;22592;2;160;52.0;120;80;1;1;1;0;1;0
+34857;22572;2;175;115.0;120;80;1;1;0;0;1;1
+34858;19636;2;163;60.0;110;70;1;1;0;0;1;1
+34859;23201;1;152;70.0;120;80;3;1;0;0;1;1
+34860;20457;1;168;68.0;120;80;1;1;0;0;1;0
+34861;19020;1;169;66.0;120;80;3;3;0;0;1;1
+34862;22152;1;158;64.0;110;70;2;1;0;0;1;0
+34863;15312;1;159;75.0;110;80;1;1;0;0;1;0
+34864;14411;1;163;53.0;110;70;1;1;0;0;1;0
+34865;19746;1;158;56.0;120;80;1;1;0;0;1;0
+34866;18266;1;160;85.0;130;90;1;1;0;0;1;1
+34867;21154;2;164;81.0;120;80;1;1;0;0;1;1
+34869;20430;1;158;53.0;130;90;1;1;0;0;1;1
+34870;21633;1;168;75.0;120;80;1;1;0;0;1;0
+34872;19714;2;173;88.0;140;80;3;1;1;1;0;1
+34875;20254;2;172;109.0;160;90;2;1;1;0;1;1
+34876;18970;2;168;80.0;140;90;2;1;0;0;1;1
+34879;21094;2;180;92.0;110;70;1;1;1;0;1;0
+34880;20521;2;168;69.0;150;90;1;1;0;0;0;1
+34881;19905;1;174;63.0;120;90;1;1;0;0;1;0
+34882;18181;2;165;105.0;130;80;3;3;0;0;1;1
+34884;21920;1;162;64.0;150;90;1;1;0;0;1;1
+34885;22539;1;163;92.0;120;80;1;1;0;0;1;1
+34886;19633;2;176;80.0;110;70;1;1;0;0;1;1
+34887;18338;1;160;55.0;130;90;1;1;0;0;1;1
+34888;18941;1;178;81.0;140;80;1;1;0;0;1;1
+34889;20425;1;159;82.0;110;70;1;1;0;0;1;0
+34890;20478;1;173;109.0;180;110;1;1;0;0;1;1
+34891;16910;2;163;60.0;120;80;1;1;1;0;1;0
+34892;20339;2;170;100.0;145;80;1;1;0;0;1;1
+34893;21213;2;182;81.0;170;100;2;1;0;0;1;1
+34894;19077;1;163;75.0;150;100;2;1;0;0;1;1
+34895;16946;1;158;63.0;110;70;1;1;0;0;1;0
+34896;15376;1;159;59.0;100;60;2;1;0;0;1;0
+34898;16659;1;169;95.0;90;70;1;1;0;0;1;0
+34899;18214;2;172;68.0;12;80;1;1;0;0;0;1
+34900;18378;2;168;62.0;140;90;1;1;0;0;1;0
+34901;21433;1;165;68.0;120;80;3;3;0;0;1;0
+34902;21847;1;160;78.0;120;70;1;1;0;0;0;1
+34903;17299;2;175;95.0;160;100;2;1;0;0;1;1
+34904;18091;1;167;90.0;155;110;2;1;0;0;1;1
+34906;21972;1;166;60.0;140;90;1;1;0;0;0;1
+34907;16150;1;165;49.0;140;80;1;1;0;0;0;1
+34908;17483;2;167;84.0;110;80;1;1;0;0;1;0
+34909;19741;1;154;65.0;150;90;1;2;0;1;1;1
+34910;19864;2;176;89.0;130;80;1;1;1;0;1;1
+34911;22689;1;157;60.0;120;80;1;1;0;0;1;1
+34913;18944;2;172;72.0;120;80;1;1;0;0;1;0
+34914;16825;1;166;57.0;100;70;1;1;0;0;1;0
+34915;22069;1;155;62.0;110;80;1;1;0;0;1;1
+34916;18166;2;179;81.0;145;100;1;1;0;0;1;1
+34918;21114;1;164;70.0;120;80;1;1;0;0;1;0
+34919;23611;1;168;65.0;160;90;3;1;0;0;1;0
+34920;18883;1;151;88.0;160;100;1;1;0;0;1;0
+34921;16002;1;164;91.0;120;80;1;3;0;1;1;0
+34922;19781;1;160;65.0;120;80;2;1;0;0;0;1
+34923;14547;2;173;69.0;160;90;2;1;0;0;1;1
+34924;15343;1;162;62.0;120;80;1;1;0;0;1;1
+34925;18222;1;160;64.0;120;80;1;1;0;0;1;0
+34926;22712;2;170;78.0;140;90;1;2;1;0;1;1
+34927;14633;1;164;61.0;100;60;1;1;0;0;1;0
+34929;20941;1;165;75.0;130;80;1;1;0;0;0;1
+34930;20712;1;170;66.0;110;60;1;1;0;0;1;0
+34931;19822;2;180;99.0;160;1000;1;1;0;0;1;1
+34932;21322;2;169;100.0;140;90;1;1;0;0;1;1
+34933;16706;1;160;70.0;110;70;1;1;0;0;0;0
+34935;17459;1;166;81.0;120;80;1;1;0;0;1;0
+34936;19840;1;178;58.0;130;60;1;1;0;0;1;1
+34937;19086;1;159;73.0;120;80;1;1;0;0;1;1
+34938;19693;1;155;66.0;170;80;3;1;0;0;0;0
+34939;20597;2;179;81.0;110;80;1;1;0;0;1;0
+34940;19656;1;162;110.0;120;80;1;1;0;0;0;0
+34942;17106;1;161;95.0;100;60;1;1;0;0;1;0
+34943;22866;2;164;66.0;120;75;1;1;0;0;1;0
+34946;19608;1;166;75.0;120;80;1;1;0;0;0;0
+34947;20487;1;175;90.0;130;90;1;1;0;0;1;0
+34948;22654;1;151;50.0;110;95;1;1;0;0;1;0
+34949;18177;2;167;82.0;150;90;3;2;1;0;1;0
+34950;20166;2;172;75.0;110;80;1;1;0;0;1;0
+34953;19115;2;167;62.0;120;80;1;1;0;0;1;0
+34954;21696;2;165;65.0;120;80;1;1;1;0;0;1
+34955;22568;1;165;65.0;118;78;1;1;0;0;1;0
+34956;14648;1;162;64.0;120;80;1;1;0;0;1;0
+34958;20277;1;161;89.0;160;100;1;2;0;0;1;1
+34960;19126;2;157;57.0;120;80;1;1;0;0;1;1
+34961;21779;2;177;74.0;120;60;1;1;0;0;1;1
+34962;17528;1;161;65.0;140;90;1;1;0;0;1;1
+34963;18366;1;165;55.0;120;80;1;1;0;0;1;0
+34964;16741;2;170;90.0;130;80;1;1;0;0;1;1
+34965;22580;2;169;80.0;120;80;1;1;0;0;1;0
+34966;17484;2;174;79.0;120;70;1;1;0;0;1;0
+34968;21246;1;160;70.0;170;100;2;1;0;0;1;0
+34969;21180;1;169;67.0;120;80;1;1;0;0;1;0
+34971;23325;1;175;92.0;130;80;2;1;0;0;1;1
+34972;21116;1;158;78.0;130;90;3;3;0;0;1;0
+34975;23420;1;160;79.0;130;90;1;1;0;0;1;0
+34977;14538;1;157;56.0;110;70;1;1;0;0;1;0
+34978;19045;1;160;65.0;120;80;1;1;0;0;1;0
+34980;15490;1;165;57.0;120;80;1;1;0;0;1;0
+34981;16133;2;170;72.0;120;80;1;1;1;0;1;1
+34982;18408;1;163;69.0;90;70;2;1;0;0;1;0
+34983;21293;1;156;70.0;120;80;3;1;0;0;1;1
+34984;22195;2;165;60.0;120;80;1;1;0;0;0;1
+34985;21639;1;167;88.0;155;80;3;1;0;0;1;1
+34986;19162;1;155;60.0;120;80;3;3;0;1;1;1
+34988;23328;1;163;88.0;120;80;3;1;0;0;1;1
+34989;16903;1;167;60.0;110;70;1;1;0;1;1;0
+34990;19916;2;166;75.0;120;80;1;1;0;0;1;1
+34991;19122;2;172;69.0;140;80;2;1;1;1;1;1
+34992;21192;2;174;63.0;120;80;1;1;0;0;1;0
+34994;22583;1;155;81.0;140;90;2;1;0;0;1;1
+34995;21246;1;164;85.0;130;90;3;3;0;0;1;1
+34996;19045;1;165;68.0;120;80;1;1;0;0;1;0
+34997;23577;1;168;74.0;130;80;1;1;0;0;1;1
+34998;21963;1;160;128.0;160;110;2;2;0;0;0;1
+35000;21794;1;159;64.0;110;70;1;3;0;0;1;1
+35001;20900;1;160;75.0;120;80;1;1;0;0;1;1
+35004;19106;2;173;84.0;150;100;1;1;0;0;1;1
+35006;19256;1;154;69.0;110;70;2;1;0;0;1;0
+35007;20562;1;158;83.0;150;80;1;3;0;0;1;1
+35008;21033;1;169;58.0;130;90;1;1;0;0;0;1
+35011;19671;1;150;90.0;120;80;1;1;0;0;1;1
+35012;19255;2;165;69.0;120;80;1;1;0;0;1;1
+35013;18371;2;177;79.0;170;110;1;1;0;0;1;1
+35015;19696;2;168;82.0;120;80;1;1;0;0;1;1
+35016;17999;1;165;75.0;130;90;1;1;0;0;0;1
+35017;22571;1;154;68.0;160;80;1;2;0;0;1;1
+35018;22529;2;165;68.0;120;80;1;1;0;0;1;0
+35019;14592;1;167;62.0;120;80;1;1;0;0;1;0
+35020;20942;1;154;63.0;144;88;2;2;0;0;1;1
+35022;21263;1;170;67.0;120;80;1;1;0;0;1;1
+35024;21090;2;166;75.0;120;80;1;1;1;1;1;0
+35025;18373;1;165;85.0;180;1110;1;1;0;0;1;0
+35026;15374;2;156;61.0;120;60;1;1;1;1;1;0
+35027;21047;2;163;64.0;120;80;1;2;0;0;1;0
+35028;18823;2;176;82.0;130;80;2;1;0;0;1;0
+35030;16586;2;171;95.0;140;90;1;1;0;0;1;1
+35031;23072;1;163;68.0;140;90;1;1;0;0;1;1
+35032;17273;1;159;81.0;131;85;3;1;0;0;1;1
+35033;17278;2;170;85.0;110;90;1;1;0;0;1;0
+35034;21304;1;156;58.0;120;80;1;1;0;0;1;1
+35035;21731;1;155;65.0;12;80;3;3;0;0;0;1
+35036;22197;1;164;63.0;130;80;2;1;0;0;1;1
+35037;21913;1;152;72.0;120;70;1;1;0;0;1;0
+35038;21108;2;165;87.0;100;60;1;1;0;0;0;1
+35039;21775;1;165;80.0;150;90;1;1;0;0;1;1
+35041;14628;2;174;106.0;160;100;1;1;0;0;1;1
+35042;17544;1;155;56.0;140;80;1;1;0;0;1;1
+35043;19786;2;174;80.0;120;80;1;1;1;0;0;0
+35044;21902;2;166;66.0;140;80;1;1;0;1;1;1
+35046;19721;2;164;67.0;140;90;3;3;0;0;0;1
+35047;16640;2;160;85.0;130;80;1;1;0;0;0;0
+35049;21178;2;164;75.0;80;140;1;1;0;0;1;1
+35050;21197;1;164;72.0;150;90;1;1;0;0;1;1
+35051;15443;2;165;62.0;110;70;1;1;1;1;1;0
+35054;21885;1;168;65.0;130;90;1;1;0;0;1;1
+35055;19062;2;153;63.0;140;90;1;1;0;0;1;1
+35056;23330;2;165;65.0;120;80;1;1;0;0;1;1
+35058;22620;2;170;80.0;120;80;3;3;0;0;0;0
+35059;19109;1;169;63.0;140;90;1;1;0;0;0;1
+35060;23317;1;150;83.0;150;90;3;3;0;0;1;1
+35062;16079;1;155;65.0;15;100;2;1;0;1;1;1
+35063;23245;2;170;77.0;140;1000;1;1;0;0;1;1
+35064;22509;2;180;100.0;140;90;1;1;1;1;0;1
+35065;22661;1;149;60.0;140;90;1;1;0;0;1;1
+35068;20267;2;173;92.0;160;100;1;1;0;0;1;1
+35069;17659;1;156;55.0;110;80;1;2;0;0;1;0
+35070;22389;1;165;60.0;120;80;1;1;0;0;0;1
+35071;19698;1;167;73.0;168;104;1;1;0;0;1;0
+35072;20645;2;178;80.0;120;80;1;1;0;0;1;1
+35073;23233;2;172;97.0;130;80;1;1;0;0;1;1
+35074;19041;1;158;62.0;120;80;1;1;0;1;1;0
+35075;23424;2;174;78.0;120;80;1;1;1;0;1;0
+35076;16029;1;158;60.0;110;60;1;1;0;0;1;0
+35077;18828;2;171;70.0;120;80;1;1;0;0;1;0
+35078;23502;1;168;75.0;140;90;1;1;0;0;1;1
+35079;21011;2;167;110.0;130;80;3;3;0;0;1;1
+35080;15376;1;169;65.0;120;80;1;1;0;0;0;0
+35081;16675;1;163;75.0;120;80;1;1;0;0;0;1
+35082;21187;2;180;74.0;140;90;1;1;0;0;0;1
+35084;15092;2;170;74.0;120;80;1;1;0;0;1;0
+35085;17394;1;175;75.0;120;90;1;1;0;0;0;1
+35086;20490;1;161;68.0;90;60;1;1;0;0;1;1
+35087;16123;2;166;59.0;140;80;1;1;1;0;1;0
+35088;19116;1;163;90.0;150;80;3;3;0;0;1;1
+35089;19802;1;165;60.0;120;80;1;1;0;0;0;0
+35091;20545;2;173;80.0;120;80;1;1;1;0;0;1
+35092;21319;1;150;67.0;120;80;3;3;0;0;1;1
+35093;20430;2;160;78.0;120;80;3;3;0;0;1;1
+35095;18974;1;155;74.0;120;80;1;1;0;0;1;0
+35097;16941;1;162;56.0;100;70;1;1;0;0;1;0
+35098;20397;1;165;60.0;120;80;1;1;0;0;1;0
+35100;23359;1;176;78.0;120;70;1;1;0;0;1;0
+35101;15366;1;173;71.0;120;80;1;1;0;0;0;0
+35102;17584;2;175;75.0;150;100;2;1;0;0;1;1
+35103;16101;2;171;87.0;120;80;1;1;0;0;1;1
+35104;15298;1;152;54.0;90;60;1;1;0;0;1;0
+35106;18267;1;158;52.0;100;60;1;1;0;0;1;0
+35109;19766;1;165;65.0;120;80;1;1;0;0;1;1
+35110;20366;2;170;70.0;140;80;2;2;0;0;1;1
+35111;23359;1;153;50.0;140;90;1;1;0;0;1;0
+35112;21282;2;168;69.0;130;90;1;1;0;0;1;0
+35116;16928;2;180;98.0;150;1100;1;1;1;0;1;1
+35117;18936;1;157;60.0;120;80;1;1;0;0;1;0
+35118;15533;2;170;78.0;120;80;1;1;0;0;1;0
+35119;19498;2;170;74.0;120;80;1;1;0;0;1;1
+35120;21934;1;155;55.0;150;80;2;1;0;0;1;1
+35121;16553;2;167;69.0;110;70;1;1;0;0;0;0
+35123;23316;2;182;58.0;120;80;1;1;0;0;0;0
+35126;19548;2;165;77.0;120;80;2;2;0;0;1;1
+35130;21339;1;161;63.0;120;80;2;2;0;0;1;0
+35134;21966;1;155;47.0;90;60;1;1;0;0;1;0
+35137;22491;1;152;68.0;155;71;1;1;0;0;1;1
+35139;21907;1;168;78.0;120;80;1;1;0;0;1;1
+35142;18113;1;162;75.0;120;80;1;1;0;0;1;0
+35143;19465;2;174;70.0;130;90;1;1;0;0;1;1
+35144;21361;1;165;84.0;150;95;1;1;0;0;0;1
+35145;22104;1;160;66.0;140;90;1;1;0;0;1;0
+35146;17554;1;160;59.0;120;80;1;1;0;0;1;0
+35148;17413;2;165;65.0;120;80;1;1;0;0;1;0
+35149;18357;1;150;79.0;160;100;2;1;0;0;0;1
+35150;19498;1;165;67.0;115;70;1;1;0;0;1;0
+35151;20464;2;169;71.0;140;90;2;1;1;0;1;1
+35152;16647;1;156;72.0;110;70;1;1;0;0;1;0
+35153;19812;2;181;79.0;120;80;1;1;0;0;1;0
+35154;18065;2;167;79.0;120;80;2;1;1;0;1;0
+35156;19038;2;175;62.0;140;100;1;1;0;0;1;0
+35158;19808;1;165;84.0;150;90;1;1;0;0;1;1
+35160;20365;2;175;84.0;120;80;1;1;0;0;1;0
+35162;14679;1;165;60.0;130;90;1;1;0;0;1;1
+35163;18157;1;168;95.0;140;90;1;1;0;0;0;1
+35164;20449;2;166;80.0;160;100;1;1;0;0;1;1
+35165;21237;1;156;58.0;110;80;1;1;0;0;1;1
+35167;19665;2;168;62.0;110;70;1;1;0;0;1;0
+35168;18777;1;159;80.0;140;90;1;1;0;0;0;0
+35169;19004;1;162;70.0;150;1000;1;1;0;0;1;1
+35170;17604;1;165;64.0;120;80;1;1;0;0;1;0
+35172;23104;1;157;75.0;120;80;3;3;0;0;0;1
+35173;20386;2;170;74.0;150;90;1;1;1;0;1;1
+35174;21076;2;176;82.0;130;80;2;2;1;1;1;1
+35177;14808;1;175;70.0;110;80;1;1;0;0;0;0
+35180;19825;1;166;80.0;120;80;1;2;0;0;0;0
+35181;19034;1;152;68.0;120;90;2;1;0;0;1;0
+35182;18227;1;170;100.0;120;80;1;1;0;0;1;1
+35183;17263;1;170;70.0;110;70;1;1;0;0;0;0
+35184;18145;1;162;74.0;140;90;3;3;0;0;1;1
+35187;18367;1;158;72.0;140;100;3;1;0;0;0;1
+35189;17603;2;181;82.0;120;70;1;1;0;0;1;0
+35190;19022;2;167;81.0;140;100;1;1;1;1;1;1
+35191;18334;2;168;69.0;110;70;1;1;0;0;0;0
+35192;23519;1;167;78.0;120;80;1;1;0;0;1;1
+35194;18914;1;150;72.0;120;90;1;1;0;0;1;1
+35196;18207;1;162;88.0;160;100;3;3;0;0;1;1
+35197;20525;2;175;100.0;120;80;1;1;0;0;1;1
+35199;17305;2;161;50.0;120;90;2;1;1;1;1;0
+35200;18884;1;157;96.0;170;90;1;1;0;0;1;1
+35201;17447;2;159;50.0;120;90;1;1;0;0;1;0
+35205;18971;1;158;89.0;120;70;1;1;0;0;1;0
+35206;19426;1;172;95.0;120;80;1;1;0;0;1;1
+35207;19608;2;159;75.0;120;80;1;1;0;0;1;0
+35209;16019;1;163;60.0;120;80;1;1;0;0;1;0
+35211;15911;1;165;58.0;120;70;1;1;0;0;1;0
+35212;20502;1;169;62.0;120;80;1;1;0;0;1;0
+35213;18066;1;160;75.0;120;80;1;1;0;0;1;0
+35216;15539;1;155;66.0;170;100;1;1;0;0;1;1
+35217;18198;1;154;100.0;145;100;1;1;0;0;1;1
+35218;23384;2;166;77.0;120;80;1;1;0;0;0;1
+35219;15485;2;183;86.0;110;80;1;1;1;0;1;0
+35220;19670;1;166;72.0;110;70;1;2;0;0;1;0
+35222;17319;1;153;63.0;130;100;3;1;1;0;1;1
+35223;15302;1;159;78.0;120;80;1;1;0;0;1;0
+35224;16002;1;162;75.0;110;70;2;1;0;0;1;1
+35226;21877;2;178;93.0;110;70;1;1;1;1;1;1
+35229;22678;2;180;99.0;150;90;1;1;0;0;1;1
+35230;17295;1;163;65.0;100;80;1;1;0;0;0;0
+35232;20987;1;166;68.0;130;80;1;1;0;0;1;1
+35233;15140;1;149;51.0;80;60;1;1;0;0;1;0
+35235;22050;2;168;75.0;130;90;3;3;1;0;1;1
+35237;19054;1;158;82.0;120;80;3;3;0;0;1;0
+35239;19713;2;170;85.0;130;90;1;1;1;0;0;0
+35240;19693;1;174;65.0;120;80;1;1;0;0;1;0
+35241;17221;2;173;77.0;140;90;1;1;0;0;1;1
+35242;17675;2;154;71.0;110;70;1;2;0;0;1;0
+35243;18454;1;163;84.0;130;82;2;1;0;0;1;1
+35244;21187;2;165;79.0;160;90;1;1;0;0;1;1
+35245;21110;2;172;53.0;100;60;1;2;0;0;0;1
+35246;17462;1;160;120.0;180;100;1;3;0;0;1;0
+35247;21879;2;183;101.0;190;110;3;3;1;1;1;1
+35248;23131;2;171;79.0;120;80;1;1;0;0;1;1
+35249;21901;1;158;88.0;130;80;2;1;0;0;1;1
+35250;19033;1;154;52.0;140;80;1;1;0;0;1;1
+35253;21694;1;156;64.0;110;70;3;3;0;0;1;1
+35254;19885;1;168;74.0;110;70;1;1;0;0;1;1
+35255;16739;1;167;68.0;120;80;1;1;0;0;1;1
+35258;20176;1;165;89.0;140;80;1;1;0;0;1;1
+35260;22046;1;149;84.0;130;80;1;2;0;0;1;0
+35261;19108;1;154;51.0;140;90;1;1;0;0;1;1
+35263;15404;2;174;90.0;130;80;1;1;0;1;1;0
+35264;22625;1;157;70.0;130;80;1;1;0;0;1;1
+35265;21039;1;158;57.0;120;80;1;1;0;0;1;0
+35266;17385;2;187;88.0;130;80;1;1;0;0;1;1
+35267;17390;2;180;90.0;130;90;1;1;1;0;1;1
+35268;23188;2;160;70.0;160;80;1;1;0;0;1;0
+35269;20605;1;160;60.0;120;80;1;1;0;0;1;1
+35270;21135;1;150;86.0;110;70;1;1;0;0;1;0
+35271;21198;2;175;70.0;140;90;1;1;0;0;1;1
+35274;23415;1;160;111.0;140;90;1;1;0;0;1;0
+35275;19990;1;162;73.0;120;70;3;3;0;0;1;0
+35276;21838;2;170;74.0;140;90;1;2;0;0;1;1
+35277;22881;2;169;81.0;110;70;1;1;0;0;1;1
+35278;16026;1;163;58.0;120;80;1;1;0;0;1;0
+35279;21183;2;168;65.0;80;120;1;3;0;0;1;1
+35281;20490;1;153;82.0;130;90;1;1;0;0;1;1
+35282;20582;1;155;70.0;120;80;1;1;0;0;1;0
+35284;19551;1;165;68.0;120;80;1;1;0;0;1;1
+35285;19006;1;157;58.0;120;80;1;1;0;0;1;0
+35286;21957;2;168;90.0;120;80;3;3;0;0;1;1
+35288;18861;1;165;65.0;120;80;1;1;0;0;1;0
+35291;19813;1;160;60.0;135;90;2;1;0;0;1;0
+35293;19027;2;168;80.0;140;90;2;2;0;0;0;0
+35295;20359;1;158;80.0;120;80;1;1;0;0;1;0
+35297;21149;2;160;69.0;120;80;1;1;0;0;1;0
+35300;16687;2;176;80.0;150;100;1;1;0;0;1;1
+35302;14510;1;159;46.0;110;70;1;1;0;0;1;0
+35303;15557;2;169;79.0;120;80;1;1;0;0;1;0
+35304;14460;2;158;62.0;120;80;1;1;1;0;1;0
+35305;19823;2;164;64.0;120;80;1;1;1;0;1;0
+35307;20543;2;164;61.0;140;80;1;1;0;0;1;0
+35308;18859;1;162;123.0;140;90;2;1;0;0;1;1
+35309;21238;1;190;108.0;120;80;1;1;0;0;1;1
+35310;15989;2;175;78.0;120;80;1;1;0;0;1;0
+35314;16950;1;163;63.0;120;80;1;3;0;0;1;0
+35316;20543;1;163;80.0;160;90;1;1;0;0;1;1
+35317;14645;1;170;66.0;120;80;1;1;0;0;1;0
+35318;18933;2;176;71.0;110;80;2;1;0;0;1;1
+35319;23463;1;171;69.0;120;80;1;1;0;0;1;0
+35320;23372;1;168;83.0;180;90;1;1;0;0;1;1
+35322;16855;1;154;90.0;130;80;2;1;0;0;1;1
+35323;18121;1;159;70.0;160;100;3;1;0;0;0;1
+35324;18147;2;175;86.0;120;80;1;1;0;0;1;0
+35325;22682;1;159;60.0;120;80;1;1;0;0;1;0
+35327;21901;2;170;83.0;150;90;2;1;1;0;1;1
+35328;14625;1;170;75.0;115;75;1;1;0;0;1;0
+35329;19812;2;165;64.0;110;80;1;1;1;0;1;0
+35331;16644;1;165;58.0;130;80;2;1;0;0;1;0
+35333;15415;1;165;87.0;120;80;1;1;0;0;1;1
+35334;18967;1;167;68.0;120;80;1;1;0;0;1;1
+35335;20433;2;172;69.0;130;90;1;1;0;0;1;1
+35336;18138;1;162;64.0;160;90;1;1;0;0;0;1
+35337;21319;2;165;71.0;100;70;1;3;0;0;1;0
+35338;19609;2;175;80.0;150;80;1;1;0;0;1;1
+35340;20538;1;170;104.0;160;100;1;1;0;0;1;1
+35342;18466;1;168;69.0;120;80;1;1;0;0;1;0
+35344;21983;1;160;63.0;160;90;1;1;0;0;1;1
+35346;21946;1;164;82.0;150;90;2;2;0;0;1;1
+35350;22459;1;166;94.0;150;90;3;1;0;1;1;1
+35351;16798;1;165;70.0;130;80;1;1;0;0;1;1
+35352;18981;1;165;61.0;110;70;1;1;0;0;1;1
+35353;16815;2;160;68.0;120;80;1;1;0;0;1;0
+35354;20514;2;185;100.0;150;100;1;2;0;0;0;1
+35355;20367;1;166;82.0;130;80;3;1;0;0;1;1
+35356;20432;1;168;68.0;120;20;1;1;0;0;1;1
+35357;21916;1;152;70.0;150;100;1;1;0;0;1;1
+35358;17608;2;168;70.0;120;70;1;1;0;0;1;0
+35359;17277;1;158;86.0;140;80;3;1;0;0;1;1
+35360;16295;1;167;61.0;120;80;1;1;0;0;1;0
+35361;21920;1;159;68.0;120;80;1;1;0;0;1;0
+35362;16037;1;165;80.0;140;80;3;3;0;0;1;1
+35364;20529;1;156;44.0;130;90;2;1;0;0;1;1
+35365;18288;1;155;70.0;120;80;1;1;0;0;1;0
+35366;23452;1;160;70.0;140;100;1;1;0;0;1;1
+35367;16545;1;157;95.0;120;80;1;1;0;0;1;0
+35368;21407;1;155;93.0;120;75;1;3;0;1;1;0
+35369;19632;1;155;64.0;130;80;1;1;0;0;1;0
+35373;21751;1;156;68.0;120;80;1;1;0;0;1;0
+35374;16814;1;157;76.0;170;90;2;1;0;0;1;1
+35376;15996;1;171;83.0;140;60;1;1;0;0;1;0
+35378;21969;1;153;74.0;120;80;2;3;0;0;1;0
+35379;20875;1;159;95.0;200;100;1;1;0;0;0;0
+35380;19815;2;167;87.0;130;90;1;1;0;0;1;0
+35381;22636;1;157;73.0;120;80;1;1;0;0;1;1
+35382;20311;2;179;89.0;120;80;1;1;0;0;1;0
+35383;21659;1;169;65.0;120;80;1;1;0;0;1;1
+35384;20463;2;158;56.0;140;90;1;1;0;0;1;1
+35388;17777;1;172;70.0;150;90;2;3;0;0;1;1
+35389;21887;1;152;75.0;180;100;2;1;0;0;0;1
+35390;20162;1;154;91.0;160;60;3;1;0;0;1;1
+35391;20316;2;162;62.0;120;80;1;1;0;0;1;1
+35392;20418;1;156;87.0;130;80;1;1;0;0;1;0
+35394;17347;1;167;98.0;100;80;1;2;0;0;1;1
+35395;22122;2;161;89.0;140;90;1;1;0;0;1;1
+35396;23247;1;148;80.0;160;80;2;2;0;0;1;1
+35398;16698;2;171;97.0;120;80;1;2;1;0;1;0
+35399;17715;1;158;60.0;120;80;2;2;0;0;1;0
+35401;20543;1;171;71.0;140;80;3;3;0;0;1;1
+35402;18110;1;157;71.0;160;90;3;1;0;0;1;1
+35404;16889;2;169;87.0;120;70;1;1;0;0;1;1
+35407;15424;1;160;63.0;110;70;1;1;0;0;1;0
+35409;19804;1;161;64.0;110;70;3;3;0;0;1;1
+35411;23395;2;170;70.0;160;100;3;2;0;0;1;1
+35413;23181;1;164;92.0;130;90;2;1;0;0;0;1
+35415;19583;2;164;64.0;120;80;1;1;1;1;1;0
+35416;21139;1;152;56.0;90;60;2;1;0;0;0;0
+35418;21194;1;159;60.0;110;70;1;1;1;0;1;0
+35422;16825;1;160;60.0;120;80;1;1;0;0;1;1
+35423;21418;2;165;70.0;120;80;3;3;0;0;1;1
+35424;19767;2;176;75.0;120;80;1;1;0;0;1;1
+35425;17618;1;161;78.0;140;90;2;1;0;0;1;1
+35426;16862;1;168;54.0;120;80;1;1;0;0;1;0
+35427;17686;1;156;52.0;120;80;1;1;0;0;0;0
+35429;20969;1;162;97.0;120;80;1;1;0;0;1;0
+35430;19141;1;162;75.0;100;60;1;1;0;0;1;0
+35431;15852;1;169;81.0;110;70;1;1;0;0;1;0
+35432;19485;1;157;78.0;160;110;2;2;0;0;1;1
+35433;14828;1;153;92.0;140;90;2;2;0;0;1;1
+35434;21095;2;172;88.0;140;90;1;1;1;0;1;1
+35435;17543;2;168;60.0;110;80;1;1;0;0;1;0
+35436;18991;2;181;79.0;150;100;1;1;1;0;0;1
+35437;15377;1;154;59.0;120;70;1;1;0;0;1;0
+35438;18345;2;166;91.0;115;70;1;1;0;0;1;0
+35440;18242;2;160;88.0;130;90;3;1;0;1;1;1
+35442;18191;1;158;67.0;130;80;1;1;0;0;1;1
+35443;18138;2;183;85.0;150;1000;2;2;0;0;1;0
+35444;21151;1;155;49.0;140;80;2;1;0;0;1;1
+35445;18972;2;172;85.0;110;70;1;1;1;1;1;0
+35446;18102;1;153;65.0;110;80;3;1;0;0;1;0
+35448;18259;2;162;54.0;90;60;1;1;0;0;1;0
+35449;19725;2;172;86.0;120;80;1;1;1;0;1;0
+35453;15987;1;148;47.0;110;70;1;1;0;0;1;0
+35455;21933;1;165;71.0;13;90;2;2;0;0;1;1
+35456;18275;1;162;117.0;140;90;2;2;0;0;1;1
+35458;16612;2;163;63.0;102;70;1;1;0;0;1;0
+35459;14589;1;155;60.0;110;80;1;1;0;0;1;1
+35461;21204;2;187;96.0;90;60;1;1;0;0;1;0
+35462;15534;1;173;69.0;120;80;1;1;0;0;1;0
+35463;18894;1;160;70.0;130;90;1;1;0;0;1;1
+35464;20477;1;153;80.0;120;80;1;1;0;0;1;0
+35465;16089;1;160;62.0;90;60;1;1;0;0;1;0
+35466;23257;1;162;84.0;140;90;2;1;0;0;1;1
+35467;19699;1;158;94.0;130;90;3;1;0;0;1;1
+35468;18348;1;164;70.0;120;80;3;3;0;0;1;0
+35469;19151;1;158;80.0;120;80;1;1;0;0;0;1
+35470;21255;1;158;79.0;160;100;2;1;0;0;1;1
+35473;18828;1;161;54.0;120;60;1;1;0;0;1;0
+35474;15440;2;169;73.0;120;70;1;1;0;0;1;0
+35477;23348;1;160;70.0;130;70;2;1;0;0;1;1
+35478;20494;1;165;60.0;120;80;1;1;0;0;1;1
+35480;16163;1;161;52.0;110;70;1;1;0;0;0;0
+35481;21909;1;153;72.0;160;100;1;1;0;0;1;1
+35482;15535;1;164;60.0;120;70;1;1;0;0;1;0
+35483;19705;1;166;69.0;120;80;1;1;0;0;1;0
+35484;20271;1;165;82.0;110;70;1;1;0;0;1;0
+35485;18203;2;173;72.0;110;80;1;1;1;0;1;0
+35487;22661;2;164;74.0;140;90;3;1;1;0;1;1
+35489;21082;2;170;100.0;20;80;1;1;0;0;0;1
+35490;18157;1;154;63.0;140;90;1;1;0;0;0;1
+35491;23293;2;164;80.0;180;100;1;1;0;0;1;1
+35492;19468;1;162;69.0;100;70;2;1;0;0;1;0
+35493;21120;2;163;68.0;110;70;1;1;0;0;1;0
+35494;20448;1;152;56.0;130;90;1;1;0;0;1;1
+35496;20395;1;149;50.0;150;90;1;1;0;0;1;1
+35497;22005;1;168;62.0;120;80;1;1;0;0;1;1
+35498;21986;1;158;89.0;180;100;2;2;0;0;1;1
+35499;19463;1;164;73.0;140;90;1;1;0;0;1;0
+35501;23327;1;168;69.0;120;80;1;1;0;0;1;1
+35503;22644;2;180;80.0;150;100;1;1;0;0;0;1
+35504;21697;1;165;70.0;130;90;3;3;0;0;1;1
+35505;17465;2;174;80.0;120;80;2;1;0;0;1;0
+35507;15867;1;160;64.0;130;90;3;1;0;0;1;1
+35508;22572;1;163;63.0;120;80;1;1;0;0;0;1
+35509;19142;1;158;62.0;110;70;1;1;0;0;1;0
+35513;22038;2;164;90.0;120;70;2;3;1;0;1;0
+35515;16621;1;175;80.0;120;80;1;1;0;0;1;1
+35516;22678;1;168;81.0;140;90;1;3;0;0;0;1
+35517;14882;1;159;57.0;120;80;1;1;0;0;1;0
+35518;23463;1;159;69.0;110;70;1;1;0;0;1;1
+35519;21010;2;178;65.0;120;80;1;1;0;0;0;0
+35520;23563;2;169;68.0;110;70;1;1;1;0;1;0
+35521;17243;2;182;100.0;120;80;2;1;1;0;1;1
+35523;18883;2;177;75.0;130;80;1;1;0;0;1;0
+35524;15851;1;159;64.0;90;60;1;1;0;0;1;0
+35526;22657;1;168;79.0;120;79;1;1;0;0;1;0
+35528;21697;1;157;120.0;140;90;3;1;0;0;1;1
+35529;19605;1;168;74.0;120;80;1;1;0;0;1;1
+35532;15096;1;155;65.0;140;90;2;1;0;0;1;1
+35534;15208;1;160;65.0;140;70;3;1;0;0;1;1
+35535;16022;1;148;59.0;110;79;1;1;0;0;0;0
+35536;19581;1;170;65.0;140;80;1;1;0;0;1;1
+35539;20579;2;172;64.0;120;70;1;1;0;0;1;0
+35540;20520;1;163;49.0;140;90;1;1;0;0;1;1
+35541;21139;1;158;72.0;110;70;3;1;0;0;0;1
+35542;18246;1;160;66.0;140;90;1;1;0;0;1;0
+35544;16156;2;180;105.0;130;80;1;1;1;1;1;0
+35545;20464;1;172;69.0;140;90;1;1;0;0;1;1
+35546;15281;1;166;104.0;130;80;1;1;0;0;1;0
+35547;23365;1;149;78.0;150;90;1;1;0;0;1;1
+35550;22484;1;159;83.0;140;90;3;2;0;0;1;1
+35551;21874;1;168;69.0;120;80;2;2;0;0;0;0
+35552;20474;2;177;89.0;140;90;2;1;0;0;1;1
+35554;19549;1;160;65.0;180;1000;1;2;0;0;0;1
+35555;18144;1;161;72.0;130;90;1;1;0;0;1;1
+35557;19909;1;165;76.0;130;80;1;1;0;0;1;0
+35558;19029;2;176;72.0;130;80;2;1;1;0;1;0
+35559;21755;1;171;74.0;160;100;1;1;0;0;1;1
+35560;20582;2;175;74.0;120;80;1;1;0;0;1;0
+35561;15387;1;165;59.0;110;70;2;1;0;0;1;0
+35564;19205;2;172;87.0;130;60;3;3;1;1;1;1
+35566;20389;2;155;75.0;120;70;1;1;0;0;1;0
+35567;17263;1;175;80.0;140;80;1;1;0;0;0;1
+35569;21802;1;157;64.0;130;80;2;1;1;0;1;0
+35570;20168;2;184;86.0;140;90;1;1;0;0;0;1
+35573;16117;1;160;81.0;120;80;1;1;0;0;1;0
+35575;14557;1;171;76.0;120;90;1;1;0;0;1;0
+35577;23561;1;165;70.0;120;80;1;3;0;0;1;1
+35578;18926;1;153;51.0;120;80;1;1;1;0;1;0
+35579;16844;2;160;78.0;130;90;1;1;0;0;1;1
+35581;20418;2;165;60.0;120;80;1;1;0;0;1;0
+35582;22130;1;164;60.0;120;60;1;1;0;0;1;0
+35583;16128;1;158;63.0;120;80;1;1;0;0;1;0
+35585;20498;2;177;88.0;150;1000;2;1;1;0;1;1
+35586;20440;2;162;50.0;100;60;1;1;1;0;1;0
+35588;22437;2;172;71.0;120;90;3;1;0;0;1;1
+35589;21725;2;164;90.0;130;90;3;3;0;1;1;1
+35591;16816;2;193;93.0;140;80;3;1;1;0;0;1
+35593;16118;2;175;83.0;120;80;1;1;1;0;1;0
+35594;23460;2;172;102.0;170;100;1;1;1;1;1;1
+35600;18143;1;165;68.0;120;80;1;1;0;0;1;1
+35602;21265;2;160;58.0;120;80;2;1;0;0;1;0
+35603;20370;1;160;88.0;120;80;3;3;0;0;1;1
+35604;17567;1;151;46.0;100;50;1;1;0;0;1;0
+35605;19458;1;169;82.0;140;80;1;1;0;0;1;1
+35606;16817;2;165;60.0;120;80;1;1;0;0;1;0
+35608;22351;2;170;70.0;120;80;1;1;0;0;1;1
+35609;14412;2;167;74.0;110;60;1;1;1;0;0;0
+35611;18384;1;156;48.0;145;80;2;1;0;0;1;1
+35612;21911;1;158;84.0;180;90;2;1;0;0;1;1
+35613;18164;1;150;43.0;140;90;1;1;0;0;1;0
+35615;23265;1;170;65.0;130;90;1;1;0;0;1;1
+35616;16779;1;168;65.0;120;80;1;1;0;0;0;1
+35617;14717;1;164;62.0;160;100;2;1;0;0;0;1
+35618;22766;2;168;62.0;130;90;1;1;1;0;1;0
+35620;20432;1;161;75.0;160;100;1;1;0;0;0;1
+35622;18232;2;167;75.0;160;90;1;1;0;0;0;1
+35623;21294;1;169;74.0;125;80;1;1;0;0;1;0
+35625;20467;2;169;70.0;120;60;1;1;0;0;1;0
+35627;19747;2;182;75.0;110;70;1;1;0;0;1;0
+35628;15384;2;160;100.0;120;80;1;2;0;0;1;0
+35629;21068;1;167;55.0;120;70;1;1;0;0;1;1
+35631;19720;1;160;72.0;110;70;1;1;0;0;0;1
+35632;14403;2;175;82.0;110;80;1;1;0;0;1;0
+35633;17616;2;170;81.0;130;90;1;1;0;0;1;1
+35636;15376;2;169;68.0;120;80;3;3;0;0;1;0
+35637;22541;2;164;56.0;120;80;1;1;0;0;1;0
+35638;16588;2;180;85.0;120;80;1;3;0;0;1;0
+35640;21100;1;160;59.0;110;60;1;1;0;0;1;1
+35641;20534;2;171;70.0;160;100;1;1;1;1;1;1
+35643;18999;1;170;60.0;120;70;2;1;0;0;0;1
+35645;15192;1;157;59.0;120;80;1;1;0;0;1;0
+35647;18748;1;168;82.0;160;100;1;1;0;0;1;1
+35648;22589;2;177;95.0;130;80;3;3;0;0;1;0
+35649;23145;1;160;78.0;160;90;3;1;0;0;1;1
+35651;18905;1;165;60.0;110;70;3;3;0;0;1;1
+35652;23327;2;168;97.0;150;100;3;1;0;0;1;1
+35653;18314;1;163;60.0;110;70;1;1;0;0;1;0
+35657;20348;2;164;64.0;140;90;1;1;1;1;1;0
+35658;15117;2;165;65.0;120;80;1;1;0;0;1;0
+35659;19474;2;174;101.0;120;80;1;1;0;0;1;1
+35660;20259;1;160;94.0;130;90;3;3;0;1;1;0
+35661;16590;1;168;56.0;130;80;1;1;0;0;1;1
+35662;14589;2;180;98.0;140;90;2;1;1;1;1;0
+35663;20572;2;160;60.0;120;80;1;1;0;0;1;0
+35664;17634;1;163;75.0;120;80;2;1;0;0;1;1
+35666;21329;2;177;77.0;110;80;1;3;0;0;1;0
+35667;14654;1;158;66.0;110;80;3;3;0;0;1;0
+35670;21133;1;156;80.0;140;1000;3;1;0;0;1;0
+35671;17485;1;164;64.0;130;90;1;1;0;0;1;1
+35672;19998;2;162;76.0;160;100;1;1;1;0;0;1
+35673;23356;1;151;75.0;160;90;1;2;0;0;1;1
+35676;17033;2;169;75.0;140;100;1;1;0;0;1;1
+35677;15487;2;171;68.0;120;70;1;1;0;0;1;0
+35678;20453;1;160;70.0;120;80;1;1;0;0;1;0
+35679;17536;2;165;74.0;130;70;1;1;0;0;0;1
+35680;21644;1;156;60.0;120;80;1;1;0;0;1;0
+35681;20988;1;120;69.0;120;80;1;1;0;0;0;0
+35682;17509;1;159;102.0;150;90;2;2;0;0;0;1
+35683;20590;2;181;78.0;110;80;1;1;0;0;1;1
+35684;20339;1;170;88.0;120;80;2;1;0;0;0;1
+35685;23287;1;156;77.0;120;80;1;1;0;0;0;1
+35686;20433;1;154;89.0;150;90;1;2;0;0;1;1
+35687;21836;1;160;60.0;120;80;1;1;0;0;1;1
+35688;20493;2;179;100.0;120;80;1;1;0;0;0;0
+35689;14411;1;169;65.0;90;60;2;1;0;0;1;0
+35690;22693;1;160;60.0;120;80;1;1;0;0;0;1
+35691;21992;2;165;70.0;120;80;1;1;0;0;1;1
+35692;23342;2;170;72.0;120;80;2;2;1;0;1;1
+35693;23418;1;154;56.0;110;80;2;1;0;0;1;1
+35694;19653;1;166;77.0;120;80;1;1;0;0;1;0
+35696;21929;1;165;90.0;115;70;1;1;0;0;1;1
+35697;16718;1;169;117.0;110;70;1;1;0;0;1;0
+35700;21996;1;159;70.0;130;90;1;1;0;0;1;1
+35702;16568;1;160;77.0;150;90;1;1;0;0;0;1
+35703;15344;2;163;65.0;120;80;1;1;0;0;1;0
+35706;14735;2;172;70.0;120;70;1;3;0;0;1;0
+35708;22702;1;154;71.0;150;90;1;1;0;0;1;1
+35709;20422;1;169;66.0;120;80;1;1;0;0;1;0
+35710;21991;1;169;50.0;130;80;1;1;0;0;1;1
+35711;19943;1;164;78.0;140;80;1;1;0;0;1;0
+35713;23167;1;158;61.0;120;70;1;1;0;0;1;0
+35714;20293;2;167;72.0;120;80;1;1;0;0;1;0
+35715;18840;2;170;75.0;120;80;1;1;0;0;1;1
+35717;20253;1;162;109.0;140;90;1;1;0;0;1;1
+35718;15197;1;167;69.0;110;70;1;1;0;0;0;1
+35719;20298;1;154;54.0;160;110;1;1;0;0;1;1
+35721;16685;2;170;104.0;140;90;1;1;0;0;0;1
+35722;21708;1;157;78.0;120;90;2;1;0;0;1;1
+35723;23148;1;156;84.0;110;80;2;2;0;0;0;1
+35724;23185;1;168;82.0;130;70;1;1;0;0;1;1
+35725;19921;1;157;65.0;120;80;1;1;0;0;1;0
+35726;20516;1;158;68.0;140;90;1;1;0;0;1;1
+35727;19073;1;165;56.0;120;80;1;1;0;0;1;0
+35730;20318;2;170;69.0;140;90;1;1;0;0;1;1
+35731;21007;1;166;73.0;125;80;3;3;0;0;1;1
+35732;21952;1;165;65.0;115;80;1;1;0;1;0;0
+35733;21990;1;159;60.0;134;80;1;1;0;0;1;1
+35737;21222;2;156;68.0;130;80;1;1;0;0;1;1
+35738;18991;1;174;158.0;140;90;2;2;1;0;1;0
+35739;19696;2;154;52.0;120;80;1;1;0;0;0;0
+35740;22068;1;175;70.0;160;100;1;1;0;0;1;1
+35741;14707;1;158;67.0;120;80;1;1;0;0;0;0
+35742;17612;1;175;89.0;120;70;1;1;0;0;0;1
+35744;21918;2;159;61.0;120;80;1;1;0;0;1;0
+35745;18258;1;156;85.0;140;90;1;1;0;0;1;1
+35746;19144;1;165;70.0;120;80;1;2;0;0;1;1
+35747;19770;1;152;50.0;110;80;1;1;0;0;1;0
+35749;20588;1;165;77.0;170;100;2;2;0;0;1;1
+35750;20963;2;164;106.0;150;130;3;1;1;0;1;1
+35751;16028;1;174;82.0;110;80;1;1;0;0;1;0
+35752;21136;2;160;54.0;120;80;1;1;0;0;1;1
+35753;14489;1;161;56.0;110;70;1;1;0;0;1;0
+35754;18811;1;161;76.5;140;90;1;1;0;0;1;1
+35755;22517;1;141;60.0;150;100;3;3;0;0;0;1
+35757;22787;2;160;60.0;120;80;1;1;0;0;1;0
+35759;18380;1;172;75.0;120;80;1;3;0;0;1;1
+35760;20473;1;169;84.0;130;90;3;1;0;0;0;1
+35761;19511;1;166;74.0;120;80;1;1;0;0;1;0
+35764;15857;1;157;65.0;110;80;1;1;0;0;1;1
+35765;20901;2;176;82.0;140;80;1;1;1;1;1;1
+35766;18390;2;174;78.0;140;80;2;1;1;0;0;1
+35767;17482;1;165;50.0;110;70;1;1;0;0;1;0
+35768;22446;2;176;99.0;120;80;3;3;0;0;1;1
+35769;21086;1;161;57.0;120;80;1;1;0;0;1;0
+35771;18212;1;158;66.0;120;80;1;1;0;0;1;0
+35772;23196;2;165;75.0;150;90;2;1;1;0;1;1
+35773;19794;1;153;95.0;150;90;1;1;0;0;1;0
+35774;18343;1;168;62.0;150;80;1;1;0;0;0;1
+35776;14506;2;175;84.0;110;70;1;1;0;0;1;0
+35777;23450;1;160;61.0;130;90;1;1;0;0;1;1
+35778;21733;1;156;75.0;130;90;1;1;0;0;1;1
+35779;23420;1;162;71.0;110;70;2;1;0;0;1;0
+35780;18129;1;163;55.0;120;80;1;3;0;0;1;0
+35781;20316;2;172;105.0;120;80;1;1;0;0;1;1
+35784;21046;1;164;115.0;140;90;3;3;0;0;1;0
+35785;14676;2;188;86.0;120;80;1;1;0;0;1;0
+35788;20668;2;170;80.0;120;80;1;1;0;0;1;1
+35790;17802;1;170;72.0;120;70;1;3;0;0;1;1
+35791;20961;2;168;67.0;120;80;1;1;0;0;1;1
+35792;22389;2;167;62.0;140;80;1;1;1;0;0;1
+35793;21092;2;167;114.0;120;70;1;1;0;0;1;0
+35794;21254;1;158;81.0;130;80;1;1;0;0;0;1
+35796;22867;1;164;51.0;90;80;1;1;0;0;1;0
+35797;18247;2;156;59.0;120;80;1;1;1;0;1;0
+35798;19103;1;159;59.0;120;80;1;1;0;0;1;1
+35799;16850;2;175;86.0;140;80;2;1;1;0;1;1
+35800;19578;1;162;68.0;110;60;3;1;0;0;1;1
+35801;14716;2;162;64.0;120;70;1;1;0;0;1;0
+35802;16000;1;176;116.0;110;70;1;1;0;1;1;0
+35803;14437;2;167;69.0;110;70;1;2;0;0;0;0
+35806;20505;1;155;74.0;160;90;1;1;0;0;1;1
+35807;14635;2;168;68.0;120;80;1;1;0;0;0;0
+35808;20368;1;162;64.0;110;80;1;1;0;0;1;1
+35810;21019;2;179;70.0;130;90;1;1;1;0;1;0
+35811;17353;1;155;87.0;130;80;1;2;0;0;1;0
+35812;20310;2;170;93.0;130;90;3;1;0;0;0;0
+35813;19092;1;168;75.0;140;80;1;1;0;0;1;1
+35815;19602;2;167;83.0;120;80;1;1;0;0;0;1
+35816;18087;1;148;63.0;120;80;1;1;0;0;1;0
+35817;18190;1;154;63.0;120;70;1;1;0;0;1;0
+35818;19581;1;153;64.0;140;90;2;1;0;0;1;1
+35819;18956;1;156;57.0;110;70;1;1;0;0;0;0
+35820;20962;2;168;72.0;120;80;1;1;0;0;1;0
+35821;21044;1;160;63.0;120;80;1;1;0;0;0;1
+35822;17642;2;178;77.0;140;90;1;1;0;0;1;1
+35823;20268;2;171;90.0;150;100;3;3;0;0;1;1
+35824;21772;2;174;106.0;130;90;2;1;0;0;1;1
+35826;22646;1;151;59.0;150;90;3;1;0;0;1;1
+35827;21830;1;165;110.0;140;90;1;1;0;0;1;1
+35828;16068;1;164;54.0;90;60;1;1;0;0;1;0
+35829;17588;2;169;78.0;120;80;1;1;0;0;1;0
+35832;21320;1;170;75.0;120;80;1;1;0;0;1;0
+35833;21931;1;165;75.0;120;80;1;1;0;0;1;0
+35834;21128;1;162;65.0;120;80;1;1;0;0;1;0
+35835;20213;1;162;77.0;120;70;1;1;0;0;0;0
+35837;19093;1;167;75.0;180;90;1;1;0;0;1;1
+35838;22492;2;172;56.0;120;80;1;1;1;0;1;0
+35840;16141;2;173;74.0;110;70;1;1;0;0;1;0
+35841;23471;1;163;97.0;130;80;3;3;0;0;1;1
+35842;21137;2;179;95.0;170;100;2;1;0;1;1;1
+35845;18951;2;170;86.0;125;80;1;1;1;0;1;0
+35846;20652;1;174;65.0;150;90;2;2;0;0;1;1
+35848;19759;2;179;87.0;120;80;1;1;0;0;1;0
+35849;14665;1;158;62.0;120;80;2;1;0;0;1;0
+35850;18792;1;165;65.0;120;80;1;1;0;0;1;0
+35851;14670;2;156;50.0;110;70;1;1;0;0;1;0
+35852;17641;1;161;60.0;110;70;1;1;0;0;0;0
+35853;14664;1;160;75.0;120;80;1;3;0;0;1;0
+35854;16801;1;151;52.0;180;90;2;2;0;0;0;0
+35858;18880;1;156;64.0;110;70;1;1;0;0;1;0
+35859;17620;2;157;80.0;120;80;1;1;1;0;1;0
+35860;20655;1;154;61.0;145;83;3;1;0;0;1;1
+35861;15416;2;172;72.0;120;80;1;1;0;0;1;0
+35862;19704;1;154;70.0;150;80;1;1;0;0;1;1
+35864;16320;1;160;67.0;80;120;1;1;0;0;0;0
+35865;20203;1;170;80.0;110;70;1;1;0;0;1;0
+35866;17496;1;163;63.0;120;80;2;1;0;0;1;0
+35867;17548;2;166;67.0;120;80;1;1;0;0;1;1
+35869;20432;1;156;54.0;150;80;1;1;0;0;1;1
+35870;19114;2;175;75.0;180;100;1;1;1;0;1;1
+35875;19734;2;162;68.0;140;80;2;2;0;0;1;1
+35877;17302;2;174;76.0;174;76;1;1;0;0;1;0
+35880;21964;1;165;61.0;120;70;1;1;0;0;1;0
+35881;19472;1;166;69.0;120;80;1;1;0;0;1;0
+35882;21137;1;151;79.0;140;100;2;1;0;0;1;0
+35883;17746;2;167;52.0;100;70;1;1;1;0;1;1
+35884;15829;1;161;69.0;110;70;1;1;0;0;0;0
+35885;16108;1;165;92.0;130;90;2;1;0;0;1;0
+35886;16096;2;160;70.0;110;70;1;1;0;0;1;0
+35887;23177;2;165;60.0;180;100;2;1;0;0;1;1
+35888;17656;1;158;84.0;160;90;2;1;0;0;1;1
+35890;18800;1;157;55.0;120;80;1;1;0;0;0;0
+35891;21831;1;153;66.0;140;90;1;1;0;0;0;1
+35892;19918;1;164;68.0;130;90;1;2;0;0;1;1
+35894;19020;2;174;74.0;130;1000;1;1;0;0;1;1
+35895;20576;1;158;80.0;120;80;1;1;0;0;1;0
+35899;19057;1;160;65.0;100;70;1;1;0;0;1;0
+35901;21167;1;170;68.0;120;80;1;1;0;0;1;0
+35902;20972;1;159;65.0;120;80;1;1;0;0;1;1
+35903;20370;2;165;70.0;120;70;1;1;0;0;1;0
+35904;18294;1;165;73.0;160;100;2;1;0;0;0;1
+35905;21148;2;161;65.0;160;100;3;3;1;1;1;1
+35906;18458;1;155;72.0;120;80;1;2;0;0;1;1
+35907;18274;1;156;81.0;120;80;1;1;0;0;1;1
+35908;18093;2;175;77.0;100;70;1;1;0;1;1;0
+35909;18971;1;162;53.0;100;70;1;1;0;0;1;0
+35910;14774;1;159;71.0;100;70;1;1;0;0;1;0
+35911;23156;1;147;58.0;160;100;3;2;0;0;1;0
+35912;21185;2;168;75.0;120;80;1;1;0;0;1;1
+35913;21823;1;168;82.0;120;80;1;1;0;0;1;1
+35914;18434;2;168;70.0;120;90;1;1;0;0;1;0
+35915;21858;2;178;79.0;120;80;1;1;1;0;1;0
+35916;18278;2;168;68.0;120;80;1;1;0;0;1;0
+35918;18175;2;179;96.0;120;80;1;1;0;0;1;0
+35919;18240;2;161;83.0;120;80;1;1;1;0;1;1
+35920;21702;2;175;88.0;140;85;2;2;0;0;1;1
+35921;22647;1;145;54.0;110;60;3;3;1;0;0;1
+35922;20407;2;159;67.0;120;80;1;1;1;0;0;0
+35923;22529;1;154;102.0;140;90;1;1;0;0;1;1
+35925;15354;1;161;89.0;100;60;2;1;0;0;1;0
+35926;14493;1;162;68.0;120;80;1;2;0;0;1;0
+35927;17052;1;149;45.0;120;80;3;3;0;0;0;1
+35928;19519;2;160;82.0;165;90;1;1;1;0;1;0
+35929;18078;1;160;90.0;160;100;1;1;0;0;0;1
+35930;22010;1;165;62.0;140;90;1;1;0;0;1;1
+35931;21016;2;188;118.0;160;80;1;1;0;0;1;1
+35933;18249;1;158;69.0;120;80;1;1;0;0;1;0
+35934;22623;2;162;71.0;120;80;1;1;0;0;0;0
+35938;15294;1;165;65.0;120;80;2;2;0;0;1;1
+35941;20583;1;174;61.0;130;80;1;1;0;0;1;0
+35942;20181;1;170;80.0;120;80;1;1;0;0;1;0
+35943;15106;1;167;70.0;120;80;1;1;0;0;1;0
+35945;17015;2;190;85.0;120;80;1;1;0;0;0;0
+35946;18231;2;184;109.0;125;80;2;3;0;0;1;0
+35947;14725;2;179;89.0;120;80;1;1;0;0;1;0
+35949;16833;1;162;62.0;120;70;1;1;0;0;1;1
+35950;20230;1;158;88.0;140;90;3;1;0;0;0;0
+35951;22486;1;164;90.0;100;70;1;1;0;0;1;0
+35952;15346;1;160;57.0;125;90;1;1;0;1;1;0
+35954;18712;1;164;75.0;120;80;1;1;0;0;1;0
+35955;22354;1;153;77.0;120;80;1;1;0;0;0;1
+35956;18846;1;153;93.0;130;80;1;1;0;0;1;1
+35957;21838;2;175;90.0;140;80;1;1;1;0;0;1
+35960;23208;1;176;112.0;120;80;1;1;0;0;1;1
+35961;19595;2;178;74.0;120;80;1;1;0;0;0;0
+35962;20737;1;167;84.0;120;80;1;3;0;0;0;0
+35963;22041;2;173;67.0;140;90;1;1;0;0;1;0
+35964;17346;1;170;85.0;140;100;1;1;0;0;0;1
+35965;20284;1;162;80.0;90;60;1;1;0;0;0;0
+35966;14629;2;178;89.0;120;80;1;1;1;0;1;0
+35967;18931;1;160;60.0;140;90;1;1;0;0;1;1
+35968;20413;1;172;140.0;150;90;1;1;0;0;1;1
+35969;20398;2;162;70.0;120;80;1;1;0;0;1;0
+35970;21086;1;162;72.0;120;80;1;1;0;0;1;0
+35971;22645;2;182;90.0;130;80;3;1;0;0;1;1
+35972;18768;1;149;35.45;110;70;1;1;0;0;1;0
+35973;19066;1;165;107.0;120;90;1;1;0;0;1;0
+35974;21081;1;165;60.0;120;70;3;1;0;0;1;1
+35975;14377;1;165;65.0;120;80;1;1;0;0;0;0
+35977;18949;1;161;86.0;130;80;1;1;0;0;0;1
+35978;18288;1;160;60.0;120;80;1;1;0;0;1;0
+35980;22643;1;159;76.0;130;90;2;2;0;0;1;1
+35982;22825;2;160;76.0;130;80;1;1;0;0;0;1
+35983;22478;1;151;75.0;140;90;2;1;0;0;1;1
+35985;17490;1;155;79.0;140;90;1;1;0;0;1;0
+35988;21418;1;157;68.0;120;80;1;1;0;0;1;0
+35989;20401;2;165;81.0;140;90;3;1;0;0;1;1
+35990;20228;1;170;80.0;110;70;1;1;0;0;0;0
+35991;18330;2;173;81.0;130;90;1;1;0;0;1;1
+35993;23265;1;155;72.0;120;80;1;1;0;0;1;0
+35995;21069;2;164;91.0;120;80;1;1;0;0;1;0
+35996;21214;1;160;86.5;130;90;1;1;0;0;1;1
+35997;14613;1;166;72.0;150;90;1;1;0;0;0;1
+35998;15460;2;170;72.0;130;90;1;1;0;0;1;1
+35999;23395;2;168;69.0;140;100;1;1;0;0;1;1
+36000;17637;2;174;65.0;90;60;1;1;1;0;1;0
+36001;18819;1;159;88.0;140;90;1;2;0;0;1;1
+36002;18417;1;161;65.0;110;80;2;1;0;0;1;0
+36003;23412;1;160;82.0;150;90;1;1;0;0;1;1
+36004;22601;1;163;51.0;140;90;2;1;0;0;0;0
+36005;14331;2;170;68.0;120;80;1;3;1;0;1;0
+36006;21967;2;165;65.0;140;80;1;1;0;0;1;1
+36007;19065;1;159;69.0;120;80;1;3;0;0;1;1
+36008;15409;1;161;125.0;180;120;2;1;0;0;1;0
+36009;21842;2;162;58.0;110;70;2;1;0;0;1;0
+36010;21231;1;168;65.0;120;80;1;1;0;0;0;0
+36011;20462;1;158;59.0;110;69;1;1;0;0;0;0
+36012;18836;1;169;82.0;120;80;1;1;0;0;1;0
+36013;21954;1;158;75.0;130;90;2;1;0;0;0;1
+36014;23521;1;166;84.0;130;80;1;1;0;0;1;1
+36016;20885;1;158;66.0;120;80;1;1;0;0;1;0
+36017;18130;1;156;73.0;160;90;1;1;0;0;1;1
+36018;16031;2;173;60.0;120;80;1;1;0;0;0;0
+36019;19134;1;155;63.0;120;70;1;1;0;0;1;0
+36022;21920;1;162;65.0;120;80;1;1;0;0;0;1
+36023;19160;1;163;97.0;150;80;2;1;0;0;1;1
+36024;22430;2;179;85.0;120;80;1;1;0;0;1;1
+36025;14711;2;168;50.0;-120;80;2;1;0;0;0;1
+36027;14661;2;165;65.0;130;90;1;1;0;0;0;1
+36029;19620;2;168;68.0;120;70;1;1;1;0;1;1
+36030;15887;1;168;72.0;140;90;1;1;0;0;1;1
+36031;15277;1;178;85.0;130;80;1;1;0;1;1;0
+36032;21878;1;160;58.0;120;80;1;1;0;0;1;0
+36034;22588;1;155;83.0;150;100;3;1;0;0;1;1
+36037;20930;2;170;112.0;120;80;1;1;0;0;1;1
+36040;17583;2;174;84.0;120;80;1;1;0;0;1;1
+36042;17395;1;165;61.0;130;70;1;1;0;0;1;1
+36043;17646;2;165;65.0;120;80;1;1;0;0;0;1
+36044;20214;2;163;94.0;130;70;1;1;0;0;1;0
+36045;21304;1;149;102.0;160;110;1;1;0;1;0;1
+36046;18941;2;174;69.0;110;60;1;1;0;0;0;1
+36047;15969;1;158;71.0;130;90;3;1;0;0;1;1
+36048;21377;1;165;78.0;140;90;1;1;0;0;1;1
+36049;22709;1;160;61.0;130;80;1;1;0;0;1;1
+36051;19196;2;174;74.0;110;70;1;1;0;0;1;1
+36052;19049;2;186;78.0;120;80;1;1;1;1;1;0
+36054;18397;2;170;75.0;140;80;3;1;0;0;1;1
+36056;15436;2;176;86.0;120;80;2;1;0;1;1;0
+36058;18396;2;171;91.0;130;90;1;1;0;0;1;1
+36059;21240;1;168;73.0;120;80;1;1;0;0;0;0
+36060;22731;1;158;95.0;130;80;1;1;0;0;1;1
+36061;18010;1;160;49.0;90;60;1;1;0;0;1;1
+36062;21001;1;160;90.0;120;80;1;1;0;0;1;1
+36064;20450;1;160;70.0;110;80;1;1;0;0;1;0
+36066;19590;1;170;65.0;120;80;1;1;0;0;1;0
+36067;17402;2;162;81.0;140;90;2;1;0;0;1;1
+36068;19589;1;161;70.0;140;90;3;1;0;1;1;1
+36069;18250;1;165;66.0;120;80;1;1;0;0;1;0
+36070;21206;2;165;88.0;130;90;1;1;0;0;1;1
+36072;20610;2;156;56.0;120;80;1;1;0;1;1;0
+36074;21225;2;166;82.0;110;70;1;1;0;0;1;0
+36075;22545;1;159;83.0;100;80;1;1;0;0;1;1
+36076;21844;1;157;78.0;140;100;2;1;0;0;1;0
+36077;21064;2;176;110.0;150;90;3;1;0;1;1;1
+36080;18144;1;159;98.0;110;70;1;1;0;0;1;0
+36082;23193;1;169;99.0;110;70;3;1;0;0;1;1
+36084;16247;1;159;63.0;160;100;1;1;0;0;0;0
+36086;17345;1;159;68.0;120;80;1;1;0;0;1;1
+36089;20489;2;177;89.0;160;120;2;1;0;0;1;1
+36090;19835;2;173;62.0;140;90;1;1;0;0;1;1
+36091;21150;2;175;80.0;120;80;1;2;0;0;0;1
+36092;22390;1;158;88.0;150;90;1;1;0;0;1;1
+36093;15591;2;167;71.0;120;70;1;2;1;1;1;0
+36094;23562;1;164;107.0;170;100;1;1;0;0;1;1
+36096;20909;1;154;75.0;140;90;1;1;0;0;0;0
+36099;15213;1;174;70.0;120;80;2;1;0;0;1;0
+36100;18333;1;166;53.0;110;70;1;1;0;0;1;0
+36101;21076;1;170;69.0;110;70;1;1;0;0;1;0
+36102;18152;2;170;70.0;140;90;2;1;1;1;1;1
+36103;21925;1;155;65.0;120;80;3;1;0;0;0;1
+36105;15364;1;158;70.0;100;60;1;1;0;0;1;0
+36106;22114;1;160;74.0;140;90;1;1;0;0;1;1
+36109;21775;2;178;82.0;120;80;1;1;0;0;1;1
+36112;22449;1;148;71.0;140;90;2;1;0;0;1;1
+36114;23374;2;178;89.0;120;80;2;1;0;0;1;1
+36115;18245;1;164;81.0;120;80;1;1;0;0;1;0
+36119;22709;1;163;78.0;130;70;2;1;0;0;0;0
+36120;17435;1;162;55.0;120;80;1;1;0;0;0;0
+36121;15494;1;156;68.0;110;70;1;1;0;0;1;0
+36122;18960;2;175;89.0;130;90;1;1;0;0;1;0
+36123;20281;1;164;53.0;120;80;1;1;0;0;1;1
+36124;22091;2;172;69.0;120;80;1;1;0;0;1;1
+36126;17275;1;153;82.0;100;70;1;2;0;0;1;0
+36127;16608;1;154;58.0;110;80;1;2;0;0;1;0
+36128;18072;1;166;105.0;120;80;1;1;0;0;1;0
+36129;16081;1;151;63.0;130;90;2;1;0;0;0;0
+36130;18181;1;161;65.0;120;80;1;1;0;0;1;1
+36131;22786;1;163;117.0;130;80;3;1;0;0;1;0
+36132;19462;1;158;48.0;110;70;1;1;0;0;1;0
+36134;17459;2;183;103.0;140;90;1;1;1;0;0;1
+36136;21892;1;158;63.0;130;70;1;1;0;0;1;1
+36138;17284;1;164;72.0;140;90;1;1;0;0;1;1
+36139;17528;1;160;121.0;150;90;1;1;0;0;1;1
+36140;22849;1;172;76.0;140;80;1;1;0;0;1;1
+36141;22846;2;167;77.0;100;70;3;3;1;0;1;1
+36145;21196;1;158;63.0;130;80;1;1;0;0;0;0
+36146;14594;1;163;68.0;120;80;1;1;0;0;1;0
+36149;21173;2;170;63.0;120;80;1;1;0;0;0;1
+36150;23188;1;168;85.0;150;80;1;1;0;0;0;1
+36151;22540;1;157;82.0;110;70;1;1;1;0;0;0
+36154;18115;1;154;62.0;120;80;3;3;0;0;1;1
+36155;21759;2;172;84.0;137;91;1;1;1;1;1;0
+36156;23404;1;160;99.0;160;100;3;1;0;0;1;1
+36157;19183;2;166;69.0;120;80;2;1;0;0;1;0
+36158;18966;1;166;66.0;120;80;1;1;0;0;1;0
+36159;19821;1;160;70.0;140;90;3;1;0;0;1;1
+36160;19948;2;170;75.0;120;80;1;1;0;0;1;0
+36161;21287;1;155;82.0;150;90;3;3;0;0;1;1
+36162;15225;1;158;80.0;160;100;1;1;0;0;1;1
+36163;16633;1;165;78.0;110;70;1;1;0;0;1;0
+36164;22010;1;152;63.0;120;80;1;1;0;0;1;0
+36165;21909;1;166;69.0;120;80;1;1;0;0;1;0
+36166;21270;1;164;59.0;130;80;3;3;0;0;1;0
+36167;23370;1;166;66.0;130;70;3;1;0;0;1;1
+36168;19702;1;161;63.0;140;90;1;1;0;0;1;0
+36169;19117;1;172;76.0;110;80;1;1;0;0;1;0
+36170;19091;1;158;78.0;120;80;3;3;0;0;1;0
+36171;23166;1;157;123.0;130;90;3;3;0;0;1;1
+36173;17535;2;171;89.0;120;80;2;1;0;0;0;1
+36174;23431;1;178;85.0;120;80;1;1;0;0;0;1
+36175;19572;1;169;59.0;120;80;1;1;0;0;1;0
+36176;17724;2;175;78.0;120;80;1;1;0;0;0;0
+36177;20528;1;165;63.0;120;70;1;1;0;0;1;1
+36178;20966;2;176;69.0;130;90;2;1;1;0;1;0
+36179;22650;1;164;70.0;140;80;3;1;1;0;1;0
+36182;15984;1;172;73.0;140;90;1;1;0;0;1;1
+36183;14300;1;168;96.0;120;80;1;1;0;0;1;0
+36184;20262;1;169;70.0;120;80;1;1;0;0;0;0
+36188;23237;2;176;80.0;120;80;1;1;0;0;1;1
+36189;15238;2;190;112.0;130;80;2;3;1;0;1;0
+36190;16979;1;156;52.0;110;80;1;1;0;0;0;0
+36193;23190;2;164;68.0;180;110;1;1;0;0;1;0
+36194;21736;1;162;62.0;110;70;1;1;0;0;1;1
+36197;16876;1;160;54.0;120;80;1;3;0;0;1;0
+36198;20402;2;172;68.0;130;80;1;1;0;0;1;1
+36199;16082;2;165;64.0;120;80;2;1;0;0;0;1
+36200;17672;1;165;70.0;140;1000;1;1;0;0;1;1
+36202;19755;2;162;67.0;120;80;1;1;1;1;1;0
+36203;14541;1;162;75.0;120;80;1;1;0;0;1;0
+36204;21361;1;163;56.0;110;80;1;1;0;0;0;1
+36205;21950;1;162;62.0;120;80;1;1;0;0;1;1
+36207;16854;2;163;67.0;120;80;1;1;0;0;0;0
+36208;16872;2;171;53.0;110;70;1;1;0;0;1;0
+36209;14803;2;169;90.0;140;90;1;1;1;0;0;1
+36211;20596;2;173;95.0;160;80;1;1;0;0;1;1
+36212;19606;1;163;70.0;140;90;3;1;0;0;1;1
+36213;19548;2;170;70.0;110;70;2;1;0;0;1;1
+36214;18154;1;155;57.0;120;80;1;1;0;0;1;0
+36215;22602;1;169;98.0;140;90;1;1;0;0;1;1
+36216;23484;1;153;79.0;160;100;1;2;0;0;1;1
+36217;17353;2;173;58.0;120;80;1;1;1;0;1;0
+36218;20671;1;167;78.0;120;80;1;1;0;0;1;0
+36219;18260;2;170;70.0;120;80;3;3;0;0;1;1
+36220;20486;2;175;84.0;160;90;2;1;0;0;1;1
+36222;20410;1;178;87.0;120;80;1;1;0;0;0;1
+36223;18109;1;163;80.0;130;70;1;1;0;0;1;0
+36224;20275;2;170;69.0;110;80;1;1;0;0;1;0
+36225;20328;1;157;53.0;120;80;2;1;0;0;0;0
+36226;23224;2;181;77.0;135;90;2;1;1;1;1;0
+36227;18312;1;154;69.0;140;100;1;1;0;0;1;0
+36228;21261;1;174;66.0;150;90;3;1;0;0;1;1
+36229;16059;1;173;72.0;120;85;1;1;0;0;1;0
+36230;21899;1;156;56.0;140;90;2;2;0;0;1;1
+36231;22123;1;151;67.0;120;80;1;1;0;0;0;0
+36232;20772;1;168;64.0;120;80;1;1;0;0;1;1
+36233;14335;1;163;65.0;110;69;1;1;0;0;1;0
+36236;21198;1;174;70.0;120;70;1;1;0;0;0;1
+36237;16128;2;162;78.0;130;90;1;1;0;0;1;0
+36238;21023;1;167;65.0;140;100;1;1;0;0;1;1
+36240;18029;1;163;65.0;120;80;1;1;0;0;0;0
+36242;19476;1;156;81.0;130;90;2;1;0;1;1;1
+36243;15480;1;160;73.0;110;70;1;1;0;0;1;0
+36245;16905;2;162;54.0;100;70;1;1;1;0;1;0
+36246;20491;1;170;69.0;130;59;1;1;0;0;1;0
+36247;18003;1;155;78.0;140;90;3;3;0;0;0;1
+36248;15934;2;177;114.0;130;80;1;1;0;0;1;1
+36249;23188;1;163;109.0;140;90;3;1;0;0;0;1
+36251;15826;1;172;69.0;120;60;1;1;0;0;0;0
+36252;23472;1;159;77.0;160;90;3;2;0;0;1;1
+36253;21668;2;170;84.0;130;90;1;1;0;0;1;1
+36254;22561;1;156;76.0;120;80;1;1;0;0;1;0
+36255;21226;2;169;69.0;120;80;1;1;0;0;0;1
+36257;16930;1;165;67.0;120;80;1;1;0;0;0;0
+36258;18763;1;158;60.0;150;100;1;1;0;0;0;1
+36260;16635;2;164;62.0;120;80;1;1;0;0;1;0
+36261;15938;2;173;79.0;130;79;1;1;0;0;1;0
+36264;21295;1;154;56.0;120;80;1;1;0;0;1;0
+36265;18248;1;164;70.0;115;85;1;1;0;0;0;1
+36266;17573;2;170;95.0;150;90;1;1;0;0;1;1
+36267;19593;2;181;85.0;140;70;1;1;0;0;0;1
+36268;20578;1;155;66.0;140;90;3;2;0;0;1;1
+36269;18308;2;166;78.0;120;90;1;1;0;0;0;0
+36270;16060;2;165;62.0;110;70;1;1;1;1;1;0
+36273;20718;1;162;92.0;130;90;1;1;0;0;1;1
+36274;21476;1;163;90.0;140;90;2;1;0;0;1;1
+36276;21162;1;160;90.0;150;100;1;1;0;0;1;0
+36278;16716;1;160;73.0;150;90;1;3;0;0;1;1
+36279;15955;1;166;65.0;140;90;1;1;0;0;1;1
+36280;14651;1;167;67.0;110;80;1;1;0;0;1;0
+36282;21637;1;159;77.0;150;97;3;2;0;0;1;0
+36283;18386;2;162;62.0;120;80;1;1;0;0;0;1
+36284;21304;1;163;51.0;110;70;2;2;0;0;1;1
+36286;21231;1;155;57.0;130;70;1;1;0;0;1;0
+36287;20974;2;184;84.0;110;60;3;1;0;0;0;1
+36288;15819;1;159;75.0;120;70;1;1;0;0;1;0
+36290;20414;1;168;70.0;120;80;3;3;0;0;0;0
+36291;21185;1;156;75.0;140;90;1;2;0;0;1;1
+36293;14617;1;163;75.0;120;70;1;1;0;0;1;0
+36294;18327;1;151;78.0;140;80;1;1;0;0;1;1
+36295;17541;2;172;81.0;120;80;1;1;1;0;1;0
+36297;20263;1;156;90.0;160;110;3;2;0;0;1;0
+36298;19893;1;154;56.0;100;60;3;1;0;0;0;1
+36299;15312;1;167;108.0;110;70;1;1;0;0;0;0
+36300;22810;1;165;69.0;140;90;2;1;0;0;0;1
+36301;15319;1;165;61.0;100;60;1;1;0;0;1;0
+36302;19582;2;174;78.0;120;80;2;2;1;0;1;0
+36303;15275;2;163;67.0;110;70;1;1;0;0;1;0
+36304;23484;2;168;70.0;120;80;1;1;0;0;1;0
+36305;22679;2;174;78.0;130;90;1;1;1;1;1;1
+36308;17273;1;163;76.0;120;80;1;1;0;0;1;0
+36309;23599;1;169;82.0;120;80;1;1;0;0;0;1
+36313;20696;2;169;74.0;120;80;1;2;1;1;1;0
+36315;22072;1;156;99.0;180;120;1;1;0;0;1;1
+36316;19764;1;162;65.0;130;80;1;1;0;0;1;0
+36317;20875;2;170;111.0;160;90;3;3;0;0;1;0
+36318;19123;1;166;68.0;140;80;3;1;0;0;1;1
+36319;21965;1;175;89.0;120;80;1;1;0;0;1;0
+36320;18812;2;171;89.0;170;100;2;1;0;0;0;1
+36321;20423;1;170;58.0;120;80;1;1;0;1;0;0
+36322;15118;1;159;55.0;110;70;1;1;0;0;1;0
+36324;18957;1;152;94.0;140;80;1;1;0;0;1;1
+36325;17952;2;176;73.0;12;0;1;1;0;0;1;0
+36326;21828;2;170;85.0;160;100;1;1;0;0;1;1
+36327;21891;2;170;118.0;150;80;1;1;0;0;1;1
+36328;18233;2;165;58.0;120;80;1;1;1;1;1;0
+36329;19065;2;170;95.0;140;90;1;1;0;0;1;1
+36331;16069;1;168;63.0;120;80;1;1;0;0;1;0
+36334;20202;1;175;85.0;120;80;1;1;0;0;0;0
+36335;18865;1;160;83.0;120;70;1;1;0;0;1;0
+36337;19576;1;168;70.0;120;80;1;2;0;0;1;0
+36338;19115;1;162;84.0;90;140;3;3;0;1;1;1
+36339;15835;2;169;75.0;14020;80;2;1;0;0;1;1
+36340;20196;1;168;68.0;190;1000;1;1;0;0;1;1
+36342;16774;1;160;69.0;130;80;1;1;0;0;1;1
+36343;19543;1;160;96.0;150;1000;2;1;0;0;1;1
+36345;21156;1;169;68.0;120;80;1;1;0;0;0;0
+36346;16666;1;161;112.0;170;80;3;1;1;1;1;1
+36347;18943;1;170;68.0;130;90;1;1;0;0;1;0
+36348;18168;1;150;47.0;120;80;1;1;0;0;1;0
+36349;19077;2;158;60.0;120;80;1;3;0;0;1;1
+36351;19610;1;161;65.0;150;90;1;1;0;0;1;1
+36352;23245;2;162;77.0;130;80;1;1;0;0;1;1
+36353;20369;1;166;67.0;120;80;1;3;0;0;1;0
+36354;23306;2;175;70.0;125;70;1;1;0;0;1;0
+36357;16001;1;157;63.0;120;80;1;1;0;0;1;1
+36358;20635;1;160;60.0;120;80;1;1;0;0;1;1
+36359;14405;1;150;63.0;120;80;1;1;0;0;1;0
+36362;21760;2;170;75.0;130;80;2;1;0;0;0;1
+36364;20488;1;155;65.0;150;100;1;1;0;0;1;0
+36365;20671;1;160;65.0;130;90;1;1;0;0;1;1
+36366;15976;1;156;51.0;100;60;1;1;0;0;0;0
+36367;21390;2;170;78.0;155;1111;1;1;1;0;1;1
+36368;15131;1;156;76.0;120;80;1;1;0;0;1;0
+36369;16873;1;161;111.0;130;90;1;1;0;0;1;1
+36370;19721;1;162;60.0;130;80;1;1;0;0;1;1
+36371;18266;1;176;58.0;180;90;1;1;0;0;1;1
+36373;22480;2;170;70.0;130;90;1;1;0;0;1;0
+36374;16792;2;165;70.0;110;80;1;1;0;0;1;0
+36375;19857;1;160;60.0;120;80;1;1;0;0;1;0
+36377;14826;1;160;60.0;120;80;1;1;0;0;1;0
+36379;20542;2;179;100.0;150;90;3;2;0;0;0;1
+36381;20496;2;174;94.0;120;80;1;1;0;0;1;0
+36382;15217;1;155;60.0;140;80;1;1;0;0;1;1
+36386;23371;1;156;58.0;130;90;3;3;0;0;1;1
+36387;20329;1;163;71.0;180;120;1;1;0;0;1;0
+36388;16100;2;176;140.0;160;90;1;1;0;0;1;1
+36389;21869;1;165;102.0;140;90;1;1;0;0;1;1
+36390;19710;1;164;64.0;120;80;1;1;0;0;1;0
+36391;19035;1;160;63.0;120;80;1;1;0;0;1;1
+36392;18814;1;151;68.0;120;80;1;1;0;0;1;1
+36393;18874;2;162;60.0;160;100;1;1;0;0;0;1
+36396;19515;1;162;52.0;130;80;2;1;0;0;1;0
+36397;20549;1;165;62.0;120;60;3;1;0;0;1;1
+36398;17372;1;158;67.0;130;70;1;1;0;0;1;0
+36400;18839;2;170;95.0;115;70;1;2;0;0;0;0
+36401;16841;2;169;72.0;120;80;1;1;1;1;1;0
+36402;22634;1;160;63.0;120;80;1;1;0;0;0;1
+36403;15987;1;161;79.0;100;65;1;2;0;0;1;0
+36404;14620;1;168;80.0;140;94;1;1;0;0;1;1
+36405;19478;2;169;99.0;130;80;3;3;1;0;0;1
+36407;16533;1;162;86.0;100;60;1;2;0;0;1;0
+36408;17695;1;164;96.0;120;80;1;1;0;0;1;1
+36409;23437;1;164;84.0;160;100;3;3;0;0;1;1
+36410;18045;1;168;64.0;130;90;1;1;0;0;1;0
+36412;16804;2;164;62.0;110;70;1;1;0;0;1;0
+36413;21064;1;171;80.0;130;70;1;1;0;0;1;1
+36414;21361;1;169;71.0;14020;80;3;3;0;0;1;1
+36417;17712;2;179;90.0;110;80;1;1;1;1;1;0
+36419;17561;2;162;75.0;120;80;2;2;1;0;1;0
+36420;18884;2;172;74.0;120;80;1;1;0;0;1;1
+36422;20032;2;165;65.0;120;80;1;1;0;0;1;0
+36423;23214;1;162;70.0;120;80;1;1;0;0;0;1
+36424;14639;1;164;56.0;110;70;1;1;0;0;1;0
+36425;15430;1;159;64.0;140;90;2;1;0;0;1;1
+36426;22784;1;163;78.0;120;70;3;3;1;0;0;1
+36427;22417;1;156;85.0;150;90;3;3;0;0;1;1
+36428;19664;1;150;71.0;160;100;3;1;0;0;1;1
+36429;20460;1;169;75.0;120;80;1;1;0;0;1;0
+36430;19055;1;157;70.0;130;70;1;1;0;0;0;0
+36433;18282;1;161;73.0;120;80;2;1;0;0;1;0
+36434;15333;2;174;57.0;120;80;1;1;0;0;1;0
+36436;21207;1;158;63.0;120;80;1;1;0;0;1;0
+36437;18746;1;161;83.0;140;80;2;1;0;0;1;1
+36441;15414;1;166;83.0;130;80;1;1;0;0;0;1
+36443;16089;1;165;70.0;130;90;1;1;0;0;1;1
+36445;21867;1;148;65.0;120;90;1;1;0;0;1;1
+36446;19250;1;165;63.0;120;80;1;1;0;0;0;0
+36449;18057;1;166;65.0;120;80;1;1;0;0;1;0
+36450;20489;2;173;65.0;130;90;1;1;0;0;0;0
+36451;20431;1;155;78.0;160;100;1;1;0;0;1;1
+36452;18370;1;170;76.0;140;100;1;1;0;0;1;1
+36454;19605;1;143;66.0;110;70;1;1;0;0;1;1
+36455;19879;1;149;71.0;120;90;2;1;0;0;1;0
+36456;21786;1;161;70.0;120;80;1;1;0;0;1;1
+36457;22536;1;150;79.0;140;90;3;3;0;0;1;1
+36458;19683;1;158;64.0;110;90;1;1;0;0;1;0
+36459;20569;1;155;67.0;140;70;2;2;0;0;0;0
+36464;22463;1;157;64.0;150;100;1;1;0;0;1;1
+36465;17576;1;170;71.0;140;80;3;3;0;0;1;1
+36466;21873;1;158;71.0;120;80;1;1;0;0;1;0
+36468;22603;2;174;88.0;130;100;2;1;0;0;0;1
+36474;15351;1;155;94.0;160;1110;1;2;0;0;1;1
+36475;14722;1;162;71.0;100;70;1;1;0;0;1;0
+36476;16666;1;163;52.0;120;80;1;1;0;0;1;0
+36477;20491;1;168;75.0;120;70;1;1;0;0;1;1
+36478;22131;1;165;60.0;120;80;1;1;0;0;0;1
+36480;15551;1;169;65.0;120;70;1;1;0;0;1;0
+36482;14591;2;181;90.0;110;70;1;1;0;0;1;1
+36483;18331;1;154;80.0;130;80;1;1;0;0;0;1
+36484;18555;2;164;71.0;120;80;1;1;1;0;1;0
+36485;22832;2;161;77.0;160;100;1;1;0;0;1;1
+36486;19474;1;152;79.0;130;80;3;1;0;0;1;1
+36487;22547;1;170;93.0;140;80;2;2;1;1;1;1
+36488;18863;1;168;57.0;110;70;1;3;0;0;1;0
+36489;19596;1;167;60.0;110;70;2;2;0;0;1;1
+36490;21038;1;164;60.0;110;70;1;1;0;0;1;0
+36491;19742;1;169;85.0;115;80;1;1;0;0;1;0
+36492;23197;1;166;75.0;120;80;1;1;0;0;1;1
+36493;18365;1;150;72.0;130;70;2;1;0;0;1;0
+36494;22606;1;155;75.0;160;1000;3;3;0;0;1;1
+36497;15863;2;167;74.0;120;80;1;1;0;0;1;0
+36499;19690;2;165;81.0;140;90;2;1;0;0;1;1
+36501;17501;1;151;55.0;130;90;1;1;0;0;1;0
+36502;23435;1;152;77.0;150;1000;1;1;0;1;1;1
+36503;22453;1;160;86.0;140;90;2;1;0;0;1;1
+36504;22922;1;154;78.0;110;70;1;1;0;0;1;1
+36505;22592;2;164;64.0;120;80;1;1;0;0;1;1
+36507;16683;1;168;70.0;110;70;2;1;0;0;1;1
+36508;17623;2;165;70.0;120;80;1;1;0;0;0;1
+36509;17452;1;161;71.0;120;80;1;1;0;0;1;0
+36510;19067;2;182;80.0;120;80;1;1;0;0;1;0
+36511;22695;1;154;63.0;140;100;3;1;0;0;1;1
+36512;18864;1;156;65.0;100;70;1;1;0;0;0;0
+36513;15206;1;167;70.0;140;80;1;1;0;0;1;0
+36514;22083;1;161;61.0;120;80;1;1;0;0;0;1
+36515;23316;1;154;74.0;160;90;1;1;0;0;1;1
+36517;16087;2;171;58.0;110;70;1;1;0;0;1;0
+36519;17948;1;165;76.0;120;80;2;1;0;0;1;1
+36521;21671;1;169;79.0;140;80;1;1;0;0;0;0
+36522;23561;1;155;65.0;120;80;1;1;0;0;1;1
+36524;18179;1;152;58.0;120;80;1;1;0;0;0;0
+36526;15367;2;170;68.0;120;70;1;1;0;0;1;0
+36527;19166;1;167;82.0;150;89;3;1;0;0;1;1
+36528;15370;2;180;75.0;120;80;1;1;1;0;1;0
+36530;22547;2;175;102.0;120;80;1;1;0;0;0;0
+36531;17445;1;164;50.0;110;90;1;1;0;0;1;0
+36534;16783;2;170;67.0;140;90;2;1;0;0;0;0
+36535;20224;2;167;65.0;130;90;1;1;0;0;1;1
+36536;16067;2;160;65.0;120;80;1;1;0;0;1;0
+36538;21790;1;167;72.0;180;100;1;1;0;0;1;0
+36539;17581;2;185;62.0;100;70;1;1;1;0;0;0
+36540;19800;1;168;105.0;130;80;1;1;0;0;1;1
+36541;21288;1;164;93.0;130;80;2;2;0;0;1;0
+36542;18216;2;176;95.0;140;80;1;3;1;0;0;1
+36544;15811;1;158;63.0;120;80;3;3;0;0;1;1
+36545;22435;1;168;72.0;120;80;1;1;0;0;1;1
+36546;14678;1;166;66.0;120;80;2;2;0;0;1;1
+36547;19746;1;160;69.0;140;79;1;1;0;0;1;0
+36549;14630;2;173;96.0;140;90;1;1;1;0;1;1
+36550;19088;1;165;107.0;120;80;1;1;0;0;1;0
+36551;16629;2;158;57.0;120;80;1;1;1;0;1;0
+36552;18789;1;153;71.0;120;80;3;1;0;0;1;0
+36553;20234;1;155;62.0;110;70;2;2;0;0;1;1
+36554;21257;2;159;55.0;140;80;1;1;0;0;0;1
+36555;23342;1;169;99.0;110;80;2;1;0;0;1;0
+36556;22772;2;175;80.0;140;80;1;1;0;0;1;1
+36557;21884;1;153;54.0;120;80;1;1;0;0;1;0
+36558;18100;1;160;66.0;110;70;2;1;0;0;1;0
+36559;18909;1;163;108.0;100;70;1;3;1;0;1;0
+36561;16585;1;169;78.0;100;70;1;1;0;0;1;0
+36565;16634;1;168;55.0;100;70;1;1;0;0;1;0
+36566;21940;1;169;78.0;120;80;1;1;0;0;1;0
+36568;22506;1;160;54.0;120;70;1;1;0;0;1;0
+36570;18336;1;165;80.0;130;80;1;1;0;0;1;0
+36571;19031;1;166;93.0;120;80;1;1;0;0;1;0
+36572;21006;1;165;65.0;140;80;1;1;0;0;1;1
+36573;15255;2;180;75.0;100;70;1;1;1;1;0;0
+36577;19755;1;165;65.0;110;70;1;1;0;0;1;0
+36581;20428;2;164;57.0;120;70;1;1;0;0;1;1
+36583;19257;1;171;84.0;130;80;1;1;0;0;1;0
+36584;20385;1;162;74.0;120;80;1;1;0;0;0;0
+36585;16151;1;165;65.0;120;80;1;1;0;0;0;0
+36587;21762;2;163;84.0;150;90;1;2;1;0;0;1
+36589;20875;1;172;82.0;150;90;1;1;0;0;1;1
+36590;19722;1;158;68.0;120;80;1;1;0;0;1;1
+36591;15414;1;164;52.0;100;60;1;1;0;0;1;0
+36592;23348;1;163;65.0;120;80;1;1;0;0;1;1
+36593;16015;2;175;71.0;130;80;2;1;0;0;1;1
+36594;15816;2;160;60.0;120;80;1;1;0;0;1;1
+36595;20336;2;168;71.0;180;95;2;1;0;0;1;1
+36597;20499;1;152;74.0;120;80;1;1;0;0;1;0
+36600;22665;2;174;61.0;110;80;1;1;0;0;1;0
+36603;21144;2;162;69.0;120;80;3;3;0;0;1;1
+36604;19078;1;165;67.0;150;90;2;1;0;0;1;1
+36605;15285;1;175;87.0;140;90;1;1;0;0;1;0
+36607;21789;1;169;65.0;120;80;1;1;0;0;0;1
+36609;18800;1;170;69.0;150;100;1;1;0;0;1;1
+36611;21393;1;149;64.0;120;80;1;2;0;0;1;0
+36613;21984;1;154;56.0;100;60;1;1;0;0;1;1
+36616;16719;2;175;83.0;120;80;1;1;0;0;1;0
+36617;15160;2;170;94.0;120;80;2;1;1;1;0;1
+36618;17487;2;183;87.0;100;80;1;1;0;0;0;0
+36619;23442;2;169;95.0;120;80;1;1;0;0;0;1
+36622;21364;1;151;75.0;130;90;3;1;0;0;1;1
+36623;21682;1;170;68.0;120;80;1;1;0;0;1;0
+36624;20385;2;169;56.0;110;80;1;1;0;0;1;0
+36625;17256;1;158;78.0;120;70;1;1;0;0;0;0
+36627;19688;1;164;86.0;120;70;1;1;0;0;1;0
+36628;23363;1;169;64.0;120;80;1;1;0;0;0;0
+36629;18322;1;170;70.0;120;80;1;1;0;0;1;0
+36630;23288;2;162;74.0;140;90;1;1;0;0;1;1
+36631;17428;1;162;58.0;110;70;1;1;0;0;1;0
+36635;17312;1;178;76.0;120;80;1;1;0;0;1;0
+36636;23277;1;157;87.0;120;80;1;1;0;0;0;1
+36637;16700;2;159;60.0;130;70;1;1;0;0;1;1
+36638;21080;2;172;92.0;150;90;2;2;0;0;1;0
+36639;22686;1;160;75.0;110;70;3;3;0;0;1;0
+36640;19137;1;160;66.0;110;80;1;1;0;0;1;0
+36642;21746;1;150;80.0;150;90;3;2;0;0;1;0
+36643;20173;2;172;95.0;110;90;1;3;1;1;0;1
+36645;18108;2;184;126.0;130;80;1;1;0;0;1;1
+36646;21232;2;163;65.0;150;75;1;1;0;0;1;1
+36649;20347;2;176;68.0;140;80;1;1;0;0;1;1
+36650;19768;2;178;76.0;120;80;2;2;1;0;1;0
+36651;14776;2;166;63.0;120;70;1;1;0;0;1;0
+36653;19532;2;170;83.0;140;100;1;1;0;0;0;1
+36654;22849;1;170;70.0;100;70;1;1;0;0;1;1
+36655;23373;1;164;83.0;110;80;1;2;0;0;1;0
+36656;20554;1;160;63.0;160;63;2;2;0;0;1;0
+36657;20262;2;173;78.0;160;100;1;1;0;0;0;1
+36658;16091;1;170;75.0;120;80;1;1;0;0;1;0
+36659;22046;1;152;55.0;100;60;2;1;0;0;0;1
+36660;23367;1;160;70.0;120;80;1;1;0;0;1;1
+36662;22127;2;176;105.0;120;80;1;1;0;0;0;1
+36664;22687;2;168;65.0;130;90;1;1;0;0;1;1
+36665;19813;1;160;88.0;130;90;3;2;1;0;1;1
+36666;22507;2;168;88.0;110;90;3;3;0;0;1;0
+36667;20564;2;179;90.0;120;80;1;1;0;0;1;0
+36668;20573;1;160;80.0;150;90;1;1;0;0;1;0
+36669;18972;1;153;56.0;125;70;1;1;0;0;1;0
+36671;21983;2;167;78.0;110;80;1;1;0;0;1;0
+36672;19650;2;175;83.0;130;80;3;1;1;1;1;1
+36673;16963;1;159;56.0;100;80;2;2;0;0;1;0
+36674;19076;1;146;74.0;180;1200;2;1;0;0;1;1
+36676;17694;1;150;85.0;150;90;1;1;0;0;1;1
+36677;21037;2;175;88.0;130;80;1;1;0;0;1;1
+36678;15296;2;180;89.0;130;80;1;1;0;0;0;0
+36680;16847;1;178;80.0;120;70;1;1;0;0;1;1
+36681;15509;2;181;79.0;120;80;1;1;0;0;1;1
+36682;21820;1;169;69.0;120;80;1;1;0;0;1;0
+36684;20975;1;160;100.0;160;100;3;1;0;0;1;1
+36685;19038;1;160;65.0;100;80;1;1;1;0;1;1
+36686;21805;2;176;68.0;100;70;1;1;0;0;1;0
+36687;15416;1;159;68.0;100;70;1;1;0;0;1;0
+36688;19067;1;170;87.0;120;70;1;1;0;0;1;1
+36689;16788;1;169;65.0;120;80;1;1;0;0;1;0
+36690;18346;2;170;80.0;120;80;1;1;0;0;0;0
+36691;20743;1;157;70.0;120;80;1;1;0;0;1;0
+36693;21110;1;164;72.0;120;80;1;1;0;0;0;0
+36694;21386;2;170;96.0;160;90;1;1;1;0;1;1
+36697;21215;2;163;65.0;130;90;2;1;0;0;0;1
+36698;19607;2;159;58.0;120;80;1;1;0;0;0;0
+36699;21736;1;152;53.0;120;80;2;1;0;0;0;1
+36700;23415;2;185;65.0;140;80;1;1;0;0;0;1
+36701;15356;1;162;54.0;110;70;1;1;0;0;1;0
+36703;21141;1;165;72.0;170;90;1;1;0;0;1;1
+36704;21159;1;157;80.0;110;80;2;1;0;0;0;0
+36705;17403;1;155;50.0;130;80;1;1;0;0;1;1
+36706;14640;1;157;55.0;90;60;3;3;0;0;1;0
+36707;19689;2;168;70.0;130;90;1;1;0;0;0;0
+36708;14545;2;184;84.0;130;70;1;1;0;0;1;0
+36709;15187;1;151;69.0;110;70;1;2;0;0;1;0
+36710;21991;1;170;67.0;140;90;3;1;0;0;1;1
+36713;20204;1;158;73.0;180;100;1;1;0;0;1;1
+36715;17638;2;176;72.0;120;80;1;1;0;0;0;0
+36717;18422;1;158;73.0;110;80;1;1;0;0;1;0
+36719;20326;2;169;83.0;130;80;1;1;0;0;1;1
+36720;22444;1;154;85.0;120;80;2;2;0;0;1;1
+36721;18943;1;163;67.0;120;80;1;1;0;0;1;0
+36723;18270;2;171;72.0;120;80;1;1;0;0;1;0
+36724;14759;2;174;69.0;120;80;1;1;0;0;1;1
+36725;20298;1;170;74.0;120;80;1;1;0;0;1;1
+36726;20604;2;167;70.0;120;70;3;3;0;0;1;0
+36727;15379;2;176;92.0;130;90;2;1;0;0;1;1
+36728;19035;2;184;85.0;150;1100;1;1;0;0;1;0
+36729;20497;1;164;61.0;120;80;1;1;0;0;1;0
+36730;22671;1;162;64.0;110;70;1;1;1;0;1;0
+36733;22525;1;160;60.0;100;70;1;1;0;0;1;0
+36734;22035;2;170;100.0;120;80;1;1;0;0;1;1
+36737;19639;2;165;65.0;120;80;1;1;0;0;1;0
+36739;20679;2;181;85.0;140;90;1;1;1;0;0;1
+36741;17585;1;163;86.0;140;90;1;1;0;0;1;1
+36742;18302;2;168;75.0;140;80;1;1;0;0;1;1
+36743;16924;1;173;85.0;140;80;2;1;0;0;1;1
+36745;16773;2;169;69.0;121;80;1;1;0;0;1;0
+36746;19197;1;160;60.0;120;80;1;1;0;0;1;0
+36747;16828;1;168;68.0;120;80;1;1;0;0;0;0
+36748;15227;2;170;67.0;130;80;1;1;0;0;0;1
+36749;16067;1;158;56.0;130;80;1;1;0;0;1;1
+36750;23426;1;180;70.0;120;80;1;1;0;0;1;1
+36751;21436;1;158;80.0;150;70;3;3;0;0;1;1
+36752;20440;2;170;92.0;140;100;1;1;0;0;1;1
+36753;22747;2;167;64.0;120;60;1;1;0;0;1;0
+36756;22790;2;169;69.0;110;70;1;1;0;0;1;0
+36758;21079;2;181;91.0;150;89;3;1;0;0;1;1
+36759;20550;1;165;79.0;120;70;1;1;0;0;0;1
+36761;16350;1;170;78.0;120;80;1;1;0;0;1;1
+36763;14724;2;170;62.0;120;80;1;1;0;0;1;0
+36764;16188;1;170;90.0;110;80;1;1;0;0;1;0
+36766;23279;1;170;72.0;120;80;1;1;0;0;0;0
+36767;19895;2;172;78.0;130;90;1;1;0;0;1;1
+36769;19091;1;155;73.0;110;70;1;1;0;0;0;1
+36770;19526;1;157;52.0;110;70;1;1;0;0;1;0
+36771;16670;2;158;58.0;150;90;2;2;1;0;1;0
+36773;21099;1;163;72.0;120;80;3;1;0;0;1;0
+36774;21137;1;164;58.0;114;74;1;1;0;0;1;0
+36775;15122;1;164;89.0;120;80;1;1;0;0;1;0
+36777;15194;1;164;62.0;120;80;3;3;0;0;1;1
+36779;19837;1;167;90.0;130;80;3;1;0;0;1;1
+36781;20599;1;164;68.0;176;96;2;1;0;0;1;0
+36782;21825;1;160;72.0;120;80;1;1;0;0;1;0
+36783;15318;2;170;80.0;120;80;1;1;0;0;1;0
+36785;19691;1;158;66.0;150;100;2;1;0;0;1;1
+36786;19987;2;171;82.0;120;80;1;1;0;0;1;0
+36788;17363;1;154;58.0;130;80;1;1;0;0;1;1
+36790;18986;1;145;73.0;170;110;1;1;0;0;1;1
+36792;19091;1;165;60.0;120;80;1;1;0;0;1;0
+36793;18304;1;157;83.0;1400;80;1;1;0;0;1;1
+36795;20296;1;164;80.0;130;80;1;1;0;0;1;1
+36796;20432;1;163;93.0;150;110;3;1;0;0;0;1
+36802;21643;1;162;86.0;110;70;1;1;0;0;1;1
+36803;23257;1;163;76.0;140;80;3;3;0;0;0;1
+36804;21932;1;156;91.0;14;80;2;1;0;0;1;1
+36805;22638;1;150;45.0;150;90;1;1;0;0;1;1
+36809;17260;1;168;70.0;130;80;3;1;0;1;1;1
+36810;14720;2;168;72.0;120;80;1;1;0;0;1;0
+36811;20474;1;164;61.0;120;80;1;1;0;0;1;0
+36812;20538;1;162;81.0;110;70;1;1;0;0;1;1
+36813;20918;1;155;57.0;120;80;2;1;0;0;0;0
+36814;22554;1;163;63.0;130;90;2;1;0;0;1;1
+36815;18235;1;174;49.0;110;70;3;3;0;0;1;0
+36816;23416;2;172;70.0;130;80;1;1;0;0;1;0
+36818;15188;1;156;100.0;140;90;1;2;0;0;1;1
+36819;22710;2;176;80.0;150;90;1;1;0;0;1;0
+36820;21786;1;165;70.0;160;70;3;1;0;0;1;1
+36821;20661;2;168;60.0;130;80;2;1;0;0;0;1
+36822;22578;1;162;69.0;140;80;3;3;0;0;1;1
+36824;17378;2;171;88.0;140;90;1;1;0;0;1;1
+36827;17550;1;164;98.0;120;80;1;1;0;0;1;0
+36828;20491;1;148;54.0;130;90;1;1;0;0;1;1
+36829;15278;2;171;67.0;100;60;2;2;1;1;1;1
+36830;20286;1;152;75.0;160;100;2;1;0;0;1;0
+36831;18705;2;161;96.0;160;100;1;1;0;0;1;1
+36832;21885;1;154;84.0;180;80;1;1;0;0;1;1
+36833;19938;1;162;63.0;140;80;1;2;0;0;1;1
+36834;15873;1;160;65.0;110;70;1;1;0;0;1;0
+36835;20686;1;158;73.0;140;80;1;1;0;0;1;1
+36836;15387;1;152;63.0;110;70;2;2;0;0;1;0
+36837;16984;1;158;62.0;110;70;1;1;0;0;1;1
+36838;22485;2;172;69.0;14;110;1;1;0;0;1;1
+36839;19808;2;170;71.0;120;80;1;1;0;0;1;0
+36841;21722;1;170;84.0;120;80;1;1;1;0;1;1
+36843;18074;2;172;68.0;120;80;1;1;0;0;1;0
+36845;23082;1;162;64.0;140;90;3;1;0;0;1;1
+36846;21687;1;155;44.0;130;80;2;1;0;0;1;1
+36848;21812;1;165;83.0;140;80;1;3;0;0;1;0
+36849;21030;1;169;73.0;130;90;2;1;0;0;1;0
+36850;21743;1;155;55.0;145;90;3;3;0;0;1;1
+36851;22669;2;178;81.0;120;80;1;1;0;0;1;1
+36853;18303;2;165;118.0;160;1000;1;2;0;1;1;1
+36855;22583;2;164;64.0;140;90;1;1;1;0;1;1
+36857;21721;1;156;75.0;140;100;1;1;0;0;1;1
+36858;22655;1;174;65.0;120;80;1;1;0;0;1;0
+36859;19685;1;156;61.0;120;80;1;1;0;0;1;0
+36860;16136;2;176;80.0;160;1000;1;1;0;0;1;1
+36861;15258;2;168;70.0;120;81;2;1;0;0;1;0
+36862;21807;2;180;60.0;110;710;1;1;1;0;1;0
+36863;23290;1;167;97.0;140;80;3;1;0;0;1;1
+36864;23312;1;158;68.0;130;80;1;1;0;0;1;1
+36866;15263;1;167;70.0;120;80;1;2;0;0;1;1
+36869;16304;2;165;63.0;140;90;2;1;0;0;0;1
+36870;15353;2;172;84.0;110;80;1;1;0;0;0;0
+36871;18222;1;158;80.0;110;70;1;1;0;0;0;0
+36872;22374;2;180;67.0;160;100;1;1;1;1;0;1
+36874;15823;1;158;61.0;100;60;1;1;0;0;0;0
+36878;21962;1;160;70.0;140;90;1;1;0;0;0;0
+36881;17268;1;171;77.0;120;80;1;1;0;0;1;0
+36882;21041;1;165;60.0;110;60;1;1;0;0;1;0
+36883;18015;2;167;74.0;160;90;2;2;0;0;1;0
+36886;15487;1;169;68.0;110;70;1;1;0;0;1;0
+36887;15186;1;157;68.0;90;60;2;1;0;0;0;0
+36888;21757;1;152;78.0;140;80;1;1;1;0;1;1
+36889;18095;1;165;60.0;140;80;1;1;0;0;1;1
+36890;21886;1;150;70.0;120;80;1;1;0;0;1;0
+36892;22782;2;179;97.0;140;100;1;1;1;0;1;1
+36894;19802;2;169;73.0;120;80;3;1;0;0;1;1
+36895;23391;1;155;66.0;130;80;1;1;0;0;1;1
+36897;17060;1;165;65.0;120;80;1;1;0;0;0;0
+36898;17543;1;160;60.0;120;80;1;1;0;0;1;0
+36900;20353;1;160;55.0;160;1100;2;1;0;0;1;1
+36901;23495;2;168;70.0;120;80;1;1;0;0;1;0
+36902;23363;1;162;80.0;140;80;1;1;0;0;1;1
+36903;19559;2;166;51.0;140;90;1;1;0;0;1;1
+36905;19172;1;152;54.0;130;80;1;1;0;0;1;0
+36906;21850;1;150;86.0;120;80;1;1;0;0;1;1
+36907;18198;1;158;90.0;140;80;3;1;1;1;1;0
+36909;17977;1;165;60.0;150;90;2;1;0;0;1;1
+36911;22459;1;167;70.0;130;80;1;1;0;1;1;0
+36912;17428;1;159;49.0;130;80;2;1;0;0;1;0
+36913;17587;2;180;100.0;120;80;1;1;0;1;1;1
+36914;19821;2;158;72.0;120;80;1;1;0;0;1;1
+36916;19733;1;147;53.0;120;80;3;3;0;0;0;1
+36918;21334;2;160;90.0;140;90;1;1;0;0;0;1
+36921;21159;1;156;52.0;120;80;1;1;0;0;1;0
+36922;21867;2;160;76.0;130;80;2;3;0;0;0;0
+36924;21235;1;158;80.0;160;100;3;1;0;0;1;1
+36925;16883;2;172;74.0;131;80;1;1;1;0;1;1
+36928;23613;1;165;65.0;120;80;1;1;0;0;1;1
+36929;21118;1;165;65.0;120;60;1;3;0;0;0;1
+36931;20451;1;165;89.0;120;80;1;1;0;0;1;0
+36932;20507;2;170;65.0;140;80;1;1;0;0;1;1
+36934;15978;2;160;94.0;120;70;2;1;0;0;1;0
+36936;22703;1;168;92.0;120;80;2;1;0;0;1;1
+36937;22626;1;163;83.0;180;100;2;1;0;0;1;0
+36939;21757;1;161;97.0;130;70;1;1;0;0;1;1
+36940;19717;2;175;74.0;120;80;1;1;0;0;1;0
+36941;16935;2;165;70.0;120;80;3;3;0;0;1;0
+36943;16620;1;168;69.0;120;80;1;1;0;0;1;0
+36944;17541;2;170;69.0;110;70;1;1;0;0;1;0
+36945;19037;1;160;105.0;100;70;1;1;0;0;0;0
+36946;19015;1;158;60.0;120;80;1;1;0;0;1;0
+36951;21877;1;160;63.0;120;80;3;1;0;0;1;1
+36954;20554;1;155;63.0;140;90;1;1;0;0;1;1
+36956;20979;1;146;49.0;120;80;1;1;0;0;1;0
+36958;22467;2;154;65.0;120;100;1;1;1;1;1;0
+36960;19484;1;157;63.0;110;70;1;1;0;0;1;0
+36961;19009;2;170;88.0;120;80;1;1;0;0;1;0
+36962;23221;2;175;68.0;140;90;1;1;0;0;1;1
+36963;14575;1;161;122.0;110;80;1;3;0;0;1;0
+36964;23260;1;158;66.0;120;80;3;1;0;0;1;1
+36965;14510;1;161;56.0;100;60;1;1;0;0;1;0
+36966;19054;1;164;72.0;160;90;2;1;0;0;1;1
+36967;16250;1;159;72.0;120;80;1;1;0;0;1;0
+36968;21115;2;182;90.0;145;90;1;1;1;0;1;0
+36969;21213;1;168;60.0;120;80;1;1;0;0;0;0
+36971;20445;1;174;78.0;120;80;1;1;0;0;1;0
+36973;18084;1;157;60.0;110;70;3;1;0;0;1;0
+36974;20553;1;168;76.0;120;80;1;1;0;0;0;0
+36976;17463;1;165;80.0;130;70;1;1;0;0;0;1
+36979;19064;1;175;68.0;120;80;3;3;0;0;0;0
+36980;16751;2;169;70.0;180;120;2;1;0;0;1;1
+36983;17020;2;163;75.0;120;60;1;1;0;0;1;0
+36984;22080;2;169;65.0;150;90;1;1;0;0;1;1
+36985;14670;1;168;69.0;120;80;1;1;0;0;0;0
+36987;22344;1;158;79.0;130;90;1;3;0;1;1;1
+36988;21205;1;164;86.0;140;90;2;3;0;0;1;1
+36989;22050;2;171;85.0;150;90;3;1;0;0;1;1
+36990;21969;2;176;94.0;120;80;2;2;0;0;0;0
+36993;19594;1;160;70.0;120;80;1;1;0;0;1;0
+36995;19564;1;147;70.0;190;100;1;1;0;0;0;0
+36997;18317;1;156;58.0;120;80;1;1;0;0;1;0
+36998;19669;2;172;79.0;120;80;1;1;0;0;0;0
+37000;19148;1;160;60.0;120;70;1;1;0;0;0;0
+37001;15958;2;165;85.0;140;1000;1;1;0;0;1;0
+37002;22062;1;149;72.0;180;100;1;1;0;0;1;1
+37004;19786;1;158;71.0;150;90;1;1;0;0;1;1
+37005;14714;1;153;67.0;110;70;2;1;0;0;1;0
+37006;14666;2;177;85.0;120;80;1;1;1;0;1;0
+37009;19713;1;156;53.0;110;70;2;1;0;0;0;1
+37010;20486;1;164;84.0;140;90;2;1;0;0;1;1
+37011;16109;2;171;80.0;180;120;1;2;1;0;1;0
+37012;18356;1;160;60.0;120;80;1;1;0;0;0;0
+37013;22602;1;165;85.0;150;90;1;1;0;0;1;1
+37014;17503;1;158;72.0;120;80;1;1;0;0;1;0
+37015;19185;1;155;75.0;140;80;3;1;0;0;1;1
+37017;19058;2;177;84.0;120;80;1;1;0;0;1;1
+37021;20296;1;157;62.0;130;80;3;3;0;0;1;0
+37023;19581;2;176;72.0;140;95;1;1;0;0;1;1
+37024;22807;2;168;97.0;140;110;3;2;0;0;1;1
+37025;18153;1;152;54.0;110;70;1;1;0;0;1;0
+37026;20501;1;168;69.0;130;80;1;1;0;0;1;1
+37027;21930;2;162;71.0;110;80;1;1;1;0;1;1
+37028;18829;1;165;65.0;120;80;1;1;0;0;1;0
+37030;19778;1;154;113.0;150;90;1;1;0;0;1;0
+37031;20281;1;155;83.0;130;80;1;1;0;0;1;1
+37033;18295;2;161;74.0;120;80;1;1;1;1;0;0
+37034;16286;1;152;87.0;145;90;1;1;0;0;1;1
+37035;18747;2;176;105.0;130;80;1;1;1;0;1;1
+37036;21102;1;164;85.0;160;110;3;3;0;0;1;0
+37038;21968;1;162;106.0;140;90;1;1;0;0;1;1
+37040;18251;1;172;87.0;120;80;2;2;0;0;1;0
+37042;20337;1;155;75.0;140;90;1;1;0;0;1;0
+37043;17606;2;180;81.0;120;80;2;2;0;0;1;1
+37045;18947;1;159;64.0;120;80;1;3;0;0;1;0
+37046;18404;2;168;70.0;125;80;2;1;1;0;1;0
+37047;19763;1;166;70.0;110;70;1;1;0;0;1;0
+37048;21093;1;168;79.0;120;80;1;1;1;0;0;0
+37050;18816;1;158;60.0;120;80;1;1;0;0;1;0
+37051;18818;1;160;65.0;120;80;1;1;0;0;1;1
+37052;19503;2;183;88.0;130;80;1;1;1;1;1;0
+37053;21910;1;149;61.0;120;80;1;1;0;0;0;1
+37055;19086;1;164;86.0;110;60;1;1;0;0;1;1
+37057;19697;2;170;78.0;170;100;1;1;0;0;1;1
+37059;21171;2;168;86.0;140;90;1;1;0;0;1;1
+37060;18235;1;163;62.0;120;80;1;1;0;0;0;0
+37062;18135;1;154;59.0;140;90;1;1;0;0;1;1
+37063;16113;2;182;75.0;100;70;1;1;0;0;0;0
+37065;19000;1;157;56.0;120;80;1;1;0;0;1;1
+37066;17576;2;169;65.0;120;80;1;1;0;0;1;0
+37068;16042;1;160;66.0;110;70;1;1;0;0;1;1
+37069;21264;2;171;71.0;120;80;1;1;0;0;1;1
+37070;15255;1;168;67.0;120;80;1;1;0;0;1;0
+37072;20301;1;155;67.0;120;80;3;1;0;0;1;1
+37073;18234;1;164;45.0;120;70;1;2;1;0;0;0
+37075;20318;2;164;73.0;140;80;1;1;0;0;1;1
+37076;19034;1;154;77.0;170;90;1;1;0;0;0;1
+37079;19575;1;154;57.0;130;80;1;1;0;0;1;1
+37080;23375;1;158;90.0;120;80;1;3;0;0;1;1
+37081;14649;2;174;60.0;120;80;1;1;0;0;0;0
+37084;19555;1;174;78.0;130;90;1;1;1;0;1;1
+37087;21469;1;170;69.0;120;80;1;1;0;0;1;0
+37089;18289;1;156;63.0;130;80;1;1;0;0;1;1
+37091;18038;1;162;95.0;150;90;3;1;0;1;0;1
+37093;18250;2;175;89.0;120;80;1;1;0;0;1;0
+37095;16714;1;160;72.0;120;80;1;1;0;0;0;1
+37096;18189;2;168;72.0;120;80;1;1;0;0;0;0
+37097;20606;1;165;66.0;120;80;1;1;0;0;1;1
+37098;22371;1;167;65.0;130;70;3;3;0;0;1;1
+37099;23311;2;168;104.0;140;90;1;1;0;0;1;1
+37100;14682;2;167;70.0;120;80;1;1;0;0;1;1
+37103;19820;1;159;73.0;120;80;1;1;0;0;1;1
+37104;18331;2;172;70.0;120;80;1;1;0;0;0;0
+37105;15232;1;150;55.0;120;80;3;3;0;0;0;0
+37110;15919;2;170;65.0;120;80;1;1;0;0;0;0
+37111;20268;1;160;90.0;130;80;3;1;0;0;1;1
+37112;21757;2;171;78.0;130;70;3;3;0;0;0;1
+37113;22391;1;164;85.0;120;80;1;1;0;0;1;0
+37114;20704;1;164;71.0;140;90;1;1;0;0;1;1
+37115;21186;2;178;98.0;120;80;1;1;0;0;0;1
+37116;23164;2;160;48.0;140;90;2;1;1;1;1;0
+37119;16515;1;160;46.0;110;80;1;1;0;0;1;0
+37120;18377;1;172;78.0;110;70;1;1;0;0;1;0
+37121;18983;1;165;73.0;120;80;1;1;0;0;1;0
+37122;21440;2;178;70.0;120;80;1;1;1;1;1;0
+37126;18143;1;158;81.0;160;100;1;1;0;0;1;1
+37127;19660;1;169;71.0;120;80;1;1;0;0;1;0
+37128;21798;1;154;95.0;110;80;1;1;0;0;1;0
+37130;21732;2;156;52.0;120;80;1;1;0;0;1;1
+37131;23377;2;166;75.0;130;80;3;1;0;0;1;0
+37132;17780;2;170;75.0;100;70;1;1;0;0;0;0
+37136;19818;1;165;68.0;120;80;1;1;0;0;1;0
+37137;21030;1;163;82.0;120;70;1;1;0;0;1;1
+37138;18123;1;160;72.0;150;90;2;1;0;0;1;1
+37139;19870;1;160;88.0;150;90;1;2;0;0;1;1
+37140;19846;2;180;80.0;120;70;1;1;0;0;1;0
+37141;21977;1;165;80.0;120;80;1;1;0;0;1;0
+37143;20487;1;141;56.0;140;90;3;1;0;0;1;0
+37144;21806;2;162;73.0;110;70;1;1;0;0;1;1
+37147;22860;2;163;76.0;120;80;1;1;0;0;1;0
+37148;21269;2;163;85.0;120;80;1;1;0;0;1;1
+37149;14558;2;175;76.0;120;80;1;1;0;0;0;0
+37151;18285;1;170;70.0;120;80;1;1;0;0;0;0
+37152;23339;2;156;78.0;120;80;1;2;0;0;1;0
+37154;15949;1;156;76.0;150;80;2;1;0;0;1;1
+37155;22698;1;157;85.0;118;80;3;1;0;0;1;1
+37156;16098;2;173;71.0;120;80;1;1;0;0;0;0
+37159;22093;2;173;81.0;120;80;1;1;0;0;1;0
+37160;14741;2;172;71.0;110;70;1;1;0;0;1;0
+37161;14441;2;176;106.0;140;90;1;1;1;0;1;1
+37162;21222;1;170;70.0;140;90;1;1;0;0;1;1
+37164;19621;1;156;60.0;140;90;1;1;0;0;1;0
+37165;20376;1;154;58.0;120;80;1;1;0;0;0;1
+37166;20466;1;172;85.0;140;70;3;1;0;0;1;1
+37167;21944;2;158;70.0;120;80;1;1;0;0;0;0
+37170;23494;2;156;80.0;110;70;1;1;1;0;0;1
+37171;19629;1;160;89.0;130;90;1;1;0;0;1;0
+37172;19315;1;175;71.0;120;80;3;3;0;0;0;1
+37173;19080;2;170;68.0;140;90;1;1;0;0;1;1
+37174;19306;1;168;65.0;120;80;1;1;0;0;0;1
+37175;19052;1;158;60.0;140;60;1;1;0;0;1;0
+37176;17353;1;162;70.0;160;70;1;1;0;0;1;1
+37177;18984;2;170;70.0;120;80;1;1;0;0;1;1
+37179;17762;1;155;61.0;170;90;1;1;0;0;1;1
+37180;21176;2;170;80.0;140;90;2;2;1;0;1;1
+37181;17474;1;168;80.0;140;90;1;1;0;0;1;0
+37182;14392;2;169;63.0;120;80;1;1;0;0;1;0
+37183;19842;2;160;56.0;120;70;1;2;0;0;1;0
+37184;18900;1;160;73.0;110;80;1;1;0;0;1;0
+37185;15204;2;178;93.0;130;90;1;1;0;0;1;1
+37186;20372;1;162;94.0;110;70;1;1;0;0;1;0
+37187;20716;1;168;63.0;120;80;1;1;0;0;1;1
+37188;19648;2;184;100.0;160;100;1;1;0;0;1;1
+37189;20470;1;160;59.0;180;1110;2;2;0;0;1;1
+37190;19830;1;169;68.0;120;90;1;1;0;0;1;1
+37191;21922;1;156;76.0;130;80;2;2;0;0;1;0
+37192;21592;2;165;69.0;160;120;2;1;1;0;1;1
+37193;20505;1;156;71.0;120;80;1;1;0;0;1;0
+37194;22905;1;160;68.0;140;90;1;1;0;0;1;1
+37195;21156;2;174;72.0;140;70;1;1;0;0;1;1
+37197;19496;1;164;62.0;140;90;1;1;0;0;1;1
+37198;22599;1;166;102.0;240;130;2;1;0;0;1;1
+37199;23449;2;156;60.0;120;80;1;1;1;0;0;0
+37201;14343;1;155;53.0;110;70;1;1;0;0;1;0
+37205;23321;2;180;82.0;130;80;1;1;0;0;1;1
+37207;19754;2;170;82.0;120;80;3;1;0;0;1;1
+37208;18189;2;162;51.0;90;60;2;3;0;0;1;0
+37210;18916;1;160;57.0;120;90;2;1;0;0;1;1
+37211;16926;1;153;59.0;95;70;1;1;0;0;1;0
+37212;17541;1;165;65.0;115;80;1;1;0;0;1;1
+37214;18416;1;155;80.0;160;110;3;1;0;0;1;1
+37217;23169;2;175;82.0;160;90;3;3;0;0;1;1
+37219;14676;1;170;61.0;110;70;1;1;0;0;1;0
+37220;21344;2;161;74.0;120;80;3;3;0;0;1;1
+37222;21033;2;172;78.0;120;70;1;1;0;0;1;0
+37223;18484;1;165;64.0;110;70;1;3;0;0;1;0
+37224;22100;1;164;67.0;150;100;2;1;0;0;1;1
+37225;20182;2;178;80.0;130;90;1;1;0;0;1;0
+37226;21120;1;157;88.0;160;90;1;1;0;1;1;1
+37227;18472;1;157;74.0;110;80;1;1;0;0;1;0
+37228;18307;1;170;63.0;120;80;1;1;0;0;1;1
+37229;23308;1;162;81.0;120;80;3;1;0;0;1;1
+37231;17528;2;173;98.0;140;80;1;1;0;0;1;1
+37235;18235;2;168;88.0;140;95;1;1;0;0;1;1
+37237;21773;1;156;72.0;120;80;1;1;0;0;1;1
+37239;23407;1;165;71.0;132;81;3;1;0;0;1;1
+37240;21032;1;154;57.0;130;80;1;1;0;0;1;0
+37241;19850;1;163;80.0;140;90;1;1;0;0;1;0
+37242;19194;1;158;70.0;130;90;3;1;0;0;1;1
+37243;18966;1;164;73.0;140;90;1;1;0;0;0;1
+37246;20474;1;175;80.0;130;80;2;2;0;0;1;0
+37247;14694;2;150;64.0;110;70;2;2;0;0;0;0
+37248;21821;1;156;64.0;150;90;1;2;0;0;1;1
+37250;18199;1;166;76.0;140;90;1;1;0;0;1;1
+37251;19123;1;164;72.0;140;90;1;3;0;0;1;0
+37252;21877;2;169;70.0;130;90;1;1;0;0;0;0
+37255;14576;2;160;62.0;120;80;1;3;0;0;1;0
+37256;19741;1;160;72.0;120;80;1;1;0;0;0;0
+37257;19630;2;178;76.0;120;80;1;1;0;0;1;0
+37259;21272;1;157;92.0;120;80;1;1;0;0;1;1
+37260;22692;2;174;74.0;140;90;1;1;0;0;0;0
+37261;22564;2;175;84.0;130;80;1;1;0;0;1;0
+37262;16654;1;159;56.0;120;80;1;1;0;0;1;0
+37263;21070;1;160;65.0;140;90;1;1;0;0;1;1
+37264;16684;2;170;90.0;170;100;1;1;0;1;1;1
+37265;22652;2;160;60.0;120;80;1;1;0;0;1;0
+37266;20373;1;168;72.0;120;80;1;1;0;0;0;0
+37267;16238;1;158;82.0;128;80;1;1;0;0;1;1
+37268;18381;1;159;67.0;130;90;1;1;0;0;0;0
+37269;19555;2;164;62.0;110;80;2;1;0;0;1;0
+37270;18297;2;166;65.0;110;70;1;1;0;0;1;0
+37271;22543;1;161;108.0;150;80;2;2;0;1;0;0
+37272;17478;2;174;67.0;120;80;1;1;0;1;1;0
+37274;21049;1;165;70.0;125;75;3;1;0;0;1;1
+37275;21263;2;183;84.0;110;80;1;1;0;0;0;0
+37277;21931;1;169;67.0;120;70;1;1;0;0;1;1
+37278;15579;1;140;100.0;140;100;1;1;0;0;1;1
+37281;15249;2;170;69.0;130;80;1;1;1;0;0;0
+37282;20433;2;174;91.0;130;80;1;1;0;0;1;1
+37283;19487;2;169;85.0;120;80;1;1;0;0;1;0
+37285;23428;1;152;50.0;110;80;1;1;0;0;1;1
+37286;19582;2;171;60.0;110;70;1;1;0;0;1;0
+37288;20200;1;154;94.0;130;90;2;1;0;0;1;1
+37289;23222;2;172;95.0;120;80;3;3;1;0;0;0
+37292;23399;2;169;80.0;130;70;1;1;0;0;1;1
+37294;16942;1;163;43.0;120;80;1;1;0;0;0;0
+37296;21856;1;154;80.0;140;90;3;3;0;0;1;1
+37298;22214;1;163;88.0;130;80;1;1;0;0;0;1
+37299;20501;2;175;85.0;120;80;1;1;0;0;1;0
+37301;19708;1;164;104.0;130;80;1;1;0;0;1;1
+37302;19151;1;159;69.0;120;80;1;1;0;0;1;0
+37303;20312;1;170;78.0;150;90;1;1;0;0;1;1
+37305;19039;1;162;60.0;100;70;1;1;0;0;1;0
+37307;17491;1;162;58.0;110;70;1;1;0;0;1;0
+37308;19493;1;160;70.0;120;80;1;1;0;0;1;0
+37309;17551;1;159;98.0;170;90;1;1;0;0;1;1
+37310;21786;1;161;69.0;140;85;3;2;0;0;0;1
+37314;18463;1;165;67.0;160;80;1;1;0;0;0;1
+37318;22763;2;170;59.0;120;80;1;1;0;0;1;0
+37322;19016;1;168;77.0;130;80;1;1;0;0;0;1
+37323;18098;1;155;61.0;120;80;1;1;0;0;1;0
+37324;18379;2;170;70.0;120;80;1;2;0;0;1;1
+37326;19740;2;176;62.0;110;80;2;1;0;0;1;0
+37328;19654;1;160;57.0;110;70;1;1;0;0;1;0
+37330;20534;1;164;74.0;140;90;3;1;0;0;1;1
+37331;20315;2;168;75.0;140;80;1;1;1;0;1;0
+37332;22796;1;156;62.0;110;80;1;1;0;0;1;0
+37333;21872;1;168;59.0;110;70;1;1;0;0;1;0
+37334;20442;2;172;95.0;130;80;1;1;0;0;1;1
+37335;14738;1;164;120.0;130;90;1;1;0;0;1;0
+37336;22628;1;156;70.0;130;80;3;3;0;0;1;1
+37337;21982;1;159;90.0;130;80;3;1;0;0;1;1
+37338;16690;2;168;63.0;120;80;1;1;0;0;0;0
+37339;20386;1;158;65.0;140;80;1;1;0;0;0;1
+37340;18142;1;164;72.0;120;80;1;1;0;0;0;0
+37341;17518;1;155;73.0;120;70;1;1;0;0;1;0
+37342;17247;1;165;82.0;90;60;1;1;0;0;1;0
+37345;21299;1;163;66.0;110;70;1;1;0;0;1;1
+37346;14843;1;165;63.0;110;70;1;1;0;0;1;1
+37347;23465;2;160;59.0;120;80;1;1;0;0;1;0
+37349;20311;1;155;82.0;120;80;1;1;0;0;1;1
+37351;19583;2;173;111.0;140;90;2;1;1;0;1;0
+37353;19641;2;171;103.0;130;90;1;1;0;0;1;1
+37354;18111;1;162;76.0;110;70;1;1;0;0;0;0
+37355;18172;1;160;64.0;100;60;1;1;0;0;0;0
+37356;21256;1;159;68.0;160;100;1;1;0;0;1;1
+37357;16210;1;161;70.0;110;70;1;1;0;0;0;1
+37358;21375;1;165;105.0;130;80;1;1;0;0;1;0
+37359;21333;1;155;70.0;130;79;1;1;0;0;1;0
+37360;20193;2;160;65.0;120;80;1;1;0;0;1;0
+37362;18040;1;170;71.0;130;80;3;3;0;0;1;0
+37363;23240;1;162;66.0;130;90;3;1;0;0;1;1
+37365;23164;1;158;93.0;130;80;1;1;0;0;1;0
+37368;15459;2;173;68.0;130;80;2;1;1;0;1;1
+37369;23391;2;161;64.0;130;80;1;1;0;0;1;0
+37370;14556;1;151;71.0;120;80;1;1;0;0;1;1
+37372;15846;2;170;91.0;160;1000;2;2;0;0;1;1
+37375;23186;1;146;57.0;120;80;1;1;0;0;0;1
+37376;22628;1;156;93.0;140;80;1;3;0;0;1;1
+37377;22521;1;163;66.0;140;90;2;2;0;0;1;1
+37378;19569;1;171;76.0;100;70;1;1;0;0;0;0
+37379;21763;2;165;71.0;120;80;1;1;0;0;1;0
+37381;21062;1;156;75.0;130;90;1;1;0;0;1;1
+37382;19660;1;164;83.0;115;85;1;1;0;0;1;0
+37383;19934;2;170;79.0;120;80;1;1;0;0;1;0
+37384;21117;1;153;78.0;140;90;2;1;0;0;1;1
+37385;23580;1;157;75.0;170;1000;1;1;0;0;0;1
+37386;23237;2;170;80.0;130;80;2;1;0;0;1;0
+37388;23322;1;150;85.0;150;90;1;1;0;0;1;1
+37389;14587;2;175;73.0;100;60;1;1;1;0;1;0
+37390;18314;1;155;75.0;100;70;2;2;0;0;1;0
+37392;22690;1;156;65.0;120;80;1;1;0;0;1;1
+37393;17667;1;163;68.0;120;80;1;1;0;0;1;0
+37394;15166;2;171;73.0;110;70;1;1;0;0;0;0
+37395;18241;1;156;89.0;110;80;1;1;0;0;1;0
+37397;22563;2;168;65.0;120;70;3;3;0;0;0;1
+37398;14704;2;184;94.0;130;90;3;1;0;0;1;1
+37399;15940;1;170;72.0;140;90;1;1;0;0;1;1
+37401;23303;1;164;57.0;140;90;1;1;0;0;1;1
+37404;17510;1;156;89.0;140;80;2;2;0;0;1;0
+37406;19565;1;160;58.0;90;70;1;1;0;0;1;1
+37407;22609;2;164;78.0;140;90;1;1;0;0;0;0
+37409;14637;1;168;75.0;120;80;1;1;0;0;1;0
+37410;18864;2;154;45.0;110;70;1;1;0;0;1;0
+37412;19791;1;160;75.0;120;80;1;1;0;0;1;1
+37415;15320;2;178;82.0;140;80;1;1;0;0;1;1
+37416;19823;1;165;69.0;120;80;1;3;0;0;0;1
+37419;20372;2;168;57.0;120;80;1;1;1;0;1;0
+37421;20564;2;175;76.0;140;90;1;1;1;1;1;1
+37422;21932;2;160;61.0;120;80;1;3;1;1;1;0
+37423;19485;1;151;62.0;110;70;1;1;0;0;0;1
+37424;19820;1;170;56.0;110;70;1;1;0;0;1;0
+37425;19695;1;158;139.0;150;100;1;1;0;0;1;1
+37426;19710;2;174;68.0;120;80;1;1;0;0;1;0
+37428;22404;2;173;86.0;120;80;3;1;0;0;1;1
+37430;23410;1;162;77.0;150;90;3;1;0;0;1;1
+37431;14700;1;159;58.0;120;80;1;1;0;0;1;0
+37432;21795;1;166;73.0;145;90;1;1;0;0;1;1
+37433;15959;1;161;57.0;110;90;2;1;0;0;1;0
+37434;18009;1;155;54.0;120;80;1;1;0;0;1;0
+37435;23515;1;164;74.0;120;70;1;1;0;0;0;1
+37436;18780;1;154;55.0;150;100;1;1;0;0;0;0
+37437;23246;2;176;110.0;130;90;3;3;0;0;1;1
+37440;20260;1;168;85.0;110;70;1;1;0;0;1;0
+37441;21986;2;170;110.0;140;90;1;1;0;0;1;1
+37443;21752;1;155;82.0;140;80;2;1;0;0;1;1
+37444;19766;1;160;55.0;120;80;1;1;0;0;0;1
+37447;19724;2;176;88.0;130;90;1;1;0;0;1;1
+37448;20369;1;169;62.0;120;80;2;2;0;0;0;1
+37449;19008;1;160;60.0;120;80;3;3;0;0;1;1
+37450;22473;1;162;80.0;120;80;2;1;0;0;1;0
+37451;15366;1;163;87.0;110;70;1;1;0;1;1;1
+37452;19790;1;163;71.0;120;80;3;3;0;0;1;1
+37453;15159;1;165;57.0;120;90;2;1;0;0;1;0
+37454;18763;2;165;98.0;120;90;2;1;1;0;1;0
+37455;19563;1;162;56.0;150;100;2;1;0;0;1;1
+37456;17455;2;175;78.0;140;90;1;1;1;0;1;1
+37459;17428;2;180;98.0;130;80;1;1;0;0;1;0
+37461;22663;1;166;64.0;130;80;1;1;0;0;0;0
+37462;22101;2;170;76.0;125;70;3;3;0;0;0;1
+37465;19050;2;170;82.0;130;90;1;1;0;0;1;1
+37466;17658;1;169;77.0;140;100;1;1;0;0;1;1
+37469;20943;2;167;77.0;150;90;1;1;0;1;1;1
+37470;19738;1;163;67.0;130;90;2;1;0;0;1;1
+37471;19111;1;165;64.0;120;80;1;1;0;0;0;0
+37473;17527;1;156;65.0;120;80;1;1;0;0;1;0
+37474;16808;1;172;68.0;110;80;1;1;0;0;1;0
+37475;18666;2;162;70.0;170;90;2;1;0;0;1;1
+37476;19548;1;173;48.0;110;70;1;1;0;0;1;0
+37479;15526;1;155;66.0;100;70;1;1;0;0;1;0
+37480;23387;2;169;82.0;150;90;2;1;1;0;1;1
+37481;22595;1;166;53.0;120;80;1;1;0;0;1;1
+37483;21198;1;150;58.0;150;80;2;1;0;0;1;1
+37486;19934;1;161;70.0;150;70;2;2;0;0;1;1
+37487;15833;1;174;65.0;120;80;1;1;0;0;1;0
+37488;14478;2;172;55.0;90;59;1;1;0;0;1;0
+37489;18176;1;156;78.0;120;80;2;1;0;0;1;0
+37490;23277;2;168;87.0;120;80;1;1;0;0;0;1
+37491;16118;1;172;69.0;120;80;1;1;0;0;0;1
+37492;19753;2;180;93.0;120;70;1;1;0;0;1;1
+37493;23348;1;151;92.0;120;70;1;1;0;0;1;0
+37495;16564;1;162;80.0;130;90;1;1;0;0;0;0
+37496;14674;2;167;66.0;125;80;1;1;0;0;1;0
+37497;20447;1;151;71.0;140;90;1;1;0;0;1;1
+37498;21781;2;184;93.0;160;90;1;1;0;0;1;1
+37499;22075;2;184;93.0;120;80;1;1;1;1;1;0
+37502;22531;2;166;60.0;120;80;1;1;0;0;1;1
+37503;20301;1;158;72.0;140;90;3;1;0;0;1;1
+37504;20352;2;168;76.0;120;80;1;1;0;0;1;0
+37506;16867;2;167;73.0;110;70;3;1;1;0;0;1
+37507;22160;2;169;72.0;180;100;3;1;0;1;1;1
+37508;19125;2;173;62.0;120;80;1;1;0;0;1;0
+37509;21138;1;165;78.0;120;80;1;1;0;0;1;0
+37511;21376;1;160;80.0;120;70;1;1;0;0;1;0
+37514;18892;2;167;87.0;120;80;1;1;0;0;1;0
+37515;18994;1;163;60.0;120;80;1;1;0;0;1;0
+37517;21894;2;173;80.0;140;90;1;1;0;0;1;1
+37519;18777;1;165;71.0;160;1000;3;3;0;0;1;0
+37520;18209;2;170;69.0;120;80;1;1;0;0;1;1
+37521;21123;2;165;64.0;150;70;1;1;0;0;1;0
+37522;19660;1;165;65.0;120;80;1;1;0;0;0;0
+37524;20441;2;182;104.0;160;100;1;1;0;0;1;1
+37525;16907;1;156;84.0;120;80;3;1;0;0;1;1
+37526;18932;2;167;71.0;140;80;3;1;0;0;1;1
+37530;21152;2;169;71.0;120;80;1;1;0;0;1;1
+37531;18905;1;168;58.0;120;80;1;1;0;0;0;1
+37532;19036;1;150;72.0;120;80;1;1;0;0;1;0
+37533;16818;2;174;90.0;160;120;1;1;0;0;1;1
+37534;23177;1;155;71.0;120;80;2;1;0;0;1;1
+37536;16019;1;168;82.0;110;80;1;1;0;0;1;0
+37537;21327;1;150;65.0;140;90;2;1;0;0;1;1
+37540;18182;1;164;68.0;120;80;2;1;0;0;0;0
+37544;19878;1;166;68.0;120;80;1;1;0;0;1;0
+37546;15432;2;162;80.0;110;90;1;1;0;1;1;0
+37547;14545;1;160;57.0;100;90;1;1;0;0;1;0
+37549;21932;1;163;62.0;120;80;1;1;0;0;1;1
+37551;20505;1;163;63.0;120;80;3;3;0;0;0;1
+37552;22465;1;157;86.0;130;80;2;2;0;0;1;0
+37553;17679;1;164;86.0;120;80;1;1;0;0;0;1
+37554;18989;1;162;101.0;140;100;1;1;0;0;1;1
+37558;19634;1;156;56.0;120;80;1;1;0;0;1;1
+37559;14520;1;168;127.0;160;1100;1;2;1;0;1;1
+37560;19588;1;153;60.0;130;80;1;1;0;0;0;0
+37561;20279;1;162;67.0;120;80;1;1;0;0;1;0
+37562;19504;1;165;70.0;120;80;1;1;0;0;1;1
+37563;15277;1;158;63.0;130;100;1;1;0;0;1;1
+37564;19123;1;152;76.0;130;90;3;3;0;0;1;1
+37565;15466;1;158;68.0;100;80;1;1;0;0;1;0
+37567;22453;2;168;78.0;130;70;1;2;0;0;1;1
+37568;19754;2;176;80.0;120;80;1;1;0;0;1;0
+37569;17495;1;164;64.0;90;70;1;1;0;0;1;0
+37571;23531;1;162;63.0;140;80;1;1;0;0;0;1
+37574;19798;2;166;96.0;140;80;1;2;0;0;1;1
+37575;18391;1;160;67.0;120;80;1;1;0;0;0;1
+37576;23085;2;166;70.0;120;80;1;1;0;0;1;1
+37577;18392;1;156;68.0;120;80;1;1;0;0;0;0
+37578;18452;2;170;63.8;120;80;1;1;1;1;0;0
+37579;20556;2;163;76.0;140;80;2;2;0;0;0;1
+37580;21276;1;162;104.0;140;90;2;1;0;0;1;1
+37582;20292;2;167;78.0;140;90;2;2;0;0;1;1
+37584;21044;2;162;93.0;140;90;1;1;0;0;1;1
+37585;20958;1;158;85.0;110;70;1;1;0;0;1;0
+37586;14506;2;164;60.0;110;70;1;1;0;0;0;1
+37587;20351;1;162;74.0;100;70;1;1;0;1;1;0
+37590;18160;2;172;93.0;170;100;2;1;0;0;1;1
+37591;18168;2;166;73.0;120;70;1;1;1;0;1;0
+37592;19072;1;169;75.0;120;80;1;1;0;0;1;0
+37593;16563;1;160;54.0;120;80;1;1;0;0;1;0
+37594;23445;1;161;74.0;130;90;3;1;0;0;1;1
+37596;21921;1;175;70.0;110;70;1;1;0;0;1;1
+37597;22369;2;170;73.0;120;80;1;1;0;0;1;1
+37599;19188;2;163;75.0;120;80;1;1;1;1;1;0
+37600;21023;2;158;71.0;130;80;1;1;0;0;1;0
+37601;21820;2;176;85.0;130;80;1;1;1;0;1;1
+37603;18215;2;179;95.0;160;90;3;1;0;0;0;1
+37605;20453;1;157;67.0;140;80;3;1;0;0;1;1
+37607;18442;2;169;69.0;120;70;1;1;0;0;0;0
+37608;19686;2;165;68.0;120;80;1;1;0;0;1;0
+37609;19100;1;169;69.0;120;80;1;1;0;0;1;0
+37610;20384;1;149;58.0;90;60;1;1;0;0;1;0
+37612;14792;1;165;65.0;120;70;1;1;0;0;1;0
+37613;19637;2;168;78.0;140;80;1;1;0;0;1;1
+37614;14698;1;156;62.0;110;70;3;3;0;0;1;1
+37615;22530;2;184;96.0;140;80;3;1;0;1;0;1
+37616;18099;2;157;51.0;110;70;1;1;0;0;0;0
+37618;16754;1;156;90.0;120;80;2;1;0;0;1;0
+37620;15598;1;180;75.0;110;80;1;1;0;0;1;0
+37621;20357;1;165;70.0;120;90;1;1;0;0;1;0
+37624;22488;1;155;50.0;150;100;1;1;0;0;0;0
+37625;18991;1;164;65.0;140;90;2;1;0;0;1;1
+37626;23479;2;165;66.0;130;90;3;3;0;0;1;1
+37628;19775;2;155;60.0;130;80;1;1;0;0;1;1
+37629;21898;1;161;62.0;110;70;2;1;0;0;1;1
+37630;18203;1;162;92.0;200;120;1;1;0;0;0;1
+37632;21128;1;162;64.0;180;120;2;1;0;0;0;1
+37633;19709;1;172;75.0;120;80;1;1;0;0;1;0
+37635;16832;1;172;93.0;100;70;1;1;0;0;1;0
+37636;16257;1;165;68.0;160;100;1;1;0;0;1;1
+37637;21279;2;170;109.0;160;100;3;2;0;0;1;1
+37638;21117;2;170;95.0;130;80;1;2;0;0;1;1
+37639;16687;1;168;69.0;120;80;2;1;0;0;1;1
+37643;19672;1;165;75.0;140;80;1;1;0;0;1;1
+37644;22542;1;163;88.0;140;90;1;2;0;0;0;1
+37650;19723;1;155;70.0;150;100;1;1;0;0;1;0
+37652;23282;1;160;62.0;160;100;3;1;0;0;1;1
+37653;16529;1;159;93.0;130;90;3;1;0;0;1;1
+37654;16834;1;178;96.0;120;80;1;1;0;0;1;1
+37655;23159;2;183;96.0;130;80;1;1;1;0;0;1
+37657;14410;2;170;75.0;120;80;1;1;0;0;0;0
+37659;18017;1;165;108.0;120;80;1;3;0;0;1;0
+37660;16748;1;168;94.0;140;100;2;2;0;0;1;1
+37661;18778;2;170;77.0;140;90;1;1;1;1;1;1
+37664;23377;1;163;68.0;140;80;1;1;0;0;1;1
+37665;21807;1;165;56.0;110;90;1;1;0;0;1;1
+37667;23123;1;150;59.0;120;80;1;1;0;0;1;1
+37668;21244;1;158;64.0;120;80;1;1;0;0;1;1
+37669;20292;1;155;127.0;160;90;3;2;0;0;1;1
+37670;19092;1;162;64.0;120;80;1;2;0;1;1;1
+37671;22674;2;178;75.0;110;80;1;1;1;0;1;0
+37674;22744;1;163;68.0;120;80;3;3;0;0;1;1
+37679;20383;1;151;84.0;160;90;1;1;0;0;1;1
+37681;16731;1;162;58.0;110;70;1;1;0;0;1;0
+37682;21159;1;169;73.0;140;90;3;1;1;0;1;1
+37683;20438;1;160;64.0;100;60;1;1;0;0;1;0
+37685;23091;2;162;63.0;120;80;1;1;0;0;1;0
+37687;22498;1;158;60.0;110;70;1;1;0;0;1;0
+37690;20385;1;170;70.0;110;80;2;1;0;0;1;0
+37691;18223;2;179;103.0;120;80;1;1;0;0;0;0
+37692;18786;1;162;65.0;120;80;1;1;0;0;1;0
+37693;21108;2;172;84.0;130;80;1;1;0;0;0;1
+37695;19816;2;160;70.0;110;60;1;1;0;0;1;0
+37696;19014;1;158;62.0;120;80;1;1;0;0;1;0
+37697;14812;1;165;70.0;110;70;1;1;0;0;1;0
+37698;17584;1;175;71.0;120;75;1;1;0;0;0;0
+37699;17537;1;148;55.0;150;1000;1;1;0;0;0;1
+37700;14675;1;158;60.0;110;80;2;1;0;0;1;0
+37701;19097;2;165;70.0;120;80;1;1;0;0;1;1
+37703;14603;2;181;76.0;120;80;1;1;0;0;1;0
+37704;21034;2;173;80.0;160;1000;1;1;0;0;1;1
+37705;16912;1;168;65.0;110;70;1;1;0;0;1;0
+37706;21278;1;160;60.0;120;80;1;1;0;0;1;0
+37709;23402;2;177;68.0;120;80;1;1;1;0;1;0
+37711;21039;1;152;53.0;120;80;1;1;0;0;0;1
+37712;16089;2;175;107.0;140;100;1;1;0;0;0;1
+37713;19525;1;152;50.0;100;60;1;1;0;0;1;0
+37715;19168;1;157;58.0;100;70;2;2;0;0;1;0
+37718;16556;1;168;52.0;120;80;1;1;0;0;1;0
+37719;18844;1;167;67.0;140;60;2;2;0;0;1;1
+37720;23273;1;167;71.0;130;80;2;2;0;0;1;1
+37721;16720;1;165;73.0;120;80;1;1;0;0;1;0
+37722;19764;1;161;69.0;120;80;1;1;0;0;1;0
+37723;18425;1;158;63.0;120;90;1;1;0;0;1;0
+37724;22774;2;166;72.0;110;80;1;1;0;0;1;0
+37725;19618;2;182;95.0;130;100;1;1;0;0;1;1
+37726;20048;1;168;58.0;150;90;1;1;0;0;1;1
+37727;19081;2;174;75.0;110;70;1;1;1;0;0;1
+37730;15365;2;170;63.0;120;70;1;1;1;0;1;0
+37732;18429;1;144;73.0;120;80;1;1;0;0;1;0
+37733;14695;1;158;69.0;120;80;1;1;0;0;1;1
+37735;16626;2;177;104.0;180;100;1;1;0;0;1;1
+37736;17062;2;165;64.0;120;80;1;1;0;0;1;0
+37737;18902;1;170;65.0;120;80;1;1;0;0;1;0
+37738;18079;1;165;62.0;120;80;3;3;0;0;1;1
+37740;15800;2;150;55.0;120;82;1;1;0;0;1;1
+37742;22650;1;160;64.0;140;90;3;3;0;0;1;0
+37743;18259;1;150;70.0;110;70;2;1;0;0;1;0
+37744;21981;1;165;72.0;120;80;1;1;0;0;1;0
+37746;15286;1;176;81.0;110;170;1;2;0;0;1;0
+37747;22422;2;189;91.0;130;80;1;1;1;0;1;0
+37748;21916;1;160;81.0;160;100;1;1;0;0;1;1
+37749;21133;1;158;76.5;130;80;3;1;0;0;1;1
+37750;21768;1;165;65.0;140;100;1;1;0;0;1;1
+37751;21889;1;160;60.0;120;80;1;1;0;0;1;1
+37752;15441;1;168;66.0;150;100;1;1;0;0;1;1
+37753;21217;2;168;78.0;90;60;1;2;0;0;0;0
+37756;17636;1;156;68.0;120;80;1;3;0;0;1;0
+37757;21882;1;163;74.0;150;100;2;1;0;0;0;1
+37758;20363;2;160;60.0;120;80;1;1;0;0;1;0
+37759;18907;1;170;96.0;140;90;1;1;0;0;1;1
+37762;21184;1;170;70.0;120;80;1;1;0;0;1;0
+37763;14607;2;160;66.0;110;70;1;1;1;0;1;0
+37765;16708;2;185;130.0;150;90;2;1;0;0;1;1
+37767;17494;1;165;76.0;120;70;1;1;0;0;1;0
+37768;23464;1;160;80.0;140;90;3;1;0;0;1;1
+37769;21950;1;159;75.0;130;80;3;1;0;0;1;1
+37770;23250;1;157;60.0;140;80;1;1;0;0;1;1
+37771;22696;1;159;92.0;130;90;2;2;0;0;1;1
+37772;19975;2;165;60.0;140;80;1;1;0;0;1;0
+37773;19878;2;176;85.0;140;90;1;1;0;1;1;0
+37775;21115;2;164;78.0;120;80;1;1;0;0;1;0
+37776;14558;1;165;54.0;90;60;1;1;0;0;1;0
+37777;23086;2;171;91.0;140;65;1;1;0;0;0;1
+37778;15296;1;159;65.0;110;70;1;1;0;0;1;0
+37779;21152;1;162;89.0;140;80;3;1;0;0;1;1
+37782;22511;2;151;60.0;120;80;1;1;0;0;1;0
+37783;14589;1;160;72.0;110;70;1;1;0;0;1;0
+37784;18059;2;171;69.0;120;80;1;1;0;0;1;0
+37785;18140;1;149;76.0;90;60;2;2;0;0;1;0
+37786;19677;2;165;62.0;150;90;1;1;1;0;1;1
+37787;18148;2;175;99.0;180;100;2;1;0;0;0;1
+37788;18075;2;174;79.0;90;60;1;1;0;1;1;0
+37792;19789;1;148;43.0;160;90;1;1;0;0;1;1
+37793;21709;1;152;83.0;130;90;1;1;0;0;1;1
+37794;18033;2;169;65.0;120;80;1;1;0;0;0;1
+37795;18263;2;170;65.0;120;80;2;2;0;1;1;0
+37797;22408;2;159;104.0;170;90;1;1;0;0;1;0
+37800;21938;2;186;79.0;120;80;1;1;1;0;0;0
+37801;16801;1;159;42.0;120;80;1;1;0;0;1;0
+37802;21141;1;164;68.0;148;90;1;1;0;0;1;1
+37805;17528;1;158;68.0;110;70;1;1;0;0;1;0
+37806;19674;1;158;67.0;110;70;1;1;0;0;1;0
+37807;18935;2;168;70.0;110;70;1;1;1;0;1;0
+37808;16147;1;159;93.0;110;60;1;1;0;0;1;1
+37809;15848;1;164;46.0;90;60;1;1;0;0;1;0
+37810;21036;1;162;48.0;120;80;1;1;0;0;1;0
+37811;18989;1;156;75.0;120;80;1;1;0;0;1;0
+37813;19863;1;163;71.0;110;80;1;1;0;0;1;0
+37815;23668;1;169;80.0;120;80;1;1;0;0;1;0
+37817;15139;1;170;71.0;120;80;1;1;0;0;1;0
+37819;16096;1;162;77.0;200;100;2;1;0;0;1;1
+37820;20506;1;159;69.0;140;90;3;1;0;0;1;1
+37823;18350;1;163;78.0;110;70;1;1;0;0;1;0
+37824;19821;2;168;64.0;120;80;1;1;0;0;1;0
+37825;23593;1;167;85.0;120;80;1;1;0;0;0;1
+37826;21862;1;160;79.0;120;80;2;1;0;0;1;0
+37827;19610;2;170;71.0;100;60;1;1;0;0;0;1
+37828;18371;1;165;60.0;120;70;1;1;0;0;0;0
+37829;17478;2;165;70.0;120;80;1;1;0;0;0;0
+37830;21155;2;164;70.0;120;80;1;1;0;0;1;0
+37831;15138;2;167;70.0;120;70;1;1;0;0;1;0
+37833;22020;1;174;89.0;130;90;1;1;0;0;0;1
+37837;18908;1;158;70.0;120;90;1;1;0;0;1;0
+37838;18160;1;167;75.0;100;59;1;2;0;0;0;0
+37840;22512;2;169;75.0;120;90;1;1;0;0;1;1
+37841;19450;1;154;66.0;120;90;1;1;0;0;1;1
+37842;15966;1;168;69.0;120;80;1;1;0;0;1;0
+37843;18394;1;178;69.0;110;70;1;1;0;0;1;0
+37844;20524;2;177;66.0;120;80;1;1;0;0;1;0
+37846;19088;1;157;62.0;140;70;1;1;0;0;1;0
+37847;19840;1;152;68.0;14;90;1;1;0;0;1;1
+37848;17232;1;170;90.0;140;90;2;1;0;0;1;1
+37849;15203;2;171;80.0;120;80;1;1;0;0;1;0
+37850;16702;2;170;73.0;140;90;3;1;0;0;1;1
+37851;20412;2;170;77.0;120;80;1;1;0;0;1;0
+37852;19183;2;175;86.0;140;90;1;1;0;0;1;1
+37853;19123;1;162;95.0;140;90;2;1;0;0;1;1
+37854;15966;2;186;82.0;110;60;2;1;0;0;0;1
+37855;19008;1;167;85.0;140;70;1;1;0;0;1;1
+37856;21016;2;159;80.0;180;100;1;1;0;0;1;0
+37858;18929;1;160;57.0;120;80;2;1;0;0;1;0
+37860;17725;1;160;72.0;120;80;3;1;0;0;0;1
+37863;18724;1;180;127.0;120;90;1;1;1;0;1;0
+37864;15832;1;159;66.0;90;60;1;1;0;0;1;0
+37865;16564;1;157;54.0;90;60;1;1;0;0;1;0
+37866;20445;2;170;74.0;110;70;3;1;0;0;1;0
+37867;18226;2;172;98.0;160;1000;2;1;1;1;1;1
+37869;21978;1;169;125.0;130;90;2;2;0;0;1;1
+37870;15388;1;161;78.0;120;80;1;1;0;0;1;0
+37871;16551;1;160;118.0;120;70;2;1;0;0;1;1
+37872;18324;1;165;65.0;120;80;1;1;0;0;1;1
+37873;16767;2;175;55.0;90;60;1;1;1;1;1;0
+37874;18984;1;157;69.0;16;10;3;1;0;0;1;1
+37875;19469;1;152;68.5;110;70;1;1;0;0;1;0
+37876;15219;1;172;76.0;120;80;1;1;0;0;0;0
+37877;15332;1;156;71.0;100;70;1;1;0;0;1;0
+37878;19823;1;170;68.0;120;80;1;1;0;0;1;0
+37879;21104;1;161;57.0;120;60;1;1;0;0;1;0
+37883;18346;2;170;78.0;120;70;1;1;0;0;0;1
+37884;20367;1;176;76.0;100;80;1;1;0;0;1;0
+37888;21805;1;165;60.0;110;60;1;1;0;0;1;0
+37891;15856;2;171;63.0;120;80;2;1;1;1;1;0
+37892;19862;2;183;97.0;140;90;1;1;0;0;1;1
+37893;20418;1;146;67.0;120;80;1;1;0;0;1;1
+37895;18189;2;162;65.0;120;80;1;1;0;0;0;0
+37898;22679;2;158;74.0;110;70;1;1;0;0;1;1
+37899;16837;2;172;72.0;120;70;1;1;0;0;1;0
+37900;21207;2;161;78.0;140;1000;1;1;0;0;1;0
+37901;14692;1;153;49.0;120;80;1;1;0;0;1;0
+37902;17950;1;165;70.0;120;80;1;1;0;0;0;0
+37903;19095;2;154;68.0;120;80;1;1;0;0;1;1
+37905;22651;1;161;62.0;150;90;1;1;0;0;1;1
+37906;18278;2;182;81.0;125;80;1;1;0;0;0;0
+37907;18474;1;165;60.0;110;70;2;2;0;0;1;0
+37908;19812;1;165;63.0;120;80;1;1;0;0;1;1
+37910;18320;1;156;56.0;120;80;2;2;0;0;1;0
+37911;21280;1;158;63.0;110;80;3;2;0;0;1;1
+37912;16749;1;152;51.0;120;60;1;1;0;0;1;0
+37916;21117;1;152;62.0;120;80;1;1;0;0;1;1
+37917;21866;1;175;65.0;120;80;1;1;0;0;1;1
+37919;15316;1;166;63.0;120;80;1;1;0;0;1;1
+37920;23401;1;160;65.0;120;60;1;1;0;0;0;0
+37922;17464;1;168;98.0;130;80;1;1;0;0;1;0
+37923;14741;1;163;83.0;150;90;2;1;0;0;1;0
+37924;19843;1;185;83.0;110;70;1;1;0;0;1;0
+37925;19566;1;161;86.0;180;110;3;3;0;0;0;1
+37927;20617;2;166;71.0;130;90;1;1;0;0;1;1
+37928;16877;2;172;70.0;120;80;1;1;1;1;1;0
+37930;15776;1;162;79.0;130;90;3;2;0;0;1;1
+37931;20508;1;170;75.0;120;80;1;1;0;0;1;0
+37932;21617;2;159;73.0;150;90;1;1;1;1;1;0
+37933;15426;2;168;65.0;120;80;1;1;0;0;0;0
+37936;19830;2;166;72.0;120;80;1;1;0;0;1;0
+37938;18342;1;162;82.0;130;90;3;1;0;0;1;1
+37939;19841;1;162;72.0;120;80;1;1;0;0;1;0
+37940;19509;2;168;85.0;160;100;1;1;1;0;1;0
+37942;15239;1;154;75.0;120;80;1;1;0;0;1;1
+37943;21826;2;161;78.0;130;70;1;1;0;0;0;1
+37945;14519;2;160;60.0;120;60;1;1;0;0;1;0
+37947;14719;1;170;70.0;120;80;1;1;0;0;0;1
+37948;16140;1;158;58.0;120;80;1;1;0;0;0;0
+37949;20711;2;170;80.0;110;80;1;1;1;0;1;0
+37950;19656;1;158;82.0;160;90;1;1;0;0;1;1
+37951;22458;2;175;86.0;170;100;1;1;1;0;1;1
+37952;23168;2;173;69.0;150;100;2;1;0;0;1;0
+37953;22500;2;175;105.0;120;79;1;3;0;0;1;0
+37954;23453;1;156;67.0;120;80;1;1;0;0;0;1
+37956;21826;1;148;47.0;120;80;1;1;0;0;0;1
+37957;20289;1;153;62.0;140;90;2;3;0;0;1;1
+37958;20617;1;165;113.0;150;90;1;1;0;0;1;1
+37960;15387;1;160;59.0;110;70;1;1;0;0;1;0
+37962;17447;1;167;67.0;102;85;1;1;0;0;1;0
+37963;21905;1;158;76.0;130;80;1;1;0;0;1;0
+37964;15211;2;171;68.0;120;80;1;1;0;0;1;0
+37966;16018;1;155;53.0;110;70;1;1;0;0;1;0
+37967;19767;1;180;89.0;130;70;1;1;0;0;1;1
+37968;15036;2;173;89.0;120;80;1;1;1;0;1;0
+37969;16093;2;162;68.0;140;90;1;1;0;0;1;1
+37970;19011;1;160;70.0;140;90;1;1;0;0;0;0
+37972;20440;2;169;54.0;120;80;1;1;1;1;1;0
+37973;20460;1;168;67.0;120;70;1;1;0;0;0;0
+37974;23517;1;163;80.0;120;80;1;1;0;0;1;0
+37975;21019;2;168;85.0;150;90;1;1;0;0;0;1
+37976;19025;2;165;68.0;110;80;1;1;0;0;0;0
+37978;20176;1;153;65.0;120;80;2;1;0;0;1;1
+37979;18940;2;173;80.0;100;70;1;1;0;0;1;1
+37981;19640;2;160;60.0;120;80;1;1;0;0;1;0
+37982;20694;2;165;65.0;120;80;1;1;0;0;1;1
+37983;19238;1;167;69.0;160;120;1;1;0;0;1;1
+37985;19662;1;167;66.0;120;80;1;1;0;0;1;1
+37986;18966;1;174;84.0;120;80;1;1;0;0;1;0
+37988;18201;2;172;83.0;110;70;2;1;0;0;1;0
+37989;22614;2;160;86.0;120;70;3;1;0;0;1;1
+37991;22422;1;170;89.0;140;90;3;3;0;0;0;1
+37992;18185;1;157;63.0;110;70;1;1;0;0;1;1
+37993;19815;2;163;130.0;120;80;3;3;1;0;1;0
+37995;18265;2;168;65.0;110;80;1;1;0;0;1;0
+37997;20335;1;164;90.0;130;90;1;1;0;0;0;0
+37999;22641;2;162;92.0;120;80;1;1;0;0;1;1
+38000;14364;1;169;70.0;110;70;1;1;0;0;1;0
+38003;16070;2;175;64.0;120;80;1;1;1;1;1;0
+38005;21248;2;165;71.0;130;90;3;1;0;0;1;1
+38006;14681;2;168;58.0;160;90;1;1;1;0;1;1
+38011;22452;2;181;75.0;120;80;1;1;0;0;1;1
+38012;23441;1;160;67.0;130;90;2;1;0;0;1;1
+38013;15267;2;168;76.0;170;100;1;1;0;0;0;1
+38014;19815;1;170;69.0;130;90;2;3;0;0;1;1
+38015;15463;2;189;92.0;150;90;1;1;0;0;0;1
+38016;20718;2;170;69.0;120;80;1;1;0;0;1;0
+38017;19032;1;158;57.0;120;90;1;1;0;0;1;1
+38018;19893;1;170;84.0;120;80;1;1;0;0;1;0
+38019;20411;2;176;80.0;120;80;1;1;1;0;1;1
+38023;21685;2;160;80.0;160;100;1;1;0;0;1;1
+38024;16199;1;161;62.0;120;80;1;1;0;0;0;0
+38026;23259;2;175;76.0;120;80;1;1;0;0;1;1
+38027;17536;2;173;61.0;100;80;2;1;0;0;1;0
+38028;14575;1;155;56.0;90;60;1;1;0;0;1;0
+38029;16962;2;165;75.0;120;80;1;1;0;0;1;1
+38030;17646;1;164;92.0;160;110;1;1;0;0;1;0
+38031;20914;2;162;65.0;120;80;3;3;1;0;1;0
+38032;15134;1;162;61.0;100;60;1;2;1;0;1;0
+38033;22765;2;169;70.0;130;80;1;1;1;0;1;1
+38034;23223;1;164;76.0;120;80;1;1;0;0;1;0
+38039;15935;2;168;58.0;120;80;1;1;0;0;0;0
+38041;18030;1;160;77.0;130;90;1;1;0;0;1;0
+38042;23397;1;150;71.0;170;90;1;1;0;0;0;1
+38043;23654;1;156;66.0;140;90;3;3;0;0;0;1
+38044;22563;1;154;79.0;150;90;1;1;0;0;1;1
+38046;21137;1;170;70.0;120;80;1;1;0;0;1;1
+38047;18947;2;178;70.0;12;80;1;1;0;0;1;0
+38048;17273;1;161;80.0;120;80;1;1;0;0;0;1
+38050;21147;2;172;78.0;120;80;1;1;0;0;1;0
+38051;19794;1;157;80.0;120;80;1;1;0;0;1;0
+38052;21153;2;174;85.0;140;90;1;1;0;0;1;0
+38053;20448;1;161;93.0;110;90;1;1;0;0;1;0
+38055;18847;1;164;90.0;135;85;1;1;0;0;1;1
+38058;18198;1;152;67.0;110;70;2;1;0;0;0;1
+38060;23456;2;165;65.0;120;80;1;1;0;0;0;1
+38061;15826;1;156;103.0;160;90;1;1;0;0;1;1
+38062;19007;2;169;79.0;120;80;1;1;0;0;1;0
+38063;15283;1;165;73.0;160;80;1;1;0;0;1;1
+38065;18811;1;166;91.0;120;80;3;1;0;0;1;1
+38066;22599;1;158;76.0;120;80;1;1;0;0;1;1
+38067;22839;1;160;65.0;120;80;1;1;0;0;1;0
+38070;19652;2;183;89.0;140;100;1;1;0;0;1;1
+38072;22407;2;172;71.0;120;80;1;1;0;0;0;1
+38073;14770;1;157;62.0;120;80;1;1;0;0;0;1
+38076;19755;1;162;60.0;110;70;2;1;0;0;1;0
+38077;21388;1;162;75.0;110;70;1;1;0;0;1;1
+38078;21736;2;159;66.0;120;80;1;1;0;0;1;0
+38079;21718;1;160;89.0;140;80;1;1;0;0;0;0
+38084;21971;2;159;60.0;120;80;1;1;0;0;1;0
+38085;19068;1;165;63.0;120;80;1;1;0;0;1;0
+38086;23504;1;158;76.0;140;90;3;3;0;0;1;1
+38088;19490;1;158;88.0;110;80;1;1;0;0;1;1
+38089;19181;1;167;68.0;120;80;1;1;0;0;1;0
+38090;21968;2;170;80.0;145;90;2;1;0;0;1;1
+38091;17627;2;174;78.0;120;80;1;1;0;0;1;0
+38092;18013;2;185;115.0;130;90;2;1;1;1;1;1
+38093;22036;2;169;60.0;130;80;1;1;1;0;1;0
+38094;15793;2;163;54.0;110;80;1;1;0;0;1;0
+38097;23290;1;163;62.0;140;80;1;1;0;0;1;1
+38098;22421;1;163;63.0;120;80;1;1;0;0;1;1
+38099;19545;1;159;76.0;113;72;1;1;0;0;1;0
+38101;20373;2;188;90.0;130;80;1;1;0;0;0;0
+38102;21747;1;156;58.0;160;90;2;1;0;0;1;1
+38103;19829;2;165;72.0;110;70;1;2;0;0;1;0
+38104;21484;2;165;65.0;100;80;1;1;0;0;1;0
+38105;16832;2;180;78.0;120;80;1;1;1;1;1;0
+38106;19188;1;160;79.0;120;80;2;2;0;0;1;0
+38108;20420;1;160;63.0;110;70;2;1;0;0;1;1
+38110;14529;2;170;78.0;110;70;1;1;1;1;0;0
+38111;15820;1;153;95.0;140;90;1;1;0;0;1;0
+38112;22095;2;165;60.0;120;80;3;3;0;0;1;0
+38113;21892;1;160;60.0;120;80;1;1;0;0;1;1
+38114;16012;1;165;77.0;100;70;1;1;0;0;0;0
+38119;22144;1;165;63.0;120;80;1;1;0;0;1;0
+38120;22435;1;165;97.0;120;80;1;1;0;0;1;1
+38124;14610;2;165;71.0;150;90;1;2;0;0;1;1
+38127;20376;1;148;47.0;140;90;1;3;0;0;1;0
+38128;16251;2;176;65.0;100;80;1;1;0;0;1;0
+38129;22577;1;161;66.0;140;90;1;1;0;0;1;1
+38130;19781;1;151;62.0;125;80;2;1;0;0;1;0
+38131;20982;2;158;60.0;140;80;1;1;1;0;1;1
+38132;23425;1;147;73.0;120;80;1;1;1;0;1;1
+38134;18880;2;164;59.0;120;80;1;1;0;0;1;0
+38135;20375;2;159;69.0;120;60;1;1;0;0;1;0
+38137;14574;1;167;65.0;120;70;1;1;0;0;1;0
+38140;21023;2;172;53.0;120;80;3;3;0;0;1;1
+38141;22546;1;156;84.0;140;90;1;1;0;0;1;1
+38142;22727;1;160;64.0;120;80;1;1;0;0;1;1
+38146;22663;1;162;83.0;140;90;3;3;0;0;1;1
+38148;23362;1;161;103.0;120;80;1;1;0;0;1;0
+38151;20519;2;173;83.0;120;90;1;1;0;0;1;0
+38152;19689;1;162;74.0;120;80;3;3;0;0;1;1
+38154;18242;2;176;76.0;120;80;1;1;0;1;1;1
+38155;17574;1;165;64.0;120;90;2;1;0;0;1;1
+38156;18088;2;180;90.0;180;100;2;2;0;1;1;1
+38157;22031;2;174;81.0;140;90;2;2;0;1;1;1
+38158;20372;2;178;94.0;120;80;2;1;0;0;1;0
+38159;21191;1;165;67.0;120;80;1;1;0;0;0;1
+38160;18131;2;165;70.0;120;80;1;1;0;0;1;0
+38161;21211;2;170;68.0;130;90;3;1;0;0;1;0
+38162;17379;1;160;66.0;150;100;1;2;0;0;1;1
+38164;20474;1;168;74.0;110;70;1;1;0;0;1;0
+38166;17460;1;171;70.0;100;80;1;1;0;0;1;1
+38167;18853;1;165;60.0;120;70;1;1;0;0;1;0
+38169;19710;1;145;70.0;180;110;2;2;0;0;0;1
+38170;21868;1;180;76.0;120;80;1;3;0;0;1;0
+38171;21703;1;162;80.0;120;80;3;2;0;0;0;1
+38172;18831;1;168;70.0;120;80;1;1;0;0;1;0
+38173;14618;1;164;62.0;120;60;2;1;0;0;1;0
+38174;21178;2;170;76.0;120;80;1;1;0;0;1;0
+38175;19034;1;161;80.0;120;70;1;1;0;0;1;0
+38177;23195;1;163;70.0;140;90;1;1;0;0;1;1
+38178;14727;1;162;75.0;130;90;1;1;0;0;1;1
+38180;18395;2;174;74.0;125;84;3;1;1;0;1;1
+38181;14552;1;165;60.0;110;80;1;1;0;0;1;0
+38183;18056;1;164;63.0;120;80;1;1;0;0;1;1
+38186;22503;2;168;70.0;110;70;1;1;0;0;0;0
+38187;23251;2;170;81.0;150;100;1;1;0;0;1;1
+38188;15537;2;170;67.0;120;80;1;1;0;0;1;0
+38189;19001;1;165;87.0;120;80;1;1;0;0;1;1
+38190;18263;1;169;65.0;140;90;2;1;0;0;1;1
+38191;20260;1;160;65.0;120;70;1;1;0;0;1;1
+38192;22480;2;163;65.0;110;70;1;1;0;0;1;0
+38193;20599;1;160;64.0;120;80;1;1;0;0;1;0
+38195;19688;2;180;100.0;110;80;2;1;0;0;0;0
+38196;20321;2;174;79.0;125;70;1;1;0;0;1;0
+38197;20172;2;170;76.0;130;80;1;1;0;0;1;1
+38199;18366;1;154;62.0;110;70;2;1;0;0;1;0
+38201;20683;2;161;72.0;125;80;1;1;0;0;1;0
+38202;22108;2;163;63.0;130;70;2;1;0;0;1;0
+38203;16834;2;172;94.0;140;90;1;1;1;1;1;0
+38205;21895;1;153;60.0;120;70;2;1;0;0;1;0
+38206;19859;1;159;49.0;110;90;1;1;0;0;1;0
+38207;14399;1;168;103.0;160;100;1;1;0;0;1;1
+38208;18289;1;159;66.0;120;80;1;1;0;0;1;0
+38209;17338;1;162;56.0;120;80;1;1;0;0;1;0
+38210;23395;2;174;78.0;130;80;3;2;0;0;1;0
+38211;21260;2;164;92.0;180;100;3;3;0;0;1;1
+38212;21018;1;160;75.0;120;70;1;1;0;0;0;0
+38213;22480;1;153;82.0;120;80;1;2;0;0;1;0
+38214;15238;2;157;72.0;110;70;1;1;0;0;0;0
+38215;16824;1;160;59.0;120;80;1;1;0;0;1;1
+38216;20376;2;176;73.0;150;100;3;3;0;0;1;1
+38218;14403;1;159;56.0;90;60;1;2;0;0;1;0
+38219;22018;1;154;94.0;140;80;1;1;0;0;1;1
+38220;14449;2;170;65.0;100;90;1;1;0;0;1;1
+38222;17468;2;170;67.0;110;70;1;3;0;0;1;0
+38223;23215;1;164;78.0;120;80;1;1;0;0;1;0
+38225;21295;1;141;51.0;100;60;1;1;0;0;1;0
+38230;19585;2;170;50.0;110;70;1;1;0;0;1;0
+38234;21098;1;155;75.0;100;80;1;1;0;0;0;0
+38235;19207;1;161;79.0;130;80;1;1;0;0;1;0
+38237;16923;2;178;81.0;130;80;1;3;0;0;1;0
+38239;21292;1;170;89.0;120;80;1;1;0;0;1;1
+38241;20257;2;162;64.0;120;80;1;1;0;0;1;1
+38242;20547;1;172;73.0;110;80;1;1;0;0;1;1
+38243;16813;2;170;80.0;120;80;1;1;0;0;1;1
+38245;19596;1;168;79.0;120;80;1;1;0;0;1;0
+38246;23262;2;163;55.0;110;80;1;1;1;0;1;0
+38247;22561;1;165;69.0;120;80;1;1;0;0;1;0
+38248;18884;2;166;97.0;160;110;2;1;0;0;1;1
+38249;21116;2;170;95.0;120;80;1;1;0;1;1;0
+38250;19696;1;143;93.0;134;100;3;2;0;0;1;1
+38251;18944;2;170;76.0;130;70;2;3;0;0;0;0
+38254;17593;1;163;93.0;110;80;1;1;0;0;1;1
+38255;21972;1;155;85.0;130;90;1;1;0;0;1;1
+38258;17359;2;170;70.0;140;90;1;1;0;0;1;1
+38259;21034;1;157;58.0;120;80;2;1;0;0;1;1
+38262;23335;1;162;86.0;160;90;1;1;0;0;1;1
+38264;21267;2;182;79.0;130;80;1;1;0;0;1;0
+38265;18853;1;162;65.0;110;70;1;1;0;0;1;0
+38266;14559;1;168;55.0;120;80;1;1;0;0;0;1
+38267;22547;1;162;71.0;150;90;1;1;0;0;0;1
+38268;19201;2;170;75.0;120;80;1;1;0;0;0;0
+38269;16079;2;171;88.0;120;80;1;1;0;0;1;0
+38271;20926;1;158;93.0;130;80;3;1;0;0;0;1
+38273;20479;1;150;95.0;140;80;1;1;0;0;0;1
+38274;22064;1;169;67.0;120;80;3;3;0;0;1;0
+38275;18313;2;180;86.0;150;1000;1;1;0;0;1;1
+38277;15173;1;170;70.0;110;70;1;1;0;0;1;0
+38278;17674;1;168;64.0;110;70;1;1;0;0;1;1
+38280;19699;1;168;83.0;120;80;1;1;0;0;1;0
+38282;21653;1;165;72.0;120;80;1;1;0;0;1;1
+38283;16091;1;158;56.0;90;70;1;1;0;0;0;0
+38286;15852;1;164;80.0;140;110;3;1;0;0;0;1
+38287;20315;1;168;66.0;120;80;1;1;0;0;1;1
+38288;21660;1;156;58.0;120;80;1;1;0;0;1;0
+38289;18916;1;170;81.0;160;100;3;2;0;0;1;1
+38290;18946;1;152;67.0;120;80;1;1;0;0;0;1
+38291;21224;2;172;58.0;140;90;2;1;0;0;1;1
+38293;18758;1;163;70.0;120;80;1;1;0;0;1;0
+38296;19802;2;185;85.0;110;70;1;1;0;0;0;1
+38297;15992;1;150;68.0;120;90;2;1;0;0;1;0
+38299;21210;1;155;60.0;120;80;1;1;0;0;1;0
+38301;22166;1;152;83.0;140;80;1;1;0;0;0;1
+38303;18221;1;169;70.0;120;60;1;1;0;0;1;0
+38304;21214;2;175;81.0;150;90;1;1;1;0;1;0
+38305;23254;1;147;68.0;140;80;2;1;0;0;0;0
+38307;18257;2;172;80.0;170;100;2;1;0;0;0;1
+38308;17675;1;175;75.0;120;80;1;1;0;0;1;0
+38309;16904;2;162;66.0;110;90;1;1;0;0;1;0
+38310;15104;2;176;125.0;140;90;2;1;0;0;1;1
+38312;23284;1;157;23.0;110;80;1;1;0;0;1;0
+38314;21029;2;174;87.0;200;110;3;1;0;1;1;1
+38316;15205;1;160;63.0;120;80;1;1;1;0;1;0
+38317;19021;1;165;65.0;120;80;1;1;0;0;1;1
+38318;21979;1;148;70.0;120;80;3;3;0;0;1;1
+38320;23408;1;159;86.0;140;100;2;1;0;0;0;1
+38321;22038;1;169;75.0;130;90;1;1;0;0;1;0
+38322;21118;2;168;82.0;110;80;1;1;0;0;1;0
+38325;20452;1;172;75.0;120;80;1;1;0;0;1;0
+38329;19705;2;175;103.0;160;100;1;1;0;0;1;1
+38330;18545;2;168;75.0;120;80;3;3;0;0;0;0
+38333;23515;2;178;86.0;170;100;1;1;0;0;1;1
+38335;19686;1;161;61.0;120;80;1;1;0;0;0;1
+38337;18166;2;174;68.0;120;80;1;1;0;0;1;1
+38339;18949;2;174;95.0;130;80;1;1;0;0;1;0
+38341;18018;1;159;100.0;146;84;1;2;0;0;0;0
+38342;20389;1;171;130.0;130;80;1;1;0;0;1;0
+38343;16905;2;168;64.0;120;80;1;1;0;0;1;0
+38345;16051;1;172;81.0;130;80;1;1;0;0;1;1
+38346;18556;1;158;56.0;110;70;1;1;0;0;1;0
+38347;22715;1;167;64.0;150;90;1;1;0;0;0;1
+38348;16826;1;157;70.0;110;70;1;1;0;0;0;0
+38351;20489;1;170;82.0;130;90;1;1;0;0;1;1
+38352;19644;2;165;70.0;140;90;2;1;0;0;1;1
+38354;22108;1;153;62.0;110;70;1;1;0;0;0;0
+38355;15923;1;160;81.0;120;80;1;1;0;0;1;0
+38356;16260;2;170;68.0;120;80;1;1;0;0;1;0
+38357;20434;1;170;65.0;130;80;1;1;0;0;1;0
+38358;21119;1;161;69.0;110;70;1;1;0;0;1;0
+38359;21020;1;152;109.0;220;120;2;1;0;0;1;1
+38360;20420;1;160;65.0;120;80;1;1;0;0;1;0
+38365;23266;1;175;80.0;120;80;1;1;0;0;1;1
+38366;20418;2;159;65.0;140;90;1;2;0;0;1;1
+38369;14401;1;158;65.0;110;90;1;1;0;0;0;0
+38370;22880;1;169;63.0;120;80;1;1;0;1;1;1
+38373;18356;1;163;64.0;120;80;1;1;0;0;1;1
+38374;23252;1;168;60.0;120;80;1;1;0;0;1;1
+38375;22569;2;168;68.0;110;60;1;1;0;0;1;1
+38377;19550;1;167;106.0;150;80;1;1;0;0;0;1
+38378;18863;2;163;60.0;110;80;1;3;1;0;1;1
+38379;17487;1;160;60.0;140;90;2;1;0;0;1;1
+38380;22633;1;156;70.0;150;80;3;1;0;0;1;1
+38381;17479;2;176;88.0;120;80;1;1;1;0;1;1
+38382;19550;1;158;62.0;130;60;3;1;0;0;0;1
+38383;21923;1;164;60.0;120;80;1;3;0;0;1;0
+38385;19944;1;158;73.0;150;80;2;1;0;0;1;0
+38386;14768;1;165;65.0;110;70;1;1;0;0;0;0
+38387;22675;1;158;89.0;140;80;1;1;0;0;1;1
+38388;19569;2;180;79.0;130;90;3;1;0;0;1;0
+38389;21228;1;165;73.0;150;90;1;1;0;0;1;1
+38390;18379;1;155;71.0;120;80;1;1;0;0;1;1
+38391;21109;1;161;92.0;130;80;3;1;0;0;1;0
+38393;23223;1;151;55.0;130;80;1;1;0;0;1;0
+38395;23093;2;165;76.0;110;80;1;1;1;0;1;1
+38397;23447;2;172;98.0;140;90;1;1;1;0;0;1
+38399;23274;2;172;82.0;130;80;1;1;0;0;1;1
+38400;21353;2;164;81.0;160;90;1;3;1;0;1;1
+38401;17538;2;180;60.0;110;70;1;1;1;0;1;1
+38402;21669;1;163;105.0;150;90;3;3;0;0;1;0
+38403;19535;1;166;79.0;120;90;3;1;0;0;1;1
+38404;20525;2;173;85.0;150;80;1;1;0;1;1;0
+38405;20975;1;156;68.0;120;80;1;1;0;0;1;1
+38406;23328;1;155;106.0;120;80;1;1;0;0;0;1
+38407;20452;1;165;68.0;120;80;2;2;0;0;0;0
+38408;20322;2;172;100.0;180;100;2;2;0;0;1;1
+38409;21129;1;152;63.0;120;80;2;1;0;0;1;1
+38411;21182;2;168;83.0;140;80;1;2;0;0;1;1
+38412;21036;1;157;95.0;140;100;3;3;0;0;0;0
+38413;18708;1;155;77.0;120;90;1;1;0;0;1;1
+38414;17578;2;164;105.0;200;1000;3;1;1;0;1;1
+38416;23507;2;170;85.0;140;80;1;1;0;0;1;1
+38417;15168;1;169;62.0;120;60;1;1;0;0;1;0
+38418;20298;2;180;90.0;160;100;1;2;0;0;0;1
+38422;18024;1;170;136.0;120;80;1;1;0;0;1;0
+38423;18361;2;168;65.0;150;80;1;1;0;0;1;0
+38424;17795;1;165;78.0;140;90;1;1;0;0;1;1
+38425;18931;1;156;57.0;110;80;1;1;0;0;1;0
+38426;19766;2;168;91.0;130;80;1;1;0;0;1;1
+38427;23392;1;164;80.0;120;80;2;3;0;0;1;1
+38428;19619;1;160;60.0;120;80;1;1;0;0;1;0
+38429;20295;1;150;94.0;160;80;3;3;0;0;1;1
+38430;23481;2;165;67.0;120;80;1;1;1;0;1;0
+38432;20919;1;165;92.0;120;80;1;3;0;0;1;1
+38433;15339;2;168;95.0;140;90;1;1;0;0;1;1
+38434;14577;1;157;68.0;110;70;1;1;0;1;1;0
+38435;19734;1;158;63.0;160;100;2;1;0;1;1;1
+38436;15158;1;151;74.0;160;100;2;1;0;0;1;1
+38437;22565;1;157;67.0;110;80;1;1;0;0;0;0
+38438;16656;2;174;73.0;120;80;1;1;0;0;1;0
+38439;17566;1;158;64.0;120;80;1;1;0;0;1;0
+38440;21842;2;165;66.0;110;70;1;1;1;0;1;1
+38442;19636;1;157;60.0;140;90;1;1;0;0;1;1
+38444;21090;1;167;63.0;110;70;1;1;0;0;1;1
+38445;19559;2;165;60.0;120;80;1;1;0;0;1;0
+38446;23407;2;169;63.0;140;100;1;1;0;0;1;0
+38447;21142;2;176;88.0;120;80;1;3;1;0;1;1
+38448;19742;1;175;75.0;140;90;3;3;0;0;1;0
+38450;19041;1;165;66.0;120;70;1;1;0;0;0;1
+38451;18763;1;165;65.0;150;80;1;1;0;0;1;1
+38453;20721;1;160;62.0;120;80;1;1;0;0;1;1
+38454;20451;2;171;72.0;120;90;1;1;0;0;1;1
+38456;21259;1;170;68.0;140;70;1;1;0;0;1;1
+38457;14673;1;163;76.0;120;80;1;1;0;0;1;0
+38460;20732;1;169;62.0;160;120;3;1;0;0;1;1
+38461;23222;2;164;73.0;140;100;1;1;0;0;1;1
+38462;21853;1;151;89.0;120;80;2;1;0;0;1;1
+38463;23307;1;158;105.0;140;80;1;1;0;0;0;1
+38465;22657;1;155;62.0;120;80;2;2;0;0;1;0
+38468;15185;2;173;94.0;140;90;2;1;0;0;1;1
+38469;22552;2;170;75.0;150;1000;1;1;0;0;1;1
+38470;17996;2;162;60.0;110;70;1;1;0;0;1;0
+38471;22530;2;166;63.0;120;80;1;1;0;0;1;1
+38472;20326;2;160;58.0;120;80;1;1;0;0;1;0
+38473;22050;1;156;94.0;140;90;1;1;0;0;1;1
+38474;20627;1;176;82.0;130;80;1;1;0;0;0;0
+38475;21380;2;162;97.0;90;60;1;1;0;1;1;1
+38476;22561;2;168;90.0;130;90;3;3;0;0;1;1
+38477;19746;1;156;86.0;140;90;1;2;0;0;1;1
+38480;19534;1;158;78.0;200;90;1;1;0;0;1;1
+38482;22651;1;168;65.0;120;80;1;1;0;0;1;1
+38483;21229;1;176;88.0;130;90;2;1;0;1;1;1
+38484;22594;2;181;100.0;150;90;1;1;0;0;0;1
+38485;17525;1;160;96.0;130;90;1;1;0;0;0;0
+38488;18531;1;169;72.0;125;80;1;1;0;0;1;0
+38490;16676;1;148;66.0;120;60;1;1;0;0;1;1
+38492;14732;1;135;55.0;100;70;1;1;0;0;1;0
+38493;19546;2;166;73.0;120;80;1;1;0;0;1;0
+38494;20964;1;160;92.0;106;89;3;1;0;0;1;1
+38495;22117;2;165;61.0;150;90;3;3;0;0;1;1
+38498;23442;1;156;70.0;130;90;3;1;0;0;1;0
+38499;19756;1;164;70.0;110;80;1;1;0;0;1;0
+38501;19898;2;160;60.0;120;80;1;1;0;0;1;0
+38502;16189;1;163;65.0;120;70;1;1;0;0;1;0
+38503;18885;2;160;64.0;120;70;1;1;0;0;1;0
+38505;17619;2;179;70.0;120;80;1;1;0;0;1;0
+38506;16135;2;171;71.0;110;70;1;1;0;0;1;0
+38509;19031;1;178;73.0;120;70;1;1;0;0;1;0
+38513;22766;2;170;60.0;140;90;1;1;1;0;1;1
+38517;14332;1;157;66.0;120;80;1;1;0;0;1;0
+38519;19660;1;158;100.0;135;78;2;1;0;0;1;0
+38520;14440;2;169;75.0;120;80;1;1;1;1;0;0
+38522;22752;2;164;67.0;140;90;1;1;0;0;1;1
+38523;15558;1;163;68.0;120;80;3;3;0;0;1;0
+38524;21430;1;157;88.0;150;90;1;1;0;0;1;1
+38527;16335;1;167;62.0;110;80;1;3;0;0;1;1
+38528;15442;2;176;104.0;140;80;1;1;1;1;0;1
+38529;17534;2;179;76.0;120;80;1;1;0;0;1;1
+38532;14492;2;165;66.0;110;70;2;1;0;0;1;0
+38533;19696;2;172;82.0;140;90;3;1;1;0;1;0
+38534;20254;1;154;59.0;130;80;1;2;0;0;1;1
+38535;19015;1;165;68.0;120;80;1;1;0;0;1;0
+38537;20654;1;164;58.0;90;60;1;1;1;0;1;0
+38539;21881;2;178;96.0;200;1000;3;1;0;0;1;1
+38541;22516;2;168;72.0;130;80;1;1;0;0;1;1
+38542;20283;1;158;55.0;110;70;1;1;0;0;1;1
+38545;23336;2;175;76.0;130;80;1;1;0;0;1;1
+38546;20224;2;165;58.0;130;80;1;1;0;0;0;1
+38547;18862;1;159;70.0;110;70;2;1;0;0;1;1
+38549;14583;1;173;70.0;120;80;1;1;0;0;0;0
+38550;23141;1;159;66.0;160;100;3;2;0;1;0;1
+38553;22167;2;180;85.0;120;80;1;1;1;0;0;0
+38554;14480;1;158;58.0;110;70;1;1;0;0;1;0
+38556;16832;1;165;85.0;140;90;1;1;0;0;1;1
+38557;21200;1;158;86.0;140;90;3;3;0;1;1;1
+38560;21215;1;160;90.0;120;80;1;1;0;0;1;0
+38561;21053;1;164;78.0;110;70;1;1;0;0;0;1
+38563;20240;1;158;70.0;120;80;1;1;0;0;0;0
+38564;17675;1;170;70.0;140;90;1;1;0;0;1;1
+38566;18795;1;159;90.0;120;80;1;1;0;0;0;1
+38567;18957;1;160;60.0;150;80;1;1;0;0;1;1
+38568;20376;1;151;63.0;150;100;1;1;0;0;1;1
+38569;21131;1;159;70.0;120;80;1;1;0;0;1;0
+38570;17567;2;167;60.0;120;80;1;1;0;0;1;0
+38571;18850;2;179;87.0;130;100;1;1;1;0;1;0
+38574;21968;1;168;119.0;130;80;1;1;0;0;0;1
+38575;21981;1;161;98.0;120;80;1;2;0;0;1;0
+38576;18723;1;152;68.0;168;84;3;1;0;0;1;1
+38577;22759;1;148;88.0;150;100;3;1;0;0;1;1
+38580;14625;2;169;68.0;120;80;1;1;0;0;0;0
+38582;20394;2;181;95.0;100;70;1;1;0;0;1;0
+38583;17683;1;156;67.0;110;70;1;1;0;0;1;0
+38584;21951;1;158;56.0;150;100;1;1;0;0;0;1
+38585;17455;1;159;91.0;120;80;3;3;0;0;1;1
+38586;15899;1;163;69.0;120;80;1;1;0;0;0;0
+38588;16210;1;160;63.0;140;100;1;1;0;0;0;1
+38590;22594;1;170;65.0;12;80;1;1;0;0;0;0
+38591;19778;1;157;66.0;110;80;1;1;0;0;1;1
+38592;22608;2;170;80.0;160;80;3;1;1;0;1;1
+38593;19782;1;167;60.0;120;80;1;1;0;0;0;0
+38594;14624;2;169;55.0;128;80;1;1;1;0;1;0
+38595;22501;1;153;67.0;110;80;1;1;0;0;1;1
+38596;19058;1;164;60.0;130;80;1;1;0;0;1;1
+38597;22538;1;158;85.0;123;99;3;1;0;0;1;1
+38598;16672;1;160;50.0;110;70;1;1;0;0;1;0
+38599;15432;2;170;85.0;120;80;1;1;0;0;1;0
+38600;19719;2;167;72.0;130;80;1;1;0;0;1;0
+38601;21831;1;160;89.0;120;80;2;1;0;0;1;1
+38602;22643;1;156;77.0;140;90;1;1;0;0;1;1
+38603;22566;1;150;72.0;130;90;1;1;0;0;1;0
+38606;19453;2;169;90.0;150;90;2;1;0;1;1;1
+38607;20924;2;168;68.0;160;100;2;1;1;0;0;1
+38609;20310;1;168;65.0;120;80;1;1;0;0;1;0
+38611;19673;1;152;72.0;120;80;1;1;0;0;1;0
+38613;21918;1;172;86.0;120;80;1;1;0;0;1;1
+38614;21193;2;165;63.0;120;80;1;1;0;0;1;1
+38615;19762;1;164;71.0;160;100;3;3;0;0;1;1
+38618;18257;1;155;64.0;110;60;2;3;1;0;1;0
+38619;18841;1;160;76.0;120;80;1;1;0;0;1;0
+38621;23565;2;170;132.0;165;90;2;3;1;0;1;1
+38622;14612;1;158;67.0;110;70;1;1;0;0;1;0
+38624;20269;2;170;68.0;120;90;1;1;1;1;1;0
+38625;23248;1;165;65.0;120;80;1;1;0;0;1;1
+38627;21077;1;157;56.0;120;80;2;1;0;0;1;1
+38629;15996;1;164;56.0;110;70;1;1;0;0;1;0
+38630;15763;1;155;67.0;130;70;1;1;0;0;1;0
+38633;18029;2;159;63.0;120;80;2;2;0;1;1;0
+38634;21298;2;156;60.0;110;70;1;1;0;0;1;0
+38635;19560;2;176;71.0;130;80;1;1;0;0;0;0
+38637;23299;2;178;89.0;120;80;3;2;0;0;1;1
+38639;22710;2;175;112.0;140;90;1;1;0;0;0;1
+38642;18213;1;165;75.0;140;90;3;3;0;0;0;1
+38643;16764;1;160;55.0;110;70;1;1;0;0;1;0
+38644;20443;2;168;58.0;180;100;2;1;1;0;0;1
+38645;16049;1;165;68.0;130;80;1;3;0;0;1;1
+38647;20992;1;161;67.0;120;80;1;1;0;0;1;0
+38648;15246;2;165;54.0;120;80;1;1;0;0;1;0
+38649;22678;1;156;70.0;120;70;1;1;0;0;1;1
+38650;18870;1;164;77.0;100;70;1;1;0;0;1;0
+38652;14584;2;174;75.0;140;80;1;1;0;0;1;1
+38653;19812;1;158;99.0;110;80;1;2;0;1;1;1
+38654;17471;1;168;94.0;120;80;3;1;0;0;0;1
+38655;21255;1;149;41.0;110;80;1;1;0;0;0;0
+38656;20312;1;161;74.0;140;80;2;1;0;0;1;0
+38659;20216;1;160;61.0;90;60;1;1;0;0;1;0
+38660;16213;1;175;79.0;120;60;1;1;0;0;1;0
+38661;18318;1;166;70.0;130;80;1;1;0;0;1;0
+38663;21792;2;173;74.0;150;90;1;1;0;0;1;1
+38664;19806;2;165;78.0;120;80;1;1;0;0;1;0
+38665;16170;1;171;65.0;120;80;1;1;0;0;1;0
+38668;20545;1;168;82.0;130;90;1;1;0;0;0;0
+38669;18279;2;170;70.0;140;90;1;1;0;0;0;1
+38670;15286;1;173;60.0;120;80;1;1;1;0;1;0
+38671;21788;2;170;92.0;130;80;3;3;0;0;1;1
+38672;20340;2;169;72.0;130;80;2;1;0;0;0;0
+38674;21874;1;154;67.0;140;90;3;1;0;0;1;1
+38675;19498;1;164;78.0;120;80;1;1;0;0;1;0
+38676;22004;1;172;63.0;110;70;2;1;0;0;1;0
+38678;23297;1;160;60.0;120;80;1;1;0;0;1;1
+38679;14672;2;171;86.0;110;70;2;1;0;0;0;0
+38680;18184;1;165;77.0;140;90;1;1;0;0;1;1
+38683;20562;1;166;73.0;130;90;2;1;0;0;1;1
+38684;16112;1;154;57.0;110;70;1;1;0;0;1;0
+38685;15617;2;165;65.0;140;80;1;1;1;1;1;1
+38687;18844;1;154;56.0;130;90;1;1;0;0;1;0
+38689;19733;1;150;56.0;150;90;2;1;0;0;1;1
+38690;14564;1;155;75.0;120;80;1;1;0;0;1;0
+38691;18377;1;156;112.0;130;90;1;1;0;0;1;0
+38693;18330;1;153;97.0;120;80;1;1;0;0;1;0
+38694;18795;1;160;66.0;120;80;1;1;0;0;1;0
+38696;18184;1;164;88.0;150;90;1;1;0;0;1;1
+38701;18079;2;160;76.0;120;80;1;1;1;0;1;1
+38702;22932;1;165;75.0;190;90;2;2;0;1;0;1
+38703;23333;2;165;70.0;120;70;1;1;0;0;1;1
+38704;18246;2;176;91.0;120;80;1;3;0;0;1;0
+38707;17396;2;168;74.0;120;80;1;1;0;0;1;1
+38708;19777;1;158;92.0;120;80;2;1;0;0;1;1
+38710;18302;2;170;76.0;130;80;1;3;0;0;1;1
+38711;14696;1;159;83.0;110;80;1;1;0;0;1;0
+38712;14645;1;164;58.0;110;70;3;3;0;0;0;0
+38714;18836;2;178;89.0;110;80;1;2;0;0;1;0
+38715;19005;1;155;68.0;100;70;1;1;0;0;1;0
+38716;19023;1;163;55.0;110;70;1;1;0;0;0;0
+38718;21127;1;165;65.0;150;70;1;1;0;0;1;1
+38719;21785;1;169;74.0;100;60;1;1;0;0;1;1
+38720;21152;2;165;50.0;170;100;1;1;0;0;1;1
+38722;23463;2;169;60.0;120;80;1;1;0;0;1;1
+38724;19025;1;175;77.0;120;80;1;1;0;0;1;1
+38725;22677;1;152;72.0;120;80;2;1;0;0;1;1
+38727;19505;1;160;66.0;120;80;3;1;1;0;0;1
+38728;16768;1;155;54.0;120;80;1;1;0;0;1;0
+38729;18258;2;180;74.0;110;80;1;1;0;0;1;0
+38731;19964;1;160;68.0;140;90;1;1;0;0;0;1
+38732;21007;2;156;75.0;140;1003;1;1;0;0;1;1
+38733;23620;2;168;62.0;120;80;1;1;0;0;1;0
+38734;15561;2;180;78.0;120;80;1;1;0;0;1;0
+38735;16726;2;178;76.0;100;60;1;1;0;0;1;0
+38736;18366;1;155;40.0;90;80;2;1;0;0;1;0
+38737;20370;1;170;78.0;120;80;1;1;0;0;1;0
+38738;22895;2;168;85.0;150;90;1;1;1;0;1;1
+38741;21842;2;174;109.0;110;70;1;1;0;0;0;1
+38742;15263;2;178;72.0;120;80;1;1;1;0;1;0
+38743;14766;2;176;65.0;110;70;2;1;1;1;1;0
+38744;14584;1;161;67.0;110;70;1;1;0;0;1;0
+38745;23192;1;160;56.0;130;80;1;1;1;0;1;1
+38746;22616;1;158;70.0;130;80;1;2;0;0;1;1
+38747;21135;1;160;62.0;120;80;1;1;0;0;1;0
+38748;20229;1;165;65.0;120;80;3;3;0;0;0;0
+38749;20183;1;159;87.0;140;80;2;2;0;0;0;1
+38750;16915;2;170;72.0;130;90;1;1;0;0;0;1
+38751;21779;1;150;83.0;150;90;1;1;0;0;1;1
+38752;20370;1;170;69.0;135;80;1;1;0;0;1;1
+38754;22096;2;175;100.0;120;80;1;3;0;0;1;1
+38756;16662;1;163;140.0;150;90;1;2;0;0;1;1
+38757;19788;1;160;60.0;120;80;1;1;0;0;1;0
+38758;23406;2;152;55.0;120;80;3;1;1;0;1;1
+38759;16120;2;170;83.0;110;70;1;1;0;0;1;0
+38760;16572;1;165;60.0;110;70;1;1;0;0;1;1
+38762;19240;2;165;60.0;120;80;1;1;0;0;1;0
+38763;22038;1;157;65.0;100;70;1;1;0;0;1;0
+38765;20547;2;178;82.0;120;80;1;1;1;0;1;0
+38766;22035;1;166;88.0;140;80;3;1;0;0;0;1
+38767;14622;2;169;60.0;120;80;1;1;0;0;0;0
+38768;23483;1;162;75.0;130;90;1;1;0;0;1;0
+38770;20353;1;160;88.0;120;80;1;1;0;0;1;1
+38771;17313;1;140;90.0;140;90;2;1;0;0;1;0
+38772;17315;1;175;77.0;120;80;1;1;0;0;0;0
+38773;19612;1;159;56.0;100;70;1;1;1;0;0;0
+38775;18156;1;165;63.0;110;70;1;1;0;0;1;0
+38776;19001;2;175;63.0;100;69;1;1;1;0;1;1
+38778;22054;2;170;77.0;120;80;1;1;0;0;1;0
+38779;22023;2;168;78.0;120;80;1;1;0;0;1;0
+38780;17016;1;168;65.0;120;80;1;1;0;0;0;0
+38781;17417;1;152;42.0;120;80;1;1;0;0;0;0
+38783;20337;2;172;97.0;120;70;1;1;0;0;1;0
+38784;16788;2;175;63.0;120;80;1;1;0;0;1;0
+38785;14636;2;174;144.0;120;80;1;1;1;1;0;1
+38787;18843;1;162;56.0;120;80;1;1;0;0;1;0
+38788;23358;1;156;56.0;130;80;1;1;0;0;1;1
+38790;21330;1;153;56.0;140;85;3;1;0;0;1;1
+38792;21776;1;143;60.0;155;93;1;1;0;0;1;1
+38793;18936;1;153;67.0;100;70;1;1;0;0;1;1
+38794;19593;2;178;106.0;120;80;1;1;0;0;0;0
+38795;17017;2;172;62.0;110;90;1;1;0;0;1;0
+38796;18198;2;165;68.0;140;90;1;1;1;0;0;1
+38797;15879;2;165;74.0;130;80;1;1;0;0;1;0
+38801;19633;1;165;85.0;120;80;1;1;0;0;1;0
+38802;21986;1;158;59.0;150;100;1;1;0;0;1;0
+38803;18748;1;164;71.0;140;90;2;1;0;0;1;0
+38807;20392;1;155;72.0;120;80;2;1;0;0;1;0
+38809;23304;2;158;78.0;140;80;1;3;0;0;1;0
+38810;15290;2;176;62.0;120;80;1;1;0;0;0;0
+38811;18102;2;168;79.0;150;100;2;2;0;0;1;1
+38812;16879;2;173;81.0;140;80;2;2;0;0;1;1
+38814;19423;1;167;87.0;140;80;1;1;0;0;1;1
+38815;18536;1;165;70.0;110;70;1;1;0;0;1;1
+38816;18159;2;184;112.0;130;100;3;1;0;1;1;1
+38817;22825;1;158;87.0;120;80;1;3;0;0;0;1
+38818;18950;1;156;83.0;130;80;1;1;0;0;1;0
+38819;21343;1;147;67.0;110;90;1;1;0;0;1;0
+38820;18027;2;175;94.0;140;100;2;2;1;0;0;1
+38821;19839;1;161;70.0;130;80;1;1;0;0;1;1
+38822;21057;1;161;73.0;140;90;1;1;0;0;1;1
+38825;18194;1;162;65.0;120;80;1;1;0;0;0;0
+38826;14661;1;172;75.0;110;70;1;1;1;0;1;0
+38827;21833;1;165;78.0;140;90;1;1;0;0;1;1
+38829;18901;1;158;71.0;120;80;1;1;0;0;1;1
+38830;15271;1;165;60.0;120;80;1;1;0;0;1;0
+38831;16663;1;159;57.0;110;80;1;1;0;0;1;0
+38833;21248;1;169;65.0;120;80;1;1;0;0;1;0
+38836;23179;2;173;65.0;120;80;3;1;0;0;1;1
+38837;22419;1;165;85.0;150;80;1;1;0;0;1;1
+38838;18010;1;150;55.0;160;1200;1;1;0;0;0;1
+38839;20942;1;162;89.0;130;80;1;1;0;0;1;1
+38840;17308;1;160;81.0;110;70;2;2;0;0;1;1
+38841;16559;2;160;55.0;120;70;1;1;1;0;1;0
+38844;14589;1;156;55.0;110;90;1;1;0;0;1;0
+38846;19645;1;164;105.0;140;80;3;3;0;0;1;1
+38847;14524;1;166;69.0;120;80;1;1;0;0;0;0
+38848;15282;1;160;86.0;180;100;1;1;0;0;0;1
+38849;20637;2;167;68.0;150;80;1;1;1;0;1;1
+38850;19017;1;152;57.0;110;70;1;1;0;0;0;0
+38853;19956;2;170;90.0;140;90;1;1;0;0;0;1
+38855;23438;1;168;62.0;175;110;1;1;0;0;1;1
+38858;20606;2;179;75.0;140;100;1;1;1;0;1;1
+38859;18186;1;168;68.0;100;80;1;1;0;0;0;0
+38861;19854;1;163;79.0;120;90;1;1;0;0;1;0
+38863;18821;1;160;80.0;130;90;1;1;0;1;0;1
+38867;18340;1;156;62.0;120;80;1;1;0;0;1;0
+38872;22188;1;156;72.0;140;90;2;1;0;0;1;1
+38873;19791;2;187;85.0;120;80;1;1;0;0;0;1
+38874;19635;2;185;96.0;110;70;1;1;0;0;1;0
+38875;15305;1;161;61.0;120;70;1;1;0;0;0;0
+38880;21016;1;156;78.0;120;80;1;1;0;0;1;0
+38881;21987;1;150;64.0;120;80;1;2;0;0;1;1
+38882;19189;1;158;104.0;140;100;3;3;0;0;1;1
+38883;20952;1;165;60.0;190;90;1;1;0;0;1;1
+38884;14426;2;178;80.0;120;80;1;1;0;0;0;0
+38885;21881;1;162;94.0;140;90;3;1;0;0;1;1
+38886;21975;2;164;62.0;120;80;1;1;0;0;1;0
+38887;18116;2;165;68.0;115;70;1;1;0;0;1;0
+38888;21975;1;160;59.0;120;80;1;1;0;0;0;0
+38889;18343;1;163;82.0;110;70;1;1;0;0;1;0
+38890;18277;1;159;80.0;140;90;2;3;0;0;1;1
+38891;20962;1;175;76.0;110;80;1;1;0;0;1;0
+38893;16689;1;168;79.0;130;90;1;1;0;0;1;1
+38894;17436;1;160;75.0;160;100;1;1;0;0;1;1
+38895;22451;1;164;63.0;110;70;1;1;0;0;1;0
+38896;18168;1;166;70.0;120;80;1;1;0;0;1;0
+38897;19579;1;164;68.0;130;70;2;1;0;0;1;0
+38898;16313;2;165;76.0;130;90;2;1;0;0;1;1
+38899;22808;2;157;83.0;120;70;1;1;0;0;0;0
+38900;15459;2;170;70.0;120;80;1;1;0;0;1;1
+38901;21925;1;156;55.0;120;80;1;1;0;0;0;0
+38903;23668;1;170;66.0;110;70;1;1;0;0;0;1
+38904;21903;1;165;65.0;120;80;1;1;0;0;1;0
+38905;18325;1;154;68.0;150;90;3;3;0;0;0;1
+38907;19160;2;166;65.0;110;70;1;2;1;0;1;0
+38908;19024;1;168;64.0;110;70;1;1;0;0;1;1
+38909;20453;1;170;75.0;120;80;1;1;0;0;1;1
+38911;21652;1;150;90.0;150;90;1;1;0;0;0;1
+38915;17633;1;170;70.0;130;90;2;1;0;0;1;1
+38917;20212;2;178;93.0;200;90;3;3;0;0;1;1
+38918;14481;2;180;60.0;100;80;1;1;0;0;1;0
+38919;17293;2;164;75.0;110;70;1;1;0;0;0;0
+38920;21315;2;173;69.0;160;1000;2;2;0;0;1;0
+38921;20997;2;169;84.0;120;90;1;1;0;0;0;1
+38922;14588;2;160;61.0;120;80;1;1;1;0;1;0
+38925;15343;2;169;77.0;110;70;1;1;1;0;1;0
+38926;21961;1;165;90.0;120;70;1;1;0;0;1;1
+38927;23366;1;178;64.0;120;80;1;1;0;0;1;0
+38929;23530;1;164;58.0;110;70;1;1;0;0;0;0
+38930;21895;2;165;70.0;120;80;1;1;0;0;1;1
+38933;22437;2;171;82.0;120;80;1;2;0;0;0;0
+38934;18975;1;160;59.0;130;80;1;1;0;0;0;0
+38935;18767;1;160;83.0;120;80;3;1;0;0;0;1
+38936;15898;1;164;64.0;90;60;1;1;0;0;1;0
+38937;21418;1;170;80.0;120;70;1;1;0;0;1;0
+38938;19519;1;166;89.0;130;80;3;1;0;0;1;1
+38939;23365;1;160;72.0;160;90;3;1;0;0;1;1
+38940;19019;2;161;73.0;120;80;2;1;0;0;1;0
+38941;20220;1;164;100.0;140;90;2;1;0;1;1;0
+38943;19824;1;168;69.0;120;60;1;1;0;0;1;0
+38944;23118;1;159;93.0;120;80;1;3;0;1;1;1
+38945;21131;1;165;79.0;120;80;1;1;0;0;1;1
+38947;21396;1;168;65.0;120;80;3;3;0;0;0;1
+38949;19015;1;167;76.0;120;80;3;3;0;0;1;1
+38950;15081;2;166;67.0;140;90;1;1;0;0;1;1
+38951;21233;2;163;80.0;130;70;3;1;1;0;1;1
+38952;16733;2;179;84.0;120;80;1;1;0;0;0;0
+38953;14549;2;165;78.0;120;90;1;1;0;0;1;1
+38954;20347;1;162;69.0;120;80;2;1;0;0;0;0
+38955;21222;1;162;82.0;105;65;2;1;0;0;0;0
+38957;19083;2;171;98.0;120;80;1;1;0;1;1;1
+38959;19851;1;158;62.0;120;70;1;1;0;0;1;0
+38961;19779;1;157;110.0;150;100;3;1;0;0;0;0
+38963;23238;1;160;60.0;140;80;1;1;0;0;1;1
+38965;21687;1;165;52.0;120;80;1;3;1;0;1;0
+38966;19020;2;182;96.0;150;90;1;1;0;0;1;1
+38967;17077;2;173;90.0;140;90;1;1;0;0;1;1
+38968;21847;1;150;54.0;140;90;2;1;0;0;1;1
+38969;23527;1;165;75.0;130;90;1;1;0;0;1;1
+38970;18310;2;174;101.0;130;90;1;1;0;0;1;1
+38971;22605;2;165;79.0;160;100;2;2;0;0;0;0
+38973;18921;1;163;80.0;120;80;1;1;0;0;0;0
+38975;22607;1;165;66.0;120;80;1;1;0;0;1;0
+38977;20402;1;153;58.0;120;80;1;1;0;0;1;0
+38978;23406;1;151;87.0;130;90;1;1;0;0;1;0
+38979;21071;1;161;69.0;120;80;1;2;0;0;1;0
+38980;19786;1;162;62.0;110;70;2;1;0;0;1;0
+38981;19876;1;170;62.0;120;80;1;1;0;0;0;0
+38982;19083;1;165;63.0;110;80;1;1;0;0;1;1
+38985;21747;1;162;74.0;120;80;1;1;0;0;0;1
+38986;23435;1;154;110.0;150;100;3;1;0;0;1;1
+38989;15553;2;169;76.0;120;80;1;1;0;0;0;0
+38990;19565;1;162;56.0;100;65;1;1;0;0;1;0
+38991;15022;2;171;65.0;120;80;1;1;0;0;1;0
+38993;18231;1;162;75.0;120;80;1;1;0;0;1;0
+38994;18137;1;160;75.0;120;80;1;1;0;0;0;0
+38995;15935;1;175;72.0;120;70;1;1;0;0;1;0
+38997;19028;2;163;85.0;140;90;3;3;0;0;1;1
+38998;22520;1;158;70.0;135;80;1;1;0;0;1;1
+39001;20343;1;152;73.0;180;100;3;3;0;0;0;0
+39002;19701;1;162;63.0;120;80;1;1;0;0;1;1
+39003;21119;2;171;72.0;160;90;1;1;1;1;1;1
+39005;23380;1;152;94.0;135;90;3;1;0;0;1;1
+39006;20192;1;160;85.0;120;80;3;3;0;0;1;0
+39007;19665;2;178;102.0;150;100;1;1;0;0;1;1
+39009;15172;2;172;84.0;120;70;1;1;0;0;0;1
+39010;21130;1;172;69.0;120;80;2;1;0;0;1;0
+39012;14474;1;150;55.0;110;70;1;1;0;0;1;0
+39013;22353;2;170;75.0;130;90;3;3;1;1;1;1
+39014;22114;1;156;112.0;130;80;1;1;0;0;1;0
+39015;14679;1;162;58.0;110;70;1;1;0;0;1;0
+39017;15964;1;161;63.0;90;60;1;1;0;0;0;1
+39021;16101;1;164;89.0;110;70;1;1;1;0;0;1
+39022;19706;1;163;61.0;130;75;1;1;0;0;1;0
+39026;20331;1;159;69.0;132;85;1;1;0;0;1;0
+39027;15990;1;167;74.0;100;70;1;1;0;0;0;0
+39028;19248;2;175;100.0;130;90;3;3;0;0;1;1
+39029;20517;1;172;66.0;120;80;1;1;0;0;1;1
+39030;21800;1;156;65.0;120;70;1;1;0;0;1;1
+39032;16747;1;160;83.0;110;70;3;3;0;0;1;0
+39033;19803;2;183;97.0;160;90;1;1;0;0;1;1
+39034;18390;1;155;58.0;120;80;1;1;0;0;1;0
+39037;16723;1;166;64.0;110;70;1;1;0;0;1;1
+39038;17546;2;166;75.0;120;80;1;1;0;0;1;0
+39039;17457;1;161;65.0;100;70;1;1;0;0;1;0
+39040;18911;1;159;80.0;160;1000;1;1;0;0;0;1
+39043;23504;1;160;62.0;160;90;1;1;0;0;1;1
+39044;14328;2;183;59.0;100;70;2;1;0;0;0;0
+39045;18235;1;165;67.0;140;90;2;3;0;0;1;1
+39046;23356;2;165;80.0;110;80;1;3;0;0;1;0
+39047;19699;2;174;65.0;120;80;1;1;0;0;1;0
+39048;15990;2;172;80.0;140;80;2;1;1;1;1;1
+39049;19978;2;159;85.0;140;90;3;1;0;0;1;0
+39051;18976;2;170;70.0;160;90;1;1;0;0;0;1
+39053;20482;1;156;70.0;120;70;1;1;0;0;0;0
+39054;21246;1;168;78.0;120;80;1;1;0;0;0;1
+39055;21497;1;170;69.0;130;80;1;1;0;0;1;0
+39056;18981;1;164;59.0;120;80;1;1;0;0;1;1
+39057;18263;2;170;70.0;120;79;1;1;1;0;1;1
+39060;19630;2;173;102.0;150;90;1;1;0;0;0;0
+39061;18836;1;168;68.0;120;80;1;1;0;0;1;0
+39062;20716;2;165;70.0;120;80;3;1;0;0;1;1
+39063;16605;1;164;72.0;120;80;1;1;0;0;1;0
+39064;20307;1;164;58.0;110;80;1;1;0;0;1;1
+39065;18698;2;172;96.0;140;90;1;1;0;0;1;1
+39066;21240;2;157;62.0;110;70;1;2;0;0;0;1
+39067;15973;1;160;70.0;120;90;1;1;0;0;1;0
+39068;17692;1;158;58.0;110;70;1;1;0;0;0;0
+39071;16226;1;162;77.0;120;80;1;1;0;0;1;0
+39072;18081;2;178;73.0;111;80;2;1;0;0;1;0
+39073;19708;2;173;68.0;200;120;1;2;0;0;1;1
+39074;18216;1;156;53.0;100;60;1;1;0;0;1;0
+39076;23530;2;155;74.0;120;80;1;1;0;0;1;0
+39077;17614;2;165;59.0;120;80;1;1;0;0;0;1
+39078;21128;2;157;59.0;120;80;1;1;1;0;1;0
+39081;21995;1;165;65.0;120;80;1;1;0;0;0;1
+39082;22550;2;165;60.0;120;80;1;2;0;0;0;0
+39083;15004;2;176;80.0;120;70;1;1;0;0;1;1
+39084;15130;2;168;66.0;120;80;1;1;0;0;0;1
+39085;21924;2;166;69.0;140;90;3;1;1;0;1;1
+39086;20428;2;180;80.0;118;90;2;1;0;0;1;1
+39087;20744;2;170;73.0;120;80;1;1;0;0;1;1
+39089;19709;1;170;69.0;120;80;1;1;0;0;1;0
+39090;18006;1;158;69.0;150;90;2;1;0;0;1;0
+39093;21190;1;156;51.0;100;60;1;1;0;0;1;0
+39095;18324;2;185;80.0;130;70;1;1;0;0;1;0
+39096;22803;2;167;67.0;130;80;1;1;0;0;1;1
+39097;22595;2;164;89.0;140;100;3;3;1;1;0;1
+39099;18915;2;174;114.0;140;90;1;2;1;0;1;1
+39102;18370;1;152;79.0;120;80;1;1;0;0;0;0
+39104;15187;1;169;73.0;120;80;1;1;0;0;0;0
+39105;22521;1;156;70.0;120;70;1;3;0;0;1;0
+39106;18722;1;168;71.0;120;80;2;1;0;0;0;0
+39107;15915;1;155;66.0;150;90;3;1;0;0;1;1
+39108;15897;1;154;80.0;120;80;2;1;0;0;0;1
+39109;21001;1;167;61.0;110;70;1;1;0;0;1;1
+39112;19788;1;178;98.0;130;80;1;1;0;0;1;0
+39114;15177;1;156;42.0;100;70;1;1;0;0;1;0
+39115;17355;2;176;63.0;120;80;1;1;0;0;1;0
+39116;19574;1;165;67.0;140;90;1;1;0;0;1;1
+39117;16256;1;167;62.0;120;80;1;1;0;0;1;0
+39118;15965;1;156;59.0;120;60;1;1;0;0;0;0
+39120;19689;1;158;80.0;110;90;2;1;0;0;0;1
+39121;18112;1;164;62.0;100;70;1;1;0;0;1;0
+39123;18421;2;170;72.0;180;110;1;1;0;0;1;1
+39124;14525;1;173;76.0;110;70;1;1;0;0;1;0
+39125;15437;1;149;66.0;160;90;1;1;0;0;1;1
+39126;22346;1;153;91.0;160;110;1;1;0;0;1;1
+39128;23276;1;156;78.0;130;80;2;1;0;0;1;1
+39129;21126;1;161;76.0;130;70;3;3;0;0;1;0
+39133;15988;2;170;85.0;130;80;1;1;0;0;1;1
+39135;23365;2;177;88.0;140;90;1;1;0;0;1;1
+39136;17561;1;170;90.0;120;80;1;1;0;0;1;1
+39137;21832;2;170;68.0;120;80;1;1;0;0;1;0
+39138;22724;2;170;87.0;150;90;2;1;0;0;1;1
+39139;21069;1;167;66.0;120;80;3;1;0;0;1;1
+39142;23245;1;165;81.0;150;90;1;1;0;0;1;1
+39143;21234;2;172;70.0;110;70;1;1;0;0;1;0
+39144;19083;1;164;68.0;140;90;1;1;0;0;1;1
+39145;16852;2;170;69.0;120;60;1;1;0;0;0;0
+39146;19069;2;166;95.0;14;90;1;1;0;0;0;1
+39147;19099;1;165;80.0;120;80;1;1;0;0;1;1
+39148;14718;1;165;69.0;120;70;1;1;0;0;1;0
+39152;15899;2;172;83.0;120;80;1;1;0;0;1;0
+39154;22460;1;160;83.0;120;80;2;1;0;0;1;0
+39155;19714;2;173;72.0;120;80;1;1;0;0;0;1
+39156;15292;1;80;178.0;140;90;3;3;0;0;1;1
+39157;16038;1;164;65.0;120;80;1;1;0;0;1;0
+39158;19858;2;180;98.0;120;80;2;3;0;1;0;0
+39160;18319;1;160;79.0;140;90;1;1;0;0;1;1
+39163;19803;2;170;72.0;90;60;1;2;0;0;1;1
+39164;18984;1;154;69.0;120;80;3;1;0;0;1;1
+39165;15166;1;157;78.0;130;90;1;1;0;0;1;0
+39166;18894;1;163;69.0;120;80;1;1;0;0;1;1
+39168;16711;2;186;112.0;100;70;1;1;0;0;1;1
+39170;19894;1;156;97.0;150;100;1;2;0;0;1;1
+39171;16915;1;167;64.0;110;70;1;1;0;0;1;0
+39172;14700;1;168;70.0;100;70;1;1;0;0;1;0
+39173;22632;1;164;82.0;140;90;1;1;0;0;1;1
+39176;16605;1;152;86.0;120;80;1;1;0;0;1;0
+39177;23425;2;168;68.0;150;80;1;1;1;0;1;1
+39178;23414;1;154;58.0;150;90;1;1;0;0;1;1
+39180;21926;1;163;63.0;120;80;3;3;0;0;0;1
+39182;14596;1;155;60.0;110;70;1;1;0;0;1;0
+39183;22597;2;165;66.0;120;80;1;1;0;0;1;0
+39187;19683;1;153;60.0;110;70;1;1;0;0;1;0
+39188;14292;2;159;60.0;100;70;2;1;1;0;1;0
+39189;18524;1;162;127.0;130;80;1;1;0;0;1;0
+39190;23404;1;167;67.0;140;90;1;1;0;0;1;1
+39192;22602;1;154;59.0;140;90;2;2;0;0;0;1
+39193;14633;1;168;75.0;120;80;1;1;0;1;0;0
+39194;21026;2;169;72.0;120;70;1;1;0;0;1;1
+39195;21314;2;160;65.0;130;90;1;1;1;0;0;1
+39196;14527;1;170;69.0;110;90;1;1;0;0;1;0
+39197;19652;2;170;65.0;120;80;1;1;0;0;1;0
+39199;23380;1;164;86.0;130;80;1;1;0;0;1;1
+39200;14742;1;159;106.0;100;80;1;1;0;0;1;0
+39202;21049;1;158;70.0;140;90;3;1;0;0;1;1
+39203;14689;1;163;71.0;110;70;1;1;0;0;1;0
+39204;18852;1;159;70.0;170;120;1;1;0;0;1;1
+39207;15362;1;160;60.0;120;80;1;1;0;0;0;0
+39208;18327;1;158;75.0;100;59;1;1;0;0;0;1
+39210;20433;2;171;73.0;120;80;1;1;0;0;0;0
+39211;22018;2;166;84.0;180;100;2;1;0;0;1;1
+39212;22480;1;163;58.0;140;90;1;1;0;0;0;1
+39215;16573;1;163;88.0;130;70;2;2;0;0;1;0
+39216;19740;2;182;64.0;130;90;3;3;0;0;1;1
+39217;23489;2;167;105.0;170;100;2;1;0;0;0;1
+39219;23168;2;170;73.0;140;90;1;1;0;0;1;1
+39220;16889;2;158;75.0;140;90;3;1;0;0;1;1
+39221;21323;1;164;86.0;120;80;1;1;0;0;1;1
+39222;21706;2;165;70.0;140;90;1;1;0;0;1;1
+39223;14660;1;166;86.0;100;70;1;1;0;0;1;0
+39224;18186;1;174;80.0;120;80;1;1;0;0;1;0
+39226;18265;2;168;69.0;120;70;1;1;0;0;1;0
+39228;21679;1;168;73.0;140;100;1;1;0;0;1;0
+39229;18952;2;163;74.0;120;70;1;1;1;0;1;0
+39230;20495;2;155;55.0;110;79;1;1;0;0;1;1
+39231;20272;2;184;91.0;160;1100;1;1;0;0;1;1
+39232;22684;1;156;76.0;120;80;1;3;0;0;1;0
+39233;17566;1;164;65.0;140;1000;1;1;0;0;1;1
+39234;17515;1;165;62.0;120;80;1;1;0;0;0;1
+39235;15118;2;185;85.0;110;70;2;1;0;0;1;0
+39236;23507;2;164;80.0;140;90;3;3;0;0;1;1
+39238;18374;1;150;69.0;110;60;1;1;0;1;1;0
+39240;21842;2;173;64.0;110;80;3;3;1;0;1;1
+39241;22169;1;165;73.0;140;100;2;2;0;0;1;1
+39244;19534;2;178;95.0;140;90;1;1;1;0;0;0
+39245;19990;2;157;60.0;120;80;1;1;0;0;0;0
+39247;22515;1;160;87.0;130;90;2;1;0;0;1;1
+39248;19690;1;165;93.0;140;90;3;1;0;0;1;1
+39249;20516;1;162;82.0;120;60;3;3;0;0;1;0
+39250;18220;1;160;64.0;90;65;1;1;0;0;1;0
+39253;22850;2;172;88.0;130;80;1;1;0;0;1;1
+39254;21037;1;156;77.0;120;80;1;1;0;0;0;1
+39255;22138;1;160;63.0;120;80;1;3;0;0;1;1
+39256;18949;1;165;60.0;120;80;1;1;0;0;1;0
+39257;16943;2;176;69.0;130;80;1;1;0;0;0;1
+39258;19871;1;161;89.0;145;90;2;1;0;0;1;1
+39259;18226;2;170;93.0;120;80;2;2;0;0;1;1
+39261;18108;1;170;62.0;120;80;1;1;0;0;0;0
+39262;20987;1;151;73.0;170;100;1;1;0;0;1;1
+39263;22548;1;152;75.0;180;100;2;1;0;0;1;0
+39264;20428;1;160;79.0;120;80;1;1;0;0;1;0
+39266;19871;2;174;55.0;130;80;1;1;0;0;1;1
+39267;16015;2;173;82.0;110;80;1;1;0;0;1;0
+39268;20482;1;168;71.0;120;80;1;1;0;0;1;1
+39269;14579;1;156;52.0;100;70;1;1;0;0;1;0
+39271;18222;1;157;102.0;120;80;1;1;0;0;1;1
+39272;17590;1;170;71.0;160;100;1;1;0;0;1;1
+39273;15956;2;160;65.0;120;80;1;1;0;0;0;1
+39275;15187;2;169;91.0;140;90;1;1;0;0;1;1
+39277;14792;1;165;75.0;120;70;1;1;0;0;1;0
+39278;23307;1;153;73.0;120;80;1;1;0;0;1;1
+39279;19277;1;174;61.0;120;80;1;1;0;0;1;0
+39281;18830;2;175;70.0;110;70;1;1;0;0;1;0
+39284;21146;1;157;62.0;120;80;1;1;0;0;0;0
+39285;21453;1;178;60.0;110;80;1;1;0;0;1;0
+39287;22549;1;157;92.0;120;90;3;1;0;0;1;1
+39289;22726;1;152;91.0;140;90;1;1;0;0;1;1
+39290;14460;2;162;80.0;120;80;1;1;0;0;0;1
+39292;21871;1;168;72.0;130;80;3;1;0;0;1;0
+39293;19611;2;156;64.0;120;70;2;1;0;0;0;1
+39294;22720;2;167;69.0;130;90;1;1;0;0;1;0
+39295;15074;1;150;80.0;140;100;1;1;0;0;0;0
+39296;14577;2;186;100.0;180;110;2;2;1;0;1;1
+39297;20902;1;148;64.0;150;90;1;1;0;0;1;1
+39298;19588;1;162;65.0;110;70;1;1;0;0;1;0
+39299;19510;2;170;92.0;160;100;1;1;0;0;0;1
+39300;23442;1;164;91.0;140;90;1;1;0;0;1;1
+39301;23478;1;158;77.0;130;80;1;1;0;0;1;1
+39303;17396;1;162;144.0;135;90;1;2;0;0;0;1
+39304;20448;1;156;64.0;150;90;1;1;0;0;0;1
+39305;18935;1;165;74.0;110;70;1;1;0;0;1;1
+39306;16629;2;168;90.0;130;90;1;1;0;0;1;1
+39307;14798;2;160;62.0;120;80;1;1;0;0;1;1
+39308;19133;2;162;70.0;170;100;1;1;0;0;1;1
+39309;18068;1;168;74.0;110;70;2;1;0;0;1;1
+39310;20536;1;161;65.0;120;80;1;1;0;0;1;0
+39311;17550;2;175;60.0;130;90;1;1;1;0;1;0
+39312;16184;1;169;112.0;180;90;2;3;0;0;1;1
+39314;15326;2;161;51.0;130;80;1;1;0;0;1;0
+39319;21945;1;167;103.0;160;100;3;3;0;0;0;0
+39321;18935;2;173;82.0;120;80;1;1;1;1;1;0
+39322;18967;2;172;72.0;11;71;1;1;0;0;0;1
+39324;15094;1;171;88.0;130;80;1;1;0;0;1;0
+39325;21160;1;164;65.0;120;80;1;1;0;0;1;1
+39326;17081;2;169;72.0;120;80;1;1;0;0;1;0
+39327;18143;1;164;79.0;100;80;2;2;0;0;1;1
+39330;23480;2;156;72.0;120;90;1;1;0;0;0;1
+39331;21786;1;170;72.0;120;80;1;1;0;0;1;0
+39333;22759;1;150;72.0;130;90;1;1;0;0;1;1
+39334;23430;2;165;85.0;140;90;1;1;0;0;1;0
+39335;18791;1;154;92.0;130;90;1;3;0;0;1;1
+39337;21195;2;178;68.0;150;1000;1;1;0;0;1;1
+39338;16597;1;157;71.0;110;70;2;1;0;0;1;0
+39339;20484;1;166;63.0;130;80;1;1;0;0;0;0
+39340;18161;1;163;71.0;120;80;1;1;0;0;1;0
+39342;19720;2;175;73.0;120;80;2;1;0;0;0;0
+39343;19822;1;160;120.0;200;100;3;3;0;0;0;1
+39344;23448;2;168;59.0;120;80;1;1;0;0;1;1
+39347;20245;1;168;65.0;120;80;1;1;0;0;1;0
+39348;23375;2;169;134.0;140;90;1;1;0;0;1;1
+39349;18040;1;161;67.0;120;80;1;1;0;0;1;0
+39350;14875;1;157;63.0;120;80;1;1;0;0;0;0
+39351;19875;1;170;56.0;120;70;3;3;0;0;1;0
+39352;17451;1;160;92.0;120;80;1;1;0;0;0;1
+39353;18789;2;174;89.0;120;80;1;1;0;0;1;0
+39354;23320;2;169;78.0;135;80;3;1;0;0;1;1
+39355;19590;1;159;53.0;110;70;1;1;0;0;1;0
+39357;17609;1;166;65.0;120;80;1;1;0;0;1;0
+39358;21474;2;165;65.0;150;80;1;1;0;0;0;0
+39359;19738;1;153;52.0;100;60;3;3;0;0;1;1
+39361;17363;1;169;85.0;150;100;1;1;0;0;1;1
+39362;19865;1;165;82.0;120;70;2;1;0;0;0;0
+39363;14676;1;159;92.0;160;90;1;1;0;0;1;1
+39364;23317;1;167;84.0;120;80;1;1;0;0;1;1
+39365;18905;1;160;69.0;110;80;3;3;0;0;1;0
+39366;22547;1;146;52.0;110;69;1;1;0;0;1;0
+39367;17013;1;153;74.0;150;100;2;2;1;1;1;1
+39369;17545;2;172;85.0;140;90;2;1;1;0;1;1
+39371;16044;1;176;93.0;160;90;1;1;0;0;1;1
+39374;22021;2;171;100.0;130;90;1;1;0;0;1;1
+39375;16240;1;165;70.0;110;60;1;1;0;0;0;0
+39377;16729;2;168;68.0;120;80;1;1;0;0;1;1
+39378;15175;1;153;80.0;120;80;1;1;0;0;1;0
+39379;19636;2;171;80.0;150;90;1;1;1;1;1;1
+39380;20974;1;158;62.0;130;60;3;1;0;0;1;1
+39381;16015;2;177;100.0;140;90;1;1;0;0;1;0
+39382;19768;2;167;80.0;120;80;1;1;0;0;1;0
+39383;21680;2;169;68.0;150;90;1;1;0;0;1;1
+39385;17581;2;165;70.0;120;80;1;1;0;0;1;0
+39387;22158;2;173;86.0;130;90;1;1;1;0;1;1
+39388;20873;1;167;72.0;140;90;1;1;0;0;1;1
+39389;15390;2;175;76.0;120;80;1;1;0;0;1;0
+39392;21761;2;172;66.0;130;80;1;1;1;0;1;1
+39393;19048;1;175;86.0;130;80;2;2;0;0;1;1
+39395;15278;1;165;60.0;100;60;1;1;0;0;0;0
+39396;17473;1;160;60.0;150;90;1;1;0;0;1;1
+39398;22631;1;160;58.0;110;70;1;1;0;0;1;1
+39399;22369;2;168;73.0;120;80;3;2;1;0;1;1
+39400;22219;1;160;60.0;120;80;1;1;0;0;0;1
+39403;21280;1;159;68.0;130;80;1;1;0;0;1;1
+39404;14576;2;171;68.0;120;80;1;1;1;1;1;0
+39405;17658;2;183;79.0;130;80;1;1;0;0;1;1
+39406;20275;2;164;62.0;120;80;1;1;1;0;1;0
+39407;15113;1;163;58.0;120;80;1;1;0;0;0;0
+39408;19792;1;164;72.0;120;80;3;3;0;0;0;1
+39410;16850;1;160;58.0;150;90;1;1;0;0;1;1
+39413;20382;1;172;78.0;90;60;1;1;0;0;1;0
+39414;16880;2;171;78.0;120;80;1;1;0;0;1;0
+39415;20993;1;149;54.0;130;80;3;3;0;0;1;1
+39417;20364;2;175;74.0;120;80;1;1;0;0;1;0
+39418;16976;2;160;80.0;120;80;1;1;0;0;1;0
+39419;21927;2;155;56.0;120;80;1;1;0;0;1;0
+39420;22273;2;171;89.0;130;80;1;1;0;0;0;0
+39421;22692;1;164;89.0;140;90;2;1;0;0;1;1
+39423;21667;2;168;90.0;120;100;1;1;0;0;0;1
+39424;18835;2;171;87.0;170;1000;1;1;0;0;1;1
+39426;16493;2;172;74.0;140;90;1;1;0;0;1;1
+39427;19003;2;178;80.0;130;80;2;1;1;0;1;0
+39428;14861;1;171;68.0;120;80;1;1;0;0;1;0
+39430;14344;2;172;76.0;110;80;1;1;0;0;1;0
+39432;19755;1;165;65.0;160;90;1;1;0;0;0;1
+39433;22382;1;164;84.0;166;106;3;1;0;0;1;1
+39435;22643;2;179;80.0;120;80;1;1;0;0;0;1
+39436;22422;1;171;84.0;120;80;1;1;0;0;1;1
+39437;18050;1;165;86.0;140;80;3;1;0;0;0;1
+39438;16227;1;155;79.0;110;70;1;1;0;0;1;0
+39440;21170;1;152;53.0;110;70;2;1;0;0;0;1
+39441;15886;2;171;63.0;110;70;1;1;0;0;1;0
+39444;18229;2;163;77.0;140;90;2;2;0;0;0;1
+39445;21096;1;169;92.0;110;80;1;1;0;0;1;1
+39446;22526;1;162;74.0;150;80;3;1;0;0;1;1
+39448;21901;2;175;68.0;140;80;1;1;1;0;0;1
+39449;18365;1;156;59.0;130;70;1;1;0;0;0;1
+39451;19021;1;167;67.0;120;80;1;1;0;0;0;0
+39452;22770;2;176;92.0;130;80;3;3;0;0;1;1
+39453;19229;1;169;69.0;120;80;1;1;0;0;0;0
+39455;15850;1;163;103.0;140;90;1;1;0;0;1;1
+39456;19424;1;157;99.0;140;90;2;1;0;0;1;1
+39457;21297;2;168;73.0;110;70;2;1;0;0;1;1
+39458;19660;1;161;67.0;160;90;1;1;0;0;1;1
+39459;16526;1;161;62.0;100;70;1;1;0;0;1;0
+39461;18230;1;175;75.0;120;80;1;2;0;0;1;0
+39462;20978;1;64;61.0;130;70;1;1;0;0;1;0
+39463;23396;1;158;90.0;130;80;2;1;0;0;1;1
+39464;21741;1;152;102.0;130;80;1;1;0;0;1;0
+39465;17633;2;166;80.0;120;80;2;1;0;0;1;1
+39466;20998;1;162;85.0;160;100;1;1;0;0;1;1
+39467;16642;1;162;110.0;120;60;3;1;0;0;1;0
+39470;23586;2;171;104.0;120;80;1;2;0;0;1;1
+39471;15334;1;162;74.0;130;80;1;1;0;0;1;0
+39475;19806;2;187;88.0;120;80;1;1;0;0;0;0
+39476;19937;2;178;65.0;120;80;1;1;0;0;0;0
+39477;18084;1;160;59.0;110;70;1;1;0;0;1;0
+39480;19692;1;160;134.0;130;90;1;1;0;0;1;1
+39482;23158;1;160;58.0;160;58;2;1;0;0;1;1
+39483;18987;1;157;80.0;90;60;1;1;0;0;1;0
+39484;20387;1;156;77.0;100;80;1;1;0;0;1;0
+39485;20531;1;163;130.0;180;90;1;1;0;0;1;1
+39486;20310;1;160;68.0;120;80;3;3;0;0;1;1
+39487;22366;1;152;46.0;120;80;1;1;0;0;1;0
+39488;17972;1;165;67.0;110;80;1;1;0;0;1;0
+39493;15975;2;168;74.0;130;90;1;1;1;0;0;1
+39494;15256;2;164;64.0;120;80;1;1;1;0;0;0
+39495;14786;1;174;69.0;120;80;1;1;0;0;0;0
+39497;22014;1;163;126.0;160;90;1;1;0;0;1;1
+39498;18224;2;168;71.0;120;80;1;1;0;0;1;1
+39499;23277;1;160;93.0;150;90;3;3;0;0;1;1
+39500;22775;1;168;69.0;120;90;1;1;0;0;1;1
+39502;19675;2;162;81.0;120;80;1;1;0;0;1;1
+39504;21109;1;174;103.0;120;80;1;1;0;0;1;0
+39505;20344;2;171;87.0;120;80;3;3;0;0;1;1
+39507;21035;1;160;89.0;120;80;1;1;0;0;0;0
+39508;15282;1;180;65.0;110;70;1;1;0;0;0;0
+39509;18922;1;156;56.0;120;80;1;1;0;0;1;0
+39510;21930;1;168;70.0;110;70;1;1;0;0;1;1
+39511;20434;2;184;76.0;110;70;1;1;1;0;1;0
+39514;16096;1;163;81.0;140;80;1;1;0;0;1;1
+39516;19463;1;164;84.0;140;90;2;1;0;0;0;1
+39517;22587;1;164;70.0;120;80;1;1;0;0;1;1
+39518;21960;1;156;106.0;140;80;1;1;0;0;1;1
+39519;19158;1;164;62.0;120;80;1;1;0;0;0;0
+39522;21232;1;154;76.0;125;80;1;1;0;0;1;0
+39524;20460;1;158;80.0;140;1000;1;1;0;0;1;1
+39526;20357;1;160;58.0;120;80;1;1;0;0;0;1
+39527;14495;1;164;67.0;120;80;1;1;0;0;1;0
+39528;22552;1;151;49.0;100;80;1;1;0;0;1;1
+39531;21420;1;154;110.0;150;100;1;1;0;0;1;1
+39532;21982;2;180;89.0;120;80;1;1;1;0;1;0
+39533;21095;1;156;77.0;150;80;1;1;0;0;0;1
+39534;18981;1;148;56.0;120;80;2;1;0;0;1;1
+39535;21943;1;164;78.0;130;80;3;3;0;0;1;1
+39536;16256;1;165;63.0;120;80;1;1;0;0;1;0
+39537;19563;1;162;58.0;140;1000;1;1;0;0;1;1
+39538;20583;1;164;64.0;120;80;1;1;0;0;1;0
+39539;21217;1;158;80.0;130;80;3;3;0;0;1;1
+39540;20549;2;186;97.0;150;100;1;1;1;0;1;1
+39541;23375;1;150;71.0;130;85;1;3;0;0;1;1
+39542;19837;2;174;58.0;120;80;1;1;0;0;1;0
+39543;17272;1;169;78.0;120;70;1;1;0;1;1;0
+39544;15239;1;182;70.0;120;80;3;1;0;0;1;1
+39546;21797;1;155;73.0;120;80;1;1;0;0;1;0
+39548;17790;2;166;71.0;150;90;1;1;0;0;1;1
+39549;19757;1;166;61.0;130;90;1;1;0;0;1;0
+39550;20665;1;164;75.0;120;80;1;1;0;0;0;1
+39551;20444;2;169;72.0;120;80;1;1;0;0;0;1
+39552;22717;1;172;81.0;100;60;1;1;0;0;1;1
+39553;21307;1;165;68.0;100;70;1;1;0;0;1;0
+39555;20177;2;173;80.0;140;90;2;1;1;0;1;1
+39556;18007;1;156;76.0;140;90;2;2;0;0;1;1
+39557;17078;2;175;75.0;140;90;1;1;1;0;1;1
+39558;22080;1;150;65.0;140;90;2;1;0;0;1;1
+39559;18162;1;156;79.0;160;100;1;1;0;0;1;0
+39560;22648;1;163;55.0;125;90;3;1;0;0;1;1
+39561;19590;2;170;65.0;110;60;1;1;0;0;1;1
+39563;18494;2;172;78.0;120;80;1;1;0;0;1;0
+39564;18338;1;150;57.0;130;90;1;1;0;0;0;1
+39565;14453;1;169;62.0;120;80;1;1;0;0;0;0
+39566;21938;1;164;82.0;140;100;1;1;0;0;0;1
+39567;20995;1;170;70.0;140;80;1;1;0;0;0;0
+39568;18781;1;154;63.0;100;60;1;1;0;0;1;0
+39569;19562;1;168;74.0;120;80;1;1;0;0;1;0
+39570;17942;1;149;51.0;130;80;1;1;0;0;1;1
+39572;16608;1;162;90.0;120;80;1;1;0;0;0;1
+39574;20520;2;170;84.0;150;90;1;1;0;0;0;1
+39575;19848;2;165;80.0;155;99;1;1;0;0;1;1
+39577;23396;2;180;73.0;140;0;1;1;1;1;1;1
+39579;16744;1;168;67.0;150;90;3;3;0;0;1;1
+39580;21922;2;172;93.0;110;70;1;1;0;0;1;1
+39581;22601;2;161;90.0;130;80;3;1;0;0;1;1
+39582;22087;1;154;61.0;110;70;1;1;0;0;1;0
+39583;21192;1;163;96.0;130;80;3;3;0;0;1;1
+39584;16053;1;173;75.0;120;80;1;1;0;0;0;0
+39586;16233;2;178;72.0;120;80;1;3;1;0;1;0
+39587;20515;1;165;75.0;140;90;2;2;0;0;1;1
+39588;16883;1;163;62.0;110;70;1;1;0;0;1;0
+39589;16714;1;162;62.0;110;70;1;1;0;0;1;0
+39591;21962;1;165;65.0;120;80;1;1;0;0;0;0
+39592;21137;2;180;75.0;120;90;1;1;0;0;0;0
+39593;14649;2;171;65.0;110;70;1;1;1;0;1;0
+39594;23524;1;158;74.0;130;80;3;2;0;0;1;1
+39596;22493;2;185;80.0;130;90;1;1;1;0;1;1
+39598;18458;1;162;60.0;110;70;1;1;0;0;1;0
+39599;19566;2;162;73.0;180;110;1;2;0;0;1;1
+39600;14649;1;156;54.0;120;80;1;1;0;0;1;0
+39601;20546;1;173;59.0;100;70;1;1;0;0;1;0
+39603;19633;1;164;68.0;120;80;1;1;0;0;1;0
+39605;21209;2;168;68.0;110;70;1;1;0;0;0;0
+39606;15330;1;169;68.0;110;70;1;1;0;0;1;0
+39608;18855;2;163;52.0;120;80;1;1;1;0;1;0
+39612;23317;1;176;80.0;120;80;1;1;0;0;1;1
+39613;16047;2;170;60.0;100;70;1;1;0;0;0;0
+39614;21196;1;148;89.0;180;100;1;1;0;0;1;1
+39616;22074;1;170;68.0;120;80;1;1;0;0;0;0
+39617;15861;2;177;110.0;120;80;3;1;0;0;0;0
+39619;22757;1;147;83.0;140;80;3;1;0;0;1;0
+39620;14519;1;162;60.0;120;80;1;1;0;0;1;0
+39621;22489;1;160;90.0;120;80;1;1;0;0;1;0
+39622;21821;1;168;57.0;120;80;2;2;1;0;1;1
+39624;15365;2;160;60.0;120;80;1;1;0;0;1;0
+39627;23223;1;160;65.0;120;70;1;1;0;0;1;1
+39628;20152;1;152;75.0;120;70;1;1;0;0;1;0
+39629;16266;1;167;129.0;140;80;1;1;0;0;1;1
+39630;21104;1;156;65.0;120;80;1;1;0;0;1;1
+39631;22502;1;157;63.0;130;80;1;1;0;0;1;1
+39632;16696;2;168;71.0;120;80;1;1;1;0;1;0
+39633;18918;2;165;88.0;160;90;1;1;0;0;1;1
+39634;19913;2;178;99.0;160;110;2;2;0;0;1;1
+39636;23483;2;175;85.0;100;59;1;1;0;0;1;1
+39640;22517;2;170;72.0;110;75;2;2;0;0;1;0
+39644;20208;1;163;78.0;110;80;1;1;0;0;0;0
+39646;23359;2;166;64.0;110;70;1;1;0;0;1;1
+39648;16015;1;170;78.0;160;100;1;2;0;0;1;1
+39649;18236;2;172;74.0;150;90;1;1;0;0;1;1
+39650;22676;1;167;72.0;135;85;1;1;0;0;1;0
+39651;14506;1;159;74.0;150;100;1;1;0;0;0;1
+39652;19622;1;152;82.0;110;80;1;1;0;0;1;1
+39653;19705;1;160;64.0;100;80;1;1;0;0;0;0
+39655;23639;1;160;52.0;120;85;1;1;0;0;0;1
+39656;18516;1;157;65.0;110;70;1;1;0;1;1;0
+39658;21237;1;156;71.0;120;80;1;1;0;0;1;0
+39660;23359;1;152;84.0;120;80;1;1;0;0;0;1
+39662;20661;2;166;62.0;120;80;1;1;0;0;1;0
+39663;16846;2;167;70.0;120;80;1;1;0;0;0;0
+39664;19067;1;158;122.0;130;90;1;1;0;0;0;1
+39665;20059;1;167;80.0;130;86;1;1;0;0;1;1
+39667;23455;2;163;72.0;120;80;1;1;0;0;0;1
+39668;22393;1;154;82.0;130;90;3;1;0;0;0;0
+39669;22468;2;180;74.0;120;80;1;1;0;0;1;1
+39671;19911;2;161;58.0;150;80;1;1;0;0;1;1
+39673;22763;1;159;65.0;140;80;3;1;0;0;1;1
+39675;22491;1;165;86.0;120;80;3;1;0;0;1;1
+39677;17999;1;166;105.0;120;80;1;1;0;0;1;0
+39678;22805;1;164;68.0;130;90;1;1;0;0;1;0
+39679;20622;2;165;72.0;130;80;1;1;0;1;1;0
+39681;20497;1;165;87.0;120;80;1;1;0;0;0;1
+39682;20266;2;176;79.0;140;90;1;1;1;0;0;1
+39683;19294;1;168;75.0;120;80;1;1;0;0;1;0
+39685;15202;1;165;65.0;120;60;1;1;0;0;1;0
+39686;19090;1;162;80.0;120;80;1;1;0;0;1;0
+39687;22468;2;171;102.0;130;90;1;2;1;1;1;0
+39690;20180;2;169;63.0;120;80;1;1;0;0;0;1
+39691;16639;2;170;75.0;120;80;2;1;0;0;0;0
+39692;18711;1;163;84.0;170;90;1;1;0;0;1;1
+39694;15785;1;154;65.0;130;60;1;1;0;0;0;0
+39695;21992;1;155;58.0;160;100;3;1;0;0;1;1
+39700;16634;2;156;63.0;120;80;1;1;0;0;1;0
+39702;15547;1;158;56.0;120;80;1;1;0;0;1;0
+39703;20367;1;179;76.0;110;70;1;1;0;0;1;0
+39704;21956;1;164;70.0;130;100;1;1;0;0;1;0
+39708;18006;1;162;99.0;130;90;1;1;0;0;0;0
+39709;18146;2;171;58.0;110;70;2;1;1;0;0;0
+39711;17295;2;167;70.0;150;80;1;1;0;0;1;1
+39712;15172;1;167;77.0;120;80;1;1;0;0;1;0
+39713;19705;1;154;54.0;110;70;1;1;0;0;1;0
+39716;19567;2;176;95.0;130;80;1;1;0;0;1;0
+39717;22131;2;165;75.0;120;80;1;1;0;0;1;0
+39718;18178;2;169;69.0;110;80;1;1;0;0;1;0
+39719;21904;1;160;93.0;110;80;3;1;0;0;0;1
+39720;16982;1;159;80.0;130;90;2;1;0;0;0;1
+39721;19066;1;160;70.0;90;60;1;1;0;0;1;0
+39722;21687;1;155;76.0;110;80;1;1;0;0;1;0
+39723;19175;2;174;85.0;140;90;3;1;0;0;0;1
+39724;19719;1;165;84.0;110;70;1;1;0;0;1;1
+39725;23420;1;152;53.0;120;80;1;1;0;0;1;0
+39728;22757;1;165;89.0;130;79;1;1;0;0;0;1
+39733;18502;2;168;80.0;130;90;2;1;1;1;0;1
+39734;23230;1;166;75.0;130;90;1;1;0;0;1;1
+39736;21011;1;169;69.0;110;70;1;1;0;0;1;0
+39737;14430;1;164;67.0;90;60;1;1;0;0;1;0
+39738;20633;2;175;78.0;120;80;3;1;0;0;1;1
+39739;22039;1;156;59.0;160;100;1;1;0;0;1;1
+39740;17487;2;164;74.0;150;90;1;1;1;1;1;1
+39741;19711;1;162;69.0;130;90;1;1;0;0;1;0
+39742;21780;1;165;69.0;120;80;1;1;0;0;0;1
+39743;18905;2;180;72.0;130;90;1;1;0;0;1;0
+39745;18345;1;166;67.0;120;80;1;1;0;0;1;0
+39747;21168;1;175;75.0;130;90;1;1;0;0;1;1
+39748;21177;2;169;71.0;120;80;3;1;0;0;1;0
+39749;21120;1;156;90.0;160;80;1;1;0;0;1;1
+39750;19860;1;163;63.0;130;90;1;1;0;0;0;0
+39751;21128;1;164;120.0;120;80;2;1;0;0;1;0
+39752;22497;2;165;65.0;120;90;1;1;0;0;1;1
+39755;23248;1;160;72.0;140;100;3;3;0;0;0;1
+39756;19794;1;162;72.0;120;80;1;2;0;0;1;0
+39757;21160;1;170;70.0;110;70;1;1;0;0;1;0
+39758;18306;1;169;97.0;120;70;1;1;0;0;1;1
+39759;19819;1;162;60.0;120;60;1;1;0;0;1;1
+39760;19800;2;178;70.0;120;70;1;1;1;1;1;0
+39762;18975;1;159;51.0;110;70;1;1;0;0;1;0
+39764;21252;1;164;55.0;160;100;2;1;0;0;1;0
+39765;19126;1;160;82.0;120;80;1;1;0;1;1;0
+39766;18803;2;192;82.0;130;90;1;1;0;1;1;0
+39767;17533;1;162;67.0;140;90;2;1;0;0;1;0
+39768;21984;1;157;55.0;120;80;1;1;0;0;0;0
+39769;18175;1;153;61.0;130;90;1;1;0;0;1;1
+39771;21239;1;158;85.0;130;90;1;1;0;0;1;0
+39772;19042;2;174;69.0;130;80;1;1;0;0;1;1
+39773;22092;1;164;82.0;130;80;3;3;0;0;0;0
+39775;15994;1;161;48.0;120;80;1;1;0;0;1;0
+39776;17543;1;151;57.0;130;100;2;1;0;0;1;1
+39778;21178;2;168;68.0;120;80;3;3;0;0;1;0
+39779;19588;1;157;50.0;120;80;1;1;0;0;1;0
+39780;23394;1;156;72.0;140;90;3;3;0;0;1;1
+39781;18465;1;158;62.0;120;80;1;1;0;1;1;0
+39783;22082;1;158;63.0;130;90;1;1;0;0;0;1
+39786;19647;2;172;82.0;120;70;2;1;0;0;1;0
+39787;19569;2;162;73.0;150;90;1;1;0;0;1;1
+39789;23290;1;157;97.0;140;90;1;1;0;0;0;1
+39790;18162;1;157;56.0;120;80;1;1;0;0;1;1
+39792;22870;2;181;73.0;120;80;1;1;0;0;1;1
+39793;18377;1;162;74.0;120;80;1;1;0;0;1;0
+39794;14614;1;172;80.0;120;80;1;1;0;0;0;0
+39795;18014;1;160;60.0;120;80;1;1;0;0;0;0
+39797;18140;1;159;61.0;120;80;1;1;0;0;0;0
+39799;19548;1;159;86.0;120;80;1;1;0;0;0;1
+39802;22696;1;160;70.2;160;100;1;1;0;0;1;1
+39805;20928;1;164;69.0;120;80;1;1;0;0;1;0
+39806;18287;2;170;74.0;120;80;1;1;0;0;1;0
+39808;19608;1;165;68.0;130;90;3;3;0;0;1;1
+39810;18484;2;195;89.0;120;80;1;1;0;0;1;0
+39811;20657;1;167;69.0;170;80;1;1;0;0;1;1
+39812;18858;2;179;78.0;130;80;3;1;1;0;1;1
+39813;18992;2;177;75.0;120;80;2;3;0;0;0;0
+39816;21213;1;164;81.0;120;80;1;1;0;1;0;0
+39817;19659;1;165;66.0;140;80;1;1;0;0;1;0
+39819;18856;1;161;98.0;140;100;1;1;0;0;0;0
+39820;23659;1;154;59.0;130;90;1;1;0;0;1;0
+39821;21218;1;164;60.0;100;70;1;1;0;0;1;0
+39822;18474;1;164;76.0;150;100;3;1;0;0;1;1
+39824;16745;2;168;74.0;130;80;1;1;0;0;1;1
+39825;20329;1;155;68.0;160;100;1;1;0;0;0;1
+39826;20732;1;167;117.0;135;80;2;1;0;0;1;1
+39827;18205;2;168;92.0;110;80;1;1;0;0;1;0
+39829;20241;1;156;58.0;180;90;1;1;0;0;1;1
+39830;17507;2;156;57.0;100;70;1;1;0;0;1;1
+39831;23310;1;160;60.0;120;80;1;1;0;0;1;1
+39832;17494;2;178;84.0;120;80;1;1;0;0;0;0
+39833;22800;2;175;80.0;150;90;3;1;0;0;1;1
+39834;19603;1;165;72.0;160;90;2;1;0;0;1;1
+39835;19770;1;163;95.0;120;80;1;1;0;0;1;0
+39836;19064;1;171;71.0;130;80;1;1;0;0;1;1
+39840;21110;2;166;70.0;160;90;1;1;1;1;0;1
+39841;21758;1;168;71.0;135;90;3;1;0;0;1;1
+39842;21353;2;169;72.0;140;90;1;1;0;0;1;1
+39843;17478;1;157;53.0;90;70;1;2;0;0;1;0
+39844;14519;1;159;83.0;120;80;1;1;0;0;1;0
+39846;18689;1;164;75.0;120;80;1;1;0;0;1;0
+39847;18939;1;168;68.0;120;80;1;1;0;0;0;1
+39848;23450;2;160;72.0;100;80;1;2;0;0;1;1
+39849;18913;1;165;81.0;120;80;1;3;0;0;0;1
+39850;18958;1;170;71.0;120;60;1;1;0;0;1;0
+39851;22012;1;169;72.0;120;80;1;1;0;0;1;0
+39852;16643;2;169;62.0;120;80;1;1;0;0;1;0
+39853;20441;1;167;75.0;120;80;2;1;0;0;1;1
+39854;21033;1;168;76.0;120;80;2;3;0;0;1;1
+39857;19054;1;160;42.0;120;80;3;3;0;0;1;1
+39858;19648;2;174;65.0;120;80;1;1;0;0;1;1
+39859;22027;1;158;62.0;140;100;1;1;0;0;1;1
+39861;18233;2;176;75.0;120;80;2;2;0;0;1;0
+39864;18243;2;175;71.0;120;80;1;1;0;0;1;0
+39865;21293;2;171;73.0;120;80;1;1;0;0;0;1
+39867;19660;2;160;81.0;140;80;1;2;0;0;1;0
+39868;20542;1;155;62.0;110;70;1;1;0;0;1;0
+39870;22394;1;157;65.0;140;90;1;1;0;0;1;1
+39872;18249;2;182;83.0;160;90;1;2;0;0;1;1
+39873;16215;2;168;65.0;120;70;1;1;1;1;1;0
+39874;17980;1;166;78.0;120;70;1;1;0;0;1;1
+39875;21700;1;162;61.0;110;80;1;1;0;0;1;0
+39876;20341;1;168;73.0;120;80;2;1;0;0;1;0
+39877;19081;1;168;73.0;130;80;2;1;0;0;1;1
+39881;19612;1;165;65.0;120;90;1;1;0;0;1;0
+39882;20229;1;164;82.0;160;60;2;1;0;0;1;1
+39884;22754;2;173;80.0;150;90;1;1;1;0;1;1
+39885;22589;1;160;66.0;120;80;2;1;0;0;1;1
+39886;16096;2;172;74.0;110;73;1;1;0;0;1;0
+39887;14552;1;155;61.0;110;70;1;1;0;0;1;0
+39888;19190;1;165;65.0;140;90;1;1;0;0;1;1
+39889;19154;1;165;60.0;120;80;1;1;0;0;1;0
+39890;19043;1;175;70.0;130;80;1;1;0;0;1;0
+39891;19109;2;170;65.0;120;80;1;1;1;0;1;0
+39892;18496;1;165;63.0;150;110;1;1;0;0;1;1
+39893;18970;1;163;69.0;130;90;3;3;0;0;1;0
+39894;22432;1;156;77.0;130;90;1;1;0;0;1;0
+39895;19601;1;165;61.0;120;80;1;1;0;0;1;0
+39896;19757;1;168;65.0;130;90;1;1;0;0;1;0
+39898;21583;1;160;81.0;120;80;3;3;0;0;0;1
+39900;18769;1;151;67.0;120;80;1;1;0;0;1;1
+39902;19756;1;168;65.0;120;80;1;1;0;0;1;0
+39903;19655;1;171;82.0;120;80;1;1;0;0;1;0
+39904;18204;1;161;65.0;140;90;1;1;0;0;1;0
+39906;21964;2;161;68.0;140;90;1;1;0;0;1;1
+39907;18286;2;170;86.0;110;80;3;1;0;0;1;1
+39908;20444;1;158;78.0;160;100;1;2;0;0;1;1
+39909;19707;1;160;56.0;150;80;1;1;0;0;1;1
+39912;23308;2;157;61.0;140;90;1;1;0;0;1;1
+39913;21085;1;160;81.0;140;100;3;1;0;0;0;1
+39914;23330;2;163;80.0;150;90;3;1;1;0;1;0
+39915;17510;1;158;70.0;120;80;1;1;0;0;1;0
+39917;22601;2;169;65.0;120;80;3;3;0;0;1;1
+39920;21756;1;166;102.0;140;80;3;3;0;0;1;1
+39921;18546;1;162;72.0;140;100;1;1;0;0;0;1
+39922;22361;2;171;84.0;160;90;3;1;1;1;1;0
+39923;21735;1;168;89.0;120;80;1;1;0;0;1;0
+39926;18858;1;165;68.0;120;80;1;1;0;0;0;0
+39927;21159;1;156;62.0;140;90;1;1;0;0;1;0
+39929;18917;1;160;70.0;100;60;1;1;0;0;0;0
+39930;15049;1;166;69.0;110;80;2;1;0;0;1;0
+39931;17260;1;155;77.0;110;70;1;1;0;0;0;0
+39932;19574;1;164;82.0;130;80;3;1;0;0;1;1
+39933;16815;2;172;58.0;100;70;1;1;0;0;0;0
+39934;18288;1;153;98.0;130;90;1;1;0;0;1;0
+39935;20508;1;157;75.0;110;80;2;2;0;0;1;0
+39938;19722;1;154;73.0;150;100;1;1;0;0;1;0
+39939;21244;1;160;60.0;120;80;1;1;0;0;0;1
+39941;22370;1;155;52.0;150;100;1;1;0;0;0;1
+39943;22076;1;170;75.0;120;60;1;1;0;0;0;1
+39944;18917;1;165;65.0;120;80;1;1;0;0;1;0
+39950;21396;2;176;66.0;130;80;1;1;1;0;1;0
+39951;18436;2;165;70.0;120;90;3;3;0;0;1;1
+39952;18243;1;159;59.0;100;60;1;1;0;0;1;0
+39953;22441;1;158;62.0;120;80;1;1;0;0;1;1
+39956;20598;1;168;65.0;120;80;1;1;0;0;1;1
+39957;20465;2;178;78.0;120;80;3;3;1;0;1;1
+39958;21801;2;178;120.0;175;80;1;1;0;0;1;0
+39959;16068;1;158;51.0;90;50;1;1;0;0;1;0
+39960;20568;2;174;80.0;100;60;1;1;0;0;1;1
+39962;19746;2;176;96.0;130;70;1;1;0;0;1;1
+39963;23277;1;161;85.0;140;90;1;1;0;1;1;1
+39964;16662;2;175;88.0;140;90;1;1;0;0;1;1
+39965;20946;2;177;72.0;110;70;3;1;0;0;1;1
+39966;20463;1;172;83.0;110;80;3;1;0;0;1;1
+39967;15415;1;164;75.0;110;80;3;1;0;0;1;1
+39968;19389;1;175;91.0;120;80;3;1;0;0;1;1
+39969;19762;1;159;84.0;140;100;1;2;0;0;1;1
+39970;20957;1;158;114.0;160;90;3;3;0;0;1;1
+39971;21935;2;184;84.0;130;80;1;3;0;0;1;0
+39972;20379;1;156;54.0;120;90;3;1;0;0;1;1
+39975;17273;2;173;87.0;191;100;2;1;0;0;1;1
+39976;16157;2;171;70.0;110;80;1;1;0;0;1;0
+39981;21148;1;168;66.0;150;90;1;1;0;0;1;1
+39984;23375;1;167;80.0;130;80;1;1;0;0;1;0
+39985;23542;1;152;81.0;140;90;2;2;0;0;1;1
+39986;22847;2;175;69.0;140;90;1;1;0;0;0;1
+39987;23411;1;164;69.0;110;70;1;1;0;0;1;1
+39988;20487;1;167;108.0;130;70;1;1;0;0;1;0
+39989;16834;2;172;59.0;115;80;1;1;1;0;0;0
+39990;19430;1;160;75.0;140;80;2;1;0;0;0;0
+39991;18332;1;170;70.0;150;70;1;1;0;0;1;1
+39992;19565;1;162;98.0;150;100;1;1;0;0;1;1
+39993;22568;2;159;54.0;120;80;2;2;0;0;1;0
+39995;18024;2;162;64.0;140;80;1;1;0;0;1;1
+39996;18483;2;174;65.0;120;80;1;1;1;0;0;0
+39997;21758;1;160;67.0;110;70;1;1;0;0;1;0
+39998;14393;1;159;57.0;140;90;1;1;0;0;1;1
+40000;19452;1;159;83.0;110;80;3;3;0;0;1;0
+40002;20963;2;168;71.0;170;100;2;1;0;0;1;0
+40004;15304;1;150;68.0;126;86;1;1;0;0;0;0
+40006;19807;1;157;81.0;150;80;1;1;0;0;1;0
+40007;16532;1;165;51.0;110;70;1;1;0;0;0;0
+40008;17021;1;164;58.0;110;70;1;1;0;0;1;0
+40009;21091;1;162;62.0;120;80;1;1;0;0;1;0
+40015;18165;1;170;81.0;120;70;2;1;0;0;1;0
+40016;21109;1;155;88.0;150;90;1;1;0;0;1;1
+40019;15137;1;165;55.0;110;70;3;1;0;0;1;1
+40020;18365;1;157;68.0;120;80;1;1;0;0;0;0
+40021;19200;1;168;70.0;110;70;1;1;0;0;1;0
+40022;21317;1;165;76.0;120;80;1;1;0;0;1;1
+40024;18349;1;164;113.0;130;70;1;1;0;0;1;1
+40027;20448;2;173;64.0;130;90;1;1;1;0;1;1
+40028;17227;1;170;68.0;130;80;1;1;0;0;1;1
+40029;23451;1;156;61.0;140;90;1;1;0;0;0;1
+40030;21827;2;175;75.0;150;90;3;3;0;0;1;1
+40031;19922;2;175;79.0;120;80;1;1;0;0;1;0
+40032;14631;1;157;55.0;120;80;1;1;0;0;0;0
+40033;22107;1;160;83.0;130;80;1;1;0;0;1;0
+40034;15433;1;162;54.0;110;70;1;1;0;0;1;0
+40036;19736;1;160;85.0;140;1000;1;1;0;0;1;1
+40038;19683;1;171;68.0;120;80;1;1;0;0;1;0
+40039;15125;2;164;83.0;150;90;1;1;1;0;1;1
+40040;19258;1;153;70.0;130;80;1;1;0;0;1;0
+40041;19589;2;170;85.0;130;80;1;1;0;0;1;1
+40043;21991;2;166;78.0;130;80;1;1;0;0;1;0
+40044;21678;2;178;76.0;170;90;2;3;0;0;1;1
+40045;22646;1;166;78.0;120;80;3;1;0;0;1;0
+40047;22017;2;164;62.0;120;80;1;1;0;0;1;0
+40048;20671;1;163;72.0;120;80;1;1;0;0;1;1
+40049;18539;1;165;78.0;120;80;1;1;0;0;1;0
+40050;19744;1;155;65.0;120;80;1;1;0;0;0;1
+40051;21770;1;170;70.0;130;80;1;1;0;0;1;1
+40052;19674;1;160;79.0;110;70;2;1;0;0;1;1
+40053;19705;1;153;51.0;150;100;2;2;0;0;1;1
+40054;22521;1;148;70.0;130;80;3;3;0;0;0;1
+40055;20413;2;163;60.0;160;90;1;1;0;0;1;1
+40056;21966;2;183;110.0;130;80;3;3;0;0;1;1
+40057;17573;1;150;56.0;120;80;1;1;0;0;1;0
+40058;16662;1;155;60.0;160;100;1;1;0;0;1;1
+40059;21196;2;163;94.0;130;90;1;2;0;0;0;1
+40060;20363;2;169;77.0;120;80;1;1;0;0;1;0
+40061;21070;1;165;79.0;117;70;1;1;0;0;1;0
+40062;19151;2;178;65.0;120;80;1;2;0;0;1;1
+40064;18249;1;162;63.0;120;80;1;1;0;0;1;0
+40066;18339;1;162;74.0;120;80;1;1;0;0;0;0
+40067;16660;1;175;70.0;110;90;1;1;0;0;0;1
+40068;23517;1;187;84.0;12;80;1;1;0;0;1;0
+40070;23320;1;164;86.0;160;100;1;1;0;0;1;1
+40071;15858;2;163;61.0;80;50;1;1;1;1;1;0
+40072;18114;1;157;106.0;120;80;1;1;0;0;1;0
+40074;20578;1;169;89.0;170;100;3;3;0;0;1;0
+40076;15366;1;160;60.0;120;80;1;1;0;0;0;0
+40078;22135;1;159;68.0;120;80;1;1;0;1;1;0
+40079;15297;1;147;83.0;130;90;1;1;0;0;1;0
+40080;22011;1;150;88.0;130;80;3;1;0;0;1;1
+40081;17657;1;162;86.0;138;85;2;1;0;0;1;0
+40082;22972;2;160;75.0;110;71;1;1;1;0;0;1
+40086;15205;1;167;62.0;120;80;1;1;0;0;1;1
+40087;18933;2;168;70.0;120;80;1;1;0;0;1;1
+40088;21110;2;159;68.0;120;80;1;1;0;0;1;0
+40090;18324;2;180;83.0;120;80;1;1;0;0;0;0
+40092;18316;1;162;89.0;140;90;1;1;0;0;1;1
+40093;23288;1;160;61.0;110;70;1;1;0;0;0;0
+40094;23214;2;178;82.0;130;80;3;1;0;0;1;1
+40095;19811;2;168;76.0;110;70;1;1;0;0;0;0
+40096;16886;1;154;103.0;130;80;1;2;0;0;1;0
+40097;15371;1;161;72.0;150;90;2;2;0;0;1;1
+40098;21019;2;168;77.0;140;80;1;1;0;0;0;1
+40099;23583;1;167;69.0;110;70;1;1;0;0;1;1
+40100;19815;2;180;95.0;140;90;3;1;1;1;1;1
+40101;16108;1;170;81.0;120;80;1;3;0;0;0;1
+40102;14798;2;162;66.0;120;80;1;1;1;1;1;0
+40104;21873;1;160;77.0;125;85;1;1;0;0;1;0
+40105;17250;1;165;80.0;140;90;2;1;0;0;1;1
+40107;16183;1;168;72.0;110;70;1;1;0;0;0;0
+40108;14664;1;157;77.0;120;80;1;1;0;0;1;0
+40109;17929;2;178;80.0;150;90;2;2;0;0;1;1
+40110;19692;2;164;61.0;120;80;2;1;0;0;1;0
+40111;18531;2;168;74.0;120;70;2;2;0;0;1;0
+40113;19671;2;168;68.0;120;80;1;1;0;0;1;0
+40114;15213;1;156;60.0;120;80;1;1;0;0;0;0
+40116;21917;1;170;66.0;120;80;1;1;0;0;1;0
+40117;17549;1;164;70.0;140;80;3;1;0;0;0;1
+40118;19670;1;157;89.0;120;80;3;3;0;0;1;1
+40119;19600;1;157;70.0;100;70;1;1;0;0;1;1
+40120;19701;1;161;70.0;110;70;3;3;0;0;0;0
+40121;19615;1;170;105.0;130;80;3;3;0;0;1;1
+40122;20376;1;161;52.0;90;6;1;1;0;0;1;0
+40123;18486;2;175;94.0;90;60;1;1;0;0;1;1
+40124;22462;2;170;65.0;130;90;1;1;0;0;1;1
+40125;18749;2;173;91.0;130;90;1;1;0;0;1;0
+40126;18278;1;156;56.0;110;70;1;1;0;0;0;0
+40127;19657;1;160;52.0;120;80;1;1;0;0;0;0
+40129;19031;1;170;61.0;120;80;1;1;0;0;1;0
+40130;20391;1;165;75.0;100;70;1;1;0;0;0;0
+40131;18244;2;165;65.0;120;80;1;1;0;0;1;0
+40133;14414;1;156;79.0;140;100;3;3;0;0;1;1
+40134;18189;1;154;87.0;110;70;1;1;0;0;1;1
+40135;22578;2;169;78.0;120;60;1;1;0;0;1;1
+40136;18951;2;170;72.0;120;80;3;3;0;0;0;0
+40140;19061;1;152;61.0;140;90;2;2;0;0;1;1
+40144;22775;2;170;70.0;120;80;1;1;0;0;1;0
+40145;21876;2;167;59.0;130;90;1;1;0;0;1;1
+40146;17551;2;174;68.0;120;80;1;1;0;0;1;0
+40147;19764;1;160;66.0;150;90;2;1;0;0;1;1
+40148;21016;1;160;80.0;140;90;2;1;0;0;1;1
+40149;22652;1;165;59.0;100;70;1;1;0;0;1;1
+40151;20486;2;169;75.0;125;80;1;1;0;0;1;1
+40154;21645;1;156;60.0;120;80;1;1;0;0;1;1
+40156;19913;1;156;85.0;150;100;1;1;0;0;1;1
+40158;21894;2;165;74.0;130;80;1;1;0;0;1;1
+40160;19763;1;161;73.0;80;60;2;1;0;0;0;0
+40162;22536;2;170;84.0;120;80;2;2;0;0;1;0
+40163;15883;1;154;68.0;130;90;1;1;0;0;1;1
+40165;20587;2;178;95.0;120;80;2;1;0;0;1;0
+40166;20479;2;170;75.0;130;70;1;1;1;0;1;1
+40167;19874;1;165;73.0;120;80;1;1;0;0;1;1
+40170;23352;1;146;93.0;140;90;3;1;0;0;1;1
+40171;21798;1;160;91.0;160;1000;2;2;1;0;1;1
+40172;22784;2;169;67.0;130;80;1;1;1;1;0;1
+40175;23450;1;154;78.0;160;80;2;2;0;0;1;1
+40177;23240;1;142;68.0;150;90;2;2;0;0;1;1
+40178;21044;1;152;95.0;140;100;3;2;0;0;1;1
+40179;14830;1;156;74.0;120;80;1;1;0;0;1;0
+40181;18931;1;163;87.0;197;100;2;1;0;0;1;1
+40182;18769;2;165;100.0;130;80;3;3;1;1;1;1
+40183;18834;1;155;62.0;160;100;1;1;1;0;1;0
+40184;14421;2;170;67.0;120;80;1;2;0;0;1;0
+40187;22001;1;159;71.0;120;80;2;2;0;0;1;1
+40189;18919;1;155;84.0;120;80;2;1;0;0;1;1
+40191;15043;2;168;70.0;110;90;1;1;0;0;0;0
+40192;19722;2;180;93.0;120;80;1;1;0;0;1;0
+40193;23445;2;165;72.0;180;90;1;1;1;0;0;1
+40195;19472;1;169;75.0;120;80;1;1;0;0;1;0
+40196;18829;1;160;58.0;140;90;1;1;0;0;1;1
+40197;15580;1;160;65.0;85;60;1;1;0;0;1;0
+40198;18760;1;155;103.0;170;100;1;1;0;0;0;1
+40200;20426;1;167;69.0;120;80;1;1;0;0;1;0
+40201;16865;2;170;79.0;110;80;1;1;1;0;1;0
+40202;21944;1;169;67.0;110;80;1;3;0;0;0;1
+40203;21890;2;183;103.0;120;80;2;1;0;0;0;0
+40204;18199;2;163;64.0;130;90;1;1;0;0;1;1
+40205;18160;2;170;69.0;120;80;1;1;0;0;1;1
+40206;18521;2;173;100.0;120;80;1;2;1;0;1;0
+40207;21236;1;158;92.0;130;90;3;3;0;1;1;1
+40208;23241;1;159;87.0;140;90;2;1;0;0;1;1
+40209;17759;1;168;89.0;140;100;1;1;0;0;1;1
+40210;17492;1;151;83.0;120;80;1;2;0;0;1;0
+40211;21364;1;159;68.0;120;80;1;1;0;0;1;0
+40213;18945;2;177;68.0;120;80;1;1;1;0;0;0
+40217;18969;1;153;53.0;100;60;1;1;0;0;1;1
+40218;21339;1;146;56.0;200;120;1;2;0;0;1;1
+40221;15597;2;172;68.0;110;70;1;1;0;0;1;0
+40222;21677;1;154;92.0;170;100;1;1;0;0;1;1
+40224;22628;1;155;80.0;160;90;1;1;0;0;1;0
+40225;21733;1;175;78.0;160;1000;1;1;0;0;1;1
+40226;23207;1;160;65.0;100;80;3;3;0;0;0;1
+40227;20598;2;170;84.0;140;90;1;1;0;0;0;1
+40228;20928;1;160;75.0;220;110;2;1;0;0;0;1
+40229;19111;1;170;86.0;110;80;1;1;0;0;1;0
+40230;18103;1;158;61.0;120;80;1;1;0;0;1;0
+40231;21935;1;157;76.0;120;80;3;3;0;0;1;1
+40232;21281;1;158;68.0;120;80;1;3;0;0;1;0
+40233;18170;2;185;140.0;150;90;3;1;0;1;0;1
+40234;23502;2;175;103.0;160;80;2;2;0;0;1;1
+40235;18168;2;173;105.0;160;90;1;2;1;0;1;1
+40236;16705;1;163;68.0;110;70;1;1;0;0;1;0
+40237;18702;1;155;59.0;120;80;1;1;0;0;1;0
+40238;17548;1;160;75.0;140;1000;2;2;0;0;1;1
+40239;19700;2;175;87.0;1620;80;2;1;0;0;1;1
+40240;14512;1;157;60.0;110;90;1;1;0;0;1;0
+40241;21891;2;177;73.0;120;80;1;1;0;0;0;1
+40242;23120;1;155;62.0;140;90;1;1;0;0;1;1
+40243;16033;2;165;60.0;120;80;1;1;0;0;1;0
+40244;18197;1;169;80.0;130;80;2;1;0;0;1;0
+40246;19649;1;165;75.0;120;80;3;3;0;0;1;0
+40248;21853;2;172;99.0;130;100;3;3;0;0;1;1
+40249;20592;2;164;55.0;140;80;3;3;0;0;1;1
+40250;19756;2;175;80.0;140;90;1;1;0;0;1;1
+40252;18357;2;175;78.0;140;90;1;1;0;0;1;0
+40253;22509;2;166;64.0;150;90;1;1;0;0;1;0
+40254;21671;1;162;103.0;140;90;1;2;0;0;1;1
+40256;20371;2;171;81.0;140;100;2;1;0;0;1;1
+40257;19002;1;161;59.0;130;90;3;1;0;0;1;0
+40258;16599;1;174;85.0;120;80;1;1;1;0;1;0
+40259;20461;2;174;89.0;150;1000;1;1;0;0;1;0
+40260;21176;1;154;69.5;170;80;1;1;0;0;1;1
+40261;21838;1;156;70.0;100;70;1;3;0;0;1;0
+40263;18184;1;164;68.0;120;80;1;1;0;0;1;1
+40264;21076;1;160;61.0;120;80;1;1;0;0;1;1
+40265;14621;1;152;46.0;100;70;1;1;0;0;0;0
+40266;18005;1;167;41.0;100;60;2;1;0;0;1;0
+40267;14647;1;171;69.0;120;80;1;1;0;0;1;0
+40268;21160;2;164;82.0;130;80;1;2;1;0;1;1
+40270;19508;1;165;73.0;120;80;1;1;0;0;1;1
+40271;18501;1;165;78.0;120;80;1;1;0;0;1;0
+40274;21090;1;160;54.0;135;90;1;1;0;0;1;1
+40276;21309;2;166;75.0;120;80;1;1;0;0;0;1
+40277;20447;1;154;95.0;130;90;1;1;0;0;1;1
+40279;19021;1;164;80.0;160;80;2;1;0;0;1;1
+40283;22065;2;166;96.0;147;83;1;1;0;0;1;1
+40284;23291;2;176;79.0;100;70;3;3;1;0;1;1
+40285;19803;1;160;63.0;120;80;1;1;0;0;1;0
+40286;20774;1;160;65.0;110;70;3;3;0;0;0;0
+40287;21164;2;169;88.0;103;63;1;3;1;1;1;0
+40288;21628;2;181;100.0;125;70;1;1;0;1;1;0
+40291;20361;1;150;70.0;14;90;1;2;0;0;1;1
+40292;23203;1;159;59.0;110;90;1;1;0;0;1;1
+40293;20592;1;165;92.0;145;85;1;1;0;0;1;0
+40294;18269;2;172;79.0;120;80;1;1;0;0;1;1
+40295;16813;2;163;75.0;160;1000;3;2;0;0;1;1
+40298;20420;1;166;70.0;120;80;1;1;0;0;1;0
+40299;22032;1;164;64.0;120;70;1;1;0;0;1;0
+40302;19602;1;165;85.0;130;80;1;1;0;0;1;0
+40303;19841;1;158;80.0;130;90;3;1;0;0;1;1
+40307;18187;1;165;72.0;120;80;1;1;0;0;0;1
+40308;20228;1;163;75.0;140;90;1;1;0;0;1;1
+40309;15357;1;165;65.0;120;80;1;1;0;0;1;0
+40310;16677;1;170;70.0;120;80;3;3;0;0;0;0
+40311;15426;1;160;85.0;130;90;1;2;0;0;1;0
+40313;18881;1;162;61.0;110;70;1;1;0;0;1;0
+40315;21120;1;166;71.0;110;60;1;1;0;0;1;0
+40316;17969;1;174;76.0;120;80;1;1;0;0;1;0
+40317;16543;1;160;48.0;100;70;2;1;0;0;1;0
+40318;21838;1;154;56.0;120;80;3;1;0;0;1;0
+40319;23163;2;164;62.0;120;80;1;1;0;0;0;1
+40320;20195;1;164;84.0;120;80;1;2;0;0;0;1
+40321;22477;1;182;102.0;130;80;3;3;0;0;1;1
+40322;20463;1;168;72.0;120;80;1;1;0;0;1;0
+40323;19123;2;179;68.0;130;90;1;1;1;1;1;0
+40324;20344;1;163;87.0;120;80;1;1;0;0;0;0
+40326;18866;2;178;79.0;120;80;1;1;0;0;1;0
+40327;18367;1;170;80.0;150;80;1;1;0;0;0;1
+40329;22106;2;170;68.0;120;80;3;3;0;0;1;1
+40330;21296;1;172;72.0;120;80;3;1;0;1;1;0
+40334;19803;2;169;79.0;150;100;1;1;0;0;0;1
+40336;21730;1;158;50.0;110;80;1;1;0;0;1;0
+40337;20377;1;160;73.0;140;90;1;1;0;0;1;1
+40338;19870;1;168;76.0;155;95;2;2;0;0;1;1
+40340;18966;1;170;66.0;119;74;2;2;0;1;1;0
+40341;20504;2;180;75.0;120;80;1;1;1;0;1;1
+40342;19620;1;164;74.0;110;70;1;1;0;0;0;0
+40344;17683;1;172;92.0;140;80;1;3;0;0;0;0
+40345;15396;1;157;66.0;120;80;1;1;1;0;1;0
+40346;23377;1;154;73.0;140;100;3;1;0;0;1;1
+40347;18927;2;174;84.0;150;90;3;3;0;0;1;1
+40349;18850;2;172;92.0;150;90;1;1;0;1;1;1
+40350;14613;1;160;65.0;130;1000;1;1;0;0;1;1
+40351;20922;1;160;93.0;140;80;1;1;0;0;1;1
+40352;18381;1;167;58.0;120;80;1;1;0;0;1;0
+40353;19023;1;168;67.0;120;80;1;1;0;0;0;0
+40355;18299;1;159;68.0;120;80;3;3;0;0;1;1
+40356;22668;1;150;91.0;180;110;3;2;0;0;0;1
+40357;17443;1;162;93.0;110;70;1;1;0;0;1;0
+40358;16630;1;161;89.0;150;90;1;1;0;0;0;1
+40360;21355;1;167;70.0;120;80;1;1;0;0;1;1
+40361;19794;1;149;91.0;140;90;1;1;0;0;1;0
+40362;20243;2;164;64.0;120;80;1;1;0;0;1;1
+40363;21068;2;167;89.0;120;80;1;1;0;0;1;1
+40364;17275;1;156;73.0;150;90;1;1;0;0;0;1
+40365;16168;1;163;65.0;120;80;2;2;0;0;1;1
+40367;21140;1;150;72.0;160;100;1;1;0;0;1;0
+40369;17452;1;158;61.0;110;70;1;1;0;0;1;0
+40370;21278;1;165;86.0;120;80;1;1;0;0;0;0
+40371;22765;2;170;82.0;120;80;1;1;1;1;1;0
+40372;23251;2;170;68.0;150;70;1;1;0;0;1;1
+40373;18402;1;165;82.0;130;80;1;1;0;0;0;1
+40374;21125;1;162;62.0;110;70;1;1;0;0;1;1
+40376;18707;2;172;89.0;120;80;1;1;0;0;1;0
+40377;21222;2;165;65.0;120;80;3;3;0;0;1;0
+40378;21997;1;164;52.0;120;80;1;1;0;0;1;0
+40380;22556;1;163;75.0;140;70;1;1;0;0;1;1
+40382;17634;1;165;82.0;120;70;1;1;0;0;1;0
+40383;20236;1;153;60.0;136;1000;3;1;0;0;1;1
+40384;23142;1;146;90.0;120;80;3;3;0;0;1;1
+40386;21322;1;157;88.0;140;85;1;1;0;0;1;0
+40387;23441;1;160;74.0;130;80;3;3;0;0;1;0
+40388;19855;1;166;76.0;150;60;1;1;0;0;0;0
+40389;18112;2;169;73.0;120;80;1;1;0;0;0;0
+40392;19021;2;175;80.0;120;79;1;1;0;0;0;0
+40394;20577;1;160;88.0;125;80;1;1;0;1;1;0
+40395;19523;1;152;56.0;103;65;1;1;0;0;1;0
+40396;22593;2;156;52.0;120;80;1;1;1;0;1;0
+40397;22587;2;181;85.0;140;90;1;1;0;0;1;0
+40398;18291;2;179;91.0;110;70;1;3;0;0;0;0
+40399;17540;1;155;61.0;110;70;1;1;0;0;0;0
+40400;21399;1;156;74.0;150;80;3;3;0;0;0;1
+40401;23555;1;151;94.0;110;70;1;1;0;0;1;0
+40403;22486;1;155;63.0;120;80;1;1;0;0;1;1
+40405;20980;1;157;71.0;120;80;1;1;0;0;1;1
+40406;15082;1;159;60.0;110;70;1;1;0;0;1;0
+40407;16048;2;164;89.0;140;100;1;1;0;1;1;1
+40411;21305;1;170;72.0;120;80;1;1;0;0;1;1
+40412;18166;1;157;60.0;120;80;1;1;0;0;1;0
+40413;19712;1;159;65.0;130;80;2;2;0;0;1;1
+40414;22701;2;171;69.0;130;90;1;1;0;0;1;1
+40416;22618;1;163;63.0;120;80;3;3;0;0;1;0
+40417;17287;1;166;65.0;110;70;1;1;0;0;1;1
+40418;15133;2;189;110.0;130;80;1;2;0;0;0;0
+40420;18717;1;161;78.0;140;90;3;3;0;0;1;1
+40421;19790;1;158;62.0;120;80;1;1;0;0;1;0
+40424;21857;1;158;88.0;120;80;1;1;0;1;1;1
+40425;19448;2;171;113.0;120;80;1;1;0;0;0;1
+40426;16605;1;153;110.0;150;90;1;1;0;0;1;1
+40427;14626;1;170;81.0;100;70;1;1;0;1;1;0
+40428;19115;2;176;79.0;160;90;1;1;0;0;1;1
+40429;19864;1;165;92.0;150;90;1;1;0;0;1;1
+40430;21929;1;176;72.0;120;80;1;1;0;0;0;0
+40431;23292;1;159;69.0;130;85;1;1;0;0;0;0
+40435;22438;1;155;67.0;120;80;1;1;0;0;1;0
+40436;20564;2;169;89.0;120;80;1;1;1;0;1;0
+40437;18791;1;165;79.0;130;90;2;1;0;0;1;1
+40438;20243;1;165;65.0;110;70;3;3;0;0;1;0
+40439;22423;2;170;72.0;120;90;1;1;0;0;1;1
+40441;17491;1;154;72.0;140;90;1;1;0;0;1;1
+40442;21720;1;159;90.0;160;100;3;1;0;0;1;1
+40443;23249;2;152;70.0;110;70;2;1;0;0;1;0
+40444;19962;1;170;72.0;150;90;1;1;0;0;1;0
+40445;18148;2;168;82.0;140;90;1;1;0;0;1;1
+40446;21842;1;145;85.0;140;80;3;1;0;0;1;0
+40448;18351;1;162;92.0;130;80;2;1;0;0;1;1
+40449;15353;1;169;67.0;120;70;1;1;0;0;1;0
+40450;16805;1;157;67.0;120;80;1;1;0;0;1;0
+40451;16806;1;170;86.0;150;90;2;1;0;0;0;1
+40452;15256;1;165;60.0;120;80;1;1;0;0;0;0
+40453;14327;1;160;96.0;110;60;1;1;0;1;1;0
+40454;18973;2;166;99.0;140;80;1;1;0;0;0;0
+40456;22435;1;158;63.0;150;90;2;1;0;0;0;1
+40457;15204;1;166;80.0;120;80;1;1;0;1;1;0
+40459;18838;1;167;65.0;120;80;3;1;0;0;1;1
+40461;21033;2;180;94.0;145;95;1;1;1;1;1;1
+40462;19857;1;170;65.0;120;80;2;2;0;0;0;1
+40463;20302;2;165;96.0;140;80;1;1;0;0;1;1
+40464;22502;1;166;91.0;140;90;1;1;0;0;0;1
+40466;22524;2;170;62.0;100;60;1;1;0;0;1;1
+40468;14372;2;169;69.0;120;70;2;1;0;0;1;0
+40469;21186;2;165;58.0;130;70;1;1;0;0;1;0
+40472;23330;2;170;90.0;120;80;1;1;0;0;0;1
+40475;15179;1;165;64.0;120;80;1;1;0;0;1;0
+40476;21987;1;175;70.0;120;80;1;1;0;1;1;1
+40478;20528;2;168;65.0;120;80;1;1;0;0;1;1
+40480;16514;1;166;92.0;120;80;1;1;0;0;0;0
+40482;19865;2;172;70.0;114;90;2;1;0;0;1;1
+40485;23163;1;155;67.0;160;90;3;1;0;0;0;1
+40486;18821;2;166;92.0;130;80;2;1;0;0;1;1
+40487;23279;1;154;56.0;120;80;3;1;0;0;1;0
+40489;21850;1;158;60.0;130;90;3;3;0;0;1;1
+40490;14342;2;185;84.0;120;80;1;1;0;0;0;0
+40492;19783;1;157;61.0;120;80;1;1;0;0;1;1
+40493;17498;2;160;57.0;120;80;1;1;0;0;1;0
+40494;21154;1;160;100.0;120;60;1;1;0;0;1;0
+40495;19592;2;169;65.0;140;100;1;1;0;0;1;1
+40496;15517;1;166;69.0;120;80;1;1;0;0;1;0
+40497;15944;1;165;90.0;140;100;1;1;0;0;1;1
+40498;18072;2;170;75.0;130;90;3;3;0;0;1;1
+40499;21139;2;160;62.0;110;80;1;1;0;0;1;0
+40500;23425;2;175;75.0;180;130;2;1;0;0;1;1
+40501;17470;2;170;80.0;140;1000;1;1;0;1;1;1
+40502;18291;1;160;65.0;140;80;1;1;0;0;1;1
+40503;22662;1;165;65.0;120;80;1;1;0;0;1;1
+40506;23469;2;172;120.0;120;80;1;3;0;0;1;1
+40508;20616;1;164;78.0;110;70;2;1;0;0;1;0
+40509;21731;2;178;64.0;140;100;1;1;1;0;1;0
+40510;21200;1;158;63.0;120;80;1;1;0;0;0;1
+40514;23408;1;169;80.0;110;80;1;1;0;0;1;0
+40516;19393;1;154;68.4;110;90;1;1;0;0;1;0
+40517;19662;2;175;69.0;120;80;1;1;0;0;1;0
+40519;20323;1;170;86.0;120;70;1;1;0;0;1;1
+40520;23416;2;170;67.0;110;80;1;1;0;0;1;0
+40521;14616;1;150;58.0;120;80;1;2;0;0;1;1
+40524;19046;2;160;60.0;130;80;1;1;0;0;0;1
+40525;21388;1;159;73.0;170;100;1;1;0;0;1;1
+40526;15277;1;163;70.0;120;80;1;1;0;0;1;0
+40527;15476;1;165;71.0;120;80;1;1;0;0;1;0
+40530;23588;1;157;90.0;140;90;1;1;0;0;1;1
+40533;18435;1;155;69.0;120;80;1;1;0;0;1;0
+40534;18845;1;165;75.0;120;80;1;1;0;0;0;0
+40535;21197;1;151;63.0;110;80;1;1;0;0;0;1
+40536;16602;1;160;74.0;140;90;1;1;0;0;1;0
+40537;21895;2;168;68.0;120;80;1;1;1;1;1;0
+40539;20278;1;165;60.0;110;70;2;1;0;0;1;0
+40540;17584;2;177;77.0;110;70;1;1;0;0;1;0
+40542;20396;1;158;99.0;170;100;1;2;0;0;1;1
+40544;20402;1;159;78.0;120;80;1;1;0;0;0;0
+40545;22831;2;180;79.0;130;90;1;1;0;0;1;1
+40546;21401;2;160;65.0;120;80;1;3;0;0;1;0
+40547;23260;1;160;65.0;100;70;3;3;0;0;1;1
+40548;19663;2;180;75.0;120;80;1;1;1;0;1;0
+40549;22078;2;168;58.0;110;80;1;1;0;0;1;0
+40550;19660;2;172;85.0;120;80;1;1;0;0;1;1
+40551;22106;1;167;86.0;110;80;3;3;0;0;1;0
+40553;23106;1;169;72.0;130;80;1;1;0;0;1;0
+40554;20493;2;175;112.0;150;90;3;1;0;0;1;1
+40555;21831;1;150;101.0;120;80;3;2;0;0;1;1
+40558;18271;2;178;75.0;120;80;2;1;0;0;1;0
+40559;21764;2;151;70.0;120;80;3;3;0;0;1;1
+40560;18216;1;161;69.0;150;95;3;1;0;0;1;0
+40561;17640;1;170;65.0;120;80;1;1;0;0;1;0
+40566;23402;1;161;85.0;110;80;1;1;0;0;1;1
+40567;20525;2;174;90.0;140;80;1;1;0;0;0;1
+40568;19643;2;182;76.0;100;60;1;1;0;0;1;0
+40570;16584;1;170;78.0;120;80;1;1;0;0;1;1
+40571;21238;1;175;93.0;120;80;1;1;0;0;1;0
+40574;22841;1;168;78.0;120;80;1;1;0;0;1;1
+40575;22587;2;165;81.0;120;80;3;2;0;1;0;0
+40579;19597;1;158;60.0;120;80;2;1;0;0;1;0
+40580;18740;2;174;97.0;120;80;1;1;0;0;1;0
+40581;15936;1;153;60.0;110;60;1;1;0;0;1;0
+40582;15117;1;150;44.0;110;70;1;1;0;0;0;0
+40585;19720;2;169;70.0;140;90;1;1;0;0;1;1
+40586;17271;2;178;69.0;120;80;1;1;0;0;1;0
+40587;15420;1;163;78.0;110;80;1;1;0;0;0;0
+40590;18145;1;167;62.0;130;80;1;1;0;0;1;1
+40592;23401;1;158;69.0;130;80;1;1;0;0;1;1
+40594;14684;1;153;52.0;12;80;1;1;0;0;1;0
+40595;23343;1;155;83.0;150;90;2;2;0;0;0;1
+40598;21264;1;163;50.0;120;80;1;1;0;0;1;0
+40602;17017;2;168;60.0;120;80;1;1;0;0;1;0
+40603;19640;1;164;50.0;120;80;1;2;1;0;1;0
+40605;17411;1;162;78.0;138;94;1;1;0;0;1;1
+40608;20599;1;160;60.0;120;80;3;3;0;0;1;1
+40610;22635;1;156;60.0;120;80;2;1;0;0;1;1
+40611;19689;1;160;64.0;130;90;1;1;0;0;1;0
+40612;21719;2;172;64.0;150;40;1;2;0;0;1;1
+40613;18191;1;165;65.0;120;80;1;1;0;0;1;0
+40616;23068;1;158;72.0;120;80;1;3;0;0;1;1
+40617;20260;1;161;66.0;120;80;3;3;0;0;0;1
+40618;21901;2;168;69.0;180;100;1;1;0;0;1;0
+40620;18127;1;152;74.0;110;70;1;1;0;0;0;0
+40621;19480;1;165;84.0;130;80;1;1;0;0;1;1
+40622;16726;2;172;66.0;110;70;1;1;1;0;1;0
+40623;18920;1;156;78.0;120;80;1;1;0;0;0;1
+40624;18193;2;164;72.0;120;80;1;1;1;1;1;0
+40626;20647;2;179;87.0;130;90;1;1;0;0;1;0
+40627;16406;2;175;86.0;130;90;2;1;1;0;1;1
+40628;17403;2;161;101.0;160;100;2;1;1;0;0;0
+40631;19128;1;170;69.0;120;80;1;1;0;0;1;0
+40632;16796;2;169;72.0;120;80;1;1;0;0;1;0
+40633;22572;1;160;82.0;110;90;2;1;0;0;1;0
+40634;22127;1;158;68.0;120;80;1;1;0;0;1;0
+40635;19041;1;165;95.0;110;70;1;1;0;0;1;0
+40636;18202;1;154;56.0;150;90;1;1;0;0;1;0
+40637;16827;1;154;64.0;140;90;3;3;0;0;1;1
+40638;19435;2;168;90.0;130;80;3;3;0;0;1;1
+40640;14448;1;163;60.0;120;80;2;1;0;0;1;0
+40641;18413;1;170;70.0;120;80;1;1;0;0;1;0
+40642;14529;1;155;50.0;110;70;1;1;0;0;1;0
+40643;20989;2;173;88.0;120;79;1;1;0;0;0;1
+40645;18579;1;163;58.0;110;80;1;1;0;0;1;0
+40649;14875;1;162;60.0;120;80;1;1;0;0;1;1
+40651;21232;1;158;81.0;130;80;1;1;0;0;0;1
+40653;19887;2;165;98.0;120;80;1;1;0;0;1;0
+40654;19767;1;161;68.0;150;90;1;1;0;0;1;1
+40655;18308;2;166;93.0;110;80;1;1;1;0;1;0
+40656;22608;1;147;46.0;100;70;1;1;0;0;1;1
+40659;21900;1;168;105.0;130;80;2;1;1;1;0;1
+40662;23160;1;171;103.0;130;80;1;1;0;0;0;1
+40663;20013;2;180;87.0;120;80;3;3;0;0;1;0
+40664;18088;2;170;74.0;120;80;1;1;1;1;0;0
+40665;17560;1;153;73.0;120;80;2;1;0;0;1;0
+40666;21807;1;167;78.0;130;80;1;2;0;0;0;1
+40667;23297;1;158;98.0;140;90;1;1;0;0;0;1
+40668;19129;1;168;62.0;120;80;1;1;0;0;1;0
+40669;20352;2;160;115.0;120;80;1;1;0;0;1;0
+40670;21015;2;170;74.0;120;80;1;1;0;0;1;0
+40672;15898;1;169;69.0;120;80;3;3;0;0;0;0
+40673;18334;1;158;50.0;100;70;1;1;0;0;0;0
+40675;14442;2;171;63.0;120;80;1;1;0;0;1;0
+40676;20939;2;163;64.0;120;80;1;1;0;0;1;1
+40677;19861;1;156;65.0;120;80;1;1;0;0;1;0
+40679;19707;1;142;117.0;130;90;1;1;0;0;1;0
+40680;20969;1;150;79.0;130;90;3;1;0;0;1;1
+40681;17559;1;156;65.0;120;80;1;1;0;0;0;1
+40682;23155;2;170;76.0;160;90;1;1;0;0;0;1
+40684;19668;2;174;89.0;140;80;2;1;0;0;0;1
+40685;15407;1;163;70.0;120;80;1;1;0;0;0;1
+40686;23526;2;162;62.0;120;90;1;1;0;0;1;1
+40687;22630;2;170;135.0;130;80;1;1;0;0;0;1
+40688;16717;2;169;67.0;120;80;1;1;0;0;1;0
+40691;20255;1;180;84.0;100;70;2;3;0;0;1;1
+40692;16558;1;164;77.0;110;70;1;1;0;0;1;0
+40694;21298;1;170;75.0;130;60;1;1;0;0;1;0
+40695;14352;1;158;70.0;100;60;1;1;0;0;1;0
+40696;14675;1;163;119.0;110;70;2;2;0;0;1;0
+40697;20778;1;167;85.0;170;100;1;1;0;0;1;1
+40698;23423;2;161;93.0;160;1001;1;2;0;0;1;1
+40699;23325;2;163;65.0;120;80;2;1;0;0;1;0
+40700;20353;2;178;73.0;110;80;2;1;0;0;1;0
+40702;22134;1;160;63.0;12;80;1;1;0;0;1;0
+40704;18965;2;161;63.0;140;90;1;1;0;0;1;1
+40705;19621;1;154;73.0;130;70;1;1;0;0;0;1
+40706;21219;1;158;82.0;120;80;1;1;0;0;1;0
+40707;20518;1;180;77.0;120;80;1;1;0;0;1;0
+40708;18835;1;165;75.0;150;80;3;3;1;0;1;1
+40709;18237;1;160;72.0;120;80;1;1;0;0;1;1
+40711;14549;1;158;92.0;120;80;2;1;0;0;1;0
+40712;21018;1;154;95.0;140;110;1;1;0;0;1;1
+40714;23396;2;169;76.0;130;90;1;1;0;0;0;0
+40715;19844;1;164;68.0;120;80;1;1;0;0;1;1
+40716;22040;2;164;67.0;140;90;1;1;0;0;1;1
+40718;19712;2;171;86.0;120;80;1;1;0;1;0;1
+40719;18114;1;167;84.0;140;90;1;2;0;0;1;0
+40720;21072;1;162;81.0;110;70;1;1;0;0;1;0
+40724;19540;1;161;87.0;140;90;1;1;0;0;0;0
+40725;20477;2;186;130.0;160;1000;2;1;0;0;1;1
+40727;17231;1;164;80.0;140;90;1;1;0;0;0;1
+40728;18775;1;158;75.0;120;80;1;1;0;0;1;0
+40730;19243;2;174;65.0;170;90;2;2;0;0;1;1
+40731;19530;1;156;72.0;120;80;1;1;0;0;1;1
+40732;21024;1;163;65.0;120;80;1;1;0;0;1;0
+40734;20183;1;168;79.0;120;80;1;2;0;0;1;1
+40737;19741;1;154;73.0;140;80;1;1;0;0;1;1
+40738;21934;1;159;68.0;140;90;1;1;0;0;1;1
+40739;20234;2;172;85.0;130;90;1;1;0;0;1;0
+40740;16876;2;180;80.0;140;80;1;1;0;0;1;0
+40741;18201;2;173;97.0;125;75;1;1;1;0;0;1
+40742;22619;2;160;60.0;120;80;1;1;0;0;0;1
+40744;19113;1;158;68.0;120;70;1;1;0;0;1;0
+40746;18398;1;157;61.0;120;90;1;2;0;0;1;0
+40747;16868;2;165;105.0;120;80;2;1;0;0;1;1
+40750;15233;1;164;67.0;120;80;1;1;0;0;1;1
+40751;20690;1;167;88.0;140;90;3;3;0;0;1;0
+40752;15525;1;185;76.0;110;80;1;1;0;0;1;0
+40754;19014;1;163;65.0;120;80;1;1;0;0;1;1
+40757;19040;1;145;107.0;130;80;1;1;0;0;1;1
+40758;19745;2;169;79.0;120;80;1;1;0;0;0;1
+40759;19132;1;168;62.0;120;80;1;1;0;0;1;1
+40760;21887;2;178;79.0;110;70;1;1;0;0;0;1
+40761;20518;1;157;73.0;140;90;1;1;0;0;1;1
+40762;18859;2;170;81.0;130;80;1;1;0;0;0;0
+40763;19705;2;164;65.0;120;80;2;1;1;0;1;0
+40765;22490;2;156;60.0;130;80;2;1;1;0;1;1
+40767;21456;2;175;79.0;120;80;1;3;0;0;1;0
+40768;16784;1;156;69.0;100;70;1;1;0;0;1;0
+40769;21973;1;157;85.0;150;90;3;1;0;0;1;1
+40770;20260;1;130;74.0;140;90;1;1;0;0;0;1
+40772;17476;1;163;100.0;150;80;2;1;0;0;1;1
+40773;23356;1;175;70.0;120;80;1;1;0;0;1;1
+40774;18112;1;153;78.0;140;90;1;3;0;0;1;1
+40777;19787;1;167;67.0;130;90;2;1;0;0;1;1
+40778;21968;1;151;56.0;120;79;1;1;0;0;1;0
+40779;18864;1;164;78.0;150;90;2;1;0;0;1;1
+40782;19608;1;156;82.0;140;100;1;1;0;0;1;1
+40785;20515;1;154;84.0;130;90;2;1;0;0;1;0
+40787;18216;1;168;61.0;100;75;2;1;0;0;1;0
+40788;16258;1;170;68.0;110;80;1;1;0;0;1;0
+40789;20276;1;158;102.0;130;100;2;1;0;0;1;1
+40790;18373;2;159;60.0;120;80;1;1;0;0;1;0
+40791;22631;2;158;69.0;150;90;2;1;1;0;1;1
+40792;18168;1;156;60.0;110;70;1;1;0;0;1;0
+40793;20340;1;168;75.0;130;80;1;1;1;0;1;1
+40795;21215;1;165;68.0;120;80;1;1;0;0;1;1
+40796;16665;2;177;77.0;130;80;1;1;1;0;1;1
+40797;22469;1;158;90.0;160;70;1;3;0;0;1;0
+40798;15298;1;153;69.0;110;70;2;1;0;0;1;1
+40799;18499;1;165;64.0;120;80;2;1;0;0;0;0
+40800;21838;1;156;58.0;140;90;1;1;0;0;1;1
+40801;22364;1;166;101.0;159;90;3;1;0;0;1;1
+40802;21778;2;166;80.0;160;100;3;2;0;0;0;0
+40803;20443;2;175;85.0;152;90;2;1;1;0;1;1
+40804;18853;1;178;85.0;120;80;1;1;0;0;0;0
+40805;19600;1;170;81.0;160;90;3;1;0;0;1;1
+40806;22123;1;158;64.0;120;80;3;1;0;0;1;1
+40808;21225;2;158;80.0;120;80;1;1;0;0;1;1
+40810;22156;1;161;77.0;130;90;2;1;0;0;0;1
+40811;18266;2;178;97.0;120;80;1;1;0;0;1;0
+40812;18184;1;156;94.0;130;80;1;1;0;0;1;1
+40813;23668;2;166;89.0;160;100;1;1;0;0;1;1
+40814;15923;2;175;80.0;150;90;1;1;0;0;1;1
+40815;20986;1;163;78.0;130;90;3;1;0;0;1;1
+40818;20439;1;166;73.0;120;80;2;1;0;0;0;0
+40822;21827;1;159;68.0;120;80;1;1;0;0;1;0
+40823;18913;1;155;65.0;140;80;1;1;0;0;1;1
+40825;20514;1;160;89.0;140;90;2;1;0;0;1;1
+40826;21882;2;164;70.0;120;70;1;1;0;0;1;0
+40828;22475;1;158;52.0;120;80;2;1;0;0;0;0
+40829;19616;1;156;70.0;160;90;2;2;0;0;0;1
+40830;17552;1;157;70.0;120;80;1;1;0;0;1;0
+40831;20636;1;155;71.0;120;80;2;2;0;1;1;0
+40833;18238;2;165;65.0;140;90;1;1;0;0;0;1
+40834;20547;1;171;68.0;120;80;1;1;0;0;1;0
+40835;16804;1;163;83.0;150;90;2;1;0;0;0;1
+40836;19626;1;157;59.0;130;80;3;3;0;0;0;1
+40837;23102;2;163;65.0;120;60;1;1;0;0;1;0
+40838;23245;2;177;68.0;150;60;3;3;0;0;1;0
+40839;19540;1;160;88.0;100;60;1;1;0;0;0;0
+40840;21152;1;156;104.0;130;90;2;2;0;0;1;0
+40841;21377;2;170;63.0;120;80;1;3;0;0;1;0
+40842;18396;1;162;58.0;110;70;1;1;0;0;0;0
+40843;17659;1;167;73.0;120;90;1;1;0;0;1;0
+40845;22760;2;169;82.0;110;60;3;1;1;0;1;1
+40846;18935;2;173;91.0;120;80;1;1;0;0;0;1
+40847;19603;1;165;75.0;120;80;1;1;0;0;1;1
+40849;19545;1;157;89.0;150;90;2;3;0;0;0;1
+40850;14488;2;173;75.0;120;80;1;1;0;0;1;1
+40851;19493;2;180;82.0;160;100;1;1;0;0;1;1
+40854;21867;1;162;73.0;120;70;1;1;0;0;1;0
+40855;22023;2;178;85.0;140;90;2;1;0;0;0;1
+40856;20435;2;169;92.0;150;90;1;3;0;0;1;1
+40858;20297;2;176;95.0;140;90;2;1;0;0;1;1
+40860;16130;1;157;61.0;120;80;1;1;0;0;1;1
+40861;21324;1;168;68.0;120;80;1;1;0;0;1;1
+40864;19777;1;152;71.0;130;80;1;1;0;0;0;1
+40865;18220;2;163;72.0;120;80;1;1;0;0;1;1
+40866;19729;1;164;105.0;160;90;1;1;0;0;1;1
+40867;19118;1;165;75.0;160;90;2;1;0;0;1;1
+40869;23274;1;166;92.0;160;90;3;1;0;0;1;1
+40871;19069;2;170;74.0;120;80;1;1;0;0;0;1
+40874;16141;1;165;67.0;140;75;2;3;0;0;1;1
+40878;21431;2;166;65.0;110;70;1;1;0;0;0;1
+40879;21100;2;164;93.0;160;100;2;3;1;0;1;0
+40880;22524;2;167;75.0;120;80;1;1;0;0;1;0
+40881;17586;1;164;72.0;120;80;1;1;0;0;1;1
+40883;20973;1;170;95.0;130;80;1;1;0;0;0;0
+40884;18846;1;164;65.0;100;70;1;2;0;0;0;0
+40886;20515;2;164;64.0;140;90;1;1;1;1;1;1
+40887;23212;1;160;60.0;120;80;1;1;0;0;1;0
+40889;20239;2;180;95.0;100;60;1;1;0;0;1;0
+40892;20222;1;171;110.0;90;60;2;1;0;0;1;1
+40893;21751;2;170;75.0;120;80;1;1;0;0;1;1
+40894;19602;2;179;78.0;130;90;1;1;0;0;1;0
+40895;20468;1;164;85.0;120;80;1;1;0;0;1;0
+40897;20187;1;152;61.0;100;80;1;1;0;0;1;0
+40898;18945;1;168;70.0;180;100;1;2;0;0;0;1
+40899;19073;2;172;80.0;110;80;2;2;1;0;1;0
+40900;21365;1;165;62.0;130;70;1;1;0;0;1;1
+40901;15912;1;167;99.0;180;1100;2;1;0;0;1;1
+40903;23511;1;158;59.0;110;80;1;1;0;0;1;0
+40904;23336;1;164;53.0;140;90;3;1;0;0;1;1
+40905;14873;2;170;70.0;122;80;1;1;0;0;1;0
+40906;16977;1;156;69.0;140;90;1;1;0;0;0;1
+40907;19497;2;178;70.0;110;70;1;1;0;0;1;0
+40909;19960;1;179;69.0;120;79;1;1;0;0;0;0
+40910;23455;2;176;85.0;140;90;2;2;0;0;1;1
+40911;18887;1;165;61.0;110;70;2;1;0;0;1;1
+40912;22003;1;175;68.0;120;80;1;1;0;0;1;1
+40913;15432;2;171;68.0;110;70;1;1;0;0;1;0
+40914;14923;2;165;80.0;150;90;2;1;0;0;1;0
+40915;21358;2;168;79.0;120;80;1;1;1;0;1;0
+40916;17991;1;167;88.0;120;80;1;1;0;0;1;0
+40918;18003;2;178;78.0;160;90;1;1;1;1;1;1
+40919;19667;1;156;71.0;120;80;1;1;0;0;1;0
+40920;18881;1;160;60.0;110;60;1;1;0;0;0;0
+40921;18434;1;170;65.0;120;80;1;1;0;0;0;0
+40923;18965;1;165;60.0;110;60;1;1;0;0;1;0
+40924;16762;2;166;100.0;190;120;3;1;0;1;1;1
+40925;21096;1;158;69.0;120;80;1;1;0;0;1;1
+40926;15950;1;166;56.0;120;80;1;1;0;0;0;0
+40927;16948;2;182;70.0;100;70;2;1;0;0;1;0
+40928;18895;1;167;78.0;120;80;1;1;0;0;1;0
+40929;18373;2;178;86.0;120;80;1;1;0;0;0;0
+40930;22432;1;160;83.0;14;100;1;1;0;0;1;1
+40931;19246;1;160;65.0;120;80;1;1;0;0;1;0
+40932;18303;2;167;77.0;140;90;1;1;0;0;0;1
+40933;21459;1;154;58.0;150;80;2;1;0;0;1;1
+40935;15159;1;160;78.0;120;90;1;1;0;0;1;0
+40936;14655;2;177;98.0;120;80;2;1;0;0;1;0
+40937;19784;1;165;66.0;120;80;1;1;0;0;0;1
+40939;19680;1;166;70.0;120;80;1;1;0;0;1;0
+40940;14693;2;169;85.0;120;80;1;1;0;0;1;0
+40941;22007;2;170;68.0;140;90;1;1;0;0;1;0
+40942;18394;1;160;58.0;120;80;1;1;0;0;1;0
+40943;20575;1;150;94.0;90;60;1;1;0;0;0;0
+40944;17473;2;173;79.0;130;90;1;1;0;0;0;1
+40945;16099;2;180;75.0;120;80;1;1;0;0;0;0
+40946;18913;1;162;90.0;120;90;1;1;0;0;1;1
+40948;16840;1;165;69.0;90;60;1;1;0;0;1;0
+40949;22548;1;149;62.0;140;90;1;1;0;0;1;1
+40950;20421;2;165;70.0;120;90;3;1;1;0;1;0
+40954;23322;1;169;87.0;140;90;1;1;0;0;0;1
+40956;18303;1;153;69.0;140;100;1;1;0;0;1;1
+40958;18276;2;172;95.0;130;90;1;1;1;0;1;1
+40960;16726;1;160;71.0;140;90;1;1;0;0;1;1
+40961;21867;1;160;84.0;140;90;3;3;0;0;1;1
+40963;22683;2;158;52.0;110;70;1;1;0;0;1;1
+40965;21352;1;167;60.0;120;79;1;1;0;0;0;1
+40966;22429;1;159;86.0;120;70;1;1;0;0;1;1
+40967;21790;1;165;68.0;120;80;1;1;0;0;1;1
+40971;21887;1;163;82.0;120;80;2;1;0;0;0;1
+40972;21789;1;175;70.0;120;80;1;1;0;0;1;0
+40973;19169;1;155;51.0;110;70;3;3;0;0;1;0
+40974;17569;1;157;56.0;120;80;1;1;0;0;1;0
+40975;21313;2;150;55.0;110;80;1;1;0;0;1;0
+40976;18426;1;157;49.0;110;70;1;1;0;0;0;0
+40977;15304;1;153;74.0;140;90;1;1;0;0;1;1
+40979;22493;1;151;92.0;140;90;2;1;0;0;0;1
+40980;22442;2;176;105.0;140;90;1;1;0;0;1;1
+40981;18252;1;157;64.0;120;70;1;1;0;0;1;0
+40982;21277;1;160;75.0;130;80;1;1;0;0;1;0
+40983;19749;1;153;60.0;140;80;1;1;0;0;1;1
+40984;14355;1;160;90.0;150;90;1;1;0;0;1;1
+40986;19678;2;183;89.0;160;100;1;1;1;0;1;0
+40987;18484;1;167;83.0;160;100;1;1;0;0;1;1
+40988;15213;2;165;70.0;130;75;1;1;0;0;1;1
+40989;19228;1;165;97.0;130;70;3;3;0;0;1;1
+40992;14568;2;178;63.0;120;80;1;1;0;0;1;0
+40993;22064;1;159;51.0;100;60;1;1;0;0;1;0
+40994;14424;2;173;105.0;120;80;2;1;0;0;1;0
+40995;15399;2;167;69.0;120;80;1;1;0;0;1;1
+40996;16051;1;161;54.0;110;70;1;1;0;0;1;0
+40997;20998;1;161;102.0;140;1000;1;1;0;0;0;1
+40998;15822;1;166;90.0;100;70;1;2;0;0;1;0
+40999;22668;2;168;65.0;110;70;1;1;0;0;1;1
+41000;15205;1;157;60.0;160;100;1;1;0;0;1;1
+41001;21715;2;161;54.0;110;70;1;1;0;0;1;0
+41002;17581;1;168;85.0;140;90;3;1;0;0;1;1
+41003;15994;1;161;87.0;130;80;1;1;0;1;1;1
+41005;19069;1;167;69.0;120;80;1;1;0;0;0;0
+41006;15983;1;162;61.0;150;80;3;1;0;0;1;1
+41009;21195;1;168;75.0;120;80;1;1;0;0;1;0
+41010;19679;1;163;96.0;150;90;1;1;0;0;0;1
+41011;19849;1;159;82.0;120;80;1;1;0;0;1;1
+41012;18873;2;162;56.0;110;80;1;1;0;0;1;0
+41014;21206;1;156;57.0;160;100;1;1;0;0;1;1
+41016;22790;2;185;86.0;120;80;1;1;0;0;0;1
+41018;18236;1;165;58.0;120;80;1;1;0;0;1;0
+41019;20264;1;149;68.0;120;90;1;1;0;0;1;1
+41021;22800;2;168;70.0;120;80;1;1;0;0;1;1
+41023;21102;1;168;66.0;120;80;1;1;0;0;1;0
+41025;21841;1;158;86.0;160;1000;3;3;0;0;1;1
+41026;14567;1;164;62.0;120;80;1;1;0;0;1;0
+41028;17499;1;160;52.0;90;60;1;1;0;0;1;0
+41029;20732;1;160;60.0;120;80;3;3;0;0;1;1
+41030;16998;1;170;68.0;120;80;1;1;1;0;1;1
+41031;22690;2;184;113.0;130;80;1;1;0;0;1;0
+41033;22017;1;157;74.0;130;80;1;1;0;0;1;0
+41034;17286;1;153;49.0;100;70;1;1;0;0;1;0
+41035;17481;1;159;70.0;100;80;2;1;0;0;1;0
+41036;19744;1;165;79.0;100;70;1;1;0;0;1;1
+41037;20376;1;164;70.0;110;70;2;1;0;0;1;0
+41038;23175;1;156;55.0;115;70;1;1;0;0;1;0
+41039;16903;2;168;75.0;170;90;1;1;0;0;1;1
+41040;17555;1;165;85.0;120;80;1;1;0;0;1;0
+41042;21988;2;167;64.0;170;100;3;1;0;0;1;1
+41043;23379;2;170;73.0;120;80;1;1;0;0;1;0
+41044;18237;2;170;85.0;120;90;1;1;0;0;0;0
+41045;18915;1;156;60.0;120;80;1;1;0;0;1;0
+41046;17389;1;162;68.0;120;80;3;3;0;0;1;1
+41048;15367;2;169;92.0;130;90;1;3;0;0;0;1
+41049;22023;1;165;84.0;130;90;3;1;0;0;1;0
+41050;20236;1;167;78.0;130;80;1;1;0;0;1;1
+41053;19214;1;163;64.0;120;80;1;1;0;0;1;0
+41054;17809;2;160;66.0;140;90;1;1;0;0;0;1
+41055;23455;1;166;92.0;140;90;1;1;0;0;1;1
+41056;21384;2;170;72.0;120;80;1;1;0;0;1;0
+41059;21904;2;157;80.0;170;90;1;1;0;0;1;1
+41061;19100;2;162;68.0;140;80;2;1;0;0;0;1
+41062;18125;1;150;67.0;140;90;3;1;0;0;1;0
+41063;21323;1;165;85.0;110;80;2;1;0;0;1;0
+41064;19787;1;169;63.0;120;70;1;1;0;0;1;1
+41066;21086;2;180;148.0;160;90;3;1;1;0;1;1
+41067;22620;1;161;73.0;170;120;1;1;0;0;1;1
+41068;17542;1;156;62.0;120;80;2;1;0;1;1;0
+41069;23090;1;163;76.0;130;80;3;2;0;0;1;1
+41070;16518;1;162;61.0;113;68;2;1;0;0;1;0
+41071;22762;2;160;60.0;120;80;1;1;0;0;1;0
+41072;22449;1;148;58.0;120;80;3;2;0;0;1;1
+41073;20432;2;171;71.0;120;80;1;1;0;0;1;0
+41074;16552;1;155;93.0;150;100;1;1;0;0;1;1
+41075;19747;1;91;55.0;140;90;1;1;0;0;1;1
+41076;23187;2;168;82.0;120;80;2;2;0;0;1;1
+41080;19667;1;169;69.0;120;80;1;1;0;0;1;0
+41081;18771;1;160;56.0;130;80;2;2;0;0;0;0
+41082;18295;1;170;75.0;150;80;1;1;0;0;1;1
+41083;19676;1;139;61.0;120;40;1;1;0;0;1;0
+41084;20009;1;160;55.0;120;80;1;1;0;0;1;0
+41086;19772;1;167;69.0;120;80;1;1;0;0;1;0
+41087;22062;1;167;78.0;120;80;1;1;0;0;1;1
+41089;19787;2;170;70.0;130;80;1;1;0;0;1;0
+41091;21228;2;158;63.0;150;80;1;1;0;0;1;1
+41092;22678;1;159;75.0;120;80;1;3;0;1;1;0
+41093;14933;1;165;75.0;100;70;1;1;0;1;1;0
+41094;18058;2;158;54.0;110;70;1;1;0;0;1;0
+41096;20629;1;154;71.0;120;70;1;1;0;0;1;0
+41097;20544;1;146;57.0;110;70;1;1;0;0;1;0
+41098;21841;1;158;58.0;130;80;1;1;0;0;1;1
+41099;21230;2;160;88.0;130;90;2;1;0;0;1;1
+41101;14396;2;168;72.0;120;70;1;1;0;1;1;0
+41104;17377;1;170;77.0;120;79;2;1;0;0;1;0
+41105;15227;1;155;65.0;120;80;1;1;0;1;1;0
+41106;21743;1;160;60.0;120;80;1;1;0;0;1;0
+41108;22646;2;165;52.0;140;90;1;1;0;0;1;1
+41109;17330;1;156;58.0;90;70;1;1;0;0;0;0
+41110;21911;1;165;72.0;130;80;1;1;0;0;1;1
+41111;20591;1;165;84.0;150;90;1;2;0;0;1;1
+41114;19040;1;167;70.0;120;70;1;1;0;0;1;0
+41115;15927;2;172;78.0;160;100;1;1;0;0;0;1
+41117;18124;2;165;72.0;110;70;1;1;0;0;1;0
+41119;21346;2;175;86.0;130;70;1;1;0;0;1;0
+41121;23232;1;163;77.0;160;80;1;1;0;0;1;1
+41122;15445;1;159;65.0;110;70;1;1;0;0;1;0
+41123;23357;2;164;68.0;140;90;3;1;1;0;1;1
+41124;17275;1;160;74.0;120;80;1;1;0;0;1;0
+41125;14440;2;185;95.0;120;70;1;1;0;0;1;0
+41126;15305;2;158;58.0;110;80;1;1;1;0;1;0
+41127;20243;1;170;72.0;120;80;1;1;0;0;0;0
+41128;23409;1;153;92.0;140;90;2;2;0;0;1;1
+41129;18689;2;172;61.0;110;70;1;1;0;0;1;0
+41130;19750;1;170;71.0;90;60;2;2;0;0;1;0
+41131;23576;1;185;95.0;130;80;2;2;0;0;0;1
+41133;17323;1;163;61.0;120;80;1;1;0;0;1;0
+41134;22573;2;170;70.0;110;70;3;3;0;0;1;1
+41137;21042;1;168;113.0;160;90;3;1;0;0;0;1
+41138;20994;2;172;75.0;150;100;1;1;1;0;1;1
+41139;21274;2;175;70.0;150;80;1;1;0;0;1;1
+41140;23234;2;171;75.0;130;80;1;1;0;0;0;1
+41141;20512;1;152;72.0;110;70;1;1;0;0;1;0
+41142;21806;2;172;85.0;130;80;3;3;0;0;0;1
+41143;14680;2;176;79.0;120;80;1;1;0;0;0;0
+41144;23212;1;165;70.0;120;80;1;1;0;0;1;1
+41145;18328;1;171;75.0;130;90;1;1;0;0;0;1
+41146;16046;1;159;62.0;100;80;1;1;0;0;1;1
+41147;22632;1;149;71.0;140;90;3;3;0;0;1;0
+41148;16071;2;170;70.0;110;70;1;1;0;0;1;0
+41149;14657;2;161;56.0;120;70;1;1;0;0;1;0
+41151;20393;2;170;78.0;150;80;1;1;0;1;1;0
+41153;19010;1;150;69.0;112;72;2;1;1;0;0;0
+41155;23599;1;153;59.0;120;80;2;1;0;0;1;0
+41157;16826;2;179;83.0;120;80;1;1;0;0;1;0
+41158;18094;1;160;90.0;140;90;1;1;0;0;1;1
+41160;18310;2;176;82.0;115;70;2;1;1;0;1;0
+41161;21999;1;149;57.0;160;90;3;3;0;0;0;1
+41163;22591;1;157;81.0;125;80;3;3;0;0;1;1
+41165;19806;1;164;72.0;140;90;1;1;0;0;1;1
+41166;17629;1;167;70.0;120;80;1;1;0;0;1;0
+41168;23439;2;176;108.0;160;110;2;2;0;0;1;1
+41170;21007;1;162;88.0;130;80;1;1;0;0;1;1
+41172;23133;1;154;70.0;120;80;2;2;0;0;1;1
+41173;17370;1;159;92.0;130;70;1;1;0;0;1;0
+41174;21764;1;158;90.0;140;100;2;2;0;0;1;1
+41176;15339;2;174;68.0;120;80;1;1;1;0;1;0
+41179;22702;2;162;75.0;150;90;1;1;0;0;1;1
+41180;19689;1;167;71.0;120;80;1;1;0;0;1;0
+41181;21235;1;160;77.0;110;90;1;1;0;0;1;0
+41182;16206;1;162;53.0;120;80;1;1;0;0;1;0
+41184;21095;1;153;51.0;110;70;1;1;0;0;1;0
+41185;21872;1;168;57.0;120;80;1;1;0;0;1;0
+41186;21793;1;157;97.0;140;98;1;1;0;0;0;1
+41188;23579;1;154;48.0;120;80;1;1;0;0;1;1
+41189;20272;1;140;55.0;120;80;1;1;0;0;0;1
+41190;19664;2;169;70.0;110;89;1;1;0;0;0;0
+41191;15873;1;157;50.0;115;75;1;1;0;0;0;0
+41193;14727;1;165;59.0;110;70;1;2;0;0;1;0
+41194;18804;1;165;69.0;130;60;1;1;0;0;0;0
+41195;21310;1;152;80.0;140;90;1;1;0;0;1;1
+41196;19233;2;158;61.0;130;90;3;3;1;1;1;0
+41198;19793;1;156;72.0;130;90;1;3;0;0;0;0
+41199;19119;1;155;83.0;115;79;1;1;0;0;0;0
+41202;22711;1;155;49.0;120;80;3;3;0;0;0;0
+41204;16789;1;158;67.0;170;100;1;1;0;0;1;1
+41206;21664;1;160;78.0;160;90;3;1;0;0;1;0
+41207;22632;1;147;82.0;160;80;1;1;0;0;1;1
+41209;19754;2;172;75.0;150;100;3;1;1;1;1;1
+41211;22801;1;158;65.0;140;80;1;1;0;0;1;1
+41212;19592;1;164;72.0;160;75;1;1;0;0;1;0
+41213;21868;1;156;87.0;120;80;2;1;0;0;0;1
+41214;18379;1;165;68.0;110;80;2;1;0;0;1;0
+41216;14661;1;160;43.0;100;80;1;1;0;0;1;0
+41217;15249;1;156;48.0;110;80;1;2;0;0;0;0
+41219;22109;1;162;129.0;130;80;3;1;0;0;1;1
+41220;15432;1;157;60.0;110;70;1;1;0;0;0;1
+41221;14545;1;145;52.0;120;80;2;1;0;0;1;0
+41223;20284;1;164;67.0;120;70;1;1;0;0;1;0
+41224;16959;1;162;63.0;120;80;1;1;0;0;1;1
+41225;21950;1;166;75.0;150;100;1;1;0;0;1;1
+41226;18685;1;158;70.0;160;90;3;1;0;0;1;1
+41227;22608;1;161;78.0;120;80;1;1;0;0;1;0
+41228;17517;2;169;100.0;140;95;1;1;0;0;1;0
+41229;23623;1;165;85.0;120;80;1;1;0;0;1;0
+41230;19881;1;154;62.0;120;80;1;1;0;0;1;1
+41234;21646;2;167;77.0;150;90;1;1;0;0;1;1
+41235;19581;1;163;70.0;135;85;1;1;0;0;0;0
+41237;18798;1;174;69.0;120;90;3;1;0;0;1;1
+41238;15030;1;163;88.0;120;80;2;1;0;0;1;0
+41239;23279;1;165;99.0;135;80;3;1;0;0;1;1
+41240;17312;1;143;70.0;150;90;1;1;0;0;1;1
+41241;18337;1;149;73.0;110;70;1;1;0;0;1;0
+41242;18840;2;182;93.0;130;90;1;1;0;0;1;1
+41243;21068;1;165;63.0;130;80;2;1;0;0;1;0
+41244;19152;1;160;58.0;100;70;1;1;0;0;0;0
+41245;21128;2;172;82.0;120;80;1;2;1;0;1;1
+41246;18052;2;176;84.0;110;80;1;1;0;1;0;0
+41247;21225;1;153;71.0;110;70;2;1;0;0;1;0
+41248;14687;2;164;67.0;110;80;1;1;1;1;1;0
+41249;19688;1;160;63.0;110;80;1;1;0;0;0;1
+41250;16659;2;163;63.0;150;90;1;1;0;0;1;1
+41251;16341;1;157;64.0;110;70;1;1;0;0;1;0
+41252;19641;1;165;76.0;120;80;1;1;0;0;1;1
+41253;21511;1;165;66.0;120;80;1;1;0;0;0;0
+41254;14491;1;160;75.0;110;70;1;1;0;0;1;1
+41255;20700;1;160;67.0;120;80;1;1;0;0;1;1
+41256;16895;1;172;80.0;100;60;1;1;0;0;1;0
+41257;15868;1;158;83.0;160;100;1;1;0;0;1;1
+41259;18096;1;162;80.0;110;80;1;1;0;0;1;0
+41260;14845;2;170;74.0;120;80;1;1;0;0;1;1
+41261;20245;2;160;76.0;120;90;1;1;0;0;0;1
+41262;19688;1;152;59.0;110;70;1;1;0;0;1;1
+41263;22585;1;167;78.0;130;90;1;1;0;0;1;1
+41264;21387;2;164;49.0;120;70;1;1;0;0;1;1
+41265;17490;1;153;64.0;110;70;2;1;0;0;1;1
+41266;21265;2;157;65.0;120;60;1;1;0;0;0;1
+41267;18807;1;152;94.0;160;100;1;1;0;0;1;0
+41268;18085;1;162;67.0;115;75;1;1;1;0;1;0
+41269;15199;2;175;99.0;160;1000;2;2;0;0;1;1
+41270;17769;2;180;70.0;120;70;1;1;0;0;1;0
+41271;23385;2;174;64.0;110;90;1;1;0;0;0;0
+41272;19771;1;157;63.0;130;90;1;1;0;0;1;0
+41273;17529;1;165;68.0;120;80;1;1;0;0;1;1
+41274;22831;1;159;56.0;120;80;1;1;0;0;1;1
+41275;15981;2;170;94.0;128;79;3;3;0;1;1;1
+41276;19109;1;160;95.0;120;70;1;1;0;0;1;1
+41277;21286;1;163;67.0;110;90;1;1;0;0;1;1
+41278;23322;2;164;95.0;120;70;1;1;0;0;1;1
+41280;21086;2;181;88.0;140;90;3;2;1;1;1;1
+41282;21910;1;165;87.0;120;80;1;1;0;0;1;0
+41283;21239;1;164;62.0;120;80;1;1;0;0;1;1
+41284;21097;1;159;54.0;115;80;2;1;0;1;1;0
+41286;22609;1;160;84.0;150;90;1;3;0;0;1;1
+41287;18283;2;165;69.0;140;90;2;1;0;0;1;1
+41289;18961;1;110;105.0;140;90;2;1;0;0;1;1
+41290;19706;2;163;70.0;120;80;1;1;0;0;1;0
+41291;22522;1;156;76.0;120;80;1;1;0;0;1;1
+41292;21984;2;158;69.0;120;80;2;1;1;1;1;0
+41293;20296;1;149;49.0;120;80;1;1;0;0;1;0
+41294;21093;1;158;66.0;140;100;3;3;0;0;1;1
+41296;19969;1;169;65.0;120;70;2;2;0;0;0;0
+41297;21003;2;166;78.0;160;80;1;1;1;0;1;1
+41300;18489;1;165;58.0;120;80;3;3;0;0;0;1
+41301;16121;1;169;60.0;120;80;3;1;0;0;1;1
+41302;21882;2;170;82.0;120;80;1;1;0;0;1;0
+41303;19563;1;178;78.0;120;80;1;1;0;0;1;0
+41304;20420;1;148;69.0;120;80;2;1;0;0;0;0
+41306;20459;1;173;86.0;130;90;1;1;0;0;1;1
+41307;19812;1;178;67.0;120;70;1;1;0;0;1;1
+41309;23472;1;165;78.0;140;90;2;1;0;0;1;1
+41310;16876;1;158;77.0;120;80;3;2;0;0;1;1
+41311;20213;1;155;103.0;110;70;2;1;0;0;1;1
+41312;18944;2;176;76.0;120;80;2;1;1;1;1;1
+41315;19717;1;168;79.0;110;80;1;1;0;0;1;0
+41316;21127;1;163;69.0;120;80;1;1;0;0;1;1
+41321;19600;1;159;61.0;150;95;2;1;0;0;1;1
+41322;21787;1;165;92.0;130;80;1;1;0;0;0;1
+41324;19125;1;169;75.0;120;70;1;1;0;0;1;0
+41325;21148;2;164;87.0;130;90;1;1;0;0;1;0
+41327;20205;1;151;51.0;160;90;1;1;0;0;1;1
+41328;19177;1;165;65.0;120;70;1;1;0;0;1;1
+41329;15961;1;152;92.0;140;90;1;1;0;0;1;1
+41331;18784;1;162;82.0;180;100;1;1;0;0;0;1
+41332;21937;1;150;92.0;140;80;1;1;0;0;1;1
+41333;17447;2;176;67.0;120;70;1;1;0;0;1;0
+41334;18134;2;176;74.0;120;80;1;1;0;1;1;1
+41337;15265;1;162;76.0;140;90;1;1;0;1;0;1
+41338;21006;1;161;74.0;140;89;1;1;0;0;1;1
+41339;15291;2;171;78.0;120;80;1;1;1;0;1;0
+41341;23428;1;163;68.0;120;80;3;1;0;0;1;1
+41345;20949;1;164;86.0;140;90;1;1;0;0;1;1
+41346;19679;1;163;76.0;120;80;1;1;0;0;1;0
+41349;21894;2;155;55.0;130;90;1;1;0;0;1;0
+41351;16651;1;167;64.0;120;80;1;1;0;0;1;0
+41353;22570;1;150;49.0;110;70;1;1;0;0;1;1
+41354;21904;1;158;62.0;115;80;1;1;0;0;1;0
+41355;22672;2;168;75.0;140;90;1;2;0;0;1;1
+41356;18206;1;167;64.0;120;80;1;1;0;0;1;0
+41357;14520;2;163;67.0;110;70;1;1;0;0;1;0
+41358;18106;2;174;77.0;130;80;2;1;0;0;1;0
+41359;22451;2;172;69.0;120;80;1;1;0;0;1;0
+41361;21750;1;158;55.0;170;1000;1;1;0;0;1;1
+41362;20541;2;180;85.0;120;80;1;1;1;0;1;0
+41363;19164;1;164;76.0;120;80;3;1;0;0;1;1
+41364;18230;1;160;60.0;120;60;1;1;0;0;1;0
+41365;20123;1;147;57.0;130;90;2;1;0;0;1;1
+41366;19737;1;160;71.5;120;70;1;1;0;0;1;0
+41367;20625;1;153;72.0;140;90;3;1;0;0;1;1
+41368;19010;1;164;86.0;155;90;3;1;0;0;0;0
+41369;19044;1;163;70.0;120;80;3;3;0;0;0;0
+41370;22602;1;158;92.0;130;90;2;1;0;0;1;0
+41371;22626;1;154;93.0;130;1100;1;1;0;0;0;1
+41372;20283;1;160;69.0;120;80;2;1;0;0;1;1
+41373;18864;1;152;59.0;140;90;1;1;0;0;0;1
+41374;18991;2;164;55.0;110;70;1;1;1;1;1;0
+41376;23592;1;167;62.0;130;70;2;1;0;0;1;1
+41377;22143;1;147;89.0;130;80;1;1;0;0;1;1
+41378;23283;1;157;70.0;180;90;1;1;0;0;1;1
+41380;15924;2;165;62.0;110;70;2;1;0;0;1;0
+41382;18363;1;173;80.0;140;80;1;1;0;0;1;1
+41383;19671;1;163;68.0;110;70;2;1;0;0;0;0
+41385;17222;1;158;102.0;120;80;2;2;0;0;1;0
+41386;22030;1;156;96.0;200;100;2;2;0;0;1;1
+41387;22450;2;165;68.0;120;70;2;1;0;0;1;1
+41391;19761;1;159;103.0;160;100;1;1;0;0;1;1
+41392;21108;1;148;78.0;140;90;3;3;0;0;1;1
+41393;16073;1;149;49.0;110;70;1;1;0;0;1;0
+41394;21892;1;175;99.0;130;100;1;1;0;0;1;1
+41395;18512;1;153;79.0;120;80;1;1;0;0;1;1
+41396;20975;1;168;65.0;140;80;1;1;0;0;1;1
+41397;19571;2;181;92.0;180;100;1;2;0;0;1;1
+41398;19752;2;163;62.0;120;80;1;1;0;0;1;1
+41399;18892;1;136;64.0;130;80;1;1;0;0;0;0
+41400;21141;2;161;67.0;130;80;1;2;1;0;1;0
+41401;19434;2;159;53.0;120;60;1;1;1;1;1;0
+41402;23174;2;165;70.0;120;80;1;1;0;0;0;1
+41403;22588;2;168;96.0;140;100;3;3;0;0;0;1
+41408;21284;2;165;60.0;120;80;3;1;1;0;1;0
+41409;22624;1;164;90.0;110;80;1;1;0;0;1;0
+41411;15330;1;170;64.0;130;80;2;1;0;0;1;1
+41413;17386;1;163;50.0;120;80;1;1;0;0;0;0
+41414;20340;1;170;76.0;150;90;1;1;0;0;1;1
+41415;19610;1;156;76.0;130;70;1;1;0;0;1;0
+41416;18235;2;167;78.0;150;100;2;2;0;0;1;1
+41419;21031;1;152;80.0;190;130;3;2;0;0;0;1
+41421;18099;1;168;65.0;120;90;1;1;0;0;0;0
+41422;16092;1;160;87.0;120;80;1;2;0;0;0;1
+41423;21863;1;165;92.0;140;90;1;1;0;0;0;1
+41424;17793;1;166;60.0;110;70;1;1;0;0;1;0
+41429;18879;1;163;99.0;135;90;1;1;0;0;1;1
+41430;18874;2;187;84.0;120;80;1;1;0;0;1;0
+41431;20305;1;173;78.0;120;80;1;1;0;0;1;0
+41433;20364;1;160;65.0;120;80;1;3;0;0;0;0
+41435;22147;1;158;58.0;110;80;1;1;0;0;1;0
+41436;18210;1;160;60.0;120;80;1;1;0;0;1;0
+41437;19917;1;150;83.0;110;60;2;1;0;0;0;0
+41438;15346;2;166;65.0;120;80;1;1;0;0;1;1
+41439;21088;1;153;50.0;140;90;1;1;0;0;1;1
+41440;19706;2;170;68.0;120;80;2;1;0;0;1;1
+41441;21085;2;182;102.0;140;90;1;1;1;0;1;1
+41442;18980;1;158;75.0;150;1000;3;1;0;0;1;1
+41444;23492;2;160;82.0;140;80;3;1;1;0;1;1
+41445;18953;1;164;120.0;130;70;1;1;0;0;1;0
+41446;14618;2;173;54.0;90;60;3;3;0;0;1;0
+41447;19756;2;159;89.0;130;80;1;1;0;0;0;0
+41448;21793;1;162;64.0;140;90;3;1;0;0;0;1
+41449;21236;1;146;52.0;120;80;1;1;0;0;1;1
+41450;22423;1;154;113.0;110;70;1;1;0;0;1;0
+41451;21005;2;180;130.0;140;80;1;1;1;0;1;1
+41452;22027;1;160;50.0;120;80;1;1;0;0;0;0
+41454;16118;1;156;45.0;150;80;2;1;0;0;1;1
+41455;20541;2;165;65.0;110;70;1;1;0;0;1;0
+41456;21140;1;163;90.0;140;90;3;1;0;0;1;1
+41457;20296;1;163;65.0;120;80;2;1;0;0;1;0
+41458;18112;1;168;74.0;130;80;1;1;0;0;1;1
+41459;16619;1;169;72.0;120;80;1;1;0;0;1;1
+41461;18945;1;154;105.0;160;100;1;1;0;0;1;1
+41462;19871;2;170;88.0;120;80;1;1;1;1;1;0
+41463;16042;1;168;69.0;150;80;2;1;0;0;0;1
+41464;21897;1;153;70.0;120;80;1;1;0;0;1;1
+41467;21719;1;164;72.0;140;90;3;3;0;0;1;1
+41470;19040;1;160;72.0;140;90;3;3;0;0;1;0
+41472;18181;1;165;88.0;120;70;1;1;0;0;1;1
+41473;16028;1;154;44.0;110;70;1;1;0;0;1;0
+41474;19200;1;164;68.0;140;90;2;1;0;0;1;1
+41475;20379;1;164;83.0;130;65;1;1;0;0;0;1
+41476;23178;1;161;63.0;130;80;1;2;0;0;1;0
+41478;16301;1;163;69.0;120;90;1;1;0;0;1;1
+41479;22516;1;165;56.0;120;80;1;1;0;0;1;0
+41482;16651;2;174;71.0;120;80;1;1;1;0;1;0
+41483;16545;2;168;72.0;150;90;1;1;0;0;1;1
+41484;21170;1;152;44.0;140;80;3;1;0;0;1;1
+41486;20213;2;168;75.0;90;70;1;1;0;0;0;1
+41488;14429;2;178;80.0;120;80;1;2;0;0;1;1
+41490;18852;2;170;75.0;120;80;1;1;1;1;1;0
+41491;18507;2;174;89.0;130;90;1;1;0;0;0;0
+41492;22443;1;154;54.0;100;60;1;1;0;0;1;0
+41493;20488;1;169;70.0;120;80;1;1;0;0;0;0
+41495;18235;1;158;98.0;110;70;1;1;0;0;1;0
+41498;16156;1;160;75.0;120;80;1;1;0;0;1;0
+41499;21856;2;167;90.0;140;90;3;3;0;0;1;1
+41501;19543;1;162;66.0;110;70;1;1;0;0;1;0
+41504;18218;1;165;99.0;130;80;1;1;0;0;0;0
+41505;20515;1;164;66.0;120;80;1;1;0;0;1;1
+41506;21779;2;172;87.0;130;80;1;1;1;0;1;0
+41508;20512;2;175;76.0;140;90;1;2;0;0;1;1
+41509;16060;1;153;54.0;130;90;1;1;0;0;1;1
+41510;20535;2;170;88.0;150;100;1;1;1;0;1;1
+41513;18997;1;165;95.0;110;70;1;1;0;0;1;0
+41514;15941;1;165;60.0;120;80;1;1;0;0;1;1
+41515;16787;2;180;84.0;120;80;1;1;0;0;1;0
+41516;21199;1;162;50.0;130;90;2;1;0;0;1;0
+41517;21635;1;158;69.0;150;100;1;1;0;0;0;0
+41518;18294;1;156;56.0;120;80;1;1;0;0;0;1
+41519;22761;2;170;74.0;120;80;1;1;0;0;1;1
+41521;22720;2;165;62.0;120;80;1;1;0;0;0;1
+41522;23340;2;170;86.0;160;100;1;1;0;0;1;0
+41523;18361;1;144;66.0;130;100;1;1;0;1;0;0
+41524;14447;1;160;74.0;90;60;1;1;0;0;1;0
+41525;18415;1;165;69.0;130;90;1;1;0;0;0;1
+41526;17363;2;174;58.0;120;60;1;1;0;0;1;0
+41528;18235;1;152;67.0;140;80;1;1;0;0;1;1
+41530;21137;1;160;85.0;120;80;3;1;0;0;1;1
+41531;21393;2;184;72.0;120;90;1;1;0;0;0;0
+41532;16557;1;162;65.0;110;70;1;1;0;0;1;0
+41533;23165;1;158;67.0;120;80;1;1;0;0;1;0
+41534;14729;2;180;164.0;120;80;2;3;0;0;1;0
+41535;23347;1;168;59.0;130;80;1;3;0;0;0;1
+41537;15328;2;170;65.0;140;90;2;1;0;0;1;0
+41538;21176;2;159;68.0;150;110;1;1;0;0;1;1
+41539;18152;1;165;80.0;120;80;1;1;0;0;1;0
+41540;19241;2;176;72.0;120;80;1;1;1;1;1;0
+41541;16954;1;165;68.0;100;70;1;1;0;0;0;0
+41542;21250;2;178;96.0;120;80;3;3;0;0;1;1
+41543;19607;2;171;79.0;180;100;1;1;1;0;1;1
+41544;18341;2;170;96.0;140;80;1;1;0;0;1;1
+41545;16737;2;169;71.0;115;70;1;1;0;0;1;0
+41546;18852;2;176;100.0;170;100;1;1;0;0;1;1
+41547;20535;1;147;61.0;120;80;1;1;0;0;1;1
+41550;15471;1;163;78.0;130;80;1;1;0;0;0;0
+41553;16843;1;164;67.0;120;80;1;1;0;0;1;0
+41554;22332;1;147;100.0;140;90;3;2;0;0;0;1
+41555;23452;2;155;50.0;120;70;2;1;0;0;1;1
+41556;19609;2;159;57.0;110;80;3;1;1;1;0;0
+41557;21331;2;187;78.0;120;80;1;1;0;0;1;1
+41558;23234;1;156;62.0;120;80;1;1;0;0;1;1
+41559;14360;1;152;99.0;90;60;1;1;0;0;0;0
+41561;18049;2;165;68.0;120;80;1;1;0;0;1;1
+41564;15188;1;158;68.0;90;60;1;1;0;0;0;0
+41566;19135;2;155;55.0;120;80;1;1;0;0;1;0
+41567;21222;1;156;65.0;120;80;1;1;0;0;0;1
+41569;15425;1;172;70.0;110;70;1;1;0;0;0;0
+41571;16577;1;165;72.0;130;80;2;1;0;0;1;0
+41572;16700;1;158;98.0;150;80;1;1;0;1;1;0
+41573;19040;1;160;86.0;160;90;2;1;0;0;0;1
+41575;20943;2;161;83.0;140;80;1;3;1;0;1;1
+41576;21965;1;165;69.0;150;90;1;1;0;0;1;0
+41577;17392;1;166;88.0;140;80;1;2;0;0;1;1
+41579;18085;2;165;57.0;130;70;1;3;1;0;1;0
+41581;15935;1;168;86.0;160;100;1;1;0;0;1;1
+41582;15372;2;173;56.0;110;70;1;1;0;0;1;0
+41583;22589;1;170;78.0;130;80;1;1;0;0;1;1
+41585;20424;1;162;90.0;120;100;1;1;0;0;1;1
+41586;21661;1;155;70.0;170;100;1;1;0;0;1;1
+41587;18126;2;180;78.0;120;80;1;1;0;0;1;0
+41588;16558;2;168;70.0;110;70;1;1;0;0;1;0
+41591;21077;2;183;83.0;120;80;3;1;0;0;1;1
+41592;19747;2;175;70.0;130;90;3;1;0;0;1;1
+41593;18756;2;166;80.0;120;80;1;1;1;1;1;0
+41594;22487;1;157;78.0;180;100;1;1;0;0;1;0
+41595;19043;1;165;102.0;140;80;3;1;0;0;1;1
+41596;19893;1;166;74.0;140;90;2;1;0;0;1;1
+41598;23191;2;182;83.0;140;80;1;1;0;1;1;1
+41599;19777;1;169;72.0;110;70;1;1;0;0;1;0
+41600;18085;1;156;89.0;130;80;2;1;0;0;1;0
+41601;18724;1;161;68.0;110;70;2;3;0;0;1;0
+41602;20598;1;157;72.0;120;80;1;1;0;0;1;1
+41603;16989;1;169;74.0;120;80;1;2;0;0;1;0
+41604;20584;1;172;86.0;130;80;3;3;0;0;1;0
+41608;15984;1;161;68.0;100;70;1;1;0;0;1;0
+41610;18907;2;166;72.0;120;80;1;1;0;0;1;0
+41612;23397;2;165;85.0;160;1100;3;3;0;0;1;1
+41613;19726;1;155;90.0;140;90;2;1;0;1;1;1
+41615;14569;2;176;97.0;130;80;3;1;1;1;1;1
+41616;18220;1;162;61.0;130;70;1;1;0;0;0;1
+41617;15222;1;162;79.0;120;80;1;1;0;0;1;0
+41619;15918;1;174;74.0;110;80;1;1;0;0;1;0
+41622;19823;1;168;68.0;120;80;3;3;0;0;1;0
+41623;21916;2;176;93.0;130;80;3;1;0;0;0;1
+41625;18250;1;157;79.0;140;80;2;1;0;0;0;1
+41626;18902;1;170;90.0;120;90;1;1;0;0;1;0
+41627;21153;1;163;63.0;120;80;1;1;0;0;1;0
+41628;17696;2;170;70.0;120;80;1;1;0;0;1;0
+41629;18999;2;179;84.0;150;110;2;1;1;0;1;1
+41630;17785;2;169;75.0;120;80;1;1;1;1;1;0
+41632;21813;2;182;124.0;160;90;1;1;0;0;1;1
+41633;18485;1;167;64.0;120;80;1;1;0;0;1;0
+41634;21914;1;162;99.0;171;100;1;2;0;0;1;1
+41637;19710;2;161;82.0;140;90;2;1;1;0;0;0
+41638;21290;1;170;71.0;120;60;2;1;0;0;1;0
+41640;18361;1;159;81.0;200;120;1;1;0;0;0;1
+41641;20391;1;148;83.0;120;90;3;3;0;0;1;1
+41642;21812;2;198;90.0;130;90;1;1;0;0;1;1
+41643;19628;1;163;110.0;120;80;2;1;0;0;1;1
+41644;19541;1;171;56.0;110;70;1;1;0;0;0;1
+41646;17506;2;165;66.0;120;69;1;1;0;0;1;0
+41647;21234;1;163;67.0;140;80;1;1;0;0;1;1
+41653;22733;2;166;88.0;190;100;1;1;0;0;1;1
+41654;19702;2;175;75.0;120;80;1;1;0;0;1;0
+41656;20467;1;165;78.0;120;80;1;1;0;0;0;1
+41657;19628;1;169;79.0;120;80;1;3;0;0;1;1
+41658;19619;1;167;68.0;120;70;1;1;0;0;1;0
+41659;16100;1;167;68.0;110;80;1;1;0;0;1;1
+41660;22097;2;161;70.0;120;80;1;1;0;0;1;1
+41661;19088;1;60;69.0;110;70;1;1;0;0;0;0
+41662;22737;2;164;67.0;160;90;1;1;0;0;1;1
+41663;21886;2;163;61.0;150;90;1;1;0;0;1;1
+41664;20559;2;181;84.0;110;80;1;1;1;1;1;0
+41665;21143;1;168;75.0;120;80;1;1;0;0;1;1
+41666;14454;1;162;52.0;110;60;1;1;0;0;0;0
+41667;22871;2;162;70.0;150;90;2;1;0;0;1;1
+41668;20389;1;168;69.0;120;80;1;1;0;0;1;0
+41669;21068;1;159;87.0;120;80;1;1;0;0;0;0
+41670;20490;1;164;71.0;120;80;1;1;0;0;1;1
+41671;19191;1;160;65.0;120;80;1;1;0;0;1;0
+41672;16790;1;172;69.0;130;90;2;1;0;1;1;0
+41673;16898;2;167;68.0;110;70;1;1;0;0;0;0
+41674;15300;1;155;52.0;10;70;1;1;0;0;1;0
+41676;22356;2;179;72.0;120;80;1;2;0;0;1;0
+41677;21301;1;158;65.0;120;80;1;1;0;0;1;0
+41681;22108;1;176;80.0;140;90;2;1;0;0;1;1
+41682;19965;1;160;61.0;140;80;1;1;0;0;1;1
+41683;19861;1;164;88.0;130;80;1;1;0;0;1;0
+41684;19857;1;153;70.0;130;80;1;1;0;0;1;1
+41685;19737;2;168;98.0;120;80;1;2;0;1;1;1
+41687;21932;1;154;58.0;110;79;1;1;0;0;0;0
+41688;22532;1;165;68.0;130;80;1;1;0;0;1;1
+41689;14613;1;166;50.0;100;70;1;1;0;0;1;0
+41692;18121;2;180;94.0;150;100;1;1;0;0;0;1
+41694;21124;1;155;69.0;140;90;3;1;0;0;0;1
+41695;22055;2;167;78.0;120;90;2;2;0;0;1;0
+41696;14749;2;175;85.0;130;90;1;3;0;0;1;1
+41697;14750;1;162;72.0;110;70;1;1;0;0;0;0
+41698;21819;2;170;74.0;150;100;2;1;0;0;1;1
+41699;15943;1;168;59.0;90;60;1;2;0;0;1;0
+41700;17426;1;167;72.0;120;80;1;1;0;0;1;1
+41702;16093;2;156;60.0;140;90;1;1;0;0;1;1
+41703;23307;2;173;64.0;130;90;2;2;0;0;0;1
+41704;19011;2;165;58.0;150;90;1;1;0;0;0;1
+41705;16059;2;165;72.0;100;80;1;1;0;0;1;0
+41707;17443;1;159;83.0;110;70;1;1;0;0;1;0
+41708;21259;1;165;73.0;110;80;3;3;0;0;1;0
+41709;22044;1;160;60.0;120;80;1;1;0;0;1;0
+41712;14322;1;162;50.0;120;80;1;1;0;1;1;0
+41715;21477;1;160;63.0;120;80;1;1;0;0;1;0
+41720;15902;1;160;60.0;190;60;1;1;0;0;1;1
+41721;21131;1;156;71.0;120;80;1;1;0;0;1;1
+41722;20553;1;165;65.0;120;80;1;1;0;0;1;1
+41723;14924;1;170;64.0;120;80;1;1;0;0;1;1
+41724;14438;2;170;70.0;120;80;2;2;0;0;1;0
+41727;21006;2;156;70.0;120;80;1;1;0;0;1;0
+41728;22210;2;175;115.0;120;80;1;1;0;0;0;0
+41729;21308;2;165;65.0;120;70;1;1;0;0;0;1
+41732;20695;1;156;65.0;120;80;1;1;0;0;1;1
+41733;17460;1;154;80.0;160;100;1;1;0;0;1;1
+41734;23222;2;171;75.0;150;90;1;1;0;0;1;1
+41735;16699;2;160;68.0;120;80;1;1;0;0;1;0
+41737;19935;1;168;75.0;140;90;1;3;0;0;1;0
+41739;16644;1;167;75.0;120;80;1;1;0;0;1;0
+41740;18480;1;156;77.0;90;60;1;1;0;0;1;0
+41741;20305;2;170;76.0;120;80;1;1;0;0;0;1
+41742;19054;1;154;60.0;90;60;1;1;0;0;1;0
+41743;19699;2;168;75.0;120;80;2;2;1;1;1;0
+41744;14625;1;158;60.0;120;80;3;3;0;0;1;0
+41745;21915;1;169;75.0;120;80;1;1;0;0;1;0
+41747;20486;1;165;80.0;130;80;3;3;0;0;1;1
+41748;20426;1;159;86.0;120;90;1;1;0;0;1;1
+41752;18368;1;168;62.0;120;80;1;1;0;0;0;0
+41753;22665;2;166;69.0;130;80;1;1;1;1;1;1
+41755;23473;1;157;75.0;130;89;2;1;0;0;0;1
+41756;16677;1;165;67.0;90;60;1;1;0;0;1;0
+41757;18458;1;162;70.0;110;70;1;1;0;0;0;0
+41761;19764;1;156;79.0;110;80;1;2;0;0;1;0
+41762;18548;1;157;65.0;140;80;2;1;0;0;0;1
+41763;18978;1;162;68.0;120;80;1;1;0;0;1;0
+41764;14757;1;155;55.0;100;80;1;2;0;0;1;0
+41765;19265;1;169;64.0;120;80;1;1;0;0;1;0
+41766;18112;1;177;78.0;120;80;1;1;0;0;1;0
+41767;20289;2;173;97.0;120;80;1;1;0;0;1;0
+41768;22079;1;171;68.0;140;90;1;1;0;0;1;1
+41769;15331;2;170;69.0;120;80;1;1;0;0;1;0
+41770;20558;2;173;88.0;130;80;2;2;1;0;1;0
+41771;22025;1;155;84.0;130;80;1;1;0;0;1;0
+41772;16833;1;162;75.0;140;90;1;1;0;0;1;1
+41773;15279;2;168;67.0;110;69;2;1;0;0;1;0
+41774;21984;1;158;82.0;125;80;1;1;0;0;0;1
+41775;23370;1;174;65.0;120;80;1;1;0;0;1;1
+41777;19713;1;157;63.0;120;80;1;1;0;0;1;0
+41780;19826;2;176;66.0;120;80;1;1;0;0;1;0
+41781;14625;1;151;58.0;110;70;1;1;0;0;1;0
+41782;20237;2;179;70.0;110;70;2;1;1;0;0;0
+41783;21875;2;152;85.0;120;80;1;1;0;0;0;0
+41784;18389;1;165;65.0;130;80;1;1;0;0;0;0
+41785;21183;1;151;93.0;130;90;3;3;0;0;1;0
+41787;21310;1;167;70.0;130;90;1;1;0;0;0;1
+41788;21798;1;165;65.0;150;90;1;1;0;0;1;1
+41790;14634;1;165;75.0;120;80;1;1;0;0;1;1
+41791;19690;2;170;120.0;160;100;2;2;0;0;0;1
+41793;20358;2;175;81.0;140;90;1;1;0;0;0;1
+41795;23196;1;164;113.0;140;90;3;1;0;0;1;1
+41798;23378;1;157;79.0;160;90;1;3;0;0;0;1
+41799;21293;2;176;92.0;160;100;1;1;0;0;0;1
+41800;16928;1;159;65.0;110;90;1;1;0;0;0;1
+41801;17626;2;167;71.0;160;90;1;1;0;0;1;1
+41802;19611;1;175;80.0;120;80;1;1;0;0;1;0
+41807;21885;1;150;66.0;120;80;2;2;0;0;1;0
+41808;21262;1;164;82.0;120;80;1;1;0;0;1;0
+41811;17415;1;164;75.0;90;50;1;1;0;0;0;0
+41812;19963;2;166;62.0;160;90;1;1;1;0;1;1
+41813;22562;1;168;66.0;120;70;1;1;0;0;1;0
+41814;21847;1;152;65.0;170;100;2;2;0;0;0;1
+41815;21626;2;170;67.0;130;80;3;1;0;0;0;1
+41816;19843;2;175;80.0;150;89;1;1;0;0;0;1
+41817;18299;2;176;75.0;120;80;1;1;0;0;0;0
+41818;21278;2;172;68.0;100;70;2;1;1;1;1;0
+41820;22036;1;160;65.0;140;90;3;1;0;0;1;1
+41822;18062;2;167;77.0;120;90;1;1;0;0;1;0
+41823;20644;1;163;61.0;120;80;1;1;0;0;1;1
+41825;16529;1;177;77.0;130;90;1;1;0;0;1;0
+41826;20287;2;172;75.0;180;90;1;1;0;0;1;1
+41827;15936;2;164;73.0;120;80;1;1;0;0;1;0
+41831;19027;2;160;60.0;160;90;1;1;0;0;1;1
+41832;20261;1;166;78.0;140;90;1;1;0;0;1;0
+41833;20204;1;158;60.0;110;80;1;1;0;1;0;0
+41834;18990;1;165;83.0;120;80;1;1;0;0;1;0
+41835;15580;2;169;79.0;120;80;1;1;1;0;1;0
+41839;18332;1;160;77.0;120;80;1;1;0;0;1;0
+41840;21387;1;163;76.0;120;80;1;1;0;0;1;0
+41842;16799;1;167;64.0;100;70;1;1;0;0;1;0
+41847;16621;1;164;70.0;140;90;1;1;0;0;1;1
+41849;17263;1;168;74.0;120;80;1;1;0;0;1;0
+41852;17492;1;166;78.0;125;80;1;1;0;0;1;1
+41853;22655;1;161;82.0;120;80;1;2;1;0;1;1
+41854;17676;1;151;100.0;120;80;1;1;0;0;0;1
+41855;23513;1;160;72.0;150;90;1;1;0;0;1;1
+41856;23340;2;163;70.0;150;100;2;1;0;0;1;1
+41857;20444;1;165;83.0;130;70;1;1;0;0;0;1
+41859;20318;1;159;65.0;140;90;1;1;0;0;1;0
+41860;20947;2;160;60.0;120;80;3;3;0;0;1;1
+41861;18288;1;164;62.0;120;80;2;1;0;0;1;0
+41862;17509;2;173;75.0;130;80;1;1;0;0;0;0
+41865;20219;1;165;70.0;120;80;1;1;0;0;1;1
+41867;21849;1;179;87.0;120;80;1;1;0;0;0;0
+41868;14507;1;163;57.0;120;80;1;1;0;0;1;0
+41869;16666;1;164;79.0;120;80;1;1;0;0;1;1
+41870;21939;2;172;79.0;140;90;3;3;0;0;1;1
+41872;18377;2;189;93.0;120;80;1;1;1;0;0;0
+41874;21728;1;169;60.0;120;80;1;1;0;0;1;0
+41875;15556;2;164;72.0;120;80;1;1;1;0;1;0
+41876;15975;1;150;76.0;140;90;1;2;0;0;1;1
+41877;21843;1;165;120.0;150;90;3;1;0;0;0;1
+41878;14338;1;156;62.0;130;70;2;1;0;0;1;1
+41879;14547;2;182;74.0;140;90;1;1;1;0;1;1
+41881;20544;1;158;67.0;130;80;1;1;0;0;1;1
+41883;17067;1;158;62.0;120;80;1;1;0;0;1;0
+41884;21395;2;178;86.0;120;80;1;1;0;0;1;0
+41885;18079;1;172;95.0;150;90;1;1;0;0;1;1
+41886;21830;2;164;78.0;140;90;2;2;1;1;0;1
+41888;20600;2;174;85.0;120;80;1;1;0;0;1;0
+41889;21341;2;160;62.0;130;90;1;1;0;0;1;0
+41890;18990;1;162;90.0;130;90;1;1;0;0;1;0
+41891;21254;2;166;83.0;140;1100;2;1;0;0;1;1
+41892;18332;1;150;92.0;120;70;1;1;0;0;1;0
+41893;19513;1;155;69.0;90;130;1;1;0;0;1;0
+41898;16476;2;182;65.0;100;70;1;1;0;0;1;0
+41899;20293;1;166;74.0;140;90;3;3;0;0;1;1
+41900;15268;2;160;70.0;160;100;1;1;0;0;0;1
+41903;19015;1;149;43.0;110;80;1;1;0;0;1;1
+41904;22013;1;151;65.0;140;90;1;1;0;0;1;0
+41905;14326;1;162;70.0;110;70;1;1;0;0;1;0
+41906;18126;1;170;84.0;110;70;1;1;0;0;1;1
+41908;18292;1;156;69.0;110;70;1;1;0;0;1;0
+41909;15218;2;169;65.0;120;80;1;1;0;0;1;0
+41910;16010;1;172;56.0;110;70;1;1;0;0;1;0
+41912;17526;2;165;65.0;120;80;1;1;0;0;1;0
+41913;14492;1;168;71.0;110;80;1;1;0;0;1;0
+41914;20224;1;165;66.0;110;75;2;1;0;0;1;1
+41916;21135;1;164;69.0;120;80;3;1;0;0;1;0
+41917;22117;1;163;71.0;120;70;1;1;0;0;1;0
+41918;21249;1;164;85.0;160;100;2;2;0;0;0;1
+41919;21728;1;153;37.0;120;80;1;1;0;0;1;1
+41920;21112;1;153;57.0;160;90;1;1;0;0;1;0
+41923;19119;1;156;78.0;120;80;1;1;0;0;1;0
+41924;19096;2;184;83.0;130;90;1;1;0;0;1;1
+41925;22006;1;146;66.0;135;80;1;1;0;0;1;1
+41926;20285;1;159;75.0;120;80;2;1;0;0;1;0
+41927;15925;1;156;80.0;90;60;1;2;0;0;1;1
+41928;18881;2;178;100.0;150;90;1;1;0;0;0;0
+41929;19042;1;148;60.0;130;70;1;1;0;0;1;0
+41930;20437;1;160;60.0;120;80;1;1;0;0;1;1
+41934;20475;1;163;67.0;120;80;1;1;0;0;0;1
+41935;18149;1;165;60.0;110;70;1;1;0;0;1;0
+41936;19169;1;168;68.0;120;80;1;1;0;0;1;0
+41938;19504;1;167;67.0;140;90;3;3;0;0;1;1
+41940;14548;1;165;79.0;100;80;1;1;0;0;1;0
+41941;16829;2;172;71.0;120;80;1;1;0;0;1;0
+41942;14384;1;167;102.0;110;70;2;1;1;1;1;0
+41943;16047;2;178;92.0;120;80;1;1;0;0;1;1
+41944;18916;1;159;63.0;130;90;1;1;0;0;0;1
+41945;18793;2;170;95.0;110;70;1;1;0;0;1;0
+41946;19164;1;170;85.0;120;80;1;1;0;0;1;0
+41949;22210;1;164;65.0;110;70;1;1;0;0;1;1
+41951;15213;1;153;86.0;110;90;1;1;0;0;1;0
+41952;15181;2;162;56.0;110;70;1;1;1;0;0;0
+41953;21888;1;156;100.0;160;100;3;3;0;1;1;1
+41954;18901;1;166;76.0;110;70;1;1;0;0;1;0
+41955;23224;1;167;81.0;130;80;3;2;0;0;1;1
+41956;22670;1;165;80.0;120;80;1;1;0;0;1;0
+41957;18932;1;162;67.0;140;90;1;1;0;0;0;1
+41960;23362;2;175;80.0;140;90;1;1;0;0;1;1
+41962;16557;1;157;70.0;120;80;2;2;0;0;1;1
+41963;15282;2;173;72.0;110;80;1;1;0;0;1;0
+41965;18227;1;162;101.0;160;100;1;1;0;0;0;0
+41967;15661;1;167;64.0;120;80;1;1;0;0;1;0
+41968;16774;1;156;47.0;120;80;1;3;0;0;1;0
+41969;18144;2;177;78.0;140;80;1;1;0;0;1;1
+41970;19568;2;170;80.0;150;80;1;1;0;0;1;1
+41971;18270;1;160;60.0;120;80;1;1;0;0;1;0
+41972;22428;2;165;67.0;130;70;3;3;0;0;1;0
+41973;14573;1;175;95.0;100;60;1;1;0;0;1;0
+41974;21786;1;168;64.0;120;80;1;1;0;0;1;0
+41975;19842;1;152;73.0;120;80;2;1;0;0;1;0
+41976;22605;2;171;68.0;120;70;1;1;1;1;1;0
+41977;17668;2;179;79.0;120;70;1;1;0;0;1;1
+41978;16722;1;156;65.0;110;70;1;3;0;0;0;1
+41980;15929;2;170;81.0;130;80;1;3;0;1;1;1
+41985;14438;1;160;58.0;140;80;3;1;0;0;1;1
+41986;23239;2;170;72.0;140;90;3;1;0;0;1;1
+41989;20427;2;163;75.0;170;90;1;1;0;0;1;1
+41990;18324;1;157;64.0;130;70;1;1;0;0;1;0
+41992;23357;1;160;75.0;140;90;1;1;0;0;1;1
+41994;19716;2;164;85.0;110;70;1;1;0;0;1;0
+41995;21292;2;177;88.0;150;80;3;3;0;0;1;0
+41998;23129;2;165;87.0;140;90;2;1;0;0;1;0
+41999;22478;2;169;90.0;120;80;1;1;0;0;0;1
+42000;18043;2;171;114.0;145;80;1;1;1;0;0;1
+42002;18940;2;168;72.0;120;80;1;1;0;0;1;0
+42003;22037;1;165;56.0;150;1000;1;1;0;0;1;1
+42004;18242;2;164;55.0;120;80;1;1;0;0;1;0
+42006;21002;2;174;84.0;130;90;1;1;1;0;1;0
+42008;16799;1;164;94.0;160;100;1;1;0;0;0;1
+42010;15912;2;170;70.0;120;80;1;1;0;0;1;0
+42018;17330;1;166;93.0;140;80;1;1;0;0;1;1
+42019;15883;1;160;83.0;120;80;1;1;0;0;1;0
+42020;14740;2;163;65.0;140;90;1;1;0;0;0;1
+42024;22361;2;172;59.0;120;80;3;1;0;0;1;1
+42026;20471;2;175;75.0;120;90;1;1;0;0;0;1
+42027;19530;2;170;72.0;130;80;1;1;1;0;1;0
+42029;19001;2;168;74.0;130;90;1;1;0;0;1;1
+42031;21778;1;156;74.0;120;90;1;1;0;0;1;0
+42032;20319;1;168;68.0;120;80;1;1;0;0;1;1
+42033;17388;1;162;58.0;100;65;1;1;0;0;1;0
+42034;23369;1;158;65.0;115;75;1;1;0;0;0;0
+42035;23154;1;162;71.0;150;90;1;1;0;0;1;1
+42037;19746;1;161;64.0;120;90;1;1;0;0;1;0
+42038;15864;1;154;58.0;120;80;1;1;0;0;1;0
+42042;19936;1;167;62.0;150;110;1;1;0;0;1;1
+42043;21905;1;169;70.0;110;60;1;1;0;0;0;0
+42044;21751;1;152;110.0;150;90;1;1;0;0;1;1
+42046;21097;1;168;72.0;160;80;2;1;0;1;1;1
+42047;18176;1;154;82.0;110;70;1;1;0;0;1;1
+42050;21053;2;160;70.0;120;80;1;1;0;0;1;1
+42052;20525;2;175;75.0;150;90;2;1;0;0;1;1
+42053;14537;1;159;52.0;110;80;2;1;0;0;1;0
+42054;21910;1;159;72.0;140;80;1;2;0;0;1;1
+42055;16837;2;160;80.0;110;70;1;1;1;1;1;0
+42056;23204;1;156;56.0;120;80;1;1;0;0;1;0
+42057;20279;1;155;90.0;110;90;1;1;0;0;0;1
+42058;23393;1;144;57.0;150;90;1;1;0;0;1;1
+42059;21724;1;174;86.0;120;80;1;1;0;0;1;1
+42060;21358;1;168;73.0;120;80;3;3;0;0;1;0
+42062;19655;2;166;66.0;120;80;1;1;1;0;0;1
+42064;20482;2;173;83.0;120;80;1;1;0;0;0;1
+42067;22815;1;160;65.0;110;80;2;1;0;0;1;1
+42069;22772;1;152;64.0;100;70;1;1;0;0;1;0
+42070;17494;1;158;85.0;180;110;1;1;0;0;1;1
+42073;18150;1;164;90.0;130;80;3;1;0;0;1;1
+42074;16142;2;175;80.0;160;100;1;1;0;1;0;1
+42075;17547;1;174;67.0;100;70;1;1;0;0;1;0
+42076;16691;1;165;71.0;120;80;1;1;0;0;1;0
+42077;21170;2;174;70.0;120;80;2;2;0;0;0;0
+42078;18203;1;162;70.0;120;80;1;1;0;0;1;0
+42079;18422;1;158;62.0;120;80;1;1;0;0;1;0
+42081;19156;2;176;90.0;120;80;1;1;0;0;1;0
+42082;23474;1;150;74.0;120;80;3;1;0;0;1;1
+42083;16122;2;172;75.0;120;80;1;2;0;0;1;1
+42084;21715;2;166;63.0;150;80;1;1;0;0;1;1
+42085;18014;1;165;65.0;120;80;1;1;0;0;1;0
+42086;22089;1;163;87.0;110;90;1;1;0;0;1;0
+42088;20672;1;167;67.0;120;80;1;1;0;0;1;0
+42090;22155;2;178;85.0;120;80;1;1;0;0;1;0
+42091;23448;1;156;61.0;80;120;3;3;0;0;1;1
+42092;20532;1;163;85.0;130;80;1;1;0;0;1;1
+42096;14725;2;170;70.0;120;80;1;1;0;0;1;0
+42097;19834;2;170;70.0;120;80;1;1;0;0;1;0
+42098;16157;2;160;58.0;110;70;1;1;0;0;0;0
+42099;20399;1;147;71.0;130;80;3;1;0;1;1;0
+42101;21933;1;153;53.0;130;80;2;1;0;0;0;0
+42102;15318;1;165;43.0;100;70;1;1;0;0;1;0
+42104;18817;1;165;67.0;120;70;1;1;0;0;1;0
+42107;20520;1;165;75.0;160;100;1;1;0;0;1;1
+42108;19463;1;167;84.0;110;80;3;1;0;0;1;1
+42110;22789;2;170;99.0;150;90;3;1;0;0;1;1
+42112;14567;2;170;74.0;120;80;1;1;0;0;1;0
+42113;19806;1;160;60.0;140;90;1;1;0;0;1;1
+42117;16937;1;154;73.0;110;70;1;1;0;0;1;0
+42120;19089;1;158;124.0;120;80;1;1;0;0;1;0
+42121;20969;1;161;67.0;120;70;1;1;0;0;1;1
+42122;16818;1;164;70.0;120;80;1;1;0;0;0;0
+42124;19086;1;162;72.0;180;100;1;1;0;0;1;1
+42126;19218;1;167;74.0;120;80;1;1;0;0;1;1
+42127;20980;1;160;76.0;160;80;1;3;0;0;1;1
+42128;14508;1;159;105.0;130;90;2;1;0;0;1;1
+42129;21359;2;170;85.0;140;95;3;1;0;0;1;1
+42130;18229;2;173;62.0;120;80;1;1;0;0;1;1
+42131;19607;1;166;62.0;110;70;1;1;0;0;1;0
+42132;19719;1;145;63.0;120;90;2;1;0;0;1;1
+42133;20245;1;156;60.0;130;80;1;1;0;0;1;1
+42134;22586;1;160;87.0;140;90;3;3;0;0;1;1
+42135;17647;1;162;70.0;120;80;2;1;0;0;0;0
+42136;22635;2;177;93.0;120;85;1;1;0;0;1;0
+42137;23287;2;169;67.0;120;80;1;1;0;0;1;0
+42138;18319;2;172;80.0;120;80;2;1;0;0;1;0
+42139;16586;1;170;109.0;120;80;2;2;0;0;1;0
+42140;18905;1;162;80.0;120;80;1;1;0;0;1;0
+42141;19473;2;168;54.0;100;70;1;1;0;0;1;0
+42143;21234;2;164;57.0;130;80;1;1;1;0;1;1
+42146;21457;1;168;72.0;120;80;1;1;0;0;1;1
+42147;14515;2;174;74.0;160;100;1;1;0;0;1;1
+42148;19474;1;169;68.0;120;80;2;1;0;0;1;0
+42149;20274;1;172;90.0;125;80;1;1;0;0;1;0
+42151;15910;1;165;78.0;120;80;1;1;0;0;1;0
+42152;18343;1;155;75.0;140;100;1;1;0;0;1;1
+42154;18140;2;176;90.0;120;70;1;1;0;0;1;0
+42155;23410;2;162;70.0;150;100;1;1;0;0;1;1
+42156;20408;2;177;22.0;120;80;1;1;1;1;1;0
+42157;21143;1;164;60.0;130;80;1;1;0;0;0;1
+42158;14782;1;159;62.0;120;70;1;1;0;0;1;0
+42159;16643;1;170;66.0;120;80;1;1;0;0;1;1
+42160;22583;1;161;64.0;120;80;1;1;0;0;1;1
+42161;22584;1;156;85.0;120;90;1;1;0;0;1;0
+42162;18838;1;167;64.0;120;70;1;1;0;0;1;0
+42163;20644;1;161;67.0;160;100;2;1;0;0;1;1
+42164;21076;2;180;106.0;120;90;2;1;0;0;1;0
+42166;17993;1;152;64.0;120;60;1;1;0;0;1;1
+42167;16061;1;163;71.0;140;80;1;1;0;0;1;1
+42168;16124;1;170;68.0;145;90;1;1;0;0;1;1
+42169;21234;2;164;64.0;120;80;1;1;0;0;1;0
+42170;18202;1;168;65.0;120;80;1;1;0;0;0;0
+42174;19940;2;175;70.0;120;80;1;1;0;0;1;0
+42176;16018;1;167;90.0;130;90;1;1;0;0;1;1
+42177;21266;1;153;77.0;120;80;1;1;0;0;0;0
+42179;15461;1;167;74.0;120;80;1;1;0;0;1;0
+42180;21607;1;164;80.0;170;90;1;3;0;0;1;1
+42182;16693;1;162;62.0;100;70;1;1;0;0;1;0
+42183;20406;2;150;77.0;140;1000;2;1;1;0;1;1
+42185;19615;1;166;63.0;120;80;1;1;0;0;1;0
+42186;19062;2;167;67.0;11;70;1;1;0;0;0;0
+42187;21257;2;175;80.0;120;80;1;1;0;0;1;0
+42189;23459;1;143;97.0;150;90;3;1;0;0;1;1
+42190;18081;1;165;60.0;110;70;1;1;0;0;1;0
+42191;18387;1;161;78.0;110;70;1;1;0;0;1;0
+42192;23320;2;187;104.0;160;90;1;2;0;0;0;1
+42193;17477;1;162;95.0;150;80;1;1;0;0;1;1
+42194;20369;1;165;68.0;100;80;1;1;0;0;1;0
+42195;20420;2;166;65.0;120;70;1;1;0;0;1;1
+42196;15144;2;173;78.0;120;80;1;1;1;0;1;0
+42198;16669;1;160;105.0;110;70;1;1;0;0;0;0
+42199;21302;2;182;81.0;125;80;1;1;1;0;1;1
+42200;22387;1;158;60.0;110;80;1;1;0;0;1;0
+42201;18858;1;150;65.0;140;90;2;1;0;1;1;1
+42202;18302;1;172;84.0;100;80;1;1;0;0;0;0
+42203;21864;1;157;56.0;120;70;1;1;0;0;1;0
+42204;21977;1;166;86.0;150;90;1;3;0;0;1;1
+42205;18360;2;172;83.0;130;90;1;1;1;0;1;1
+42206;19803;1;153;73.0;110;70;1;1;0;0;1;0
+42208;18088;2;182;84.0;110;80;2;1;0;0;1;1
+42210;16656;1;159;89.0;121;70;1;1;0;1;0;0
+42213;18460;2;172;82.0;120;80;2;1;0;0;0;0
+42217;16592;1;158;90.0;120;80;2;1;0;0;1;0
+42218;20984;2;171;99.0;110;70;1;1;0;0;1;0
+42219;22586;1;163;60.0;100;60;1;1;0;1;1;1
+42221;16780;1;157;70.0;125;70;1;1;0;0;1;1
+42222;19852;2;176;74.0;120;80;3;3;0;0;0;1
+42223;22568;1;163;95.0;130;80;1;1;0;0;1;0
+42225;16830;1;154;97.0;151;81;1;2;0;0;0;0
+42226;20406;1;161;103.0;125;80;1;1;0;0;0;0
+42227;18896;2;169;54.0;100;60;1;1;0;0;1;0
+42228;19579;1;170;72.0;130;80;1;1;0;0;1;1
+42230;16943;1;163;71.0;130;90;1;1;0;0;1;0
+42231;20634;1;161;69.0;120;70;1;1;0;0;1;0
+42232;23409;1;148;60.0;160;80;3;1;0;0;1;1
+42233;18763;1;169;71.0;120;80;3;3;0;0;0;0
+42235;21428;1;171;72.0;120;80;1;1;0;0;1;0
+42237;16885;2;170;84.0;100;60;1;1;1;0;1;0
+42238;22811;2;175;98.0;140;80;1;2;0;0;1;0
+42239;20504;2;180;80.0;150;90;1;1;0;0;1;1
+42242;21971;2;166;74.0;190;100;2;2;0;0;1;1
+42243;19651;1;165;56.0;140;80;1;1;0;0;0;1
+42244;22545;1;166;70.0;120;80;2;1;0;0;0;0
+42245;18901;1;157;80.0;120;80;2;1;0;0;1;0
+42246;18354;1;150;70.0;120;80;2;1;0;0;1;1
+42249;22516;1;155;82.0;150;90;3;3;0;0;1;1
+42252;20434;1;162;108.0;220;110;3;1;0;0;0;1
+42254;18917;1;168;62.0;120;80;1;1;0;0;0;0
+42255;19965;1;165;57.0;120;80;1;1;0;0;1;0
+42257;18244;1;170;70.0;120;80;1;1;0;0;1;1
+42259;20267;1;168;66.0;120;80;1;1;0;0;1;1
+42260;16760;2;174;80.0;140;80;1;1;1;0;0;1
+42261;21636;2;182;83.0;130;80;1;1;1;0;1;1
+42263;20520;2;165;78.0;110;60;1;1;1;0;1;0
+42265;16895;1;164;103.0;150;1100;1;1;0;0;0;1
+42266;19738;1;159;68.0;120;80;1;1;0;0;1;0
+42267;18162;1;169;65.0;120;80;1;1;0;0;1;0
+42270;21943;1;140;90.0;140;90;1;1;0;0;1;1
+42273;19018;2;156;79.0;120;80;1;1;0;0;1;1
+42274;14590;2;174;68.0;120;79;1;1;1;0;1;1
+42278;18932;1;159;72.0;130;90;1;1;0;0;1;1
+42279;18103;2;167;70.0;130;90;1;2;0;0;1;1
+42280;20620;1;151;77.0;120;80;1;1;0;0;1;1
+42282;20446;1;158;58.0;90;60;2;1;0;0;1;1
+42283;23444;2;170;69.0;150;80;2;1;0;0;0;1
+42284;15184;2;168;74.0;110;70;1;1;0;0;1;0
+42285;18511;2;170;95.0;150;90;1;1;0;0;1;1
+42286;20632;1;164;66.0;120;80;1;1;0;0;1;0
+42287;19029;2;161;62.0;120;80;1;1;0;0;1;0
+42288;18016;1;153;65.0;110;90;1;1;0;0;1;1
+42290;18841;1;162;71.0;110;69;1;1;0;0;1;0
+42292;22419;2;173;75.0;120;70;1;1;1;0;1;0
+42294;22642;1;149;44.0;110;60;1;1;0;0;1;0
+42295;16717;1;167;83.0;140;89;2;2;0;0;1;1
+42297;23378;2;173;92.0;145;95;1;1;0;0;0;1
+42298;21728;1;159;75.0;130;90;1;1;0;0;1;0
+42299;18987;1;151;67.0;110;70;1;1;0;0;1;0
+42300;21767;1;151;62.0;120;60;1;1;0;0;0;1
+42302;19191;1;161;72.0;130;90;1;1;0;0;1;1
+42303;18882;1;160;58.0;110;70;1;1;0;0;1;0
+42304;20564;2;160;60.0;120;80;1;1;0;0;1;0
+42305;22119;1;169;85.0;120;80;1;1;0;0;1;0
+42306;16863;1;160;59.0;145;1000;1;1;0;0;1;0
+42307;20486;2;164;60.0;120;80;1;1;1;1;1;0
+42308;14637;1;167;61.0;150;100;1;1;0;0;1;0
+42309;22560;2;159;50.0;140;80;1;1;1;0;1;1
+42310;17656;2;170;96.0;130;80;1;1;0;0;1;0
+42311;19550;1;165;65.0;120;80;2;1;0;0;0;0
+42313;19152;2;160;72.0;120;80;1;1;0;0;1;0
+42315;14618;2;173;59.0;110;80;1;1;0;0;1;0
+42316;23328;1;161;67.0;130;80;3;1;0;0;1;1
+42318;18350;1;166;55.0;100;70;1;1;0;0;1;0
+42319;22479;1;182;94.0;160;90;1;1;0;0;1;0
+42321;17679;2;177;82.0;120;80;1;1;1;0;1;0
+42322;21849;1;162;92.0;130;90;2;1;0;0;1;1
+42325;20634;1;172;68.0;110;70;1;1;0;0;1;0
+42327;17525;2;172;60.0;110;70;2;1;0;0;0;1
+42329;21767;2;173;69.0;170;100;3;1;0;0;1;0
+42330;21355;1;164;84.0;180;110;1;1;0;0;1;1
+42332;20629;2;178;78.0;120;80;1;1;0;0;1;0
+42333;21283;2;172;92.0;140;90;3;1;1;1;1;0
+42334;20706;2;171;85.0;170;100;1;1;0;0;1;1
+42335;16614;1;162;85.0;130;90;2;1;0;0;1;1
+42336;15827;2;167;75.0;130;90;1;1;1;0;1;1
+42337;20310;1;163;80.0;120;80;1;1;0;0;1;0
+42338;23426;1;151;52.0;140;80;1;1;0;0;1;0
+42340;14407;2;167;104.0;120;80;1;2;0;1;1;0
+42342;19113;1;168;94.0;160;100;1;1;0;0;1;1
+42344;17650;2;169;72.0;120;80;1;3;0;0;1;0
+42345;14579;1;163;63.0;120;80;1;1;0;0;1;0
+42346;15819;2;168;65.0;160;90;2;1;1;1;1;0
+42347;14719;2;164;64.0;120;80;1;1;0;0;1;0
+42351;17393;2;166;87.0;170;110;1;1;0;0;1;1
+42352;18316;1;170;85.0;100;70;1;1;0;0;0;0
+42353;22805;1;165;62.0;120;80;1;3;0;0;1;0
+42354;21417;1;156;54.0;120;70;1;1;0;0;1;0
+42355;15956;2;172;63.0;100;70;1;1;0;0;1;0
+42356;20574;2;168;92.0;150;90;1;1;0;0;1;1
+42358;17441;1;163;88.0;120;80;2;1;0;0;0;1
+42360;21998;1;170;68.0;120;80;1;1;0;0;1;0
+42361;15919;1;167;71.0;110;70;2;1;0;0;1;0
+42362;15775;2;172;93.0;140;90;3;2;1;1;0;1
+42364;14403;1;161;80.0;150;90;3;3;0;0;1;1
+42365;18370;2;165;80.0;120;90;2;1;1;0;1;0
+42368;23228;1;170;72.0;150;90;2;2;0;0;0;1
+42369;15932;1;177;80.0;110;70;1;1;0;0;1;1
+42370;18076;1;156;60.0;110;60;1;1;0;0;1;0
+42373;18272;2;179;87.0;110;80;1;1;0;0;1;0
+42375;15992;2;172;94.0;120;80;1;1;1;1;1;0
+42377;18697;1;170;65.0;120;80;1;1;0;0;1;0
+42378;18905;2;156;54.0;120;80;1;1;0;0;1;1
+42379;18087;1;160;60.0;140;90;3;3;0;0;1;0
+42380;23410;1;166;81.0;130;80;3;2;0;0;1;1
+42381;17670;2;170;65.0;120;80;1;1;0;0;1;0
+42382;19565;1;156;49.0;120;60;1;1;0;0;1;1
+42383;14716;1;162;63.0;110;70;1;1;0;0;1;0
+42385;17448;1;169;53.0;120;80;1;1;0;0;1;1
+42387;21152;2;171;79.0;120;80;1;3;0;0;0;0
+42388;19113;1;163;63.0;120;80;1;1;0;0;0;1
+42389;19674;1;165;87.0;130;90;1;1;0;0;1;0
+42391;21960;1;159;105.0;130;80;2;1;0;0;0;0
+42392;19884;1;160;47.0;110;70;1;1;0;0;0;0
+42394;19798;2;174;75.0;240;120;2;1;0;1;1;1
+42395;19000;2;172;70.0;130;80;3;3;0;0;1;0
+42396;16597;1;172;83.0;120;80;1;1;0;0;1;1
+42397;14640;1;164;74.0;120;80;1;1;0;0;1;0
+42398;22534;1;156;84.0;150;80;3;3;0;0;1;0
+42399;23367;1;158;70.0;140;90;2;1;0;0;1;1
+42401;19031;1;158;48.0;110;70;1;1;0;0;0;0
+42402;18943;1;160;80.0;120;80;2;1;0;0;1;1
+42403;21930;1;170;87.0;170;90;2;1;0;0;1;1
+42405;18052;1;152;54.0;120;60;1;1;0;0;0;0
+42406;14634;1;162;53.0;100;50;1;1;0;0;1;0
+42407;19833;1;162;58.0;120;80;1;1;0;0;1;0
+42409;21410;1;156;54.0;120;80;1;1;0;0;0;0
+42410;17548;1;154;65.0;907;70;1;1;0;0;1;0
+42411;17599;1;160;104.0;110;70;1;1;0;1;1;0
+42414;21160;1;168;76.0;110;70;3;3;0;0;1;0
+42415;22639;1;166;71.0;110;60;1;1;0;0;1;0
+42416;18511;1;160;70.0;120;70;1;1;0;0;1;1
+42417;21966;1;160;69.0;120;80;1;1;0;0;1;0
+42418;20324;2;175;81.0;140;90;1;1;0;0;0;1
+42419;16727;2;160;77.0;120;80;1;1;1;1;1;0
+42420;22073;1;158;54.0;120;80;1;1;0;0;1;0
+42422;21764;2;170;65.0;140;90;1;1;0;0;1;0
+42426;21039;1;156;90.0;160;100;3;1;0;0;1;1
+42427;14565;1;175;85.0;120;80;3;3;0;0;0;0
+42430;21081;1;167;92.0;120;80;1;1;0;0;0;1
+42431;23420;1;160;66.0;110;80;1;1;0;0;0;0
+42432;21832;2;155;49.0;120;80;3;1;0;0;1;1
+42433;21215;1;156;50.0;120;70;1;1;1;0;0;0
+42434;18792;1;160;89.0;140;90;1;1;0;0;0;1
+42435;22030;1;164;65.0;120;80;1;1;0;0;1;0
+42436;17604;1;154;52.0;100;60;3;1;0;0;1;1
+42437;17362;1;170;70.0;120;80;1;1;0;0;0;0
+42438;21272;1;162;72.0;120;80;1;1;0;0;0;1
+42439;18038;1;175;72.0;110;70;1;1;0;0;1;0
+42440;19694;1;157;78.0;150;100;1;1;0;0;0;1
+42441;19045;2;169;67.0;120;80;1;1;0;0;1;0
+42442;21234;1;160;55.0;120;70;1;1;0;0;1;0
+42443;14584;1;163;84.0;110;70;1;1;0;0;0;0
+42444;19709;1;154;61.0;140;80;1;1;0;0;1;1
+42446;14923;1;178;78.0;120;80;3;3;0;0;0;0
+42447;19729;1;160;72.0;120;80;1;1;0;0;1;0
+42449;21958;1;150;62.0;150;90;3;1;0;0;1;1
+42450;21727;1;170;97.0;170;90;1;1;0;0;0;1
+42451;17585;2;172;70.0;130;70;1;1;0;1;1;1
+42452;19835;1;168;65.0;150;1000;1;1;0;0;0;1
+42454;20368;1;162;79.0;130;90;3;3;0;0;1;1
+42455;19721;2;172;62.0;120;80;1;1;0;0;1;0
+42456;19799;1;157;96.0;120;80;2;1;0;0;1;1
+42457;21730;1;159;85.0;120;80;2;2;0;0;0;1
+42458;21322;1;164;70.0;140;90;1;1;0;0;1;0
+42460;17592;2;156;72.0;140;90;1;1;0;0;1;1
+42463;19872;2;168;68.0;130;80;1;1;0;0;1;1
+42464;15513;1;163;58.0;100;60;1;1;0;0;1;0
+42465;19176;1;153;61.0;90;60;1;3;0;0;1;0
+42467;20290;1;163;93.0;140;90;3;3;0;0;0;1
+42470;15105;2;168;52.0;140;90;1;1;0;0;1;0
+42472;19199;1;167;69.0;120;80;1;1;0;0;1;0
+42474;16774;1;157;65.0;120;80;1;1;0;0;0;1
+42476;21158;1;170;70.0;120;80;1;1;0;0;1;0
+42478;15280;1;162;73.0;150;90;1;1;0;0;1;1
+42480;17701;2;152;58.0;120;80;1;1;0;0;0;0
+42481;18271;1;156;77.0;120;80;1;1;0;0;1;0
+42483;18019;2;165;70.0;120;80;1;1;0;0;1;1
+42484;15324;2;169;92.0;140;90;1;1;0;0;1;1
+42485;16701;1;161;50.0;120;80;1;1;0;0;0;0
+42487;21017;1;171;68.0;130;90;3;3;0;0;1;1
+42488;16833;2;178;67.0;120;80;1;3;0;0;1;1
+42489;16847;1;156;66.5;125;80;2;2;0;0;1;0
+42491;21135;1;158;63.0;110;70;1;3;0;0;1;0
+42493;16134;1;168;91.0;120;80;1;1;0;0;1;0
+42494;21934;2;170;89.0;140;80;1;1;0;0;0;1
+42495;15476;1;172;81.0;160;80;1;1;0;0;1;1
+42497;17355;1;161;82.0;130;90;3;1;0;0;1;1
+42498;14404;1;163;64.0;120;80;2;1;0;0;1;0
+42499;21260;2;178;76.0;120;80;1;1;0;0;1;0
+42500;17510;2;175;73.0;120;80;1;1;0;0;1;0
+42501;20473;2;165;89.0;120;80;1;1;1;1;1;0
+42502;21034;1;167;84.0;140;90;3;1;0;0;1;1
+42503;22473;2;158;69.0;120;80;1;1;0;0;0;1
+42504;19689;1;162;79.0;130;90;1;1;0;0;1;0
+42505;18298;2;170;75.0;120;80;1;1;1;0;1;1
+42507;15938;1;170;68.0;120;80;1;1;0;0;0;0
+42508;17453;1;109;64.0;140;80;3;1;0;0;1;1
+42510;21074;2;169;75.0;140;80;3;3;0;0;0;1
+42511;23165;1;164;64.0;120;90;1;2;0;0;1;1
+42512;16607;2;164;70.0;140;90;1;1;0;0;1;1
+42514;16889;1;162;52.0;110;70;1;1;0;0;1;0
+42515;23232;1;140;60.0;130;80;1;1;0;0;1;0
+42517;19687;1;158;73.0;130;90;1;1;0;0;1;1
+42519;19540;1;167;70.0;90;70;1;1;0;0;1;0
+42522;19767;2;162;61.0;130;90;1;1;1;0;1;1
+42523;21473;1;165;68.0;120;80;1;3;0;0;1;0
+42524;22713;1;160;86.0;130;90;1;1;0;0;1;0
+42526;16669;1;162;61.0;120;80;1;1;0;0;0;0
+42527;20593;1;174;75.0;150;90;1;1;0;0;0;1
+42528;15351;1;158;85.0;130;80;1;1;1;0;0;0
+42529;18285;1;163;67.0;120;80;1;1;0;0;1;0
+42532;18718;1;156;89.0;110;70;1;1;0;0;1;0
+42533;19604;2;178;78.0;120;80;1;1;0;0;0;0
+42537;22091;2;170;80.0;130;70;1;1;0;0;0;1
+42538;18211;1;159;82.0;120;80;1;1;0;0;1;0
+42541;16052;1;163;70.0;100;60;1;1;0;0;0;0
+42542;15825;1;168;65.0;120;80;1;1;0;0;0;1
+42545;19926;1;166;65.0;120;70;1;1;0;0;1;0
+42546;21303;2;171;84.0;140;80;1;1;1;0;1;1
+42549;21146;2;164;82.0;160;80;1;1;0;0;0;1
+42551;21873;1;159;79.0;120;80;1;1;0;0;1;1
+42552;19112;2;173;60.0;100;70;1;1;1;0;1;0
+42553;19667;1;158;64.0;130;80;1;1;0;0;1;0
+42554;15115;1;158;70.0;170;100;1;1;0;0;0;1
+42555;14580;2;175;74.0;120;80;1;1;0;0;1;0
+42557;20919;2;169;72.0;120;80;3;3;0;1;1;0
+42558;19717;2;160;65.0;120;80;1;1;0;0;1;0
+42559;18877;2;170;64.0;120;80;3;3;1;0;0;1
+42561;18695;2;165;53.0;140;90;1;1;1;1;1;0
+42562;20294;1;170;69.0;150;70;3;1;0;0;1;1
+42565;16212;1;159;124.0;130;90;1;1;0;0;0;1
+42566;16011;2;167;69.0;140;90;2;1;0;0;1;1
+42567;22514;2;166;65.0;150;80;2;1;1;0;1;1
+42568;18447;1;168;64.0;120;80;1;1;0;0;0;1
+42570;15184;1;167;61.0;110;70;3;3;0;0;0;0
+42571;16282;1;170;74.0;110;80;1;1;0;0;1;0
+42572;23241;1;165;84.0;140;90;2;1;0;0;1;1
+42573;18304;2;165;70.0;150;100;3;3;0;0;0;0
+42576;23236;1;156;120.0;120;80;3;1;0;0;1;1
+42577;21180;2;176;93.0;130;80;3;1;0;0;0;1
+42578;18914;1;169;81.0;100;80;1;1;0;0;0;0
+42579;22707;2;174;74.0;120;80;1;3;0;0;1;0
+42580;20442;2;169;81.0;130;80;1;1;0;0;0;1
+42581;18082;1;192;91.0;180;110;1;1;0;0;0;1
+42582;22606;2;173;69.0;120;80;1;1;0;0;1;0
+42585;16845;2;170;65.0;110;90;1;1;0;0;1;0
+42586;21333;2;170;70.0;120;80;1;1;0;0;0;0
+42587;20560;1;165;76.0;160;90;1;1;0;0;1;1
+42589;18910;1;160;69.0;120;80;1;1;0;0;1;0
+42590;14698;2;164;76.0;130;80;1;1;1;1;1;0
+42591;18191;2;162;63.0;140;1900;1;1;1;0;1;1
+42592;18211;2;169;82.0;150;80;1;1;0;0;1;1
+42595;17465;2;168;105.0;140;100;2;1;0;0;1;1
+42596;19401;1;168;60.0;120;70;1;1;0;0;1;0
+42597;19905;2;174;98.0;130;90;2;2;0;0;1;1
+42600;15852;1;160;65.0;140;90;2;1;0;0;1;1
+42602;21833;2;156;63.0;110;80;1;3;1;0;0;0
+42603;22804;2;168;80.0;160;100;1;1;0;0;1;1
+42604;18922;1;160;63.0;120;80;1;1;0;0;1;0
+42605;14366;2;181;76.0;110;60;1;1;1;0;1;0
+42606;14717;1;160;56.0;108;66;1;1;0;0;1;0
+42607;21426;2;174;87.0;120;80;1;1;0;0;1;1
+42610;19583;1;153;80.0;180;100;2;1;0;0;1;1
+42612;23340;1;170;88.0;130;90;2;2;0;0;1;0
+42613;23296;1;155;86.0;150;90;1;1;0;0;1;1
+42614;15375;1;158;50.0;120;80;1;1;0;0;1;0
+42615;20534;1;166;57.0;130;80;1;1;0;0;1;0
+42619;15948;2;171;102.0;120;80;1;1;0;0;1;1
+42621;20430;1;169;102.0;160;1000;3;1;0;0;1;1
+42625;16690;2;178;66.0;120;80;1;1;0;0;0;1
+42626;17382;1;168;84.0;180;120;1;1;0;0;1;1
+42627;22755;2;166;107.0;120;80;1;1;0;0;1;0
+42628;19509;2;166;66.0;110;80;1;1;0;0;1;0
+42629;19179;1;165;78.0;120;80;2;1;0;0;1;1
+42630;23113;2;169;118.0;160;100;1;1;0;0;1;0
+42631;19737;2;169;83.0;120;80;1;1;0;0;1;1
+42632;19694;1;154;62.0;120;80;1;1;0;0;0;0
+42636;14419;1;154;60.0;130;70;2;2;0;0;1;1
+42637;17418;2;171;70.0;130;90;3;1;0;0;1;1
+42638;19926;1;156;61.0;120;80;1;1;0;0;0;1
+42640;16003;1;171;57.0;90;60;1;1;0;0;1;0
+42641;22736;1;161;58.0;140;90;1;1;0;0;1;1
+42643;19697;2;169;86.0;130;80;1;1;0;0;0;1
+42644;20915;1;162;94.0;125;80;1;1;0;0;1;0
+42646;21222;1;169;68.0;140;90;1;1;0;0;1;1
+42648;16641;1;157;70.0;110;80;1;1;0;0;1;0
+42649;18265;1;166;70.0;120;70;1;1;0;0;1;0
+42650;20386;2;167;68.0;140;100;1;1;0;0;0;1
+42651;15236;2;164;77.0;120;80;1;1;0;0;1;1
+42652;18429;2;176;71.0;117;85;1;1;1;1;1;0
+42653;22801;1;165;102.0;170;100;1;1;0;0;1;1
+42655;22851;1;153;75.0;125;67;2;2;0;0;1;0
+42658;20223;1;160;62.0;125;80;1;1;0;0;1;0
+42659;19171;1;150;47.0;110;70;1;1;0;0;0;0
+42661;20618;1;150;62.0;140;90;1;1;0;0;1;1
+42662;20976;2;169;81.0;140;100;2;1;1;1;0;1
+42663;21142;1;151;57.0;140;79;1;1;0;0;0;1
+42664;19660;1;163;66.0;150;90;1;1;0;1;1;1
+42665;19902;1;161;64.0;120;80;1;1;0;0;1;0
+42666;21177;1;153;73.0;130;80;1;1;0;0;1;1
+42668;15305;2;169;97.0;140;100;2;1;0;0;1;1
+42669;21044;1;165;65.0;140;80;1;1;0;0;1;1
+42670;18337;1;160;86.0;120;80;1;1;0;0;1;0
+42671;20413;1;156;65.0;100;70;1;1;0;0;1;1
+42672;17442;2;169;81.0;140;100;1;1;0;0;0;1
+42674;19043;2;170;62.0;130;90;1;1;0;0;1;0
+42675;22932;2;175;80.0;120;80;1;1;0;0;1;1
+42676;20926;2;182;115.0;150;90;3;3;0;0;1;0
+42677;14559;1;165;62.0;120;80;1;1;0;0;0;0
+42680;22027;2;168;72.0;140;90;2;1;0;0;1;1
+42681;16127;2;170;63.0;130;80;1;1;0;0;1;1
+42682;18893;2;170;76.0;150;90;1;1;0;0;0;1
+42683;16018;2;179;60.0;120;80;2;1;1;0;1;1
+42684;19213;1;163;75.0;140;100;1;1;0;0;1;1
+42685;20221;2;158;65.0;160;100;1;1;0;0;1;1
+42686;19629;1;171;69.0;120;80;1;1;0;0;1;1
+42687;16637;2;167;75.0;120;80;1;1;0;0;1;1
+42688;21754;1;159;69.0;120;79;1;1;0;0;1;1
+42689;19633;1;169;65.0;120;80;2;1;0;0;0;1
+42690;15336;1;159;65.0;120;80;1;1;0;0;1;0
+42691;20554;1;170;80.0;120;80;1;1;0;0;1;1
+42692;15641;1;172;67.0;120;80;1;2;0;0;1;0
+42694;22704;1;154;75.0;130;80;1;2;0;0;1;1
+42697;14718;1;171;58.0;110;80;1;1;0;0;1;0
+42698;15864;2;174;87.0;140;90;1;1;0;0;1;1
+42699;17454;1;163;83.0;100;60;2;2;0;0;1;0
+42701;19689;2;169;60.0;120;79;1;1;0;0;0;1
+42703;19542;1;161;94.0;120;80;1;1;0;0;0;0
+42704;20335;1;157;105.0;140;90;2;1;0;0;1;1
+42705;16786;1;178;97.0;120;80;1;1;0;1;1;0
+42707;19816;1;166;109.0;155;100;2;1;0;0;1;1
+42710;20734;1;164;136.0;150;90;2;2;0;0;0;1
+42711;21402;1;167;75.0;120;70;1;1;0;0;1;0
+42712;18139;1;155;94.0;140;90;1;2;0;0;1;1
+42714;17403;1;167;69.0;120;80;1;1;0;0;0;1
+42715;20522;1;164;89.0;140;85;1;1;0;0;1;0
+42717;19491;1;160;64.0;110;60;1;1;0;0;1;0
+42718;21196;1;156;65.0;120;80;2;1;0;0;1;1
+42720;20573;1;156;70.0;130;80;1;1;0;0;1;1
+42722;20298;1;155;76.0;110;90;1;1;0;0;1;1
+42723;18864;1;156;56.0;120;80;1;1;0;0;1;1
+42724;22025;1;161;86.0;120;80;1;1;0;0;1;0
+42725;23419;2;168;77.0;130;90;1;1;0;1;1;1
+42726;21787;1;156;65.0;115;85;1;1;0;0;0;0
+42727;19633;1;155;64.0;140;90;1;1;0;0;1;1
+42729;21244;2;172;68.0;150;90;1;1;0;0;1;1
+42730;21722;1;156;80.0;140;90;1;1;0;0;1;1
+42733;17563;2;164;56.0;124;89;1;1;0;0;1;0
+42735;21261;2;164;78.0;120;80;1;1;0;0;1;1
+42736;21327;1;164;63.0;120;80;1;1;0;0;1;0
+42737;19276;2;172;69.0;110;80;1;1;0;0;1;0
+42738;15087;2;171;65.0;110;80;1;1;0;1;1;0
+42739;19525;1;165;60.0;120;80;1;1;0;0;0;1
+42740;15910;2;173;84.0;110;70;1;1;1;0;1;0
+42741;22081;1;162;74.0;110;70;1;1;0;0;1;1
+42743;16069;1;140;44.0;100;70;1;1;0;0;1;0
+42745;18335;2;175;72.0;120;80;1;1;0;0;1;0
+42746;21157;1;163;75.0;110;70;1;1;0;0;1;1
+42747;15992;2;174;93.0;140;90;1;1;0;0;1;1
+42748;14838;1;167;76.0;110;80;2;1;0;0;0;0
+42749;18925;1;165;97.0;140;90;1;1;0;0;0;1
+42750;21977;1;168;78.0;150;1000;2;1;0;0;1;1
+42751;21601;1;162;64.0;100;70;1;1;0;0;0;0
+42752;20410;1;168;80.0;120;70;1;1;0;0;1;1
+42758;20218;1;158;104.0;150;90;2;2;0;1;1;1
+42759;21773;1;164;60.0;120;80;3;1;0;0;1;1
+42760;21949;1;168;62.0;120;80;1;1;0;0;1;1
+42761;14521;2;163;63.0;120;80;1;1;0;0;1;0
+42763;19467;1;165;76.0;120;80;1;1;0;0;1;0
+42766;16840;1;152;60.0;150;100;1;1;0;0;0;1
+42767;18271;1;165;56.0;140;80;1;1;0;0;1;0
+42768;21279;1;162;75.0;120;80;1;1;0;0;1;0
+42770;20408;1;166;106.0;140;90;1;1;0;0;1;1
+42772;20368;2;174;89.0;140;90;3;2;0;0;0;0
+42773;15906;1;165;55.0;110;70;1;1;0;0;1;0
+42774;19629;1;157;79.0;100;80;1;1;0;0;1;0
+42775;14877;2;168;70.0;150;90;1;1;0;0;1;1
+42781;20237;2;175;64.0;140;70;1;2;0;0;1;0
+42782;18919;1;173;67.0;120;80;1;1;0;0;1;0
+42783;23156;1;158;80.0;140;90;3;1;0;0;1;1
+42785;18963;1;158;65.0;130;80;1;1;0;0;1;1
+42786;15334;1;169;68.0;110;80;1;1;0;0;1;0
+42788;20611;2;180;87.0;160;90;2;1;0;0;1;1
+42791;18884;1;167;97.0;160;90;1;1;0;0;1;1
+42792;17695;1;168;55.0;120;80;1;1;0;0;0;0
+42794;20585;1;167;69.0;120;80;1;1;0;0;1;0
+42796;19744;2;168;79.0;130;80;1;1;0;0;0;1
+42797;18054;2;172;67.0;130;60;2;1;0;0;0;0
+42799;22727;2;172;74.0;130;80;1;1;0;0;0;0
+42800;18141;1;154;90.0;140;100;1;1;0;0;0;1
+42801;14410;2;162;70.0;110;80;1;1;0;0;1;1
+42802;19645;1;161;92.0;130;90;3;1;0;0;1;1
+42803;20497;2;180;75.0;200;120;1;1;1;1;1;1
+42804;21804;2;163;68.0;130;90;1;1;0;0;1;0
+42805;18923;1;158;68.0;140;94;3;3;0;0;1;1
+42806;18978;2;170;73.0;110;80;1;1;0;0;1;0
+42808;16073;1;165;65.0;110;70;1;1;0;0;1;0
+42809;18213;1;158;50.0;95;60;1;1;0;0;1;0
+42811;20390;1;150;80.0;140;90;3;1;0;0;1;0
+42812;21181;1;158;72.0;110;70;2;1;0;0;1;0
+42814;14605;2;165;74.0;120;80;1;1;0;0;0;0
+42815;21973;1;160;65.0;120;80;1;1;0;0;1;0
+42816;22389;1;155;78.0;130;90;3;1;0;0;0;1
+42817;22732;2;176;114.0;145;88;2;2;0;0;0;1
+42818;17419;2;165;91.0;140;80;1;1;0;0;1;1
+42819;20270;1;165;80.0;150;100;1;1;0;0;0;1
+42820;16032;2;168;70.0;130;80;1;1;0;0;1;0
+42822;19052;1;160;61.0;140;90;1;1;0;0;0;1
+42825;22698;1;160;75.0;120;80;1;1;0;0;1;1
+42826;16843;2;172;78.0;120;80;1;1;1;0;1;0
+42827;18223;1;160;76.0;140;90;3;3;0;0;1;1
+42828;15848;2;170;75.0;110;70;1;1;0;0;0;0
+42831;18892;2;168;81.0;120;80;1;1;0;0;0;0
+42832;23177;1;171;76.0;130;90;1;1;0;0;1;1
+42833;23427;1;169;89.0;120;80;2;2;0;0;0;1
+42834;18195;2;160;60.0;120;80;1;1;0;0;1;0
+42835;19753;1;175;78.0;120;70;1;1;0;0;0;1
+42836;22851;1;178;78.0;120;80;1;1;0;0;1;1
+42837;21227;2;169;86.0;150;100;2;1;0;0;1;0
+42838;21887;1;166;97.0;120;80;1;1;0;0;1;0
+42839;20370;2;181;81.0;120;80;3;3;0;0;1;1
+42840;21238;2;166;58.0;100;70;1;1;1;0;1;1
+42842;20437;2;177;85.0;180;100;1;1;0;0;1;1
+42843;18251;1;165;95.0;130;90;1;1;0;0;1;1
+42845;15239;2;172;101.0;140;90;1;1;0;0;1;0
+42848;19641;1;155;51.0;120;80;1;1;0;0;1;0
+42849;21254;2;178;91.0;190;1000;1;1;0;0;1;1
+42851;15454;2;170;64.0;115;70;1;1;0;0;1;0
+42852;21889;1;160;70.0;120;80;1;1;0;0;1;0
+42853;21956;1;164;71.0;120;80;1;1;0;0;0;0
+42856;23434;2;170;64.0;130;80;1;1;1;0;1;1
+42858;20303;1;160;55.0;90;60;2;2;0;0;1;0
+42859;21012;2;164;63.0;120;80;3;1;0;0;1;1
+42860;16567;1;165;92.0;110;70;1;1;0;0;1;0
+42861;23422;1;165;65.0;130;80;1;1;0;0;1;1
+42862;20998;2;176;79.5;120;80;1;1;1;0;1;1
+42864;18922;1;163;65.0;110;70;1;1;0;0;0;0
+42865;20500;1;161;70.0;104;80;1;1;0;0;1;1
+42866;18875;2;180;74.0;120;80;1;1;0;0;1;1
+42867;14560;2;185;88.0;130;90;1;1;1;1;1;0
+42868;19036;1;158;85.0;130;1000;1;2;0;0;1;1
+42869;18747;1;168;65.0;120;80;1;1;0;0;0;1
+42870;14686;1;160;58.0;120;80;1;1;0;0;1;1
+42871;19546;1;160;74.0;120;100;1;1;0;0;1;1
+42872;19721;1;150;79.0;130;90;3;1;0;0;1;1
+42875;17428;1;150;80.0;130;80;3;1;0;0;1;1
+42877;21331;1;163;102.0;80;120;1;1;0;0;1;1
+42878;23338;1;161;75.0;190;100;1;1;0;0;1;1
+42879;19779;1;157;82.0;120;80;1;1;0;0;1;0
+42881;20959;2;166;60.0;110;70;1;1;0;0;1;0
+42883;18035;2;170;70.0;100;60;1;1;1;0;1;0
+42884;21165;2;162;74.0;120;80;1;1;0;0;1;0
+42885;15433;2;173;93.0;130;80;2;2;0;0;1;1
+42886;21212;1;156;89.0;120;70;1;1;0;0;1;1
+42888;18260;1;167;70.0;140;90;2;1;0;0;1;0
+42889;17231;1;165;65.0;120;80;1;1;0;0;1;1
+42890;18303;1;160;75.0;120;80;1;1;0;0;1;0
+42893;23276;2;158;69.0;125;80;1;1;0;0;0;1
+42894;22643;1;152;58.0;130;80;2;1;0;0;1;1
+42895;19726;1;156;60.0;120;80;1;1;0;0;1;0
+42897;21065;1;156;118.0;160;80;2;2;0;0;1;1
+42898;21648;2;164;69.0;120;80;3;1;0;0;1;1
+42900;14493;1;153;48.0;100;60;1;1;0;0;1;0
+42902;21196;2;171;75.0;130;80;1;1;0;0;1;1
+42904;23407;1;144;75.0;130;80;3;1;0;0;1;1
+42906;15328;2;165;63.0;110;70;1;1;0;0;1;0
+42907;18517;2;172;78.0;120;80;1;1;0;0;1;0
+42908;19617;1;165;65.0;110;70;1;1;0;0;1;1
+42909;16110;1;164;80.0;130;90;3;3;0;0;1;1
+42910;22202;2;160;65.0;110;81;2;1;1;0;1;1
+42911;16086;1;177;109.0;140;90;1;1;0;0;1;1
+42912;16647;1;156;80.0;140;100;1;1;1;0;0;1
+42913;18982;1;165;60.0;140;90;1;1;0;0;0;1
+42914;18200;2;166;75.0;150;100;2;1;0;0;1;0
+42915;18348;1;162;108.0;120;80;1;2;1;0;1;1
+42916;18940;1;175;86.0;130;80;1;1;0;0;1;0
+42917;18322;1;163;78.0;120;80;2;2;0;0;1;0
+42918;18298;1;165;65.0;120;80;1;1;0;0;1;0
+42919;19088;1;168;89.0;120;80;1;1;0;0;1;0
+42920;19816;1;159;81.0;140;90;1;1;0;0;1;1
+42921;18281;2;170;72.0;120;80;1;1;1;0;1;0
+42924;20287;1;169;62.0;120;80;1;1;0;0;0;0
+42925;18529;1;167;59.0;120;70;3;3;0;0;1;1
+42926;17433;1;163;60.0;130;80;1;1;0;0;1;0
+42927;16809;1;165;92.0;130;80;1;1;0;0;1;1
+42928;16618;1;157;53.0;110;80;1;1;0;0;1;0
+42929;18517;1;158;63.0;160;80;1;1;0;0;0;1
+42930;15250;1;157;66.0;110;70;1;2;0;1;1;0
+42932;14329;1;168;50.0;90;70;1;1;0;0;1;0
+42933;16129;2;168;68.0;110;70;1;1;1;0;1;0
+42934;20631;1;154;57.0;120;80;1;1;0;0;1;0
+42935;22639;2;161;55.0;140;70;1;1;0;0;1;1
+42936;23598;2;173;111.0;140;70;1;1;0;0;0;1
+42940;14717;1;172;91.0;120;80;1;1;1;0;1;0
+42941;16782;2;170;92.0;140;90;1;1;1;0;0;0
+42942;21124;1;170;89.0;140;80;1;1;0;0;1;1
+42944;17388;1;145;48.0;120;80;1;1;0;0;1;0
+42946;20970;1;159;79.0;170;100;2;1;0;0;1;1
+42947;18864;1;159;68.0;130;80;1;1;0;0;0;0
+42948;15234;1;162;70.0;120;80;1;2;0;0;1;0
+42951;22713;1;168;85.0;130;90;1;1;0;0;0;1
+42952;23383;1;160;75.0;130;80;1;1;0;0;0;1
+42953;16088;2;172;78.0;120;80;2;2;0;0;0;1
+42954;17429;1;162;65.0;130;90;1;1;0;0;1;1
+42957;18796;2;167;70.0;130;90;1;1;0;0;1;1
+42958;15375;2;165;68.0;100;70;1;1;0;0;0;0
+42960;16756;1;161;65.0;120;80;2;2;0;0;1;0
+42962;19514;1;160;85.0;120;80;1;2;0;0;1;1
+42963;15942;1;170;68.0;140;80;1;1;0;0;1;1
+42966;18197;1;171;75.0;120;80;1;1;0;0;1;0
+42967;23218;1;164;62.0;160;100;2;2;0;0;0;0
+42968;18046;2;172;64.0;145;80;1;1;1;0;1;1
+42972;18867;2;179;82.0;120;80;1;3;1;0;1;1
+42973;18814;1;165;80.0;140;80;2;2;0;0;1;1
+42974;21237;1;161;45.0;140;80;2;1;0;0;1;1
+42976;17726;1;169;74.0;110;70;1;1;0;0;1;0
+42979;16212;1;161;79.0;130;90;1;1;0;0;1;1
+42980;15397;1;182;82.0;110;70;1;1;0;0;0;0
+42982;19949;1;165;69.0;120;80;2;1;0;0;1;0
+42984;22502;1;169;64.0;120;70;1;1;0;0;0;0
+42985;21184;2;180;93.0;120;80;1;1;0;0;1;0
+42986;16935;2;161;58.0;110;70;1;1;1;0;1;0
+42988;22588;1;158;59.0;130;90;1;1;0;0;1;0
+42989;17965;2;180;84.0;130;100;2;1;0;0;1;0
+42991;18377;1;164;68.0;120;79;2;1;0;0;1;0
+42992;14722;2;179;68.0;120;80;1;1;1;0;1;0
+42994;14435;2;178;111.0;123;85;1;1;0;0;1;0
+42996;15457;1;150;50.0;100;70;1;1;0;0;0;0
+42997;21953;1;165;65.0;110;70;1;1;0;0;1;0
+42998;18714;1;163;83.0;120;80;1;1;0;0;1;0
+43000;21733;2;165;76.0;120;80;1;1;0;0;1;1
+43002;17442;2;157;77.0;150;1000;1;1;0;0;1;1
+43004;21235;2;165;83.0;140;90;2;2;0;0;0;1
+43005;15375;1;169;68.0;120;80;1;1;0;0;0;0
+43006;19598;2;170;63.0;130;90;1;1;0;0;1;0
+43007;20574;1;162;78.0;150;90;1;1;0;0;1;0
+43008;21230;2;166;80.0;140;90;1;1;0;0;1;1
+43009;21878;1;159;86.0;140;80;1;1;0;0;1;0
+43010;20888;2;173;92.0;140;80;1;1;1;1;0;1
+43011;15852;2;172;85.0;140;90;1;1;0;0;1;1
+43012;20713;2;179;79.0;120;80;1;1;0;0;1;0
+43016;21772;1;161;112.0;120;80;1;1;0;0;0;1
+43017;14664;1;152;70.0;120;75;1;1;0;0;1;0
+43018;21719;1;155;85.0;130;80;3;3;0;0;1;1
+43019;16301;1;168;73.0;110;80;1;1;0;0;1;0
+43021;14621;1;170;80.0;120;80;1;1;0;0;1;0
+43022;16675;1;163;61.0;100;70;1;1;0;0;1;0
+43023;20365;1;162;70.0;120;80;1;1;0;0;0;0
+43025;16602;2;159;61.0;120;80;1;1;0;0;1;0
+43026;18266;2;160;58.0;110;70;1;3;0;0;1;0
+43027;18085;1;167;69.0;120;70;1;1;0;1;1;1
+43028;23395;1;161;84.0;140;90;3;1;0;0;1;1
+43029;21067;1;172;70.0;150;100;1;1;0;0;1;1
+43031;20501;1;158;76.0;137;86;1;1;0;0;1;1
+43033;19062;1;155;53.0;140;90;2;1;0;0;1;1
+43034;19522;2;165;63.0;170;90;2;1;1;1;0;1
+43035;19734;1;167;77.0;130;80;2;1;0;0;1;0
+43038;15433;2;170;80.0;120;90;1;1;0;0;1;0
+43040;22660;2;158;58.0;120;70;3;1;1;0;0;1
+43041;14759;2;180;78.0;100;80;1;1;0;0;1;0
+43042;17403;1;158;62.0;110;90;1;1;0;0;0;1
+43044;21067;1;164;112.0;120;80;1;2;0;0;1;1
+43045;21213;1;165;72.0;130;80;3;1;0;0;1;1
+43046;21932;1;160;70.0;130;70;1;3;0;0;1;1
+43047;18307;1;154;87.0;160;1000;1;1;0;0;1;1
+43049;15526;2;158;57.0;140;100;1;1;1;0;1;1
+43050;18438;1;170;78.0;170;90;1;1;0;0;1;1
+43051;22104;1;159;76.0;140;100;3;1;0;0;0;1
+43053;15913;2;168;66.0;120;80;1;1;0;0;1;1
+43054;16794;1;162;82.0;140;90;1;1;0;0;1;1
+43056;21864;1;145;43.0;120;70;1;1;0;0;0;0
+43059;21983;1;160;55.0;120;80;1;1;0;0;1;0
+43060;17606;1;165;68.0;120;80;1;1;0;0;1;0
+43062;15995;2;174;108.0;160;100;2;1;1;0;1;1
+43064;21730;1;155;56.0;120;80;1;1;0;0;1;0
+43065;19714;1;162;84.0;120;80;1;1;0;0;0;0
+43066;20308;1;168;74.0;110;70;1;1;0;0;1;0
+43067;21099;2;170;93.0;150;100;2;1;0;0;1;1
+43068;22533;2;170;68.0;150;100;2;2;1;0;1;1
+43069;21234;1;153;78.0;130;80;1;1;0;0;0;1
+43071;21257;1;165;69.0;130;80;2;1;0;0;1;1
+43074;19135;1;174;65.0;120;80;1;1;0;0;1;1
+43075;15502;1;170;73.0;120;80;1;1;0;0;1;0
+43076;18047;1;169;69.0;140;90;1;1;0;0;1;1
+43077;19524;1;156;79.0;140;80;2;1;0;0;1;1
+43078;23512;1;163;60.0;140;80;1;1;0;0;1;1
+43080;19668;1;158;53.0;120;90;1;1;0;0;0;0
+43082;19152;1;155;56.0;190;100;1;1;0;0;0;0
+43083;23274;1;198;85.0;110;90;1;1;0;0;1;0
+43084;19666;2;169;58.0;120;80;1;1;0;0;0;1
+43085;18253;2;158;62.0;140;90;1;1;0;0;1;1
+43086;19624;1;165;65.0;120;80;1;1;0;0;0;0
+43087;16657;2;178;82.0;145;90;1;1;0;0;1;1
+43088;15338;1;162;65.0;110;70;1;1;0;0;1;0
+43089;18170;2;172;74.0;120;80;1;1;1;1;1;0
+43090;18946;1;179;85.0;100;70;1;1;0;0;1;0
+43091;16865;1;156;49.0;110;70;1;1;0;0;1;0
+43092;22726;2;175;98.0;140;90;1;1;0;0;0;1
+43093;15851;1;158;60.0;120;80;2;1;0;0;1;0
+43095;21273;1;170;70.0;170;80;1;1;0;0;1;1
+43096;18360;1;160;54.0;120;70;1;1;0;0;1;1
+43097;19548;1;155;76.0;130;80;3;2;0;0;1;1
+43098;16071;1;168;92.0;130;80;1;1;0;0;1;0
+43099;20318;1;154;48.0;110;70;1;1;0;0;1;0
+43100;21929;2;172;76.0;110;90;1;1;0;0;1;1
+43101;16170;2;154;55.0;110;70;1;1;0;0;0;0
+43102;22536;1;162;94.0;150;79;3;1;0;0;0;1
+43105;18296;1;161;64.0;140;90;1;1;0;0;1;1
+43106;16855;1;168;67.0;130;80;2;1;0;0;0;1
+43107;18236;2;183;90.0;110;80;1;1;0;0;1;0
+43108;20554;1;153;76.0;160;1000;3;1;0;0;0;1
+43110;19789;1;156;57.0;120;80;1;1;0;0;0;1
+43111;17394;2;172;80.0;120;80;1;1;0;0;1;0
+43113;14475;2;170;86.0;130;85;1;1;0;0;1;1
+43114;22478;2;170;75.0;160;100;3;1;0;0;1;1
+43115;17535;1;154;60.0;120;80;1;1;0;0;1;0
+43116;23443;2;162;87.0;150;80;1;1;0;1;1;1
+43117;15174;2;174;104.0;140;90;2;1;0;0;1;1
+43119;19653;1;158;50.0;90;60;1;1;0;0;1;0
+43120;22491;1;156;60.0;120;60;2;2;0;0;1;1
+43121;21871;1;150;78.0;130;90;2;1;0;0;1;1
+43122;15566;2;174;69.0;110;80;1;1;0;0;1;1
+43125;15136;1;165;79.0;110;80;1;1;0;0;1;0
+43126;23315;1;168;63.0;130;80;2;1;0;0;1;0
+43127;23109;1;160;75.0;130;90;1;1;0;0;1;1
+43129;23602;2;168;65.0;130;80;1;1;0;0;0;1
+43130;21864;2;168;102.0;150;80;2;1;0;0;1;1
+43132;15294;1;155;48.0;100;70;1;1;0;0;1;0
+43133;18976;1;165;69.0;130;80;2;2;0;0;0;1
+43135;22721;1;158;70.0;140;90;2;1;0;0;0;1
+43136;22044;1;150;44.0;100;60;1;1;0;0;1;0
+43137;22487;1;154;65.0;120;80;1;1;0;0;0;1
+43138;19052;1;160;73.0;140;90;1;1;0;0;1;1
+43139;17416;2;175;57.0;120;80;1;1;1;1;1;0
+43140;20440;1;158;57.0;120;80;1;1;0;0;1;1
+43142;17383;1;168;62.0;110;70;1;1;0;0;1;1
+43143;20269;1;158;96.0;120;80;3;1;0;0;1;1
+43146;19151;1;158;78.0;110;70;1;1;0;0;1;0
+43147;17377;1;160;69.0;140;80;1;1;0;0;1;0
+43148;23385;1;168;70.0;120;80;1;1;0;0;1;0
+43151;19190;1;159;64.0;150;90;1;1;0;0;1;1
+43152;16018;1;164;80.0;145;85;1;1;0;0;1;1
+43153;18198;1;153;59.0;150;90;1;1;0;0;1;1
+43157;21134;1;156;61.0;170;1100;1;1;0;0;1;1
+43158;20562;1;165;65.0;120;80;1;1;0;0;0;0
+43159;18299;1;160;59.0;120;80;1;1;0;0;1;0
+43160;19961;1;161;80.0;120;80;1;2;0;0;1;1
+43162;21391;2;175;85.0;140;80;3;1;0;0;0;1
+43163;16011;2;165;75.0;120;80;1;1;0;0;1;1
+43166;19229;1;160;62.0;110;80;1;1;0;0;1;0
+43170;20463;1;162;93.0;130;90;1;1;0;0;1;1
+43171;20445;2;162;56.0;120;80;1;1;0;0;1;1
+43172;21876;2;173;93.0;150;100;3;1;0;0;1;1
+43175;18935;2;156;56.0;120;80;1;1;0;0;0;1
+43176;14840;1;152;70.0;110;70;1;1;0;0;1;0
+43177;16112;1;169;80.0;120;80;1;1;0;0;1;1
+43179;21049;1;160;82.0;150;100;3;3;0;0;1;1
+43181;20480;1;159;56.0;140;80;1;1;0;0;0;1
+43182;18991;1;158;68.0;130;90;2;1;0;0;1;1
+43183;23294;1;167;64.0;130;90;2;1;0;0;1;1
+43186;22744;2;175;86.0;140;90;1;1;0;0;1;1
+43188;21788;1;150;70.0;110;90;1;2;0;0;1;1
+43189;19024;1;168;66.0;120;70;1;1;0;0;1;0
+43190;16096;1;158;84.0;120;80;1;1;0;0;1;0
+43191;16501;1;165;60.0;110;70;1;1;0;0;1;0
+43192;19811;1;166;82.0;110;70;1;1;0;0;1;0
+43193;14362;1;156;52.0;150;90;1;1;0;0;1;1
+43194;18929;1;165;70.0;150;80;1;1;0;0;1;1
+43195;19243;2;167;91.0;120;80;1;1;1;0;1;0
+43199;18843;1;168;59.0;120;80;1;1;0;0;0;0
+43202;20399;2;178;91.0;150;100;1;1;0;0;1;1
+43204;16756;1;157;63.0;120;80;1;1;0;0;1;0
+43205;18975;2;164;63.0;180;1110;3;3;1;0;1;1
+43206;21185;2;185;87.0;120;80;1;1;0;0;1;1
+43207;22681;1;160;92.0;130;90;1;1;0;0;1;0
+43208;16137;1;164;62.0;120;80;1;1;0;0;1;0
+43209;22704;2;177;75.0;120;80;1;1;1;0;0;1
+43210;21827;2;155;70.0;120;80;1;1;0;0;1;1
+43211;19806;2;172;75.0;140;90;2;1;0;0;0;1
+43212;16833;2;180;75.0;110;90;1;1;0;0;1;1
+43213;16865;2;165;58.0;90;60;1;1;0;0;1;0
+43214;18936;1;165;75.0;140;90;3;3;0;0;1;1
+43218;20217;1;160;73.0;120;80;3;3;0;0;1;1
+43220;20338;1;160;82.0;120;79;1;1;0;0;1;0
+43221;17540;1;168;75.0;140;90;1;1;0;0;1;1
+43222;15274;2;172;74.0;130;80;1;1;1;0;1;0
+43224;23388;2;169;66.0;120;80;1;1;0;0;1;1
+43225;16926;2;161;58.0;154;80;1;1;1;1;1;1
+43228;22703;1;167;89.0;150;80;1;1;0;0;1;1
+43229;18321;2;176;102.0;120;80;1;1;0;0;0;0
+43231;22543;1;146;54.0;160;80;1;1;0;0;1;1
+43232;21048;1;146;65.0;130;80;3;1;0;0;0;1
+43233;15416;1;158;58.0;110;70;1;1;0;0;1;0
+43236;21158;1;168;70.0;120;80;1;3;0;0;0;0
+43237;16203;1;175;85.0;120;80;1;1;0;0;1;0
+43238;17309;1;163;119.0;135;100;3;1;0;0;1;0
+43241;15470;2;180;92.0;120;90;1;1;1;1;1;0
+43245;14860;1;169;62.0;110;70;1;1;0;0;1;0
+43246;17626;2;169;80.0;120;80;1;1;0;0;1;1
+43248;20381;1;198;89.0;120;80;1;1;0;0;1;0
+43249;21902;1;158;72.0;160;80;3;1;0;0;0;1
+43250;15543;2;172;70.0;120;80;1;1;0;0;1;0
+43251;20444;1;172;74.0;130;80;1;1;0;0;1;1
+43253;19833;1;160;75.0;120;80;3;3;0;0;0;0
+43254;16053;1;156;73.0;115;70;1;1;0;0;1;0
+43256;21787;1;153;40.0;90;80;1;1;0;0;1;0
+43257;22797;2;178;62.0;120;80;1;1;0;0;1;1
+43258;19011;1;153;56.0;90;60;1;1;0;0;1;0
+43259;16923;1;160;64.0;140;90;1;1;0;0;0;1
+43262;19016;2;175;85.0;120;80;1;3;0;0;1;0
+43265;17499;1;160;58.0;120;82;1;1;0;0;0;0
+43267;16861;1;151;55.0;110;70;1;1;0;0;1;0
+43268;21200;2;161;88.0;130;90;1;1;0;0;1;0
+43269;20480;1;159;65.0;120;80;2;2;0;0;1;1
+43270;18336;2;174;74.0;120;80;1;1;0;0;1;0
+43271;19882;2;168;76.0;120;80;1;1;0;0;1;1
+43272;19051;1;166;73.0;130;90;1;1;0;0;1;1
+43273;19547;1;169;70.0;130;90;2;1;0;0;1;0
+43274;21747;1;164;112.0;180;100;1;1;0;0;1;1
+43276;18341;2;173;69.0;140;100;1;1;0;0;1;1
+43277;20542;1;160;71.0;150;90;1;1;0;0;1;1
+43278;15071;1;166;104.0;80;60;1;1;0;0;0;0
+43279;23427;1;155;52.0;140;80;1;1;0;0;1;1
+43280;20561;2;171;66.0;100;65;1;1;0;0;1;1
+43283;17318;1;149;70.0;170;110;2;1;0;0;1;1
+43284;19646;1;169;65.0;120;80;1;1;0;0;1;1
+43285;19124;2;170;78.0;120;80;1;2;0;0;0;0
+43286;23515;1;162;62.0;120;70;3;3;0;0;1;1
+43289;18472;1;160;59.0;120;80;1;1;0;0;1;0
+43290;21298;2;165;75.0;120;80;1;3;1;1;1;0
+43291;18464;1;154;58.0;110;80;2;1;0;0;0;0
+43294;14420;1;172;72.0;100;60;1;1;0;0;1;0
+43297;18738;1;165;115.0;160;90;3;1;0;0;1;1
+43298;21117;1;156;78.0;130;80;1;1;0;0;1;1
+43299;14756;2;171;70.0;110;70;1;1;0;0;1;1
+43300;14393;1;162;52.0;120;80;1;1;0;0;1;0
+43301;16768;1;159;63.0;120;80;2;1;0;0;1;1
+43302;19832;2;172;65.0;120;80;1;1;0;0;1;1
+43303;21929;1;154;65.0;154;80;2;1;0;0;1;0
+43304;20397;2;170;58.0;120;80;1;1;1;1;1;0
+43305;23398;1;130;45.0;130;80;1;1;0;0;1;1
+43307;18379;1;165;56.0;120;80;1;1;0;0;0;1
+43308;20228;2;187;81.0;100;80;1;1;0;0;1;0
+43309;20232;1;168;66.0;120;80;1;1;0;0;1;0
+43310;22584;1;160;64.0;140;90;1;1;0;0;1;1
+43311;19050;1;150;67.0;110;70;2;1;0;0;1;0
+43313;17578;2;169;103.0;120;60;1;1;0;0;1;1
+43316;21108;2;174;74.0;120;80;1;1;0;0;1;0
+43317;19089;1;152;62.0;100;60;1;1;0;0;1;0
+43318;20322;2;165;55.0;110;70;1;1;0;0;1;0
+43319;18023;1;156;68.0;120;80;3;1;0;0;1;1
+43321;19801;2;160;80.0;120;70;1;1;0;0;1;0
+43323;16856;1;160;77.0;130;90;1;1;0;0;0;1
+43324;19627;1;158;107.0;160;120;2;2;0;0;0;1
+43325;18793;1;120;80.0;120;80;1;1;0;0;0;1
+43326;20740;1;160;60.0;130;80;3;3;0;0;0;1
+43327;14796;2;162;60.0;120;80;1;1;0;0;1;0
+43329;18272;1;163;75.0;110;70;1;1;0;0;1;0
+43330;20391;2;160;62.0;120;80;1;1;1;0;1;0
+43331;20438;1;168;93.0;130;100;3;1;0;0;0;1
+43332;18729;2;170;76.0;120;80;1;1;0;0;1;1
+43334;18284;1;158;63.0;140;90;3;3;0;0;1;1
+43335;19885;2;173;69.0;90;60;1;1;0;0;1;0
+43336;21238;1;150;78.0;150;90;2;2;0;0;1;1
+43337;18120;1;165;79.0;130;80;1;1;0;0;0;0
+43338;21918;2;172;68.0;120;80;1;1;0;0;0;1
+43340;15515;1;164;60.0;100;80;1;1;0;0;0;0
+43341;18259;1;155;62.0;120;80;1;1;0;0;1;1
+43342;15964;1;160;78.0;130;90;1;1;0;0;1;0
+43343;18939;2;169;72.0;140;100;1;1;0;0;1;0
+43344;18989;1;164;150.0;130;90;1;1;0;0;1;1
+43345;23103;1;160;68.0;150;90;3;3;0;0;0;1
+43346;23427;1;170;75.0;140;90;1;1;0;0;1;1
+43347;18967;2;169;72.0;140;90;2;1;0;0;0;1
+43348;22428;2;178;108.0;110;80;3;3;0;0;0;1
+43349;18870;1;162;54.0;120;80;3;3;0;0;1;1
+43350;19890;1;164;75.0;120;78;1;1;0;0;1;0
+43351;21997;1;151;91.0;140;100;1;1;0;0;0;1
+43353;20940;1;152;61.0;180;100;2;2;0;0;1;1
+43354;16235;1;164;68.0;130;80;3;3;0;0;1;1
+43355;15126;1;174;75.0;110;80;1;1;0;0;0;0
+43356;20439;2;177;83.0;120;79;1;1;0;0;1;0
+43357;20453;1;165;74.0;100;70;1;1;0;0;0;0
+43358;19098;2;174;70.0;120;80;1;1;0;0;1;0
+43359;18463;1;161;60.0;110;60;1;1;0;0;1;0
+43361;20427;2;172;83.0;120;70;1;1;0;0;1;0
+43365;15370;2;175;96.0;120;80;1;1;1;0;1;0
+43369;23353;1;176;84.0;100;70;1;1;0;0;1;0
+43370;15265;1;140;74.0;110;70;1;1;0;0;1;0
+43371;19040;1;167;53.0;100;70;1;1;0;0;1;0
+43372;21290;2;182;72.0;140;90;1;1;0;0;1;1
+43374;19211;1;159;59.0;120;80;1;3;0;0;0;0
+43379;20468;1;167;59.0;160;90;3;3;0;0;0;1
+43380;14487;2;165;55.0;110;70;1;1;0;0;1;0
+43381;21183;2;175;80.0;165;80;2;1;0;0;1;1
+43382;14515;2;180;55.0;110;70;1;1;0;0;1;0
+43383;17268;1;158;60.0;120;80;3;3;0;0;1;1
+43384;22210;2;170;65.0;120;70;1;1;1;0;1;0
+43385;21844;1;150;44.0;120;70;1;1;0;0;0;1
+43386;21307;1;164;78.0;120;80;2;1;0;0;1;0
+43387;21235;1;167;70.0;110;70;1;1;0;0;1;0
+43389;14605;1;160;60.0;120;80;1;1;0;0;0;0
+43390;16656;1;136;71.0;120;70;1;3;0;0;1;1
+43393;21833;2;172;105.0;160;80;1;1;0;0;1;1
+43395;15070;2;174;89.0;140;90;3;1;0;0;0;0
+43396;21874;1;165;72.0;120;80;1;1;0;0;1;0
+43397;19023;1;165;60.0;120;80;1;1;0;0;0;0
+43401;22430;2;171;71.0;120;80;1;3;0;0;1;1
+43402;23311;2;170;85.0;150;90;1;1;0;0;1;1
+43403;18755;1;169;65.0;120;80;1;1;0;0;1;1
+43404;22496;1;159;68.0;120;80;2;2;0;0;1;1
+43405;17508;1;160;55.0;120;80;3;3;0;0;1;0
+43406;19806;1;168;65.0;130;90;3;1;0;0;0;1
+43407;20320;2;176;98.0;120;80;1;1;0;0;1;0
+43409;17528;1;169;65.0;120;80;1;1;1;0;1;1
+43410;20339;1;158;75.0;120;80;3;1;0;1;1;1
+43412;19516;1;155;65.0;120;80;1;1;0;0;1;0
+43413;16784;1;178;70.0;130;80;1;1;0;0;0;1
+43414;23529;2;165;72.0;140;90;1;1;0;0;1;1
+43415;20591;1;160;87.0;160;90;1;1;0;0;1;1
+43417;19830;2;170;77.0;120;80;1;1;1;1;0;1
+43418;19650;1;168;73.0;120;80;1;1;0;0;1;0
+43420;21746;2;171;66.0;110;70;1;1;0;0;1;0
+43421;21103;1;168;62.0;140;90;1;1;0;0;1;1
+43423;23259;2;171;75.0;140;80;3;1;0;0;1;1
+43427;18893;2;175;85.0;120;80;1;1;0;0;1;1
+43428;21230;2;176;100.0;147;97;1;1;0;0;1;1
+43430;21107;1;166;94.0;150;90;2;1;0;0;1;1
+43432;20611;1;159;102.0;140;90;2;1;0;0;1;1
+43434;17584;2;177;68.0;150;90;1;1;0;0;1;1
+43435;20472;2;175;99.0;190;1000;2;1;0;0;0;1
+43436;20643;1;167;133.0;140;90;1;1;0;0;1;1
+43437;19545;1;151;71.0;140;90;1;1;0;0;1;1
+43438;21141;1;165;69.0;120;80;1;1;0;0;1;0
+43440;22028;2;169;61.0;110;80;1;1;1;1;1;0
+43443;15461;1;164;74.0;120;90;1;1;0;0;1;0
+43444;18459;2;157;62.0;155;85;1;1;0;0;0;1
+43445;22068;2;162;72.0;140;90;1;1;1;0;1;1
+43446;20500;2;174;90.0;130;90;1;1;0;0;1;0
+43447;17731;1;166;75.0;110;80;1;1;0;0;1;0
+43448;18416;1;157;85.0;120;80;1;1;0;0;0;0
+43450;15510;2;169;61.0;100;70;1;1;1;1;1;0
+43451;22577;1;167;79.0;120;80;3;3;0;0;1;1
+43452;14678;1;178;68.0;13;90;1;1;0;0;0;1
+43453;18113;1;165;60.0;120;80;1;1;0;0;1;1
+43454;19732;1;160;71.0;120;80;2;1;0;0;1;1
+43455;18322;1;164;48.0;120;80;3;3;0;0;1;0
+43456;18048;1;170;70.0;120;80;1;1;0;0;1;1
+43457;21654;1;157;87.0;140;80;1;1;0;0;0;1
+43458;19735;1;162;78.0;130;79;1;1;0;0;0;0
+43459;22114;1;159;59.0;120;80;1;3;0;0;0;1
+43460;18907;1;158;65.0;140;90;1;1;0;0;1;1
+43463;18224;1;162;62.0;110;70;1;1;0;0;1;0
+43464;18016;1;163;72.0;150;100;1;1;0;0;1;1
+43465;19962;2;167;96.0;120;80;1;1;0;0;1;1
+43466;23473;2;170;67.0;150;80;1;1;0;0;1;1
+43467;19716;1;165;72.0;110;70;2;1;0;0;1;1
+43468;21178;2;168;109.0;140;90;1;1;0;0;1;1
+43469;15484;1;176;75.0;120;70;1;1;0;1;1;0
+43471;21132;1;165;67.0;120;79;1;1;0;0;0;0
+43474;18874;1;156;65.0;120;80;1;1;0;0;1;0
+43475;18772;2;168;82.0;140;80;1;2;1;0;0;0
+43476;18206;2;162;56.0;120;80;1;1;0;0;1;1
+43477;22597;1;154;75.0;130;80;3;2;0;0;1;1
+43478;21498;2;165;68.0;120;70;3;3;0;0;0;0
+43479;21044;2;165;65.0;120;80;1;1;0;0;1;0
+43481;18327;1;165;72.0;150;100;1;1;0;0;1;1
+43483;20614;2;175;119.0;160;100;2;2;0;0;1;1
+43484;18093;1;158;58.0;120;80;1;1;0;0;1;0
+43488;20959;2;169;85.0;150;90;1;1;0;0;1;1
+43489;20364;2;154;62.0;120;80;1;1;0;0;0;0
+43491;23310;1;166;80.0;150;100;1;1;0;0;0;1
+43492;22181;1;169;69.0;110;70;1;1;1;0;1;1
+43493;23424;1;162;78.0;140;90;3;3;0;0;0;1
+43494;15881;1;166;62.0;90;60;1;2;0;0;1;1
+43495;20608;1;165;62.0;120;80;1;1;0;0;1;1
+43496;19537;1;172;79.0;150;90;1;1;0;0;0;1
+43497;19096;2;174;82.0;130;90;1;1;0;0;1;0
+43498;18981;2;167;48.0;150;90;1;1;0;0;1;0
+43499;21624;2;169;58.0;150;1000;1;1;0;0;1;1
+43500;22767;1;158;82.0;140;80;2;1;0;0;1;1
+43501;20539;2;174;70.0;100;60;1;1;0;0;0;0
+43505;18962;2;172;65.0;120;80;1;1;0;0;1;0
+43506;21334;1;160;87.0;120;80;1;1;0;0;0;1
+43507;17700;1;170;82.0;120;80;1;1;0;0;0;1
+43508;19830;1;161;75.0;120;80;1;1;0;0;0;1
+43509;21226;1;156;77.0;120;80;2;1;0;1;0;0
+43510;20334;1;164;96.0;140;100;2;1;0;0;1;1
+43511;21701;2;182;97.0;130;80;3;3;0;0;1;1
+43512;21272;2;170;60.0;100;70;1;1;0;0;1;0
+43513;18550;1;160;84.0;115;80;1;1;0;0;1;0
+43514;18093;1;154;68.0;120;80;1;2;0;0;1;0
+43516;17428;1;172;52.0;120;70;1;1;0;0;1;0
+43517;21294;1;164;80.0;120;80;1;1;0;0;1;1
+43518;20283;1;165;69.0;120;80;3;3;0;0;0;1
+43519;18308;1;159;64.0;120;80;1;1;0;0;1;0
+43520;16311;1;156;78.0;120;80;1;3;0;0;0;1
+43521;21942;2;164;76.0;130;80;3;1;0;0;0;1
+43522;20367;2;164;80.0;150;80;3;2;1;0;1;0
+43523;16597;1;169;76.0;120;80;1;1;0;1;1;0
+43524;20540;1;168;80.0;110;70;2;1;0;0;1;1
+43525;23136;1;154;80.0;151;103;1;2;0;0;1;1
+43526;19106;2;165;66.0;130;70;1;1;0;0;0;0
+43527;16761;1;160;63.0;120;80;1;1;0;0;1;1
+43528;18467;2;168;70.0;150;80;2;1;0;0;1;1
+43529;18109;1;143;89.0;140;90;2;2;0;0;0;1
+43530;19894;1;147;56.0;180;100;1;1;0;0;1;0
+43531;19707;1;174;65.0;120;80;1;1;0;0;1;0
+43532;23403;1;154;54.0;130;90;2;1;0;0;1;0
+43534;18144;2;165;65.0;120;80;1;1;0;0;1;0
+43535;21866;2;170;94.0;140;100;3;2;0;0;1;1
+43536;20469;2;169;116.0;110;70;1;2;0;0;1;0
+43537;20476;1;155;66.0;130;90;1;1;0;1;1;1
+43538;18862;1;159;80.0;100;80;1;1;0;0;1;0
+43540;19634;1;168;70.0;140;80;3;1;0;0;1;1
+43541;15420;1;161;79.0;100;60;1;1;0;0;1;0
+43542;16140;2;172;69.0;120;90;1;3;0;1;1;0
+43545;22476;1;153;70.0;140;90;1;1;0;0;1;1
+43546;20266;1;170;85.0;100;90;1;1;0;0;1;0
+43547;21139;1;156;77.0;130;90;1;1;0;0;0;1
+43548;20328;2;166;70.0;110;70;1;1;0;0;1;0
+43550;19691;1;172;102.0;110;70;1;2;0;0;0;0
+43551;16150;1;170;85.0;120;80;1;1;0;0;1;0
+43554;16117;1;169;52.0;120;70;1;1;0;0;0;0
+43555;14445;2;155;71.0;120;80;1;1;0;0;1;0
+43556;18169;1;168;100.0;140;90;1;1;0;0;1;1
+43557;22106;1;164;97.0;140;90;1;1;0;0;1;0
+43558;22603;2;169;70.0;130;90;1;1;0;0;1;1
+43560;22733;2;172;68.0;120;80;1;1;1;0;1;0
+43561;19051;1;165;92.0;130;80;1;1;0;0;0;0
+43562;14794;1;158;69.0;140;90;1;1;0;0;1;1
+43563;18381;1;162;68.0;100;70;2;1;0;0;0;0
+43564;21866;2;169;75.0;110;80;1;2;1;1;1;1
+43565;18365;1;165;65.0;120;80;3;2;0;0;0;0
+43567;22445;1;170;68.0;120;60;1;1;0;0;1;1
+43568;19671;2;164;83.0;120;80;1;1;0;0;1;0
+43570;23225;1;160;65.0;120;80;1;1;0;0;1;1
+43571;21085;1;160;99.0;150;100;3;3;0;0;1;1
+43572;21065;1;161;71.0;140;90;1;1;0;0;0;0
+43573;16736;1;160;92.0;110;80;1;1;0;0;1;1
+43574;17395;1;154;79.0;120;80;2;2;0;0;1;0
+43575;18979;1;160;69.0;130;70;1;1;0;0;1;0
+43577;20486;1;160;60.0;120;80;1;1;0;0;1;1
+43578;20966;2;164;72.0;140;90;1;2;1;1;1;1
+43579;18242;2;168;108.0;120;80;2;1;1;1;0;0
+43580;19618;1;158;106.0;170;80;1;1;0;0;1;1
+43581;22594;2;180;91.0;140;90;3;3;0;0;1;1
+43582;19872;1;169;74.0;120;80;1;1;0;0;1;0
+43583;22393;1;169;91.0;120;80;3;3;0;0;0;1
+43584;21801;1;157;70.0;110;80;3;1;0;0;1;0
+43587;16571;1;165;78.0;120;80;1;1;0;0;1;1
+43588;19822;2;173;72.0;130;79;1;1;0;0;1;0
+43589;19668;1;152;74.0;150;90;1;1;0;0;0;1
+43590;14605;2;175;67.0;120;80;1;1;0;0;1;0
+43591;20942;2;177;130.0;160;100;1;1;0;0;1;1
+43592;19702;2;178;78.0;130;80;3;1;0;0;1;1
+43593;18333;1;158;63.0;120;80;1;1;0;0;1;0
+43594;21990;1;170;68.0;110;70;1;1;0;0;1;0
+43595;19958;1;160;66.0;120;80;2;2;0;0;1;0
+43596;18420;1;171;69.0;110;70;1;1;0;0;1;0
+43597;18275;1;156;66.0;140;90;1;3;0;0;1;1
+43598;20554;2;168;72.0;110;70;1;1;0;0;0;1
+43599;18310;1;164;103.0;120;70;1;2;0;0;1;0
+43602;19083;1;148;54.9;180;1000;1;1;0;0;0;1
+43604;21754;1;164;78.0;140;90;2;1;0;0;1;0
+43605;22389;2;168;67.0;120;70;1;1;0;0;1;1
+43607;15134;2;178;72.0;90;60;1;1;1;1;1;0
+43608;22434;2;163;45.0;120;80;1;1;0;0;1;0
+43611;16876;1;170;75.0;110;60;1;1;0;0;1;1
+43612;14818;2;170;63.0;100;70;1;1;0;0;1;0
+43613;18253;1;162;86.0;140;100;1;1;0;0;1;0
+43616;14740;1;150;87.0;120;80;2;2;0;0;0;0
+43618;16196;1;160;61.0;110;70;1;1;0;0;1;0
+43619;18217;2;168;66.0;120;80;1;1;1;0;1;0
+43620;22842;1;169;86.0;120;80;1;1;0;0;1;0
+43621;20164;1;162;75.0;120;80;1;1;0;0;0;0
+43622;18073;2;171;73.0;100;70;1;1;0;0;0;0
+43626;17397;1;163;90.0;120;80;1;1;0;0;1;0
+43627;23123;1;162;65.0;120;80;1;1;0;0;1;0
+43628;22766;1;162;70.0;140;80;1;1;0;0;1;1
+43629;17414;2;168;65.0;140;90;1;1;0;0;1;1
+43632;22060;1;170;75.0;150;90;1;1;0;0;1;1
+43633;16115;2;168;67.0;120;80;1;1;0;0;0;0
+43634;23302;1;158;105.0;130;100;1;1;0;0;1;0
+43637;23209;1;153;57.0;100;80;2;1;0;0;1;1
+43638;20967;1;160;60.0;110;70;1;1;0;0;1;0
+43639;22560;1;177;78.0;150;90;1;1;0;0;1;1
+43641;23253;1;156;65.0;170;80;3;1;0;0;1;1
+43642;16116;1;157;59.0;120;80;1;1;0;0;1;0
+43644;20483;2;170;70.0;120;80;2;1;0;1;1;0
+43645;20338;1;166;76.0;110;70;2;1;0;0;1;0
+43646;22505;1;156;82.0;120;79;1;1;0;0;1;0
+43647;17606;2;172;101.0;120;80;1;1;0;0;0;0
+43649;19300;1;155;74.0;120;80;1;1;0;0;0;1
+43650;20263;2;173;86.0;160;90;1;1;0;0;1;1
+43651;14366;1;158;65.0;140;90;1;1;0;0;1;0
+43652;15447;1;156;56.0;110;70;1;1;0;0;0;0
+43655;15966;1;165;77.0;110;70;1;1;0;0;0;0
+43656;20684;1;165;77.0;140;90;3;3;0;0;1;1
+43657;17512;1;165;62.0;120;80;1;1;0;0;1;1
+43659;20196;1;168;62.0;140;90;1;1;0;0;1;1
+43660;21117;1;158;80.0;120;80;1;1;0;0;1;1
+43661;16043;2;162;72.0;120;80;1;1;1;0;1;0
+43662;18962;1;158;58.0;120;80;1;1;0;0;0;1
+43663;20308;1;155;57.0;100;80;3;3;0;0;1;1
+43664;21982;1;156;77.0;120;80;3;1;0;0;1;0
+43665;18244;1;172;68.0;120;80;1;1;0;0;1;0
+43666;18279;1;190;75.0;120;60;1;1;0;0;1;0
+43668;22455;2;185;86.0;130;90;2;1;1;1;1;0
+43669;18280;1;165;89.0;140;90;1;1;0;0;1;1
+43670;21317;1;162;68.0;120;80;1;1;0;0;1;1
+43672;19081;2;178;106.0;150;100;3;1;0;0;1;0
+43674;19744;1;160;52.0;120;80;1;1;0;0;0;0
+43675;21690;1;160;72.0;120;90;1;1;0;0;1;0
+43677;18344;1;166;71.0;120;80;1;1;0;0;1;0
+43678;21172;1;157;80.0;130;80;1;1;1;0;0;0
+43679;18161;1;164;55.0;120;60;1;1;0;0;1;0
+43680;18960;1;156;56.0;110;70;1;1;0;0;1;0
+43681;21246;2;168;56.0;120;80;1;1;1;1;1;0
+43682;22119;1;158;60.0;110;70;1;1;0;0;1;0
+43683;21343;1;164;66.0;120;80;1;1;0;0;1;1
+43684;21259;1;159;75.0;120;80;3;2;0;0;1;1
+43687;21312;1;171;81.0;120;80;1;1;0;0;0;0
+43688;21095;2;176;103.0;130;80;1;3;0;0;0;0
+43689;16805;2;158;69.0;110;90;3;3;1;0;1;0
+43690;19199;1;162;64.0;110;70;1;1;0;0;1;0
+43691;18004;1;164;63.0;110;85;1;1;0;0;1;0
+43692;14483;2;174;85.0;125;80;1;1;0;0;1;0
+43693;16709;2;175;84.0;120;80;1;3;0;0;1;0
+43694;16839;1;161;72.0;110;70;1;1;0;0;1;0
+43695;22649;1;164;59.0;150;80;1;1;0;0;1;0
+43696;19735;2;170;71.0;120;80;1;1;0;0;1;0
+43697;14672;1;169;89.0;120;70;2;2;0;0;0;0
+43698;20492;1;160;80.0;150;90;1;1;1;0;1;1
+43699;19035;1;165;109.0;120;80;1;1;0;0;1;0
+43701;15312;2;173;69.0;120;80;1;1;0;0;0;0
+43702;23148;1;163;74.0;120;80;1;1;0;0;1;0
+43705;20566;1;164;112.0;160;100;1;1;0;0;1;1
+43708;21854;2;175;75.0;120;80;1;1;0;0;1;0
+43709;18364;2;169;57.0;120;80;1;1;0;0;0;1
+43711;22031;2;170;67.0;130;80;3;1;0;0;1;1
+43713;15228;2;176;91.0;120;80;3;1;1;0;1;1
+43714;18817;1;156;60.0;120;80;1;1;0;0;1;0
+43716;20271;1;156;68.0;150;90;1;1;0;0;1;1
+43718;15235;1;158;53.0;110;70;1;1;0;0;0;0
+43719;23357;1;161;70.0;120;80;3;1;0;0;1;0
+43721;19533;2;166;79.0;110;90;1;1;0;0;1;0
+43722;18201;1;162;76.0;120;90;1;1;0;0;1;1
+43723;20447;1;152;79.0;120;80;1;1;0;0;1;1
+43725;20444;1;163;81.0;120;80;1;2;0;0;1;0
+43726;19037;1;143;66.0;100;70;2;2;0;0;0;1
+43727;15419;2;160;60.0;120;80;1;1;0;0;1;0
+43728;19818;1;165;76.0;120;80;1;1;0;0;1;1
+43729;22688;2;175;80.0;120;80;1;3;0;0;1;0
+43730;15233;1;168;67.0;100;60;1;1;0;0;1;0
+43731;17433;1;178;71.0;120;80;1;1;0;0;1;0
+43733;21134;1;149;80.0;160;90;1;1;0;0;1;1
+43734;21912;2;168;97.0;140;100;3;1;1;1;1;1
+43736;23306;1;155;76.0;140;80;3;3;0;0;1;1
+43739;15569;1;172;68.0;120;80;1;1;0;0;1;0
+43740;16026;2;175;68.0;120;70;1;1;0;0;1;0
+43741;16579;1;155;52.0;130;70;1;1;0;0;1;0
+43742;23268;1;156;85.0;120;90;3;3;0;0;1;1
+43744;22003;1;178;90.0;140;100;3;1;0;0;1;1
+43745;14878;1;154;56.0;120;80;1;1;0;0;0;0
+43746;17625;2;162;53.0;100;80;1;1;0;0;1;0
+43749;21105;1;150;57.0;130;80;1;1;0;0;1;1
+43750;19617;2;165;67.0;120;80;1;1;1;0;1;0
+43751;23316;1;162;84.0;110;80;3;1;0;0;0;1
+43752;22386;1;156;64.0;160;99;2;1;0;0;0;1
+43754;23345;2;175;95.0;160;100;3;1;0;0;1;1
+43755;19723;1;162;96.0;160;1000;1;1;0;0;1;1
+43756;20365;2;178;99.0;140;100;1;1;1;0;1;0
+43758;23354;1;166;66.0;140;90;1;2;0;0;1;1
+43763;22032;2;164;67.0;120;80;1;1;0;0;1;0
+43764;14610;2;168;74.0;130;80;1;1;0;0;1;0
+43765;15121;2;175;80.0;130;80;1;1;1;0;0;1
+43766;19150;2;170;92.0;140;90;1;1;0;0;1;1
+43767;17646;1;158;84.0;140;80;1;1;0;0;1;1
+43768;18133;1;168;113.0;130;80;3;1;0;0;1;1
+43769;22591;1;156;62.0;130;80;3;3;0;0;1;0
+43770;19058;1;160;73.0;120;80;1;1;0;0;1;0
+43771;16959;1;170;69.0;110;70;1;1;0;0;0;0
+43772;21764;1;160;85.0;160;100;1;1;0;0;0;0
+43773;21924;1;167;78.0;130;80;3;3;0;0;1;1
+43777;21617;1;164;85.0;160;100;1;3;0;0;1;1
+43778;19623;2;170;89.0;120;80;1;2;0;0;1;1
+43782;18793;1;158;68.0;120;80;1;1;0;0;1;0
+43784;19050;1;159;67.0;120;80;1;1;0;0;1;0
+43787;18850;1;164;70.0;120;80;1;1;0;0;1;1
+43788;22630;1;168;85.0;160;90;1;1;0;0;1;1
+43789;19608;2;172;62.0;110;80;1;1;0;1;1;0
+43790;22012;1;164;73.0;120;80;1;1;0;0;1;0
+43791;19093;1;170;83.0;130;90;1;1;0;0;1;0
+43792;22771;2;182;149.0;130;80;1;1;0;0;1;0
+43794;19053;1;167;64.0;150;90;1;3;0;0;1;1
+43795;16625;1;168;70.0;120;80;1;1;0;0;1;0
+43796;14590;2;169;68.0;110;70;1;1;1;1;1;0
+43797;14424;1;164;58.0;110;70;1;1;0;0;1;0
+43798;21863;2;168;86.0;120;80;1;1;0;0;1;1
+43799;19115;1;160;60.0;120;80;1;1;0;0;1;0
+43800;21954;1;153;88.0;130;80;1;1;0;0;1;1
+43802;18924;1;168;83.0;120;80;1;1;0;0;1;1
+43803;18864;1;147;47.0;110;80;1;1;0;0;1;0
+43804;21156;1;157;52.0;115;70;1;1;0;0;1;1
+43806;15248;1;170;72.0;120;80;2;1;0;0;1;0
+43807;20590;1;158;64.0;150;90;1;1;0;0;1;1
+43808;18889;1;164;64.0;160;1000;1;1;0;0;1;0
+43809;19596;1;174;58.0;120;80;1;1;0;0;1;0
+43810;19869;1;160;92.0;130;90;1;1;0;0;1;0
+43811;14584;2;175;81.0;120;80;1;1;0;0;1;0
+43812;15051;2;180;82.0;115;70;1;1;0;0;0;1
+43813;21874;1;160;70.0;120;100;1;1;0;0;0;1
+43816;15401;2;175;69.0;120;80;2;1;0;0;1;1
+43819;22789;1;162;65.0;140;90;1;1;0;0;1;1
+43820;19612;1;170;90.0;120;80;2;1;0;0;1;0
+43823;16100;2;159;74.0;150;70;3;3;1;0;1;1
+43826;14492;2;180;53.0;110;70;1;2;0;0;0;0
+43827;23359;2;161;61.0;140;90;1;1;0;0;1;1
+43828;19552;2;172;84.0;150;80;1;1;0;0;0;0
+43829;20487;1;160;65.0;125;80;1;1;0;0;1;0
+43831;17476;1;160;69.0;120;80;1;1;0;0;1;1
+43832;19654;1;162;68.0;100;60;2;2;0;0;1;0
+43835;22623;2;166;98.0;120;80;1;1;0;0;1;0
+43836;19040;1;160;68.0;135;90;1;1;0;0;1;1
+43838;18815;1;154;51.0;110;80;1;1;0;0;1;0
+43840;17470;2;163;71.0;120;80;3;3;0;0;1;0
+43842;10859;1;159;59.0;120;80;1;1;0;0;1;0
+43843;22910;1;172;70.0;120;70;1;1;0;0;1;0
+43844;16720;1;156;90.0;110;70;1;1;0;0;1;1
+43845;22782;1;170;74.0;120;80;1;1;0;0;1;0
+43846;23236;2;188;112.0;130;80;3;1;0;0;1;1
+43847;19050;2;166;90.0;120;80;1;1;0;0;1;1
+43848;22096;1;163;65.0;120;80;1;1;0;0;1;0
+43849;22545;1;151;66.0;140;90;3;1;0;0;0;1
+43851;14344;1;159;80.0;110;80;1;3;0;0;1;0
+43852;23154;1;150;100.0;150;100;1;1;0;0;0;0
+43854;18148;1;169;79.0;110;70;1;1;0;0;1;0
+43855;22692;1;161;85.0;140;80;1;1;0;0;1;1
+43857;23267;1;162;75.0;125;90;3;1;0;0;1;1
+43859;14540;1;165;60.0;120;80;1;2;0;0;1;0
+43861;19166;2;175;75.0;120;80;1;1;0;0;0;0
+43863;19461;1;168;62.0;130;100;1;1;0;0;0;1
+43864;22660;1;165;83.0;140;90;3;3;0;0;1;1
+43865;21099;1;158;83.0;120;80;1;1;0;0;1;0
+43866;21978;1;165;65.0;120;80;1;1;0;0;1;1
+43868;18845;1;156;70.0;120;80;1;1;0;0;1;0
+43869;22035;2;163;61.0;110;70;1;1;1;1;1;0
+43870;23464;1;153;66.0;120;80;2;1;0;0;1;0
+43871;19490;1;170;75.0;120;80;1;1;0;0;0;1
+43872;20383;1;155;59.0;110;70;1;1;0;0;1;1
+43873;16784;1;157;66.0;110;70;1;1;0;0;1;0
+43874;23230;1;164;58.0;120;80;1;1;0;0;1;0
+43876;19039;1;150;70.0;120;80;2;2;0;0;1;1
+43877;21976;1;170;72.0;120;80;1;1;0;0;0;1
+43878;16622;2;185;84.0;120;80;1;1;0;0;1;0
+43879;19939;1;158;61.0;110;70;2;2;0;0;1;0
+43880;20622;2;168;68.0;130;90;2;2;0;0;0;1
+43881;20396;2;173;85.0;120;70;1;1;0;0;1;1
+43882;19787;1;153;78.0;120;80;1;1;0;0;1;0
+43883;20386;2;158;63.0;120;80;1;1;1;0;0;1
+43887;19582;1;154;80.0;160;90;1;1;0;0;1;1
+43888;20570;2;172;76.0;160;80;2;2;0;0;1;1
+43892;19078;2;188;70.0;120;80;1;1;1;0;1;1
+43894;14741;1;153;62.0;130;90;2;1;0;0;1;1
+43895;16724;1;160;60.0;120;80;1;1;0;0;1;0
+43896;22495;1;158;78.0;130;70;1;1;0;0;1;0
+43897;14386;2;175;70.0;110;70;1;1;0;0;1;0
+43898;15337;2;185;75.0;130;90;1;1;0;0;0;0
+43900;22629;1;162;64.0;150;90;1;1;0;0;1;1
+43902;19093;1;161;70.0;120;80;1;1;0;0;1;0
+43903;22093;1;174;60.0;120;80;3;3;0;0;1;0
+43904;20504;2;168;89.0;170;110;1;1;0;0;1;0
+43907;16903;1;155;67.0;150;100;2;2;0;0;1;1
+43908;18324;1;164;74.0;110;70;1;1;0;0;0;0
+43909;15484;1;170;65.0;120;80;1;1;0;0;0;1
+43911;20529;1;160;71.0;120;80;1;1;0;0;1;1
+43913;15978;2;169;84.0;120;80;1;1;0;0;1;0
+43915;21079;2;179;80.0;150;90;2;1;0;0;0;1
+43916;14540;1;166;79.0;120;90;1;1;0;0;1;0
+43917;21132;1;172;83.0;130;85;1;1;0;0;0;1
+43918;23265;1;155;80.0;110;70;2;1;0;0;1;0
+43920;18311;1;162;91.0;140;90;3;1;0;0;1;1
+43921;17277;1;162;100.0;130;90;2;1;0;0;1;1
+43922;21208;2;168;90.0;120;80;1;1;0;0;1;0
+43924;18235;1;166;96.0;130;90;2;1;0;0;0;0
+43925;14597;1;160;60.0;120;60;1;1;0;0;1;0
+43927;19477;1;159;78.0;130;100;2;1;0;0;1;1
+43929;17316;1;165;68.0;110;70;3;3;0;0;1;1
+43930;20737;2;159;64.0;120;80;1;1;0;0;1;0
+43931;15992;1;173;66.0;100;70;2;2;0;1;1;1
+43933;18493;1;168;72.0;120;80;1;3;0;0;1;0
+43934;19472;1;155;62.0;110;70;2;1;0;0;1;1
+43935;15224;1;161;67.0;120;80;2;2;0;0;1;0
+43936;20120;1;160;68.0;140;90;2;1;0;0;1;1
+43937;18421;1;169;62.0;120;80;1;1;0;0;1;0
+43938;21010;1;168;80.0;140;90;1;1;0;0;1;1
+43939;16131;2;175;62.0;110;80;1;1;0;0;1;0
+43941;20169;2;174;94.0;140;90;1;1;0;0;0;1
+43942;17717;1;172;70.0;130;80;1;3;0;0;0;1
+43944;20648;1;159;61.0;150;1100;1;1;0;0;1;0
+43945;19584;2;165;61.0;110;80;1;1;1;1;1;0
+43946;14665;1;164;58.0;110;70;1;1;0;0;1;0
+43947;19194;1;163;91.0;130;100;1;2;0;0;1;1
+43948;21194;2;180;76.0;120;80;1;1;0;0;1;0
+43949;21377;1;156;79.0;130;80;1;1;0;0;1;1
+43950;19782;1;160;58.0;120;80;1;1;0;0;1;0
+43953;18977;1;154;99.0;180;100;2;2;0;0;1;1
+43954;15302;1;156;54.0;100;60;1;1;0;0;1;0
+43955;15064;1;166;83.0;110;80;1;1;0;0;1;0
+43957;18147;2;172;72.0;120;70;1;1;0;0;1;0
+43958;19217;1;160;77.0;120;70;1;2;0;1;1;0
+43959;17461;1;167;75.0;150;1000;1;1;0;0;0;1
+43960;19897;2;174;112.0;140;90;2;1;0;0;1;1
+43962;21085;1;165;53.0;120;75;1;1;0;0;1;1
+43963;22019;1;157;80.0;130;80;2;1;0;0;1;1
+43964;16802;1;156;69.0;120;80;1;1;0;0;1;0
+43965;16760;2;162;70.0;100;60;1;1;0;0;0;0
+43966;21734;1;157;68.0;120;80;3;3;0;0;1;1
+43967;16972;2;165;75.0;120;80;1;1;1;0;0;0
+43968;16271;1;164;103.0;110;70;2;1;0;1;1;0
+43969;16567;1;165;83.0;120;80;2;1;0;0;1;1
+43970;20607;1;156;81.0;150;90;1;1;0;0;1;1
+43971;16681;1;166;89.0;130;100;2;2;0;0;1;1
+43972;18849;2;167;89.0;120;80;1;1;0;0;1;0
+43974;17511;1;154;72.0;90;60;1;1;0;0;0;0
+43975;20563;2;165;70.0;100;70;2;1;0;0;1;0
+43977;18934;1;151;105.0;12;80;1;1;0;0;0;0
+43979;19648;2;176;91.0;110;70;3;2;1;1;1;0
+43980;16831;2;173;81.0;120;80;1;1;0;0;1;0
+43981;19507;1;150;56.0;120;70;1;1;1;0;1;0
+43982;19146;1;164;62.0;120;80;1;1;0;0;0;0
+43983;21064;1;163;105.0;140;90;1;1;0;0;1;1
+43984;16191;1;164;60.0;100;60;2;2;0;0;1;1
+43986;20242;1;160;72.0;130;90;1;3;0;0;1;0
+43987;15890;1;155;67.0;140;90;1;2;0;0;1;1
+43988;21810;1;165;70.0;120;80;1;1;0;0;1;0
+43989;23510;1;154;53.0;140;1000;1;1;0;0;1;0
+43990;17334;2;184;121.0;120;80;2;1;0;0;1;0
+43991;19217;1;170;70.0;100;60;1;1;0;0;1;0
+43992;23160;1;166;73.0;140;90;2;1;0;0;0;1
+43993;20930;2;166;118.0;150;90;1;1;1;0;1;1
+43995;17662;2;175;90.0;120;80;1;1;0;0;1;0
+43996;14615;1;168;90.0;120;80;1;1;0;0;1;1
+43997;14589;2;168;61.0;120;80;1;1;1;1;0;0
+43998;16093;2;162;70.0;150;120;1;1;0;0;1;1
+43999;22743;1;152;76.0;140;80;1;1;0;0;1;1
+44000;14334;1;163;70.0;130;80;1;1;0;0;1;0
+44001;20969;1;158;84.0;140;90;3;1;1;0;0;0
+44004;19908;1;168;68.0;120;80;1;1;0;0;1;1
+44006;23185;1;158;73.0;140;70;3;3;0;0;1;1
+44007;19861;1;161;71.0;130;90;2;1;0;0;1;1
+44008;18230;1;157;56.0;120;80;2;1;1;0;1;0
+44009;21683;1;168;108.0;159;88;1;1;0;0;0;0
+44012;20281;1;178;70.0;120;80;1;1;0;0;1;1
+44013;16736;2;162;60.0;120;70;1;1;0;0;1;0
+44014;19096;1;150;54.0;80;60;1;1;0;0;1;0
+44016;19760;1;171;86.0;120;80;1;1;0;0;1;0
+44017;14497;1;166;98.0;130;90;1;1;0;0;1;0
+44019;21108;1;152;74.0;143;80;3;2;0;1;1;1
+44020;18949;2;188;80.0;120;90;1;1;0;0;0;0
+44021;18301;1;168;92.0;120;90;1;1;0;0;1;0
+44022;20207;1;154;52.0;120;80;2;1;0;0;1;0
+44023;19703;2;175;65.0;130;80;1;1;0;0;1;0
+44025;21785;1;165;85.0;120;80;1;1;0;0;1;0
+44026;21945;1;155;75.0;140;90;1;1;0;0;0;1
+44027;14585;1;164;60.0;110;60;1;1;0;0;1;0
+44028;22032;1;148;64.0;130;80;1;1;0;0;1;0
+44029;18962;2;170;80.0;130;90;3;1;0;0;1;1
+44030;22690;1;168;78.0;120;80;1;1;0;0;1;0
+44031;17390;1;165;100.0;120;80;3;1;0;0;1;1
+44032;18245;2;163;71.0;110;70;1;1;1;1;1;0
+44033;16735;2;160;59.0;120;80;1;1;0;0;1;0
+44035;23448;1;168;95.0;145;100;3;3;0;0;0;1
+44036;21776;1;164;100.0;150;90;3;1;0;1;1;1
+44037;23276;2;164;68.0;120;80;1;1;0;1;0;1
+44038;16704;1;150;55.0;120;70;2;2;0;0;0;1
+44039;18449;1;158;65.0;130;80;1;1;0;0;1;0
+44040;18314;1;166;68.0;120;80;3;3;0;0;1;1
+44041;21751;1;164;75.0;180;100;3;1;0;0;0;0
+44042;19613;1;169;75.0;120;80;1;1;0;0;1;0
+44043;23300;2;164;81.0;130;80;1;1;0;0;1;0
+44044;15281;1;166;61.0;120;80;2;1;0;0;0;0
+44045;23531;2;176;76.0;140;80;1;1;0;0;1;1
+44046;22462;1;163;72.0;140;95;1;1;0;0;1;1
+44047;16265;1;168;65.0;110;80;1;1;0;0;0;0
+44048;23474;1;152;87.0;130;90;2;1;0;0;1;0
+44049;21695;1;167;73.0;130;90;1;1;0;0;1;1
+44050;15406;1;155;86.0;160;110;2;1;0;0;1;1
+44051;17400;1;148;46.0;160;70;1;1;0;0;1;1
+44052;20422;1;163;82.0;120;80;1;1;0;0;1;1
+44053;23567;1;155;72.0;110;70;1;1;0;0;1;1
+44054;19766;1;164;68.0;140;90;2;1;0;0;1;1
+44055;21826;2;170;87.0;130;70;1;1;0;0;1;1
+44056;21093;1;164;79.0;120;80;1;1;0;0;1;1
+44057;20281;1;164;74.0;110;70;1;1;0;0;1;1
+44058;20373;2;163;70.0;130;80;1;1;0;0;1;0
+44060;20499;1;170;68.0;160;90;1;1;0;0;0;1
+44061;14501;1;156;90.0;130;90;1;1;0;0;1;0
+44062;18054;2;168;89.0;120;80;1;1;0;0;0;0
+44063;23503;2;161;64.0;160;100;2;2;0;0;0;0
+44065;19211;1;156;88.0;139;79;1;1;0;0;1;1
+44070;17405;1;160;56.0;110;70;1;1;0;0;1;0
+44071;18362;1;162;58.0;150;90;1;1;0;0;1;1
+44072;18663;1;154;64.0;130;90;1;1;0;0;1;1
+44073;19695;2;172;86.0;170;120;1;1;0;0;1;1
+44075;22675;2;165;71.0;160;90;2;2;1;0;1;1
+44076;15216;1;155;67.0;140;90;1;1;0;0;1;0
+44077;20313;2;165;80.0;130;80;3;3;0;0;1;1
+44078;19865;2;184;76.0;120;80;1;1;0;0;1;1
+44079;23532;1;157;90.0;160;100;1;1;0;0;1;1
+44081;16831;2;170;69.0;110;70;1;1;0;0;0;0
+44082;19062;1;170;70.0;110;70;1;1;0;0;1;0
+44083;21826;2;170;65.0;120;80;1;1;0;0;1;0
+44084;14380;2;176;82.0;120;80;2;1;1;1;1;0
+44086;19884;1;145;65.0;140;90;3;1;0;0;1;0
+44088;23409;1;165;83.0;130;90;1;2;0;0;1;1
+44090;22789;2;158;67.0;120;80;1;1;0;0;1;0
+44091;21118;1;165;98.0;130;90;1;1;0;0;0;1
+44092;19770;1;151;109.0;140;90;1;1;0;0;1;1
+44096;19832;2;170;67.0;120;80;1;1;1;0;1;0
+44097;14616;1;158;78.0;120;80;1;1;0;0;1;0
+44098;19175;2;155;70.0;140;90;1;1;0;0;0;0
+44099;15190;1;163;83.0;120;80;1;1;1;0;1;0
+44101;20469;1;158;62.0;120;80;2;1;0;0;1;1
+44102;23379;2;174;79.0;130;90;1;1;0;0;0;1
+44103;16107;1;166;70.0;120;80;1;1;0;0;1;0
+44104;18243;2;160;65.0;140;70;1;3;0;0;1;1
+44105;15216;1;169;63.0;110;70;1;1;0;0;1;0
+44106;19101;1;167;74.0;110;80;1;1;0;0;1;0
+44108;15128;1;157;59.0;110;70;1;1;0;0;1;0
+44109;14422;1;154;72.0;130;80;1;1;0;0;1;0
+44110;17721;2;170;90.0;120;80;1;1;0;0;1;0
+44111;15578;2;168;59.0;120;80;1;1;0;0;1;0
+44112;22396;1;159;73.0;150;90;3;1;0;0;1;1
+44113;15334;1;172;72.0;120;75;1;1;0;0;0;0
+44114;23125;1;154;61.0;130;80;1;1;0;0;0;1
+44115;20246;1;160;79.0;100;70;1;1;0;0;1;1
+44117;16210;1;157;55.0;100;70;1;1;0;0;1;0
+44118;18858;2;175;96.0;110;70;1;1;0;0;0;0
+44120;23282;2;170;79.0;150;90;1;3;0;0;1;0
+44121;22575;2;165;65.0;120;80;1;1;0;0;0;1
+44124;19703;1;149;67.0;120;80;1;1;0;0;1;1
+44125;19116;2;168;62.0;120;80;1;1;0;1;1;0
+44126;17758;2;158;60.0;120;80;1;1;0;0;1;1
+44127;19228;1;165;69.0;110;70;1;1;0;0;1;0
+44128;23159;1;162;100.0;130;80;1;1;0;0;0;1
+44130;16856;1;162;108.0;150;90;2;3;1;0;1;1
+44131;16652;1;170;90.0;180;100;2;2;0;0;1;1
+44133;23305;2;175;75.0;180;80;1;1;0;0;1;1
+44134;14582;1;168;82.0;120;70;1;2;0;0;1;1
+44135;16776;2;168;70.0;120;80;2;1;1;1;1;0
+44136;20494;2;166;81.0;140;90;1;1;0;0;1;1
+44137;20030;1;158;55.0;100;70;1;1;0;0;1;0
+44138;21064;2;170;69.0;150;90;3;3;0;0;1;1
+44139;16288;2;164;70.0;100;70;1;1;0;0;1;0
+44140;21891;2;173;80.0;120;80;2;2;1;1;1;0
+44142;19953;1;165;75.0;120;79;3;3;0;0;1;1
+44143;19669;2;172;78.0;140;90;1;1;0;0;1;1
+44144;16839;2;168;85.0;120;80;1;1;0;0;1;0
+44145;21782;1;159;68.0;120;80;1;1;0;0;1;1
+44146;17282;2;178;85.0;120;80;2;1;0;0;1;1
+44147;21940;2;174;114.0;120;80;1;1;0;0;1;0
+44148;23413;2;167;81.0;140;90;1;2;0;0;1;1
+44149;16165;2;172;77.0;100;60;1;1;0;0;1;0
+44150;14562;1;169;76.0;110;70;1;1;0;0;1;0
+44151;22419;1;155;73.0;150;80;2;1;0;0;1;1
+44153;20381;1;156;73.0;140;80;1;1;0;0;0;1
+44154;17380;1;140;50.0;140;90;3;1;0;0;1;1
+44155;19566;1;159;67.0;140;90;2;1;0;0;1;0
+44156;17550;1;170;64.0;110;70;1;1;0;0;1;0
+44158;16221;2;178;113.0;150;100;1;1;1;0;1;1
+44160;19159;1;159;68.0;120;80;1;1;0;0;0;0
+44161;16049;1;155;50.0;120;80;1;1;0;0;1;1
+44162;19942;2;171;75.0;130;80;1;1;0;0;0;1
+44163;23126;2;169;62.0;120;80;2;1;0;0;1;1
+44166;16592;2;179;100.0;150;90;2;1;0;0;1;1
+44168;19676;1;158;55.0;160;80;3;1;0;0;0;0
+44169;20507;1;155;57.0;110;80;1;1;0;0;0;0
+44171;23237;1;156;85.0;140;90;3;3;0;0;0;1
+44172;16697;2;162;71.0;120;80;1;1;0;0;1;0
+44174;16109;1;156;71.0;120;80;1;1;0;0;1;0
+44177;23113;1;159;63.0;130;90;1;1;0;0;0;1
+44178;23290;1;165;56.0;165;90;1;1;0;0;1;1
+44179;16889;1;156;58.0;110;80;1;1;0;0;1;0
+44180;18403;1;165;65.0;120;80;1;1;0;0;1;0
+44182;18274;2;170;68.0;120;80;1;1;0;0;1;1
+44183;17960;1;154;46.0;110;80;1;1;0;0;1;0
+44184;23494;1;152;70.0;130;90;1;1;0;0;1;1
+44185;22549;2;180;86.0;150;90;1;1;0;0;1;1
+44186;18400;2;160;60.0;120;80;1;1;0;0;0;0
+44187;16739;1;156;52.0;12;80;1;1;0;0;1;0
+44188;15098;1;163;86.0;120;90;1;1;0;0;1;0
+44190;23290;1;162;81.0;150;100;1;1;0;0;1;0
+44191;21923;1;165;87.0;130;90;1;1;0;0;0;0
+44193;21807;1;148;41.0;130;80;2;1;0;0;1;0
+44194;23123;1;156;67.0;140;80;1;1;0;0;0;1
+44196;20401;1;160;84.0;120;80;1;1;0;0;1;1
+44197;20925;2;178;78.0;110;80;3;1;0;0;1;1
+44198;14863;1;164;105.0;90;60;3;1;0;0;1;1
+44199;22509;1;158;65.0;110;70;1;1;0;0;1;0
+44200;16021;2;172;71.0;120;80;1;1;0;0;0;1
+44201;15088;1;159;74.0;130;90;1;1;0;0;1;1
+44202;20348;1;161;87.0;110;80;2;2;0;0;1;0
+44203;22010;1;156;60.0;130;90;1;1;0;0;1;1
+44204;18271;2;172;80.0;120;80;1;1;0;0;1;0
+44206;16756;1;157;55.0;100;70;1;1;0;0;1;0
+44207;16601;1;162;72.0;140;90;3;3;0;0;0;1
+44208;21979;1;174;89.0;140;100;1;1;0;0;1;1
+44209;19602;1;163;70.0;110;70;1;1;0;0;1;0
+44210;20472;1;151;60.0;90;60;2;1;0;0;1;0
+44211;16887;1;161;63.0;120;70;1;1;0;0;1;0
+44212;18845;1;156;80.0;120;70;1;1;0;0;1;0
+44213;16785;1;170;65.0;110;80;1;1;0;0;1;1
+44214;22566;1;160;66.0;120;80;1;1;0;0;0;0
+44215;14443;1;159;78.0;159;78;1;1;0;0;1;0
+44216;21608;1;163;62.0;100;70;1;1;0;0;1;1
+44217;14859;1;167;68.0;110;70;1;3;0;0;1;0
+44219;16209;1;160;83.0;120;80;1;1;0;0;1;0
+44221;21677;1;163;85.0;100;70;3;3;0;0;1;0
+44222;23310;2;169;113.0;130;90;1;1;0;0;1;1
+44223;23150;1;170;85.0;130;80;1;1;0;0;0;0
+44224;18767;1;165;58.0;140;80;1;1;0;0;0;1
+44225;17643;1;170;74.0;160;100;2;1;0;0;1;1
+44226;18458;1;164;80.0;120;90;1;1;0;0;0;0
+44227;22430;1;156;102.0;130;80;1;1;0;0;1;1
+44229;18994;1;164;75.0;100;70;1;1;0;0;1;1
+44230;19022;1;158;54.0;100;60;3;3;0;0;1;0
+44231;15978;2;172;68.0;120;80;1;1;0;0;1;0
+44232;14778;1;162;53.0;150;100;2;1;0;0;1;1
+44233;18137;1;163;62.0;120;80;1;1;0;0;0;0
+44234;20470;2;172;88.0;140;90;1;1;1;1;1;1
+44235;23545;1;158;58.0;120;80;1;1;0;0;1;0
+44236;15228;2;175;68.0;120;80;1;1;1;0;1;0
+44238;23201;2;162;71.0;120;70;1;1;0;0;1;1
+44240;22688;1;154;58.0;170;90;1;1;0;0;1;1
+44241;18281;2;168;79.0;100;70;1;1;0;0;1;1
+44243;20362;2;178;78.0;120;70;2;1;1;0;1;1
+44244;18462;1;160;63.0;120;80;1;1;0;0;1;0
+44245;20991;1;164;85.0;120;80;2;1;0;0;1;0
+44246;16950;1;162;54.0;110;80;1;1;0;0;1;0
+44248;19036;1;165;89.0;130;80;1;1;0;0;1;0
+44249;16605;2;178;103.0;150;90;1;2;0;0;1;1
+44250;15954;1;165;72.0;120;70;1;3;0;0;1;0
+44252;18349;1;164;68.0;100;70;1;1;0;0;0;0
+44253;16730;2;168;68.0;120;80;1;1;0;0;1;0
+44254;16596;1;158;60.0;120;80;1;1;0;0;1;0
+44255;23200;1;147;74.0;140;90;1;1;0;0;1;1
+44256;14459;2;164;60.0;120;80;1;1;0;0;1;0
+44258;20586;2;162;68.0;130;80;1;1;0;0;1;1
+44259;14664;1;165;74.0;120;70;1;1;0;0;0;0
+44261;15321;2;163;56.0;110;70;1;1;0;0;1;0
+44262;19762;1;167;80.0;130;90;2;2;0;0;1;1
+44263;15842;2;167;65.0;120;80;1;1;0;0;1;0
+44264;21988;1;167;70.0;120;80;1;1;0;0;1;0
+44265;23485;1;165;65.0;120;80;1;1;0;0;1;1
+44266;23174;1;167;72.0;130;80;1;1;0;0;0;1
+44267;21159;1;175;75.0;120;80;1;1;0;0;1;1
+44268;19745;1;162;106.0;140;90;1;3;0;0;1;1
+44269;20279;2;170;80.0;140;69;1;1;0;0;1;1
+44270;16767;2;175;93.0;120;80;2;1;0;0;0;1
+44271;16250;1;157;102.0;170;100;1;2;0;0;1;1
+44272;23598;2;177;78.0;150;90;2;1;0;0;1;1
+44273;22852;2;170;84.0;130;70;1;1;0;0;1;1
+44274;19771;1;162;74.0;160;70;3;1;0;0;1;1
+44275;22386;1;158;95.0;120;70;1;1;0;0;1;0
+44277;23649;1;174;65.0;120;80;2;2;0;0;1;1
+44279;22685;2;175;70.0;130;90;1;1;0;0;1;1
+44281;18181;1;164;71.0;140;90;1;1;0;0;1;1
+44282;16736;1;155;86.0;120;80;1;1;0;0;0;0
+44284;21267;1;170;87.0;120;80;1;1;0;0;1;1
+44285;18159;1;165;60.0;110;70;1;1;0;0;1;0
+44286;17469;1;159;67.0;100;70;1;1;0;0;1;1
+44287;20577;1;170;56.0;120;70;3;3;0;0;1;1
+44288;23135;1;150;70.0;120;80;2;2;0;0;1;1
+44289;14635;1;162;67.0;160;90;1;1;0;0;1;1
+44290;21912;1;168;86.0;130;90;3;1;0;0;1;1
+44291;20588;1;155;44.0;90;70;1;1;0;0;1;0
+44293;22561;1;151;57.0;120;80;3;3;0;0;1;0
+44295;15070;1;161;61.0;140;90;1;1;0;0;0;1
+44296;19739;1;162;62.0;120;80;1;1;0;0;0;0
+44297;19875;2;168;104.0;140;90;1;1;0;0;1;1
+44298;17527;2;178;99.0;130;90;1;1;0;0;1;0
+44299;20749;2;160;67.0;150;100;1;1;0;0;1;1
+44300;20335;1;154;75.0;120;80;1;1;0;0;1;1
+44302;16912;1;158;60.0;120;80;1;1;0;0;1;0
+44303;22132;2;161;73.0;130;90;1;1;0;0;1;0
+44304;15393;1;162;71.0;160;80;2;2;0;1;1;1
+44305;20229;2;174;84.0;142;85;1;1;0;0;1;1
+44306;15958;1;184;60.0;100;60;1;1;0;0;1;0
+44307;21064;1;169;70.0;110;70;1;1;0;0;1;1
+44312;20297;1;160;60.0;120;80;1;1;0;0;1;0
+44313;18954;1;158;57.0;120;70;1;1;0;0;1;0
+44314;18993;1;168;76.0;120;80;1;1;0;0;1;1
+44315;19037;2;171;106.0;140;90;1;1;0;0;1;1
+44317;21721;1;167;94.0;140;80;1;1;0;0;0;1
+44318;18161;1;158;50.0;120;80;1;1;0;0;0;0
+44319;20718;1;170;80.0;180;100;3;3;0;0;0;1
+44320;21068;1;155;69.0;130;80;3;1;0;0;1;1
+44321;20184;1;150;118.0;110;70;1;2;0;0;0;0
+44322;18786;1;152;67.0;100;80;1;2;0;1;0;0
+44324;21157;1;155;74.0;140;90;1;3;0;0;1;0
+44325;19151;1;162;76.0;120;80;1;1;0;0;1;0
+44326;14572;1;142;57.0;110;80;1;3;0;0;0;0
+44327;19544;2;167;68.0;120;80;1;1;0;0;1;0
+44328;22013;1;170;70.0;130;80;1;1;0;0;1;1
+44329;20246;1;158;68.0;130;80;1;1;0;0;1;1
+44331;16900;1;152;124.0;140;80;2;2;0;0;1;1
+44332;21295;1;166;68.0;120;70;1;1;0;0;1;1
+44333;20962;2;172;87.0;130;80;3;3;0;0;1;1
+44334;20376;2;180;85.0;135;90;1;1;0;1;1;0
+44335;20615;1;160;72.0;160;1000;1;1;0;0;1;1
+44336;20296;1;159;70.0;150;90;1;1;0;0;1;1
+44338;22765;1;175;70.0;120;80;1;1;0;0;0;0
+44339;15271;2;175;95.0;130;80;1;1;1;1;1;1
+44340;20491;1;160;65.0;130;90;3;3;0;0;1;0
+44341;21311;1;161;76.0;148;89;2;1;0;0;1;1
+44342;22656;1;159;74.0;130;80;1;1;0;0;1;1
+44343;19671;1;165;70.0;120;80;1;3;0;0;1;0
+44344;21922;1;159;58.0;120;80;2;3;0;0;0;1
+44345;15851;1;164;61.0;130;80;1;2;0;0;1;1
+44346;20561;1;170;72.0;120;80;1;1;0;0;1;0
+44347;22734;1;155;80.0;120;80;1;1;0;0;0;0
+44348;18252;2;175;79.0;140;90;1;1;0;0;1;1
+44349;17413;2;168;81.0;120;80;1;1;0;0;1;1
+44351;23309;2;178;80.0;130;80;3;1;0;0;1;1
+44353;16614;1;162;115.0;120;80;1;1;0;0;1;1
+44354;20212;2;170;75.0;120;80;1;1;0;0;0;0
+44355;22829;1;165;75.0;120;70;1;1;0;0;1;1
+44356;19614;1;164;88.0;110;70;1;3;0;0;1;0
+44358;22515;2;167;78.0;140;90;1;1;0;0;1;0
+44360;19003;2;170;75.0;120;80;3;3;0;0;1;1
+44361;18256;2;176;92.0;160;1000;1;1;0;0;1;1
+44363;18616;1;168;65.0;110;80;1;1;0;0;0;0
+44364;22654;2;167;75.0;150;90;1;1;0;0;1;1
+44365;21789;1;150;70.0;140;100;2;1;0;0;1;1
+44367;20336;1;168;65.0;120;80;1;1;0;0;1;0
+44371;19862;1;151;60.0;150;90;1;1;0;0;1;0
+44372;21241;2;177;84.0;110;70;1;3;0;1;0;0
+44373;22505;2;168;76.0;110;70;1;1;0;0;1;1
+44374;16839;1;163;63.0;120;80;1;1;0;0;1;0
+44375;23354;2;168;75.0;120;80;1;1;0;0;0;1
+44376;21883;2;177;77.0;130;80;3;1;0;0;1;0
+44377;23559;2;162;81.0;125;75;1;1;0;0;0;0
+44378;21083;1;160;70.0;120;80;1;1;0;0;0;1
+44379;19883;1;166;68.0;120;80;1;1;0;0;1;1
+44380;20989;1;170;117.0;140;90;3;3;0;0;1;1
+44381;18059;1;156;52.0;130;80;1;1;0;0;1;0
+44382;19751;1;162;65.0;120;80;2;1;0;0;1;1
+44383;20134;1;165;65.0;120;80;1;1;0;0;0;1
+44384;19686;2;165;98.0;165;100;1;1;0;0;1;1
+44385;17508;1;166;64.0;110;80;1;1;0;0;0;1
+44386;19642;2;160;64.0;150;90;3;3;0;0;0;1
+44387;20506;1;165;66.0;110;60;1;1;0;0;1;0
+44389;23165;1;164;70.0;120;80;1;1;0;0;1;1
+44390;20325;1;167;86.0;140;80;3;3;0;0;0;1
+44392;14411;2;161;59.0;110;70;1;1;0;0;1;0
+44393;18163;1;160;64.0;110;60;1;1;0;0;0;1
+44394;18886;1;168;48.0;110;60;1;1;0;0;1;0
+44395;22888;1;167;67.0;120;80;1;1;0;0;1;1
+44398;14502;1;164;78.0;120;80;1;1;0;0;1;1
+44400;21134;2;166;71.0;190;90;1;1;0;0;0;1
+44401;19012;1;160;65.0;120;80;1;1;0;0;0;0
+44402;16591;1;150;82.0;140;90;1;1;0;0;1;1
+44403;19642;1;162;78.0;110;70;1;1;0;0;1;0
+44404;20418;1;161;80.0;130;80;1;1;0;0;1;1
+44405;21272;1;155;57.0;120;80;1;1;0;0;1;0
+44407;23221;1;165;70.0;110;70;1;1;0;0;1;1
+44409;16186;1;151;94.0;145;90;2;2;0;0;0;1
+44411;19658;1;154;61.0;100;60;1;1;0;0;1;1
+44412;14477;1;162;60.0;130;90;3;3;0;0;0;1
+44414;16584;1;164;92.0;140;80;1;1;0;0;1;1
+44415;17046;1;174;54.0;120;80;2;2;0;0;1;0
+44416;23268;2;178;102.0;130;90;1;1;0;0;0;1
+44417;18036;2;165;73.0;120;80;1;1;0;1;1;0
+44419;21187;1;155;76.0;140;90;1;1;0;0;0;1
+44420;21927;2;172;93.0;130;80;1;1;0;0;1;0
+44422;18785;1;156;90.0;145;90;1;1;0;0;1;1
+44423;17408;1;168;113.0;130;90;1;1;0;0;1;0
+44424;19663;2;163;78.0;120;80;1;1;0;0;1;1
+44427;21203;1;162;71.0;140;80;1;1;0;0;0;1
+44429;15344;2;184;85.0;140;80;1;1;1;1;1;0
+44430;19600;1;167;111.0;130;80;1;1;0;0;1;1
+44431;18427;1;176;80.0;120;80;1;1;0;0;1;1
+44433;20296;2;170;76.0;130;90;3;3;0;0;1;1
+44435;18872;2;160;60.0;120;80;1;1;0;0;0;0
+44436;21255;1;162;56.0;120;80;3;3;0;0;1;1
+44437;19240;1;178;78.0;120;80;1;1;0;0;0;0
+44440;21797;1;169;75.0;120;80;1;1;0;0;1;0
+44442;16154;2;163;75.0;140;90;1;1;0;0;1;1
+44444;19142;1;155;91.0;120;80;1;1;0;0;1;0
+44446;20431;2;179;81.0;120;80;1;1;0;0;1;1
+44447;19098;1;172;88.0;130;90;1;1;0;0;1;1
+44448;21205;2;170;65.0;120;80;1;1;0;0;1;0
+44449;17538;1;163;72.0;120;80;1;1;0;0;1;0
+44450;15310;1;169;65.0;120;80;1;1;0;0;0;1
+44451;21780;1;168;65.0;130;80;3;1;0;0;0;1
+44452;20253;1;156;71.0;130;80;1;1;0;0;1;0
+44453;14841;1;164;88.0;130;90;1;1;0;0;1;1
+44454;16031;1;160;70.0;120;80;3;1;0;0;1;1
+44455;20418;1;161;77.0;120;70;1;1;0;0;1;1
+44456;18173;1;168;94.0;120;80;1;1;0;0;1;0
+44458;23404;1;152;72.0;100;70;1;1;0;0;1;1
+44459;19059;2;125;70.0;120;70;1;1;0;0;1;0
+44461;19649;1;170;88.0;120;70;1;1;0;0;0;0
+44462;22562;2;171;58.0;150;90;1;1;1;1;1;1
+44463;14585;1;157;58.0;90;70;1;1;0;0;1;0
+44464;20986;2;168;73.0;120;80;3;3;0;0;1;0
+44465;18935;1;170;75.0;120;80;1;1;0;0;1;0
+44466;19953;1;157;61.0;160;90;1;1;0;0;1;1
+44467;18709;1;165;54.0;150;90;1;1;0;0;1;1
+44470;18537;1;168;72.0;120;80;1;1;0;0;1;0
+44471;20522;1;160;100.0;130;80;1;1;0;0;1;0
+44472;14627;1;162;102.0;110;70;1;1;0;0;1;0
+44473;20493;1;164;65.0;120;80;1;1;0;0;1;0
+44475;21759;2;168;70.0;188;95;1;1;1;0;1;0
+44477;16798;2;180;114.0;150;100;2;1;1;1;0;1
+44479;21629;1;158;48.0;100;60;2;1;0;0;1;0
+44481;18449;2;182;80.0;110;70;1;1;0;0;1;1
+44482;21654;1;160;65.0;110;60;1;1;0;0;1;1
+44483;20166;1;163;91.0;110;70;1;1;0;0;1;0
+44484;20199;2;182;86.0;130;90;1;1;0;0;0;1
+44485;19619;1;155;60.0;130;80;1;1;0;0;1;0
+44486;19692;1;154;81.0;130;70;2;2;0;0;0;1
+44487;14862;2;178;83.0;120;80;1;1;1;0;1;0
+44490;20272;1;164;62.0;140;90;2;1;0;0;1;1
+44491;20676;1;165;75.0;120;80;2;1;0;0;1;0
+44496;16667;1;158;66.0;110;70;2;1;0;0;1;1
+44497;14550;2;170;110.0;150;1000;2;1;1;0;1;1
+44498;16053;1;159;57.0;140;80;2;2;0;0;1;1
+44500;23511;2;176;79.0;120;80;1;1;0;0;1;0
+44501;16052;1;157;97.0;130;90;1;1;0;0;1;0
+44502;18019;1;155;52.0;120;80;1;1;0;0;0;1
+44503;18372;2;166;72.0;110;70;2;2;0;0;1;1
+44505;23448;2;165;75.0;160;80;2;1;0;0;1;1
+44506;21922;2;172;74.0;140;90;1;1;1;0;1;1
+44507;16767;1;161;68.0;120;70;1;1;0;0;1;0
+44508;22052;2;171;98.0;170;100;1;1;1;0;1;0
+44510;19618;2;173;93.0;140;80;2;1;0;0;0;1
+44511;19691;1;160;84.0;110;70;2;1;0;0;1;1
+44515;19756;1;168;70.0;120;80;1;1;0;0;1;1
+44516;18267;1;160;77.0;120;80;2;1;0;0;1;1
+44518;21244;1;165;90.0;130;90;3;1;0;0;1;0
+44519;18961;2;175;99.0;120;80;3;1;0;1;0;0
+44520;14564;2;167;100.0;130;70;1;1;0;0;1;0
+44521;15371;1;153;56.0;110;70;1;1;0;0;1;0
+44522;23372;2;170;67.0;140;90;1;1;0;0;1;1
+44524;19702;1;158;74.0;140;100;1;1;0;0;1;1
+44526;19774;1;159;67.0;110;80;1;3;0;0;1;0
+44527;14671;1;164;70.0;120;80;1;1;0;0;1;0
+44529;19813;1;167;60.0;120;80;1;1;0;0;1;0
+44531;21934;1;158;78.0;130;80;1;1;0;0;1;0
+44533;20157;1;173;76.0;110;90;1;1;0;0;1;1
+44534;20372;1;155;51.0;140;90;3;1;0;0;0;1
+44535;21776;1;159;59.0;180;100;2;3;0;0;1;1
+44536;14624;2;168;64.0;120;80;1;1;0;0;1;0
+44537;15505;2;156;51.0;120;80;1;1;0;0;1;1
+44538;21328;1;164;64.0;120;80;1;1;0;0;1;0
+44540;16079;2;172;59.2;90;60;1;1;0;0;1;0
+44541;21870;2;162;78.0;120;80;1;1;1;0;1;0
+44543;20571;1;172;92.0;140;90;1;1;0;0;1;1
+44545;22603;1;151;58.0;200;110;2;1;0;0;0;1
+44546;16206;1;166;54.0;100;70;1;1;0;0;1;0
+44547;18891;2;161;60.0;130;80;1;1;1;0;1;1
+44548;20543;1;178;69.0;100;70;1;1;0;0;1;0
+44549;18789;1;157;59.0;130;90;3;1;0;0;1;0
+44551;18170;1;166;120.0;120;80;1;1;0;0;0;0
+44552;21103;1;163;64.0;120;80;1;1;0;0;1;1
+44553;21866;1;165;75.0;140;90;1;1;0;0;0;1
+44554;15253;1;155;55.0;110;70;1;2;0;0;1;0
+44556;19022;2;176;108.0;130;80;3;2;0;0;1;1
+44557;23503;1;164;78.0;130;80;3;3;0;1;1;1
+44559;15124;1;164;66.0;150;90;1;1;0;0;1;1
+44560;18111;1;160;64.0;11;80;1;1;0;0;1;0
+44562;16027;1;152;73.0;120;80;1;1;0;0;0;1
+44563;17918;1;158;80.0;130;90;1;1;0;0;1;0
+44565;15524;2;170;89.0;160;90;1;1;0;0;0;1
+44566;16111;2;170;68.0;110;60;1;1;0;0;1;0
+44567;18379;1;160;78.0;140;90;2;1;0;0;0;1
+44568;20988;2;169;106.0;140;80;2;1;0;0;1;1
+44571;14643;1;162;84.0;120;90;1;1;0;0;1;0
+44572;21917;2;170;81.0;120;80;3;3;1;0;0;1
+44576;17073;1;167;62.0;110;70;1;1;0;0;1;0
+44577;18892;1;162;75.0;150;90;1;1;0;0;1;1
+44578;22555;1;165;68.0;140;80;1;1;0;0;0;1
+44579;20455;1;165;45.0;120;80;1;1;0;0;0;0
+44580;17622;1;158;70.0;150;80;1;1;0;0;1;1
+44582;19789;1;159;51.0;130;90;1;1;0;0;1;1
+44583;17642;2;160;57.0;120;80;1;1;0;1;1;0
+44585;18939;1;150;85.0;150;1000;3;1;0;0;1;1
+44586;17510;1;154;91.0;140;90;3;1;0;0;1;1
+44587;22553;1;163;88.0;120;80;2;2;0;0;1;1
+44590;20462;1;168;65.0;120;80;2;1;0;0;1;1
+44591;14473;1;153;64.0;110;80;1;1;0;0;1;0
+44592;22132;1;165;73.0;95;170;1;3;0;0;1;1
+44597;16842;1;161;64.0;110;80;1;1;0;0;1;0
+44598;20406;1;163;65.3;120;80;1;1;0;0;1;1
+44599;19608;2;170;87.0;160;90;1;1;0;0;1;1
+44600;16812;2;164;88.0;140;90;1;1;0;0;1;0
+44601;21159;1;156;43.0;140;80;1;1;0;0;1;0
+44602;18296;1;153;60.0;110;70;1;3;0;1;1;0
+44603;20253;2;166;54.0;120;80;1;1;1;0;1;0
+44604;20296;2;173;71.0;180;100;2;1;0;0;1;1
+44605;14460;2;176;82.0;120;80;1;1;1;0;1;0
+44606;20993;2;178;82.0;120;80;1;1;0;0;1;0
+44607;16661;2;168;100.0;130;80;1;2;0;0;0;1
+44608;20553;1;164;71.0;110;80;1;1;0;0;1;0
+44611;16040;2;170;80.0;120;80;1;1;0;0;1;0
+44613;14455;2;180;94.0;125;80;2;1;0;1;0;1
+44615;20263;2;169;80.0;110;90;1;1;0;0;1;1
+44617;20915;1;164;92.0;180;80;2;3;0;0;1;1
+44619;15218;2;174;101.0;100;80;2;1;1;0;1;0
+44620;18002;2;170;70.0;130;80;1;1;0;0;0;0
+44621;15991;2;169;80.0;130;80;1;1;0;0;1;0
+44622;19780;1;170;74.0;120;80;1;1;0;0;0;1
+44623;22750;2;165;75.0;130;90;1;1;0;0;1;1
+44624;22750;2;176;90.0;140;100;1;1;0;0;0;1
+44626;17972;2;154;86.0;120;70;1;1;0;0;1;0
+44628;19506;1;155;93.0;140;90;1;3;0;0;0;1
+44630;21182;2;168;60.0;120;70;1;1;0;0;1;0
+44631;18800;1;174;79.0;120;60;1;1;0;0;1;0
+44632;18320;1;168;65.0;120;80;1;1;0;0;1;0
+44634;21223;2;166;60.0;90;70;1;1;1;1;1;0
+44635;18234;1;160;65.0;120;60;1;1;0;0;0;0
+44637;21854;1;158;110.0;140;80;1;1;0;0;1;1
+44638;15772;2;175;85.0;180;90;2;1;0;0;1;1
+44639;15413;2;178;90.0;120;70;1;1;0;0;1;0
+44640;23314;2;169;74.0;130;80;2;2;1;1;1;1
+44641;17211;2;175;85.0;130;90;1;1;1;1;1;1
+44643;17486;1;164;74.0;155;110;1;1;0;0;1;1
+44644;16889;1;168;65.0;120;80;1;1;0;0;1;1
+44645;17569;1;160;50.0;100;60;1;1;0;1;1;0
+44646;23171;2;168;71.0;150;100;1;1;0;0;1;1
+44648;14667;2;164;72.0;120;80;1;1;0;0;1;0
+44649;20620;1;167;66.0;150;60;3;1;0;0;1;1
+44650;18745;2;180;80.0;130;90;1;1;0;0;1;0
+44651;20267;2;166;74.0;130;80;1;1;1;0;1;1
+44652;19097;1;159;55.0;110;70;1;1;0;0;1;0
+44653;16609;2;168;78.0;110;70;1;1;1;0;1;0
+44654;19893;2;176;85.0;170;100;1;3;0;0;1;0
+44655;22707;1;151;61.0;125;80;3;1;0;0;1;1
+44656;17361;1;160;59.0;110;80;1;1;0;1;1;0
+44657;19851;1;163;99.0;140;80;1;1;0;0;1;1
+44658;19641;1;163;90.0;140;90;1;1;0;0;1;1
+44660;21398;2;182;81.0;120;80;1;1;0;0;0;0
+44661;22002;1;161;86.0;180;90;1;1;0;0;1;1
+44662;18119;1;162;57.0;110;70;1;1;0;0;1;0
+44664;18844;1;152;49.0;90;60;1;1;0;0;1;0
+44665;21678;2;155;58.0;125;90;1;1;0;1;1;0
+44666;14715;2;156;56.0;120;80;1;1;0;0;1;0
+44667;21138;1;157;67.0;120;80;2;2;0;0;1;0
+44668;19901;1;165;69.0;130;80;1;1;0;0;1;1
+44669;14557;2;180;76.0;140;90;2;3;1;1;1;0
+44670;16586;2;166;66.0;150;80;1;1;0;0;1;1
+44671;20548;1;163;69.0;120;80;2;1;0;0;0;1
+44672;18899;2;179;109.0;140;100;3;3;0;0;0;0
+44673;21224;1;158;66.0;120;80;1;1;0;0;1;0
+44676;16801;2;170;80.0;120;80;1;1;0;0;1;0
+44677;18318;2;184;106.0;130;90;1;3;0;0;0;1
+44679;15900;2;160;58.0;120;80;1;1;0;0;1;0
+44680;21983;1;155;50.0;90;50;1;1;0;0;1;0
+44682;19775;2;167;79.0;120;80;1;2;0;0;0;0
+44683;21864;2;164;72.0;125;90;2;2;0;0;0;1
+44684;18487;1;158;80.0;120;80;1;1;0;0;1;0
+44685;20291;2;169;69.0;150;100;1;1;1;1;1;1
+44686;15218;1;178;81.0;120;80;1;1;0;0;1;0
+44687;15969;2;170;70.0;120;80;1;1;0;0;0;0
+44688;14568;1;162;70.0;105;65;1;2;0;0;1;0
+44690;19933;1;156;81.0;120;80;3;3;0;0;1;1
+44691;17514;2;175;76.0;120;80;1;1;0;0;1;1
+44692;20343;1;160;62.0;130;90;1;1;0;0;0;0
+44694;19744;2;182;88.0;160;100;1;1;0;0;0;1
+44695;21197;1;158;75.0;120;80;1;3;0;0;1;1
+44696;21960;2;161;65.0;120;80;1;1;0;0;1;0
+44697;21841;1;165;67.0;150;90;3;1;0;0;1;1
+44698;18262;2;158;54.0;140;80;3;3;1;1;1;1
+44701;22801;1;163;115.0;20;170;1;1;0;0;1;1
+44702;20879;1;160;82.0;140;80;2;1;0;0;1;1
+44703;20454;1;160;62.0;110;70;2;1;0;0;1;0
+44704;21809;1;165;65.0;120;80;1;1;0;0;1;1
+44705;23555;2;170;90.0;120;80;3;3;0;0;1;0
+44706;16578;1;160;65.0;120;80;1;1;0;0;0;0
+44708;20250;2;164;64.0;120;80;3;1;0;0;1;1
+44709;17593;1;158;45.0;120;70;1;1;0;0;0;1
+44711;19248;1;166;79.0;120;80;1;1;0;0;1;0
+44713;18238;1;159;108.0;140;80;1;1;0;0;1;1
+44714;20256;2;170;80.0;120;80;1;1;0;0;1;1
+44715;21754;2;182;82.0;140;90;3;3;0;0;1;0
+44718;23198;1;164;80.0;120;70;1;3;0;0;1;1
+44719;16754;2;172;97.0;140;90;1;1;0;0;1;1
+44720;17512;1;170;80.0;110;70;1;1;0;0;1;1
+44721;21707;1;168;63.0;120;80;1;1;0;0;1;1
+44722;20215;1;160;60.0;130;100;1;1;0;0;0;0
+44723;22734;1;158;88.0;120;80;1;1;0;0;1;1
+44725;23288;1;160;54.0;130;80;3;3;0;0;1;1
+44726;16188;2;165;62.0;120;80;1;1;0;0;1;0
+44727;20454;1;165;65.0;120;80;1;3;0;0;1;0
+44728;22097;1;163;60.0;120;80;3;3;0;0;1;1
+44729;23251;2;185;97.0;100;70;2;1;0;0;1;0
+44730;19730;1;160;85.0;110;70;1;1;0;0;1;1
+44731;17446;1;152;64.0;120;80;1;1;0;0;1;0
+44732;20432;1;159;76.0;120;80;1;1;0;0;1;1
+44733;20473;1;150;67.0;110;80;1;1;0;0;1;0
+44734;14645;1;165;65.0;120;80;1;1;0;0;1;0
+44735;21203;1;157;79.0;120;80;1;1;0;0;1;0
+44736;20292;1;175;64.0;130;60;1;1;0;0;1;1
+44740;18128;1;167;84.0;110;70;2;1;0;0;0;0
+44743;19517;1;178;72.0;120;80;1;1;0;0;1;0
+44745;21386;2;163;72.0;140;90;1;2;1;0;1;1
+44747;17359;1;154;85.0;120;70;1;1;0;0;0;0
+44748;21726;1;169;69.0;120;80;1;1;0;0;1;0
+44749;16523;2;170;50.0;110;80;1;1;1;0;1;0
+44750;21784;2;177;79.0;130;70;2;2;0;0;1;0
+44751;20401;2;178;82.0;120;80;1;1;0;0;1;0
+44752;20469;1;175;82.0;165;90;1;1;0;0;1;1
+44753;15104;1;156;86.0;120;80;1;1;0;0;0;0
+44756;17464;2;170;75.0;150;90;1;1;0;0;1;0
+44757;18064;1;188;61.0;160;100;1;1;0;0;1;1
+44758;20342;1;166;76.0;160;100;1;1;0;0;1;1
+44759;20475;1;158;66.0;110;80;1;1;0;0;1;0
+44762;16012;1;158;54.0;110;80;1;1;0;0;1;0
+44763;23328;1;168;73.0;120;80;1;1;0;0;0;1
+44764;20455;2;178;85.0;120;80;1;1;0;0;1;0
+44769;21885;1;166;87.0;130;90;2;1;0;0;1;1
+44772;20457;1;160;69.0;120;80;1;1;0;0;1;1
+44774;21824;2;178;94.0;160;100;1;1;0;0;1;1
+44775;21149;1;160;65.0;120;80;2;2;0;0;1;0
+44778;17078;1;182;82.0;110;70;1;1;0;0;1;0
+44780;19620;1;176;71.0;120;80;1;1;0;0;1;0
+44781;19012;1;155;74.0;120;80;1;1;0;0;1;1
+44782;22421;1;160;89.0;120;90;1;2;0;0;1;0
+44783;18884;1;171;72.0;110;80;2;1;1;0;1;0
+44784;22631;2;162;74.0;160;90;1;3;0;0;1;1
+44785;21801;1;156;80.0;150;90;1;1;0;0;1;1
+44786;16640;2;167;62.0;140;70;3;1;0;0;0;1
+44787;19594;1;152;57.0;110;70;1;1;0;0;0;0
+44788;19616;1;156;137.0;120;80;1;1;0;0;1;0
+44792;20414;1;160;99.0;130;80;2;1;0;0;1;1
+44793;21626;1;163;90.0;140;89;3;3;0;0;1;0
+44794;23265;2;170;96.0;150;100;2;3;0;0;1;0
+44795;20428;2;176;71.0;110;70;2;1;0;0;1;1
+44796;21015;1;153;48.0;120;70;1;1;0;0;1;1
+44797;18210;2;164;74.0;140;80;3;3;0;0;1;1
+44798;15212;2;165;65.0;120;70;1;1;0;0;1;0
+44799;16065;1;153;72.0;140;80;1;1;0;0;1;1
+44800;19711;1;162;56.0;90;70;2;1;0;0;1;0
+44801;19759;2;178;90.0;140;80;1;1;0;0;1;0
+44803;15812;1;160;55.0;90;70;1;1;0;0;1;0
+44804;16091;1;167;65.0;120;80;1;1;0;0;1;0
+44808;15920;1;159;66.0;120;80;1;1;0;0;1;0
+44810;21955;1;163;60.0;130;80;2;2;0;0;1;0
+44812;21281;1;158;55.0;120;80;1;1;0;0;0;0
+44813;21893;1;160;50.0;120;80;1;1;0;0;0;1
+44814;21150;2;178;81.0;140;95;3;1;0;0;1;1
+44815;19145;2;170;82.0;130;90;1;1;0;0;1;0
+44817;21336;1;158;69.0;120;80;1;1;0;0;1;0
+44819;20980;1;174;85.0;110;80;3;1;0;0;1;1
+44820;16655;2;178;114.0;140;90;2;2;1;1;1;1
+44821;17343;1;156;98.0;140;90;1;1;0;0;1;1
+44822;16591;1;164;78.0;120;80;1;1;0;0;1;0
+44825;16373;2;170;74.0;140;90;1;1;0;0;1;1
+44826;22541;2;163;67.0;110;70;1;1;0;0;1;1
+44827;18064;1;154;63.0;140;80;1;1;0;0;1;1
+44828;21043;2;164;68.0;130;809;3;3;0;0;1;0
+44829;18232;1;168;65.0;120;80;1;1;0;0;1;0
+44830;21150;2;171;88.0;120;70;1;1;0;0;1;1
+44831;17530;2;165;104.0;110;70;1;1;0;0;1;1
+44832;21240;2;172;74.0;120;80;1;1;1;0;1;1
+44836;18872;2;175;89.0;120;80;1;1;0;0;1;0
+44837;23272;2;167;77.0;120;70;1;1;0;0;1;1
+44838;22032;1;167;76.0;115;70;1;1;0;0;1;1
+44839;16804;2;174;84.0;120;80;1;1;0;0;1;0
+44840;19636;2;162;70.0;140;95;1;1;0;0;1;1
+44843;19592;2;175;112.0;160;110;3;1;0;0;1;1
+44844;23377;1;158;78.0;120;80;1;1;0;0;1;0
+44845;18759;1;162;81.0;150;90;1;1;0;0;0;1
+44846;16074;1;158;49.0;120;80;1;1;0;0;1;0
+44848;21750;2;172;108.0;150;90;1;1;0;0;1;1
+44849;23293;2;156;60.0;140;90;1;1;0;0;1;1
+44850;16812;2;165;65.0;120;80;1;1;0;0;0;0
+44851;22736;1;156;56.0;120;70;1;1;0;0;1;0
+44852;20575;1;140;39.0;120;80;1;1;0;0;1;0
+44854;22036;1;161;68.0;140;90;1;1;0;0;1;1
+44856;18903;1;165;85.0;120;80;1;1;0;0;0;0
+44857;21890;2;178;76.0;120;80;3;1;0;0;0;1
+44858;17402;1;166;84.0;120;70;1;1;1;0;1;1
+44860;22730;1;174;66.0;130;60;1;1;0;0;1;1
+44861;20324;2;167;95.0;120;80;1;1;0;0;1;0
+44862;23527;1;160;68.0;130;80;1;1;0;0;1;1
+44863;21656;2;165;80.0;120;80;2;2;0;0;0;0
+44864;21954;1;146;64.0;130;80;3;1;0;0;1;1
+44866;18006;1;158;98.0;140;90;3;1;0;0;1;1
+44868;16034;1;161;82.0;100;70;1;1;0;0;1;0
+44870;22681;1;160;85.0;120;80;1;1;0;0;1;1
+44871;18853;1;160;58.0;110;80;1;1;0;0;1;0
+44874;21839;1;156;103.0;130;90;1;1;0;0;1;0
+44875;18881;1;160;98.0;120;80;2;1;0;0;1;1
+44877;23365;2;180;85.0;120;80;1;1;1;0;0;1
+44878;18298;2;172;72.0;120;80;2;2;0;0;1;1
+44879;22565;2;172;73.0;130;80;1;1;0;0;1;1
+44880;22100;1;157;83.0;160;100;1;1;0;0;0;1
+44881;21735;2;170;67.0;175;114;1;1;0;0;1;0
+44883;21124;1;164;72.0;120;80;1;1;0;0;1;0
+44885;16286;2;165;87.0;150;110;2;1;0;0;1;0
+44887;16023;2;166;72.0;120;80;1;1;0;0;1;0
+44888;20384;2;167;72.0;120;80;1;1;0;0;1;0
+44889;18192;1;172;84.0;140;90;1;2;0;0;1;0
+44893;21238;1;160;80.0;120;80;2;2;0;0;1;1
+44894;17720;1;160;96.0;90;60;1;1;0;0;1;0
+44895;14548;1;162;76.0;160;90;1;1;0;0;1;1
+44896;20411;1;160;75.0;160;80;1;3;0;0;1;0
+44897;23175;1;151;83.0;150;100;3;1;0;0;1;0
+44898;14736;1;164;75.0;110;70;1;1;0;0;1;0
+44901;20581;2;175;79.0;160;90;1;1;0;0;1;1
+44902;22512;1;154;70.0;140;100;1;1;0;0;1;1
+44903;21117;1;164;78.0;120;80;1;1;0;0;1;0
+44905;21109;1;169;70.0;120;80;1;1;0;0;1;0
+44907;15197;1;165;89.0;160;100;2;2;0;0;1;1
+44909;18120;1;166;72.0;110;70;1;1;0;0;1;1
+44910;21116;2;166;80.0;120;80;2;2;0;0;1;0
+44911;21029;1;150;72.0;140;80;2;1;0;0;1;1
+44913;21989;1;169;84.0;120;80;1;1;0;0;1;1
+44914;20339;1;158;87.0;120;80;3;3;0;0;1;0
+44917;22581;2;176;123.0;150;99;2;1;0;0;0;1
+44918;18857;2;167;69.0;120;80;1;1;0;1;1;0
+44919;19112;1;168;69.0;130;90;1;1;0;0;0;0
+44920;20583;1;160;66.0;125;80;3;1;1;1;1;1
+44921;21332;1;161;58.0;140;90;1;2;0;0;1;1
+44923;20211;1;165;65.0;120;79;1;1;0;0;0;1
+44924;19768;2;163;85.0;150;90;1;1;0;0;0;1
+44927;16900;2;179;115.0;130;90;1;2;0;0;1;0
+44928;22351;1;152;63.0;140;90;3;1;0;0;1;1
+44929;21756;1;160;78.0;120;80;1;1;0;0;1;0
+44930;21323;2;169;65.0;120;80;1;1;0;0;1;0
+44931;21962;1;168;95.0;130;80;1;1;0;0;1;1
+44934;18496;1;165;63.0;110;70;1;1;0;0;1;0
+44935;22768;1;163;87.0;140;90;1;1;0;0;1;1
+44937;22097;1;169;85.0;140;100;1;1;0;0;1;1
+44938;16290;2;165;61.0;120;80;1;1;0;0;1;0
+44939;21742;1;155;64.0;140;90;2;1;0;0;1;1
+44940;19061;2;170;84.0;130;90;1;1;0;0;1;1
+44941;21790;2;180;74.0;120;80;2;1;0;0;0;0
+44942;21062;1;158;85.0;150;80;1;1;0;0;1;1
+44944;23397;2;178;87.0;135;80;1;1;0;1;0;1
+44945;22605;1;162;62.0;140;90;3;3;0;0;1;1
+44946;19748;1;162;68.0;120;80;1;1;0;0;1;0
+44949;19113;1;155;112.0;130;90;2;2;0;0;1;0
+44950;23568;2;167;80.0;150;90;1;1;0;1;1;1
+44951;14397;1;165;65.0;110;70;1;1;0;0;1;0
+44953;19138;1;163;77.0;140;80;1;1;0;0;1;1
+44954;23500;1;170;78.0;120;80;1;1;0;0;1;1
+44955;17568;2;160;80.0;130;90;1;1;1;0;1;0
+44956;19045;1;169;69.0;160;80;1;1;0;0;1;1
+44957;15204;1;162;109.0;100;70;1;1;0;0;1;0
+44961;21062;2;165;65.0;120;80;1;1;0;0;1;0
+44962;19824;2;166;86.0;130;90;1;2;0;0;1;0
+44963;19577;2;172;72.0;130;85;1;1;0;0;1;1
+44964;23596;1;170;80.0;140;90;3;1;0;0;1;1
+44965;19624;2;181;81.0;130;80;1;1;1;1;1;0
+44966;19606;2;180;82.0;140;80;1;1;0;0;1;1
+44967;20277;1;162;64.0;140;90;2;1;0;0;1;1
+44968;15249;2;160;55.0;120;80;1;1;0;0;1;0
+44969;21997;1;155;56.0;140;90;1;1;0;0;1;1
+44970;14686;1;170;84.0;140;90;1;1;0;0;1;1
+44971;15805;1;157;69.0;140;90;3;1;0;0;1;1
+44972;17674;1;159;88.0;160;100;1;1;1;0;1;1
+44973;21223;1;173;73.0;130;80;1;1;0;0;0;0
+44974;20537;1;168;116.0;140;80;1;1;0;0;0;1
+44975;18089;2;175;72.0;160;70;1;1;1;0;1;1
+44977;19478;2;179;87.0;120;80;1;1;0;0;0;0
+44980;18375;1;165;60.0;140;80;1;1;0;0;1;1
+44983;20971;1;174;87.0;120;80;1;1;0;0;1;0
+44985;20609;1;178;102.0;160;90;1;1;0;0;1;1
+44986;16813;2;169;77.0;120;80;1;1;0;0;0;0
+44987;16147;1;170;82.0;120;80;1;1;0;0;1;0
+44988;21906;1;171;68.0;120;70;3;3;0;0;1;1
+44989;23300;1;158;54.0;160;100;2;1;0;0;1;1
+44990;15084;1;158;71.0;140;80;1;1;0;0;1;1
+44992;15434;1;163;85.0;120;80;1;3;0;0;1;0
+44993;18484;2;165;60.0;120;80;1;1;0;0;0;1
+44994;20570;2;175;75.0;140;90;1;1;0;0;1;1
+44995;22899;1;162;75.0;130;90;2;1;0;0;1;0
+44997;16135;1;170;68.0;120;80;1;3;0;0;1;1
+44999;17644;2;168;68.0;120;80;1;1;0;0;1;0
+45000;21261;2;175;75.0;120;80;1;1;0;0;1;0
+45001;18408;2;165;72.0;120;80;1;1;0;0;0;1
+45002;23209;2;175;55.0;120;80;1;1;0;0;1;0
+45005;21109;2;172;72.0;120;80;1;1;1;0;1;0
+45006;18094;1;160;62.0;110;70;2;1;0;0;1;0
+45007;14741;1;167;68.0;110;70;1;1;0;0;1;0
+45009;21307;1;164;87.0;130;70;2;1;0;0;1;0
+45011;18814;2;169;70.0;120;80;1;1;1;0;1;0
+45013;19648;2;160;69.0;100;70;1;1;0;0;0;0
+45014;21734;1;173;78.0;150;110;1;1;0;0;1;1
+45017;19503;1;165;100.0;120;80;1;1;0;0;1;1
+45018;19491;1;150;76.0;120;70;1;1;0;0;0;1
+45021;15153;2;168;74.0;120;80;2;1;0;0;1;0
+45023;16900;2;162;69.0;120;80;1;1;0;0;0;0
+45024;14884;1;170;70.0;120;80;1;1;0;0;1;0
+45026;18116;1;157;54.0;110;70;1;1;0;0;1;0
+45027;22577;2;160;64.0;180;1000;1;1;1;0;1;1
+45028;19556;1;156;64.0;150;90;1;1;0;0;0;1
+45029;19700;1;158;82.0;120;80;1;1;0;0;0;0
+45030;19683;1;170;75.0;120;80;1;1;0;0;0;0
+45031;15914;2;172;72.0;100;70;1;1;1;0;1;0
+45032;14676;1;175;79.0;110;70;1;1;0;0;0;0
+45033;18902;1;161;62.2;150;100;1;1;0;0;0;1
+45038;22116;1;167;69.0;110;70;1;1;0;0;1;0
+45039;15485;1;162;78.0;110;60;1;1;0;0;1;0
+45041;21325;1;168;69.0;150;80;3;1;0;0;1;0
+45042;17327;2;159;67.0;120;80;1;1;0;0;0;0
+45043;21089;1;164;104.0;160;1100;1;3;0;0;1;1
+45046;21396;2;172;101.0;140;90;3;1;1;0;1;1
+45049;21130;2;162;80.0;140;90;1;1;0;0;1;1
+45051;23331;1;150;52.0;120;80;1;1;0;0;1;0
+45052;19060;2;162;58.0;120;80;1;1;1;0;1;0
+45053;23318;1;165;85.0;120;80;1;1;0;0;0;1
+45054;19047;1;165;70.0;120;80;1;1;0;0;0;0
+45055;14806;1;152;70.0;110;70;1;1;0;0;1;0
+45056;18854;2;168;73.0;120;80;1;1;1;1;1;0
+45058;20557;1;178;86.0;120;80;1;1;0;0;1;0
+45060;19659;1;158;67.0;140;90;3;1;0;0;1;1
+45061;14407;1;161;59.0;110;70;1;1;0;0;1;0
+45063;16791;1;158;61.0;120;80;3;3;0;0;1;1
+45064;20322;1;162;70.0;110;70;1;1;0;0;1;1
+45065;17428;2;172;80.0;150;90;1;1;0;0;1;1
+45066;16101;1;165;60.0;120;70;1;1;0;0;0;0
+45067;23265;1;155;71.0;140;100;3;3;0;0;1;1
+45069;19015;1;163;78.0;110;70;1;1;0;0;1;0
+45071;20439;2;168;85.0;130;80;3;1;1;0;1;1
+45072;18205;1;154;74.0;120;80;1;1;0;0;1;0
+45074;14561;1;147;50.0;100;60;1;1;0;0;1;0
+45075;18082;2;165;65.0;130;1000;1;1;0;0;1;0
+45076;18938;1;160;73.0;140;90;1;1;0;0;0;0
+45077;23356;1;154;75.0;140;80;1;1;0;0;0;1
+45078;14764;1;168;77.0;120;80;1;1;0;0;0;0
+45079;22064;1;153;73.0;120;80;1;1;0;0;1;1
+45080;15378;1;164;60.0;120;80;1;1;0;0;0;1
+45081;19832;2;168;64.0;120;80;1;1;0;0;0;1
+45082;15234;1;174;106.0;130;70;1;1;0;0;1;1
+45083;20501;2;172;95.0;135;96;1;1;0;0;1;0
+45084;18139;1;160;86.0;130;80;1;1;0;0;1;1
+45085;22707;2;170;84.0;150;80;1;1;1;0;0;1
+45089;16001;1;154;78.0;110;70;1;1;0;0;1;0
+45090;19850;1;157;59.0;140;90;2;3;0;0;1;1
+45092;17584;2;174;86.0;120;80;1;1;0;0;1;1
+45093;18384;1;163;71.0;120;80;1;1;0;0;1;0
+45094;17541;1;163;70.0;110;70;1;1;0;0;1;0
+45095;23319;1;161;69.0;120;80;2;1;0;0;1;1
+45097;21039;2;192;96.0;170;120;1;3;0;0;1;1
+45098;16618;2;170;93.0;140;90;1;1;0;0;1;1
+45102;22104;2;178;94.0;170;100;1;1;0;0;1;1
+45103;15075;1;168;60.0;110;70;1;1;0;0;1;0
+45104;19051;1;162;100.0;140;90;3;3;0;0;1;1
+45106;22879;2;160;58.0;100;60;1;1;0;0;1;0
+45107;21745;1;168;55.0;120;80;1;1;0;0;0;1
+45108;22176;1;156;76.0;160;90;3;1;0;0;1;1
+45111;14502;1;178;78.0;150;90;1;1;0;0;1;1
+45112;14500;2;163;61.0;110;80;1;1;0;0;1;0
+45113;15807;2;171;92.0;130;90;3;1;1;1;1;0
+45114;15883;2;175;96.0;150;80;1;1;1;0;1;1
+45115;21913;1;164;73.0;130;80;1;3;0;0;1;1
+45117;21136;1;157;68.0;100;80;1;2;0;0;0;1
+45118;19144;1;170;72.0;110;70;1;1;0;0;1;1
+45119;22397;1;158;80.0;110;70;3;1;0;0;1;1
+45120;14734;1;164;69.0;120;80;1;1;0;0;0;0
+45121;23512;1;162;100.0;100;70;1;1;0;0;1;0
+45124;22476;2;180;100.0;130;90;1;1;0;0;1;1
+45126;18101;1;153;59.0;110;70;1;1;0;0;1;0
+45127;18147;1;178;74.0;120;70;3;1;0;0;0;0
+45129;17737;1;165;68.0;110;80;1;1;0;0;1;0
+45130;15359;2;175;77.0;130;80;1;1;0;0;1;0
+45131;23377;1;152;89.0;170;80;1;2;0;0;1;1
+45133;18956;2;178;80.0;130;80;2;1;1;1;1;0
+45134;23331;2;170;85.0;120;80;1;1;0;0;1;1
+45136;21887;1;153;98.0;115;80;1;2;0;1;1;0
+45138;23149;1;171;101.0;135;80;3;3;0;0;1;1
+45139;19665;1;172;81.0;120;80;1;1;0;0;1;0
+45140;21229;1;168;59.0;120;80;1;1;0;0;1;0
+45141;17544;2;170;74.0;120;80;3;1;0;0;0;1
+45142;23109;2;163;75.0;160;90;1;1;0;0;1;1
+45143;15891;1;170;82.0;120;80;1;1;0;0;1;0
+45147;22542;1;160;79.0;130;80;1;1;0;0;1;0
+45148;19659;1;154;92.0;140;90;1;1;0;0;1;1
+45149;18982;1;159;75.0;130;90;2;2;0;0;1;1
+45151;17498;2;179;69.0;130;80;1;1;0;0;1;1
+45152;14455;1;164;68.0;90;60;2;1;0;0;1;0
+45156;16655;2;173;78.0;130;90;1;1;0;0;0;0
+45158;18862;1;164;72.0;120;80;1;1;0;0;1;0
+45159;21853;2;163;69.0;130;90;2;2;0;0;1;1
+45161;18220;1;180;87.0;100;90;3;3;0;0;1;0
+45162;17695;1;150;57.0;120;80;1;1;0;0;1;0
+45163;23505;2;164;63.0;120;80;1;1;0;0;0;1
+45165;14400;1;167;50.5;160;1000;1;1;0;0;1;1
+45166;20967;2;164;64.0;140;90;1;1;0;0;0;1
+45167;23420;1;170;68.0;120;80;1;1;0;0;1;0
+45168;20589;1;163;63.0;130;80;3;3;0;0;1;0
+45169;20267;2;170;115.0;140;100;3;1;1;1;1;1
+45170;18272;1;160;70.0;120;80;1;1;0;0;1;1
+45171;19525;2;170;70.0;120;80;1;1;0;0;1;0
+45172;15469;1;175;79.0;120;80;1;1;0;0;1;0
+45173;16608;1;162;54.0;110;60;1;1;0;0;1;0
+45175;19734;2;175;85.0;120;80;1;1;0;0;1;0
+45176;21099;1;168;80.0;130;80;2;1;0;0;0;0
+45177;21211;2;169;55.0;130;80;1;1;0;1;0;0
+45179;21075;2;166;91.0;120;80;1;1;0;0;0;0
+45181;14736;2;174;73.0;110;70;1;1;0;0;1;0
+45182;22723;1;169;65.0;120;90;2;1;0;0;1;0
+45184;16620;1;161;90.0;120;80;1;1;0;0;1;0
+45185;15863;2;178;113.0;130;90;1;1;0;0;1;0
+45186;22728;2;168;66.0;120;80;1;1;0;0;1;0
+45187;19500;1;162;60.0;120;80;1;1;0;0;1;0
+45192;20358;2;178;85.0;120;80;1;1;1;1;1;1
+45194;18541;1;178;68.0;140;1000;1;1;0;0;1;1
+45195;23194;2;178;94.0;130;80;1;1;0;0;0;0
+45198;20949;1;150;90.0;120;80;2;2;0;0;1;0
+45201;17504;1;165;68.0;110;70;1;1;0;0;1;1
+45203;20358;1;160;69.0;130;80;1;1;0;0;1;1
+45204;22472;1;138;77.0;140;90;1;1;0;0;1;1
+45205;18871;1;162;52.0;96;64;2;1;0;0;1;0
+45208;22473;2;164;60.0;160;80;1;1;0;0;1;1
+45209;21697;1;165;70.0;160;100;2;1;0;0;1;1
+45210;23332;1;162;80.0;130;80;3;3;0;0;1;1
+45211;19032;1;146;44.0;120;80;1;1;0;0;0;0
+45212;18061;1;159;85.0;120;70;1;1;0;0;0;0
+45213;22491;1;162;71.0;110;70;1;1;0;0;1;0
+45214;21946;1;162;64.0;140;80;1;1;0;0;1;1
+45216;22518;1;156;77.0;130;80;3;1;0;0;1;1
+45217;18237;1;170;70.0;120;80;2;1;0;0;1;0
+45221;16027;2;177;100.0;120;80;1;1;0;0;1;1
+45222;20147;1;170;69.0;120;80;1;1;0;0;1;0
+45223;18516;2;168;82.0;150;90;3;3;0;0;0;0
+45224;18332;2;167;69.0;120;80;1;1;0;0;1;0
+45225;21045;1;168;78.0;120;80;1;1;0;0;0;1
+45228;16300;1;162;71.0;110;80;1;3;0;0;1;0
+45230;14467;1;172;71.0;120;80;1;1;0;0;1;1
+45231;16031;1;164;63.0;110;70;1;1;0;0;1;0
+45232;19904;2;177;107.0;160;1000;3;2;0;0;1;1
+45233;19511;2;158;63.0;120;80;3;3;0;0;1;0
+45234;22511;2;168;80.0;150;100;3;1;0;0;1;1
+45235;23415;1;154;110.0;180;100;1;1;0;0;1;1
+45236;18858;2;155;70.0;120;80;1;1;1;0;1;0
+45237;17965;2;161;65.0;120;70;1;1;0;0;1;1
+45239;17516;1;165;65.0;110;80;1;1;0;0;1;0
+45240;21139;1;165;60.0;120;80;1;1;0;0;1;0
+45241;21263;2;160;76.0;130;80;1;1;0;1;1;0
+45243;19853;1;163;75.0;140;90;1;1;0;0;1;1
+45247;14498;1;154;80.0;120;80;1;1;0;0;1;0
+45248;17628;2;174;98.0;140;90;2;2;0;0;1;1
+45250;22637;2;170;113.0;130;80;1;2;1;1;1;1
+45251;19047;1;161;84.0;130;80;1;1;1;0;1;1
+45252;17560;2;182;99.0;120;80;1;1;0;0;1;0
+45253;20486;1;166;92.0;120;80;1;1;0;0;1;0
+45255;19901;1;161;62.0;140;90;3;1;0;1;1;1
+45256;19118;1;165;67.0;110;60;1;1;0;0;0;0
+45257;18278;2;179;135.0;120;80;1;1;1;0;1;1
+45259;21345;2;172;86.0;120;80;2;1;0;0;1;0
+45260;21285;1;162;101.0;160;80;1;1;0;0;0;1
+45262;19813;1;165;64.0;120;80;1;1;0;0;1;1
+45263;20929;1;154;81.0;150;90;1;3;0;0;0;1
+45264;22010;1;160;57.0;120;80;1;1;0;0;1;0
+45265;16856;2;171;70.0;120;80;1;1;0;0;1;1
+45267;21179;1;168;76.0;120;80;1;1;0;0;1;0
+45268;21876;1;157;54.0;105;70;1;3;0;0;1;0
+45269;19252;1;165;75.0;120;80;1;3;0;0;1;0
+45270;21138;1;149;53.0;130;80;1;1;0;0;1;1
+45272;19106;1;156;74.0;120;70;1;1;0;0;1;0
+45273;15424;2;175;68.0;100;90;1;1;0;0;0;0
+45274;19732;1;159;59.0;120;60;1;1;0;0;0;0
+45275;20456;1;156;69.0;130;70;2;1;0;0;1;1
+45277;17352;1;164;83.0;120;80;1;1;0;0;1;1
+45280;14711;2;162;61.0;120;80;3;3;0;0;1;0
+45281;17559;2;180;82.0;130;80;3;3;1;1;1;0
+45282;18895;1;164;106.0;130;90;3;2;0;0;1;0
+45284;20519;2;170;96.0;120;80;1;1;0;0;1;0
+45287;15588;2;180;82.0;120;80;1;1;0;0;1;0
+45288;17436;1;170;68.0;120;90;1;1;0;0;1;0
+45289;20234;2;175;74.0;120;70;1;1;0;0;1;0
+45290;17587;1;167;95.0;120;80;3;1;0;0;1;1
+45291;18303;2;178;85.0;150;90;3;1;1;0;1;1
+45294;16816;2;185;111.0;140;90;2;2;1;1;0;1
+45296;17488;2;169;79.0;130;80;1;1;0;0;1;1
+45298;19021;2;162;63.0;120;90;1;1;0;0;1;0
+45300;15218;2;175;94.0;130;90;1;1;1;0;1;0
+45302;18449;1;164;68.0;120;80;1;1;0;0;1;0
+45303;19016;1;156;80.0;150;80;1;1;0;0;0;1
+45304;21856;1;160;90.0;140;90;2;2;0;0;0;1
+45306;19049;1;164;84.0;120;80;1;1;0;0;0;1
+45307;14485;1;165;57.0;120;80;1;1;0;0;1;0
+45308;14354;1;175;70.0;110;80;1;1;0;0;1;0
+45309;20771;1;187;87.0;120;90;3;3;0;0;0;0
+45310;20931;1;159;96.0;160;100;1;1;0;0;1;1
+45311;19731;1;162;96.0;130;90;3;1;0;0;1;1
+45316;20978;1;157;75.0;110;70;1;1;0;0;1;0
+45318;18858;1;166;72.0;120;801;1;1;0;0;1;0
+45319;22348;1;164;70.0;120;80;3;1;0;0;1;1
+45320;19531;2;173;100.0;130;90;1;1;0;0;1;1
+45321;16889;2;170;70.0;120;75;1;1;0;1;1;0
+45322;23426;2;172;70.0;120;80;1;1;0;0;0;1
+45325;20201;1;156;65.0;140;80;1;1;0;1;1;1
+45327;18178;1;160;50.0;90;60;2;1;0;0;1;0
+45330;18966;2;166;56.0;110;70;1;1;1;1;1;0
+45331;17482;1;153;71.0;140;90;1;1;0;0;1;1
+45333;23388;2;170;70.0;140;90;1;1;0;0;1;1
+45334;21945;1;151;62.0;130;80;1;1;0;0;0;0
+45335;16672;2;174;115.0;140;80;3;1;0;0;1;1
+45337;19038;1;160;85.0;110;70;1;1;0;0;1;0
+45339;21233;1;154;80.0;105;75;1;2;0;0;0;1
+45341;18374;2;169;63.0;120;80;1;1;0;0;1;1
+45342;18959;1;175;85.0;120;70;1;1;0;0;1;0
+45343;18274;2;160;58.0;120;80;1;1;0;0;1;0
+45344;16640;2;172;75.0;110;80;1;1;0;0;1;1
+45345;20243;2;176;72.0;145;90;1;1;0;0;1;1
+45347;19034;2;173;83.0;130;80;1;1;0;0;1;0
+45348;19707;1;144;53.0;120;80;2;1;0;0;1;0
+45349;18201;1;167;75.0;100;70;1;1;0;0;1;0
+45352;18233;2;171;71.0;150;90;1;1;0;0;1;1
+45354;17317;1;162;69.0;150;80;1;1;0;0;1;1
+45355;17225;1;164;95.0;120;80;1;1;0;0;1;0
+45356;20185;2;167;88.0;130;90;1;1;0;1;1;1
+45358;23224;1;162;47.0;120;80;1;1;0;0;1;0
+45359;14667;1;165;59.0;120;70;1;1;0;0;1;0
+45361;21424;1;165;60.0;120;80;1;1;0;0;1;1
+45362;14275;1;164;105.0;150;110;3;3;0;0;1;1
+45363;16986;2;170;96.0;160;90;1;1;0;0;1;1
+45364;17545;2;182;90.0;140;90;2;1;1;0;0;1
+45365;21797;1;168;70.0;130;90;1;1;0;0;1;1
+45366;22861;1;151;110.0;120;80;1;1;0;0;0;0
+45367;20242;1;178;78.0;120;80;3;3;0;0;1;1
+45368;18230;1;166;73.0;110;80;1;1;0;0;1;0
+45372;21900;2;180;82.0;170;100;1;1;0;0;1;1
+45376;21224;1;158;76.0;130;80;3;2;0;0;1;1
+45377;18040;1;174;70.0;120;80;1;1;0;0;1;0
+45378;23611;1;163;75.0;140;1100;2;1;0;0;1;1
+45380;23586;1;162;80.0;120;90;1;1;0;0;1;1
+45381;18239;1;163;66.0;150;90;1;1;0;0;1;1
+45383;15035;1;159;73.0;110;80;1;1;0;0;1;0
+45384;20266;2;164;72.0;120;80;1;1;0;0;1;0
+45385;18936;2;162;76.0;100;70;1;2;1;0;1;0
+45387;19755;1;163;62.0;130;90;1;1;0;0;1;1
+45388;17703;1;153;81.0;120;80;1;1;0;0;1;0
+45393;18890;2;170;70.0;120;80;1;1;0;0;1;0
+45394;20557;1;168;80.0;120;80;2;1;0;0;1;0
+45395;20654;1;152;57.0;130;90;1;1;0;0;1;1
+45400;16070;1;170;64.0;907;0;1;1;0;0;1;0
+45401;20340;2;165;85.0;120;80;1;1;1;0;1;0
+45402;21900;1;163;68.0;120;80;1;1;0;0;1;1
+45403;21200;1;168;68.0;110;70;1;1;0;0;1;0
+45404;19431;1;153;72.0;140;90;2;2;0;0;1;1
+45405;20313;1;178;68.0;120;80;1;1;0;0;1;1
+45406;21925;2;167;75.0;140;80;1;2;0;0;1;1
+45407;15999;2;170;75.0;120;70;1;1;0;0;1;1
+45408;21228;1;170;90.0;120;80;1;1;0;0;0;0
+45410;18022;2;172;95.0;120;80;1;1;1;0;0;1
+45411;18326;1;159;74.0;120;80;1;1;0;0;1;0
+45412;16888;1;164;71.0;120;80;1;1;0;0;1;0
+45413;21839;1;159;92.0;130;90;3;1;0;0;1;0
+45417;19067;1;164;68.0;110;70;1;1;0;0;1;1
+45418;19141;1;165;71.0;110;70;1;1;0;0;0;0
+45419;19088;1;153;50.0;90;60;1;1;0;0;1;0
+45420;16869;1;167;63.0;120;80;1;1;0;0;1;1
+45421;14395;1;165;60.0;120;80;1;1;0;0;1;0
+45422;21999;1;156;77.0;110;70;1;1;0;0;1;0
+45423;18313;2;161;80.0;110;70;1;2;1;1;1;0
+45424;23357;1;180;77.0;120;80;1;1;0;0;1;0
+45425;19238;1;169;70.0;120;80;1;1;0;0;1;0
+45428;15293;1;161;59.0;140;80;1;1;0;0;1;1
+45429;21080;1;160;67.0;120;80;1;1;0;0;1;1
+45431;23456;2;164;63.0;160;100;1;1;0;0;1;1
+45432;15889;1;160;75.0;130;90;1;1;0;1;1;0
+45434;19851;2;175;70.0;120;60;1;1;0;0;1;0
+45435;22609;2;169;88.0;140;100;3;3;0;0;1;0
+45437;21129;2;163;73.0;180;140;3;1;1;0;1;1
+45439;17692;2;175;70.0;110;70;2;1;0;0;0;1
+45441;18163;1;167;62.0;120;80;1;1;0;0;1;0
+45442;19011;1;158;90.0;130;70;1;3;0;0;0;0
+45443;20594;1;156;68.0;120;79;1;1;0;0;0;0
+45444;19885;1;158;60.0;120;60;3;3;0;0;1;1
+45445;21699;1;165;83.0;110;70;1;1;0;0;1;1
+45446;17928;1;162;67.0;120;60;1;1;0;0;1;0
+45447;17693;2;181;105.0;120;80;1;1;0;0;1;0
+45449;18875;1;168;75.0;120;80;1;1;0;0;1;0
+45451;21199;1;168;79.0;120;80;3;2;0;0;1;1
+45453;14709;1;168;84.0;120;80;1;1;0;0;1;0
+45454;14602;1;163;84.0;110;90;1;1;0;0;1;0
+45455;23151;2;179;102.0;130;80;3;1;0;0;1;1
+45456;21079;1;164;87.0;120;80;1;1;0;0;1;0
+45457;19096;1;163;76.0;130;90;1;1;0;0;1;1
+45458;15464;1;166;109.0;130;80;3;3;0;0;1;1
+45459;21700;1;164;73.0;120;80;1;1;0;0;1;0
+45461;19632;1;164;64.0;120;80;1;1;0;0;0;0
+45462;17486;1;170;75.0;120;80;1;1;0;0;0;0
+45463;23358;2;180;85.0;150;90;1;1;0;0;1;0
+45464;19768;1;160;61.0;160;100;1;1;0;0;1;1
+45465;15352;1;165;64.0;110;80;1;1;0;0;1;0
+45466;19442;1;156;54.0;120;70;1;1;0;0;1;0
+45467;20398;1;161;89.0;140;80;1;1;0;1;1;1
+45468;21272;1;161;97.0;140;90;3;1;0;0;1;0
+45469;18737;1;164;70.0;90;60;1;1;0;0;1;0
+45470;21353;2;172;69.0;120;80;1;1;0;0;1;0
+45471;23169;1;149;57.0;160;90;1;2;0;0;1;1
+45472;19815;1;168;68.0;120;80;1;1;0;0;1;0
+45473;21784;1;158;76.0;120;80;1;1;0;0;1;0
+45475;19924;1;160;71.0;140;90;1;2;0;0;1;1
+45477;23517;1;164;58.0;110;70;2;2;0;0;1;1
+45479;14489;2;165;72.0;120;80;1;1;0;0;1;0
+45480;18276;1;170;69.0;130;80;1;1;0;0;1;1
+45481;19087;1;160;80.0;130;80;1;1;0;1;1;1
+45482;16576;1;164;70.0;120;70;1;1;0;0;1;0
+45483;18154;2;170;72.0;120;80;1;1;0;0;1;1
+45487;20328;1;156;67.0;120;90;1;1;0;0;1;0
+45489;23551;2;173;91.0;160;100;1;1;0;0;1;1
+45494;21969;2;176;77.0;110;80;1;2;0;0;1;1
+45495;18285;2;168;80.0;180;100;3;1;0;0;1;1
+45496;18937;1;168;76.0;150;100;3;1;0;0;1;1
+45498;20642;1;171;93.0;120;80;1;1;0;0;1;1
+45499;16101;1;152;62.0;90;70;1;1;0;0;1;0
+45500;19663;1;161;89.0;120;80;1;3;0;0;1;0
+45501;21743;1;157;77.0;140;90;1;1;0;0;1;0
+45502;15919;1;170;75.0;120;80;1;1;0;0;1;0
+45503;21678;1;157;62.0;120;80;3;1;0;0;1;1
+45505;17366;2;167;80.0;120;80;1;1;0;0;1;0
+45506;19667;2;170;72.0;100;70;1;1;1;0;1;0
+45507;19019;1;162;64.0;120;80;1;1;0;0;1;0
+45508;18100;2;170;67.0;120;80;1;1;0;0;1;0
+45509;22563;1;151;82.0;130;90;1;1;0;0;1;0
+45512;18110;2;166;92.0;140;80;2;1;1;1;1;1
+45513;19546;1;165;95.0;130;80;1;1;0;0;1;1
+45514;15377;2;191;115.0;130;90;2;1;0;0;1;1
+45515;22401;2;170;68.0;120;80;1;1;0;0;1;0
+45516;17724;1;168;69.0;110;80;2;1;0;0;1;0
+45517;18888;1;165;87.0;140;100;1;1;0;0;1;1
+45518;23598;1;168;69.0;120;80;1;1;0;0;1;1
+45519;18070;1;155;58.0;130;90;1;1;0;0;0;0
+45520;20952;1;164;64.0;120;80;2;1;0;0;1;0
+45523;19051;1;165;74.0;140;90;1;2;0;0;1;0
+45524;16163;2;175;92.0;130;90;1;2;1;0;0;1
+45526;23245;1;156;87.0;150;90;1;1;0;0;0;0
+45527;21351;1;155;62.0;110;70;2;1;0;0;1;1
+45528;19637;1;164;67.0;100;70;1;1;0;0;1;0
+45529;15234;1;170;56.0;120;80;1;1;0;0;1;0
+45530;23128;2;176;78.0;120;80;2;1;1;0;1;0
+45532;21726;2;174;101.0;130;90;1;1;0;0;1;0
+45533;20405;1;156;67.0;120;79;1;1;0;0;1;0
+45534;14575;1;165;103.0;130;90;1;1;0;0;1;1
+45535;15549;2;164;94.0;120;80;2;1;0;0;1;1
+45537;20304;1;166;69.0;120;80;1;1;0;0;1;0
+45539;18183;1;169;65.0;120;80;1;1;0;0;1;0
+45540;20561;1;158;59.0;100;80;1;1;0;0;1;0
+45541;17508;2;173;79.0;120;80;1;1;1;0;1;0
+45543;21229;1;156;74.0;110;70;1;1;0;0;1;1
+45544;19814;1;175;86.0;150;90;1;1;0;0;1;1
+45545;17554;2;155;80.0;120;80;1;1;0;0;1;0
+45546;20521;2;160;78.0;150;100;1;1;0;0;1;0
+45547;18094;1;154;80.0;140;80;1;1;0;0;1;0
+45548;23393;1;163;75.0;120;70;3;1;0;0;0;1
+45549;18890;2;164;62.0;90;60;1;1;0;0;1;0
+45551;23183;2;168;72.0;120;79;3;1;0;0;1;0
+45552;14620;1;158;73.0;120;80;2;1;0;0;1;0
+45554;17536;1;160;80.0;120;80;1;1;0;0;1;0
+45555;19587;2;172;81.0;130;90;3;1;0;0;1;1
+45557;21831;1;160;61.0;120;80;1;1;0;0;1;1
+45559;19708;1;164;69.0;140;80;3;3;0;0;1;1
+45560;20538;1;153;66.0;110;80;1;1;0;0;1;0
+45562;22592;2;190;85.0;130;70;2;1;0;0;1;1
+45563;20260;2;189;103.0;120;80;3;1;0;0;1;0
+45564;15956;1;169;66.0;150;90;2;1;0;0;1;1
+45565;18822;1;160;50.0;140;90;1;1;0;0;1;1
+45566;22487;1;148;50.0;120;80;2;1;0;0;1;0
+45567;19201;1;165;81.0;145;90;2;1;0;0;1;1
+45570;21182;1;162;69.0;115;70;1;2;0;0;1;1
+45571;15369;1;163;74.0;90;70;1;1;0;0;1;0
+45572;14738;1;162;62.0;110;70;1;1;0;0;1;0
+45573;19431;2;178;90.0;140;100;2;1;1;0;1;1
+45576;14827;2;159;90.0;130;90;1;1;0;0;1;0
+45578;21058;1;155;75.0;150;90;2;1;0;0;1;1
+45579;18900;1;156;92.0;150;90;3;1;0;0;1;1
+45580;18719;2;172;92.0;120;80;1;1;0;0;1;1
+45581;18835;2;170;72.0;120;80;1;1;0;0;1;0
+45582;22420;1;139;48.0;130;80;1;1;0;0;1;0
+45584;21979;1;167;70.0;100;60;1;2;0;0;1;1
+45585;16853;1;166;88.0;120;80;1;1;0;0;1;0
+45586;19045;1;154;72.0;155;96;1;1;0;0;1;0
+45587;19786;1;168;78.0;110;70;1;1;0;0;1;0
+45588;17428;2;165;62.0;120;80;1;1;0;0;1;0
+45591;15347;1;166;106.0;160;90;1;1;0;0;1;1
+45592;15241;1;150;49.0;120;70;1;1;0;0;1;0
+45594;19680;1;162;95.0;120;80;3;3;0;0;1;1
+45595;21843;1;176;95.0;140;90;1;1;0;0;1;1
+45596;15513;1;178;75.0;130;90;1;1;0;0;0;1
+45597;22789;1;164;87.0;120;80;3;3;0;0;1;1
+45598;15885;1;162;50.0;120;80;1;1;0;0;1;0
+45599;23258;2;169;69.0;140;80;1;1;0;0;1;1
+45600;18466;2;182;90.0;150;90;1;1;0;0;0;1
+45601;17456;1;167;68.0;120;80;1;1;0;0;1;0
+45603;20564;1;160;95.0;120;80;1;2;0;0;1;0
+45604;19064;2;164;72.0;136;90;2;2;0;0;1;0
+45605;19664;1;161;76.0;140;90;3;1;0;0;1;1
+45606;19059;1;170;63.0;110;70;2;2;0;0;1;0
+45607;19154;1;165;130.0;130;90;1;1;0;0;1;0
+45608;21744;1;160;89.0;150;90;2;1;0;0;1;1
+45609;18149;1;154;65.0;130;80;1;1;0;0;1;0
+45610;19466;1;163;86.0;140;80;3;1;0;0;1;1
+45613;20969;2;170;73.0;90;60;3;1;0;0;1;1
+45614;15257;2;171;62.0;120;80;1;1;1;0;1;0
+45616;20359;1;159;78.0;130;80;3;2;0;0;1;1
+45617;21154;1;165;65.0;120;80;1;1;0;0;1;0
+45619;22110;1;147;96.0;120;80;1;1;0;0;1;0
+45622;18821;1;162;70.0;120;80;1;1;0;0;1;0
+45623;18083;1;162;107.0;150;90;2;3;0;0;0;1
+45625;22065;2;164;57.0;140;78;1;1;0;0;0;0
+45627;16711;2;179;74.0;120;79;1;1;0;0;1;0
+45628;19082;2;164;65.0;120;85;3;1;0;1;1;1
+45632;19696;2;175;72.0;120;80;1;1;0;0;1;0
+45633;17436;1;165;51.0;130;80;1;1;0;0;1;0
+45634;23290;1;156;77.0;170;90;1;1;0;0;1;1
+45636;15923;2;171;82.0;160;100;1;1;1;1;1;1
+45637;18140;1;160;60.0;120;80;1;1;0;0;1;0
+45638;20431;2;160;65.0;120;70;1;1;0;0;1;1
+45640;18911;1;158;65.0;135;80;3;1;0;0;0;1
+45642;19917;1;162;63.0;120;70;1;1;0;0;1;0
+45643;17406;1;160;59.0;120;80;2;1;0;0;0;0
+45646;16680;2;172;72.0;100;80;1;1;1;1;1;0
+45647;18857;1;164;62.0;120;80;1;1;0;0;1;0
+45648;15270;1;165;73.0;110;70;1;1;0;0;1;0
+45649;14453;1;171;62.0;100;70;2;1;0;0;1;0
+45651;22561;1;168;92.0;140;100;1;1;0;0;1;1
+45652;20958;1;160;62.0;120;80;2;1;0;0;1;0
+45653;16273;1;167;66.0;120;80;1;3;0;0;1;0
+45654;14534;2;169;65.0;120;80;1;1;0;0;0;0
+45655;23572;1;168;82.0;130;80;1;1;0;0;1;1
+45656;22565;1;162;68.0;130;80;1;1;0;0;1;0
+45657;18248;1;165;75.0;110;70;1;3;0;0;1;1
+45658;21856;2;178;69.0;120;80;1;1;0;0;1;0
+45659;20507;1;165;65.0;120;79;3;3;0;0;0;0
+45661;19165;1;160;74.0;130;90;1;1;0;0;1;0
+45664;20344;1;170;82.0;120;80;1;1;0;0;1;0
+45665;20561;2;172;80.0;130;80;3;3;0;0;1;1
+45666;18050;1;164;68.0;120;80;1;1;0;0;1;1
+45667;19587;2;170;80.0;120;80;1;1;1;0;1;0
+45668;17372;2;166;65.0;110;70;3;1;0;0;1;1
+45669;14703;1;157;48.0;110;80;1;1;0;0;1;0
+45670;18239;1;159;59.0;120;80;1;1;0;0;1;1
+45671;15943;2;170;90.0;130;90;1;1;0;0;1;0
+45672;20287;2;165;87.0;140;100;1;1;0;0;1;0
+45673;16144;2;169;62.0;130;80;1;1;0;0;1;0
+45674;18943;1;172;93.0;130;80;1;1;0;0;1;0
+45675;18300;2;162;68.0;120;80;1;1;0;0;1;0
+45677;18993;1;153;89.0;140;80;1;1;0;0;1;1
+45678;19087;2;175;61.0;100;70;1;1;0;1;1;0
+45679;20954;1;163;65.0;130;70;1;1;0;0;1;0
+45680;19516;1;154;54.0;110;70;1;1;0;0;1;0
+45681;15291;1;154;76.0;160;100;1;1;0;1;1;0
+45685;14338;1;158;65.0;110;70;1;1;0;0;1;0
+45686;19774;1;162;70.0;120;80;1;1;0;0;1;0
+45687;15106;1;155;59.0;160;100;1;1;0;0;1;1
+45688;22436;2;172;68.0;120;80;1;1;0;0;1;0
+45689;16060;1;158;55.0;110;70;1;1;0;0;1;0
+45690;19601;1;168;65.0;120;90;1;1;0;0;1;0
+45691;22736;2;174;79.0;140;90;1;1;1;0;1;1
+45692;16862;1;155;55.0;120;80;1;1;0;0;1;0
+45693;21222;2;169;65.0;130;80;1;1;0;0;1;0
+45695;19813;1;166;66.0;130;90;1;1;0;0;1;0
+45696;23486;1;169;125.0;130;80;1;1;0;0;1;1
+45698;19092;2;164;73.0;120;80;2;1;1;1;1;0
+45699;21007;2;170;65.0;130;80;3;3;1;1;1;1
+45700;21686;1;162;74.0;140;100;2;1;0;0;1;1
+45701;18424;1;169;71.0;120;80;1;1;0;1;1;1
+45702;23404;2;168;52.0;110;70;1;1;0;0;1;0
+45704;20284;1;155;66.0;120;80;1;1;0;0;0;0
+45705;21072;2;170;70.0;120;70;1;1;0;0;0;1
+45706;18334;1;164;78.0;140;80;1;1;0;0;1;0
+45707;21220;2;167;74.0;140;90;2;1;1;0;1;1
+45708;22509;1;153;74.0;150;90;2;1;0;0;0;1
+45710;15087;1;162;66.0;100;70;1;1;0;0;1;0
+45711;16197;2;170;64.0;120;80;1;1;0;0;1;0
+45712;19816;2;169;63.0;140;90;1;1;0;0;1;0
+45714;18512;2;171;110.0;140;100;2;1;1;1;1;1
+45715;15191;1;162;61.0;120;60;1;1;0;0;1;0
+45717;19715;1;166;74.0;130;80;1;2;0;0;1;1
+45719;18874;2;172;67.0;140;90;1;1;0;0;0;1
+45720;19050;1;161;79.0;120;80;1;1;0;0;1;1
+45722;19076;2;164;72.0;120;80;1;1;0;0;1;0
+45723;19969;1;162;58.0;120;80;1;1;0;0;0;1
+45724;18458;1;156;60.0;120;80;1;1;0;0;1;0
+45725;16161;1;172;65.0;110;70;1;1;0;0;1;0
+45726;19080;1;158;63.0;150;90;2;2;0;0;1;1
+45727;20346;1;165;65.0;120;80;1;1;0;0;1;0
+45728;23259;1;165;82.0;150;100;1;1;0;0;1;1
+45730;19773;1;146;54.0;110;70;1;1;0;0;1;0
+45731;15233;1;164;68.0;120;80;2;1;0;0;1;0
+45732;21929;2;175;78.0;120;80;1;1;0;0;1;0
+45734;21134;1;156;62.0;120;80;1;1;0;0;0;1
+45735;19713;1;168;58.0;120;80;1;1;0;0;0;1
+45736;22116;1;170;61.0;140;90;1;1;0;0;1;1
+45738;18900;2;162;81.0;120;90;2;1;0;0;0;1
+45740;18968;1;154;68.0;140;100;3;3;0;1;1;1
+45742;14712;1;160;106.0;130;80;1;1;0;0;1;0
+45743;18196;1;158;63.0;90;60;1;1;0;0;1;0
+45744;18164;1;159;70.0;100;65;1;1;0;0;1;1
+45745;19027;1;157;70.0;140;90;1;1;0;0;1;1
+45746;21615;1;163;75.0;160;100;2;1;0;0;1;1
+45747;14708;2;176;84.0;130;90;1;1;0;0;1;0
+45748;15298;1;157;81.0;115;75;1;1;0;0;0;1
+45750;18748;1;164;88.0;130;90;2;2;0;1;1;1
+45752;20468;1;161;71.0;140;80;2;2;0;0;1;1
+45753;20441;1;150;65.0;130;80;1;1;0;0;1;1
+45755;19554;1;164;70.0;170;100;3;1;0;0;1;1
+45757;18309;1;166;64.0;120;70;1;1;0;0;1;0
+45758;18939;1;160;59.0;107;65;2;1;0;1;1;0
+45759;18121;2;173;78.0;120;80;1;1;0;0;0;0
+45761;21350;2;165;89.0;130;70;1;1;0;0;1;1
+45762;21088;2;174;76.0;130;80;1;1;0;0;1;0
+45763;22666;1;161;94.0;120;80;1;2;0;0;0;1
+45766;23312;1;156;56.0;150;90;1;1;0;0;1;1
+45767;23183;1;163;95.0;130;80;3;1;0;0;1;1
+45768;22109;2;168;90.0;120;90;2;1;0;0;1;0
+45770;22872;2;160;55.0;110;70;1;1;0;0;1;1
+45771;18765;1;155;64.0;130;79;1;1;0;0;1;0
+45773;18832;2;166;98.0;160;95;1;1;1;0;1;1
+45774;23331;1;169;98.0;130;80;1;1;0;0;1;1
+45776;14541;1;165;61.0;110;70;1;1;0;0;1;0
+45778;18446;2;164;59.0;120;70;1;1;0;0;1;0
+45779;20663;1;167;70.0;120;80;1;1;0;0;1;1
+45780;19157;2;165;70.0;120;80;1;1;0;0;1;0
+45781;21866;1;161;72.0;130;90;1;1;0;0;1;1
+45783;18698;1;147;79.0;160;100;1;1;0;0;1;1
+45784;23426;2;166;68.0;170;80;1;1;0;0;1;1
+45785;22460;1;158;95.0;130;90;1;1;0;0;0;0
+45788;15964;1;162;71.0;120;80;1;1;0;0;1;0
+45789;19696;2;176;116.0;150;90;2;1;1;1;1;1
+45791;18817;1;167;79.0;110;80;1;2;0;0;1;0
+45793;20164;1;144;57.0;140;80;1;1;0;0;1;0
+45795;18102;1;161;63.0;125;80;1;1;0;0;1;0
+45797;19139;1;155;83.0;130;80;1;1;0;0;1;0
+45798;21124;1;160;63.0;110;70;2;2;0;0;1;0
+45799;18410;1;166;72.0;100;70;2;2;0;0;1;0
+45800;18142;1;163;60.0;120;80;1;1;0;0;1;0
+45801;22523;2;180;76.0;140;90;2;1;0;0;1;1
+45803;19512;1;158;75.0;130;90;3;1;0;0;0;1
+45804;16013;1;164;50.0;100;70;1;1;0;0;1;0
+45805;21017;1;165;115.0;140;90;1;1;0;0;0;1
+45806;15255;1;170;78.0;140;90;1;1;0;0;1;1
+45808;18460;2;164;81.0;140;90;1;1;0;0;1;0
+45809;19606;1;169;60.0;120;90;1;1;0;0;1;1
+45810;14594;2;170;68.0;120;70;1;1;0;0;1;0
+45811;18930;1;154;94.0;140;90;3;3;0;0;1;1
+45813;14661;1;152;50.0;120;80;1;1;0;0;1;0
+45814;15747;1;143;36.0;90;60;1;1;0;0;1;0
+45815;16053;1;163;100.0;120;70;1;1;0;0;1;0
+45817;22824;2;163;66.0;120;80;1;1;0;0;1;0
+45819;18317;2;183;88.0;140;90;1;1;0;1;1;0
+45821;14474;1;166;66.0;120;80;1;1;0;0;1;0
+45823;23406;1;165;67.0;120;80;1;1;0;0;1;1
+45824;19732;2;170;85.0;120;80;3;3;0;0;1;0
+45825;15208;2;180;71.0;150;100;1;1;0;0;1;1
+45827;19991;1;166;67.0;120;80;3;3;0;0;1;0
+45828;19136;1;170;75.0;120;80;1;1;0;0;0;0
+45829;15997;1;162;73.0;120;80;1;1;0;0;1;0
+45832;15374;1;72;74.0;150;90;1;1;0;0;1;1
+45834;15857;1;174;62.0;115;80;1;1;0;0;1;0
+45838;14530;2;169;66.0;170;70;1;1;0;0;0;1
+45839;19961;2;166;94.0;120;70;1;1;0;0;1;0
+45841;16840;1;156;67.0;100;70;3;1;0;0;1;1
+45844;15831;1;159;54.0;120;80;1;1;0;0;1;1
+45846;18200;1;172;75.0;140;90;3;3;0;0;1;1
+45847;15379;2;157;59.0;120;70;1;1;0;0;1;0
+45849;21124;2;170;70.0;150;90;1;1;0;1;1;1
+45851;22648;1;162;84.0;110;70;1;1;0;0;1;0
+45852;21920;1;171;60.0;120;80;1;1;0;0;1;1
+45855;18927;1;159;76.0;120;80;1;1;1;0;1;0
+45856;22013;2;175;85.0;130;90;1;1;0;0;1;1
+45857;18243;2;185;74.0;102;66;1;1;0;0;1;0
+45858;18134;1;164;63.0;120;80;1;1;0;0;1;0
+45859;21926;1;169;95.0;130;80;2;1;0;0;1;1
+45862;16155;2;165;74.0;120;80;2;1;0;0;1;0
+45865;20352;2;178;95.0;120;80;1;2;0;0;1;1
+45866;21251;1;156;99.0;120;80;1;1;0;0;1;0
+45867;19846;2;174;77.0;130;90;2;1;0;0;0;0
+45868;18452;1;167;82.0;100;70;1;1;0;0;1;0
+45869;19954;2;174;64.0;110;70;1;1;1;0;1;0
+45870;18147;2;177;76.0;120;80;1;1;0;0;1;0
+45871;20242;1;155;76.0;125;75;1;1;0;0;0;1
+45874;16157;1;160;65.0;110;70;1;1;0;0;1;0
+45875;19681;1;164;86.0;140;80;1;1;0;0;1;1
+45877;15315;1;161;75.0;110;70;1;1;0;0;1;0
+45878;22456;2;170;65.0;150;80;1;1;0;0;1;1
+45880;23286;2;173;69.0;120;80;1;1;1;0;1;0
+45881;21412;1;167;69.0;130;90;1;1;0;0;1;0
+45884;18991;2;140;90.0;140;90;1;1;0;0;1;1
+45885;18788;2;174;71.0;120;90;1;1;0;0;1;0
+45886;18186;1;158;57.0;120;80;1;1;0;0;1;1
+45887;19635;1;167;91.0;120;70;2;1;0;0;1;0
+45888;20418;2;163;74.0;120;80;2;1;1;0;1;0
+45889;16635;1;174;69.0;140;100;2;3;0;0;1;1
+45890;21836;2;170;68.0;160;90;1;1;0;0;0;1
+45892;16957;2;170;90.0;140;90;1;1;0;0;1;1
+45893;15236;1;153;55.0;120;80;1;1;0;0;1;0
+45896;16265;1;168;68.0;120;80;1;1;0;0;1;0
+45897;21193;2;165;69.0;140;80;1;1;0;0;1;1
+45900;19550;2;162;88.0;140;80;1;1;0;0;1;1
+45902;21868;1;160;80.0;160;90;1;1;0;0;0;1
+45903;21911;2;162;72.0;120;80;1;3;0;0;0;0
+45907;15074;2;166;72.0;130;80;1;1;1;0;1;0
+45908;19763;1;162;60.0;120;80;1;1;0;0;1;0
+45909;21175;1;162;72.0;130;90;1;1;0;0;1;1
+45910;14692;1;170;80.0;120;80;1;1;0;0;1;0
+45911;18132;2;169;82.0;140;90;2;2;0;0;1;0
+45913;20672;1;168;105.0;115;75;3;3;0;0;1;1
+45914;21296;1;160;65.0;130;90;1;1;0;0;0;1
+45915;14776;2;161;79.0;120;80;1;1;0;0;0;0
+45916;16234;1;167;65.0;120;80;1;1;0;0;1;1
+45918;19591;1;158;68.0;140;90;1;1;0;0;1;1
+45921;19123;2;160;60.0;120;80;1;3;0;0;1;0
+45922;22458;2;160;67.0;140;90;1;2;0;0;1;1
+45924;21088;1;165;108.0;130;90;1;1;0;0;1;1
+45926;17378;2;182;76.0;120;80;1;1;0;0;1;0
+45927;21072;1;154;83.0;130;90;3;3;0;0;0;1
+45928;14702;1;163;67.0;110;70;1;1;0;0;1;0
+45931;16115;1;161;67.0;149;95;3;1;0;1;1;1
+45932;22465;2;156;75.0;120;90;2;3;0;0;0;0
+45933;21225;1;158;93.0;150;1000;1;2;0;0;1;1
+45934;18346;2;165;65.0;110;60;3;3;0;0;1;1
+45935;19726;2;170;93.0;140;90;2;1;0;0;1;1
+45937;22128;1;175;70.0;120;80;1;1;0;0;1;0
+45938;15558;2;180;85.0;140;90;3;1;1;1;1;1
+45939;17514;2;176;76.0;150;110;1;1;0;0;0;1
+45942;22532;2;172;78.0;150;80;1;1;0;0;0;1
+45943;16849;2;170;75.0;120;80;1;1;0;0;1;0
+45944;22481;1;170;96.0;120;80;1;1;0;0;1;1
+45945;22031;1;160;70.0;120;80;1;1;0;0;1;1
+45946;21166;2;173;93.0;120;70;1;1;1;0;1;1
+45948;19552;1;162;62.0;140;80;1;1;0;0;1;1
+45949;19517;1;174;84.0;120;80;2;1;0;0;1;0
+45951;18480;1;178;63.0;140;90;1;1;0;0;0;1
+45952;17316;1;155;54.0;90;60;1;1;0;0;1;0
+45953;21889;2;170;73.0;140;90;3;2;0;1;1;1
+45955;23317;1;150;79.0;135;85;1;1;0;0;1;1
+45956;15177;1;164;65.0;110;70;1;1;0;0;1;0
+45957;19505;2;182;90.0;160;100;2;2;1;0;1;0
+45958;23118;1;156;82.0;120;80;3;2;0;0;1;1
+45959;20416;1;166;56.0;130;80;1;1;0;0;1;1
+45965;19090;2;173;90.0;130;80;1;1;0;0;1;1
+45966;18453;2;170;96.0;140;90;1;3;0;0;1;0
+45967;21894;1;157;62.0;120;70;1;1;0;0;1;1
+45968;19751;1;156;70.0;122;69;1;1;0;0;1;1
+45969;23268;1;167;73.0;120;80;1;1;0;0;1;1
+45970;15147;2;181;78.0;120;80;1;1;1;1;1;0
+45971;18116;1;155;102.0;160;120;2;3;0;0;1;1
+45972;20075;1;168;92.0;140;90;2;1;0;0;0;1
+45974;21030;1;163;103.0;160;90;1;2;0;0;1;1
+45975;23183;1;162;120.0;100;100;1;1;0;0;1;0
+45981;21265;1;165;68.0;120;80;1;1;0;0;1;1
+45982;17553;2;175;65.0;120;1000;1;1;1;1;1;0
+45983;17528;1;168;67.0;110;70;1;1;0;0;1;0
+45985;21130;1;162;58.0;120;80;1;1;0;0;1;0
+45986;16559;1;159;59.0;120;80;1;1;0;0;1;0
+45987;18377;2;175;67.0;130;80;1;1;0;0;0;1
+45988;17510;1;162;64.0;120;80;1;2;0;0;1;0
+45989;23280;2;174;106.0;150;90;1;1;0;0;1;1
+45990;15325;1;163;114.0;140;90;1;1;0;0;1;1
+45991;21652;2;165;68.0;130;70;2;2;0;0;1;1
+45992;19630;1;171;85.0;120;80;2;1;0;0;1;1
+45993;21360;1;168;95.0;130;80;1;1;0;0;1;0
+45997;14783;1;168;98.0;120;80;1;1;0;0;1;0
+45998;18973;1;158;64.0;100;70;1;1;1;0;1;0
+45999;19585;1;163;77.0;130;80;1;2;0;0;1;0
+46000;22069;1;154;63.0;130;80;1;1;0;1;1;0
+46001;19093;2;169;78.0;140;1100;1;2;1;1;1;1
+46002;21168;1;172;68.0;120;80;1;1;0;0;1;1
+46003;22678;2;170;70.0;160;100;1;1;0;0;1;1
+46004;22799;2;170;79.0;120;80;1;2;0;0;0;1
+46006;22804;1;162;70.0;130;90;1;1;0;0;0;1
+46007;22798;1;160;87.0;150;90;3;3;0;0;1;1
+46008;19472;1;165;75.0;120;80;2;2;0;0;1;1
+46009;21053;1;152;82.0;120;80;1;1;0;0;0;1
+46010;20952;2;175;105.0;120;80;1;3;0;0;0;1
+46011;21151;2;167;64.0;120;60;1;3;0;0;1;0
+46012;22558;2;165;75.0;150;90;1;1;0;0;0;1
+46013;18476;1;158;58.0;130;90;1;1;0;0;0;1
+46014;20509;1;170;90.0;120;80;1;1;0;0;1;0
+46015;16015;1;163;74.0;120;80;1;2;0;0;1;0
+46016;22019;2;183;89.0;120;80;1;1;0;0;1;0
+46017;16181;2;172;73.0;120;80;1;1;0;0;1;0
+46018;21206;2;169;77.0;150;80;2;1;0;0;1;1
+46019;17366;2;176;73.0;100;70;1;1;0;0;1;0
+46020;14605;1;168;64.0;130;80;1;1;0;0;1;0
+46022;20556;1;160;68.0;140;90;1;1;0;0;1;1
+46024;14748;1;154;73.0;120;80;1;1;0;0;0;0
+46025;18703;1;162;110.0;125;80;1;1;1;0;1;1
+46026;22110;1;165;74.0;120;80;1;1;0;0;1;1
+46028;21239;1;158;48.0;150;100;1;1;0;0;1;1
+46031;20647;2;160;68.0;110;70;1;1;1;1;1;0
+46032;16589;1;180;70.0;120;80;1;1;0;0;0;1
+46033;15957;2;170;78.0;120;80;1;1;1;1;1;0
+46034;16009;2;171;72.0;128;80;1;2;0;0;1;0
+46035;16245;1;170;68.0;120;70;1;1;0;0;1;0
+46036;19654;2;160;78.0;120;80;1;1;0;0;1;0
+46037;21289;1;156;73.0;150;100;3;2;0;0;1;1
+46038;14718;1;160;65.0;120;80;1;1;0;0;1;0
+46039;22492;2;165;84.0;120;80;1;1;1;1;1;0
+46040;17445;1;157;89.0;110;80;2;1;0;0;1;0
+46042;18275;1;161;115.0;160;100;2;1;0;0;0;1
+46045;22881;1;170;64.0;110;80;1;1;0;0;1;0
+46048;22656;2;170;88.0;130;70;1;1;0;0;0;0
+46049;21129;2;157;76.0;140;70;1;2;0;0;0;1
+46050;15912;1;167;86.0;140;70;2;1;0;0;1;0
+46051;20418;1;160;88.0;160;90;1;1;0;0;1;1
+46052;17532;1;164;109.0;140;80;1;2;0;0;1;1
+46055;16550;2;170;85.0;180;100;1;1;0;0;1;1
+46056;16212;1;162;56.0;120;80;1;1;0;0;1;0
+46057;18208;2;172;75.0;110;80;1;1;0;0;1;0
+46058;21743;1;164;81.0;130;80;3;1;0;0;1;0
+46059;23206;2;167;71.0;110;60;1;1;0;0;1;0
+46060;20214;1;156;72.0;150;100;1;1;0;0;1;1
+46062;21806;1;158;82.0;120;80;2;1;0;0;0;1
+46067;14438;2;174;75.0;120;80;1;1;1;1;1;0
+46068;19584;2;170;98.0;150;90;2;1;0;0;1;1
+46069;19613;1;162;56.0;130;90;1;1;0;0;1;1
+46071;21782;2;174;108.0;160;110;1;1;0;0;1;1
+46074;19707;2;178;95.0;150;90;2;3;0;0;1;0
+46076;15614;1;169;58.0;100;60;2;1;0;0;1;1
+46078;16769;1;152;58.0;90;60;1;1;0;0;0;0
+46082;23310;2;159;53.0;120;70;2;2;0;0;1;0
+46083;17552;1;167;72.0;120;90;1;1;0;0;1;0
+46084;19000;2;162;67.0;120;80;1;1;0;0;1;1
+46085;21180;2;157;50.0;120;80;2;1;0;0;1;1
+46086;20383;1;145;70.0;110;70;1;1;0;0;1;0
+46087;19736;1;158;56.0;120;90;1;1;0;0;1;0
+46088;18928;1;154;63.0;120;80;1;1;0;0;1;0
+46089;18399;1;165;65.0;140;90;1;1;0;0;1;1
+46090;21198;2;181;85.0;110;70;1;1;0;0;0;1
+46093;15179;1;161;63.0;90;60;2;1;0;0;1;0
+46094;15828;2;169;82.0;140;90;2;2;0;0;1;1
+46095;16060;1;168;59.0;120;70;1;1;0;0;1;0
+46096;20323;2;187;87.0;120;90;1;1;1;1;1;0
+46097;14454;2;173;73.0;110;80;2;2;0;0;1;0
+46098;23266;2;165;73.0;130;80;1;1;0;1;1;1
+46100;18756;1;160;126.0;120;80;3;1;0;0;1;1
+46101;21848;1;158;85.0;120;70;1;1;0;1;0;0
+46102;20506;1;159;57.0;140;90;1;1;0;0;1;1
+46103;18063;2;175;107.0;160;1000;3;3;1;0;1;1
+46104;18093;1;158;70.0;140;90;3;3;0;0;1;1
+46105;17552;2;171;69.0;120;80;1;1;0;0;1;0
+46106;14720;2;170;71.0;120;80;1;1;0;0;1;0
+46107;18410;2;168;68.0;120;70;1;1;0;0;1;0
+46108;19231;1;163;69.0;120;80;1;1;0;0;1;0
+46109;21514;1;164;70.0;120;80;1;1;0;0;1;1
+46110;17681;1;158;89.0;120;80;1;1;0;0;1;0
+46111;19584;2;176;100.0;180;100;1;1;1;0;1;1
+46112;14631;2;164;70.0;120;80;1;1;0;0;1;1
+46113;22589;1;164;74.0;160;80;3;1;0;0;1;1
+46114;15835;2;180;76.0;120;80;2;1;1;0;1;1
+46116;19884;1;157;68.0;120;80;1;1;0;0;1;0
+46120;15406;1;154;56.0;120;70;1;1;0;0;1;0
+46123;19462;2;164;85.0;130;90;1;1;0;0;1;0
+46125;20404;2;168;68.0;120;80;1;1;0;0;1;0
+46126;20438;1;164;78.0;120;80;1;1;0;0;1;0
+46127;17552;2;178;85.0;130;90;1;2;1;0;1;0
+46130;17373;2;168;62.0;120;90;3;1;0;0;1;0
+46133;23112;1;165;79.0;170;110;2;1;0;0;1;1
+46134;17985;1;148;93.0;130;80;3;1;0;0;1;1
+46136;17515;2;178;75.0;130;90;1;1;1;0;1;0
+46137;19771;1;162;64.0;110;70;1;1;0;0;1;0
+46138;21779;2;172;85.0;140;100;1;1;1;0;0;1
+46140;20323;1;163;76.0;190;90;1;1;0;0;1;0
+46142;23328;1;152;75.0;120;80;3;3;0;0;1;0
+46143;23132;1;150;60.0;140;90;1;1;0;0;1;1
+46145;19620;1;164;66.0;120;80;1;1;0;0;1;0
+46146;19720;1;162;70.0;140;90;1;1;0;0;1;1
+46149;18867;2;166;82.0;120;80;1;1;0;0;1;0
+46151;21860;2;180;77.0;110;70;1;1;0;0;1;0
+46152;17520;1;162;60.0;115;70;1;1;0;0;1;1
+46154;16725;1;164;75.0;110;60;1;1;0;0;1;0
+46155;21051;1;143;86.0;140;90;1;1;0;0;1;1
+46156;19634;1;177;77.0;110;70;1;1;0;0;1;0
+46157;21346;2;172;69.0;120;80;1;1;0;0;0;1
+46158;16771;1;160;75.0;110;80;1;1;0;0;1;1
+46159;22382;2;170;73.0;120;80;2;2;1;0;1;0
+46160;17615;2;160;70.0;120;70;1;1;0;0;1;0
+46161;20401;1;156;80.0;140;80;1;2;0;0;1;1
+46163;18162;1;164;75.0;140;90;1;1;0;0;1;1
+46164;22752;2;169;55.0;120;80;2;2;0;0;1;0
+46165;21389;1;167;90.0;130;90;2;3;0;0;1;1
+46166;17737;1;180;100.0;140;1000;1;3;1;0;1;1
+46167;20681;1;155;79.0;140;70;1;1;0;1;1;1
+46168;23484;1;160;98.0;130;80;1;1;0;0;1;1
+46169;18110;1;154;54.0;100;60;2;1;0;0;1;0
+46172;21754;1;158;46.0;130;80;1;1;0;0;1;0
+46173;18239;1;172;105.0;130;80;1;1;1;0;0;0
+46174;22078;1;158;100.0;130;80;3;1;0;0;1;1
+46175;19872;1;174;70.0;110;70;1;1;0;0;1;0
+46176;14382;2;177;78.0;130;90;1;1;0;1;1;0
+46177;22771;1;159;60.0;120;80;2;1;0;0;1;1
+46178;21943;1;156;66.0;130;80;3;1;0;0;0;0
+46179;21094;2;158;56.0;120;80;1;1;0;0;1;1
+46182;18848;1;162;67.0;110;69;1;1;0;0;1;0
+46183;14635;1;162;92.0;140;90;1;1;0;0;1;1
+46184;17625;1;163;77.0;110;60;1;1;0;0;1;0
+46185;14666;1;165;80.0;120;90;1;3;0;0;1;0
+46186;21860;1;148;62.0;110;70;1;1;0;0;0;0
+46187;18877;2;167;90.0;150;90;1;1;0;0;1;1
+46188;19711;1;155;87.0;160;90;1;1;0;0;1;1
+46190;22789;1;162;75.0;120;70;1;1;0;0;1;0
+46191;18337;2;166;111.0;160;80;2;1;1;0;1;1
+46194;16969;2;170;95.0;120;80;1;1;0;0;0;0
+46195;15182;2;178;82.0;120;80;1;1;0;0;1;0
+46196;19840;1;163;63.0;120;80;3;3;0;0;1;0
+46198;16818;1;165;72.0;120;80;1;1;0;0;1;0
+46200;20587;1;172;68.0;130;90;1;1;0;0;0;1
+46202;15369;2;172;76.0;120;80;1;1;0;0;1;0
+46204;21179;1;162;80.0;145;100;3;1;0;0;1;1
+46205;15774;1;161;75.0;150;100;1;1;0;0;1;1
+46206;18894;1;172;79.0;160;100;1;1;0;0;1;1
+46207;23471;1;165;58.0;120;80;1;1;0;0;1;1
+46208;22080;1;165;79.0;140;80;1;1;0;0;0;1
+46212;21053;2;168;70.0;140;90;1;1;1;0;1;1
+46213;21733;1;170;71.0;160;90;1;1;0;0;1;0
+46215;21889;1;163;70.0;160;100;1;1;0;0;1;1
+46217;16303;1;163;55.0;120;80;1;1;0;0;0;0
+46218;18171;2;173;80.0;180;100;2;1;0;0;1;1
+46219;23505;2;171;68.0;130;90;1;3;1;0;1;0
+46221;17620;2;170;68.0;120;80;1;2;0;0;1;0
+46223;23402;1;156;56.0;120;80;1;1;0;0;1;1
+46224;21798;1;158;65.0;130;80;2;2;0;0;1;1
+46229;16852;1;168;108.0;150;90;2;2;0;0;1;0
+46230;17556;2;175;74.0;130;80;1;1;0;0;0;0
+46231;22639;1;156;69.0;130;90;1;1;0;0;1;1
+46232;20397;2;165;69.0;120;80;1;1;0;0;0;1
+46234;23377;1;167;79.0;120;80;1;1;0;0;1;0
+46235;19497;2;164;64.0;120;80;1;1;0;0;1;0
+46236;19228;2;160;60.0;120;60;1;1;0;0;0;0
+46237;14722;2;175;62.0;120;80;1;1;0;0;1;0
+46238;19910;1;160;65.0;160;100;1;1;0;0;1;1
+46239;19481;2;170;82.0;130;90;1;1;0;0;1;0
+46240;23084;1;161;55.0;100;70;2;1;0;0;0;0
+46243;15247;2;171;70.0;130;90;1;1;0;0;1;1
+46246;18131;2;181;75.0;140;90;1;1;0;0;0;0
+46247;23387;2;165;69.0;150;90;1;1;0;0;1;1
+46249;14522;1;159;61.0;120;70;1;1;0;0;1;0
+46250;16780;2;159;65.0;140;90;1;1;0;0;0;1
+46251;20407;1;160;62.0;120;80;2;1;0;0;1;1
+46252;19655;2;179;89.0;120;80;2;1;0;0;1;1
+46253;17358;2;170;80.0;109;67;1;1;0;0;1;0
+46254;16677;1;168;90.0;150;90;2;1;0;0;0;1
+46257;18784;1;158;74.0;120;80;1;1;0;0;1;0
+46258;18265;1;156;75.0;120;80;1;1;0;0;1;0
+46259;18926;1;170;98.0;110;80;1;1;0;0;1;0
+46260;22678;2;164;74.0;130;80;3;1;0;0;1;1
+46261;19562;2;171;79.0;120;80;1;1;0;0;1;1
+46265;21046;1;167;76.0;140;90;1;1;0;0;1;1
+46267;22087;1;158;64.0;130;80;1;1;0;0;1;0
+46268;18853;1;178;86.0;150;100;1;1;0;0;1;1
+46269;20428;1;156;60.0;120;80;1;1;0;0;1;0
+46270;16825;2;167;65.0;120;80;1;1;0;0;1;0
+46271;18353;2;172;66.0;120;80;1;1;0;0;1;0
+46272;18882;2;176;76.0;130;80;1;1;1;0;1;0
+46274;18515;1;161;62.0;140;90;1;1;0;0;1;1
+46275;21747;1;164;82.0;140;90;3;2;0;0;1;1
+46276;19636;2;152;56.0;120;80;1;1;0;0;1;0
+46277;19688;1;159;70.0;110;70;1;1;0;0;0;1
+46278;21750;2;170;76.0;140;70;1;1;0;0;1;0
+46279;16729;1;158;55.0;120;80;2;2;0;0;1;0
+46282;22752;1;164;95.0;150;90;1;1;0;0;0;1
+46283;22416;1;154;64.0;130;90;3;3;0;0;1;1
+46284;22594;2;173;75.0;130;80;1;2;0;0;0;1
+46285;19551;1;160;60.0;120;80;1;1;0;0;1;0
+46287;21753;1;162;85.0;170;95;2;1;0;0;0;0
+46288;21244;1;169;65.0;100;70;1;1;0;0;1;0
+46289;23237;1;157;65.0;120;80;1;1;0;0;1;1
+46290;20902;1;170;85.0;140;80;3;2;0;0;1;1
+46291;21946;1;169;70.0;120;80;1;1;0;0;1;1
+46292;17459;2;165;58.0;110;70;1;1;0;0;1;0
+46293;23533;1;162;50.0;150;90;1;1;0;0;0;0
+46295;19693;1;160;65.0;190;80;3;1;0;0;0;1
+46297;20974;1;155;57.0;130;80;2;2;0;0;1;1
+46298;16984;1;175;69.0;120;80;1;1;0;0;0;0
+46299;16162;1;164;82.0;130;80;1;1;0;0;1;0
+46300;21891;1;150;75.0;120;80;2;2;0;0;1;1
+46301;15214;1;160;60.0;120;79;1;1;0;0;1;0
+46302;21880;2;168;68.0;120;80;1;1;0;0;1;0
+46303;19892;2;169;70.0;130;80;1;1;0;0;1;0
+46305;21024;1;155;56.0;100;80;1;1;0;0;1;0
+46306;14549;1;152;40.0;90;50;1;1;0;0;1;0
+46307;18339;1;164;65.0;120;80;1;1;0;0;0;0
+46309;16986;2;170;90.0;160;140;1;1;1;0;1;1
+46311;14715;1;153;70.0;120;80;1;1;0;0;1;0
+46312;22811;2;162;92.0;130;80;1;1;0;0;1;1
+46315;21824;1;155;75.0;130;90;1;1;0;0;1;1
+46316;18363;1;165;65.0;120;80;1;1;0;0;0;1
+46317;19826;1;161;62.0;120;80;1;1;0;0;1;0
+46318;19417;2;170;50.0;100;70;1;1;0;0;1;0
+46319;21034;1;169;70.0;140;90;1;1;0;0;1;0
+46320;15362;2;174;67.0;170;100;1;1;1;0;1;1
+46321;22768;2;179;85.0;140;90;3;1;0;0;1;1
+46322;15322;1;160;65.0;140;70;1;1;0;0;1;1
+46323;21656;1;156;64.0;120;80;1;1;0;0;1;0
+46325;17615;1;169;60.0;110;70;1;1;0;0;1;0
+46326;18946;2;167;68.0;120;90;1;1;0;0;0;1
+46327;23342;1;161;86.0;137;87;3;3;0;0;1;1
+46329;20235;2;170;70.0;120;80;1;1;0;0;1;0
+46333;14430;1;157;73.0;120;80;1;1;0;0;1;0
+46334;15402;1;165;70.0;110;70;1;1;0;0;1;0
+46337;20969;2;175;85.0;120;70;1;1;0;0;1;1
+46338;19719;1;164;96.0;120;80;1;1;0;0;1;0
+46339;21366;1;156;70.0;140;90;1;1;0;0;1;1
+46340;22663;1;150;75.0;200;100;1;3;0;0;1;1
+46343;23335;2;168;66.0;120;80;1;1;1;1;1;1
+46344;20424;2;168;85.0;120;80;1;1;1;1;0;0
+46345;21756;2;175;80.0;150;90;2;1;1;1;1;1
+46346;18117;1;162;59.0;140;90;1;1;0;0;1;0
+46348;18975;1;156;54.0;120;90;1;1;0;0;0;0
+46349;19637;2;175;89.0;120;80;1;1;0;0;1;0
+46353;17578;2;166;74.0;180;1000;1;1;0;0;1;1
+46354;20299;1;161;80.0;150;1002;1;1;0;0;1;1
+46356;15462;1;172;75.0;130;80;1;1;0;0;1;0
+46358;15804;1;151;43.0;100;60;1;1;0;0;1;0
+46359;21963;1;158;73.0;120;80;1;1;0;0;1;1
+46360;17495;2;162;67.0;110;70;1;1;0;0;0;1
+46361;18376;1;160;47.0;110;80;1;1;0;0;1;0
+46363;19681;2;187;81.0;110;80;1;1;0;0;1;1
+46364;23275;1;149;59.0;200;110;1;2;0;0;1;1
+46365;20279;1;152;92.0;160;110;1;1;0;0;1;1
+46366;20981;1;151;73.0;120;80;1;1;0;0;1;1
+46367;16076;1;163;65.0;120;80;1;1;0;0;1;0
+46368;18284;2;176;77.0;130;70;1;1;0;0;1;1
+46369;19540;1;158;55.0;160;100;1;1;0;0;1;1
+46370;19794;1;154;71.0;90;60;1;1;0;0;1;0
+46371;19578;1;164;72.0;110;70;1;1;0;0;0;0
+46372;21841;1;170;68.0;120;80;1;1;0;0;1;0
+46373;18317;1;162;68.0;110;80;1;1;0;0;1;1
+46375;19096;2;176;92.0;130;80;1;1;0;0;1;0
+46377;14533;2;170;65.0;120;80;1;1;0;0;1;1
+46379;15385;1;165;72.0;120;70;2;3;0;0;0;0
+46381;14582;2;179;77.0;125;75;1;1;0;0;1;0
+46382;22609;2;166;80.0;160;110;1;1;1;0;1;1
+46384;22673;2;175;70.0;120;80;1;1;0;0;1;1
+46385;18982;2;173;68.0;130;80;1;1;1;0;1;0
+46386;20431;2;165;96.0;120;80;1;1;0;0;1;0
+46388;18315;2;170;74.0;120;90;1;1;0;1;1;0
+46389;20344;1;164;105.0;180;110;3;2;0;1;0;1
+46390;15286;2;158;56.0;120;79;1;1;0;0;1;0
+46391;18943;1;160;74.0;110;60;1;1;0;0;1;1
+46392;18894;1;154;82.0;170;100;3;1;0;0;1;1
+46395;20631;1;153;83.0;120;70;1;1;0;0;1;0
+46396;21403;1;156;66.0;120;80;1;1;0;0;1;0
+46397;17629;2;174;80.0;140;80;2;1;0;0;1;1
+46398;14770;2;154;54.0;110;70;2;1;0;0;0;1
+46399;20208;2;179;120.0;135;1001;1;1;0;0;1;1
+46400;20420;1;156;72.0;120;80;2;1;0;0;1;0
+46401;16730;2;166;73.0;110;65;1;1;0;0;1;0
+46403;16502;1;172;69.0;120;80;1;1;0;0;1;0
+46404;22001;1;165;65.0;120;80;1;1;0;0;1;1
+46406;15853;1;163;65.0;120;80;1;1;0;0;1;1
+46407;18075;2;162;67.0;120;80;1;1;0;1;1;0
+46410;22047;2;168;66.0;120;80;1;1;1;1;1;0
+46412;15187;1;165;98.0;147;97;2;1;0;0;1;1
+46413;18152;2;172;61.0;170;1000;3;1;1;1;1;1
+46414;20621;1;154;58.0;110;70;1;1;0;0;1;0
+46415;14533;1;167;93.0;130;80;1;1;0;0;0;0
+46417;19834;1;156;64.0;110;80;1;1;0;0;1;0
+46418;18147;1;167;82.0;140;80;3;1;0;0;1;1
+46420;14770;1;177;70.0;120;80;2;2;0;0;0;0
+46421;20393;1;150;77.0;120;90;2;1;0;0;1;1
+46422;19592;1;147;51.0;150;90;1;1;0;0;1;1
+46423;22003;1;178;70.0;120;70;1;1;0;0;1;1
+46424;23541;1;175;71.0;120;80;3;1;0;0;1;1
+46425;21183;2;169;75.0;120;80;1;1;0;0;1;0
+46426;20445;2;170;78.0;140;90;1;1;0;0;1;0
+46427;23459;2;166;58.0;128;74;1;1;0;0;1;1
+46428;23222;1;167;56.0;140;90;1;1;0;0;1;1
+46429;14570;2;172;99.0;110;70;1;1;0;0;1;0
+46430;21038;1;160;65.0;120;80;1;1;0;0;1;0
+46431;18246;1;165;55.0;110;70;3;3;0;0;1;0
+46433;23142;1;156;80.0;130;80;3;3;0;0;1;1
+46434;18938;2;166;64.0;140;80;1;1;0;0;1;1
+46435;19185;1;165;75.0;120;80;1;1;0;0;0;1
+46436;18384;2;160;65.0;140;90;1;1;1;0;1;1
+46437;19879;2;158;68.0;150;100;1;1;0;0;0;1
+46439;22656;2;168;68.0;120;80;2;1;1;0;1;1
+46440;18415;1;155;95.0;120;80;3;1;0;0;1;1
+46441;18025;2;186;89.0;145;90;1;1;0;1;1;1
+46442;19868;1;156;82.0;140;90;1;1;0;0;1;0
+46443;17680;1;149;61.5;120;70;1;1;0;0;1;0
+46444;17287;2;169;72.0;120;80;1;1;0;0;1;1
+46445;23484;1;165;65.0;120;80;1;1;0;0;0;1
+46447;18326;1;157;75.0;130;80;1;1;0;0;1;0
+46448;21353;1;164;60.0;100;60;1;1;0;0;1;1
+46449;23403;1;154;90.0;130;80;3;1;0;0;1;1
+46451;15526;2;176;71.0;100;70;1;1;0;0;1;1
+46454;22006;1;159;95.0;140;90;1;2;0;0;1;1
+46456;21213;1;175;75.0;110;79;3;3;0;0;1;1
+46457;21781;1;164;64.0;120;80;1;1;0;0;1;1
+46460;21384;1;158;68.0;140;100;1;1;0;0;0;1
+46462;19495;1;158;62.0;150;90;1;1;0;0;1;1
+46463;21990;2;157;49.0;130;90;1;1;1;0;1;0
+46465;15819;1;170;68.0;110;80;1;1;0;0;0;0
+46467;20229;2;173;90.0;120;80;1;1;0;0;1;0
+46468;23358;1;169;65.0;130;90;1;1;0;0;0;1
+46469;15928;1;165;87.0;140;100;2;1;0;0;1;1
+46470;18832;1;169;77.0;110;70;1;1;0;1;1;0
+46471;21924;2;178;75.0;120;80;2;1;0;0;0;1
+46472;22029;1;168;68.0;130;80;1;1;0;0;1;1
+46473;20242;1;154;80.5;130;70;3;3;1;0;1;1
+46474;19750;1;168;65.0;140;90;1;1;0;0;1;1
+46475;18120;2;160;60.0;160;100;1;1;0;0;1;1
+46476;21447;1;152;73.0;140;80;3;1;0;0;1;1
+46478;17562;1;160;72.0;120;80;1;1;0;0;1;0
+46480;18093;1;152;80.0;110;80;1;1;0;0;1;0
+46481;21864;2;168;96.0;120;80;3;2;0;0;1;1
+46482;21823;1;157;61.0;150;90;1;1;0;0;0;0
+46483;20994;1;172;62.0;120;90;1;1;0;0;1;1
+46485;17356;1;162;43.0;130;80;3;3;0;0;1;1
+46486;22501;1;157;83.0;180;100;2;1;0;0;1;1
+46487;19854;2;172;79.0;120;80;1;1;0;0;1;0
+46489;23116;1;159;97.0;150;69;1;1;0;0;0;1
+46490;20218;2;172;68.0;140;90;1;1;0;0;1;1
+46491;19462;1;168;81.0;120;80;1;1;0;0;1;1
+46492;23366;2;173;76.0;120;82;1;1;0;0;1;1
+46493;22613;2;165;66.0;120;80;1;1;0;0;1;1
+46494;23424;2;160;60.0;140;80;3;3;0;0;1;1
+46495;21300;2;176;98.0;240;110;1;1;1;0;1;1
+46497;22481;2;165;88.0;140;80;2;1;0;0;0;0
+46498;18728;1;162;61.0;120;80;1;1;0;0;1;0
+46499;19552;2;174;82.0;140;90;2;1;0;0;1;1
+46500;21725;1;157;57.0;160;100;1;1;0;0;1;1
+46501;19934;1;156;80.0;140;1000;1;1;0;0;1;1
+46502;19769;2;172;85.0;120;80;1;1;0;0;1;1
+46503;21909;1;165;65.0;130;80;1;1;0;0;1;1
+46504;21979;1;170;78.0;130;90;1;1;0;0;0;0
+46505;22105;2;173;74.0;120;80;1;1;0;1;1;0
+46506;21053;1;173;72.0;124;66;2;1;0;0;1;0
+46509;21090;1;163;107.0;130;80;2;1;0;0;1;1
+46511;21188;1;158;124.0;180;100;1;2;0;0;0;1
+46517;19747;1;160;72.0;130;90;1;1;0;0;1;1
+46519;14384;1;160;54.0;90;60;1;1;0;0;1;0
+46521;21187;2;174;65.0;140;80;3;1;0;0;1;1
+46522;16797;2;171;82.0;120;80;1;1;0;0;0;0
+46523;15172;2;170;55.0;130;80;1;1;0;0;1;0
+46524;22568;1;165;85.0;150;90;3;3;0;0;1;0
+46525;19695;1;169;60.0;120;80;1;3;0;0;1;0
+46526;19086;1;170;68.0;120;80;1;1;0;0;1;1
+46527;20680;1;162;65.0;120;80;1;1;0;0;0;1
+46528;16153;1;165;60.0;110;70;1;1;0;0;1;0
+46529;15427;1;166;64.0;160;90;1;1;0;0;0;0
+46530;18842;2;174;89.0;120;80;1;1;0;0;1;1
+46532;17582;1;197;87.0;120;80;2;1;0;0;0;0
+46533;20628;1;159;69.0;110;80;1;1;0;0;0;0
+46534;21909;1;166;69.0;100;65;1;1;0;0;1;0
+46535;15319;1;160;99.0;120;80;1;1;0;0;1;1
+46536;16813;1;130;90.0;130;90;1;1;0;0;1;0
+46537;21075;1;160;62.0;110;70;1;1;0;0;1;1
+46539;22661;1;159;94.0;120;80;1;1;0;0;0;1
+46541;20935;2;162;82.0;150;100;3;1;0;0;1;1
+46542;15231;1;165;60.0;110;70;1;1;0;0;1;0
+46543;19541;2;156;48.0;110;70;1;1;0;0;1;0
+46545;15380;2;175;69.0;120;80;1;1;1;0;1;0
+46546;15949;2;175;80.0;150;90;1;1;0;0;1;1
+46548;18870;2;174;102.0;120;80;1;3;0;0;1;1
+46550;23279;1;150;65.0;140;80;1;1;0;0;1;0
+46551;18279;1;165;72.0;120;80;1;1;0;0;1;1
+46552;23444;1;165;65.0;150;90;2;1;0;0;1;1
+46554;23417;1;167;56.0;160;90;1;1;0;0;1;1
+46555;14539;2;178;79.0;100;80;1;1;0;0;1;0
+46556;22010;1;155;57.0;120;80;1;1;0;0;0;0
+46557;20415;2;175;80.0;140;90;1;1;0;0;1;1
+46558;15322;1;166;94.0;120;80;2;2;0;0;1;1
+46560;20447;1;152;68.0;140;90;1;1;0;0;1;0
+46561;21103;2;170;85.0;140;80;2;2;0;0;1;1
+46562;19007;1;176;45.0;120;79;3;3;0;0;1;1
+46563;18943;1;159;55.0;110;80;1;1;0;0;1;1
+46564;14755;2;176;60.0;110;90;1;1;1;0;1;0
+46567;18917;1;167;70.0;140;1000;1;1;0;0;0;1
+46568;20403;1;147;85.0;120;80;1;1;0;0;1;0
+46569;21416;1;160;110.0;180;90;3;1;0;0;0;1
+46570;19782;1;165;59.0;100;60;1;2;0;0;0;0
+46571;16701;2;171;70.0;120;70;1;1;0;0;0;1
+46573;22158;2;163;73.0;140;90;3;1;0;0;1;1
+46574;21821;1;169;75.0;120;80;1;1;0;0;0;0
+46577;15361;1;156;55.0;110;80;1;1;0;0;1;1
+46579;14400;2;168;76.0;160;100;1;1;0;0;1;1
+46581;17289;2;179;78.0;130;80;1;1;1;0;1;0
+46584;21197;1;166;101.0;140;90;1;1;0;0;1;1
+46585;17048;2;170;65.0;120;80;1;1;0;0;0;1
+46586;22586;2;165;97.0;160;100;1;1;0;0;1;0
+46587;21130;1;160;70.0;140;90;1;1;0;0;0;0
+46591;19678;2;176;85.0;130;90;1;2;0;1;1;1
+46592;17490;2;179;78.0;120;80;1;1;0;0;1;0
+46594;17337;1;163;64.0;120;80;1;1;0;0;1;0
+46596;16654;2;191;99.0;120;70;1;1;0;0;1;1
+46597;21827;2;158;63.0;150;100;1;1;0;0;1;1
+46598;19573;1;158;74.0;110;70;1;1;0;0;0;1
+46599;20286;2;168;70.0;100;60;1;1;0;0;1;0
+46600;20431;1;171;68.0;90;60;1;1;1;0;1;0
+46601;17602;2;178;109.0;120;80;3;1;0;0;1;1
+46602;17593;2;170;70.0;120;80;1;1;0;0;1;0
+46604;21871;1;154;60.0;150;90;1;1;0;0;1;1
+46605;20965;1;154;87.0;120;80;1;1;0;0;1;0
+46606;14652;1;159;41.0;110;70;1;1;1;0;1;0
+46607;21885;1;154;55.0;120;70;1;1;0;0;1;0
+46608;19671;1;158;80.0;160;100;1;1;0;0;1;1
+46609;16529;1;164;71.0;160;120;3;3;0;1;1;1
+46613;20430;1;155;73.0;130;80;1;1;0;0;1;1
+46614;17490;2;152;65.0;130;90;1;1;0;0;1;0
+46615;20954;1;162;78.0;120;80;2;2;0;0;1;1
+46616;16962;1;162;64.0;120;90;1;1;0;0;1;0
+46618;18839;2;172;65.0;120;60;1;1;0;0;1;1
+46619;16129;1;165;74.0;140;90;1;1;0;0;1;1
+46621;20881;1;170;78.0;120;80;1;1;0;0;1;0
+46623;19709;1;157;78.0;130;90;1;1;0;0;1;0
+46624;15994;2;160;66.0;120;90;1;1;0;0;0;0
+46625;17459;2;173;102.0;140;90;1;1;1;1;1;0
+46627;19741;1;159;108.0;130;80;1;1;0;0;1;1
+46628;14631;1;150;51.0;90;60;1;3;0;0;1;0
+46629;18225;1;157;89.0;140;90;2;1;0;0;1;1
+46630;15378;1;175;70.0;110;70;1;1;0;0;0;0
+46631;14894;1;163;57.0;110;70;1;1;0;0;1;0
+46632;18034;1;157;79.0;120;80;1;2;0;0;1;1
+46634;21131;2;169;85.0;110;90;3;3;0;0;1;1
+46635;19112;1;170;74.0;130;80;1;1;0;0;1;1
+46636;18195;1;169;87.0;160;80;1;1;0;0;1;1
+46638;18384;1;164;63.0;110;80;1;1;0;0;1;0
+46639;20509;1;165;68.0;150;90;1;1;0;0;0;1
+46640;21794;1;157;54.0;110;70;1;1;0;0;1;1
+46641;19221;1;164;55.0;120;80;1;1;0;0;1;0
+46642;20585;1;163;84.0;110;70;1;1;0;0;0;1
+46643;23338;2;167;77.0;150;90;3;1;0;0;1;1
+46644;23286;1;170;70.0;110;70;1;1;0;0;1;0
+46645;19211;1;158;55.0;160;100;1;1;0;0;1;1
+46646;18201;2;168;79.0;120;79;1;1;1;1;1;0
+46648;16864;1;165;65.0;120;80;1;1;0;0;1;1
+46651;18707;1;174;81.0;147;94;1;1;0;0;1;0
+46652;15230;1;163;116.0;140;90;2;2;0;0;0;1
+46653;19171;2;175;67.0;110;70;1;1;0;0;1;0
+46654;21266;2;172;82.0;120;80;1;1;0;0;1;0
+46656;14716;1;160;64.0;120;80;1;1;0;0;1;0
+46657;15278;2;170;68.0;110;70;2;1;1;1;1;0
+46658;18077;1;157;60.0;130;80;3;3;0;0;0;1
+46660;15247;1;159;72.0;130;80;2;1;0;0;1;1
+46661;18841;1;168;68.0;120;80;1;1;0;0;1;0
+46662;19643;1;160;58.0;127;50;1;1;0;0;1;0
+46664;21359;1;164;87.0;125;85;1;2;0;0;1;0
+46665;18846;1;174;86.0;120;80;1;1;0;0;0;0
+46666;19721;1;175;90.0;120;80;1;1;0;0;1;0
+46667;17535;2;165;65.0;120;80;1;1;0;0;1;0
+46669;21948;1;165;63.0;130;80;1;1;0;0;1;0
+46670;18998;1;160;76.0;130;80;1;3;0;0;1;1
+46671;21293;2;172;90.0;120;80;1;1;0;0;1;0
+46672;16076;2;173;72.0;120;80;1;3;1;1;1;0
+46673;19497;1;169;87.0;130;80;1;3;0;0;1;0
+46674;21084;1;164;72.0;120;80;1;1;0;0;1;0
+46675;21360;2;172;94.0;120;80;3;1;1;1;0;0
+46677;20359;2;186;94.0;140;90;1;1;0;0;1;1
+46678;21251;1;155;62.0;140;90;3;1;0;0;1;0
+46679;20656;1;155;57.0;140;90;2;1;0;0;1;1
+46680;21985;1;164;77.0;130;70;1;1;0;0;1;0
+46682;19167;1;162;61.0;120;80;1;1;0;0;0;0
+46683;21883;2;172;70.0;120;80;1;1;0;0;1;0
+46684;19637;1;166;55.0;90;60;1;1;0;0;0;0
+46686;21027;2;169;71.0;120;80;1;1;0;0;1;0
+46687;16035;2;170;81.1;120;90;1;1;0;0;1;1
+46688;22575;1;152;60.0;130;80;2;1;0;0;1;0
+46689;23644;1;162;68.0;120;70;1;1;0;0;0;0
+46690;18965;1;154;80.0;160;90;1;1;0;0;1;1
+46691;23266;1;156;60.0;120;80;1;1;0;0;0;0
+46693;18220;2;172;78.0;150;90;1;1;1;0;1;1
+46694;20359;2;178;78.0;120;80;1;1;0;0;1;0
+46696;19458;1;164;80.0;120;80;1;1;0;0;1;0
+46697;19725;1;148;56.0;140;90;3;1;0;0;1;0
+46698;21147;1;180;90.0;130;80;1;1;0;0;1;1
+46699;21990;2;176;83.0;160;90;2;1;1;0;1;1
+46700;23416;1;172;59.0;130;70;2;1;0;0;1;0
+46703;22076;1;159;86.0;120;80;2;2;0;0;1;1
+46704;18359;1;157;59.0;120;70;1;1;0;0;1;0
+46705;22815;2;170;68.0;110;80;1;1;0;0;0;0
+46706;20474;2;170;80.0;130;80;1;1;0;1;1;0
+46707;20291;1;156;83.0;190;1000;1;1;0;0;1;1
+46708;18559;2;178;88.0;140;90;1;2;1;1;1;0
+46709;18423;1;166;63.0;90;80;1;2;0;0;1;0
+46710;23403;1;170;65.0;130;80;1;1;0;0;1;0
+46711;20572;1;155;78.0;150;90;1;1;1;0;1;1
+46712;20423;1;170;75.0;110;90;1;1;0;0;1;0
+46713;21695;1;158;58.0;120;80;1;3;0;0;0;1
+46714;23312;2;169;76.0;110;70;1;1;0;0;1;1
+46716;17449;2;177;95.0;110;70;1;1;0;0;1;1
+46717;23209;1;156;60.0;120;90;3;3;0;0;1;1
+46719;20296;2;172;70.0;110;80;1;1;0;0;1;0
+46720;19193;1;154;80.0;120;80;1;1;0;0;0;1
+46722;21719;1;163;77.0;140;80;1;1;0;0;1;1
+46725;19700;1;164;58.0;120;80;1;1;0;0;0;0
+46726;21824;1;156;70.0;120;80;1;1;0;0;1;1
+46727;21295;2;172;86.0;130;80;1;1;0;0;1;0
+46728;18175;2;155;50.0;120;80;1;1;1;0;1;0
+46731;20539;1;153;70.0;110;60;1;1;0;0;0;0
+46733;21129;2;164;70.0;70;100;1;1;0;0;0;0
+46734;22535;1;156;58.0;120;80;1;1;0;0;1;0
+46735;22651;1;160;80.0;140;80;3;1;0;0;0;1
+46736;20480;1;164;86.0;130;70;1;1;0;0;1;1
+46737;19785;1;165;66.0;120;80;1;1;1;0;1;0
+46738;18108;1;163;63.0;120;80;3;3;0;0;0;1
+46740;14466;1;160;59.0;110;70;1;1;0;0;1;0
+46744;20585;1;149;58.0;120;70;1;1;0;0;1;0
+46745;20573;1;165;85.0;150;90;3;2;0;0;1;1
+46746;15188;1;165;57.0;120;80;1;1;0;0;1;0
+46748;20419;1;160;82.0;110;80;1;1;1;0;1;1
+46749;20457;1;157;66.0;130;90;2;1;0;1;0;1
+46750;23520;2;167;75.0;140;90;3;1;0;0;1;1
+46751;14562;2;167;65.0;90;60;1;1;1;0;1;0
+46754;18086;1;160;63.0;120;70;1;1;0;0;1;0
+46755;21069;1;160;61.0;120;80;1;1;0;0;1;0
+46757;20398;1;169;72.0;120;90;1;1;0;0;1;0
+46759;20259;1;152;53.0;152;53;1;1;0;0;1;1
+46760;23247;1;160;65.0;110;70;3;3;0;0;1;0
+46762;20416;2;166;67.0;120;80;1;1;1;0;1;0
+46764;14408;1;161;54.0;130;80;1;1;0;0;0;0
+46767;17665;1;158;61.0;110;70;1;1;0;0;1;0
+46768;17742;2;163;63.0;120;80;1;1;0;0;0;1
+46769;22744;2;170;78.0;150;80;1;1;0;0;1;1
+46771;19578;1;161;64.0;105;80;1;1;0;0;1;0
+46772;22102;1;170;70.0;120;80;1;1;0;0;1;1
+46774;19652;2;176;70.0;120;80;1;1;0;0;0;1
+46775;18362;1;151;56.0;120;80;1;1;0;0;1;0
+46777;19642;2;170;87.0;120;80;1;1;0;0;1;0
+46779;14868;2;168;78.0;120;80;1;1;0;0;1;0
+46780;22038;1;156;75.0;120;80;1;1;0;1;1;0
+46781;19897;1;168;71.0;120;80;3;3;0;0;1;0
+46782;19769;1;160;70.0;120;70;1;1;0;0;1;0
+46785;21456;1;166;71.0;130;90;1;1;0;0;1;1
+46786;16808;1;163;64.0;100;70;1;1;0;0;1;0
+46787;15994;1;153;65.0;120;80;1;1;0;0;1;0
+46788;15251;2;180;71.0;160;110;1;1;0;0;0;1
+46789;23477;2;164;100.0;130;90;1;1;0;0;1;0
+46791;21009;2;169;82.0;140;90;3;1;0;0;1;1
+46792;19072;2;173;76.0;140;90;1;1;0;0;1;1
+46793;21050;1;157;80.0;130;80;1;1;0;0;1;0
+46795;23103;1;157;78.0;160;100;3;1;0;0;0;1
+46797;15931;1;160;80.0;120;80;1;1;0;0;1;0
+46798;16903;2;183;92.0;130;90;1;1;0;0;1;0
+46800;16359;1;175;89.0;120;80;2;1;0;0;1;1
+46801;16649;1;155;100.0;120;80;1;1;0;0;1;0
+46803;22749;1;179;76.0;120;80;1;1;0;0;0;1
+46804;17599;2;160;88.0;150;100;3;1;0;1;1;1
+46805;22647;1;158;71.0;120;80;1;1;0;0;0;1
+46806;21813;1;164;113.0;130;90;3;3;0;0;1;1
+46808;16253;1;156;64.0;130;80;1;1;0;0;1;0
+46809;22242;1;169;65.0;120;80;1;1;0;0;0;0
+46810;21339;2;179;80.0;150;100;3;1;0;0;1;1
+46811;22747;2;166;77.0;145;70;1;1;0;0;1;1
+46812;23216;1;164;92.0;130;80;1;1;0;1;1;1
+46813;14543;1;172;62.0;120;80;1;1;0;0;0;0
+46815;16002;1;160;99.0;110;80;1;1;0;0;1;0
+46817;16609;1;169;88.0;150;100;2;2;0;0;1;1
+46819;20510;1;157;57.0;150;90;3;3;0;0;1;1
+46826;17378;2;180;108.0;160;120;1;1;0;0;0;1
+46828;14720;1;162;62.0;120;80;1;1;0;0;1;0
+46829;23196;2;168;97.0;140;80;1;1;0;0;1;0
+46835;18241;2;189;107.0;140;100;1;1;1;1;1;0
+46836;21751;1;165;60.0;160;70;1;1;0;0;0;1
+46837;22026;1;160;53.0;85;70;1;1;0;0;1;0
+46839;19797;2;174;72.0;120;79;1;1;0;0;1;0
+46840;22496;1;155;67.0;120;80;1;1;0;0;1;1
+46841;19669;1;162;58.0;120;80;1;1;0;0;1;0
+46845;22021;2;171;94.0;130;90;1;1;0;0;1;0
+46846;20404;1;167;57.0;130;80;2;2;0;0;1;1
+46848;19821;1;156;56.0;150;1000;1;1;0;0;1;1
+46849;15981;2;172;66.0;110;70;1;1;1;1;1;0
+46850;19052;2;168;68.0;120;80;1;1;1;0;1;0
+46852;18287;1;164;74.0;130;80;1;1;0;0;1;1
+46853;23242;1;150;64.0;140;80;3;1;0;0;1;0
+46854;18272;1;160;49.0;130;60;1;1;0;0;1;1
+46856;15287;2;160;65.0;140;70;2;1;0;0;0;1
+46857;23305;2;163;108.0;170;80;1;1;0;0;0;1
+46860;18283;1;163;88.0;109;80;1;1;0;0;1;0
+46861;21799;1;156;65.0;120;80;1;1;0;0;1;1
+46862;22749;1;162;88.0;150;100;3;1;0;0;1;1
+46864;20674;1;178;78.0;120;80;1;1;0;0;1;1
+46866;22539;1;169;65.0;120;80;1;1;0;0;1;1
+46867;18216;1;173;85.0;110;80;1;1;0;0;0;0
+46868;18264;2;180;70.0;100;70;1;1;0;0;1;0
+46871;17661;1;160;96.0;120;80;1;1;0;0;1;1
+46872;17560;1;160;56.0;125;60;1;1;0;0;0;0
+46873;18783;1;175;80.0;100;60;1;1;0;0;1;0
+46875;20305;2;170;65.0;120;80;1;1;0;0;0;0
+46876;15042;2;168;72.0;120;70;1;1;1;0;0;0
+46877;21961;2;178;116.0;120;80;1;1;0;0;1;1
+46878;18894;1;167;76.0;120;80;1;2;0;0;1;0
+46879;21340;1;151;77.0;160;100;1;1;0;0;0;1
+46881;23156;1;164;109.0;120;80;3;3;0;1;1;0
+46883;16822;1;168;70.0;120;80;1;1;0;0;1;1
+46884;18106;2;176;84.0;130;80;1;1;1;0;1;0
+46886;15923;1;162;65.0;140;80;1;1;0;0;1;0
+46887;19639;1;161;83.0;120;80;1;1;0;0;1;0
+46889;14583;1;165;62.0;100;60;1;1;1;0;0;0
+46890;14404;1;160;57.0;110;70;1;1;0;0;1;0
+46891;21899;1;160;65.0;120;80;3;3;0;0;1;0
+46892;14696;1;165;56.0;120;80;1;1;0;0;0;0
+46893;23316;1;165;55.0;120;80;1;1;0;0;1;1
+46894;18189;1;159;73.0;140;80;1;1;0;0;1;1
+46895;19177;1;169;89.0;120;80;1;1;0;0;1;0
+46896;19958;1;158;79.0;100;70;2;2;0;0;1;0
+46898;16702;2;181;108.0;130;1000;3;3;0;0;1;0
+46899;15136;2;168;101.0;150;100;2;2;0;0;1;1
+46900;15841;1;163;92.0;140;80;1;2;1;0;1;1
+46901;16643;2;174;68.0;140;90;3;1;0;0;1;1
+46902;16571;1;160;75.0;110;70;1;1;0;0;1;0
+46904;16756;2;168;65.0;120;80;1;1;0;1;1;0
+46905;19050;1;165;83.0;120;80;1;2;0;0;1;0
+46908;16867;1;163;57.0;140;90;2;1;0;0;1;1
+46914;19514;2;173;93.0;120;80;2;1;1;1;1;0
+46919;20336;1;160;80.0;120;80;1;1;0;1;1;0
+46921;17741;1;164;73.0;110;70;2;1;0;0;1;1
+46922;15384;1;163;65.0;140;80;1;1;0;0;1;1
+46923;19778;2;169;70.0;120;80;1;1;0;0;1;0
+46924;14777;2;174;62.0;120;80;2;2;0;0;1;0
+46925;19629;1;166;73.0;160;80;1;1;0;0;1;1
+46926;14642;2;166;78.0;120;80;1;1;0;0;1;0
+46927;21331;1;162;53.6;120;80;1;1;0;0;0;0
+46930;22037;1;173;76.0;120;80;1;1;0;0;0;0
+46934;21269;1;157;105.0;170;100;3;3;0;1;1;0
+46936;21944;2;171;68.0;120;80;1;1;1;0;1;0
+46938;19717;2;169;90.0;120;80;1;1;0;0;0;0
+46939;20479;1;161;85.0;120;80;1;3;0;0;1;0
+46940;21931;1;160;96.0;150;90;3;3;0;0;1;1
+46942;16655;1;150;62.0;120;80;1;1;0;0;0;0
+46943;21811;2;160;56.0;110;70;1;1;0;0;1;1
+46945;18496;1;151;55.0;100;70;3;3;0;0;1;0
+46946;20448;2;175;79.0;120;80;1;1;1;0;1;1
+46949;15220;1;162;71.0;110;80;1;1;0;0;1;0
+46950;18911;1;164;64.0;120;80;1;1;0;0;1;0
+46951;22639;1;150;66.0;110;70;1;1;0;0;0;1
+46953;23327;1;151;75.0;120;70;1;1;0;0;1;1
+46954;21222;2;175;75.0;150;90;2;1;0;0;1;1
+46956;21151;2;157;61.0;120;80;1;1;0;0;1;0
+46958;20377;1;156;93.0;140;80;1;1;0;0;1;1
+46960;21941;1;156;56.0;110;70;1;1;0;0;1;0
+46961;18347;1;169;87.0;130;90;1;1;0;0;1;0
+46963;18247;1;159;56.0;120;80;1;1;0;0;1;1
+46964;23444;1;172;75.0;160;90;1;1;0;0;1;1
+46966;15477;1;169;65.0;110;80;1;1;0;0;1;1
+46967;15902;1;153;81.0;120;80;1;1;0;0;1;0
+46968;21156;1;142;43.0;100;70;1;1;0;0;1;0
+46970;23523;2;176;78.0;140;90;3;1;1;0;1;1
+46971;19682;1;163;49.0;140;90;3;1;1;0;1;1
+46973;21934;2;176;88.0;120;85;1;1;0;0;1;1
+46974;22816;2;164;65.0;150;90;1;1;0;0;1;1
+46976;15891;1;158;77.0;110;70;1;1;0;0;1;0
+46979;19121;1;170;82.0;120;70;1;1;0;0;1;0
+46980;21200;2;176;111.0;130;90;1;1;0;0;1;1
+46981;18971;1;168;82.0;110;80;1;1;0;0;1;0
+46982;18241;1;162;70.0;120;80;2;1;0;1;1;0
+46983;20525;1;168;98.0;150;100;1;2;0;0;1;1
+46986;21740;1;145;62.0;150;90;1;1;0;0;1;1
+46987;20635;1;158;65.0;130;80;1;1;0;0;1;1
+46989;20486;2;170;80.0;140;90;2;2;0;0;0;1
+46991;23293;1;153;90.0;120;70;1;1;0;0;1;1
+46992;19882;2;167;73.0;120;85;1;1;0;0;0;0
+46993;21818;1;166;73.0;110;70;1;1;0;0;1;0
+46994;20463;2;188;118.0;120;70;2;1;1;0;1;0
+46995;21728;1;162;93.0;120;80;1;1;0;0;1;1
+46996;16762;1;166;58.0;120;80;1;1;0;0;1;0
+46997;23388;2;181;89.0;120;80;1;1;0;0;1;1
+46998;17316;1;160;91.0;120;80;2;2;0;0;1;1
+46999;19606;1;165;70.0;120;70;1;1;0;0;1;0
+47001;21174;1;160;58.0;130;80;1;1;0;0;1;0
+47002;18447;1;166;69.0;120;80;1;1;0;0;1;0
+47003;15303;1;169;69.0;130;80;3;1;0;0;1;1
+47005;19711;1;177;80.0;150;90;1;1;0;0;0;1
+47008;15362;2;167;83.0;120;80;2;3;0;0;1;1
+47009;22590;2;170;70.0;140;90;1;1;0;0;0;1
+47010;23247;1;156;89.0;120;80;1;1;0;0;1;1
+47011;19865;1;161;53.0;110;70;1;1;0;0;1;0
+47013;21098;1;149;65.0;140;90;1;1;0;0;1;0
+47014;21877;1;163;71.0;110;80;1;1;0;0;1;1
+47016;19568;1;160;87.0;160;100;1;2;0;0;1;1
+47017;21915;1;153;93.0;120;80;1;1;0;0;1;1
+47020;16846;1;162;58.0;120;80;1;1;0;0;1;1
+47021;18404;1;162;66.0;120;80;1;1;0;0;1;0
+47024;17456;1;163;56.0;110;70;1;1;0;0;1;0
+47025;21059;2;173;62.0;160;100;1;1;0;0;1;1
+47027;21905;1;168;90.0;130;80;1;1;0;0;1;1
+47029;21802;1;144;73.0;180;1000;3;3;0;0;1;1
+47030;18335;1;156;65.0;150;9011;2;2;0;0;1;1
+47031;16847;1;162;87.0;130;80;2;1;0;0;1;1
+47035;21966;1;154;107.0;150;100;1;1;0;0;1;1
+47036;18873;1;161;100.0;130;80;2;2;0;0;1;0
+47037;16858;1;158;80.0;130;80;1;2;0;0;1;0
+47038;19460;2;170;87.0;130;90;1;1;0;0;0;0
+47040;18952;1;168;69.0;120;80;1;1;0;0;0;1
+47041;19782;1;168;59.0;120;80;1;1;0;0;0;1
+47042;19697;1;164;59.0;110;70;1;1;0;0;1;1
+47043;16567;1;170;90.0;130;90;1;1;0;1;1;1
+47045;15276;1;166;59.0;90;60;1;1;0;0;1;0
+47046;20377;1;176;104.0;140;80;1;1;0;0;1;1
+47047;17649;2;170;68.0;120;80;1;1;0;0;0;0
+47048;18073;1;167;85.0;155;70;1;1;0;0;1;1
+47049;18803;2;176;80.0;110;80;1;1;0;0;0;0
+47050;21473;2;167;74.0;120;80;1;1;0;0;1;0
+47051;21758;2;169;79.0;120;80;1;2;0;0;1;0
+47052;18904;1;160;60.0;110;70;1;1;0;0;1;0
+47054;14830;1;163;101.0;140;100;2;1;0;0;1;1
+47055;19636;1;164;94.0;200;120;1;1;0;0;1;1
+47056;22499;2;173;85.0;130;90;1;3;0;0;1;0
+47058;20402;1;165;60.0;130;90;1;1;0;0;0;1
+47059;17196;2;170;70.0;160;100;1;1;0;0;1;1
+47060;21929;2;170;84.0;160;100;3;3;0;0;1;1
+47061;19619;1;162;56.0;120;80;1;1;0;0;1;0
+47063;16521;1;164;83.0;140;80;3;3;0;0;1;1
+47064;14638;2;170;64.0;120;70;1;2;0;0;1;0
+47065;21002;1;153;78.0;130;90;3;3;0;0;1;1
+47066;15303;1;159;97.0;140;90;1;1;0;0;0;1
+47068;17028;1;171;59.0;160;70;1;1;0;0;1;1
+47069;18201;1;160;50.0;110;70;1;1;0;0;1;0
+47071;20668;1;165;78.0;120;84;1;1;0;0;1;0
+47072;22174;2;170;71.0;120;90;1;1;0;0;1;1
+47073;19082;1;165;60.0;110;80;1;1;0;0;1;1
+47074;20706;1;167;75.0;110;70;1;3;0;0;0;0
+47075;22077;1;168;65.0;160;100;1;1;0;0;0;0
+47076;21094;1;165;69.0;120;80;2;1;0;0;0;0
+47080;20464;1;163;81.0;140;90;1;1;0;0;1;1
+47081;23230;1;164;98.0;120;80;3;1;0;0;1;1
+47082;19955;1;167;69.0;130;70;3;3;0;0;1;0
+47085;19476;2;180;75.0;110;70;1;1;0;1;1;0
+47086;21273;2;168;60.0;120;80;3;3;1;1;1;0
+47088;19103;2;170;79.0;120;80;1;1;0;0;0;0
+47089;19567;2;160;60.0;130;80;1;1;0;0;0;1
+47091;22668;1;152;50.0;160;100;1;1;0;0;1;1
+47092;14658;2;182;86.0;120;80;1;1;0;0;1;0
+47093;15493;1;160;75.0;120;80;1;1;0;0;1;0
+47095;19851;2;169;97.0;120;80;1;1;0;0;0;0
+47096;16774;2;170;80.0;150;80;2;1;1;0;1;1
+47098;15253;1;169;76.0;120;80;2;2;0;0;0;0
+47099;21953;1;168;85.0;150;100;1;1;0;0;0;1
+47101;23442;1;163;96.0;180;110;3;2;0;0;1;1
+47102;22091;1;157;68.0;120;80;1;1;0;0;1;0
+47104;19567;2;173;72.0;120;80;1;1;0;0;1;0
+47105;21327;1;160;59.0;120;80;1;1;0;0;0;0
+47106;22095;1;158;83.0;120;80;3;1;0;0;1;1
+47107;20987;2;167;96.0;150;80;1;1;0;0;1;1
+47109;18212;2;170;90.0;150;100;2;1;0;0;1;1
+47110;23414;2;164;89.0;120;80;1;1;0;0;1;1
+47111;16721;2;143;65.0;120;80;1;2;0;0;0;1
+47114;17504;2;168;70.0;130;80;2;1;0;0;1;1
+47115;14624;1;167;67.0;120;80;2;2;0;0;0;0
+47116;18732;2;161;72.0;160;90;1;1;1;0;0;1
+47120;21157;1;153;80.0;160;100;1;1;0;0;1;1
+47121;16300;1;160;72.0;120;80;2;1;0;0;0;0
+47122;19147;2;178;80.0;120;80;1;1;0;0;1;0
+47123;21270;1;162;75.0;120;80;1;1;0;0;1;1
+47124;14658;2;174;65.0;100;90;1;1;0;0;1;1
+47125;17491;1;158;81.0;110;70;1;1;0;0;1;0
+47127;18406;1;167;57.0;110;60;1;1;0;0;0;0
+47128;21308;1;165;65.0;130;90;1;1;0;0;1;0
+47129;22801;2;160;69.0;120;80;2;1;0;0;1;1
+47130;23474;1;153;59.0;160;90;2;2;0;0;1;1
+47131;19147;1;164;80.0;110;80;1;1;0;0;0;1
+47134;20475;1;160;72.0;120;110;1;1;0;0;1;1
+47135;22514;1;168;72.0;120;80;1;1;0;0;0;0
+47137;21938;2;168;90.0;160;90;1;1;1;0;0;1
+47141;19113;2;179;89.0;125;80;1;1;0;0;1;0
+47144;21788;2;162;88.0;150;100;1;3;0;0;1;1
+47145;15082;2;174;64.0;140;80;1;1;1;0;0;1
+47146;15899;1;164;95.0;155;100;2;2;0;0;1;1
+47147;19990;1;170;70.0;120;80;1;2;0;0;1;0
+47149;15283;2;171;80.0;120;80;1;1;0;0;1;0
+47151;19859;1;168;92.0;110;70;2;1;0;0;1;0
+47152;18308;1;154;63.0;190;110;1;2;0;0;1;1
+47153;19915;1;160;81.0;110;70;1;1;0;0;1;0
+47155;22418;1;150;46.0;109;68;2;2;0;0;1;0
+47156;16107;1;169;70.0;120;80;1;1;0;0;1;1
+47158;16302;1;155;40.0;110;70;2;1;0;0;1;0
+47159;20538;1;165;65.0;130;80;1;1;0;0;1;0
+47160;20273;1;160;83.0;120;80;2;2;0;0;1;0
+47163;21964;2;170;73.0;120;80;1;1;0;0;1;0
+47165;22781;2;154;46.0;100;80;3;1;0;0;1;1
+47166;21637;1;166;78.0;120;80;3;3;0;0;1;0
+47168;22790;1;165;75.0;150;90;1;1;0;0;1;0
+47170;19522;2;158;65.0;130;80;1;1;0;0;1;0
+47171;16045;1;156;52.0;110;80;1;1;0;0;0;0
+47173;20414;1;164;102.0;140;90;2;1;0;0;1;1
+47174;20470;2;172;86.0;120;80;1;3;1;0;1;0
+47175;23401;1;165;80.0;120;80;1;1;0;0;0;0
+47176;23469;1;169;66.0;160;90;1;1;0;0;1;0
+47178;22003;1;163;74.0;120;80;1;1;0;0;0;0
+47179;19553;1;156;65.0;150;90;1;1;0;0;1;1
+47181;22548;1;157;76.0;120;80;1;1;0;0;1;1
+47182;20566;1;170;65.0;120;80;1;1;0;0;1;0
+47183;22009;1;152;65.0;130;80;3;1;0;0;1;1
+47184;16052;2;173;83.0;120;80;2;1;0;0;1;1
+47187;15249;2;163;72.0;122;80;1;1;0;0;1;0
+47188;22100;2;160;58.0;120;80;3;1;0;0;1;0
+47189;23637;1;156;69.0;140;90;2;1;0;0;1;1
+47190;14556;1;161;69.0;90;76;2;1;0;0;1;0
+47191;19653;1;168;67.0;140;90;2;1;0;0;0;1
+47193;14756;2;162;64.0;120;70;1;1;0;0;1;0
+47196;23201;1;155;53.0;155;53;1;1;0;0;1;1
+47199;18796;1;153;80.0;130;90;1;1;0;0;1;1
+47200;17578;1;157;62.0;120;80;1;1;0;0;1;0
+47202;20922;1;156;63.0;120;80;3;3;0;0;0;1
+47205;23385;1;168;64.0;140;90;1;1;0;0;1;1
+47206;14476;2;163;69.0;140;90;1;1;0;0;1;1
+47207;19638;1;156;89.0;170;70;2;2;0;0;1;1
+47208;19796;2;172;93.0;120;80;1;1;0;0;1;1
+47209;21222;1;174;77.0;120;80;1;1;0;0;1;0
+47211;17567;1;160;58.0;120;80;1;2;0;0;0;1
+47213;14616;2;162;63.0;120;80;1;1;0;0;0;0
+47214;20331;1;170;117.0;160;100;1;1;0;0;1;1
+47216;23388;2;150;60.0;170;90;1;1;0;0;1;1
+47217;20919;1;149;54.0;90;40;1;1;0;0;1;0
+47218;16073;2;156;52.0;110;60;1;1;0;0;0;1
+47220;17451;1;158;60.0;110;70;1;1;0;0;1;1
+47221;20959;1;164;70.0;100;60;1;1;0;0;0;0
+47224;16873;1;163;67.0;140;90;1;1;0;0;1;1
+47225;20253;1;154;66.0;120;80;1;1;0;0;1;0
+47227;18883;2;186;90.0;140;100;1;1;0;0;1;1
+47229;19711;2;180;93.0;150;1000;2;2;0;0;1;1
+47230;23253;1;153;62.0;110;70;3;3;0;0;1;0
+47231;15286;1;164;80.0;120;80;1;2;0;0;0;1
+47232;20169;1;164;105.0;120;80;1;2;0;0;1;1
+47233;21247;1;155;50.0;130;90;1;1;0;0;0;1
+47236;21255;1;148;67.0;130;80;1;1;0;0;1;0
+47238;20326;1;169;72.0;120;80;1;1;0;0;1;0
+47239;23574;2;150;80.0;150;90;1;1;0;0;1;1
+47240;19769;2;168;75.0;190;90;1;1;0;0;1;1
+47241;21119;1;165;66.0;120;90;2;2;0;0;1;0
+47242;18206;1;170;72.0;120;80;1;1;0;0;1;0
+47244;17422;2;162;50.0;100;60;1;1;0;0;1;0
+47245;20337;1;157;60.0;120;80;1;1;0;0;1;0
+47246;18936;1;165;75.0;150;100;1;1;0;0;1;1
+47248;19593;1;156;65.0;120;60;2;1;0;0;1;0
+47249;19450;2;162;56.0;120;80;1;1;0;0;1;1
+47251;16882;1;165;54.0;120;80;1;1;0;0;1;0
+47252;19147;2;167;81.0;90;60;1;1;0;0;1;1
+47253;17045;2;165;75.0;120;80;1;1;0;0;0;0
+47254;23306;2;172;90.0;130;89;3;1;0;0;0;0
+47255;14464;2;170;74.0;120;80;1;1;0;0;1;0
+47256;21460;1;158;88.0;130;90;2;1;0;0;1;1
+47258;20335;2;165;84.0;140;80;1;1;0;0;1;1
+47259;20956;2;180;80.0;140;90;3;3;1;0;1;1
+47260;20194;1;156;73.0;140;90;2;2;0;0;1;1
+47261;22449;2;170;85.0;150;90;1;1;0;0;0;0
+47262;14471;1;160;54.0;120;70;1;1;0;0;1;1
+47264;19600;2;165;95.0;140;100;1;1;0;0;1;1
+47265;20562;2;162;72.0;140;90;1;1;1;0;1;0
+47266;18296;1;166;50.0;120;90;1;1;0;0;1;0
+47267;21299;2;160;58.0;140;80;1;1;0;0;1;1
+47268;22685;1;154;120.0;120;80;3;3;0;0;1;1
+47269;22637;1;162;70.0;140;90;3;1;0;0;1;1
+47270;21944;1;165;100.0;120;80;1;1;0;0;1;1
+47272;20436;1;148;68.0;160;90;1;1;0;0;1;0
+47273;19752;1;158;76.0;130;80;1;1;0;0;1;0
+47274;18874;1;175;70.0;120;80;1;1;0;0;0;0
+47275;22520;1;165;80.0;140;80;3;1;0;0;1;1
+47277;20474;2;174;110.0;120;80;2;1;0;0;1;0
+47278;14619;1;160;64.0;110;69;1;1;0;0;0;0
+47279;22572;1;163;73.0;160;100;1;1;0;0;0;1
+47280;21225;1;170;85.0;120;80;2;1;0;1;0;1
+47281;16018;1;158;80.0;90;60;1;1;0;0;1;0
+47282;18505;1;162;89.0;110;80;1;1;0;0;0;0
+47284;22544;1;160;80.0;150;1000;1;1;0;0;1;1
+47285;18175;2;175;90.0;120;80;1;1;1;0;1;1
+47287;21373;2;170;64.0;150;80;1;1;1;0;1;1
+47288;20431;1;152;65.0;110;70;1;1;0;0;1;0
+47289;18501;2;175;80.0;120;80;1;1;0;0;0;0
+47291;21773;1;154;67.0;120;80;2;1;0;0;1;0
+47294;19904;1;168;65.0;11;70;1;1;0;0;1;0
+47296;23483;1;154;56.0;150;90;1;1;0;0;0;1
+47297;19833;1;153;103.0;180;100;2;3;0;0;1;1
+47300;18268;1;170;75.0;120;80;1;1;0;0;1;0
+47302;15936;2;175;75.0;120;90;1;1;0;0;1;1
+47303;23537;1;160;63.0;150;70;1;1;0;0;1;1
+47305;17469;1;154;97.0;160;80;3;1;0;0;1;1
+47306;17944;2;165;60.0;120;80;1;1;0;0;0;1
+47307;21068;2;174;81.0;120;80;3;1;1;0;1;1
+47308;14708;1;151;61.0;110;80;1;1;0;0;1;0
+47309;19716;1;152;51.0;110;70;2;1;0;0;1;1
+47310;20392;1;159;51.0;110;70;1;1;0;0;1;0
+47318;21746;2;180;85.0;120;80;1;1;0;0;1;1
+47320;23371;1;149;70.0;120;80;2;2;0;0;1;0
+47321;21960;1;158;70.0;130;90;2;1;0;0;1;0
+47323;19783;1;168;65.0;130;70;1;1;0;0;1;0
+47326;19115;1;154;83.0;120;80;1;2;0;0;0;0
+47327;15552;2;174;99.0;140;90;2;1;1;1;0;1
+47328;14630;1;158;58.0;120;80;1;1;0;0;1;0
+47330;15223;1;170;72.0;130;80;1;1;0;0;1;1
+47331;21149;2;175;75.0;110;70;1;1;0;0;1;0
+47332;18130;1;160;90.0;140;90;2;2;0;0;1;1
+47333;22542;1;153;62.0;110;80;1;1;0;0;1;1
+47334;17363;1;170;72.0;120;80;3;1;0;0;0;1
+47335;21015;2;169;94.0;130;90;2;3;1;1;1;1
+47336;14516;1;158;64.0;120;80;1;1;0;0;1;0
+47337;23497;2;170;69.0;150;90;1;1;0;0;1;1
+47339;18163;1;160;83.0;160;100;1;1;0;0;1;1
+47341;20477;2;163;65.0;120;80;3;3;0;0;1;1
+47342;18784;1;158;71.0;140;90;3;1;0;0;1;1
+47343;22622;2;164;72.0;120;70;1;1;0;0;1;0
+47345;19663;2;178;63.0;120;70;2;1;0;0;1;0
+47347;14554;1;155;68.0;120;80;1;1;0;0;1;0
+47349;18829;1;154;72.0;140;100;2;1;0;0;1;1
+47350;21638;1;150;100.0;150;1000;2;2;0;0;1;0
+47351;23261;2;160;56.0;160;80;1;1;1;0;1;1
+47352;15272;1;157;57.0;140;90;1;1;0;0;1;1
+47354;16656;2;166;64.0;130;80;1;1;1;0;1;1
+47356;20581;2;175;92.0;120;80;2;1;0;0;0;1
+47357;19640;1;163;76.0;120;90;2;1;0;0;1;1
+47360;21276;1;170;86.0;140;90;1;1;0;0;0;1
+47362;16758;1;160;86.0;130;90;1;1;0;0;1;1
+47364;20429;1;154;54.0;100;70;1;1;0;0;0;0
+47365;20457;1;165;70.0;120;80;2;2;0;0;1;1
+47366;16908;1;159;75.0;130;80;1;1;0;0;1;1
+47368;18857;2;160;65.0;120;70;1;1;1;1;1;0
+47369;18110;1;180;79.0;120;90;1;1;0;0;1;1
+47371;17758;1;165;60.0;110;70;1;1;0;0;0;0
+47374;14430;1;154;50.0;100;70;1;1;0;0;0;0
+47375;20585;2;168;75.0;140;100;1;1;0;0;1;1
+47376;18212;1;157;72.0;130;90;1;1;0;0;1;1
+47377;19614;1;149;70.0;120;70;2;1;0;0;1;1
+47378;18225;1;158;74.0;120;80;1;1;0;0;1;0
+47379;14557;1;164;58.0;110;70;1;1;0;0;1;0
+47380;15584;1;150;69.0;110;70;1;1;0;0;1;0
+47381;16660;2;170;72.0;120;80;1;1;0;0;1;0
+47382;14695;1;168;86.0;110;80;2;1;0;0;1;0
+47383;23180;1;165;58.0;140;90;1;2;0;0;1;1
+47385;19624;1;151;70.0;160;100;3;1;0;0;1;1
+47389;18992;2;162;64.0;120;80;1;1;0;0;0;0
+47390;22639;1;162;59.0;120;90;1;1;0;0;1;0
+47392;15319;2;165;78.0;140;80;1;1;1;1;1;1
+47393;21256;1;164;68.0;120;80;1;1;0;0;1;1
+47394;19681;1;154;78.0;120;80;1;1;0;0;0;1
+47396;19123;1;159;60.0;110;70;1;1;0;0;1;0
+47398;15422;1;160;52.0;120;80;1;1;0;0;0;0
+47399;18356;2;167;83.0;120;80;1;1;0;0;1;0
+47402;18259;2;169;68.0;140;100;1;1;0;0;1;0
+47403;18770;1;168;64.0;120;80;1;1;0;0;1;0
+47404;21062;2;164;79.0;120;80;1;2;0;0;1;1
+47405;21018;1;170;65.0;100;90;1;1;0;0;1;0
+47407;18356;2;166;67.0;120;80;1;1;1;1;1;1
+47408;23173;2;165;72.0;110;70;2;1;0;0;1;1
+47409;20196;1;174;86.0;120;80;1;1;0;0;1;0
+47410;22375;2;160;92.0;140;90;3;3;0;0;0;1
+47411;20347;2;172;69.0;138;98;1;1;0;0;0;1
+47412;19858;1;158;100.0;130;90;3;3;0;0;1;0
+47413;23377;2;176;115.0;160;110;1;1;0;0;1;1
+47414;14509;2;184;85.0;120;80;1;2;0;0;0;0
+47415;23424;1;147;57.0;130;80;1;1;0;0;1;1
+47416;15206;1;178;69.0;120;80;1;1;0;0;1;0
+47417;21798;1;152;67.0;120;80;1;1;0;0;0;1
+47421;21692;1;164;100.0;140;80;1;1;0;0;1;1
+47422;21805;2;180;110.0;120;80;1;2;0;0;0;0
+47423;18876;1;160;52.0;120;80;2;1;0;0;0;1
+47424;22633;1;158;70.0;130;90;1;1;0;0;0;1
+47425;19627;1;160;80.0;160;90;2;2;0;0;1;1
+47426;21698;1;156;61.0;120;80;1;1;0;0;1;0
+47429;18966;1;154;79.0;90;70;1;1;0;0;1;0
+47431;16734;2;173;89.0;120;80;1;1;0;0;1;1
+47432;20946;1;148;67.0;140;100;1;1;0;0;1;1
+47433;21663;1;158;90.0;140;90;3;1;0;0;1;1
+47434;21795;2;174;87.0;110;80;1;1;0;0;1;0
+47435;19876;1;156;68.0;120;80;1;1;0;0;1;0
+47436;15305;2;170;84.0;120;80;1;1;0;0;1;1
+47440;23364;1;169;93.0;130;80;2;1;0;0;0;1
+47442;23380;1;155;58.0;130;90;3;3;0;0;0;1
+47443;22411;2;166;55.0;150;80;1;1;0;0;1;1
+47444;19692;2;172;82.0;130;80;1;1;0;0;0;1
+47446;14670;1;159;69.0;140;80;1;1;1;0;0;1
+47447;20511;1;156;59.0;110;70;1;2;0;0;1;0
+47448;20220;2;170;116.0;160;90;1;3;0;0;1;0
+47449;22542;1;152;81.0;140;90;1;1;1;0;1;1
+47450;23615;2;174;90.0;180;90;1;1;0;0;1;1
+47451;18308;1;160;60.0;120;80;1;1;0;0;1;0
+47452;21099;1;151;47.0;119;72;1;1;0;0;1;0
+47453;20320;1;158;59.0;120;60;1;1;0;0;1;0
+47454;21821;1;153;65.0;150;90;3;3;0;0;1;1
+47457;15268;2;174;83.0;120;80;1;1;0;0;0;1
+47458;21786;2;168;68.0;120;80;1;1;0;0;1;0
+47459;20436;2;163;63.0;120;80;1;1;0;0;1;0
+47460;17576;1;165;65.0;120;80;1;1;0;0;1;0
+47462;21081;1;163;70.0;120;80;2;1;0;0;1;0
+47463;21142;1;165;73.0;130;90;1;1;0;0;1;1
+47464;14493;1;170;81.0;120;80;1;1;0;0;1;1
+47466;16242;2;171;59.0;120;70;1;1;0;0;1;0
+47471;21504;2;169;70.0;120;80;1;1;0;0;1;0
+47474;21117;1;165;81.0;120;80;3;3;0;0;1;1
+47475;15095;1;164;93.0;120;80;1;1;0;0;1;0
+47479;19537;1;162;90.0;120;80;3;3;0;0;1;1
+47481;19693;1;164;62.0;120;80;1;1;0;0;1;0
+47483;16736;1;170;70.0;110;70;2;1;0;0;1;0
+47484;16871;1;163;64.0;145;90;1;1;0;0;1;1
+47485;21841;1;154;74.0;160;100;2;1;0;0;1;0
+47486;14345;1;169;79.0;140;80;3;1;0;0;1;1
+47489;19844;1;161;69.0;130;90;1;3;0;0;1;0
+47491;21234;1;150;69.0;120;90;1;1;0;0;1;0
+47492;21986;2;164;75.0;110;70;1;1;1;0;1;0
+47493;23521;2;165;80.0;140;90;2;2;0;0;1;1
+47494;17845;2;160;64.0;120;80;3;1;0;0;1;0
+47495;19541;1;166;70.0;130;80;3;1;0;0;1;1
+47496;14611;1;159;60.0;120;80;1;1;0;0;1;0
+47497;20376;1;159;100.0;200;130;3;2;0;0;1;1
+47499;23253;2;169;62.0;125;80;3;3;0;1;1;1
+47500;20510;2;165;79.0;130;90;1;1;0;0;1;1
+47501;15398;1;149;67.0;100;70;2;2;0;0;0;0
+47502;18368;2;167;103.0;150;90;2;1;0;0;1;1
+47503;17348;1;160;80.0;120;80;2;1;0;0;1;0
+47504;18173;2;166;73.0;120;70;1;1;0;0;1;0
+47505;19622;2;170;71.0;140;90;1;1;0;0;1;1
+47506;22110;1;175;86.0;160;90;1;1;0;0;0;1
+47507;20516;1;161;91.0;120;80;1;1;0;0;1;0
+47508;21724;1;162;63.0;110;80;2;1;0;0;1;0
+47510;21131;1;162;80.0;140;90;2;2;0;0;1;1
+47512;20982;1;165;90.0;130;90;2;2;0;0;1;1
+47513;19685;2;173;70.0;110;80;1;1;1;0;1;0
+47514;21702;1;170;59.0;130;80;1;1;0;0;0;0
+47515;17551;2;167;78.0;140;100;1;1;0;0;0;1
+47516;21264;1;160;60.0;120;80;1;1;0;0;1;0
+47517;16840;1;168;77.0;130;90;1;1;0;0;1;0
+47519;19741;1;158;109.0;120;80;1;1;0;0;1;1
+47522;20306;1;155;85.0;110;80;1;1;0;0;1;0
+47523;23417;1;163;108.0;160;90;3;1;0;0;1;1
+47524;21053;2;179;100.0;130;90;1;1;0;0;1;1
+47525;15990;1;160;110.0;140;100;1;2;0;0;1;1
+47526;23152;2;157;57.0;140;100;3;2;1;0;1;1
+47527;19094;2;168;61.0;90;60;1;1;1;1;1;0
+47528;23265;1;154;92.0;130;80;2;3;0;0;1;1
+47532;19659;1;162;79.0;180;100;1;1;0;0;1;1
+47533;20414;2;174;91.0;120;30;1;1;0;0;1;1
+47534;19592;1;157;86.0;180;1000;2;2;0;0;1;1
+47536;19518;1;168;72.0;115;70;2;1;0;0;1;0
+47537;20694;1;169;96.0;120;80;1;1;0;0;1;1
+47538;21154;1;151;105.0;130;90;1;1;0;0;1;0
+47539;22604;2;169;68.0;120;70;1;1;0;0;1;1
+47540;19619;1;158;76.0;110;80;1;1;0;0;1;0
+47541;18307;2;178;82.0;110;80;2;1;0;0;1;0
+47542;22563;2;162;67.0;150;100;1;1;0;0;1;1
+47543;23353;2;166;74.0;160;70;3;1;0;0;0;1
+47545;19083;1;153;55.0;120;70;1;1;0;0;1;0
+47547;18239;1;164;64.0;122;80;1;1;0;0;1;0
+47548;21317;2;170;69.0;120;79;1;1;0;0;0;1
+47549;19120;1;169;63.0;120;90;1;1;1;0;1;0
+47550;23155;1;152;72.0;140;80;3;3;0;0;0;1
+47552;21746;1;162;57.0;160;100;1;1;0;0;1;1
+47553;19769;2;178;98.0;120;80;1;1;0;0;0;0
+47554;20518;2;173;84.0;100;80;1;1;1;0;0;0
+47557;19081;2;168;69.0;150;90;1;1;0;0;1;1
+47560;23517;1;167;83.0;170;100;1;1;0;0;0;1
+47561;18403;2;168;73.0;130;80;1;1;1;1;1;0
+47562;22014;1;161;66.0;120;80;1;1;0;0;1;0
+47563;23562;2;176;80.0;165;1000;1;1;0;0;1;0
+47564;20538;1;160;80.0;140;80;1;1;0;0;0;1
+47565;20517;1;152;78.0;160;90;2;1;0;0;1;1
+47566;17291;1;158;58.0;120;80;1;1;0;0;1;1
+47569;22565;1;163;62.0;120;80;3;3;0;0;1;0
+47570;19844;1;163;76.0;110;70;2;1;0;0;1;1
+47571;18176;1;158;82.0;120;70;3;3;0;0;1;1
+47572;15416;2;168;74.0;120;80;1;1;0;0;0;1
+47573;18263;1;157;74.0;120;90;1;1;0;0;0;1
+47574;15902;2;165;69.0;90;60;1;1;1;1;1;0
+47575;21135;1;173;87.0;130;90;1;1;0;0;1;1
+47576;21073;2;168;85.0;120;80;1;1;0;0;1;0
+47577;19905;2;185;91.0;140;90;1;1;0;0;0;1
+47578;19410;1;164;100.0;180;100;3;3;0;0;1;1
+47579;23580;1;161;74.0;150;90;1;1;0;0;1;1
+47580;15312;1;163;87.0;120;80;1;1;0;0;1;0
+47581;22410;1;164;105.0;120;80;1;1;0;0;1;1
+47582;18197;1;161;79.0;120;80;2;3;0;0;1;1
+47583;19678;2;170;80.0;171;70;1;1;0;0;0;0
+47584;19730;1;169;65.0;120;80;1;1;0;0;1;0
+47585;21029;2;169;84.0;140;90;3;3;0;0;1;1
+47590;21628;1;150;73.0;150;90;1;1;0;0;1;1
+47591;21216;1;152;51.0;120;80;1;1;0;0;0;1
+47592;18158;1;172;68.0;120;80;1;1;0;0;1;1
+47593;18826;1;158;76.0;125;80;2;1;1;1;0;0
+47595;21037;2;172;70.0;140;90;1;1;0;0;0;1
+47598;18395;2;172;95.0;160;90;1;3;0;0;1;0
+47599;19790;1;155;87.0;150;90;1;1;0;0;1;1
+47600;17611;1;170;70.0;110;70;1;1;0;0;1;0
+47603;19488;2;167;83.0;160;1100;1;1;1;0;1;1
+47605;21259;1;158;83.0;120;80;1;1;0;0;1;1
+47606;16629;2;182;108.0;130;90;1;1;1;0;1;0
+47607;18145;1;178;75.0;120;80;2;1;0;0;1;0
+47608;22497;2;165;85.0;120;80;1;1;0;1;0;0
+47609;21812;1;156;103.0;150;100;1;1;0;0;0;1
+47610;20261;1;155;73.0;120;90;1;1;0;0;1;0
+47611;21951;2;179;97.0;120;80;3;1;0;0;1;1
+47612;21346;2;160;67.0;130;80;2;1;1;0;1;0
+47613;20263;1;170;86.0;120;80;1;1;0;0;1;1
+47615;16085;1;158;76.0;110;70;1;1;0;0;1;0
+47616;19180;1;158;85.0;130;90;2;1;0;0;1;1
+47617;18456;1;152;65.0;120;80;1;1;0;0;1;0
+47618;18945;1;156;60.0;156;60;1;1;0;0;0;0
+47620;23492;2;193;70.0;110;70;3;1;1;1;1;0
+47621;21799;1;170;94.0;100;60;1;1;0;0;1;0
+47622;16656;1;169;70.0;120;80;1;1;0;0;1;0
+47623;20440;1;160;60.0;120;80;1;1;0;0;1;0
+47625;18061;1;153;76.0;120;70;1;1;0;0;1;1
+47626;23278;2;185;64.0;100;60;1;1;0;0;1;1
+47628;21639;1;170;70.0;140;90;1;1;0;0;1;0
+47629;17633;1;156;78.0;115;75;1;1;0;0;1;0
+47630;21131;1;146;53.0;150;1100;1;1;0;0;1;1
+47633;23577;1;165;60.0;120;80;1;1;0;0;1;1
+47635;21110;2;172;76.0;130;80;1;1;0;0;0;0
+47636;19221;1;163;75.0;140;90;1;1;0;0;1;1
+47637;16877;2;164;58.0;150;90;1;1;0;0;1;0
+47639;21733;1;156;66.0;130;70;1;1;0;0;1;0
+47640;16629;1;159;75.0;180;100;1;1;0;0;1;1
+47641;18066;2;165;55.0;120;80;1;1;0;0;1;0
+47642;22554;2;172;76.0;140;90;1;1;0;0;0;0
+47644;14487;2;181;104.0;145;90;1;1;0;0;1;1
+47645;17374;1;158;59.0;130;80;2;1;1;0;1;0
+47646;21160;2;169;80.0;150;90;1;1;0;0;1;1
+47647;22471;2;176;93.0;130;80;3;1;0;0;1;1
+47648;20666;1;150;61.0;140;90;3;1;0;0;0;1
+47649;18486;1;175;68.0;120;80;1;1;0;0;1;1
+47650;19822;2;172;70.0;130;90;1;1;0;0;1;0
+47651;16166;1;164;72.0;136;84;1;1;0;0;1;1
+47652;15221;1;157;66.0;110;70;1;1;0;0;1;1
+47653;21668;2;162;64.0;140;70;1;1;0;0;1;0
+47654;16771;1;164;111.0;140;90;2;1;0;0;1;1
+47656;19826;2;170;69.0;160;70;2;3;0;0;0;1
+47657;22779;1;158;74.0;140;90;3;3;0;0;1;0
+47658;21917;1;162;60.0;120;80;1;1;0;0;1;0
+47659;15984;1;159;82.0;130;90;1;2;0;0;1;1
+47660;14614;1;159;58.0;120;80;2;1;0;0;0;0
+47661;22082;1;168;60.0;110;70;1;1;0;0;1;0
+47662;23165;1;160;85.0;160;90;2;1;0;0;1;1
+47663;18282;1;158;78.0;130;90;3;2;0;0;1;1
+47664;18449;1;171;82.0;120;80;1;1;0;0;1;0
+47667;14432;2;176;96.0;120;80;1;1;1;0;1;0
+47668;20412;1;172;70.0;120;80;1;1;0;0;1;0
+47669;21864;1;169;77.0;120;80;1;1;0;0;1;1
+47671;19186;2;173;68.0;110;70;1;3;0;0;1;0
+47672;19495;2;170;79.0;130;90;2;1;0;0;1;0
+47673;20916;1;168;74.0;120;80;1;1;0;0;1;0
+47674;21887;2;168;72.0;110;70;1;1;0;0;0;0
+47676;19627;1;165;70.0;140;90;1;1;0;0;1;0
+47677;20693;1;165;74.0;140;90;3;1;0;0;1;1
+47678;22687;1;163;70.0;130;80;1;1;0;0;1;0
+47679;23133;2;171;78.0;120;80;3;3;0;0;1;1
+47680;19429;1;167;85.0;130;90;2;1;0;0;1;1
+47682;19656;1;168;100.0;140;80;1;3;0;0;1;1
+47684;19024;2;170;90.0;150;90;1;1;0;0;1;1
+47685;20226;1;150;80.0;130;85;3;1;0;0;1;0
+47686;23219;2;174;95.0;130;90;1;1;0;0;1;0
+47687;14425;1;157;72.0;130;90;2;1;0;0;1;1
+47688;21907;1;162;78.0;160;90;3;3;0;0;1;1
+47690;19587;1;166;102.0;120;80;2;2;0;0;1;0
+47692;21732;1;167;63.0;140;90;1;1;0;0;1;1
+47693;14401;1;164;79.0;120;80;1;1;0;0;0;0
+47695;18893;1;169;75.0;140;90;1;1;0;0;1;1
+47696;19517;2;173;72.0;130;90;1;1;1;0;0;0
+47698;15376;2;172;84.0;120;80;1;1;0;0;1;1
+47699;21125;2;170;70.0;130;90;1;1;0;0;0;1
+47700;16693;2;173;77.0;120;80;1;1;0;0;1;1
+47701;18841;2;178;65.0;120;80;1;1;0;0;0;1
+47704;19811;2;175;75.0;120;80;1;1;0;0;1;1
+47706;22586;1;159;43.0;120;70;1;1;0;0;1;1
+47707;17531;1;164;59.0;110;80;1;1;0;0;1;0
+47710;21692;2;173;93.0;155;91;1;1;0;0;0;1
+47712;21141;2;176;70.0;130;89;2;1;0;0;1;0
+47713;19959;2;176;70.0;120;70;1;1;0;0;1;0
+47714;20263;1;171;72.0;130;90;3;1;0;0;1;1
+47716;15929;1;166;65.0;140;100;1;1;0;0;1;1
+47718;14695;1;160;70.0;120;80;1;3;0;0;1;0
+47719;19026;1;158;64.0;120;80;1;1;0;0;0;1
+47720;19861;2;170;91.0;120;80;1;1;1;0;1;0
+47722;16008;1;152;73.0;100;80;1;1;0;0;1;0
+47723;19583;1;162;69.0;150;100;3;1;0;0;1;0
+47724;19706;1;165;62.0;120;80;1;1;0;0;0;1
+47725;22211;1;158;94.0;130;80;1;2;0;0;1;1
+47726;20725;1;158;65.0;120;80;1;3;0;0;1;0
+47727;23489;2;175;80.0;120;80;1;1;0;0;1;1
+47730;20947;1;160;68.0;140;100;1;1;0;0;1;1
+47731;18795;1;158;65.0;160;80;1;1;0;0;1;1
+47733;19562;1;163;61.0;120;80;2;1;0;0;1;0
+47734;19053;1;166;92.0;120;80;1;1;0;0;1;0
+47735;21780;1;162;75.0;120;80;1;1;0;0;1;0
+47736;16994;1;165;65.0;120;80;1;1;0;0;0;0
+47738;21107;1;146;54.0;110;80;1;1;0;0;0;0
+47739;21208;1;163;77.0;110;80;1;1;0;0;1;0
+47740;19886;2;174;85.0;150;90;1;1;0;0;1;1
+47741;21720;1;147;47.0;110;70;1;1;0;0;1;1
+47742;18263;1;168;55.0;120;80;1;1;0;0;1;0
+47743;15852;1;163;86.0;130;80;2;2;0;0;1;1
+47744;18935;1;155;87.0;150;90;1;1;0;0;1;1
+47747;18036;2;173;128.0;160;110;3;1;0;1;0;1
+47748;19613;1;158;62.0;120;80;1;1;0;0;0;0
+47749;19685;1;156;95.0;130;80;1;1;0;0;1;0
+47750;19599;2;152;70.0;110;70;2;1;0;0;1;0
+47751;19949;1;163;58.0;100;70;1;1;0;1;1;0
+47753;22734;1;160;96.0;130;90;1;1;0;0;1;0
+47754;20265;1;144;62.0;140;80;1;1;0;0;0;1
+47755;18283;2;170;100.0;120;80;2;1;0;0;1;1
+47758;15493;2;165;75.0;130;80;1;1;0;0;0;1
+47759;19410;2;187;85.0;120;80;1;1;0;0;0;0
+47760;21837;2;174;76.0;120;80;1;1;0;0;1;1
+47761;23411;2;169;90.0;140;80;1;1;0;0;0;1
+47762;18781;1;168;75.0;120;80;1;1;0;0;1;0
+47763;18815;1;169;66.0;120;80;1;1;0;0;1;1
+47764;22682;1;170;72.0;120;80;1;1;0;0;1;1
+47765;16622;1;156;78.0;130;90;2;2;0;1;1;1
+47766;15318;2;168;62.0;120;90;1;1;1;0;1;0
+47767;14391;2;178;73.0;120;80;1;1;1;0;1;0
+47768;20261;2;174;120.0;180;90;1;1;0;0;1;0
+47769;14645;1;167;62.0;120;80;1;1;0;0;1;0
+47770;20586;1;153;68.0;100;70;1;1;0;0;0;0
+47771;19611;2;167;82.0;120;70;1;1;0;0;1;0
+47772;15471;2;183;89.0;120;80;1;1;0;0;1;0
+47773;17525;1;160;73.0;120;79;1;2;0;0;0;0
+47774;23193;1;171;67.0;130;80;3;1;0;0;0;0
+47775;16840;2;169;69.0;120;80;1;1;0;0;1;0
+47777;20522;1;170;85.0;90;60;1;1;0;0;1;0
+47778;20595;1;180;75.0;140;90;1;1;0;0;1;1
+47779;22821;1;163;88.0;150;80;1;1;0;0;1;1
+47782;21932;1;158;62.0;120;80;1;1;0;0;1;1
+47784;23205;2;167;105.0;160;100;3;3;0;0;1;1
+47785;22012;1;160;85.0;140;90;3;1;0;0;1;1
+47786;21977;2;159;74.0;120;80;1;1;0;0;1;1
+47789;15366;1;160;59.0;140;80;3;1;0;0;1;1
+47791;21931;1;154;51.0;130;90;3;1;0;1;1;1
+47793;21149;2;170;102.0;150;90;1;1;0;0;1;1
+47794;22031;1;158;79.0;130;80;1;1;0;0;1;0
+47796;16811;2;171;72.0;150;70;1;1;0;0;1;1
+47797;16668;2;171;70.0;140;60;3;3;1;0;1;0
+47798;21815;2;180;89.0;150;80;1;1;0;0;0;0
+47799;22665;1;156;82.0;130;70;1;3;0;0;1;1
+47801;14428;1;150;58.0;160;100;1;1;0;0;0;1
+47805;17532;1;158;58.0;110;70;1;1;0;0;1;1
+47806;22070;1;171;75.0;120;80;1;1;0;0;1;0
+47808;18736;1;162;82.0;120;80;1;1;0;0;1;0
+47810;18952;2;174;84.0;125;80;1;1;1;0;1;0
+47814;16888;2;158;60.0;110;70;1;1;0;0;0;1
+47816;21861;1;162;67.0;110;70;1;1;0;0;1;0
+47817;21985;1;165;70.0;120;80;1;1;0;0;0;0
+47818;21354;1;164;87.0;130;80;1;1;0;0;0;1
+47819;17558;1;156;72.0;150;90;1;1;0;0;0;1
+47821;16718;2;168;72.0;110;60;1;1;0;0;1;0
+47823;18988;1;151;71.0;120;70;2;1;0;0;1;1
+47824;14515;1;171;89.0;130;80;1;1;0;0;1;1
+47825;19544;2;177;74.0;120;80;1;1;0;0;1;1
+47828;15919;1;168;78.0;110;60;2;1;0;0;0;0
+47829;20501;2;165;65.0;120;80;1;1;0;0;1;1
+47830;15493;1;152;39.0;110;70;1;2;1;0;1;1
+47831;17474;1;151;67.0;140;90;1;2;0;0;1;1
+47832;20388;2;173;79.0;110;80;2;2;0;0;1;0
+47834;18243;1;175;79.0;110;80;2;3;0;0;1;0
+47836;18279;1;165;63.0;120;80;1;1;0;0;1;0
+47837;19754;1;160;80.0;140;80;1;1;0;0;0;0
+47839;18828;1;153;75.0;140;90;1;1;0;0;1;1
+47840;20956;1;165;92.0;120;80;3;1;0;0;1;0
+47841;20554;2;165;72.0;120;80;3;3;1;1;0;0
+47845;22027;1;156;72.0;120;80;1;1;0;0;0;0
+47846;18306;1;157;83.0;150;90;2;1;0;0;0;1
+47847;23540;1;170;60.0;120;80;1;1;0;0;1;1
+47848;22730;2;179;83.0;160;100;1;1;0;0;1;0
+47849;20222;2;150;50.0;120;60;1;1;0;0;1;0
+47850;18207;1;159;74.0;140;90;1;1;0;1;1;1
+47851;15354;1;171;69.0;70;110;1;1;0;1;1;0
+47853;16893;2;172;98.0;140;90;2;2;1;0;1;1
+47854;16574;1;164;69.0;110;70;1;1;0;0;1;0
+47856;23185;1;165;66.0;150;100;1;1;0;0;1;1
+47857;17515;1;160;86.0;110;80;1;1;0;0;1;0
+47858;19815;1;170;75.0;120;80;1;1;0;0;1;0
+47859;21949;1;160;78.0;120;70;1;1;0;0;0;1
+47860;18356;1;168;78.0;130;80;1;1;0;0;1;0
+47861;20372;1;158;62.0;110;60;1;1;0;0;1;0
+47862;21935;1;169;105.0;140;100;2;1;0;0;1;1
+47863;19012;1;154;106.0;120;80;1;1;1;0;1;0
+47864;19281;2;187;89.0;120;70;1;1;0;0;0;1
+47865;19445;1;167;62.0;130;80;1;1;0;0;1;1
+47866;19742;2;165;88.0;150;90;3;3;0;0;1;1
+47867;17302;1;162;58.0;120;80;1;1;0;0;1;0
+47868;16036;1;165;89.0;110;70;1;1;0;0;1;0
+47870;21180;1;159;88.0;110;70;1;1;0;0;1;1
+47871;16010;1;176;82.0;170;1000;1;1;0;0;1;1
+47872;21081;1;153;34.0;110;70;3;3;0;0;1;1
+47874;19101;2;168;74.0;130;80;1;1;0;0;0;1
+47875;18998;1;169;82.0;140;80;1;1;0;0;1;1
+47878;18036;2;170;83.0;130;80;1;3;1;0;1;0
+47879;19625;1;160;91.0;130;80;3;1;0;0;1;1
+47880;22467;1;156;56.0;180;100;1;2;0;0;1;1
+47881;23379;1;150;87.0;155;100;1;1;0;0;0;1
+47882;15436;1;171;58.0;110;70;2;1;0;0;1;1
+47883;20445;1;151;117.0;125;80;1;1;0;0;1;1
+47884;21080;1;160;77.0;140;90;1;1;0;0;1;1
+47887;18883;2;170;80.0;120;80;1;1;0;0;1;0
+47888;20463;2;178;73.0;120;80;1;1;0;0;1;1
+47889;21652;1;165;92.0;130;80;1;1;0;0;1;0
+47891;20224;1;164;89.0;140;90;2;2;0;0;1;1
+47892;14355;1;160;50.0;90;70;1;1;0;0;1;0
+47893;19655;1;165;68.0;110;90;1;1;0;0;1;0
+47894;22416;1;168;113.0;120;80;1;1;0;0;1;1
+47895;21884;1;179;78.0;110;60;1;3;0;0;1;1
+47896;17377;2;176;86.0;140;100;1;1;0;0;1;1
+47898;22803;2;182;115.0;140;90;1;1;0;0;1;0
+47899;15324;2;174;66.0;120;80;1;1;1;0;0;0
+47900;19144;1;159;73.0;120;80;1;1;0;0;1;0
+47901;20340;1;158;69.0;90;60;1;1;0;0;1;0
+47903;21304;2;135;73.0;120;80;1;1;0;0;1;0
+47906;18226;1;162;72.0;120;80;1;1;0;0;1;0
+47907;19826;2;179;88.0;120;80;1;1;0;0;1;1
+47908;16830;1;162;60.0;150;90;1;1;0;0;1;1
+47910;21924;1;158;65.0;100;80;1;1;0;0;1;0
+47912;20468;2;183;87.0;140;90;1;1;0;0;1;0
+47913;23403;2;170;78.0;110;70;1;1;0;0;1;0
+47914;23356;1;165;85.0;110;70;1;1;0;0;1;0
+47915;14341;2;173;80.0;120;80;1;1;0;0;1;0
+47917;15147;2;173;86.0;130;100;1;1;1;0;1;1
+47918;16717;1;161;75.0;140;90;1;1;0;0;0;1
+47919;20298;1;163;77.0;140;90;1;1;0;0;1;1
+47924;21820;1;158;92.0;150;90;1;1;0;0;1;1
+47927;18092;2;186;89.0;145;100;1;1;0;1;1;1
+47928;18136;1;178;78.0;110;70;1;1;0;0;1;1
+47929;19855;1;165;70.0;140;80;1;1;0;0;1;1
+47930;20494;2;168;96.0;110;70;2;2;0;1;1;1
+47931;22551;2;163;82.0;100;70;1;1;0;0;1;1
+47932;21972;1;157;67.0;110;70;1;1;0;0;1;0
+47933;17999;1;166;74.0;90;60;1;1;0;0;1;0
+47934;17660;1;150;47.0;100;70;1;1;0;0;0;0
+47935;18274;1;158;77.0;140;80;1;1;0;0;1;1
+47936;19651;1;171;80.0;110;70;1;1;0;0;1;0
+47937;18690;2;172;92.0;100;70;3;1;0;0;1;1
+47938;18253;2;166;97.0;140;90;1;1;0;0;1;1
+47940;21230;1;155;77.0;110;80;1;1;0;0;0;1
+47941;18775;1;153;78.0;140;90;2;3;0;0;1;1
+47942;21920;1;165;65.0;120;70;1;1;1;0;1;0
+47943;14431;2;171;82.0;130;90;1;1;0;0;1;1
+47944;17604;1;162;69.0;120;80;1;1;0;0;0;0
+47945;14502;2;180;92.0;140;1000;1;1;0;0;1;1
+47946;19653;1;169;68.0;110;80;1;1;0;0;1;1
+47947;21778;1;156;68.0;130;80;1;1;0;0;1;1
+47948;18191;1;160;74.0;120;80;1;1;0;0;1;1
+47955;18856;2;168;80.0;120;80;1;1;0;0;0;0
+47957;19749;1;158;94.0;130;80;3;3;0;0;0;1
+47958;16240;2;167;85.0;120;80;1;1;0;0;1;0
+47960;21383;2;158;62.0;120;80;1;1;0;0;1;0
+47962;21067;1;158;90.0;140;90;1;1;0;0;0;1
+47963;17603;1;161;69.0;120;80;1;1;0;0;0;1
+47964;22381;2;167;74.0;130;80;3;2;0;0;1;1
+47967;21847;2;169;79.0;140;90;2;2;1;0;1;1
+47968;20266;1;166;66.0;111;77;1;1;0;0;0;1
+47970;16862;2;174;105.0;165;100;2;1;1;1;1;1
+47971;19053;1;165;89.0;110;70;1;1;0;0;1;1
+47972;16778;2;177;107.0;140;80;1;2;0;0;0;1
+47974;21341;1;150;83.0;120;80;1;1;0;0;1;1
+47975;19753;1;165;64.0;120;80;1;3;0;0;1;1
+47977;20336;2;164;62.0;120;80;1;3;0;0;1;1
+47978;18403;1;167;67.0;125;85;1;1;0;0;1;0
+47979;20020;2;176;123.0;115;80;1;1;1;1;0;0
+47980;20528;1;160;54.0;130;90;1;1;0;0;1;0
+47981;21442;2;170;84.0;150;1000;2;2;0;0;1;1
+47985;19272;1;158;85.0;160;80;3;1;0;0;1;1
+47986;20359;1;153;89.0;100;90;3;3;0;0;1;1
+47987;14458;1;149;47.0;120;80;1;1;0;0;1;0
+47989;18860;2;167;92.0;130;90;2;1;0;0;1;1
+47990;14550;1;153;57.0;100;70;1;1;0;0;1;0
+47991;20291;1;160;72.0;140;80;1;1;0;0;1;0
+47992;20634;1;160;72.0;100;80;1;1;0;0;1;1
+47993;20506;2;168;70.0;140;90;1;1;0;0;1;1
+47995;20427;1;165;85.0;120;80;1;1;0;0;1;1
+47996;20422;2;171;87.0;155;90;3;1;0;1;1;1
+47997;20222;1;156;57.0;110;70;1;1;0;1;0;0
+47998;19564;2;167;75.0;120;80;3;3;0;0;1;0
+47999;21014;1;160;66.0;120;80;1;1;0;1;1;0
+48000;17406;1;167;90.0;120;80;1;1;0;0;1;0
+48001;22047;2;163;67.0;110;70;2;1;1;0;1;0
+48002;15270;1;154;45.0;120;70;1;1;0;0;0;0
+48003;19041;2;168;74.0;130;80;1;1;0;0;1;0
+48005;19733;1;162;102.0;130;80;1;1;1;0;1;1
+48007;23087;1;150;65.0;120;80;3;1;0;0;1;1
+48008;19693;2;172;75.0;120;80;1;1;0;0;0;0
+48009;19709;2;65;72.0;130;80;1;1;0;0;0;0
+48011;19803;2;154;52.0;130;80;1;1;0;0;1;1
+48012;21894;1;167;79.0;150;90;2;1;0;0;1;1
+48015;20563;1;165;65.0;120;80;1;1;0;0;1;1
+48018;15234;1;151;70.0;130;80;1;1;0;0;1;1
+48020;20186;1;159;73.0;120;80;1;1;0;0;1;1
+48024;19053;1;165;65.0;120;80;1;1;0;0;1;1
+48025;17598;1;154;77.0;140;90;1;1;0;0;1;1
+48026;18247;2;172;88.0;150;100;3;3;0;0;1;1
+48027;19769;1;158;80.0;130;80;2;1;0;0;1;0
+48029;18775;2;170;94.0;110;80;1;1;0;1;0;1
+48031;18168;1;155;56.0;130;80;1;1;0;0;1;0
+48032;22379;2;177;105.0;145;100;2;1;1;1;1;1
+48033;15214;1;165;120.0;120;80;1;1;0;0;1;0
+48034;21941;1;156;62.0;130;80;1;1;0;0;1;1
+48035;15966;2;174;56.0;120;80;2;2;0;0;1;0
+48036;15191;1;158;59.0;130;80;1;1;0;0;1;0
+48038;19710;2;172;75.0;130;70;1;2;1;0;1;1
+48040;15582;2;170;64.0;110;70;2;1;0;0;1;0
+48042;19019;2;180;110.0;199;1000;1;3;0;0;1;1
+48043;15214;1;160;74.0;121;88;2;1;0;0;1;1
+48044;19230;2;158;69.0;120;90;1;2;0;0;0;0
+48045;19740;1;161;82.0;150;80;1;3;0;0;1;0
+48046;23389;1;176;82.0;120;80;1;1;0;0;1;1
+48047;16626;1;170;63.0;145;85;3;1;0;0;1;1
+48051;17475;1;168;69.0;150;100;3;1;0;0;0;1
+48053;19791;1;168;64.0;140;80;1;1;0;0;1;1
+48054;14496;1;150;68.0;120;80;2;1;0;0;1;0
+48055;23322;2;174;75.0;120;80;1;1;0;0;0;0
+48056;20653;1;159;75.0;170;80;2;2;0;0;1;1
+48057;21252;2;179;79.0;120;80;1;1;0;0;1;0
+48058;21014;1;149;64.0;130;89;1;1;0;0;1;0
+48059;21225;1;167;73.0;120;80;1;1;0;0;1;0
+48061;21081;1;150;65.0;120;80;1;1;0;0;0;0
+48062;14476;1;159;93.0;110;80;1;1;0;0;1;0
+48064;14681;1;153;50.0;110;80;1;1;0;0;1;0
+48065;21224;2;170;78.0;150;90;3;3;1;0;1;1
+48066;19047;1;158;90.0;140;90;1;1;0;0;0;1
+48067;20325;2;168;72.0;120;70;1;1;1;0;1;0
+48068;15588;2;174;85.0;110;70;1;1;1;1;1;0
+48069;19958;1;159;76.0;140;80;1;1;0;0;1;1
+48070;14669;1;156;65.0;120;80;1;1;0;0;1;0
+48071;21892;1;168;69.0;120;80;1;1;0;0;1;1
+48072;18761;1;152;70.0;120;80;1;1;0;0;1;0
+48074;20524;1;175;104.0;140;90;2;1;0;1;0;0
+48075;21015;1;150;63.0;120;80;1;1;0;0;0;0
+48076;19784;1;164;60.0;140;90;2;1;0;1;1;1
+48077;19831;1;165;80.0;120;80;1;1;0;0;1;1
+48078;21215;1;166;70.0;120;80;1;1;0;0;1;1
+48079;14702;1;153;46.0;90;60;2;1;0;1;1;0
+48080;16120;1;152;53.0;120;70;1;1;0;0;1;0
+48081;16612;1;160;70.0;120;80;1;1;0;0;1;1
+48082;20493;2;173;80.0;130;90;1;1;0;0;0;1
+48083;22680;1;164;70.0;160;100;3;1;0;1;1;1
+48085;21187;1;154;76.0;110;70;2;1;0;0;1;0
+48086;21017;1;174;85.0;120;80;1;1;0;0;0;1
+48087;18062;2;173;82.0;140;100;3;1;0;0;1;0
+48088;18388;2;165;72.0;130;90;3;3;0;0;0;0
+48089;23219;1;150;85.0;150;1100;1;1;0;0;0;1
+48091;16007;2;168;72.0;120;80;1;1;0;0;1;1
+48093;21887;1;147;72.0;120;70;1;1;0;0;1;0
+48094;16731;1;169;78.0;100;70;1;1;0;0;0;1
+48095;20411;1;155;63.0;110;80;1;1;0;0;0;0
+48096;16107;2;176;98.0;120;80;1;1;0;0;1;0
+48097;20472;1;170;95.0;140;90;1;1;0;0;1;0
+48098;18364;2;166;57.0;90;60;1;1;1;0;0;0
+48099;23423;1;163;112.0;130;80;1;1;0;0;1;1
+48100;20545;1;156;52.0;120;80;3;3;0;0;1;0
+48101;19778;1;162;77.0;140;80;1;1;0;0;1;0
+48102;18752;1;157;66.0;120;80;1;1;0;0;1;0
+48104;19899;2;168;58.0;100;70;1;1;0;0;1;0
+48105;22668;1;165;85.0;156;85;1;1;0;0;1;1
+48108;19737;1;161;76.0;110;80;2;1;0;0;1;0
+48109;19797;2;179;105.0;140;90;1;1;1;0;1;1
+48111;19097;2;170;78.0;140;90;3;3;0;1;1;1
+48112;18954;1;166;78.0;120;80;1;1;0;0;1;0
+48113;21043;1;156;57.0;140;90;1;1;0;1;1;0
+48114;18222;1;154;53.0;110;80;1;2;0;0;1;0
+48115;14594;2;170;72.0;120;80;1;1;0;0;1;0
+48117;17526;1;159;75.0;110;80;1;1;0;0;1;0
+48118;23491;1;165;97.0;130;90;2;1;0;0;1;1
+48119;21865;1;168;66.0;120;80;1;1;0;0;1;1
+48120;21324;1;165;67.0;140;80;1;1;0;0;0;1
+48122;19772;2;174;68.0;120;80;1;1;0;0;1;0
+48123;21046;2;168;71.0;140;90;1;1;1;0;0;0
+48129;20328;2;162;73.0;150;90;3;1;0;0;1;1
+48130;20653;2;162;56.0;120;80;1;1;0;0;1;0
+48131;14622;1;158;68.0;100;60;1;1;0;0;1;0
+48132;20356;1;158;85.0;140;80;1;1;0;0;1;1
+48133;19092;1;164;76.0;130;80;1;1;0;0;1;1
+48134;20914;1;164;81.0;120;80;1;1;0;0;1;1
+48135;22660;1;161;130.0;150;100;1;1;0;0;1;1
+48136;19583;1;160;72.0;120;90;2;2;0;0;0;1
+48137;16163;1;165;82.0;120;70;1;1;0;0;1;0
+48138;14752;1;171;74.0;110;80;3;3;0;0;0;0
+48139;20570;2;167;81.0;140;90;3;3;0;0;1;1
+48140;21144;2;168;69.0;140;90;1;1;0;0;1;1
+48141;20642;1;156;55.0;110;70;1;1;0;1;1;0
+48142;15012;2;170;70.0;120;70;1;1;0;0;0;0
+48143;21974;1;168;71.0;125;75;1;1;0;0;1;0
+48144;19023;1;168;87.0;120;80;1;1;0;0;1;0
+48145;20628;2;168;70.0;140;80;1;1;0;0;1;0
+48146;19880;1;162;95.0;130;80;3;2;0;0;1;1
+48147;18988;1;157;67.0;100;70;2;1;0;0;1;0
+48150;21742;1;171;82.0;120;80;1;1;0;0;1;0
+48152;14702;1;155;79.0;140;90;1;1;1;0;1;1
+48153;19877;1;165;85.0;120;80;2;1;0;0;1;1
+48156;19721;1;169;62.0;120;80;1;1;0;0;0;0
+48157;21218;2;165;85.0;120;80;1;1;0;0;0;1
+48158;22047;1;152;45.0;120;80;1;1;0;0;0;0
+48159;16157;2;175;80.0;120;70;1;1;1;0;1;1
+48161;21798;1;159;73.0;150;100;1;1;0;0;0;1
+48162;16962;1;175;76.0;120;80;1;1;0;0;1;0
+48163;17666;2;170;70.0;120;80;1;1;0;0;0;1
+48164;21253;1;151;53.0;140;90;1;1;0;0;1;1
+48165;21754;1;160;93.0;140;90;1;1;0;0;0;1
+48166;17418;1;158;65.0;100;60;1;1;0;0;1;1
+48167;19807;1;157;58.0;110;70;1;1;0;1;1;0
+48168;21126;2;172;78.0;130;80;1;1;0;0;0;1
+48171;20192;1;175;77.0;140;90;1;1;0;0;1;1
+48172;23188;1;160;87.0;120;80;3;1;0;0;1;1
+48173;19715;2;180;75.0;110;80;1;1;1;0;1;0
+48174;18865;1;151;83.0;135;90;1;1;0;0;1;1
+48176;20323;1;158;68.0;120;80;1;1;0;0;1;0
+48178;17499;2;162;70.0;120;80;1;1;0;0;1;0
+48180;15268;1;156;66.0;140;90;1;1;0;1;1;0
+48181;21665;2;174;82.0;120;80;1;1;0;0;1;0
+48182;23559;2;185;86.0;120;80;1;1;0;0;0;1
+48184;14503;2;168;71.0;120;70;1;1;0;0;1;0
+48186;15288;2;165;60.0;120;80;1;1;0;0;1;0
+48187;23393;1;160;82.0;100;60;3;3;0;0;0;1
+48189;22496;2;176;86.0;120;80;1;3;0;0;1;0
+48190;20676;1;162;67.0;115;75;3;1;0;1;1;0
+48191;21773;1;157;63.0;140;90;1;1;0;0;1;1
+48193;18193;2;170;66.0;120;80;1;1;0;0;1;0
+48195;19056;1;167;58.0;120;60;1;1;0;0;1;0
+48196;15299;1;158;60.0;110;70;2;1;0;0;1;0
+48198;18993;2;165;75.0;140;80;1;1;0;0;0;1
+48201;19219;1;161;80.0;120;80;1;1;0;0;1;0
+48202;21074;1;160;60.0;120;80;1;1;0;0;1;0
+48204;18306;1;154;58.0;110;70;1;1;0;0;1;0
+48205;21216;1;169;85.0;140;70;1;1;0;0;1;1
+48206;20477;1;157;84.0;11;70;1;1;0;0;1;0
+48207;21842;2;175;86.0;130;80;1;1;1;1;0;1
+48210;19654;2;169;75.0;120;80;1;1;0;0;1;0
+48211;19613;1;156;80.0;120;80;1;1;0;0;1;1
+48212;19729;2;175;52.0;110;70;1;1;0;0;1;0
+48214;18830;1;154;72.0;160;90;2;1;0;0;0;1
+48215;23429;1;151;66.0;140;100;2;1;0;0;1;1
+48217;23339;1;167;75.0;120;80;3;1;0;0;1;1
+48220;19679;1;165;60.0;120;80;1;1;0;0;0;0
+48221;21900;1;156;58.0;120;80;1;2;0;0;1;0
+48222;14536;1;158;77.0;160;110;2;2;0;0;1;1
+48223;22493;2;174;75.0;120;80;1;1;0;0;1;1
+48225;22146;1;163;69.0;120;80;1;1;0;0;1;0
+48226;15923;1;168;100.0;150;90;1;1;0;0;1;1
+48227;15977;1;167;87.0;120;80;1;1;0;0;1;0
+48228;20586;2;168;69.0;110;70;1;1;0;0;1;0
+48229;20542;1;168;70.0;120;80;1;1;0;0;1;1
+48230;15167;1;161;52.0;120;80;1;2;0;0;1;0
+48231;22380;1;164;87.0;120;80;1;1;0;0;1;1
+48233;23583;1;168;74.0;140;100;3;1;0;0;1;1
+48235;21983;2;158;68.0;110;70;1;1;0;0;1;1
+48238;18298;1;162;122.0;130;90;1;1;0;0;1;1
+48241;19803;1;154;79.0;130;80;1;1;0;0;1;1
+48242;19761;1;163;69.0;141;90;2;1;0;0;1;1
+48243;20627;2;168;85.0;120;80;1;1;1;1;0;1
+48244;21394;1;154;74.0;140;90;1;2;0;0;0;1
+48245;16633;1;161;58.0;100;70;1;3;0;0;1;0
+48246;18926;1;176;75.0;120;80;1;1;0;1;1;1
+48247;19669;1;159;59.0;120;80;1;1;0;0;1;0
+48248;18194;1;168;69.0;120;80;2;2;0;0;1;1
+48249;22727;1;156;40.0;120;80;3;1;0;0;1;0
+48251;19743;2;175;100.0;150;80;1;1;0;0;1;1
+48252;16715;2;164;56.0;120;70;1;1;1;0;0;1
+48254;20580;1;156;86.0;120;80;2;2;0;1;1;0
+48255;20558;2;175;89.0;140;100;1;1;0;0;1;1
+48256;21810;1;173;120.0;180;100;3;1;0;0;1;1
+48258;15754;1;159;74.0;120;80;1;3;0;1;1;0
+48260;18246;1;154;67.0;150;90;2;1;0;0;1;0
+48263;15274;2;172;80.0;120;70;1;1;0;0;0;0
+48266;18785;1;156;52.0;100;80;1;1;0;0;1;0
+48270;23670;1;158;65.0;120;80;1;1;0;0;1;1
+48272;17559;1;156;60.0;110;70;1;1;0;0;1;0
+48274;21178;2;163;63.0;140;90;2;1;0;0;1;1
+48275;21963;2;168;61.0;160;90;1;1;1;0;1;1
+48276;22432;1;156;84.0;180;100;2;2;0;0;1;1
+48277;14607;2;165;75.0;160;100;1;1;0;0;1;1
+48281;19763;2;169;70.0;120;80;1;1;1;0;1;0
+48284;17690;1;169;102.0;100;70;1;1;0;0;1;1
+48286;20302;1;160;68.0;130;80;1;1;0;0;1;1
+48289;15390;2;173;85.0;110;80;1;1;1;1;1;0
+48290;17323;1;159;80.0;120;80;1;1;0;0;1;0
+48291;23135;1;166;105.0;130;80;2;1;0;0;1;0
+48292;21262;2;173;93.0;140;80;1;1;0;0;1;0
+48293;16612;2;174;88.0;180;100;1;1;0;0;0;1
+48295;20611;2;167;80.0;140;90;1;1;1;0;0;1
+48296;15977;1;156;109.0;140;100;1;1;0;0;1;1
+48297;21824;1;155;56.0;100;60;3;1;0;0;1;1
+48298;16149;2;184;95.0;120;80;1;1;0;0;1;1
+48300;16030;2;162;63.0;110;90;1;1;0;0;1;0
+48303;18307;2;165;60.0;140;80;1;1;0;0;1;1
+48304;15292;1;157;65.0;110;70;1;1;0;0;1;0
+48305;19752;2;173;69.0;120;80;1;1;0;0;1;0
+48307;16850;2;178;79.0;135;95;1;1;1;0;1;1
+48309;22179;2;168;70.0;140;80;2;1;1;1;1;1
+48310;19611;1;158;58.0;120;80;1;1;0;0;1;0
+48312;20656;1;151;76.0;160;90;2;1;0;0;1;1
+48315;22870;2;180;80.0;120;80;3;3;0;0;1;1
+48317;22602;1;160;63.0;140;70;1;1;0;0;1;1
+48318;21582;2;178;11.0;130;90;1;1;0;0;1;1
+48319;19760;2;175;112.0;150;110;1;1;0;0;1;0
+48320;18212;2;168;78.0;120;80;1;1;0;0;1;1
+48322;22571;1;145;36.0;120;80;1;1;0;0;1;0
+48323;16745;2;162;66.0;110;70;1;1;0;1;1;0
+48324;18342;2;171;69.0;120;80;1;1;0;0;1;0
+48325;17466;1;167;88.0;120;80;1;1;0;0;0;1
+48327;21401;1;156;75.0;130;70;1;1;0;0;0;0
+48328;20407;1;166;86.0;140;80;3;1;0;0;1;1
+48329;19416;1;162;63.0;90;60;1;1;0;0;1;0
+48330;19773;1;164;86.0;160;95;1;1;0;1;1;1
+48331;18273;1;171;69.0;120;80;1;1;0;0;1;1
+48332;22427;1;147;63.0;130;90;1;1;0;0;0;1
+48334;21030;2;169;89.0;130;90;3;2;0;0;0;1
+48335;17415;1;154;70.0;110;70;1;1;0;0;0;1
+48337;21716;1;169;69.0;120;80;1;1;0;0;1;1
+48338;20446;1;168;62.0;120;80;3;3;0;0;1;0
+48341;21956;2;157;77.0;120;80;1;1;0;0;1;0
+48343;14780;2;162;63.0;90;60;1;1;0;1;1;0
+48345;15883;1;165;104.0;130;70;3;1;1;1;1;1
+48346;22615;2;169;74.0;160;100;1;1;0;0;0;1
+48347;22599;1;158;84.0;140;90;1;1;0;0;0;1
+48348;20644;2;173;74.0;120;80;1;1;1;0;1;0
+48351;20290;1;155;55.0;115;60;1;1;0;0;0;0
+48353;22714;1;165;80.0;140;100;1;1;0;0;1;1
+48354;23175;2;173;80.0;120;80;1;2;0;0;1;0
+48355;19193;2;174;70.0;120;80;1;1;0;0;0;0
+48356;20565;1;168;52.0;130;80;1;1;0;0;1;0
+48357;18045;1;164;85.0;130;90;1;1;0;0;1;1
+48358;19887;2;165;65.0;130;90;1;1;0;0;0;1
+48359;16633;1;152;56.0;140;90;1;1;0;0;1;1
+48360;20415;1;172;78.0;120;85;1;1;0;0;1;0
+48361;18394;2;190;91.0;120;80;1;1;0;0;0;1
+48362;18972;1;164;82.0;150;100;1;1;0;0;1;1
+48363;15139;1;160;69.0;100;70;1;1;0;0;1;0
+48364;19548;1;154;70.0;150;80;1;1;0;0;1;1
+48366;21696;1;150;65.0;150;100;1;1;0;0;1;0
+48367;20427;1;166;85.0;110;80;2;2;0;0;1;0
+48370;19713;1;160;60.0;120;80;1;1;0;0;1;0
+48371;16240;2;182;94.0;120;80;1;1;0;0;1;0
+48373;15152;1;151;42.0;90;60;1;1;0;0;1;0
+48374;16746;1;164;89.0;120;80;1;1;0;0;1;1
+48375;21889;1;150;79.0;110;70;1;1;0;0;0;1
+48376;17753;1;176;82.0;130;80;2;1;0;0;1;1
+48378;21120;2;167;75.0;120;80;3;1;1;0;1;1
+48379;17542;1;177;79.0;120;80;1;1;0;0;1;1
+48380;20480;1;160;61.0;120;80;1;1;0;0;1;1
+48381;18261;2;170;81.0;120;80;1;1;0;0;1;0
+48382;20339;1;161;85.0;130;90;1;1;0;0;1;1
+48385;14692;2;158;90.0;120;80;1;1;0;0;1;1
+48386;23383;1;167;92.0;140;90;1;1;0;0;0;1
+48387;23296;1;151;82.0;140;80;3;1;0;0;1;1
+48389;21954;1;165;62.0;120;80;1;1;0;0;1;1
+48390;21027;1;156;74.0;140;90;1;1;0;0;1;1
+48392;18204;1;165;57.0;110;70;1;1;0;0;1;0
+48393;16089;1;167;70.0;120;80;1;1;0;0;1;0
+48395;15886;2;180;73.0;120;80;1;1;0;0;1;0
+48396;16924;1;162;58.0;110;70;1;1;0;0;1;0
+48398;14346;1;167;69.0;110;70;1;1;0;0;1;0
+48399;19167;2;167;65.0;160;90;1;1;0;0;1;1
+48400;22322;2;169;70.0;120;90;1;3;0;0;1;1
+48401;20389;2;167;81.0;120;70;1;1;0;0;1;0
+48402;14374;1;163;65.0;120;70;1;1;0;0;0;0
+48403;17451;1;164;93.0;150;90;1;1;0;0;1;1
+48404;20590;1;160;60.0;120;80;1;1;0;0;1;1
+48405;18853;1;154;112.0;110;80;1;1;0;0;1;0
+48406;22744;2;188;100.0;140;90;3;1;0;0;1;1
+48407;23389;1;163;63.0;120;80;3;3;0;0;0;1
+48408;16804;1;156;56.0;120;80;1;1;0;0;1;0
+48411;16910;2;167;75.0;120;80;1;1;1;0;1;0
+48415;21754;1;165;62.0;120;80;3;3;0;0;1;0
+48418;22608;1;157;70.0;130;90;3;2;0;0;1;1
+48419;18339;1;166;90.0;160;90;1;1;0;0;1;1
+48421;20266;1;153;60.0;140;80;3;1;0;0;1;0
+48422;18338;1;160;99.0;120;80;1;1;0;0;1;0
+48423;22659;1;151;83.0;130;80;1;3;0;0;1;0
+48425;22079;1;165;85.0;140;90;1;1;0;0;1;0
+48427;19006;1;166;70.0;160;90;1;1;0;0;1;1
+48428;19138;1;158;56.0;120;80;1;1;0;0;0;1
+48430;17771;2;174;78.0;120;80;1;1;0;0;0;0
+48432;22694;1;164;85.0;150;90;2;1;0;0;1;1
+48434;20465;1;151;60.0;190;80;2;1;0;0;1;1
+48435;23375;2;179;77.0;120;80;1;1;0;0;1;1
+48436;22463;2;169;84.0;120;80;2;1;1;0;1;0
+48437;19799;2;165;80.0;110;70;1;1;0;0;1;1
+48439;16145;1;166;67.0;110;70;1;1;0;0;1;0
+48440;23400;2;165;71.0;120;80;1;1;1;0;1;1
+48442;19750;1;157;71.0;110;60;1;2;0;0;1;0
+48445;23515;2;160;69.0;120;90;1;1;0;0;1;1
+48446;22359;2;168;86.0;160;90;2;1;1;0;1;1
+48449;20556;1;162;100.0;120;80;1;2;0;0;1;0
+48452;20873;1;169;88.0;140;100;1;1;0;0;1;1
+48454;18886;2;160;80.0;140;90;1;1;0;0;1;1
+48455;14512;1;150;65.0;120;90;1;1;0;0;0;0
+48456;17624;1;160;73.0;120;80;1;1;0;0;1;1
+48457;18781;1;170;68.0;120;80;1;1;0;0;1;0
+48459;22652;2;166;102.0;130;80;3;3;0;0;1;1
+48460;20481;1;158;74.0;120;80;1;1;0;0;1;1
+48461;17445;2;165;60.0;14;90;1;1;1;1;1;1
+48462;21055;1;144;56.0;130;90;2;1;0;0;1;1
+48463;15330;1;168;66.0;120;80;1;1;0;0;0;1
+48464;17326;1;159;58.0;110;70;1;1;0;0;0;0
+48465;17702;2;176;84.0;130;80;1;1;0;0;1;1
+48468;20368;2;169;69.0;120;80;1;1;0;0;1;0
+48469;21119;1;160;68.0;140;90;3;1;0;0;1;0
+48470;15932;1;168;72.0;110;70;1;1;0;0;1;0
+48472;21985;1;157;84.0;140;80;2;2;0;0;1;1
+48473;20593;1;161;89.0;130;80;2;2;0;0;1;1
+48476;20341;1;156;74.0;120;80;1;1;0;0;1;0
+48478;19506;1;160;80.0;140;80;3;1;0;1;1;1
+48479;17703;2;172;74.0;120;80;1;1;1;0;1;0
+48480;21495;1;154;95.0;130;80;3;3;0;0;1;0
+48482;21918;1;167;90.0;120;80;1;2;0;0;1;0
+48483;22548;1;158;85.0;120;80;3;1;0;0;0;1
+48485;16798;1;154;81.0;140;100;2;3;0;0;1;1
+48486;18839;1;162;75.0;100;80;1;1;0;0;0;0
+48488;20974;1;163;68.0;150;90;1;1;0;0;0;1
+48489;22089;1;157;68.0;130;80;2;1;0;0;1;1
+48490;21248;1;167;73.0;140;80;1;1;0;0;1;1
+48491;15975;1;162;60.0;100;60;1;1;0;0;1;0
+48492;19505;1;165;64.0;120;80;1;1;0;0;1;0
+48493;21868;1;165;68.0;170;1000;1;1;0;0;0;1
+48495;21367;1;160;70.0;130;90;3;3;0;0;1;0
+48497;18990;1;157;53.0;150;90;3;3;0;0;1;1
+48498;17576;1;170;65.0;120;80;2;1;0;0;1;1
+48501;21927;2;163;70.0;140;80;1;1;0;0;0;1
+48502;20256;1;150;68.0;160;90;1;1;0;0;1;1
+48505;18857;2;168;84.0;110;70;2;1;0;1;0;1
+48506;17201;2;175;85.0;120;70;1;1;0;0;1;0
+48507;18875;1;146;66.0;120;80;2;2;0;0;1;1
+48508;21385;1;165;60.0;120;80;1;1;0;0;0;0
+48510;23506;2;168;67.0;160;90;1;1;0;1;1;1
+48512;21975;2;169;72.0;110;70;1;1;0;0;1;0
+48513;17510;1;165;65.0;120;80;1;1;0;0;1;0
+48514;21149;2;159;67.0;150;90;1;2;0;0;1;1
+48515;19099;1;169;68.0;145;85;2;1;0;0;0;1
+48517;14552;1;164;66.4;110;90;1;1;0;1;1;0
+48520;22724;2;180;92.0;120;80;1;1;0;0;0;1
+48521;23403;1;161;96.0;180;80;1;2;0;0;1;1
+48522;19094;1;150;56.0;120;80;1;1;0;0;1;0
+48523;18148;1;165;56.0;120;80;1;1;0;0;1;0
+48524;22566;2;166;62.0;120;80;1;1;0;0;1;0
+48526;22751;1;165;63.0;120;80;1;1;0;0;0;1
+48527;20273;2;180;89.0;120;80;2;2;1;0;1;0
+48528;21904;1;163;74.0;140;100;1;1;0;0;1;1
+48530;18430;1;169;73.0;120;80;1;1;0;0;1;0
+48531;22368;1;163;69.0;160;90;3;1;0;0;1;1
+48533;14566;2;168;84.0;120;80;3;3;0;0;0;1
+48534;19601;2;180;75.0;140;90;1;1;0;0;0;0
+48535;21268;2;162;80.0;120;80;2;1;0;0;0;1
+48537;22652;1;165;65.0;120;70;3;3;0;0;0;0
+48538;23270;2;170;72.0;120;80;1;1;0;0;1;1
+48539;14597;1;170;72.0;120;80;2;2;0;0;1;0
+48540;18898;1;160;66.0;90;70;1;1;0;0;1;0
+48541;22883;1;157;95.0;140;90;1;1;0;0;1;0
+48543;15352;1;165;54.0;110;90;1;1;0;0;0;0
+48545;18348;1;156;85.0;140;90;3;3;0;0;1;1
+48546;18302;2;171;104.0;130;1100;1;1;1;0;1;1
+48549;21843;1;163;83.0;150;90;1;1;0;0;1;1
+48550;23342;2;165;71.0;120;80;1;3;0;0;1;0
+48552;22579;1;171;75.0;120;80;1;1;1;0;1;1
+48553;20356;1;169;69.0;120;80;3;3;0;0;0;1
+48554;23098;1;147;65.0;120;70;1;1;0;0;1;1
+48555;19220;2;174;97.0;130;83;1;1;0;0;1;0
+48557;15399;1;150;62.0;110;70;1;1;0;0;1;0
+48558;17280;2;172;105.0;150;100;2;2;0;1;1;1
+48559;16782;2;168;63.0;150;100;1;1;1;0;1;1
+48561;23629;1;157;60.0;110;70;1;1;0;0;1;0
+48562;17447;2;171;79.0;120;80;1;1;0;0;1;0
+48564;14543;1;167;55.0;110;70;1;1;0;0;1;0
+48565;19271;1;156;70.0;130;90;1;3;0;1;1;1
+48566;18019;2;175;76.0;160;100;1;1;0;0;1;1
+48567;15387;1;147;67.0;120;80;1;2;0;0;1;0
+48568;20444;1;160;87.0;160;1000;1;1;0;0;1;0
+48569;14581;1;151;68.0;120;80;1;1;0;0;1;1
+48570;20621;1;168;65.0;120;80;1;2;0;0;1;1
+48571;22408;1;158;56.0;140;80;3;1;0;0;1;1
+48572;21280;1;161;84.0;120;90;1;1;0;0;0;0
+48573;18870;1;172;92.0;150;1000;1;1;0;0;1;1
+48574;21862;1;165;65.0;120;79;1;1;0;0;1;1
+48576;18806;1;158;79.0;145;90;1;2;0;0;1;0
+48579;22475;1;160;78.0;160;90;1;1;0;0;1;1
+48580;20980;1;168;60.0;110;70;1;1;0;0;0;0
+48581;22017;2;171;86.0;120;80;2;1;0;0;1;1
+48582;17749;1;154;72.0;100;70;1;1;0;0;1;0
+48583;17100;2;179;98.0;120;80;1;1;1;0;1;0
+48584;19134;1;152;66.0;120;80;1;1;0;0;1;0
+48585;17545;2;173;85.0;130;90;1;2;0;0;0;0
+48586;15855;1;163;150.0;120;80;1;1;0;0;1;1
+48587;22350;1;159;107.0;130;80;3;1;0;0;1;1
+48588;16870;1;168;75.0;120;69;1;2;0;0;0;1
+48589;21310;2;167;77.0;120;80;1;3;0;0;1;0
+48590;16658;1;150;50.0;120;60;1;1;0;0;1;0
+48592;23524;2;172;92.0;120;80;1;1;0;0;1;1
+48595;18521;1;158;57.0;110;80;1;1;0;0;1;0
+48596;22655;2;178;80.0;120;80;1;1;0;0;1;1
+48597;21753;1;171;76.0;120;80;1;1;0;0;1;1
+48598;18275;2;161;60.0;120;80;1;1;1;0;1;0
+48599;21252;1;160;67.0;120;72;1;2;0;1;0;0
+48601;18964;2;175;85.0;160;1000;1;1;0;0;1;1
+48602;18888;2;176;110.0;135;90;3;3;1;0;1;1
+48603;17542;1;154;59.0;120;80;1;1;0;0;1;0
+48605;21823;1;157;54.0;100;60;1;1;0;0;0;0
+48606;17988;1;163;71.0;120;80;1;1;0;0;1;0
+48607;16119;1;161;72.0;120;80;1;1;0;0;1;0
+48610;19543;1;169;67.0;120;80;1;1;0;0;0;1
+48611;16666;2;178;80.0;110;70;2;1;0;0;1;0
+48612;23404;1;158;68.0;160;100;1;1;0;0;0;1
+48613;18242;2;186;75.0;110;70;1;1;0;0;1;1
+48614;18805;1;164;76.0;160;110;1;1;0;0;1;1
+48615;22777;1;162;68.0;120;70;1;1;0;0;0;0
+48616;16604;2;187;86.0;120;90;1;1;0;0;1;0
+48617;18964;2;175;85.0;120;80;2;1;1;1;1;1
+48619;15324;1;163;65.0;110;70;1;1;0;0;1;0
+48621;20448;1;156;67.0;120;80;2;1;0;0;1;0
+48622;16021;2;176;97.0;160;1000;1;2;0;0;0;0
+48624;19588;1;165;65.0;120;90;1;1;0;0;0;1
+48626;20346;1;163;59.0;130;80;3;1;0;0;1;1
+48627;14630;2;175;102.0;120;70;1;1;0;0;1;0
+48628;17267;1;153;59.0;100;70;1;1;0;0;0;0
+48630;21813;1;151;70.0;140;80;2;1;0;0;1;1
+48631;19731;2;174;94.0;150;90;3;1;0;0;1;1
+48635;19420;1;172;74.0;120;80;1;1;0;0;1;0
+48636;15323;2;165;60.0;120;80;1;1;0;0;1;0
+48637;16078;1;171;63.0;180;90;1;1;0;0;1;1
+48638;18209;1;155;109.0;140;90;1;1;0;0;1;1
+48639;20198;2;170;83.0;130;80;1;2;1;0;1;0
+48640;21606;1;170;76.0;132;70;3;3;0;0;1;1
+48641;18200;1;165;75.0;140;80;3;3;0;0;0;1
+48642;17481;2;178;96.0;110;79;1;1;0;0;1;0
+48643;17566;1;160;62.0;120;80;1;1;0;0;1;0
+48646;21086;2;166;86.0;120;80;1;1;1;0;1;0
+48647;17635;1;164;73.2;130;90;2;1;0;0;1;1
+48648;14698;2;170;70.0;120;70;1;1;0;0;1;0
+48649;20518;2;163;79.0;120;80;2;1;1;0;1;1
+48651;20639;1;152;86.0;160;120;1;1;0;0;1;1
+48652;20499;2;167;89.0;118;83;1;1;1;0;0;0
+48653;19072;1;165;65.0;120;80;1;1;0;0;1;0
+48656;15211;2;178;68.0;120;80;1;1;0;0;1;1
+48658;18254;1;151;60.0;120;80;1;1;0;0;0;0
+48659;22480;2;170;82.0;100;70;2;2;0;0;0;0
+48663;18997;1;168;89.0;120;80;1;1;0;0;1;0
+48664;23295;1;165;79.0;130;79;2;2;0;0;1;1
+48666;22779;1;165;54.0;120;80;1;1;0;0;1;1
+48668;16809;2;172;80.0;120;80;1;1;0;0;1;0
+48669;20946;2;164;86.0;140;90;1;1;0;0;1;1
+48671;19747;1;162;80.0;120;80;1;1;0;0;1;0
+48672;20381;2;156;62.0;120;80;1;1;0;0;1;0
+48673;16296;2;159;62.0;120;70;1;1;1;0;1;1
+48674;17668;1;178;80.0;120;80;1;1;0;0;1;0
+48675;19517;1;150;62.0;150;90;3;3;0;0;1;1
+48677;21932;1;147;46.0;100;60;1;1;0;0;1;0
+48678;18997;1;164;56.0;120;80;1;1;0;0;1;0
+48680;18319;1;156;74.0;124;73;1;1;0;0;1;0
+48681;21115;1;170;105.0;120;80;3;3;0;0;1;0
+48683;18921;1;163;76.0;120;80;1;1;0;0;1;0
+48684;15187;2;170;69.0;110;80;2;1;1;0;1;0
+48685;19506;1;160;75.0;120;70;1;1;0;0;1;0
+48686;16117;2;162;62.0;120;80;2;1;0;0;0;0
+48688;18060;1;156;79.0;130;90;3;1;0;0;0;1
+48689;22845;2;164;73.0;170;110;1;1;1;0;1;1
+48690;21029;1;159;56.0;120;80;2;1;0;0;1;0
+48691;21075;2;166;86.0;160;100;2;1;1;1;1;1
+48692;21654;2;172;73.0;140;90;1;1;0;0;1;1
+48694;18379;1;160;90.0;150;100;1;1;0;0;0;1
+48695;14624;2;178;85.0;120;80;1;1;0;0;0;0
+48696;20338;2;190;75.0;120;60;1;1;1;0;1;0
+48698;23137;2;167;80.0;140;90;3;3;0;0;1;1
+48699;14338;2;172;64.0;110;70;1;1;0;0;1;0
+48701;20413;2;160;54.0;160;1000;1;1;1;0;1;1
+48702;20382;1;148;52.0;110;70;1;1;0;0;1;0
+48703;19773;1;160;64.0;120;80;1;3;0;0;1;0
+48705;18073;2;172;82.0;120;80;1;1;0;0;1;1
+48707;18495;1;156;56.0;140;90;3;1;0;0;0;0
+48708;21059;1;175;98.0;120;80;1;1;0;0;1;0
+48712;18477;1;159;84.0;127;77;1;1;0;0;1;0
+48713;20509;1;165;65.0;120;80;1;1;0;0;1;0
+48714;19620;1;163;62.0;120;80;1;1;0;0;1;0
+48715;21350;1;175;79.0;130;80;1;1;0;0;1;0
+48716;18970;2;176;82.0;130;80;2;1;0;0;0;0
+48718;19793;1;164;68.0;110;70;2;2;0;0;1;0
+48719;18945;1;158;73.0;120;80;1;1;0;0;1;0
+48720;20615;2;172;76.7;110;60;1;1;1;1;1;0
+48721;21151;1;168;72.0;130;80;2;3;0;0;0;1
+48722;22538;1;158;96.0;110;60;1;2;0;0;1;0
+48724;21823;2;170;83.0;150;90;2;1;0;0;1;1
+48725;19169;1;160;79.0;120;80;1;1;0;0;1;0
+48727;19644;1;165;62.0;90;50;3;1;0;0;1;1
+48728;22750;1;160;80.0;120;70;1;1;0;0;1;0
+48729;14462;1;170;85.0;160;90;1;1;0;0;1;1
+48730;21225;2;168;81.0;130;80;1;2;0;0;1;0
+48732;23465;2;165;56.0;110;80;1;1;0;0;1;1
+48734;22715;2;175;75.0;140;80;2;1;0;0;0;1
+48736;15483;1;166;62.0;110;70;1;1;0;0;1;0
+48737;20555;2;156;50.0;100;80;1;1;0;0;1;1
+48738;15382;1;187;68.0;100;70;1;1;0;0;0;0
+48739;18484;1;160;55.0;120;80;3;3;0;0;0;0
+48740;21085;1;168;68.0;120;80;1;1;0;0;1;0
+48741;19548;1;172;81.0;170;1100;1;1;0;0;1;1
+48742;19834;2;166;64.0;140;90;1;1;0;0;1;1
+48743;19591;2;178;85.0;130;90;1;1;0;0;1;1
+48745;21306;1;167;60.0;120;80;1;1;0;0;1;1
+48746;18738;1;150;62.0;160;100;1;1;0;0;1;1
+48747;19163;2;178;78.0;140;90;1;1;0;0;1;1
+48748;20276;2;169;86.0;130;80;3;3;1;1;1;1
+48750;22544;2;169;81.0;130;90;1;1;0;0;0;1
+48752;19660;1;152;73.0;120;80;1;1;0;0;1;0
+48754;21265;2;172;84.0;150;1000;1;1;1;0;0;1
+48755;20431;1;174;71.0;120;80;1;1;0;0;1;1
+48756;16115;1;152;50.0;120;80;1;1;0;0;0;0
+48757;16691;1;180;70.0;110;70;2;1;0;0;1;0
+48759;16616;1;162;66.0;120;70;1;1;0;0;1;1
+48760;18270;1;164;82.0;170;1120;1;2;0;0;1;1
+48761;22514;1;164;100.0;140;90;3;1;0;0;1;0
+48762;14923;1;179;69.0;120;80;2;1;0;0;1;0
+48763;19098;1;164;87.0;120;80;1;2;0;0;0;0
+48764;22645;1;173;68.0;180;100;1;2;0;0;1;0
+48765;19462;1;161;87.0;130;80;2;3;0;0;0;1
+48767;20391;1;160;95.0;120;90;1;1;0;0;0;1
+48769;23418;1;154;74.0;140;80;1;1;0;0;1;1
+48770;17566;2;185;71.0;120;80;1;1;1;0;0;1
+48772;14395;1;170;83.0;130;90;2;1;0;0;0;0
+48773;21862;1;154;72.0;131;73;3;3;0;0;0;0
+48774;18787;1;165;60.0;120;80;1;1;0;0;0;0
+48776;20692;1;153;71.0;147;89;2;1;0;0;1;1
+48778;20640;1;162;66.0;150;90;3;3;0;0;1;1
+48782;23350;1;170;80.0;180;90;1;1;0;0;1;1
+48784;18719;1;170;69.0;120;80;1;1;0;0;0;0
+48785;21328;2;175;78.0;120;80;1;1;0;0;1;1
+48786;18483;2;160;93.0;120;80;1;1;1;0;0;0
+48788;14719;1;160;104.0;130;90;2;1;0;0;1;1
+48791;20484;1;154;80.0;120;80;1;1;0;0;1;1
+48793;18330;1;158;60.0;110;80;1;1;0;0;0;0
+48795;21009;1;165;70.0;120;80;1;1;0;0;1;0
+48796;19207;1;164;64.0;120;80;1;1;0;0;1;0
+48797;16211;1;165;68.0;110;70;2;2;0;0;1;0
+48802;19766;1;160;54.0;110;70;1;1;0;0;1;0
+48803;22740;1;160;78.0;120;80;1;1;0;0;0;0
+48804;17565;1;152;58.0;150;100;1;1;0;0;1;1
+48805;18863;1;158;52.0;90;60;2;2;0;0;1;0
+48813;22675;1;165;65.0;120;80;1;1;0;0;1;0
+48814;20306;1;162;89.0;130;80;1;1;0;0;1;1
+48815;15485;1;170;66.0;110;70;2;2;0;0;1;1
+48816;23211;1;164;70.0;120;80;1;1;0;0;1;0
+48817;19608;1;161;79.0;120;80;1;2;0;0;1;0
+48818;19558;1;165;66.0;120;80;1;1;0;0;0;1
+48819;21025;1;159;62.0;130;90;1;1;0;0;1;1
+48820;22596;1;156;70.0;150;90;1;1;0;0;0;1
+48821;21162;2;187;110.0;130;80;3;3;0;0;0;1
+48822;22630;1;169;69.0;120;80;1;1;0;0;1;1
+48823;18068;1;163;98.0;130;90;1;1;0;0;1;1
+48824;22371;1;164;87.0;130;80;1;1;0;0;1;1
+48825;21691;1;142;62.0;140;100;3;3;0;0;1;1
+48826;21700;2;170;70.0;120;80;1;1;0;0;1;1
+48827;21986;1;164;92.0;120;80;1;3;0;0;1;1
+48828;20206;1;162;64.0;130;80;2;2;0;0;1;1
+48829;21236;2;170;80.0;120;80;1;1;0;0;1;0
+48830;15077;1;151;70.0;120;70;1;1;0;0;1;0
+48831;19675;1;160;94.0;140;90;1;1;0;0;1;1
+48832;18117;2;167;70.0;120;80;1;1;1;0;1;0
+48833;21946;1;160;68.0;130;90;1;1;0;0;1;1
+48835;17692;1;166;70.0;120;80;1;1;0;0;1;0
+48837;14841;1;163;61.0;130;90;2;1;0;0;0;1
+48838;18156;1;160;61.0;120;80;1;1;0;0;1;0
+48839;22139;1;157;71.0;110;70;1;1;0;0;1;0
+48841;21317;1;160;60.0;120;80;1;1;0;0;1;0
+48842;16914;2;160;75.0;130;80;1;1;1;0;1;1
+48843;21044;2;170;85.0;110;70;1;1;0;0;1;0
+48844;21949;1;152;72.0;120;80;1;1;0;0;1;1
+48845;19698;1;160;69.0;140;80;2;1;0;0;1;0
+48846;16549;1;150;61.0;120;80;1;1;0;0;1;0
+48849;18207;2;170;67.0;110;80;1;2;0;0;0;1
+48854;18111;1;148;67.0;120;70;1;1;0;0;0;0
+48855;21936;1;145;72.0;150;90;2;1;0;0;1;1
+48857;18438;1;171;84.0;120;90;1;1;0;0;1;0
+48858;17986;1;169;76.0;120;80;1;1;0;0;1;0
+48860;19610;1;159;64.0;120;80;1;1;0;0;1;1
+48861;21303;2;174;74.0;125;80;1;1;0;0;1;0
+48862;17308;1;160;95.0;120;80;1;1;0;0;0;1
+48863;21056;1;165;58.0;110;90;1;1;0;0;1;0
+48864;21770;2;163;61.0;140;90;3;1;0;0;1;1
+48866;21431;1;161;60.0;120;80;1;1;0;0;1;0
+48867;21968;1;159;67.0;130;70;1;1;0;0;1;1
+48868;19039;2;168;73.0;130;80;2;1;0;0;0;1
+48870;17383;2;170;80.0;120;80;1;1;0;0;1;0
+48871;16012;1;168;55.0;140;90;1;1;0;0;1;1
+48872;20535;1;157;90.0;160;100;2;1;0;0;1;1
+48875;21002;1;155;91.0;167;111;3;2;0;0;1;1
+48876;19607;2;167;115.0;120;80;1;1;0;0;0;0
+48878;15351;2;175;85.0;110;69;1;1;0;0;1;0
+48879;18857;2;170;89.0;130;90;3;1;0;0;0;0
+48880;23092;1;148;65.0;130;80;2;2;0;0;1;1
+48881;23385;1;156;73.0;120;80;1;1;0;0;1;0
+48882;19668;2;171;79.0;120;80;1;1;0;0;1;0
+48885;18245;2;155;59.0;120;80;1;1;0;0;1;0
+48886;22100;2;169;75.0;130;80;1;1;0;0;1;0
+48888;20320;1;162;65.0;120;70;1;1;0;0;0;0
+48889;19140;2;170;78.0;140;90;1;1;0;0;1;1
+48890;23389;1;163;66.0;140;90;1;1;0;0;1;1
+48892;17438;2;168;72.0;110;70;1;1;0;0;1;1
+48893;21749;2;171;94.0;120;80;1;2;0;0;1;0
+48894;18921;2;177;75.0;150;99;1;1;0;0;1;0
+48895;16983;2;169;76.0;120;80;1;1;0;0;1;1
+48896;22068;1;168;97.0;150;90;1;1;0;0;1;1
+48897;23413;1;160;60.0;160;60;1;1;0;0;1;1
+48898;16767;1;160;105.0;130;80;1;1;0;0;0;1
+48899;21862;1;168;70.0;120;70;1;1;0;0;1;1
+48900;18963;2;165;65.0;110;80;1;1;0;0;1;1
+48901;15186;1;169;47.0;120;80;1;1;0;0;1;0
+48903;21913;1;175;70.0;150;100;2;2;0;1;1;1
+48904;18284;1;158;83.0;110;79;1;1;0;0;0;0
+48907;16586;2;170;54.0;130;80;1;1;1;1;1;1
+48908;21954;2;167;80.0;130;90;3;1;1;0;1;1
+48909;20507;1;158;81.0;120;80;1;1;0;0;0;0
+48910;21141;1;156;91.0;140;80;1;1;0;0;1;1
+48911;17454;2;175;71.0;120;80;1;1;0;0;1;1
+48912;23220;1;151;68.0;120;80;1;1;0;0;1;1
+48913;19204;1;156;72.0;120;80;1;1;0;0;1;0
+48914;17535;1;170;72.0;120;80;1;1;0;0;1;0
+48918;16892;1;154;65.0;120;60;1;1;0;0;1;0
+48922;19750;1;157;62.0;120;90;2;1;0;0;0;1
+48923;21880;1;163;82.0;140;90;1;1;0;0;1;0
+48924;16867;2;158;49.0;90;70;1;1;1;1;1;0
+48925;22762;1;160;64.0;120;80;1;1;0;0;0;1
+48926;21046;1;138;96.0;120;80;1;1;0;0;1;1
+48927;22474;1;165;70.0;150;89;1;1;0;0;1;1
+48928;16725;1;170;91.0;150;70;1;1;0;0;1;1
+48929;16867;1;178;95.0;120;80;1;1;0;0;1;1
+48930;21889;1;168;85.0;130;90;1;1;0;0;0;1
+48931;19105;2;165;65.0;120;80;1;1;0;0;1;1
+48932;16043;2;157;60.0;120;80;1;1;0;0;1;0
+48933;17440;1;164;76.0;110;80;3;1;0;0;1;1
+48934;17722;2;173;92.0;130;80;1;1;1;0;1;1
+48935;17638;2;176;86.0;125;80;1;1;0;0;1;0
+48937;22720;2;167;89.0;170;100;2;1;1;0;0;0
+48939;18791;1;169;78.0;130;70;1;1;0;0;0;1
+48941;22525;1;150;72.0;120;80;1;1;0;0;1;0
+48942;20264;1;158;67.0;110;80;1;1;0;0;0;0
+48943;21254;1;149;59.0;140;90;1;1;0;0;1;1
+48945;23313;1;156;87.0;165;90;2;1;0;0;1;1
+48947;17432;1;156;93.0;140;80;1;1;0;0;1;1
+48948;21222;1;153;69.0;150;100;2;2;0;0;0;0
+48949;17510;2;167;61.0;110;70;1;1;0;0;1;1
+48951;17488;2;157;44.0;120;80;1;1;0;0;0;0
+48952;21808;1;163;62.0;130;90;1;1;0;0;1;1
+48955;21756;1;154;70.0;120;70;2;2;0;0;1;1
+48956;15250;1;164;63.0;120;80;1;1;0;0;1;0
+48957;19098;2;162;68.0;120;80;1;1;0;0;1;0
+48958;15936;2;182;95.0;180;100;1;1;0;0;0;1
+48959;19012;1;167;98.0;100;60;2;2;0;0;1;0
+48962;16054;2;173;76.0;120;80;1;1;0;0;1;0
+48964;19107;1;171;89.0;120;70;1;1;0;0;1;0
+48966;18956;2;165;65.0;110;80;1;1;0;0;1;1
+48967;18340;1;158;68.0;120;80;1;1;0;0;0;0
+48968;20411;1;171;70.0;120;80;1;1;0;0;1;1
+48970;16346;1;156;63.0;110;70;1;3;0;0;0;1
+48972;14603;1;160;82.0;120;80;1;1;1;0;1;1
+48974;21240;1;168;79.0;110;70;2;2;0;0;1;1
+48975;20278;1;168;70.0;130;80;1;1;0;0;1;0
+48976;14664;2;128;28.0;120;80;1;1;0;0;1;0
+48978;19811;1;165;65.0;120;80;1;1;0;0;1;0
+48979;14521;1;130;80.0;130;80;1;3;0;1;1;1
+48980;18817;1;164;73.0;120;80;1;1;0;0;1;0
+48982;14410;1;175;75.0;120;80;1;1;0;0;1;0
+48984;16252;1;152;53.0;140;90;1;1;0;0;0;1
+48985;20406;1;148;36.0;140;80;1;1;0;0;1;1
+48986;18788;1;156;83.0;120;75;1;3;0;1;0;1
+48987;14686;2;169;64.0;120;80;2;1;0;0;1;0
+48988;21903;2;159;57.0;120;80;1;3;0;0;1;1
+48989;16160;2;171;64.0;120;80;1;1;0;0;1;0
+48990;19766;1;169;75.0;120;80;1;1;0;0;1;0
+48991;21970;1;140;80.0;140;90;1;1;0;0;1;1
+48992;22409;1;158;58.0;120;90;3;1;0;0;1;1
+48993;21183;2;171;73.0;120;80;1;1;0;0;1;0
+48994;18462;1;158;62.0;150;90;2;1;0;0;1;1
+48995;17351;1;180;100.0;140;90;3;3;0;0;1;1
+48997;19132;2;166;59.0;130;70;1;1;0;0;1;1
+48998;21680;1;152;67.0;140;80;3;1;0;0;1;1
+48999;18102;1;169;60.0;120;80;1;1;0;0;1;0
+49000;19737;1;160;60.0;140;90;1;1;0;0;1;1
+49002;22087;1;153;54.0;120;80;1;1;0;0;1;0
+49003;21008;1;158;75.0;110;80;1;1;0;0;1;0
+49004;17542;2;176;71.0;120;80;1;1;0;0;1;1
+49005;15586;1;161;65.0;120;80;1;1;0;0;1;0
+49006;17545;1;167;63.0;150;80;1;1;0;0;1;1
+49007;20363;2;165;100.0;150;90;1;1;0;0;1;1
+49008;20554;2;180;75.0;120;80;1;1;0;0;1;0
+49009;20370;1;180;78.0;120;80;1;1;0;0;1;0
+49012;15362;1;172;96.0;115;75;1;3;0;0;0;0
+49013;18463;1;160;80.0;130;80;1;1;0;0;0;1
+49016;20509;1;165;66.0;120;80;1;1;0;0;0;1
+49018;20423;1;160;67.0;170;110;1;1;0;0;1;1
+49019;20224;1;161;60.0;145;80;3;3;0;0;1;1
+49020;23327;2;174;74.0;130;80;3;1;0;0;1;1
+49021;16136;1;167;65.0;110;70;1;1;0;0;1;0
+49022;21838;1;160;87.0;120;80;1;1;0;0;1;0
+49024;20948;1;155;122.0;120;80;2;1;0;0;0;1
+49025;19726;2;167;91.0;180;90;2;1;0;0;1;1
+49027;21970;2;167;80.0;140;100;1;1;0;0;1;0
+49028;23414;2;172;91.0;160;90;3;3;0;0;1;1
+49029;17483;2;162;68.0;125;70;1;1;0;0;1;0
+49030;15497;2;178;80.0;138;80;1;1;1;0;1;1
+49031;20457;1;165;80.0;160;90;1;1;0;0;1;1
+49033;19709;2;183;76.0;140;90;1;1;0;0;1;1
+49034;23351;1;164;75.0;160;100;1;1;0;0;1;1
+49036;20577;2;173;83.0;120;69;1;2;0;0;1;0
+49038;16117;1;153;55.0;120;60;1;1;0;0;1;1
+49039;23197;2;170;78.0;170;110;1;1;0;0;1;1
+49040;23537;1;155;103.0;120;69;1;1;0;0;0;1
+49041;20917;1;178;85.0;140;90;3;3;0;0;1;1
+49042;21879;1;147;56.0;120;80;1;1;0;0;1;0
+49043;14670;1;152;39.0;90;60;1;1;0;0;1;0
+49044;21879;1;168;92.0;120;70;2;3;0;0;1;0
+49045;21215;2;176;79.0;120;80;1;1;0;0;1;1
+49046;21184;1;168;76.0;120;80;2;1;0;0;1;1
+49047;23543;1;157;66.0;110;70;1;1;0;0;1;1
+49048;19859;1;166;63.0;160;70;1;1;0;0;1;1
+49052;21222;1;170;78.0;120;80;2;2;0;0;1;0
+49053;21963;2;169;71.0;120;80;1;1;0;0;1;1
+49054;21362;1;168;72.0;100;70;1;1;0;0;1;0
+49055;20240;1;162;75.0;130;90;1;1;0;0;1;1
+49056;18371;1;156;61.0;120;80;1;1;0;0;1;0
+49057;14798;2;170;68.0;120;80;1;1;0;0;0;0
+49058;15831;2;178;95.0;120;70;1;1;0;0;0;0
+49059;20503;1;152;59.0;120;80;1;1;0;0;1;0
+49060;23274;1;168;75.0;120;80;1;1;0;0;1;0
+49062;19646;1;167;78.0;140;90;2;1;0;0;1;1
+49064;18028;1;172;87.0;120;80;2;1;0;0;1;1
+49065;14582;2;168;65.0;120;80;1;1;0;0;0;0
+49066;20621;1;170;79.0;120;80;3;2;0;0;0;1
+49068;19882;2;170;85.0;120;80;1;1;1;0;1;1
+49069;18936;2;176;73.0;130;80;1;1;0;0;1;1
+49070;19968;2;180;77.0;120;80;1;1;0;0;1;0
+49071;20400;2;178;76.0;120;60;1;1;0;0;1;1
+49072;20403;1;154;68.0;120;80;1;1;0;0;0;0
+49073;18851;2;175;73.0;120;80;1;1;0;0;1;0
+49074;23191;1;155;56.0;120;80;1;1;0;0;1;0
+49076;14601;1;156;64.0;110;70;1;1;0;0;1;1
+49077;21265;2;170;80.0;140;90;3;1;0;0;0;1
+49078;19725;1;158;69.0;110;70;1;1;0;0;1;0
+49080;19752;1;166;74.0;120;80;3;1;0;0;0;1
+49082;21839;2;165;89.0;120;80;3;1;0;0;1;1
+49083;21296;1;152;69.0;110;70;3;3;1;0;1;0
+49084;18249;1;182;104.0;130;90;3;2;0;0;1;1
+49093;18877;1;155;85.0;130;90;1;1;0;0;0;1
+49094;20282;2;174;75.0;120;80;2;1;1;1;1;0
+49097;20662;1;163;72.0;120;80;1;1;0;0;1;0
+49098;21888;2;110;70.0;110;70;1;1;0;0;1;1
+49099;16002;2;180;94.0;140;90;1;1;0;0;0;1
+49100;21029;1;161;78.0;130;80;1;1;0;0;1;0
+49101;21270;1;166;101.0;140;90;3;1;0;0;1;1
+49103;23541;1;154;80.0;160;90;2;1;0;0;1;1
+49104;22513;1;154;54.0;130;90;1;1;0;0;1;1
+49106;20355;1;168;81.0;150;90;2;1;0;0;1;1
+49108;14647;2;169;62.0;110;80;1;1;1;1;1;0
+49111;18865;1;164;88.0;180;100;1;1;0;0;0;1
+49113;23274;2;171;73.0;120;80;1;1;0;0;1;1
+49114;21844;1;165;65.0;120;80;1;1;0;0;1;0
+49116;16766;1;163;83.0;140;90;2;2;0;0;1;1
+49117;19840;1;175;90.0;130;80;1;2;0;0;1;1
+49119;18976;2;170;77.0;120;80;1;1;0;0;0;0
+49120;20347;2;172;107.0;120;80;1;1;1;0;1;1
+49121;14553;2;168;66.0;120;80;1;1;1;0;1;0
+49122;20380;1;155;106.0;110;70;3;3;0;0;1;1
+49123;14509;1;158;92.0;110;80;1;1;0;0;1;0
+49124;21189;2;165;88.0;170;90;1;1;0;0;1;1
+49125;18996;1;163;63.0;110;75;1;1;0;0;1;1
+49127;19793;1;180;62.0;120;80;1;1;0;0;1;0
+49130;18732;1;153;52.0;110;60;1;1;0;0;1;1
+49132;23360;2;172;120.0;150;80;1;1;0;0;1;1
+49134;21941;1;165;72.0;170;100;2;1;0;0;0;1
+49136;18857;1;167;68.0;120;80;1;1;0;0;1;0
+49137;18736;1;156;76.0;150;90;2;1;0;0;1;1
+49138;21279;1;167;71.0;120;60;1;1;0;0;1;0
+49140;16749;1;179;89.0;120;80;1;1;0;0;0;0
+49141;19794;1;164;68.0;120;80;1;1;0;0;1;0
+49142;20516;2;170;84.0;125;80;1;3;0;0;1;1
+49143;19066;1;164;62.0;120;80;2;1;0;0;1;0
+49146;18940;2;170;66.0;12;80;1;1;1;0;1;1
+49148;18936;2;174;70.0;110;70;1;1;0;0;1;1
+49149;19673;1;163;70.0;90;60;1;1;0;0;0;1
+49150;20238;1;168;68.0;120;80;1;1;0;0;1;1
+49152;19514;1;143;55.0;110;80;1;1;0;0;1;0
+49153;18945;1;172;100.0;120;80;1;1;0;0;1;0
+49154;20206;2;175;75.0;140;80;1;1;0;0;1;1
+49155;17480;1;160;76.0;120;80;1;1;0;0;1;1
+49157;22421;1;168;90.0;140;90;1;1;0;0;1;1
+49158;20400;1;167;84.0;150;90;3;1;0;0;1;1
+49159;18188;1;165;65.0;120;82;1;1;0;0;1;0
+49160;14725;1;168;72.0;110;70;3;3;0;0;1;1
+49161;15309;2;167;72.0;120;80;1;1;1;0;1;1
+49164;22717;2;163;65.0;120;80;2;1;0;0;1;0
+49165;15918;1;160;73.0;120;80;1;1;0;0;1;0
+49166;14569;1;158;61.0;140;90;2;3;0;0;1;1
+49167;20668;1;167;64.0;120;70;1;1;0;0;1;0
+49169;16666;1;152;91.0;110;90;1;3;0;0;1;0
+49170;22748;2;160;68.0;120;80;1;1;0;0;1;0
+49171;17533;2;173;82.0;140;90;2;1;0;0;1;1
+49172;18235;1;163;63.0;120;80;1;1;0;0;1;0
+49173;23556;2;163;57.0;140;80;2;3;0;0;1;1
+49175;20631;1;170;65.0;120;70;1;3;0;0;1;1
+49176;17400;1;159;65.0;110;70;1;1;0;0;1;0
+49178;20267;1;160;70.0;120;80;1;1;0;0;0;1
+49179;21933;2;162;63.0;110;70;1;1;0;0;1;1
+49180;16701;2;179;106.0;110;70;3;1;0;0;1;1
+49181;19825;1;163;80.0;120;80;2;1;0;1;0;0
+49182;18255;1;155;54.0;120;80;2;2;0;1;1;0
+49183;16319;1;157;77.0;130;80;1;1;0;0;1;0
+49184;22661;1;165;90.0;130;70;1;2;0;0;1;0
+49185;21782;2;175;74.0;120;70;2;2;0;0;1;0
+49186;19949;1;172;72.0;11;70;1;1;0;0;1;1
+49187;22410;1;158;108.0;170;100;1;3;0;0;1;1
+49188;19215;1;170;69.0;120;80;1;1;0;0;1;0
+49189;19714;1;165;71.0;130;90;1;1;0;0;1;0
+49191;18030;1;165;85.0;160;80;1;1;0;0;0;1
+49192;22818;2;171;94.0;150;90;3;2;0;0;1;1
+49193;19082;2;156;88.0;150;90;1;1;0;0;1;1
+49195;16807;1;158;75.0;100;70;1;1;0;0;0;0
+49196;18798;1;156;53.0;130;80;1;1;0;0;1;0
+49197;23508;1;168;63.0;150;90;3;3;0;0;1;1
+49198;20629;1;154;66.0;120;90;3;3;0;0;1;1
+49199;23343;1;164;82.0;130;70;3;1;0;0;1;0
+49203;23383;1;169;72.0;120;80;1;1;0;0;1;1
+49205;17996;1;172;69.0;120;80;1;1;0;0;1;0
+49206;19566;1;162;77.0;120;80;1;1;0;0;1;0
+49209;14633;1;160;62.0;100;60;1;1;0;0;1;1
+49210;18022;1;150;62.0;160;100;3;1;0;0;1;0
+49211;20473;1;162;63.0;120;80;1;1;0;0;1;1
+49212;18275;1;170;104.0;173;103;3;1;0;0;1;1
+49213;23558;1;156;87.0;140;90;1;1;0;0;1;0
+49215;21761;1;154;68.0;130;100;3;1;0;0;1;0
+49216;20650;1;156;70.0;110;70;1;1;0;0;0;1
+49219;17547;1;154;65.0;110;80;1;1;0;0;1;0
+49220;14410;1;162;85.0;100;70;2;1;0;0;1;1
+49223;17263;2;157;70.0;130;80;3;3;0;0;1;0
+49224;20450;1;160;95.0;120;80;1;1;0;0;1;1
+49225;15388;1;158;54.0;110;70;1;1;0;0;1;0
+49226;19905;1;159;63.0;120;80;1;1;0;0;1;0
+49227;20435;2;177;75.0;150;90;1;1;0;0;1;1
+49230;21956;1;165;60.0;120;80;1;1;0;0;1;0
+49231;18355;1;168;60.0;130;80;1;1;0;0;1;1
+49232;15301;2;180;76.0;120;80;1;2;0;0;1;1
+49233;23352;1;160;60.0;120;80;3;3;0;0;0;1
+49234;15410;1;168;64.0;120;80;1;1;0;0;1;0
+49235;19578;1;164;65.0;110;70;1;1;0;0;1;0
+49236;16751;2;176;78.0;100;80;1;1;1;0;1;0
+49237;15344;1;157;58.0;110;60;1;1;0;0;1;0
+49239;18928;1;162;80.0;140;80;3;3;0;0;1;1
+49240;17386;1;172;80.0;120;80;1;3;0;0;1;0
+49241;22486;1;166;68.0;120;80;1;1;0;0;1;0
+49242;21894;1;155;60.0;140;80;1;1;0;0;1;1
+49243;19721;1;169;75.0;130;70;1;1;0;0;0;1
+49245;19657;1;165;78.0;110;70;2;1;0;0;1;0
+49246;20293;1;158;73.0;130;80;1;1;0;0;1;0
+49248;14616;1;163;58.0;110;70;2;1;0;0;1;0
+49250;20451;1;163;81.0;120;80;1;1;0;0;1;1
+49251;20319;2;160;74.0;150;90;1;1;0;0;1;1
+49253;19107;1;162;73.0;120;80;1;1;0;0;1;1
+49254;15895;2;182;112.0;140;90;3;1;0;0;1;1
+49255;21913;1;168;82.0;140;90;1;1;0;0;1;1
+49256;22698;2;170;96.0;140;90;1;1;0;0;1;0
+49257;20599;2;171;67.0;110;59;1;1;0;0;0;1
+49258;16186;1;160;60.0;160;90;2;3;0;0;1;0
+49259;23179;1;158;80.0;140;80;2;1;0;0;0;1
+49260;21279;1;172;80.0;135;80;3;1;0;0;1;1
+49261;21323;1;164;92.0;120;80;1;1;1;0;1;1
+49262;17496;2;175;83.0;150;80;1;1;0;0;1;1
+49263;18196;1;150;70.0;150;90;1;1;0;0;1;0
+49265;20479;1;162;75.0;90;60;2;1;0;0;1;0
+49266;15839;1;165;113.0;140;90;1;1;0;0;1;1
+49267;14677;1;169;59.0;120;80;1;1;0;0;1;0
+49268;19917;1;158;60.0;120;80;1;1;0;0;0;1
+49269;20436;1;165;65.0;120;80;1;1;0;0;1;1
+49270;14454;2;178;66.0;120;80;1;1;0;0;0;0
+49271;21889;1;163;66.0;140;80;1;1;0;0;1;0
+49272;22552;2;178;71.0;120;80;1;3;0;0;1;0
+49273;18286;2;160;60.0;130;80;1;1;0;0;1;0
+49274;19878;1;156;75.0;120;80;1;1;0;0;1;0
+49275;21028;1;161;63.0;150;90;2;1;0;0;1;1
+49276;21853;1;159;63.0;130;90;1;1;0;0;1;1
+49277;14667;1;164;76.0;140;90;2;1;0;0;1;1
+49279;20545;1;167;78.0;120;80;1;1;0;0;0;0
+49280;20373;2;158;62.0;110;70;1;1;1;0;1;1
+49281;22071;2;162;60.0;120;80;3;3;0;0;1;0
+49282;20349;1;165;68.0;140;80;2;1;0;0;1;1
+49283;20207;1;157;72.0;120;70;1;1;0;0;0;0
+49284;17534;2;167;75.0;120;80;1;1;0;0;0;0
+49286;22612;2;170;70.0;120;80;1;1;0;0;1;0
+49287;22314;1;160;74.0;140;70;1;1;0;0;1;1
+49288;19741;1;159;97.0;120;80;1;1;0;0;1;1
+49289;19644;1;162;90.0;150;80;2;1;0;0;1;1
+49291;20633;2;161;79.0;120;80;1;1;1;0;1;0
+49292;21203;1;163;62.0;140;90;1;1;0;0;1;1
+49293;21210;2;158;52.0;150;90;1;1;0;0;1;1
+49295;18428;1;156;77.0;150;90;1;1;0;0;1;0
+49297;23411;1;180;100.0;180;105;1;1;0;0;0;1
+49300;22098;1;164;65.0;120;80;1;1;0;0;1;0
+49301;18003;1;170;90.0;140;90;1;1;0;0;0;1
+49302;17471;1;168;74.0;120;80;2;1;0;0;0;0
+49303;15271;1;157;47.0;80;60;1;1;0;0;1;0
+49304;16315;1;150;72.0;140;80;2;1;0;0;1;1
+49308;23300;1;157;45.0;120;60;2;1;0;0;0;0
+49309;15067;1;158;76.0;120;80;1;1;0;0;1;0
+49310;20504;2;155;62.0;110;70;1;1;1;1;1;0
+49313;23373;1;161;69.0;140;90;1;2;0;0;0;1
+49314;22050;2;170;79.0;140;90;1;1;0;0;1;1
+49315;20976;1;172;73.0;145;91;2;1;0;0;1;1
+49317;21052;1;158;86.0;150;80;2;1;0;0;1;0
+49318;14557;2;178;70.0;120;80;1;1;1;0;1;0
+49319;21110;1;157;67.0;120;90;1;1;0;0;1;0
+49320;14602;1;156;41.0;110;80;1;1;0;0;1;0
+49321;21922;1;164;82.0;12;140;1;1;0;0;0;0
+49322;22730;1;168;88.0;165;95;2;1;0;0;0;1
+49324;17732;1;154;68.0;120;90;2;1;0;0;0;0
+49325;14777;2;158;56.0;120;80;1;1;0;0;1;0
+49327;15242;1;165;68.0;110;70;1;1;0;0;1;0
+49328;18128;1;156;54.0;90;50;1;1;0;0;1;0
+49330;17496;2;165;59.0;110;70;1;1;1;0;1;0
+49332;17586;2;170;106.0;130;90;1;1;0;0;0;1
+49333;19741;1;154;82.0;131;80;2;2;0;0;1;1
+49334;18957;2;168;69.0;120;80;1;1;1;0;1;1
+49335;17748;2;169;67.0;110;80;1;1;0;0;1;1
+49336;18700;1;156;85.0;120;80;1;1;0;0;1;0
+49337;19814;1;159;87.0;130;80;1;1;0;0;1;1
+49338;17463;1;164;110.0;150;1000;1;1;0;0;0;1
+49339;16220;2;172;74.0;110;70;1;1;0;0;1;0
+49340;15553;1;162;64.0;100;70;2;1;0;0;1;0
+49341;21923;2;170;75.0;130;90;1;1;0;0;1;0
+49342;22642;2;165;64.0;120;70;1;1;0;0;1;1
+49343;18282;1;159;131.0;120;80;3;3;0;0;1;1
+49345;21632;1;166;105.0;140;90;1;1;0;0;1;1
+49346;21837;1;156;84.0;120;80;1;1;0;0;0;1
+49348;18248;2;170;84.0;120;80;1;1;0;0;1;0
+49349;21272;2;165;75.0;130;90;2;1;0;0;1;1
+49351;21864;2;160;73.0;110;70;1;1;0;0;1;1
+49352;23209;2;167;94.0;180;90;3;3;0;0;0;1
+49354;21995;1;158;62.0;120;80;1;1;0;0;1;0
+49355;19194;2;158;56.0;120;80;1;1;0;0;1;0
+49356;21943;2;178;80.0;140;89;2;2;0;0;0;1
+49358;19849;2;182;104.0;160;100;3;1;0;0;1;1
+49360;23204;2;179;91.0;110;80;3;3;0;0;0;1
+49362;21224;1;165;82.0;110;80;2;2;0;0;1;0
+49366;20441;1;166;75.0;130;80;1;1;0;0;0;0
+49368;22799;2;172;86.0;130;1000;1;1;0;0;1;1
+49369;20597;1;158;61.0;110;70;1;1;0;0;0;1
+49372;16677;2;177;82.0;140;90;1;1;0;0;1;0
+49373;19084;2;180;86.0;120;80;2;2;0;0;1;1
+49374;19753;1;165;85.0;120;80;1;1;0;0;1;1
+49375;23170;2;170;76.0;130;89;1;1;0;0;0;1
+49376;18036;1;156;58.0;100;60;1;1;0;0;1;0
+49377;19688;2;166;85.0;150;90;1;1;0;0;1;1
+49378;20883;2;169;91.0;160;100;1;1;0;0;0;1
+49379;22601;1;167;68.0;130;80;1;1;0;0;1;0
+49380;18442;2;174;68.3;140;90;1;1;1;1;1;1
+49381;21205;2;182;90.0;110;80;1;1;0;0;1;0
+49382;18963;2;169;72.0;120;80;1;1;0;0;1;0
+49383;16150;1;175;76.0;120;80;1;1;0;0;1;0
+49385;16586;2;165;60.0;120;80;1;1;0;0;1;0
+49386;21911;1;154;60.0;125;80;1;1;0;0;1;1
+49387;20546;2;188;89.0;130;90;3;1;0;0;1;1
+49388;19750;2;159;52.0;100;80;1;1;0;0;1;0
+49389;21926;1;171;70.0;110;70;1;1;0;0;1;0
+49391;20537;2;183;83.0;130;80;1;1;0;0;0;0
+49392;16067;1;159;89.0;130;80;1;1;0;0;1;1
+49394;22534;1;156;57.0;120;70;1;1;0;0;1;1
+49396;18393;1;161;70.0;110;70;1;1;0;0;1;0
+49397;21110;2;168;71.0;140;90;1;1;0;0;1;1
+49399;18058;1;157;76.0;110;70;2;1;0;0;1;1
+49400;14643;2;185;50.0;110;70;1;2;0;0;1;0
+49401;17329;1;152;97.0;150;100;1;1;0;1;1;1
+49402;23335;1;165;80.0;150;80;3;3;0;0;1;1
+49403;21175;2;168;80.0;100;60;1;1;1;0;1;1
+49404;20957;1;171;79.0;140;90;3;1;0;0;1;1
+49407;20553;1;156;70.0;130;90;3;3;0;0;1;1
+49408;14564;1;156;80.0;100;80;1;1;0;0;1;0
+49409;16677;1;153;75.0;100;70;1;1;0;0;1;0
+49411;16564;1;159;68.0;110;70;1;2;0;0;1;1
+49412;20397;1;161;77.0;130;85;2;1;0;0;1;0
+49413;15505;2;174;165.0;120;90;1;2;0;1;1;0
+49414;18241;1;154;66.0;120;80;3;1;0;0;1;1
+49416;18159;2;176;81.0;180;1100;2;1;0;0;1;1
+49417;20365;1;156;70.0;120;80;1;1;0;0;0;0
+49418;20565;1;167;71.0;120;80;1;1;0;0;0;1
+49419;19209;1;165;60.0;110;70;1;1;0;0;1;0
+49421;19711;1;172;114.0;170;100;3;3;0;0;0;1
+49423;18796;2;172;80.0;120;80;1;1;0;0;1;0
+49424;20414;1;170;84.0;120;90;1;3;0;0;1;0
+49425;22585;2;177;63.0;150;100;2;1;0;0;1;1
+49427;20992;1;158;85.0;110;80;2;1;0;0;1;0
+49429;22594;1;157;65.0;120;80;1;1;0;0;1;1
+49431;21191;1;162;68.0;120;80;2;1;0;0;1;0
+49433;22752;2;170;85.0;130;90;1;1;0;0;1;0
+49435;16712;2;168;78.0;120;70;1;1;0;0;0;0
+49436;17285;2;170;73.0;140;90;2;1;1;0;1;0
+49438;15305;2;172;86.0;120;80;1;1;1;0;1;0
+49439;14614;2;177;114.0;130;80;1;1;0;0;1;1
+49440;20427;1;167;83.0;110;70;1;1;0;0;1;1
+49441;18277;2;158;60.0;150;90;3;3;0;0;1;0
+49444;19071;1;162;65.0;110;80;1;1;0;0;1;0
+49445;19796;2;145;50.0;125;60;1;1;0;0;1;0
+49447;20427;1;183;70.0;120;70;1;1;0;0;1;1
+49448;21902;2;168;72.0;140;90;1;1;0;0;1;1
+49450;21886;1;154;67.0;140;90;1;2;0;0;1;0
+49451;14737;2;160;64.0;120;70;1;1;0;0;1;0
+49453;21354;1;154;82.0;120;80;1;1;0;0;1;1
+49454;21960;2;175;86.0;140;90;3;1;1;1;0;0
+49455;21820;1;156;94.0;140;80;1;1;0;0;0;1
+49456;19064;1;161;67.0;120;80;1;1;0;0;1;0
+49457;17640;1;156;72.0;120;80;2;1;0;0;1;1
+49458;20626;1;166;74.0;120;80;1;1;0;0;1;1
+49461;18878;1;164;65.0;120;80;1;1;0;0;1;1
+49462;19091;1;153;53.0;110;70;1;1;0;0;1;0
+49463;19522;1;154;75.0;130;79;1;1;0;0;1;0
+49464;22433;1;158;99.0;125;85;1;2;0;0;1;1
+49465;19598;2;163;73.0;140;80;1;2;1;0;0;0
+49466;23307;2;184;98.0;135;80;3;1;0;0;0;1
+49467;19714;1;167;68.0;120;80;1;1;0;0;1;1
+49469;20183;1;156;90.0;120;80;1;1;0;0;1;1
+49471;17535;2;171;82.0;120;80;1;1;1;0;1;1
+49472;14828;2;169;70.0;120;80;1;1;0;0;0;0
+49473;19790;2;174;80.0;120;80;3;3;0;0;1;0
+49475;16696;1;170;96.0;140;90;1;1;0;0;0;1
+49476;15085;2;177;79.0;120;70;1;1;0;0;1;0
+49478;19227;2;170;65.0;120;80;1;1;0;0;1;1
+49479;20259;1;158;89.0;120;80;1;1;0;0;0;1
+49481;21952;1;167;62.0;120;70;1;1;0;0;1;1
+49486;19588;1;160;72.0;130;80;1;1;0;0;1;0
+49490;23099;2;183;90.0;130;90;1;3;0;0;1;1
+49492;21839;1;160;94.0;120;80;3;3;0;0;0;0
+49493;21259;2;163;62.0;120;80;1;1;0;0;0;0
+49494;21986;2;180;85.0;140;90;1;1;1;0;1;1
+49495;18899;1;160;90.0;150;90;3;1;0;0;1;1
+49496;20607;1;169;69.0;120;80;1;1;0;0;1;0
+49497;16885;1;165;78.0;120;80;1;1;0;0;1;0
+49498;20565;1;162;81.0;140;100;1;1;0;0;1;1
+49499;22466;1;162;59.0;120;80;1;1;0;0;0;1
+49500;18897;1;162;60.0;120;80;1;1;0;0;1;0
+49501;18769;1;154;71.0;120;80;1;1;0;0;1;0
+49503;19645;1;159;59.0;12;80;1;1;0;0;1;1
+49506;17633;2;166;90.0;130;80;1;2;0;0;1;0
+49507;18088;1;158;65.0;110;70;1;1;0;0;0;0
+49508;21968;1;157;95.0;130;90;1;1;0;0;1;1
+49511;17381;1;168;63.0;120;80;1;1;0;0;1;0
+49513;23402;1;161;104.0;160;100;1;1;0;0;1;1
+49514;18531;2;160;75.0;120;80;1;1;0;0;1;1
+49517;17557;1;165;112.0;120;80;1;1;0;0;0;1
+49518;15421;2;169;81.0;140;1000;1;1;0;0;0;1
+49519;20490;1;150;50.0;100;70;1;1;0;0;1;0
+49521;20484;1;162;78.0;100;70;1;1;0;0;1;0
+49522;21085;1;157;92.0;110;70;1;1;0;0;0;1
+49523;22640;1;158;67.0;150;90;1;1;0;0;1;1
+49524;17257;1;155;63.0;150;90;1;1;0;0;1;1
+49525;21799;2;168;93.0;154;87;1;1;0;0;1;1
+49526;18800;1;152;75.0;110;70;2;1;0;0;1;0
+49528;17257;1;160;65.0;110;70;1;1;0;0;1;0
+49529;19626;1;165;69.0;120;80;1;1;0;0;1;0
+49531;15965;2;178;70.0;140;100;1;2;1;1;1;1
+49533;21816;2;154;73.0;120;80;1;1;0;0;1;0
+49535;18177;1;152;91.0;130;80;1;1;0;0;1;0
+49536;18858;1;150;70.0;180;1100;3;3;0;0;0;1
+49538;18216;1;170;68.0;110;70;1;1;0;0;1;1
+49539;23330;2;176;80.0;160;90;1;1;0;0;1;1
+49540;22033;1;156;85.0;130;80;3;1;0;1;1;1
+49541;16831;1;166;78.0;120;80;1;1;0;0;1;0
+49542;22630;1;165;88.0;150;100;2;3;0;0;0;1
+49544;22727;1;154;62.0;160;100;1;1;0;1;1;1
+49546;21950;1;158;64.0;110;70;1;1;0;0;1;0
+49547;18415;1;155;50.0;110;70;1;1;0;0;1;0
+49549;19102;2;176;80.0;120;80;1;1;0;0;1;1
+49550;15805;2;169;97.0;145;95;1;1;1;1;1;1
+49551;15478;2;165;74.0;120;80;1;1;0;0;1;0
+49552;17523;1;174;71.0;120;90;1;1;0;0;1;1
+49554;21428;1;158;66.0;120;80;3;3;0;0;1;0
+49555;17652;2;182;75.0;120;75;1;1;0;0;1;0
+49558;21078;1;163;80.0;140;80;2;1;0;0;1;1
+49559;22739;1;155;52.0;120;80;1;1;0;0;1;1
+49560;18413;1;163;62.0;120;80;1;1;0;0;1;0
+49561;22706;1;158;74.0;120;80;1;1;0;0;1;0
+49562;21282;1;175;70.0;140;90;1;1;0;0;1;1
+49563;16840;1;154;50.0;110;70;1;1;0;0;1;0
+49564;21714;1;158;56.0;120;80;1;1;0;0;1;1
+49565;15968;2;175;68.0;110;70;2;1;1;1;1;0
+49566;21148;1;162;81.0;120;80;1;1;0;0;1;0
+49568;23325;2;165;71.0;140;90;3;2;0;0;0;1
+49569;17485;1;162;69.0;100;70;1;1;0;0;1;0
+49571;21999;1;158;75.0;130;70;1;1;0;0;1;0
+49572;17229;1;159;68.0;120;90;2;1;0;0;1;1
+49574;19607;1;156;78.0;130;80;3;3;0;0;1;1
+49575;15978;2;168;79.0;150;90;1;1;0;0;1;1
+49577;20309;2;172;87.0;130;89;1;3;1;1;1;0
+49578;19019;1;146;63.0;130;90;1;3;0;0;0;1
+49579;19740;1;167;60.0;120;80;1;1;0;0;1;1
+49580;16130;2;170;80.0;120;90;1;1;0;0;1;1
+49581;17339;1;169;86.0;130;90;1;1;0;0;0;1
+49582;19524;1;152;65.0;110;80;2;1;0;0;1;0
+49583;18429;1;154;69.0;130;80;1;1;0;0;1;1
+49585;18259;2;169;59.0;100;70;2;2;1;0;0;1
+49588;15348;1;169;69.0;140;90;2;1;0;0;0;1
+49589;21939;2;170;76.0;120;80;1;1;0;0;1;1
+49590;19884;1;168;74.0;120;80;1;1;0;0;0;0
+49591;20265;1;178;95.0;135;80;1;1;0;0;1;1
+49592;17468;1;165;80.0;120;80;1;1;0;0;1;0
+49593;19718;2;165;72.0;140;80;1;1;0;0;1;0
+49595;23538;1;170;72.0;120;70;1;1;1;0;0;1
+49596;18787;1;165;70.0;140;100;2;1;0;0;1;1
+49597;20324;1;158;71.0;110;70;1;1;0;0;1;0
+49599;16905;2;173;67.0;110;60;1;1;0;0;1;0
+49602;19111;1;160;80.0;120;80;1;1;0;0;1;1
+49603;21266;1;166;80.0;120;90;2;2;0;0;1;1
+49604;20574;1;158;73.0;130;90;3;1;0;0;1;1
+49605;18459;1;164;80.0;110;60;1;1;0;0;1;0
+49607;16064;1;159;71.0;130;70;1;1;0;0;0;1
+49608;19298;1;150;50.0;120;60;1;1;0;0;0;0
+49609;19782;2;173;77.0;140;90;1;1;0;0;1;1
+49610;21235;1;159;64.0;140;80;2;1;0;0;1;1
+49612;22031;2;162;67.0;130;80;1;1;1;1;1;1
+49613;18438;1;153;75.0;140;70;1;1;0;0;1;1
+49614;21875;1;154;92.0;130;80;1;1;0;0;0;1
+49615;23179;1;160;70.0;120;80;2;1;0;0;1;1
+49616;17563;1;158;70.0;120;80;1;1;0;0;1;1
+49618;21402;1;164;58.0;130;80;2;1;0;0;1;1
+49619;18335;1;165;77.0;160;90;1;1;0;0;1;1
+49621;21842;2;162;75.0;120;80;1;1;0;0;1;0
+49622;23331;1;164;92.0;130;80;1;1;0;0;1;0
+49623;17293;2;172;95.0;130;90;3;3;0;0;1;1
+49624;18354;1;150;81.0;140;90;3;2;0;0;0;1
+49626;21004;1;148;54.0;11;70;2;1;0;0;1;1
+49627;20455;2;173;75.0;110;80;1;1;0;0;0;0
+49629;18230;2;174;96.0;140;90;2;1;0;0;0;1
+49630;19577;1;161;78.0;150;90;1;1;0;1;1;1
+49632;21804;2;169;79.0;120;80;1;1;0;0;1;1
+49633;23375;2;156;50.0;180;1000;1;1;0;0;1;1
+49634;21889;2;164;70.0;150;90;2;1;1;0;1;1
+49635;14562;2;168;64.0;110;80;1;1;0;0;1;0
+49636;21955;2;185;82.0;140;90;3;1;1;0;1;1
+49637;18327;1;166;72.0;140;90;2;1;0;0;1;1
+49640;19046;1;171;98.0;130;80;1;3;0;0;1;1
+49643;19667;1;158;65.0;120;80;1;3;0;0;1;0
+49645;17483;1;171;84.0;120;80;3;2;0;0;1;1
+49647;14551;1;159;63.0;130;80;1;1;0;0;1;0
+49649;19039;1;164;80.0;160;100;1;2;0;0;1;1
+49652;19024;1;170;75.0;150;90;3;3;0;0;1;0
+49653;17562;2;169;69.0;120;80;1;1;0;0;1;0
+49654;21728;1;165;65.0;120;80;1;1;0;0;1;0
+49655;19601;1;164;59.0;130;69;1;1;0;0;0;0
+49656;18932;2;170;72.0;120;90;1;1;0;0;1;0
+49658;23222;2;168;92.0;120;80;1;1;0;0;1;1
+49659;22900;2;174;82.0;130;80;1;3;1;0;1;0
+49661;17515;1;164;74.0;140;90;1;1;0;0;1;1
+49663;16589;1;156;70.0;140;90;1;1;0;0;1;1
+49664;17684;1;162;86.0;140;100;1;1;0;0;1;1
+49665;19737;1;164;71.0;130;93;1;1;0;0;1;1
+49666;19080;2;175;92.0;140;80;1;1;1;1;1;1
+49667;20511;1;163;72.0;120;90;1;1;0;0;1;0
+49668;19124;2;169;70.0;120;80;3;1;1;0;1;0
+49671;18470;1;168;70.0;120;80;1;1;0;0;1;0
+49672;22493;1;157;72.0;130;90;1;1;0;0;1;0
+49673;19586;1;145;66.0;120;80;2;1;0;0;0;0
+49674;23286;2;173;83.0;120;80;1;1;0;0;1;1
+49675;16124;2;182;62.0;120;80;1;1;0;0;0;0
+49676;17375;1;164;56.0;160;100;2;2;0;0;1;1
+49677;19844;1;158;51.0;90;70;1;1;0;0;1;0
+49678;23250;2;160;74.0;160;90;1;2;0;1;1;1
+49679;22423;1;168;76.0;120;80;1;1;0;0;1;1
+49680;23392;1;157;68.0;110;70;1;1;0;0;1;1
+49682;22779;1;162;69.0;140;90;2;1;0;0;1;1
+49684;19041;1;164;64.0;120;80;1;1;0;0;1;1
+49686;21242;1;160;68.0;100;70;1;1;0;0;1;0
+49687;23297;1;160;65.0;150;80;1;1;0;0;1;1
+49688;14536;2;170;72.0;110;70;1;1;1;0;1;0
+49690;18424;1;160;95.0;120;80;1;1;0;0;0;0
+49693;20493;1;165;105.0;150;100;3;2;0;0;1;1
+49694;19722;1;145;70.0;130;80;1;1;0;0;1;0
+49695;16015;1;166;70.0;110;70;1;1;0;0;1;0
+49696;17638;1;169;65.0;110;70;1;1;0;0;1;0
+49698;21678;1;159;79.0;160;100;1;1;0;0;1;1
+49700;18135;2;170;70.0;120;80;1;1;1;1;0;0
+49701;16861;1;158;74.0;120;80;1;1;0;0;1;0
+49702;16669;1;160;58.0;130;80;3;2;0;0;1;0
+49703;14727;2;172;65.0;120;80;1;1;1;0;1;0
+49704;21984;1;152;76.0;120;80;2;2;0;0;1;0
+49706;23386;1;165;90.0;120;80;1;3;0;0;1;1
+49707;18904;1;172;76.0;170;100;2;1;0;0;0;1
+49709;20216;2;169;77.0;120;80;1;3;0;0;1;0
+49710;19756;1;156;112.0;120;75;2;1;0;0;1;1
+49711;19798;1;170;67.0;110;70;1;1;0;0;1;0
+49712;16270;1;165;62.0;120;80;1;1;0;0;1;1
+49713;23401;2;165;62.0;120;80;1;1;0;0;1;0
+49714;23382;2;165;60.0;110;70;1;1;1;0;0;0
+49715;21970;2;167;78.0;130;70;1;1;0;0;1;0
+49716;20343;1;159;80.0;140;80;1;1;0;0;1;1
+49717;18989;1;148;51.0;110;70;1;1;0;0;0;0
+49719;22693;1;163;58.0;130;80;1;1;1;0;1;1
+49720;19516;2;165;62.0;120;80;1;1;0;0;1;0
+49722;22500;1;163;104.0;130;70;3;1;0;0;1;1
+49723;20191;1;154;61.0;100;60;1;1;0;0;1;0
+49724;19852;1;153;63.0;130;90;1;1;0;0;1;1
+49725;17023;2;170;79.0;120;80;1;1;0;0;1;1
+49726;23490;1;170;82.0;150;90;1;1;0;0;0;1
+49728;18189;1;171;84.0;100;90;1;1;0;0;1;0
+49730;19683;1;160;82.0;140;70;1;1;0;0;1;0
+49731;19724;1;158;63.0;100;70;3;1;0;1;1;1
+49732;19736;1;163;67.0;120;70;1;1;0;0;0;0
+49733;20512;1;154;78.0;110;90;2;1;0;0;1;0
+49734;21942;1;168;52.0;110;80;1;1;0;0;1;1
+49735;18833;1;165;85.0;100;70;2;1;0;0;0;0
+49736;18277;1;160;94.0;120;70;3;3;0;0;0;0
+49737;18045;1;165;84.0;120;60;1;1;0;0;1;1
+49738;19762;2;174;80.0;160;110;2;2;0;0;1;1
+49739;23548;2;168;74.0;120;70;1;1;0;0;1;1
+49740;22665;1;175;90.0;120;90;1;3;0;0;1;1
+49742;19749;1;154;85.0;120;80;1;1;0;0;1;0
+49743;16122;1;162;91.0;110;70;2;1;0;0;1;1
+49744;18850;1;165;65.0;140;90;1;1;0;0;1;1
+49745;21127;1;174;68.0;120;80;1;1;0;0;1;0
+49747;17546;1;161;66.0;120;70;2;1;0;0;1;1
+49748;21712;1;167;80.0;150;90;1;1;0;0;1;1
+49749;21862;1;157;57.0;140;90;1;1;0;0;0;1
+49752;23076;1;151;60.0;130;80;1;1;0;0;1;1
+49755;14658;1;170;78.0;120;80;1;1;0;0;1;0
+49756;18774;1;155;57.0;90;60;1;1;0;0;0;0
+49757;22838;2;172;85.0;160;90;2;1;0;0;1;0
+49758;14422;2;180;68.0;120;80;1;1;0;0;1;0
+49759;22761;1;148;43.0;130;80;1;1;0;0;1;0
+49760;18236;1;154;68.0;120;80;1;1;0;0;1;1
+49761;22007;1;158;72.0;120;80;1;1;0;0;1;0
+49762;20490;2;165;85.0;120;80;1;1;0;0;0;0
+49763;18373;2;178;76.0;150;80;2;1;0;0;1;1
+49764;17753;1;162;70.0;120;80;1;1;0;0;1;0
+49766;18212;2;179;92.0;120;80;1;1;0;0;0;0
+49769;15387;1;160;75.0;150;90;1;1;0;0;1;1
+49773;20376;1;154;50.0;170;100;1;1;0;0;1;1
+49774;19801;2;174;74.0;160;90;1;1;0;0;1;1
+49776;19101;1;159;97.0;130;90;1;1;0;0;1;0
+49779;15225;1;156;54.0;90;60;1;1;0;0;1;0
+49780;18378;1;165;68.0;120;80;1;1;0;0;1;0
+49781;17714;1;157;66.0;140;100;2;1;0;0;1;1
+49783;18916;1;150;67.0;150;90;2;1;0;0;1;1
+49786;16095;1;167;84.0;110;70;1;1;0;0;1;1
+49787;21709;2;165;75.0;120;80;1;1;0;0;1;0
+49788;22681;1;159;96.0;150;90;3;3;0;0;0;1
+49789;14615;1;158;69.0;140;80;2;1;0;0;1;1
+49790;21024;1;165;121.0;136;85;3;3;0;0;1;1
+49793;17535;1;140;62.0;120;80;1;1;0;0;1;1
+49798;22827;2;164;85.0;130;80;1;1;1;0;0;0
+49800;23103;2;168;94.0;160;90;1;1;0;0;0;1
+49801;22535;2;171;90.0;150;95;1;1;0;1;1;1
+49803;20421;1;169;71.0;100;70;2;1;1;0;1;0
+49804;19565;1;164;72.0;110;90;1;1;1;0;1;1
+49807;22102;2;173;65.0;110;70;1;1;1;1;1;0
+49808;21126;2;169;79.0;150;90;1;1;0;0;1;1
+49809;17439;1;160;66.0;110;70;1;1;0;0;1;0
+49810;21770;2;168;66.0;110;70;1;1;1;0;1;0
+49811;20430;2;161;77.0;120;80;1;1;0;0;1;1
+49813;19858;1;175;78.0;150;80;3;1;0;0;0;1
+49814;17394;2;174;95.0;120;80;1;1;0;0;1;1
+49815;21967;1;155;52.0;120;80;1;1;0;0;1;0
+49816;20473;1;170;72.0;160;100;1;1;0;0;1;1
+49817;21059;1;146;65.0;110;70;3;1;0;0;1;1
+49818;14389;1;169;64.0;110;90;1;1;0;0;1;0
+49819;19013;1;160;78.0;150;90;1;1;0;0;1;1
+49820;19596;1;167;82.0;150;90;1;1;0;0;0;1
+49822;20341;1;154;69.0;130;90;1;1;0;0;1;0
+49823;23203;2;170;66.0;120;80;1;1;1;0;1;1
+49826;23419;1;161;79.0;120;80;1;1;0;0;0;0
+49827;21807;1;153;79.0;120;90;2;2;0;0;0;1
+49828;22687;2;175;66.0;160;100;2;1;1;1;1;1
+49829;19698;2;171;70.0;120;80;1;1;0;0;1;0
+49831;22122;1;156;65.0;130;80;1;1;0;0;1;1
+49832;22743;2;172;77.0;120;90;1;1;0;0;1;0
+49834;23153;1;160;68.0;150;1000;2;2;0;0;1;1
+49835;20406;1;153;70.0;120;80;2;2;0;0;0;0
+49836;18277;1;164;66.0;120;80;1;1;0;0;1;0
+49837;22627;2;174;90.0;160;100;1;1;1;0;1;1
+49839;21390;1;159;64.0;140;90;1;1;0;0;1;1
+49842;21107;1;158;65.0;130;70;1;1;0;0;0;0
+49844;23570;1;160;79.0;120;80;1;1;0;0;1;1
+49845;22632;2;171;73.0;130;80;2;1;0;0;1;0
+49846;18044;1;171;65.0;120;80;1;1;0;0;1;0
+49850;20556;1;166;98.0;140;60;3;1;0;0;1;1
+49851;19744;1;162;73.0;100;70;2;1;0;0;1;0
+49853;22667;2;176;87.0;140;80;1;1;0;0;0;1
+49854;15275;1;162;65.0;110;70;1;1;0;0;1;0
+49855;21745;1;164;89.0;117;70;1;3;0;0;1;0
+49856;22613;1;156;68.0;120;90;1;1;0;0;1;1
+49859;14427;1;158;56.0;120;80;1;1;0;0;1;0
+49860;22536;1;153;84.0;140;70;3;3;0;0;1;1
+49861;18721;1;157;62.0;110;70;1;1;0;0;0;1
+49862;17262;2;170;89.0;140;90;1;1;0;0;1;0
+49863;14614;2;175;88.0;120;80;1;1;0;0;0;0
+49869;16125;2;168;99.0;120;80;1;1;0;0;1;0
+49870;19054;1;157;109.0;140;90;1;1;0;0;1;1
+49871;20448;1;175;73.0;110;80;1;1;0;0;1;0
+49872;21238;1;165;75.0;110;70;1;1;0;0;1;1
+49873;23095;1;167;107.0;160;80;2;2;0;0;1;1
+49874;17481;1;163;117.0;180;120;1;1;0;0;1;1
+49875;19639;1;166;79.0;125;70;1;3;0;0;1;0
+49876;21835;1;170;72.0;120;80;1;1;0;0;1;0
+49877;23352;1;168;85.0;120;80;1;1;0;0;0;0
+49878;22394;1;159;69.0;130;70;1;1;0;0;0;0
+49879;22025;1;156;88.0;125;80;2;1;0;0;1;0
+49880;14498;1;166;78.0;120;80;1;2;0;0;1;0
+49882;19810;1;147;62.0;120;80;1;2;0;0;1;0
+49883;17536;1;160;99.0;130;80;1;1;0;0;1;0
+49884;21895;1;168;66.0;120;80;1;1;0;0;1;1
+49886;20153;1;160;74.0;120;80;1;2;0;0;0;1
+49887;18109;1;160;68.0;120;80;1;1;0;0;1;0
+49888;19003;2;166;81.0;130;80;1;1;0;0;1;1
+49889;18732;2;175;50.0;120;80;1;1;0;0;1;0
+49890;15546;1;170;70.0;120;80;1;1;0;0;0;1
+49891;22566;1;170;71.0;120;80;1;1;0;0;1;0
+49892;23095;1;156;58.0;120;80;1;1;0;0;1;1
+49893;19663;1;167;69.0;110;79;2;1;0;0;1;1
+49895;16977;1;165;67.0;140;80;2;1;0;0;1;0
+49896;20523;2;175;72.0;130;90;3;1;1;0;1;1
+49898;16775;2;163;81.0;110;70;1;1;0;0;1;0
+49899;14573;1;157;63.0;120;80;1;1;0;0;1;1
+49901;18232;1;157;65.0;110;80;1;1;0;0;1;0
+49902;22484;2;170;73.0;120;80;3;1;0;0;1;1
+49903;23597;2;165;70.0;160;100;1;1;0;0;1;1
+49904;22424;1;164;77.0;120;80;1;2;0;0;0;1
+49906;21025;1;173;86.0;130;90;1;1;0;0;1;1
+49908;18840;1;168;66.0;140;70;1;1;0;0;1;1
+49909;20336;1;165;68.0;145;90;1;2;0;0;1;1
+49911;21150;1;158;86.0;120;80;1;1;0;0;1;1
+49912;17499;1;165;82.0;130;80;3;1;0;0;1;1
+49913;23610;1;165;80.0;120;80;1;1;0;0;1;1
+49914;21664;1;169;68.0;140;80;1;1;0;0;1;1
+49916;23479;1;165;103.0;140;90;1;1;0;0;1;1
+49917;18875;1;160;53.0;120;80;1;1;0;0;0;0
+49918;19206;1;166;70.0;130;80;1;2;0;0;1;1
+49919;21199;1;162;86.0;120;80;1;1;0;0;1;0
+49920;14627;2;169;79.0;120;80;1;1;1;0;1;0
+49922;15200;1;164;64.0;120;80;1;1;0;0;1;0
+49924;18453;1;164;64.0;140;90;1;1;0;0;1;1
+49926;20703;1;165;65.0;120;80;1;1;0;0;1;1
+49927;21859;1;167;72.0;160;100;2;2;0;0;1;1
+49928;18475;1;164;72.0;100;80;2;1;0;0;1;0
+49929;18868;1;159;58.0;130;90;1;1;0;0;0;1
+49930;17472;1;161;96.0;160;100;1;1;0;0;1;1
+49934;18272;2;174;80.0;120;80;1;1;0;0;1;0
+49935;22760;1;160;90.0;130;80;3;2;0;1;0;1
+49936;16595;2;160;64.0;110;80;1;1;0;0;1;0
+49937;18212;1;160;75.0;120;80;1;1;0;0;1;0
+49938;18447;1;158;110.0;160;90;1;1;0;0;1;1
+49939;21282;2;182;80.0;120;80;1;1;0;0;1;1
+49940;18412;1;165;77.0;170;1001;2;1;0;0;1;1
+49941;16085;1;160;62.0;120;80;1;1;0;0;1;0
+49943;21030;1;155;74.0;120;80;1;2;0;1;0;1
+49944;21133;2;178;86.0;130;85;3;3;0;0;1;1
+49945;21969;2;171;75.0;140;90;3;1;0;1;0;1
+49947;18178;1;170;86.0;120;80;2;1;0;0;1;0
+49948;20965;1;156;87.0;160;1000;3;3;0;0;1;1
+49950;19546;1;154;76.0;120;80;3;3;0;0;1;0
+49951;21638;1;165;60.0;120;90;1;1;0;0;1;1
+49952;17426;1;167;59.0;90;60;1;1;0;0;1;0
+49955;19628;1;166;95.0;140;90;1;1;0;0;1;1
+49956;21762;1;167;78.0;160;90;3;1;1;1;1;1
+49957;22087;1;180;71.0;120;80;1;1;0;0;1;1
+49959;20394;2;167;69.0;148;92;2;1;0;0;1;0
+49961;18955;1;160;101.0;150;90;1;1;1;0;1;0
+49964;19764;1;165;95.0;120;90;1;1;0;0;1;1
+49965;23483;1;155;71.0;150;90;1;1;0;0;1;1
+49969;19569;1;165;63.0;120;80;1;1;0;0;1;0
+49971;21204;1;170;72.0;120;80;1;1;0;0;1;0
+49975;21778;1;164;86.0;120;80;1;1;0;0;1;0
+49976;19741;1;165;78.0;120;80;1;1;0;0;1;0
+49977;19649;1;158;92.0;160;90;1;1;0;0;1;1
+49978;15371;1;164;80.0;110;70;1;1;0;0;1;1
+49979;20966;1;160;90.0;120;70;1;1;0;0;1;0
+49980;21780;2;180;77.0;120;80;2;1;1;0;1;1
+49981;18896;1;160;66.0;120;80;1;1;0;0;1;0
+49983;18887;1;165;85.0;130;100;1;1;0;0;1;0
+49985;14711;1;163;74.0;120;60;1;1;0;0;1;0
+49987;15266;1;169;60.0;120;80;1;1;0;0;1;0
+49988;22729;2;170;86.0;170;1000;3;3;1;0;1;1
+49989;22616;1;149;50.0;120;70;3;1;0;0;0;1
+49993;23529;1;156;80.0;130;80;1;1;0;0;1;1
+49995;15310;1;158;95.0;130;90;1;1;0;0;1;1
+49996;22790;2;172;75.0;120;80;1;1;0;0;1;0
+49999;16613;1;159;76.0;110;80;1;1;0;0;1;0
+50000;17499;1;160;75.0;140;80;1;1;0;0;1;1
+50001;17349;2;163;65.0;130;90;1;1;0;0;1;0
+50002;14558;1;170;70.0;120;80;1;1;0;0;1;0
+50004;17573;1;160;65.0;120;80;1;1;0;0;1;0
+50005;14658;2;171;73.0;120;80;1;1;0;0;0;0
+50006;19616;1;156;59.0;110;70;1;1;0;0;1;0
+50007;21182;1;159;78.0;160;90;1;1;0;0;1;1
+50008;21116;1;168;75.0;120;80;1;1;0;0;1;1
+50009;21811;2;157;60.0;120;80;1;1;0;0;1;1
+50010;20415;1;155;71.0;130;80;1;1;0;0;0;1
+50012;16170;2;174;76.0;120;70;1;1;0;0;1;0
+50013;21228;1;157;68.0;130;90;1;1;0;0;1;1
+50016;17536;1;167;67.0;120;80;1;1;0;0;1;0
+50017;18965;2;170;89.0;140;90;1;1;0;0;0;0
+50019;21066;1;156;58.0;120;80;1;1;1;0;1;0
+50020;21829;1;156;90.0;110;70;1;2;0;0;1;0
+50021;20448;2;170;70.0;120;80;1;1;0;0;1;1
+50022;23631;1;160;70.0;130;80;2;1;0;0;0;1
+50023;17393;1;152;63.0;170;100;3;1;0;0;1;1
+50024;17390;2;183;90.0;120;80;1;1;0;0;1;0
+50026;14518;1;167;57.0;90;60;1;1;0;0;1;0
+50028;21102;2;176;78.0;110;80;1;1;0;0;1;0
+50029;20536;1;164;61.0;140;100;1;1;0;0;0;0
+50030;14771;2;173;82.0;120;80;1;1;1;0;0;0
+50031;15933;2;181;66.0;120;80;1;1;0;0;1;0
+50034;17605;2;170;69.0;120;80;1;1;0;0;1;1
+50035;15303;1;172;68.0;160;1100;1;1;0;0;1;1
+50036;15295;1;163;97.0;120;80;1;1;0;0;1;0
+50038;18041;1;160;51.0;160;90;1;1;0;0;0;0
+50039;21200;1;169;65.0;120;80;1;1;0;0;1;1
+50040;20333;2;160;70.0;140;90;1;1;0;0;1;1
+50042;21307;2;162;90.0;120;80;1;1;0;0;1;1
+50043;23394;1;170;152.0;200;140;1;3;0;0;1;1
+50046;15836;1;166;64.0;140;80;3;1;0;0;1;1
+50047;19923;1;168;59.0;120;80;1;1;0;0;1;0
+50048;18971;1;182;105.0;150;90;1;1;0;0;0;1
+50049;18328;1;170;62.0;120;80;1;1;0;0;1;1
+50050;20459;1;158;71.0;160;80;2;1;0;0;1;1
+50051;23543;1;154;77.0;130;90;1;1;0;0;1;1
+50052;20594;1;171;59.0;140;80;1;1;0;0;0;1
+50053;15261;1;165;104.0;120;90;1;1;0;0;1;0
+50054;19136;1;169;69.0;120;80;1;1;0;0;0;1
+50055;23325;2;168;59.0;-150;80;1;1;0;0;1;1
+50057;23319;1;155;80.0;140;65;3;1;0;0;0;1
+50058;19823;1;160;56.0;120;80;1;1;0;0;1;0
+50059;20527;1;169;68.0;110;80;1;1;0;0;1;1
+50060;19685;1;160;61.0;120;80;1;1;0;0;1;0
+50061;17280;1;158;85.0;140;90;2;1;0;0;1;1
+50062;22749;2;169;66.0;130;90;1;1;0;0;1;0
+50064;17006;2;172;58.0;100;50;1;1;1;0;1;0
+50066;19049;2;166;89.0;160;100;2;1;0;1;1;1
+50067;19023;1;154;62.0;140;90;2;1;0;0;1;1
+50069;22458;2;167;78.0;140;80;1;1;0;0;1;1
+50070;15055;1;158;94.0;130;80;1;1;0;0;1;0
+50072;16793;1;161;71.0;120;70;1;1;0;0;1;0
+50073;18289;1;162;78.0;130;80;1;1;0;0;0;1
+50079;19708;1;164;79.0;150;80;1;2;0;0;1;1
+50080;21066;1;150;47.0;100;70;1;1;0;0;1;0
+50081;20992;2;171;76.0;130;90;1;1;0;0;1;0
+50085;21870;1;170;69.0;120;80;2;1;0;0;1;1
+50086;19106;1;167;65.0;120;60;1;1;0;0;0;0
+50087;18259;2;171;92.0;140;90;1;1;0;0;1;1
+50088;19197;1;158;59.0;120;80;1;1;0;0;1;1
+50089;16866;2;160;60.0;120;80;3;3;0;0;1;0
+50090;21928;1;157;66.0;160;100;3;1;0;0;1;1
+50091;19511;2;175;66.0;140;80;1;1;0;0;1;0
+50092;19830;1;174;72.0;120;80;1;1;0;0;1;0
+50096;18816;2;176;86.0;120;80;1;3;0;0;0;1
+50097;14787;2;160;62.0;110;70;1;1;0;0;0;0
+50099;20992;1;156;79.0;150;80;1;1;0;0;1;1
+50101;23226;1;155;60.0;120;80;1;1;0;0;1;0
+50103;19070;1;175;82.0;140;90;1;2;0;0;1;1
+50105;21713;1;167;78.0;120;80;1;1;0;0;1;1
+50109;15396;2;176;50.0;100;60;2;1;0;0;1;0
+50110;15191;2;180;82.0;90;60;1;2;1;0;1;0
+50111;20712;2;175;81.0;120;80;1;1;0;0;1;0
+50112;15812;1;155;113.0;110;59;2;2;0;0;1;0
+50115;21362;1;162;67.0;110;90;1;1;0;0;0;1
+50117;14869;1;160;77.0;120;80;1;1;0;0;1;0
+50118;20525;1;169;82.0;120;80;2;2;0;0;1;1
+50120;22564;1;162;70.0;140;90;1;1;0;0;1;1
+50121;19821;2;170;98.0;150;90;1;1;0;0;1;1
+50123;15326;1;142;68.0;130;90;2;1;0;0;1;0
+50125;22640;2;165;85.0;160;90;3;3;1;1;1;1
+50126;19001;2;168;92.0;150;100;1;1;0;0;1;1
+50127;21775;2;164;54.0;110;70;1;1;0;0;1;0
+50129;14468;1;162;76.0;130;80;1;1;0;0;0;1
+50130;22431;1;156;68.0;140;80;1;1;0;0;1;1
+50131;16189;1;155;68.0;110;80;1;1;0;0;0;1
+50132;16856;1;145;83.0;130;80;2;1;0;0;1;1
+50134;19802;1;162;62.0;120;80;1;1;0;0;1;1
+50135;20185;1;158;90.0;130;80;3;1;0;0;0;1
+50136;20982;1;153;59.0;140;90;1;1;0;0;1;1
+50138;19151;2;160;70.0;120;60;1;1;0;0;1;1
+50139;23489;2;165;75.0;120;80;1;1;1;0;1;0
+50140;21080;1;158;70.0;160;100;1;1;0;0;0;1
+50141;18343;1;160;57.0;150;80;1;1;0;0;0;1
+50143;20603;1;173;90.0;150;90;3;3;0;0;1;1
+50144;23509;2;165;72.0;160;100;3;3;0;0;1;1
+50146;17581;1;165;80.0;150;90;1;1;0;0;0;1
+50147;21845;1;151;78.0;120;80;3;3;0;0;1;1
+50149;21858;1;160;93.0;160;100;2;1;0;0;1;0
+50150;20450;1;161;71.0;140;90;3;1;0;0;1;1
+50152;19585;2;170;73.0;110;70;1;1;1;0;1;1
+50153;20253;1;166;62.0;120;80;1;1;0;0;1;1
+50154;18174;2;177;64.0;110;60;1;1;1;0;0;0
+50157;19712;2;163;72.0;120;80;1;1;0;0;1;0
+50158;18263;1;159;74.0;120;80;1;1;0;0;1;0
+50160;18864;1;179;87.0;120;80;2;1;1;1;1;1
+50162;15305;1;170;97.0;100;70;2;1;0;0;0;0
+50163;22126;1;160;49.0;120;80;1;1;0;0;1;0
+50164;19228;1;159;77.0;120;80;1;1;0;0;1;0
+50165;16607;1;158;80.0;110;80;1;1;0;0;1;0
+50166;20243;1;160;60.0;120;80;1;1;0;1;1;0
+50167;20259;2;180;79.0;120;80;1;1;0;0;0;0
+50168;21239;1;178;85.0;140;90;2;1;0;0;0;1
+50169;19873;1;156;68.0;110;70;1;1;0;0;1;0
+50170;14522;1;156;75.0;120;80;1;1;0;0;1;0
+50171;21853;2;159;82.0;120;80;1;1;1;0;1;0
+50172;16981;2;168;70.0;100;70;1;1;0;1;1;0
+50173;18573;2;172;84.0;120;80;1;3;0;0;1;1
+50174;15379;2;182;72.0;120;80;1;1;0;0;1;0
+50175;17537;2;170;85.0;150;90;1;1;0;0;0;1
+50176;17576;1;165;65.0;110;60;1;1;0;0;0;0
+50177;18268;1;160;74.0;100;70;1;1;0;0;1;0
+50179;19559;2;175;75.0;110;70;1;1;1;0;1;0
+50180;21691;1;163;95.0;160;100;3;3;0;0;1;1
+50181;20966;2;162;74.0;120;80;1;1;0;1;1;0
+50185;19020;2;170;61.0;110;80;1;1;1;1;1;0
+50186;21308;1;146;46.0;120;80;1;1;0;0;1;0
+50187;15381;2;168;65.0;120;80;1;1;0;0;0;0
+50189;18357;1;156;70.0;130;90;2;1;0;0;0;0
+50190;16074;1;159;56.0;110;70;1;1;0;0;1;1
+50191;14395;2;179;101.0;130;90;1;1;1;1;1;0
+50192;15400;1;152;72.0;150;1000;1;1;0;0;1;1
+50196;21984;1;165;65.0;120;80;1;3;0;0;0;0
+50198;17414;1;158;85.0;120;80;1;1;0;0;0;0
+50199;22088;1;168;72.0;140;70;1;1;0;0;1;1
+50200;21985;1;158;83.0;160;100;1;1;0;0;0;1
+50206;20281;1;160;59.0;140;90;1;1;0;0;1;0
+50207;23489;1;147;61.0;170;120;1;1;0;0;1;1
+50209;21773;2;158;78.0;140;70;1;1;0;0;0;0
+50210;20877;1;146;55.0;130;1;1;1;0;0;0;0
+50211;22052;1;168;75.0;120;80;1;1;0;0;1;1
+50215;20555;1;164;90.0;120;80;1;1;0;0;1;1
+50217;17501;2;178;130.0;120;80;1;1;0;0;0;1
+50218;14796;1;163;81.0;110;70;1;1;0;0;1;0
+50219;20193;2;174;74.0;120;80;3;1;1;1;1;1
+50220;21185;1;155;81.0;120;80;1;1;0;0;1;0
+50221;19479;1;160;58.0;100;80;1;1;0;0;1;0
+50222;19048;1;165;57.0;150;90;1;1;0;0;1;1
+50224;15324;1;164;63.0;110;90;1;1;0;0;0;0
+50225;23048;1;162;69.0;130;80;1;1;0;0;0;1
+50226;22649;1;155;77.0;180;100;2;1;0;0;1;1
+50229;23610;1;170;82.0;130;80;1;1;0;0;1;1
+50230;15078;2;171;94.0;140;90;1;1;1;0;1;1
+50232;16999;1;156;48.0;140;80;1;1;0;0;1;1
+50235;21996;1;163;75.0;130;80;1;1;0;0;1;1
+50236;21970;2;177;78.0;120;80;1;1;0;0;0;0
+50237;18308;1;166;92.0;120;110;1;1;0;0;1;0
+50238;20962;1;160;60.0;150;90;3;3;0;0;0;1
+50239;20515;1;157;85.0;130;90;2;1;0;0;1;1
+50240;20423;1;167;73.0;110;69;1;1;0;0;1;0
+50241;16988;1;172;89.0;130;90;1;1;0;0;1;1
+50242;18700;1;162;53.0;110;80;1;3;0;0;1;0
+50243;23434;1;172;71.0;140;90;1;1;0;0;0;1
+50244;18828;2;180;77.0;140;90;1;1;0;0;1;1
+50246;19699;2;184;78.0;130;80;1;1;0;0;1;1
+50247;20644;1;150;80.0;150;80;1;3;0;0;1;1
+50248;22003;2;160;102.0;120;80;1;1;0;0;0;0
+50249;19465;2;168;63.0;120;70;1;1;0;0;1;1
+50252;18935;1;158;62.0;120;80;1;1;0;0;1;0
+50253;19789;2;164;68.0;170;100;2;1;0;0;1;1
+50254;22486;2;164;73.0;130;80;1;1;0;0;1;1
+50255;19547;1;170;73.0;140;90;1;1;0;0;1;1
+50256;14615;2;172;64.0;120;80;1;2;0;0;0;0
+50257;15592;1;176;68.0;120;80;1;1;0;0;1;0
+50258;14472;1;160;57.0;109;64;1;1;0;0;1;0
+50259;23130;1;167;74.0;140;90;3;1;0;0;1;1
+50260;17004;1;165;120.0;100;75;2;1;0;0;1;0
+50262;21054;2;170;119.0;130;100;1;1;0;0;1;1
+50263;19751;1;170;76.0;120;80;1;1;0;0;1;0
+50267;21179;1;159;69.0;130;90;1;1;0;0;1;1
+50268;18000;2;170;68.0;120;90;2;1;0;0;0;0
+50270;14473;1;167;65.0;140;80;1;1;0;0;1;1
+50272;20311;1;155;84.0;120;80;1;1;0;0;1;0
+50273;17405;1;158;61.0;100;70;1;1;0;0;1;0
+50274;21017;1;155;95.0;120;80;2;2;0;0;1;0
+50276;20983;1;170;83.0;130;100;1;1;0;0;1;1
+50277;21230;1;160;80.0;130;80;1;1;0;0;1;1
+50278;15183;2;181;100.0;150;90;1;1;1;0;1;1
+50279;15358;1;165;79.0;120;80;2;1;0;0;1;1
+50280;19762;2;185;127.0;130;80;3;1;1;0;0;1
+50281;21040;1;160;90.0;120;75;1;1;0;0;0;0
+50282;15902;2;185;73.0;120;70;2;1;0;0;1;0
+50283;19112;1;160;84.0;120;80;1;3;0;0;0;1
+50284;17667;2;174;64.0;100;70;1;1;0;0;1;0
+50285;21257;2;165;60.0;120;80;1;1;0;0;1;1
+50286;19547;1;159;58.0;110;70;1;1;0;0;1;0
+50287;21902;2;169;67.0;130;90;1;1;0;0;1;1
+50288;19165;2;174;69.0;120;80;1;1;0;0;1;0
+50289;18279;2;170;80.0;130;90;1;1;0;0;1;0
+50290;19035;2;173;82.0;120;80;1;1;0;0;1;0
+50291;16173;2;167;63.0;140;90;1;1;0;0;0;1
+50292;20316;1;165;84.0;130;80;1;1;0;0;1;0
+50293;20202;1;156;68.0;140;100;3;3;0;0;1;1
+50297;20363;1;170;64.0;120;80;1;1;0;0;0;0
+50298;23194;1;156;72.0;120;70;2;1;0;0;1;1
+50299;19641;1;151;74.0;150;90;1;1;0;0;1;1
+50301;16034;1;163;69.0;140;80;1;1;0;0;1;1
+50302;17268;2;168;66.0;140;90;1;1;0;0;1;1
+50303;22509;1;166;94.0;120;80;1;1;0;0;1;0
+50304;15984;2;165;62.0;150;80;1;1;0;0;1;0
+50305;14680;2;165;70.0;100;70;1;1;0;0;1;0
+50306;16820;1;180;79.0;140;90;1;1;0;0;0;1
+50307;17491;1;167;75.0;110;70;1;1;0;0;1;0
+50308;22688;1;163;70.0;100;60;2;1;0;0;1;1
+50309;18894;1;169;69.0;120;70;1;1;0;0;1;0
+50310;23469;2;172;93.0;160;100;2;1;0;0;1;0
+50311;22548;1;166;82.0;120;70;1;1;0;0;1;0
+50312;18982;2;157;66.0;120;80;1;1;0;0;1;0
+50316;22816;1;155;55.0;120;80;1;1;0;0;1;0
+50317;21100;2;166;66.0;120;70;1;1;1;0;1;1
+50318;21103;2;175;90.0;150;1000;3;3;0;0;1;0
+50319;20293;1;163;65.0;110;70;1;1;0;0;1;0
+50320;14700;1;153;59.0;120;80;1;1;0;0;1;0
+50321;17339;2;189;101.0;140;100;1;1;0;0;0;1
+50322;21347;1;158;70.0;130;80;2;1;0;0;1;1
+50323;15355;2;175;68.0;120;80;1;2;0;0;1;0
+50324;14512;1;158;64.0;120;80;1;1;0;0;1;0
+50326;18345;1;156;64.0;120;80;1;1;0;0;1;1
+50327;19061;1;175;75.0;110;80;2;1;0;0;1;0
+50328;16139;1;167;62.0;110;80;1;1;0;0;1;0
+50330;18973;2;167;68.0;110;60;1;1;0;0;1;0
+50332;21719;1;152;67.0;160;100;1;3;0;0;1;1
+50333;15279;1;160;78.0;120;70;1;1;0;0;1;0
+50334;21713;2;171;78.0;180;90;1;1;0;0;1;1
+50335;21843;1;150;103.0;130;80;3;1;0;0;1;1
+50337;19082;1;151;70.0;120;80;1;1;0;0;1;0
+50339;22368;1;162;80.0;130;80;3;1;0;0;1;1
+50340;18380;2;174;82.0;120;80;1;1;1;0;1;1
+50341;15579;1;166;78.0;120;80;3;3;0;0;1;1
+50342;15956;2;163;70.0;130;80;1;1;0;0;1;0
+50345;21698;1;164;97.0;140;80;3;1;0;0;1;1
+50346;16529;2;168;73.0;110;80;3;1;0;0;1;1
+50347;21242;2;176;83.0;125;80;1;1;0;0;1;1
+50348;19629;1;157;56.0;140;100;1;1;0;0;1;1
+50349;20447;1;162;79.0;120;80;1;1;0;0;1;0
+50352;22030;1;157;56.0;120;80;3;3;0;0;1;0
+50353;16297;1;158;64.0;120;80;1;1;0;0;1;0
+50354;15434;2;167;69.0;120;70;1;1;0;0;1;0
+50355;23404;1;170;67.0;120;70;1;1;0;0;0;0
+50356;21974;2;169;81.0;110;80;2;1;0;0;1;0
+50357;18891;2;173;88.0;140;80;2;1;0;0;1;1
+50358;21180;2;170;80.0;135;90;1;1;0;0;1;0
+50360;14642;1;155;62.0;110;80;1;1;0;0;1;0
+50361;20612;2;166;70.0;120;80;1;1;0;0;1;0
+50362;22675;1;168;66.0;120;80;1;1;0;0;0;1
+50363;21750;1;160;100.0;130;80;2;2;0;0;1;1
+50366;20214;1;160;59.0;110;70;1;1;0;0;1;0
+50368;18311;1;161;73.0;130;90;1;1;0;0;0;1
+50369;22807;2;181;96.0;140;90;1;1;0;0;1;1
+50370;17375;2;169;102.0;160;100;3;1;0;0;1;1
+50371;16131;2;180;78.0;160;1000;1;1;0;0;0;1
+50372;15234;2;166;70.0;115;75;1;1;0;0;1;0
+50373;18280;1;165;75.0;120;80;1;1;0;0;0;0
+50374;15356;2;175;72.0;120;80;1;1;0;0;1;1
+50376;22642;1;158;60.0;140;90;1;1;0;0;1;1
+50381;18205;2;172;81.0;150;90;1;1;0;0;1;0
+50383;22600;1;153;79.0;100;70;2;2;0;0;0;0
+50384;19072;1;180;70.0;120;80;3;3;0;0;1;0
+50385;18146;1;152;65.0;120;60;3;1;0;0;1;0
+50386;19638;1;156;89.0;110;80;2;1;0;0;1;1
+50387;19038;1;165;88.0;140;100;1;1;0;0;1;1
+50388;19077;1;166;89.0;150;100;2;2;0;0;1;0
+50389;22033;1;158;69.0;120;80;1;1;0;0;1;0
+50390;15314;1;168;65.0;120;70;2;1;0;0;1;1
+50391;22542;2;160;82.0;140;80;1;1;0;0;1;0
+50392;17504;1;170;69.0;120;80;1;1;0;0;1;0
+50393;18768;1;158;65.0;120;80;1;1;0;0;1;0
+50395;15304;2;154;54.0;120;80;2;1;1;0;1;0
+50396;14530;1;159;70.0;100;70;1;1;0;0;1;0
+50397;22016;1;170;65.0;120;70;3;3;0;0;1;0
+50398;18986;1;156;60.0;140;80;1;1;0;0;1;1
+50399;21859;1;165;69.0;120;80;1;1;0;0;1;1
+50402;21652;2;183;81.0;120;80;1;1;0;0;1;1
+50403;22622;1;164;82.0;120;90;1;1;0;0;1;0
+50404;19528;2;172;90.0;120;80;1;1;0;0;1;1
+50405;22697;1;154;64.0;110;70;1;1;0;0;1;0
+50407;22498;1;164;72.0;120;80;1;1;0;0;0;1
+50408;20592;1;155;75.0;140;90;1;1;0;0;1;0
+50409;19038;1;160;70.0;140;90;1;1;0;0;0;1
+50411;17505;1;154;57.0;120;80;1;1;0;0;1;0
+50413;20908;1;167;65.0;120;80;1;1;0;0;1;0
+50414;21250;2;167;117.0;110;80;3;1;0;0;1;1
+50418;15813;1;160;45.0;100;60;1;1;0;0;1;0
+50419;15158;1;176;97.0;140;90;3;1;0;0;0;1
+50420;18297;1;157;53.0;110;70;1;1;0;0;1;0
+50421;23349;2;169;70.0;170;90;1;1;0;0;1;1
+50422;15416;2;174;76.0;120;80;1;1;1;0;1;0
+50423;15099;1;158;59.0;140;90;1;1;0;0;0;1
+50424;20421;1;152;55.0;130;80;1;1;0;0;1;1
+50425;22647;2;170;85.0;140;70;1;1;0;0;1;1
+50426;23129;1;159;61.0;120;80;1;1;0;0;1;0
+50427;23248;1;158;70.0;150;80;1;2;0;0;1;1
+50429;15280;1;168;65.0;120;80;1;1;0;0;1;0
+50430;15214;1;161;66.0;110;70;1;1;0;0;1;0
+50431;21946;1;166;71.0;120;80;1;1;0;0;1;1
+50434;17524;1;158;68.0;120;80;1;1;0;0;1;0
+50435;19902;1;168;80.0;90;60;2;1;0;0;1;0
+50436;21020;1;155;70.0;14;90;1;1;0;0;1;0
+50438;15174;2;179;63.0;120;80;1;1;0;1;1;0
+50439;17043;1;170;93.0;110;70;1;1;0;1;0;0
+50440;19551;1;160;124.0;140;80;2;1;0;0;1;1
+50441;16750;2;177;65.0;120;80;1;1;0;0;1;0
+50442;21848;1;146;62.0;140;90;3;3;0;0;0;1
+50443;19802;1;146;32.0;130;80;1;2;0;0;0;0
+50444;22632;2;159;74.0;140;90;2;1;1;0;1;0
+50447;21774;1;156;77.0;140;90;1;1;0;0;1;1
+50448;15355;2;174;69.0;120;70;1;1;1;0;1;0
+50449;19842;1;160;85.0;160;90;2;2;0;0;1;1
+50454;18280;1;153;90.0;110;80;1;1;0;0;1;0
+50455;15331;2;177;60.0;110;70;1;1;0;0;1;0
+50456;21897;1;152;87.0;220;110;3;3;0;0;0;1
+50459;21693;1;158;69.0;140;80;1;1;0;1;1;0
+50461;21151;1;147;94.0;120;80;1;1;0;0;0;1
+50462;18178;1;156;68.0;120;80;1;1;0;0;1;0
+50463;20259;1;162;67.0;110;70;1;1;0;0;1;0
+50464;22509;2;174;86.0;115;80;1;1;0;0;0;0
+50465;16622;2;160;81.0;130;80;1;1;0;0;1;1
+50466;21869;1;163;67.0;140;90;1;1;0;0;1;1
+50469;19032;2;168;63.0;110;70;1;1;0;0;1;0
+50470;21995;1;156;58.0;120;90;1;1;0;0;1;1
+50471;23107;1;156;83.0;140;90;2;2;0;0;0;1
+50472;20619;1;168;78.0;130;80;3;3;0;0;1;0
+50474;19720;2;165;78.0;120;80;1;1;0;0;0;1
+50475;14518;1;165;85.0;110;70;1;1;0;0;1;0
+50476;18046;1;152;74.0;130;80;1;1;0;0;0;1
+50477;21194;1;164;63.0;130;90;1;3;0;0;1;1
+50478;15220;1;163;67.0;90;70;1;1;0;0;0;0
+50479;22440;2;159;89.0;120;80;1;1;0;0;1;0
+50481;21593;2;164;65.0;130;90;3;1;0;0;1;1
+50482;18275;2;165;59.0;110;70;3;3;0;0;0;1
+50483;15821;1;162;80.0;120;80;1;1;0;0;1;0
+50484;20307;2;160;80.0;120;80;1;1;0;0;1;1
+50485;16892;1;154;86.0;140;90;3;2;0;0;1;1
+50486;21223;1;153;65.0;160;90;1;1;0;0;1;1
+50488;21632;1;168;67.0;120;70;1;1;0;0;1;1
+50490;18411;1;169;91.0;110;70;2;1;0;0;1;1
+50491;22423;1;152;87.0;130;80;3;2;0;1;1;1
+50492;17501;2;172;74.0;140;90;1;1;0;0;1;1
+50494;19652;2;180;75.0;170;120;2;3;0;0;1;1
+50497;15999;1;162;85.0;140;90;1;1;0;0;0;1
+50498;23456;2;170;80.0;140;90;3;3;0;0;0;1
+50499;18886;1;163;68.0;120;80;1;1;0;0;1;0
+50500;20266;2;177;81.0;150;90;2;1;0;0;1;1
+50501;19774;1;160;102.0;130;80;3;3;0;0;1;1
+50503;20947;2;170;76.0;125;80;1;1;0;0;1;0
+50504;19746;1;168;65.0;155;70;1;1;0;0;1;1
+50505;18112;2;172;70.0;140;90;1;1;1;0;1;1
+50506;15242;2;173;74.0;115;70;1;1;0;0;1;0
+50507;15799;1;160;82.0;130;80;1;1;0;0;1;1
+50508;19959;1;150;58.0;170;87;2;1;0;0;1;1
+50512;21962;2;173;75.0;150;80;1;2;0;0;1;1
+50514;19182;2;170;72.0;120;80;1;3;0;0;1;0
+50515;15410;1;151;67.0;100;70;1;1;0;0;1;0
+50516;17649;1;156;58.0;110;70;1;1;0;0;1;1
+50517;21979;1;157;45.0;110;70;1;1;0;0;0;0
+50518;16952;1;150;56.0;120;80;1;1;0;0;1;1
+50519;22683;1;169;79.0;126;61;1;1;0;1;1;0
+50520;22204;2;167;75.0;120;80;1;1;0;0;0;0
+50521;21116;2;165;105.0;220;1100;3;1;1;0;1;1
+50522;16119;2;178;81.0;120;80;1;1;0;0;0;0
+50523;21937;1;153;50.0;100;70;1;1;0;0;1;0
+50524;20524;2;173;76.0;120;80;3;3;0;0;1;1
+50525;18775;1;168;70.0;150;90;1;1;0;0;1;1
+50526;14442;1;156;83.0;140;90;2;1;0;0;1;1
+50527;19786;1;163;60.0;100;70;1;1;0;0;0;0
+50529;22757;2;155;76.0;120;80;1;1;0;0;1;1
+50530;23426;1;155;72.0;120;80;1;1;0;0;1;0
+50531;19632;1;165;62.0;120;80;1;1;0;0;1;0
+50532;18795;2;172;85.0;120;80;1;1;0;1;0;0
+50534;20160;1;156;62.0;120;80;1;1;0;0;1;0
+50535;18956;2;168;97.0;150;80;2;1;0;0;1;0
+50537;22003;1;156;62.0;150;100;1;2;0;0;1;1
+50538;18259;1;145;63.0;120;89;1;1;0;0;0;0
+50539;18220;1;165;74.0;160;100;2;2;0;0;1;1
+50541;18795;2;173;64.0;130;80;1;1;1;1;1;0
+50543;15466;1;160;65.0;120;80;1;1;0;0;1;0
+50544;15160;2;175;85.0;120;80;1;1;0;0;1;0
+50547;18193;1;164;108.0;150;100;2;2;0;1;0;1
+50548;18028;2;174;69.0;140;91;2;1;1;0;1;1
+50553;21968;1;165;48.0;95;65;1;1;0;0;1;0
+50554;18497;1;163;66.0;120;80;1;1;0;0;1;1
+50555;19711;2;173;134.0;140;100;3;3;0;0;1;1
+50558;18350;2;164;68.0;130;100;3;3;0;0;1;1
+50559;16798;1;165;93.0;110;70;1;1;0;0;0;0
+50561;18482;1;165;69.0;140;60;1;1;0;0;1;1
+50562;15867;2;169;84.0;120;80;3;1;0;0;1;1
+50564;18320;1;162;89.0;140;1100;1;1;0;0;1;1
+50565;19840;1;174;68.0;120;80;1;1;0;0;1;0
+50567;18370;1;175;73.0;120;80;1;1;0;0;1;0
+50569;21277;1;159;102.0;110;70;2;1;0;0;1;1
+50571;18732;1;165;85.0;120;80;1;2;0;0;1;0
+50573;20509;1;164;72.0;120;90;1;1;0;0;1;0
+50576;19722;2;158;64.0;160;95;2;1;0;0;1;1
+50577;20648;2;170;108.0;140;90;2;1;1;0;0;1
+50578;18082;2;177;70.0;120;70;1;1;0;0;1;0
+50579;20520;1;156;83.0;160;90;1;1;0;0;1;1
+50580;22765;1;161;100.0;120;80;1;1;0;0;1;1
+50581;18471;2;170;69.0;120;80;1;1;0;0;1;0
+50582;17451;1;158;70.0;120;80;1;1;0;0;0;0
+50583;20481;1;164;79.0;80;60;1;1;0;0;0;0
+50584;21631;1;160;68.0;120;80;1;1;0;0;1;0
+50585;17553;1;170;65.0;110;60;1;1;0;0;1;1
+50586;18203;1;166;70.0;120;80;1;1;0;0;1;1
+50587;21201;1;167;71.0;120;80;1;1;0;0;1;0
+50588;21132;1;152;55.0;110;70;1;1;0;0;1;0
+50589;20602;2;173;111.0;150;90;1;1;0;0;1;1
+50590;16826;1;164;93.0;150;100;1;1;0;0;0;1
+50592;22759;2;180;82.0;120;80;1;1;1;1;1;0
+50593;18791;1;155;60.0;130;80;1;1;0;0;1;1
+50595;17970;1;160;60.0;120;80;1;1;0;0;1;0
+50596;22594;2;165;68.0;130;90;1;1;1;0;1;0
+50597;16021;1;156;96.0;110;70;2;1;0;0;1;0
+50598;17788;2;165;68.0;120;80;1;1;0;0;1;0
+50599;23260;1;164;65.0;140;90;1;1;0;0;1;1
+50600;22541;1;158;81.0;130;90;3;3;0;0;1;1
+50602;20255;2;173;59.0;105;70;1;1;1;0;1;0
+50603;14450;1;158;43.0;110;60;2;2;0;0;0;0
+50604;20615;1;158;69.0;130;80;1;1;0;0;0;0
+50605;16654;1;148;48.0;110;70;1;1;0;0;1;1
+50609;16846;1;157;53.0;120;90;1;1;0;0;1;1
+50610;20426;1;161;84.0;120;80;1;1;0;0;1;1
+50611;18439;1;165;78.0;120;80;1;1;0;0;0;0
+50612;22604;2;130;51.0;110;70;1;1;1;0;1;0
+50613;22046;2;168;70.0;120;70;1;1;1;0;1;1
+50614;22933;2;174;86.0;120;80;1;1;1;0;0;1
+50615;21887;1;155;55.0;100;70;1;1;0;0;0;0
+50616;17495;1;164;74.0;105;70;1;1;0;0;0;1
+50617;21358;1;162;63.0;110;70;1;1;0;0;1;0
+50619;18403;1;168;56.0;120;80;1;1;0;0;1;0
+50620;20262;1;155;70.0;200;120;1;1;0;1;1;0
+50621;16841;1;170;97.0;130;80;1;1;0;0;0;0
+50622;15178;2;168;97.0;120;70;1;1;0;0;1;0
+50624;18389;1;172;85.0;100;70;1;1;0;0;1;0
+50625;21926;1;137;75.0;130;80;3;3;0;0;1;1
+50626;23154;2;173;70.0;120;80;1;1;0;0;0;1
+50628;15992;1;152;88.0;130;70;1;1;0;0;0;1
+50629;23078;1;144;50.0;130;80;1;1;0;0;1;1
+50632;17586;1;170;65.0;110;80;1;1;0;0;1;0
+50633;21962;2;170;64.0;150;110;1;1;0;0;1;1
+50634;23319;2;168;73.0;120;100;3;3;0;0;1;1
+50635;16758;1;170;65.0;120;90;1;1;0;0;0;1
+50636;14648;1;162;65.0;110;70;1;1;0;0;0;1
+50637;21120;2;166;68.0;120;80;1;1;0;0;1;0
+50639;21897;2;160;60.0;140;90;2;3;0;0;0;1
+50640;16127;2;178;78.0;160;90;1;1;1;0;1;1
+50641;22236;2;170;80.0;120;80;1;1;0;0;0;1
+50642;21655;1;159;84.0;140;80;1;1;0;0;1;1
+50644;21047;1;165;80.0;120;70;1;1;0;0;1;0
+50645;19742;1;154;54.0;150;100;1;1;0;0;1;1
+50646;19789;2;168;61.0;120;80;1;1;0;0;1;1
+50647;19706;2;180;80.0;140;90;1;1;0;0;1;1
+50648;18994;1;174;62.0;110;70;2;1;0;0;0;0
+50651;22814;1;169;62.0;120;80;1;1;0;0;1;0
+50652;22699;1;167;110.0;120;90;3;1;0;0;1;1
+50653;18453;1;163;69.0;120;80;1;2;1;1;1;0
+50654;20964;2;179;96.0;120;80;3;1;0;0;1;1
+50659;23372;2;172;69.0;120;80;1;1;0;0;0;1
+50660;19021;1;160;78.0;120;80;1;1;0;0;1;0
+50662;21292;2;170;78.0;130;80;2;2;0;0;1;1
+50663;18309;2;168;70.0;140;90;1;1;0;0;1;1
+50664;22458;1;157;66.0;140;90;1;1;0;0;1;1
+50665;20708;1;173;69.0;120;80;1;1;0;0;1;0
+50666;15311;2;178;84.0;120;80;1;1;0;0;1;0
+50667;21787;2;174;82.0;120;80;2;2;0;0;1;1
+50668;14509;2;170;70.0;140;100;1;1;0;0;1;1
+50669;19680;1;157;110.0;120;80;2;1;0;0;0;0
+50670;18977;1;168;73.0;125;80;1;1;0;0;1;1
+50671;23344;1;165;63.0;120;80;1;1;0;0;1;0
+50672;18128;2;185;72.0;120;80;1;1;0;0;1;0
+50675;21216;2;168;65.0;130;70;3;3;0;0;1;1
+50676;23540;2;180;78.0;140;80;1;1;0;0;0;0
+50677;19569;1;168;65.0;120;80;1;1;0;0;1;0
+50679;20281;1;163;130.0;140;80;1;1;0;0;1;0
+50684;20362;1;166;70.0;120;80;2;1;0;0;1;0
+50685;22668;1;163;87.0;120;80;1;1;0;0;1;1
+50686;16521;2;169;70.0;130;80;3;1;1;1;1;1
+50687;21955;1;150;88.0;120;80;3;1;0;0;1;0
+50688;19758;1;155;62.0;120;70;1;1;0;0;1;0
+50689;16671;1;162;76.0;90;70;1;1;0;0;0;1
+50690;23223;1;156;66.0;160;100;1;1;0;0;1;0
+50691;19929;1;162;70.0;120;80;1;1;0;0;1;0
+50692;19819;1;165;63.0;120;80;1;1;0;0;1;0
+50693;14605;1;167;75.0;100;60;1;1;0;0;1;0
+50695;21849;1;164;84.0;120;80;1;1;0;0;1;1
+50698;18000;1;162;52.0;100;70;2;1;0;0;0;0
+50699;20562;1;174;84.0;110;70;1;1;0;0;1;0
+50700;19450;1;165;65.0;120;80;1;1;0;0;1;0
+50701;16618;1;146;74.0;140;100;3;1;0;1;1;0
+50702;18970;2;167;68.0;120;80;1;1;0;0;1;0
+50703;16796;1;151;54.0;120;70;1;1;0;0;0;0
+50704;16047;1;154;56.0;110;80;1;1;0;0;0;0
+50706;23062;1;164;71.0;160;1000;1;1;0;0;1;1
+50707;14564;2;168;58.0;90;60;1;1;0;0;1;0
+50711;18265;1;162;72.0;120;80;1;2;0;0;1;0
+50712;22077;2;172;111.0;150;90;1;1;0;0;1;1
+50713;22897;1;151;57.0;120;70;1;1;0;0;1;1
+50714;19890;1;162;79.0;110;80;1;1;0;0;0;0
+50716;16016;2;166;87.0;120;80;1;1;0;0;1;0
+50717;18016;2;169;78.0;110;80;2;1;0;0;1;0
+50719;17708;1;163;85.0;110;70;1;1;0;0;1;1
+50721;16762;1;168;75.0;120;80;1;1;0;0;1;0
+50722;14649;2;169;79.0;100;70;1;1;0;0;1;0
+50723;19110;1;168;70.0;140;90;1;1;0;0;1;1
+50724;21123;2;156;86.0;120;80;1;1;1;1;1;1
+50725;21827;1;160;65.0;150;80;1;1;0;0;1;1
+50726;16151;2;165;87.0;110;70;1;1;1;0;1;0
+50727;14471;1;170;69.0;110;80;1;1;0;0;0;0
+50728;18157;2;181;67.0;100;80;1;1;0;0;0;0
+50729;21009;1;159;70.0;110;70;3;3;0;0;1;1
+50730;18372;1;160;88.0;110;70;2;1;0;0;1;0
+50732;16781;1;158;72.0;120;80;1;1;0;0;0;1
+50735;20446;1;162;74.0;140;80;3;1;0;0;1;1
+50736;20687;1;157;78.0;140;90;1;1;0;0;1;1
+50738;19810;1;169;80.0;120;80;1;1;0;0;1;1
+50740;19656;2;172;94.0;150;90;2;1;0;0;0;1
+50741;20370;1;164;88.0;130;80;1;1;0;0;1;1
+50742;23578;1;160;72.0;120;80;1;1;0;0;0;1
+50743;15973;1;164;81.0;110;70;2;3;0;0;0;1
+50744;21239;1;167;76.0;120;80;1;1;0;0;1;0
+50745;20406;1;163;63.0;120;80;3;3;0;0;0;0
+50746;20599;1;155;83.0;120;80;3;3;0;0;1;1
+50747;22419;1;146;97.0;140;100;3;1;0;0;1;1
+50748;19157;1;156;61.0;100;70;1;1;0;0;0;0
+50749;20711;1;168;76.0;120;90;1;1;0;0;1;0
+50752;14620;1;156;68.0;140;80;3;1;0;0;0;1
+50753;14351;1;162;76.0;110;70;1;1;0;0;1;0
+50755;18427;1;160;78.0;120;80;1;1;0;1;1;0
+50757;20570;1;168;72.0;120;80;1;1;0;0;0;1
+50758;20589;2;178;77.0;140;90;1;1;1;1;1;1
+50759;18961;1;152;65.0;140;90;3;1;0;0;0;1
+50760;20269;2;170;90.0;140;80;1;2;0;0;1;1
+50761;23448;1;158;77.0;120;80;1;1;0;0;1;0
+50762;21223;1;158;74.0;120;80;3;3;0;0;1;0
+50763;20382;1;156;64.0;105;70;1;1;0;0;1;1
+50764;17715;1;163;55.0;140;90;1;1;0;0;1;0
+50766;22790;2;172;98.0;130;80;1;1;0;0;1;0
+50768;23310;1;164;60.0;120;60;1;1;0;0;0;1
+50770;20329;2;161;75.0;120;80;1;1;1;0;1;0
+50772;20886;1;161;83.0;120;80;1;1;0;0;1;1
+50773;20236;1;162;65.0;150;90;1;1;0;0;1;1
+50774;22692;1;156;95.0;140;90;2;1;0;0;0;1
+50776;20262;1;167;66.0;120;80;1;1;0;0;0;0
+50777;17104;2;162;63.0;110;80;1;1;1;0;0;0
+50778;22011;1;172;65.0;120;80;1;1;0;0;1;0
+50779;14771;2;168;71.0;110;60;1;1;0;0;1;0
+50782;23340;2;169;73.0;165;90;1;1;0;0;0;1
+50783;20516;1;164;58.0;120;80;1;1;0;0;1;1
+50785;23396;2;170;65.0;120;80;3;3;0;0;1;1
+50786;23388;2;168;94.0;130;80;3;3;0;0;1;0
+50792;20614;1;169;66.0;120;90;1;1;0;0;1;1
+50793;18224;1;162;65.0;110;70;1;1;0;0;1;0
+50795;19723;2;185;90.0;120;80;1;1;0;0;1;1
+50796;22565;1;168;65.0;180;90;3;1;0;0;1;1
+50797;19069;1;163;59.0;90;60;1;1;0;0;1;0
+50798;22829;1;164;89.0;120;80;3;3;0;0;1;1
+50799;17805;2;185;70.0;11;120;1;1;0;0;0;0
+50800;22538;1;159;59.0;120;80;1;1;0;0;0;0
+50801;22458;1;157;83.0;160;100;1;3;0;0;0;0
+50802;23316;1;156;75.0;120;80;1;1;0;0;1;1
+50803;18972;1;160;70.0;120;80;2;2;0;0;1;0
+50805;21081;1;150;71.0;150;90;3;2;0;0;1;1
+50806;18894;1;168;69.0;120;70;1;1;0;0;1;1
+50807;22618;1;168;62.0;140;90;3;1;0;0;1;1
+50808;14533;2;164;75.0;120;80;1;3;0;0;1;0
+50809;22459;1;174;109.0;155;85;1;2;0;0;1;1
+50811;21185;2;163;71.0;110;70;1;1;0;0;1;0
+50812;15377;1;158;72.0;100;70;1;2;0;0;1;1
+50813;21337;1;180;72.0;140;90;1;1;0;0;0;1
+50814;22055;2;165;79.0;120;80;1;1;0;0;0;0
+50816;21912;1;147;65.0;150;91;1;1;0;0;1;1
+50817;15580;2;169;65.0;110;70;2;1;1;0;0;1
+50818;22092;1;164;76.0;140;80;1;1;0;0;1;0
+50819;22628;1;173;79.0;130;90;2;1;0;0;1;1
+50820;20456;2;175;87.0;130;90;1;1;0;0;1;1
+50823;21714;1;158;66.0;150;90;1;1;0;0;1;1
+50824;19619;2;180;86.0;140;90;1;1;1;1;1;1
+50826;20447;2;166;94.0;180;110;2;1;0;0;1;1
+50827;16168;1;163;86.0;120;80;1;2;0;0;0;1
+50828;22737;2;161;62.0;150;110;1;1;1;1;1;1
+50829;23275;1;157;70.0;120;80;1;1;0;0;0;0
+50830;19123;1;156;55.0;120;80;1;1;0;0;0;1
+50831;21199;2;166;84.0;160;90;1;1;0;0;1;1
+50832;23436;1;160;66.0;120;80;1;1;0;0;1;0
+50833;16852;1;160;80.0;120;80;3;3;0;0;1;0
+50834;16811;2;165;69.0;120;70;2;2;1;0;1;0
+50835;21738;1;169;82.0;140;90;1;1;1;0;1;1
+50836;17420;1;170;72.0;130;90;1;1;0;0;1;1
+50837;23290;1;163;87.0;140;90;1;1;0;1;1;1
+50840;15999;2;178;85.0;140;90;2;1;0;0;0;1
+50841;16002;1;164;90.0;120;80;2;1;0;0;1;0
+50842;15621;1;156;47.0;110;70;1;2;0;0;0;0
+50843;19743;2;172;90.0;150;80;1;1;1;0;1;1
+50844;18708;1;170;70.0;120;80;1;1;0;0;0;1
+50845;15884;1;156;102.0;140;80;1;1;0;0;0;1
+50846;17437;1;158;67.0;110;70;1;1;0;0;1;1
+50850;22647;2;179;82.0;130;80;1;1;1;1;1;1
+50852;21314;2;175;62.0;140;90;1;1;0;0;1;0
+50853;21228;1;156;78.0;160;90;1;1;0;0;0;1
+50854;19603;2;178;78.0;140;90;1;1;0;0;1;1
+50855;19821;1;158;89.0;140;90;1;1;0;0;1;1
+50856;21011;1;175;83.0;130;80;2;2;0;0;1;0
+50857;22539;2;177;90.0;120;80;1;1;0;0;1;1
+50858;17346;2;154;61.0;110;70;1;1;1;1;1;0
+50859;15335;2;163;96.0;120;80;1;1;0;0;1;0
+50861;22621;1;159;56.0;110;70;1;1;0;0;1;1
+50864;22441;1;166;52.0;120;80;1;1;0;0;0;0
+50865;16195;1;167;61.0;110;70;1;1;0;0;0;0
+50867;21268;1;160;67.0;120;80;1;1;0;0;1;1
+50868;18525;1;169;69.0;110;70;1;1;0;0;1;0
+50869;22620;1;158;112.0;150;90;1;1;0;0;1;1
+50870;17799;2;175;80.0;120;80;1;1;0;0;0;0
+50872;20446;1;161;62.0;120;80;1;1;0;0;1;1
+50874;19029;1;164;75.0;130;90;1;1;0;0;1;0
+50875;21384;1;169;65.0;120;70;3;3;0;0;0;0
+50878;23149;1;149;72.0;130;80;3;1;0;0;0;1
+50880;18126;1;169;97.0;130;80;1;1;0;0;1;0
+50881;18141;1;158;72.0;145;90;1;3;0;0;1;1
+50882;19034;1;166;80.0;120;80;1;1;0;0;1;0
+50883;18766;2;172;85.0;130;80;1;1;0;0;1;1
+50884;22477;1;157;98.0;180;90;1;1;0;0;1;1
+50885;21795;2;160;62.0;120;80;1;1;0;0;0;0
+50886;17406;1;160;65.0;120;80;1;1;0;0;1;0
+50887;21149;1;160;78.0;110;70;1;1;0;0;1;0
+50891;18236;1;165;68.0;100;70;1;1;0;0;1;0
+50893;18251;1;158;83.0;120;80;1;1;0;0;1;1
+50894;19154;2;168;80.0;120;80;1;1;0;0;1;1
+50895;15231;1;151;60.6;95;60;1;2;0;0;1;0
+50897;19475;1;166;79.0;130;90;1;1;0;0;0;1
+50898;18239;1;165;65.0;120;80;1;1;0;0;1;1
+50899;21059;2;172;71.0;120;80;1;1;0;0;1;0
+50900;18322;2;152;78.0;150;90;1;1;0;0;1;1
+50901;23276;1;157;72.0;130;90;1;1;0;0;1;1
+50902;23438;2;160;83.0;160;90;3;1;0;0;1;1
+50903;20987;2;178;88.0;150;90;2;1;1;1;1;0
+50905;20541;1;165;65.0;120;79;3;3;0;0;0;0
+50908;19603;1;157;82.0;130;80;2;2;0;0;0;0
+50910;18439;1;165;75.0;120;80;1;1;0;0;1;0
+50911;15964;2;172;68.0;120;70;1;1;1;1;1;0
+50913;22684;1;165;68.0;140;90;1;1;0;0;1;1
+50915;19644;2;169;100.0;150;90;2;2;0;0;1;1
+50916;14643;2;182;89.0;140;90;1;1;0;0;1;1
+50918;21683;2;174;126.0;140;90;1;1;0;0;1;1
+50919;19549;1;162;60.0;140;90;1;1;0;0;1;1
+50920;15222;1;165;60.0;120;70;1;1;0;0;1;0
+50921;15994;1;165;73.0;90;60;1;1;0;0;1;0
+50924;20250;1;160;60.0;120;80;1;1;0;0;1;0
+50926;19741;1;160;52.0;120;60;1;1;0;0;1;0
+50929;16881;1;165;69.0;120;80;1;1;0;0;1;0
+50930;21849;2;171;104.0;120;80;1;1;0;0;1;0
+50931;19832;2;163;71.0;110;80;2;1;1;1;1;0
+50932;21862;1;171;76.0;150;80;2;2;0;1;1;1
+50933;18302;1;149;65.0;140;90;2;1;0;0;1;1
+50934;16067;1;165;87.0;120;80;1;1;0;0;1;0
+50935;14460;1;160;61.0;110;60;1;1;0;0;1;0
+50936;16682;1;168;60.0;130;80;1;1;0;0;0;0
+50937;21825;1;158;68.0;120;80;1;1;0;0;1;0
+50938;15211;1;172;102.0;140;100;1;1;0;0;1;1
+50939;20939;1;150;81.0;120;80;1;1;0;0;0;0
+50941;15973;2;168;68.0;120;80;1;1;0;0;1;1
+50942;23311;2;173;90.0;150;90;1;1;0;0;1;0
+50943;23358;1;163;90.0;180;60;3;3;0;0;0;1
+50944;16219;2;175;75.0;120;80;1;1;0;0;1;0
+50945;18126;1;156;84.0;160;100;1;1;0;0;1;1
+50948;17306;2;177;112.0;120;80;1;1;0;0;1;1
+50949;21359;1;164;68.0;164;90;3;1;0;0;1;1
+50950;19156;1;165;58.0;140;100;1;1;0;0;1;1
+50951;19681;1;153;71.0;140;90;1;1;0;0;1;1
+50953;19812;1;169;61.0;141;90;1;1;0;0;1;1
+50955;17637;1;170;68.0;110;80;1;1;0;0;1;0
+50956;20610;1;164;78.0;160;100;2;3;0;0;1;1
+50957;21797;2;170;98.0;110;70;1;1;1;1;1;0
+50959;18978;1;164;70.0;120;80;1;1;0;0;1;0
+50960;16809;1;171;120.0;100;70;2;2;0;0;1;0
+50962;22490;1;165;61.0;110;70;1;1;0;0;0;1
+50963;18160;1;163;103.0;140;1000;1;1;0;0;1;1
+50964;16495;1;160;80.0;100;80;1;1;0;0;1;0
+50965;19506;1;168;80.0;130;90;2;2;1;0;1;0
+50966;20508;1;159;76.0;130;70;2;3;0;0;1;0
+50967;21321;1;164;98.0;120;80;1;1;0;0;1;0
+50968;21018;1;164;67.0;120;80;1;1;0;0;1;1
+50970;20383;1;164;84.0;100;60;1;2;0;0;1;0
+50972;17456;1;158;102.0;120;80;1;3;0;0;1;0
+50974;21788;1;155;75.0;140;90;1;1;0;0;1;1
+50975;17338;1;165;60.0;120;80;1;1;0;0;1;1
+50976;22615;2;168;66.0;120;80;1;1;0;0;1;1
+50977;18407;2;181;116.0;140;80;3;1;1;0;1;1
+50978;19107;1;169;64.0;120;80;2;1;0;0;0;0
+50980;18247;2;167;78.0;150;100;1;1;0;0;1;1
+50981;18319;1;167;87.0;100;80;3;1;0;0;1;1
+50982;18384;2;170;77.0;135;95;1;1;0;0;1;0
+50984;17388;1;160;83.0;130;90;1;1;0;0;0;1
+50985;17353;1;168;90.0;120;80;2;1;0;0;0;0
+50987;19563;1;163;75.0;140;80;1;1;0;0;1;1
+50989;19980;2;167;69.0;110;80;1;1;0;0;1;1
+50990;19911;1;162;70.0;120;80;1;1;0;0;1;0
+50993;14629;1;164;56.0;120;80;1;1;0;0;1;0
+50994;15966;1;165;108.0;130;80;3;3;0;0;0;1
+50996;22628;2;180;80.0;120;80;1;1;0;0;1;1
+50997;18160;1;162;68.0;130;80;1;1;0;0;1;0
+51000;21301;1;160;72.0;110;80;1;1;0;0;1;0
+51001;21293;2;175;90.0;120;80;1;1;1;0;1;1
+51003;20352;1;161;78.0;140;80;1;1;0;0;1;1
+51004;19661;2;163;63.0;120;80;1;2;0;0;1;0
+51006;18128;1;153;56.0;110;70;1;1;0;0;1;0
+51007;16131;2;174;111.0;130;90;3;2;1;0;1;1
+51008;21131;1;166;68.0;150;80;2;2;0;0;1;1
+51009;15991;1;163;80.0;140;90;1;1;1;0;1;1
+51011;17484;1;153;90.0;140;100;1;1;0;0;1;1
+51012;20399;2;175;68.0;120;80;1;1;0;1;1;0
+51013;21165;1;157;64.0;110;70;1;1;0;0;0;0
+51014;21316;2;158;60.0;140;80;1;1;1;0;1;1
+51015;21652;1;151;68.0;150;80;2;1;0;0;1;1
+51017;20463;2;170;85.0;150;80;1;1;0;1;1;1
+51018;21981;1;169;75.0;140;90;1;1;0;0;1;1
+51023;18229;1;165;62.0;110;70;1;1;0;0;1;0
+51025;18100;2;163;70.0;150;90;2;1;0;0;1;1
+51026;15302;1;159;68.0;120;90;3;3;0;0;1;1
+51027;14629;1;165;66.0;140;90;1;1;0;0;1;1
+51028;21970;1;155;58.0;110;70;1;1;0;1;1;0
+51032;21797;1;156;85.0;130;80;1;1;0;0;1;1
+51034;21204;2;171;70.0;130;80;3;1;0;0;1;1
+51036;22664;1;152;52.0;120;70;3;3;1;0;1;1
+51037;17485;1;160;62.0;140;80;1;1;0;0;1;1
+51038;18057;2;170;65.0;120;80;1;1;0;0;1;0
+51041;17578;1;165;65.0;120;80;1;1;0;0;1;1
+51042;22404;2;179;85.0;120;80;1;1;1;0;0;1
+51043;23597;2;165;75.0;160;80;1;1;1;1;1;1
+51044;18268;1;160;73.0;140;80;2;1;0;0;1;1
+51046;23595;1;174;80.0;150;80;1;1;0;0;0;1
+51048;15284;1;156;64.0;130;80;2;1;0;0;0;1
+51049;22724;1;152;73.0;160;100;1;1;0;0;1;1
+51050;23540;1;144;50.0;130;90;3;1;0;0;1;1
+51051;21084;1;157;85.0;180;90;3;1;0;0;1;1
+51052;17499;1;158;62.0;120;80;2;1;0;0;1;0
+51053;19702;1;172;69.0;145;90;1;1;0;0;1;1
+51054;20504;1;170;60.0;130;80;1;1;0;0;1;0
+51057;19450;1;167;77.0;110;80;2;1;0;1;1;0
+51058;19780;2;171;76.0;120;80;1;1;0;0;1;0
+51059;20163;1;168;78.0;110;70;1;1;0;0;1;0
+51061;18122;1;164;64.0;120;70;1;1;0;0;1;0
+51062;14597;2;164;75.0;120;80;1;1;0;0;1;0
+51064;22401;2;160;67.0;140;80;2;1;1;0;1;1
+51065;18332;1;161;81.0;130;80;3;1;0;0;1;1
+51066;19753;2;179;69.0;100;60;1;1;0;0;1;0
+51067;19105;1;164;64.0;100;70;1;1;0;0;1;0
+51068;20532;1;160;65.0;170;70;1;1;0;0;1;1
+51069;20501;2;167;77.0;111;65;1;1;0;0;1;1
+51070;18369;1;170;75.0;140;90;1;1;0;0;0;1
+51071;19747;1;160;58.0;123;83;1;1;0;0;1;1
+51072;14651;2;182;79.0;120;80;1;1;0;0;1;0
+51073;22380;1;162;68.0;140;90;3;3;0;0;1;1
+51074;19629;1;158;75.0;120;80;2;1;0;0;1;0
+51075;19165;2;163;65.0;120;80;1;1;0;0;1;0
+51077;20550;1;158;65.0;140;70;2;1;0;0;1;1
+51078;21748;1;157;68.0;130;80;1;1;0;0;0;1
+51079;17608;1;164;90.0;130;80;3;3;0;0;0;1
+51080;22597;1;145;65.0;150;80;1;1;0;0;1;1
+51082;20952;1;154;65.0;140;90;2;1;0;0;0;1
+51084;16303;1;164;70.0;120;70;1;1;0;0;1;0
+51085;14477;2;174;72.0;108;80;1;1;1;0;1;0
+51086;14557;1;170;73.0;120;80;1;1;0;0;1;0
+51087;17260;2;151;67.0;140;90;1;1;0;0;1;1
+51088;20278;2;164;70.0;120;80;1;1;0;0;1;1
+51090;22631;2;140;55.0;120;80;1;1;0;0;1;0
+51091;15514;2;178;85.0;120;80;1;1;1;0;1;0
+51092;14525;1;150;59.0;110;70;1;2;0;0;1;0
+51096;20459;2;170;65.0;120;80;1;1;0;0;1;1
+51097;21036;1;156;65.0;120;80;1;3;0;0;1;0
+51098;20500;1;156;84.0;190;90;2;1;0;0;1;0
+51099;22463;1;169;78.0;140;100;2;2;0;0;0;1
+51100;16121;1;165;89.0;120;80;1;1;0;0;1;0
+51103;20534;1;168;86.0;140;90;2;1;0;0;1;1
+51105;20465;1;146;59.0;130;90;3;1;0;0;1;1
+51108;19961;2;176;81.0;140;100;2;2;0;1;1;1
+51109;22853;1;161;56.0;110;70;1;1;0;0;1;1
+51110;21133;1;163;106.0;140;90;1;3;0;0;0;1
+51111;18151;1;168;66.0;140;80;1;1;0;0;1;1
+51112;22709;1;164;67.0;150;90;1;1;0;0;1;1
+51115;18880;1;161;77.0;120;80;1;1;0;0;1;0
+51117;21128;1;160;100.0;120;80;3;1;0;0;1;1
+51118;17978;2;165;60.0;120;80;1;1;0;1;1;0
+51120;22652;1;152;79.0;150;90;1;1;0;0;1;1
+51121;17522;1;142;75.0;120;80;1;1;0;0;1;0
+51122;23400;1;158;80.0;120;80;1;1;0;0;1;0
+51125;22381;1;160;85.0;130;90;2;1;0;0;1;0
+51126;21218;1;156;62.0;120;80;1;1;0;0;1;0
+51127;17509;2;165;68.0;120;80;1;1;1;0;1;0
+51129;17589;1;163;87.0;170;100;1;1;0;0;1;1
+51131;23383;1;142;60.0;150;90;1;1;0;0;1;1
+51132;21013;1;165;62.0;130;80;1;1;0;0;1;0
+51133;16807;2;164;79.0;130;100;3;1;0;0;1;1
+51134;17304;1;156;74.0;140;90;2;2;0;0;1;1
+51135;22506;1;160;65.0;110;80;1;1;0;0;1;0
+51136;21884;2;166;64.0;150;90;2;1;0;0;1;1
+51137;19552;2;173;74.0;130;80;1;1;1;0;1;0
+51140;19581;2;164;70.0;120;80;1;1;0;1;0;1
+51142;19729;2;165;78.0;120;70;1;1;1;1;1;0
+51143;22761;2;173;84.0;120;80;1;3;0;0;1;1
+51144;15819;1;170;58.0;120;80;1;1;0;0;1;0
+51145;22527;2;160;90.0;150;90;1;1;0;0;1;1
+51149;23182;1;152;70.0;140;60;3;1;0;0;1;0
+51150;21940;1;172;89.0;140;90;1;1;0;0;1;1
+51152;20496;1;160;97.0;120;80;1;1;0;0;1;0
+51153;15592;2;167;71.0;130;100;1;1;0;0;1;0
+51154;23342;2;169;75.0;120;80;1;1;1;0;1;0
+51155;15252;2;170;70.0;110;70;1;1;0;0;0;0
+51157;22429;2;161;62.0;120;80;1;1;1;0;1;0
+51158;20253;2;178;80.0;120;80;1;1;0;0;1;0
+51159;16712;2;184;75.0;120;90;1;1;1;1;1;0
+51160;20262;1;168;68.0;120;80;3;1;0;0;1;1
+51161;20972;2;171;104.0;120;80;1;1;0;0;0;1
+51162;18438;2;170;78.0;120;80;1;1;0;0;1;1
+51163;20947;2;161;55.0;130;70;1;1;0;0;1;0
+51164;16003;2;178;90.0;120;80;1;1;0;0;1;0
+51165;21373;1;158;69.0;110;70;1;1;0;0;0;0
+51166;16079;1;160;70.0;120;80;1;1;0;0;1;1
+51167;18238;2;170;70.0;120;80;1;1;1;1;1;0
+51169;22746;2;168;72.0;140;90;3;3;0;0;1;1
+51170;19027;2;172;88.0;120;80;2;1;0;0;1;1
+51171;18192;1;168;97.0;125;80;1;1;0;0;1;1
+51172;17623;2;169;69.0;110;70;1;1;1;0;1;0
+51174;21969;2;178;78.0;150;70;1;1;0;0;0;1
+51175;19944;1;164;66.0;130;80;1;1;0;0;1;1
+51176;23313;1;161;87.0;100;60;3;1;0;0;1;0
+51177;21143;1;158;80.0;110;70;1;1;0;0;1;0
+51178;20543;2;169;69.0;120;70;1;1;0;0;1;1
+51179;16884;1;159;65.0;110;70;1;1;0;0;1;1
+51180;21896;2;153;59.0;120;80;1;1;0;0;0;1
+51182;20419;2;182;79.0;120;80;1;1;0;0;1;0
+51183;22827;2;165;74.0;130;70;1;1;0;0;0;0
+51184;19634;1;149;59.0;120;80;1;1;0;0;1;1
+51185;18192;1;157;58.0;120;80;1;1;0;0;1;0
+51186;22111;1;168;68.0;120;80;1;1;0;0;1;0
+51187;14659;2;178;82.0;110;90;1;1;0;0;1;0
+51188;19168;1;161;64.0;120;90;1;1;0;0;1;0
+51189;15354;1;162;73.0;150;100;1;1;0;0;1;1
+51190;20339;1;160;96.0;120;80;2;1;0;0;1;0
+51191;14598;2;176;90.0;120;80;1;1;1;0;0;0
+51192;21897;1;160;80.0;140;90;1;1;0;0;0;0
+51194;20401;1;159;60.0;120;80;2;1;0;0;1;0
+51196;22835;1;165;62.0;120;80;2;1;0;0;0;1
+51198;14684;1;163;67.0;110;70;1;1;0;0;1;0
+51199;21065;1;162;81.0;104;76;1;3;0;0;1;1
+51201;23064;1;157;128.0;140;90;3;3;0;0;1;1
+51202;23211;1;156;78.0;130;80;3;3;0;0;1;0
+51205;20959;1;164;70.0;140;90;3;3;0;0;1;1
+51208;17455;1;162;65.0;120;80;2;2;0;0;1;0
+51209;23242;1;160;62.0;130;80;3;3;0;0;1;1
+51211;22122;1;153;58.0;140;90;1;1;0;0;1;1
+51212;18477;2;160;60.0;120;80;1;1;0;0;1;0
+51213;20432;2;168;68.0;120;80;1;1;0;1;1;0
+51214;21056;1;170;65.0;120;80;1;1;0;0;1;0
+51215;14466;1;158;53.0;110;70;1;1;0;0;1;0
+51217;19587;1;168;100.0;120;80;2;2;0;0;1;1
+51220;17997;1;163;63.0;120;80;3;3;0;0;0;0
+51221;16090;1;158;48.0;100;60;1;1;0;0;0;0
+51222;16064;1;158;86.0;140;80;3;2;0;0;1;1
+51223;20951;1;165;71.0;120;60;1;1;0;0;1;1
+51224;16689;1;168;79.0;120;80;1;1;0;0;0;1
+51225;21972;2;174;71.0;140;90;3;1;0;0;1;1
+51226;20209;1;171;65.0;120;80;1;1;0;0;1;0
+51227;23192;2;164;80.0;140;100;1;1;1;0;1;1
+51228;21890;2;176;69.0;150;90;3;1;0;0;1;1
+51229;22699;2;180;100.0;120;80;2;1;0;0;1;1
+51231;18759;2;157;63.0;120;80;1;1;0;0;0;0
+51232;19579;1;156;64.0;120;80;1;1;0;0;1;0
+51233;19631;2;171;86.0;140;100;3;1;0;0;1;0
+51236;20988;2;171;94.0;120;80;2;2;1;0;0;1
+51237;22603;1;160;53.0;130;90;1;1;0;0;0;1
+51239;17592;1;155;75.0;130;85;1;1;0;0;1;0
+51240;20951;2;167;69.0;180;1000;2;2;1;1;0;1
+51242;22715;2;150;50.0;120;80;1;1;0;0;1;0
+51243;22035;1;167;65.0;140;90;1;1;0;0;1;1
+51244;21694;1;162;66.0;100;60;2;1;0;0;1;0
+51246;20567;2;168;103.0;140;90;1;1;0;0;1;1
+51247;20015;2;172;89.0;150;90;1;3;1;0;1;1
+51248;18332;2;170;94.0;110;80;1;1;0;1;1;0
+51249;20329;1;163;73.0;120;80;1;1;0;0;1;1
+51250;22792;1;174;86.0;160;100;1;1;0;0;1;1
+51251;18787;1;164;72.0;150;90;1;1;0;0;0;1
+51252;23610;2;171;78.0;130;80;1;1;0;0;0;1
+51253;18156;1;164;90.0;110;70;1;3;0;0;0;0
+51254;22678;2;175;75.0;130;70;1;1;0;0;1;0
+51255;22366;2;178;87.0;150;100;1;1;0;0;1;1
+51257;16817;1;172;52.0;130;75;3;1;0;0;1;1
+51258;18097;2;173;63.0;120;80;1;1;0;0;1;0
+51260;22012;1;165;85.0;170;100;3;3;0;0;1;1
+51261;22479;1;158;72.0;150;1000;2;1;0;0;1;1
+51262;21939;1;157;59.0;120;80;1;1;0;0;1;1
+51263;19613;1;162;68.0;110;70;2;1;0;0;0;0
+51265;15904;1;163;65.0;110;70;1;1;0;0;0;1
+51266;18174;1;165;60.0;120;80;1;1;0;0;1;0
+51267;18349;1;165;67.0;120;80;1;3;0;0;1;0
+51268;22567;1;169;74.0;140;90;2;1;0;0;1;1
+51269;18306;1;155;72.0;110;80;2;1;0;0;1;0
+51270;14661;2;180;101.0;150;1000;2;1;0;0;0;1
+51273;14587;2;176;66.0;120;80;1;1;0;0;1;0
+51274;19632;1;165;89.0;140;90;2;2;0;0;1;0
+51276;19770;1;159;66.0;140;90;2;1;0;0;1;1
+51277;15227;1;160;82.0;120;80;2;2;0;0;1;1
+51278;18067;1;171;67.0;110;70;1;1;0;0;1;0
+51281;23324;2;158;74.0;140;80;3;3;0;0;1;1
+51282;18381;1;173;75.0;130;80;1;1;0;0;1;1
+51283;20533;1;165;74.0;150;100;1;1;0;0;0;0
+51285;18801;2;175;98.0;150;100;1;1;0;0;1;1
+51286;16747;1;154;82.0;130;80;2;1;0;0;1;0
+51288;14843;2;174;78.0;110;70;1;1;0;0;1;0
+51291;23402;2;173;85.0;150;90;3;1;0;0;1;1
+51292;16542;2;181;89.0;140;100;2;2;1;1;1;1
+51293;18251;2;166;81.0;120;80;2;1;1;1;0;0
+51294;20455;1;156;62.0;110;70;2;1;0;0;1;1
+51295;21644;1;157;90.0;110;80;1;3;0;0;1;1
+51296;16790;2;176;56.0;100;70;1;1;0;0;1;0
+51297;23509;2;168;66.0;120;80;1;1;0;0;1;1
+51298;21621;1;153;76.0;120;80;2;1;0;0;0;1
+51299;23414;1;150;91.0;150;90;2;1;0;0;0;1
+51301;19005;1;165;90.0;140;90;1;1;0;0;1;1
+51302;22706;2;165;60.0;140;90;1;1;0;0;1;0
+51304;17638;2;180;80.0;120;80;1;1;1;0;0;0
+51305;14626;1;158;65.0;120;80;1;1;0;0;0;0
+51306;21286;2;182;90.0;140;100;1;1;1;0;1;1
+51308;21125;1;167;58.0;110;70;1;1;0;0;1;0
+51310;16577;2;166;73.0;110;70;2;1;1;0;1;0
+51313;21917;1;167;86.0;130;80;1;1;0;0;1;0
+51314;19374;2;176;80.0;120;80;1;1;0;0;1;0
+51315;15348;1;159;78.0;120;80;2;1;0;0;1;1
+51317;23538;2;152;60.0;140;70;1;1;1;0;1;1
+51318;21956;1;156;67.0;140;90;1;1;0;0;1;1
+51319;15322;2;174;65.0;120;80;1;1;0;0;1;1
+51323;20439;1;167;49.0;100;90;1;1;0;0;1;0
+51324;22686;2;167;85.0;160;100;1;2;0;0;1;1
+51325;23200;2;164;84.0;120;80;1;1;0;0;0;0
+51326;18346;1;154;81.0;110;80;3;3;0;0;1;0
+51328;21071;1;150;59.0;120;80;1;1;0;0;1;1
+51332;23118;2;160;75.0;150;90;1;1;0;0;1;1
+51333;23543;1;156;65.0;150;90;1;1;0;0;1;1
+51335;15075;1;165;68.0;120;80;1;1;0;0;0;0
+51338;18050;2;171;113.0;180;1000;3;1;0;0;1;1
+51339;18354;1;170;95.0;120;80;1;1;0;0;1;0
+51340;16370;2;171;79.0;120;80;1;1;1;0;1;0
+51341;20369;1;156;68.0;130;90;1;1;0;0;1;1
+51342;21254;2;168;70.0;150;95;2;3;0;0;1;1
+51343;14611;2;167;76.0;120;70;1;1;1;0;1;0
+51344;16822;1;164;64.0;100;70;1;1;0;0;1;0
+51346;19526;1;158;74.0;120;80;1;1;1;0;1;1
+51348;20378;1;152;65.0;120;80;1;2;0;0;1;0
+51349;20624;1;164;70.0;100;90;1;1;0;0;1;1
+51350;21107;1;170;70.0;140;90;1;1;0;0;1;1
+51351;14484;1;160;64.0;90;60;2;1;0;0;1;1
+51352;15938;2;174;85.0;120;80;1;1;1;1;1;1
+51353;23403;1;156;80.0;120;80;1;1;0;0;1;1
+51356;16295;1;168;72.0;120;80;1;1;0;0;1;0
+51357;21952;1;164;55.0;120;80;1;1;0;0;1;0
+51358;21115;2;176;120.0;140;80;1;1;1;0;1;0
+51359;21317;1;165;65.0;120;80;1;1;0;0;1;1
+51360;21177;2;170;80.0;120;70;1;2;1;0;0;1
+51361;17471;1;167;65.0;100;60;1;1;0;0;1;0
+51363;21172;2;178;71.0;120;80;1;1;0;0;0;0
+51364;18937;1;165;68.0;130;80;1;1;0;0;0;1
+51365;21151;1;159;63.0;120;80;2;1;0;0;1;1
+51366;18368;1;152;45.0;90;60;1;1;0;0;0;0
+51367;21096;2;161;68.0;130;90;1;1;1;1;1;0
+51368;22679;1;155;58.0;120;80;1;1;0;0;1;1
+51369;14345;2;170;67.0;120;80;2;1;0;0;0;0
+51371;21071;2;164;75.0;120;80;1;1;0;0;0;0
+51372;21271;1;167;74.0;140;80;1;1;0;0;1;1
+51373;21817;1;169;69.0;120;90;1;1;0;0;0;0
+51375;21162;1;168;62.0;120;80;1;1;0;0;1;0
+51376;23103;1;164;86.0;120;80;2;2;0;0;1;1
+51377;15929;1;156;84.0;139;90;3;1;0;0;1;1
+51378;19610;1;162;70.0;180;100;1;1;0;0;1;1
+51379;18188;1;159;86.0;130;90;2;2;0;0;1;0
+51380;16043;1;168;82.0;130;100;2;1;0;0;0;1
+51381;21776;2;136;54.0;180;100;1;2;1;0;1;1
+51384;16843;1;157;100.0;130;70;1;1;0;0;1;1
+51385;20982;2;178;86.0;130;80;1;1;0;0;1;1
+51390;21208;1;159;71.0;120;80;1;1;0;0;1;1
+51391;18939;2;170;80.0;100;60;1;1;0;0;1;0
+51392;20426;1;155;103.0;130;80;3;2;0;0;1;1
+51393;17441;1;165;65.0;140;90;1;1;0;0;1;1
+51394;21162;1;159;63.0;120;80;1;1;0;0;1;0
+51395;21917;1;162;88.0;150;80;2;2;0;0;1;1
+51396;21241;1;152;62.0;120;80;2;1;0;0;0;1
+51397;18305;1;165;78.0;120;80;1;1;0;0;0;0
+51398;15355;2;169;68.0;120;80;1;1;0;0;0;0
+51400;22731;1;170;69.0;120;80;1;1;0;0;1;0
+51401;20296;1;165;63.0;150;100;1;1;0;0;1;1
+51402;21414;2;182;94.0;150;90;2;2;0;0;1;1
+51403;23410;1;156;57.0;120;80;1;1;0;0;1;1
+51404;18976;2;160;102.0;140;90;2;1;0;0;1;1
+51405;19766;2;180;82.0;110;70;1;1;0;0;1;0
+51406;18314;1;164;59.0;110;80;1;2;0;1;1;0
+51407;21065;1;156;52.0;140;80;3;1;0;0;1;1
+51408;19890;2;165;87.0;140;90;1;1;1;0;0;1
+51409;18046;1;161;66.0;110;80;1;1;0;0;1;0
+51410;19560;1;163;68.0;120;80;2;1;0;0;1;0
+51411;19737;1;162;65.0;130;90;1;1;0;0;1;1
+51413;20575;2;172;68.0;140;80;1;1;0;0;0;1
+51414;21234;1;158;67.0;130;90;1;1;0;0;0;1
+51416;23204;1;150;80.0;140;90;1;1;0;0;1;1
+51417;14575;2;180;77.0;120;90;1;1;0;0;1;1
+51418;16193;1;164;69.0;120;80;1;1;0;0;1;1
+51420;15458;1;151;51.0;110;70;2;1;1;0;1;0
+51421;22469;2;170;70.0;120;80;1;1;0;0;1;0
+51422;18903;1;147;71.0;14;90;2;2;0;0;1;0
+51423;19933;2;176;94.0;140;80;1;1;0;0;0;1
+51425;19778;2;165;69.0;120;80;1;1;0;0;1;0
+51426;22500;1;156;73.0;130;80;3;3;0;1;0;1
+51427;20579;2;183;128.0;140;90;2;1;1;0;1;1
+51428;21922;1;161;60.0;140;90;2;1;0;0;1;1
+51429;20020;1;170;95.0;110;80;1;1;0;0;1;0
+51430;16824;1;171;65.0;120;80;1;1;0;0;1;0
+51433;19122;1;170;63.0;120;70;1;1;0;0;1;1
+51435;21021;2;170;74.0;120;70;1;1;1;0;1;1
+51436;21723;1;166;68.0;120;80;1;1;0;0;1;1
+51437;20358;1;164;69.0;120;80;1;1;0;0;1;1
+51438;17361;1;154;53.0;140;70;1;1;0;0;1;1
+51440;16245;1;165;87.0;110;80;1;1;0;0;1;0
+51441;17568;2;167;84.0;120;80;1;1;0;0;1;0
+51443;16794;1;167;93.0;110;60;2;1;0;0;1;0
+51444;18968;1;154;82.0;120;80;1;1;0;0;1;0
+51445;18204;2;160;60.0;120;80;1;1;0;0;1;0
+51446;19709;2;165;60.0;120;80;1;1;0;0;0;1
+51447;20482;1;160;91.0;110;70;1;1;0;0;1;0
+51450;22520;1;172;69.0;130;90;1;1;0;0;0;0
+51452;18180;2;165;88.0;110;70;1;1;1;1;1;0
+51454;18343;1;154;55.0;100;80;1;1;0;0;1;0
+51455;19503;1;165;78.0;120;80;1;1;0;0;1;0
+51457;21888;1;152;74.0;130;80;2;1;0;0;1;1
+51458;21771;2;180;100.0;140;90;2;1;1;1;1;1
+51459;20283;2;169;69.0;120;70;2;1;1;0;1;0
+51461;17969;1;160;68.0;120;80;1;1;0;0;0;0
+51463;21131;1;167;82.0;130;80;1;3;0;0;1;1
+51464;19553;2;165;70.0;120;80;1;1;0;0;1;0
+51467;19643;1;171;82.0;120;80;1;1;0;0;1;0
+51468;14365;1;169;68.0;120;80;1;1;0;0;0;0
+51470;16154;1;168;71.0;120;80;1;1;0;0;0;0
+51471;16805;1;150;58.0;110;90;1;1;0;0;1;0
+51473;15444;1;164;63.0;120;80;1;1;0;0;0;0
+51477;19825;2;165;62.0;120;80;1;1;0;0;1;0
+51478;21217;1;159;56.0;120;80;1;1;0;0;1;0
+51479;14637;1;167;74.0;100;60;2;2;0;0;1;0
+51480;18503;1;171;76.0;110;80;1;1;0;0;1;0
+51484;19798;1;158;84.0;130;80;1;1;0;0;1;1
+51486;20977;2;168;98.0;130;80;1;1;1;0;1;0
+51487;16862;2;172;98.0;120;80;1;2;0;0;1;1
+51488;20369;1;167;65.0;130;80;3;3;0;0;1;1
+51491;16722;1;170;91.0;120;80;1;1;0;0;1;0
+51494;19824;1;179;75.0;110;70;1;1;0;0;1;0
+51495;21790;1;157;68.0;140;80;3;3;0;0;0;1
+51496;16111;1;159;64.0;110;70;2;1;0;0;1;1
+51497;14490;1;157;50.0;110;70;1;1;0;0;1;0
+51498;19774;1;165;90.0;120;80;1;1;0;0;0;0
+51499;19748;2;169;102.0;170;110;3;2;0;0;1;1
+51500;22500;1;167;72.0;120;80;1;1;0;0;1;0
+51501;14470;1;157;61.0;100;70;1;1;0;0;0;1
+51503;22002;1;160;63.0;140;100;1;1;0;0;0;1
+51504;23301;1;155;87.0;140;90;3;1;0;0;0;1
+51505;18912;1;155;62.0;120;80;1;1;0;0;1;1
+51506;18176;2;174;70.0;120;80;1;1;0;0;1;1
+51507;21804;2;165;123.0;160;90;1;2;0;1;1;1
+51508;19606;1;161;68.0;120;80;1;1;0;0;1;0
+51509;18243;2;162;76.0;120;70;3;1;0;0;1;1
+51510;19647;1;164;70.0;120;80;1;1;0;0;1;1
+51512;23149;1;156;85.0;120;80;3;3;0;0;0;1
+51513;19790;1;145;60.0;130;80;1;1;0;0;0;1
+51514;22498;2;168;73.0;120;80;1;1;1;0;0;0
+51517;21860;1;169;93.0;110;70;1;1;0;0;1;0
+51520;18304;1;159;72.0;120;90;3;1;0;0;1;1
+51523;22023;2;167;69.0;110;70;1;1;0;0;1;0
+51524;21247;1;165;62.0;130;80;1;1;0;0;1;1
+51525;15932;2;170;100.0;140;100;1;1;0;0;1;1
+51526;23484;1;157;72.0;110;70;1;1;0;0;0;0
+51527;20497;1;154;83.0;140;90;3;1;0;0;1;1
+51528;23405;2;174;83.0;150;80;1;1;0;0;0;1
+51529;23052;1;164;71.0;130;80;1;1;0;0;1;1
+51531;17470;1;157;64.0;140;90;1;1;0;0;1;1
+51532;18210;2;172;81.0;110;70;1;1;1;0;1;1
+51533;16082;2;182;92.0;120;80;1;1;0;0;1;1
+51534;14736;1;154;50.0;120;80;1;1;0;0;0;0
+51535;18459;1;168;79.0;110;70;1;1;0;0;0;0
+51536;21950;1;160;60.0;140;80;1;1;0;0;1;1
+51537;14602;1;164;72.0;120;80;1;1;0;0;1;0
+51538;16904;1;162;63.0;110;70;1;1;0;0;1;0
+51539;20186;1;163;65.0;140;90;1;1;0;0;0;1
+51542;19773;2;173;69.0;110;70;1;1;1;0;1;0
+51543;23310;2;167;83.0;130;80;3;1;0;0;0;1
+51545;23292;1;152;53.0;120;80;1;1;0;0;1;1
+51547;18254;1;164;93.0;140;90;1;1;0;0;1;1
+51548;21193;1;165;57.0;120;80;1;1;0;0;1;0
+51549;21237;1;168;74.0;120;80;1;1;0;0;0;1
+51552;21242;1;161;75.0;120;70;2;3;0;0;1;1
+51553;21191;1;157;71.0;130;90;1;1;0;0;1;0
+51554;18127;1;162;92.0;150;90;1;1;0;1;1;1
+51555;17719;1;179;80.0;120;90;2;2;0;0;1;0
+51556;19059;2;156;69.0;140;90;2;1;0;0;1;1
+51557;20313;2;168;71.0;120;80;1;1;0;1;1;1
+51558;16272;2;165;60.0;120;80;1;1;0;0;0;0
+51559;21202;1;164;65.0;120;80;1;1;0;0;1;0
+51562;15107;1;154;72.0;110;70;1;3;0;0;1;0
+51564;16073;1;161;73.0;140;100;1;1;0;0;1;1
+51565;21215;1;156;56.0;90;60;1;1;0;0;1;0
+51567;23535;2;168;65.0;130;90;1;1;1;1;1;1
+51570;21595;2;169;79.0;110;70;1;1;0;0;0;1
+51572;18086;1;159;55.0;110;70;1;1;0;0;0;0
+51574;17458;1;158;68.0;120;80;1;1;0;0;1;0
+51576;21897;1;167;81.0;140;80;2;3;0;0;0;0
+51578;15335;1;165;65.0;110;70;1;1;0;0;1;0
+51579;18380;1;150;52.0;110;70;1;1;0;0;1;0
+51582;21835;1;157;84.0;140;100;1;1;0;0;1;0
+51585;22709;2;170;60.0;130;100;1;1;1;1;1;0
+51587;19038;1;165;71.0;120;70;1;1;0;1;1;0
+51589;20656;1;156;65.0;140;90;1;1;0;0;1;1
+51592;19791;1;165;57.0;120;80;1;2;0;0;0;0
+51594;20154;1;178;88.0;120;80;1;1;0;0;1;0
+51595;20397;2;168;78.0;120;80;1;1;0;0;1;0
+51597;21096;2;173;76.0;140;90;2;1;1;0;1;1
+51598;14827;1;160;60.0;130;90;1;1;0;0;1;1
+51599;21704;2;180;90.0;110;70;3;1;0;1;1;1
+51600;17310;1;157;57.0;120;70;3;1;0;0;1;1
+51601;21012;1;156;83.0;120;80;1;1;0;0;1;0
+51602;21365;1;154;67.0;120;90;2;2;0;0;1;0
+51603;21698;1;158;51.0;105;62;1;1;0;0;0;1
+51604;19841;1;165;55.0;140;90;2;1;0;0;1;1
+51605;15870;1;169;113.0;140;89;2;2;0;0;0;1
+51607;18063;2;182;98.0;120;80;3;1;0;0;1;0
+51609;18948;1;158;58.0;130;90;2;2;0;0;1;0
+51610;21902;1;158;72.0;150;70;1;1;0;0;1;0
+51611;14430;2;168;95.0;110;70;3;2;0;0;1;0
+51612;19649;1;159;94.0;180;110;2;1;0;0;1;1
+51614;21197;1;167;65.0;140;90;1;2;0;0;1;0
+51615;22383;1;155;87.0;120;80;2;2;0;0;0;1
+51616;21347;1;161;92.0;140;80;1;1;0;0;1;1
+51617;22803;1;152;66.0;110;70;1;1;0;0;1;0
+51619;14430;2;168;68.0;130;80;1;1;0;1;1;0
+51621;15344;1;153;69.0;110;70;1;1;1;0;1;0
+51622;18390;1;170;66.0;130;90;1;1;0;0;1;0
+51623;17704;2;170;113.0;125;80;2;1;0;0;1;0
+51624;19525;1;160;69.0;130;80;1;1;0;0;1;0
+51625;19163;1;160;73.0;120;80;1;1;0;0;1;0
+51626;21414;2;165;62.0;120;80;1;1;0;0;0;1
+51627;18212;1;158;58.0;120;80;1;1;0;0;0;0
+51628;21301;2;160;80.0;150;100;3;1;0;0;1;1
+51629;22529;2;163;62.0;120;90;1;1;0;0;1;1
+51630;19569;1;166;56.0;140;90;1;1;0;0;1;1
+51632;16817;1;159;97.0;120;80;3;1;0;0;0;1
+51633;16208;1;168;55.0;120;90;1;2;0;0;0;1
+51635;22340;2;168;70.0;120;70;1;1;0;0;1;1
+51636;21787;1;162;67.0;120;80;1;1;0;0;1;0
+51638;18501;2;175;69.0;140;90;2;1;0;0;0;1
+51639;18853;1;160;81.0;160;100;3;1;0;0;1;1
+51640;20504;1;153;76.0;140;90;3;2;0;0;1;0
+51642;18353;2;170;79.0;120;80;1;1;0;0;1;1
+51643;16643;1;160;87.0;120;80;1;2;0;0;1;0
+51644;14525;1;167;59.0;100;70;2;1;0;0;1;1
+51646;19626;2;180;96.0;120;80;1;1;0;0;1;1
+51647;14691;1;168;75.0;120;75;1;1;0;0;0;0
+51648;22465;2;164;69.0;125;80;1;1;0;0;1;0
+51649;21257;1;168;81.0;120;80;1;1;0;0;1;1
+51650;19828;2;173;78.0;120;80;3;3;1;0;1;0
+51652;19009;1;163;86.0;120;80;1;1;0;0;0;0
+51653;20430;2;167;80.0;130;90;1;1;0;0;0;1
+51654;21919;2;168;72.0;120;80;1;1;1;0;1;0
+51656;20787;1;168;67.0;120;80;3;3;0;0;1;0
+51657;15206;1;158;52.0;100;80;2;1;0;0;1;0
+51658;22727;2;170;79.0;140;90;2;1;0;0;1;1
+51659;20854;1;160;69.0;110;80;3;2;0;0;1;0
+51660;18044;1;167;70.0;140;90;1;1;0;0;1;1
+51661;15411;2;165;70.0;120;80;2;1;1;0;0;1
+51662;21312;1;170;70.0;120;80;1;1;0;0;1;0
+51663;18226;2;164;75.0;110;70;1;1;0;0;1;0
+51664;20242;1;158;70.0;130;70;1;1;0;1;1;1
+51666;20502;1;149;92.0;130;90;2;1;0;0;1;1
+51670;23189;1;165;58.0;110;70;2;1;0;0;1;1
+51672;22025;2;184;87.0;140;100;1;1;1;1;1;1
+51673;22642;1;162;64.0;110;70;1;1;0;0;1;0
+51674;16604;1;162;95.0;100;70;1;1;0;0;1;0
+51675;18086;1;172;86.0;110;80;2;1;0;0;1;0
+51676;16610;2;165;63.0;150;80;1;1;0;0;1;1
+51677;20156;2;177;97.0;130;80;3;3;0;0;1;1
+51678;20648;1;160;90.0;110;70;1;1;0;0;1;0
+51680;20479;2;180;72.0;130;70;1;1;1;0;1;0
+51681;18198;2;166;83.0;120;80;2;2;1;0;1;1
+51684;19632;1;157;66.0;120;80;1;1;0;0;1;0
+51685;16910;1;169;73.0;120;80;1;1;0;0;1;0
+51686;20598;1;165;69.0;120;80;1;1;0;0;1;0
+51688;21080;1;160;60.0;120;80;1;1;0;0;1;0
+51689;22050;1;167;86.0;130;90;3;1;0;0;1;1
+51690;14513;1;165;52.0;120;80;1;1;0;0;1;0
+51692;21075;2;171;76.0;130;80;1;1;0;0;1;0
+51693;22625;2;168;77.0;150;90;1;1;0;0;1;1
+51694;23191;1;155;74.0;170;100;1;1;0;0;1;1
+51695;22612;1;157;88.0;140;100;3;3;0;0;1;1
+51696;20590;1;168;84.0;125;90;2;2;0;0;1;0
+51700;22043;1;156;52.0;120;80;1;1;0;0;1;0
+51701;15079;1;157;66.0;100;70;1;1;0;0;1;0
+51702;19216;1;167;54.0;120;80;1;3;0;0;1;0
+51703;20528;1;153;71.0;110;85;3;3;0;0;1;1
+51705;21383;1;170;78.0;120;80;1;1;0;0;1;0
+51706;14440;1;161;65.0;120;80;1;1;0;0;1;0
+51709;19695;2;170;68.0;130;90;1;1;0;0;1;0
+51712;20258;1;161;67.0;150;90;1;1;0;0;1;0
+51714;18323;1;165;65.0;160;70;1;1;0;0;1;1
+51715;21973;1;161;76.0;145;90;1;1;0;0;1;0
+51716;16555;1;160;65.0;110;70;1;1;0;0;1;0
+51719;20729;1;163;92.0;120;80;1;1;0;0;1;1
+51721;21973;2;170;75.0;140;90;2;1;0;0;1;1
+51722;21645;1;165;65.0;120;80;1;1;0;0;0;0
+51723;16110;2;158;59.0;120;80;1;1;0;0;1;1
+51724;21174;1;163;58.0;120;80;1;1;0;0;1;0
+51725;14439;1;168;99.0;120;80;1;1;0;0;1;0
+51726;20375;1;160;60.0;120;60;1;1;0;0;1;1
+51727;23106;1;159;82.0;140;80;1;1;0;0;0;1
+51728;21104;1;168;71.0;110;80;1;1;0;0;1;0
+51729;21019;2;166;94.0;130;80;1;1;0;0;1;1
+51730;22658;2;165;65.0;120;80;1;2;0;0;0;1
+51733;21237;2;161;91.0;90;60;1;2;0;1;1;0
+51734;19783;2;174;75.0;120;80;1;1;0;0;1;0
+51735;19748;2;168;97.0;150;90;2;1;1;1;1;1
+51736;18963;2;166;74.0;120;80;1;1;0;1;1;0
+51737;18122;1;157;66.0;150;95;1;1;0;0;1;0
+51738;15940;2;165;62.0;110;60;1;1;0;0;0;0
+51739;15283;1;157;49.0;120;70;2;1;0;0;0;0
+51743;21224;1;160;75.0;150;90;2;3;0;0;1;0
+51744;19790;1;154;74.0;140;90;3;1;0;0;0;1
+51745;20131;1;155;67.0;120;80;1;1;0;0;1;1
+51746;21873;1;168;100.0;160;90;3;2;0;0;1;1
+51747;19709;2;174;74.0;120;80;1;1;0;0;1;1
+51750;16979;1;168;75.0;120;80;1;1;0;0;1;0
+51751;16099;2;184;92.0;110;80;1;1;0;0;1;0
+51752;23480;2;168;71.0;120;80;1;1;0;0;0;1
+51753;15374;1;160;70.0;120;80;1;1;0;0;1;0
+51756;20620;1;165;65.0;120;80;3;3;0;0;0;0
+51758;15883;2;162;69.0;120;80;1;1;0;0;1;0
+51760;17565;2;162;64.0;90;60;1;1;1;0;1;0
+51761;18786;1;171;88.0;120;80;1;2;0;0;1;0
+51762;16753;1;160;74.0;110;70;1;1;0;0;1;0
+51764;15990;1;180;73.0;120;70;1;1;0;0;1;0
+51765;15404;2;160;58.0;110;70;1;1;0;0;1;0
+51766;20963;1;156;62.0;115;75;1;1;0;0;1;0
+51769;20498;1;160;72.0;125;80;2;1;0;0;1;1
+51770;17568;1;155;77.0;140;100;1;1;0;0;1;1
+51772;22540;2;165;62.0;130;90;3;1;0;0;1;1
+51773;23327;2;166;60.0;150;90;3;1;0;0;1;1
+51774;18757;2;167;77.0;120;79;1;1;0;0;1;1
+51775;20529;1;163;94.0;110;70;1;1;0;0;1;0
+51776;14735;1;165;65.0;120;80;1;1;0;0;1;0
+51777;19162;1;165;60.0;130;80;1;1;0;0;1;0
+51779;19678;2;172;73.0;110;70;1;1;0;0;1;0
+51782;20312;1;156;58.0;120;60;1;1;0;0;1;0
+51783;20946;1;160;53.0;140;90;1;1;0;0;1;1
+51784;19063;2;168;76.8;140;100;1;1;0;0;1;1
+51785;21288;1;162;75.0;140;90;3;1;0;0;1;1
+51786;19733;1;167;67.0;120;80;1;1;0;0;1;0
+51788;19090;1;167;72.0;150;80;3;1;0;0;1;1
+51789;22432;1;168;69.0;110;70;1;1;0;0;1;0
+51790;18229;1;152;53.0;115;50;2;2;0;0;1;0
+51792;20613;2;180;70.0;150;100;2;1;0;0;1;1
+51793;19057;1;156;89.0;110;80;1;1;0;0;1;0
+51794;18945;1;165;79.0;120;80;1;1;0;0;1;1
+51796;23506;1;168;62.0;130;60;1;1;0;0;1;0
+51798;20713;1;160;78.0;130;90;2;2;1;0;1;1
+51800;18986;1;170;70.0;120;80;1;1;0;0;1;0
+51801;23226;1;162;75.0;150;90;1;1;0;0;0;1
+51802;19482;2;171;79.0;120;80;1;1;1;1;0;0
+51803;19099;1;158;72.0;125;85;1;3;0;0;1;0
+51804;21799;1;162;74.0;120;80;1;1;0;0;1;0
+51806;19014;1;167;87.0;140;80;3;1;0;0;1;1
+51808;17375;2;172;51.0;110;70;1;1;0;0;1;0
+51809;17537;1;165;82.0;120;80;2;2;0;0;1;0
+51810;21779;1;168;72.0;138;88;1;1;0;0;0;0
+51813;22347;2;173;76.0;170;100;3;3;0;0;1;1
+51814;20551;1;150;71.0;140;90;3;1;0;0;1;1
+51815;17260;2;172;78.0;120;90;1;1;1;0;1;1
+51816;15098;2;174;69.0;120;80;1;1;0;0;1;0
+51817;19693;1;179;76.0;140;80;1;1;0;0;1;1
+51818;15313;1;167;65.0;120;80;1;1;0;0;1;0
+51820;16922;1;162;58.0;110;80;1;1;0;0;1;0
+51821;19552;1;161;71.0;155;100;2;1;0;0;1;1
+51822;19842;2;156;60.0;110;80;1;1;0;0;1;0
+51823;22020;1;164;80.0;120;70;1;1;0;0;1;1
+51824;16002;2;177;100.0;130;80;3;1;0;0;1;1
+51825;21061;1;168;93.0;120;80;1;1;0;0;1;1
+51830;19516;2;164;61.0;90;60;1;1;0;0;1;0
+51831;18188;2;175;80.0;150;90;1;1;0;0;1;1
+51832;20584;1;164;85.0;120;80;1;1;0;0;1;0
+51834;20303;1;175;68.0;100;80;1;1;0;0;1;0
+51835;19898;1;163;66.0;120;80;1;1;0;0;1;0
+51836;18832;1;156;60.0;120;80;1;1;0;0;1;0
+51837;14618;2;167;49.0;120;80;1;1;0;1;1;0
+51838;16025;1;172;73.0;120;80;1;1;0;0;1;0
+51839;22809;1;165;63.0;120;80;1;3;0;0;1;0
+51840;21025;1;163;92.0;120;80;1;1;0;0;0;1
+51841;20395;1;165;96.0;160;1000;1;1;0;0;1;1
+51845;15503;2;168;68.0;70;120;1;1;1;0;0;0
+51846;22585;1;154;50.0;120;80;2;1;0;0;1;0
+51848;15241;1;154;78.0;120;90;3;2;0;0;1;1
+51850;21143;1;165;62.0;120;80;1;1;0;0;1;0
+51852;15500;1;157;72.0;120;80;1;1;0;0;1;0
+51853;21232;2;165;72.0;120;80;2;2;0;0;1;1
+51854;19015;2;168;70.0;120;80;1;1;1;0;1;0
+51855;16260;1;164;56.0;130;90;1;1;0;0;1;1
+51857;22754;2;174;74.0;120;80;1;1;0;0;1;1
+51859;15090;2;172;112.0;120;80;1;1;0;0;1;0
+51860;15861;2;183;93.0;130;80;1;1;0;0;1;1
+51861;18201;2;170;75.0;120;80;1;1;0;0;0;1
+51862;22704;1;176;74.0;110;60;1;1;0;0;1;1
+51863;23384;2;167;66.0;140;80;1;1;0;0;0;1
+51864;14625;1;160;66.0;110;70;1;1;0;0;0;0
+51865;19844;1;165;63.0;120;80;1;1;0;0;1;0
+51866;21768;1;160;58.0;130;70;2;2;0;0;0;1
+51867;21977;1;170;75.0;140;90;2;2;0;0;1;1
+51868;20517;2;175;74.0;125;80;1;1;0;0;1;1
+51870;18212;2;168;68.0;130;70;1;1;1;1;0;0
+51872;21319;1;170;95.0;140;80;1;1;0;0;1;0
+51873;22715;1;176;84.0;130;80;3;1;0;0;1;1
+51875;16622;1;149;72.0;110;70;1;3;0;0;1;0
+51876;21057;1;165;65.0;120;80;1;1;0;0;1;1
+51877;17337;1;161;69.0;110;70;1;1;0;0;1;0
+51879;19631;1;154;45.0;120;80;2;1;0;0;1;1
+51881;19780;1;152;77.0;120;80;2;1;0;0;1;1
+51882;22500;2;172;70.0;120;80;1;1;0;0;1;0
+51883;19100;1;165;67.0;150;90;3;1;0;0;1;1
+51884;21119;1;164;67.0;130;70;3;1;0;0;1;1
+51887;15340;1;160;65.0;110;70;1;1;0;0;1;0
+51888;17671;1;173;71.0;110;70;1;1;0;0;1;1
+51889;20309;1;165;80.0;120;80;1;1;0;0;1;0
+51891;16762;2;179;74.0;120;80;1;3;1;0;0;0
+51893;18193;1;164;82.0;140;90;1;1;0;0;0;1
+51894;21139;1;160;50.0;100;60;2;1;0;0;1;0
+51896;15962;1;159;55.0;100;70;1;1;0;0;1;0
+51901;23422;2;165;68.0;120;80;1;1;0;0;1;0
+51902;18869;1;164;135.0;160;90;1;1;0;0;1;0
+51904;18182;1;158;69.0;110;70;1;1;0;0;1;0
+51906;21131;1;160;78.0;125;75;1;1;0;0;1;1
+51907;22501;1;160;55.0;150;70;3;3;0;0;1;1
+51910;16872;1;174;85.0;120;80;1;1;0;0;1;0
+51912;20731;1;171;78.0;140;90;3;3;0;0;1;1
+51914;17388;2;166;67.0;100;70;2;1;0;0;1;0
+51916;16546;1;169;75.0;150;1000;1;1;0;0;1;1
+51917;18869;1;153;75.0;140;90;1;1;1;1;1;1
+51918;21830;1;146;53.0;130;80;1;1;0;0;0;0
+51920;15903;1;155;48.0;120;80;1;1;0;0;1;0
+51921;22674;1;170;80.0;140;90;3;3;0;0;0;1
+51922;21932;2;168;94.0;120;80;1;1;0;0;1;1
+51925;21681;2;166;83.0;120;80;3;2;1;0;1;0
+51926;20186;1;162;57.0;160;100;3;1;1;0;1;1
+51927;15166;1;164;64.0;150;90;2;1;0;0;1;1
+51928;19554;2;168;75.0;130;80;1;1;0;0;1;0
+51930;19736;1;162;70.0;90;70;1;2;0;0;1;0
+51931;22579;2;175;69.0;110;70;1;1;0;0;0;1
+51933;20137;2;165;65.0;120;80;1;1;0;0;1;0
+51934;17986;1;156;50.0;133;95;1;1;0;0;0;1
+51936;19851;2;167;77.0;150;80;1;1;0;0;1;1
+51937;18089;1;175;75.0;120;80;1;1;0;0;0;0
+51938;19778;2;172;90.0;120;80;1;1;0;0;1;1
+51939;22442;1;148;102.0;160;120;3;3;0;0;0;1
+51941;14495;2;174;82.0;120;80;1;1;1;0;1;0
+51943;21725;2;162;66.0;130;90;1;1;1;1;1;0
+51944;16782;2;170;80.0;120;80;1;1;0;0;0;1
+51945;21338;1;158;80.0;105;65;3;3;0;0;1;0
+51946;15964;1;152;65.0;120;80;1;1;0;0;1;0
+51947;22468;1;148;69.0;140;90;1;1;0;0;1;1
+51948;21960;1;160;88.0;100;70;1;1;0;0;1;0
+51949;22796;1;170;80.0;120;70;1;1;0;0;0;0
+51954;23264;1;170;62.0;110;70;1;1;0;0;1;1
+51955;23462;1;160;76.0;150;90;1;1;0;0;1;1
+51957;22622;2;167;86.0;180;90;1;1;1;0;0;1
+51958;22532;1;171;94.0;130;90;1;1;0;0;1;1
+51959;16779;1;163;70.0;120;80;1;1;0;0;1;0
+51960;20493;1;159;60.0;100;70;1;1;0;0;0;0
+51961;23308;1;164;112.0;120;80;1;1;0;0;1;1
+51962;21062;1;155;98.0;140;80;3;3;0;0;1;0
+51963;17968;2;170;85.0;140;70;2;1;0;0;1;1
+51965;21340;1;152;67.0;130;70;1;1;0;0;1;1
+51966;22572;1;160;74.0;130;90;3;3;0;0;1;0
+51968;19730;1;156;66.0;120;80;1;1;0;0;0;0
+51969;20390;2;167;72.0;120;70;2;1;0;0;1;1
+51972;19603;2;164;79.0;140;90;1;1;1;0;1;1
+51974;15992;2;175;72.0;120;80;1;1;1;1;1;1
+51975;17490;2;170;69.0;120;90;1;1;0;0;1;0
+51976;16811;2;169;46.0;150;95;1;1;0;0;0;1
+51979;14471;1;180;102.0;110;90;1;1;0;0;1;0
+51980;21157;2;168;75.0;120;80;1;1;0;0;1;1
+51982;15330;1;172;72.0;100;80;1;1;0;0;1;0
+51984;19538;1;172;60.0;110;70;1;3;0;0;1;0
+51986;23180;1;150;60.0;150;90;1;1;0;0;1;1
+51987;18961;1;184;90.0;120;80;1;1;0;0;1;0
+51988;18045;1;160;65.0;120;80;1;1;0;0;1;0
+51990;14611;1;160;73.0;120;80;2;2;0;0;1;1
+51991;23245;2;170;110.0;155;80;1;1;0;0;1;1
+51992;14691;2;165;74.0;120;80;1;1;0;0;1;0
+51993;19573;1;164;89.0;160;90;1;1;0;0;1;1
+51995;18826;2;167;87.0;150;1000;1;1;0;0;1;1
+51997;18000;1;158;81.0;130;90;2;2;0;1;1;0
+51998;18934;1;175;80.0;120;70;1;1;0;0;0;0
+52000;18337;1;168;69.0;140;90;1;1;0;0;1;1
+52001;19580;1;166;79.0;140;90;1;1;0;0;1;1
+52002;20339;2;165;59.0;150;100;3;1;0;0;0;1
+52003;18380;1;165;62.0;120;80;1;1;0;0;1;0
+52005;18998;1;162;67.0;110;80;2;1;0;0;1;0
+52006;16897;2;173;74.0;130;80;2;1;0;0;1;1
+52007;20509;2;171;75.0;170;90;1;1;1;0;1;1
+52008;23231;1;152;65.0;120;80;2;1;0;0;0;1
+52012;20311;1;174;69.0;110;70;3;3;0;0;1;1
+52013;19782;2;175;87.0;140;90;2;1;1;1;0;0
+52015;18019;2;181;60.0;130;90;1;1;0;0;1;0
+52016;19901;2;169;74.0;125;75;1;1;0;0;1;1
+52018;14501;2;168;79.0;120;90;1;1;0;0;0;1
+52020;21577;1;155;74.0;140;90;1;1;0;0;1;0
+52021;14535;1;168;95.0;120;80;1;1;0;0;0;0
+52024;20349;1;169;62.0;140;100;2;2;0;0;1;1
+52025;20389;2;166;70.0;150;90;1;1;0;0;1;1
+52029;21159;1;160;69.0;120;70;2;1;0;0;1;0
+52030;16808;2;176;112.0;160;100;1;1;0;0;1;1
+52031;16553;2;169;65.0;120;80;1;1;0;0;1;0
+52033;23375;1;144;76.0;150;90;1;1;0;0;0;0
+52034;17349;1;155;87.0;140;120;3;3;0;0;1;1
+52035;18388;1;153;46.0;120;60;1;1;0;0;1;0
+52036;20477;1;153;54.0;120;80;1;1;0;0;1;0
+52037;15858;2;173;75.0;120;80;1;1;0;0;1;0
+52041;20909;1;156;69.0;110;80;1;1;0;0;1;0
+52043;20548;2;169;115.0;120;80;1;1;0;0;0;1
+52044;20249;2;167;64.0;170;1000;1;2;1;1;1;1
+52045;19495;2;160;60.0;120;80;1;1;0;0;1;0
+52046;16011;1;153;72.0;120;70;1;1;0;0;0;1
+52047;19000;1;172;79.0;120;80;1;1;0;0;1;0
+52048;17577;1;156;70.0;120;80;2;1;0;0;1;0
+52049;21704;1;159;95.0;110;70;1;1;0;0;1;1
+52050;19614;2;160;54.0;130;80;1;1;0;0;1;1
+52052;18201;1;166;76.0;110;75;2;1;0;0;1;0
+52054;19739;2;175;104.0;168;91;1;2;0;0;1;1
+52057;15298;1;165;128.0;140;90;3;1;0;0;1;1
+52058;16026;2;177;89.0;130;80;1;1;0;1;1;0
+52060;18909;1;162;65.0;120;80;1;1;0;0;1;0
+52061;16700;2;165;92.0;120;70;1;1;1;0;0;0
+52062;21887;2;163;66.0;120;80;1;1;0;0;0;1
+52063;20965;1;167;70.0;120;80;1;1;0;0;1;1
+52065;20302;1;168;95.0;180;80;1;1;0;0;1;1
+52066;19629;2;163;64.0;110;80;1;1;1;0;1;0
+52067;18058;1;156;62.0;100;70;2;1;0;0;1;0
+52068;22447;1;165;110.0;150;90;1;1;0;0;1;1
+52069;16122;1;162;56.0;120;75;1;1;1;1;0;0
+52071;15349;1;168;76.0;110;70;2;1;0;0;1;1
+52074;22006;1;158;52.0;100;80;1;1;0;0;1;0
+52075;16907;2;170;90.0;120;90;1;1;0;0;0;0
+52076;20446;1;168;64.0;120;80;1;1;0;0;1;0
+52081;17467;1;154;64.0;130;80;1;1;0;0;1;0
+52082;22620;2;180;109.0;140;90;3;3;0;0;1;1
+52083;21029;1;163;56.0;120;80;1;1;0;0;1;0
+52084;16723;1;160;70.0;90;60;2;2;0;0;1;0
+52085;22135;1;159;90.0;150;90;1;1;0;0;1;1
+52086;20473;1;163;85.0;140;100;2;2;0;0;0;1
+52087;19582;1;168;62.0;125;75;1;1;0;0;1;0
+52088;16543;1;169;68.0;120;80;1;1;0;0;1;0
+52090;17507;1;159;84.0;150;90;1;1;0;0;0;1
+52092;19586;1;170;79.0;130;80;1;1;0;0;0;1
+52093;19591;1;156;85.0;120;80;3;3;0;0;1;1
+52094;15832;1;167;45.0;90;65;1;1;0;0;1;0
+52095;18165;2;168;65.0;140;90;1;1;0;0;1;1
+52096;19577;1;154;77.0;120;80;1;1;0;0;1;1
+52098;21167;1;174;82.5;130;70;1;1;0;0;1;0
+52100;19883;2;172;89.0;210;140;2;2;0;1;1;1
+52101;21120;1;157;58.0;110;70;1;1;1;0;1;0
+52102;20989;2;170;65.0;110;70;1;1;0;0;0;0
+52104;17960;1;157;68.0;130;80;3;3;0;0;1;1
+52105;14604;1;164;88.0;110;70;1;1;0;0;1;0
+52106;18855;2;185;109.0;120;80;1;1;0;0;1;1
+52107;21377;1;169;78.0;128;80;1;1;0;0;0;1
+52108;22552;1;153;57.0;120;80;1;1;0;0;1;0
+52110;19894;1;154;79.0;120;80;2;1;0;0;1;1
+52111;19453;1;158;56.0;140;80;1;1;0;0;1;1
+52113;21253;1;165;75.0;120;80;1;1;1;1;1;0
+52114;18279;2;190;73.0;110;80;2;1;1;0;1;0
+52115;20494;1;167;115.0;150;90;2;2;0;0;1;1
+52116;21835;1;167;80.0;150;90;3;3;0;0;0;1
+52118;21104;1;162;83.0;140;90;1;1;0;0;1;1
+52121;21196;2;173;78.0;170;1000;1;1;0;0;1;1
+52122;23124;1;169;71.0;120;80;1;1;0;0;1;1
+52123;16084;2;183;98.0;120;90;2;1;0;0;1;1
+52124;17442;1;177;82.0;120;80;1;1;0;0;0;1
+52125;22591;1;164;104.0;120;80;1;1;0;0;1;1
+52126;18436;1;154;63.0;100;70;2;1;0;0;1;0
+52127;21377;1;167;73.0;140;80;1;1;0;0;1;1
+52128;20582;2;156;75.0;170;110;3;3;0;0;1;1
+52131;18235;1;158;66.0;120;80;1;1;0;0;0;1
+52133;16190;1;148;52.0;110;80;1;1;0;0;1;0
+52134;18001;1;162;80.0;130;90;2;1;0;0;1;0
+52135;19125;1;163;72.0;140;100;1;1;0;0;1;1
+52136;20465;2;169;75.0;160;90;2;2;1;1;1;1
+52137;18031;1;167;62.0;120;70;2;2;0;0;1;0
+52139;17694;1;171;76.0;120;80;1;1;0;0;0;0
+52140;15466;2;185;74.0;110;70;1;1;0;0;0;0
+52141;16734;2;158;63.0;120;80;1;2;0;0;0;0
+52143;21865;1;163;90.0;150;80;3;3;0;0;1;1
+52145;21141;1;156;71.0;120;80;1;2;0;0;1;0
+52146;16777;1;163;84.0;140;90;1;1;0;0;1;0
+52147;15354;2;171;77.0;120;80;1;1;0;0;1;0
+52148;15204;1;165;83.0;120;80;3;3;0;0;1;1
+52149;16810;1;164;66.0;90;60;2;1;0;0;1;0
+52150;19600;1;152;55.0;120;80;1;1;0;0;0;0
+52152;20927;1;160;93.0;120;80;2;1;0;0;1;0
+52153;21899;1;158;99.0;140;90;1;1;0;0;1;1
+52155;20428;2;174;100.0;125;90;3;1;0;0;1;1
+52156;16793;1;172;87.0;110;80;1;1;0;0;0;0
+52157;14584;2;180;82.0;110;70;1;1;0;0;1;0
+52158;21073;1;149;74.0;150;100;2;1;0;0;1;0
+52159;19783;2;168;65.0;140;100;1;2;0;1;1;1
+52161;23289;1;157;91.0;140;90;1;1;0;0;1;1
+52162;16070;1;165;63.0;120;90;1;1;0;0;0;0
+52165;19488;1;165;64.0;120;80;1;1;0;0;1;1
+52166;22822;2;187;123.0;140;85;3;3;0;0;1;1
+52168;15930;1;174;98.0;140;100;3;1;0;0;0;1
+52174;18201;2;184;106.0;120;90;1;1;1;1;1;1
+52175;19714;2;175;88.0;150;90;1;1;1;0;1;1
+52176;21865;1;162;58.0;120;80;1;1;0;0;1;0
+52178;18991;1;160;73.0;140;90;1;1;0;0;1;1
+52179;17563;2;185;105.0;130;100;3;3;0;1;0;1
+52180;16178;2;169;70.0;120;80;1;1;0;0;1;1
+52181;15506;1;165;60.0;120;80;1;1;0;0;1;0
+52182;14667;1;166;60.0;120;90;1;1;0;0;0;0
+52185;21182;2;163;65.0;150;90;1;1;0;0;0;1
+52189;17309;2;165;88.0;120;80;2;1;0;0;0;1
+52191;22034;1;167;70.0;130;80;1;1;0;0;1;1
+52192;17561;1;165;66.0;140;90;1;1;0;0;1;1
+52193;18925;2;172;74.0;120;80;1;1;0;0;1;0
+52194;18929;1;152;64.0;140;80;1;1;0;0;0;0
+52195;19068;1;156;62.0;120;80;1;1;0;0;1;0
+52197;18315;1;161;78.0;120;80;1;1;0;0;1;0
+52198;14467;1;155;55.0;110;80;1;1;0;0;1;0
+52199;14534;1;161;74.0;160;80;1;1;0;0;0;1
+52200;23598;2;163;63.0;120;80;2;1;0;0;0;1
+52201;22477;1;160;70.0;110;70;1;1;0;0;1;1
+52202;16112;2;173;56.0;110;70;1;1;0;0;1;0
+52204;19848;2;170;70.0;120;80;1;1;0;0;1;0
+52205;22582;1;174;107.0;125;95;2;2;0;0;1;1
+52206;20904;1;153;50.0;100;70;1;1;0;0;1;0
+52207;16569;1;169;117.0;170;100;2;1;0;0;1;1
+52209;19824;1;158;76.0;130;80;1;1;0;0;1;0
+52210;21983;1;152;58.0;130;90;3;1;0;1;1;1
+52211;23308;2;170;56.0;120;80;1;1;0;0;1;1
+52216;16061;1;150;60.0;110;80;1;1;0;0;1;1
+52217;20749;2;184;90.0;140;90;1;1;0;0;0;1
+52218;14620;1;156;59.0;120;80;1;1;0;0;0;0
+52220;22696;2;164;75.0;150;90;1;1;0;0;1;1
+52221;18786;2;164;90.0;170;80;2;2;0;1;1;1
+52222;21895;1;166;100.0;170;120;2;1;0;0;0;1
+52225;22171;1;168;85.0;135;95;1;1;0;0;1;1
+52226;15854;2;181;100.0;170;90;1;1;0;0;1;1
+52227;21418;2;172;85.0;110;80;1;2;0;0;1;0
+52228;19031;1;170;70.0;130;90;3;3;0;0;1;1
+52229;15962;1;159;74.0;120;80;1;1;0;0;1;0
+52230;23474;1;159;73.0;115;80;2;1;0;0;1;0
+52232;15271;1;159;108.0;120;80;1;3;0;0;1;0
+52233;22695;1;157;80.0;120;80;1;1;0;0;0;1
+52234;19558;1;168;71.0;110;70;1;1;0;0;1;0
+52236;21125;1;157;96.0;125;80;1;1;0;0;0;0
+52238;19877;1;165;73.0;140;90;1;1;0;0;1;1
+52240;21129;2;178;88.0;130;90;3;3;0;0;1;1
+52242;22907;2;170;100.0;140;90;1;1;0;0;1;1
+52243;22559;1;171;74.0;120;70;1;1;0;0;1;1
+52245;19818;1;161;70.0;110;70;1;1;0;0;1;0
+52248;15322;1;160;66.0;100;70;1;2;0;0;1;0
+52249;18332;1;180;112.0;115;80;1;1;0;0;1;0
+52250;20669;2;164;66.0;140;100;1;1;0;0;1;1
+52251;18146;2;165;90.0;145;90;1;1;1;0;1;1
+52252;19461;2;162;80.0;130;80;1;1;0;0;0;1
+52253;20387;1;163;83.0;120;80;1;1;0;0;1;0
+52254;16719;1;160;71.0;140;90;3;2;0;0;1;0
+52255;17658;2;164;74.0;140;80;1;1;0;0;0;1
+52256;22061;2;165;82.0;200;120;1;1;0;0;1;1
+52257;15211;1;166;68.0;110;70;1;2;0;0;1;0
+52258;21889;2;167;74.0;120;80;2;1;0;0;0;1
+52259;19142;1;162;65.0;110;60;1;1;0;0;1;0
+52260;17978;2;164;73.0;110;70;1;1;0;0;0;0
+52262;22446;2;167;74.0;160;90;1;1;1;0;1;0
+52263;20449;1;149;67.0;120;80;1;1;0;0;1;1
+52264;15986;1;153;65.0;100;70;1;1;0;0;1;0
+52266;21841;1;164;57.0;130;80;1;1;0;0;1;1
+52267;21679;1;165;68.0;120;80;1;1;0;0;1;0
+52271;22552;1;160;58.0;120;80;1;2;0;0;1;0
+52272;23323;1;162;70.0;140;90;2;1;0;0;1;1
+52274;22550;1;161;93.0;120;80;1;1;0;0;1;0
+52278;22029;2;170;77.0;130;80;1;1;0;1;1;0
+52279;16037;1;161;62.0;120;79;1;1;0;0;1;0
+52281;14648;1;168;65.0;120;80;1;1;0;0;1;0
+52283;21778;2;170;64.0;110;70;1;1;0;0;1;1
+52286;18374;1;162;75.0;130;80;2;1;0;0;0;1
+52287;14681;2;163;75.0;110;70;1;1;0;0;1;0
+52291;20581;1;153;71.0;120;80;1;1;0;0;1;1
+52292;21165;1;160;60.0;120;80;1;1;0;0;1;0
+52294;21995;1;150;55.0;120;70;1;1;0;0;1;0
+52297;23687;2;163;55.0;120;80;3;1;1;0;1;1
+52298;15607;1;165;46.0;100;70;1;1;0;0;1;0
+52299;22669;2;165;65.0;120;80;1;1;0;0;0;0
+52300;20014;1;172;68.0;120;80;1;1;0;0;1;0
+52303;22160;2;175;83.0;120;80;1;1;1;1;1;0
+52306;21804;1;160;70.0;140;90;1;1;0;0;0;0
+52307;20919;2;178;90.0;120;80;1;1;0;0;1;0
+52313;19808;1;154;80.0;180;100;1;3;0;0;0;1
+52314;21939;1;156;61.0;110;75;1;1;0;0;1;0
+52315;23420;1;149;51.0;150;90;2;1;0;0;1;1
+52316;15515;1;160;59.0;120;80;1;1;0;0;1;0
+52319;14677;1;160;60.0;120;80;1;1;0;0;1;1
+52321;20290;2;176;78.0;120;80;1;1;0;1;1;0
+52323;16084;2;175;61.0;110;85;1;1;0;0;1;0
+52325;21826;2;165;85.0;150;90;1;3;1;0;1;1
+52326;18807;1;173;76.0;130;70;1;1;0;0;0;0
+52327;21696;2;168;70.0;120;70;2;1;0;0;1;1
+52331;21350;2;177;80.0;180;90;1;2;0;0;1;1
+52332;21793;1;163;63.0;120;80;1;1;0;0;1;1
+52334;21963;2;174;75.0;130;90;3;1;0;0;1;1
+52335;23305;1;164;74.0;150;80;1;1;0;0;0;1
+52336;17630;1;163;81.0;110;90;2;1;0;0;1;0
+52337;20300;2;174;70.0;120;80;1;1;0;0;1;0
+52338;21698;1;166;106.0;120;80;1;1;0;0;1;1
+52341;21214;1;158;78.0;120;80;1;1;0;0;1;0
+52343;21180;1;163;61.0;120;80;1;1;0;0;1;0
+52344;23109;2;170;72.0;150;90;1;1;0;0;1;1
+52345;21857;1;147;83.0;120;90;2;1;0;0;1;1
+52346;18200;1;172;75.0;140;100;1;1;0;0;1;1
+52347;20452;2;168;60.0;120;80;1;1;0;0;1;0
+52349;18248;1;170;59.0;120;70;1;1;0;0;1;0
+52350;21827;1;168;99.0;130;80;3;1;0;1;1;0
+52352;22367;1;164;88.0;160;100;1;1;0;0;1;1
+52353;20490;1;168;65.0;140;90;3;3;0;0;1;1
+52354;16786;2;164;70.0;120;80;1;1;0;0;1;0
+52355;19565;2;175;99.0;190;100;1;1;0;0;0;1
+52356;15256;1;164;82.0;110;70;1;1;1;0;1;0
+52357;23491;2;165;59.0;220;130;1;1;0;0;1;1
+52360;23515;2;150;63.0;140;90;1;1;0;1;1;1
+52361;14502;2;189;98.0;130;80;3;3;0;0;1;1
+52362;21891;1;168;59.0;120;80;1;1;0;0;1;0
+52366;23202;2;168;68.0;120;80;1;1;0;0;1;0
+52367;19611;2;185;95.0;155;105;3;1;0;0;1;1
+52369;19013;1;170;76.0;120;70;1;1;0;0;1;0
+52370;21967;1;164;58.0;110;80;1;3;0;0;1;0
+52371;15341;1;153;88.0;130;90;1;1;0;0;0;0
+52372;21906;1;155;67.0;110;80;2;2;0;1;1;1
+52373;22739;1;165;78.0;130;90;3;1;0;0;0;1
+52374;22667;1;163;63.0;120;80;1;1;0;0;0;1
+52375;23364;1;157;80.0;130;90;2;1;0;0;1;1
+52376;20582;2;164;63.0;120;80;1;1;1;0;1;0
+52381;18952;1;167;65.0;130;80;1;2;0;0;0;0
+52382;19593;1;146;86.0;130;100;3;1;0;1;1;1
+52384;21915;1;172;60.0;140;90;1;1;0;0;1;1
+52385;18422;1;170;60.0;120;80;1;1;0;0;0;0
+52388;19885;1;158;88.0;130;80;2;1;0;0;1;0
+52389;21152;1;160;58.0;160;80;1;3;0;0;1;1
+52390;23136;1;158;67.0;120;80;1;1;0;0;1;1
+52392;19517;2;186;108.0;200;110;1;1;0;0;1;1
+52393;18032;1;155;70.0;130;90;2;1;0;0;1;1
+52396;20386;2;177;52.0;110;70;1;1;0;0;1;0
+52399;15924;1;162;92.0;140;100;1;1;0;0;0;1
+52400;20387;1;165;65.0;120;79;2;1;0;0;1;1
+52401;15817;1;162;79.0;110;70;1;1;0;0;1;0
+52402;17673;2;170;66.0;120;80;1;1;0;0;1;0
+52403;21636;2;164;85.0;110;70;1;1;0;0;1;1
+52404;16833;1;165;80.0;135;90;1;1;0;0;0;1
+52406;23556;1;165;68.0;120;80;1;1;0;0;1;1
+52408;15381;1;168;103.0;120;80;1;1;0;0;1;0
+52409;14708;1;166;63.0;110;80;1;1;0;0;1;0
+52411;18263;2;180;75.0;120;80;2;1;0;0;0;0
+52413;19897;1;167;71.0;120;80;1;1;0;0;1;1
+52414;22153;2;165;60.0;110;70;1;1;0;0;0;0
+52415;18209;1;168;74.0;120;80;1;1;0;0;0;0
+52416;20570;1;159;64.0;120;80;2;1;0;0;1;1
+52417;18291;2;161;69.0;100;70;3;1;0;0;0;1
+52418;20724;1;165;73.0;110;80;1;3;0;0;1;1
+52419;20884;1;152;56.0;150;90;1;1;0;0;1;1
+52421;19186;1;151;47.0;110;80;3;3;0;0;1;0
+52422;15504;2;168;67.0;110;80;1;1;0;0;0;0
+52425;20411;1;168;70.0;130;80;1;1;0;1;1;1
+52428;20325;2;170;72.0;140;90;3;3;1;0;1;1
+52429;19663;1;169;96.0;110;70;1;1;0;0;1;0
+52430;23574;1;171;72.0;120;80;1;1;0;0;1;1
+52431;20250;1;152;57.0;80;70;1;1;0;0;1;0
+52432;15324;1;150;45.0;90;60;1;1;0;1;1;0
+52433;21125;2;185;104.0;170;100;1;3;0;0;1;1
+52434;21245;1;147;57.0;130;80;1;1;0;0;1;1
+52435;16776;1;175;59.0;120;80;1;1;0;0;1;0
+52436;20168;2;176;86.0;160;100;1;1;0;0;1;1
+52439;16869;1;171;84.0;120;80;1;1;0;0;1;0
+52440;23211;1;160;96.0;140;90;3;2;0;0;0;0
+52441;21669;1;168;75.0;120;80;1;1;0;0;1;0
+52442;21167;2;167;114.0;140;90;3;1;0;0;0;1
+52443;17391;2;164;96.0;120;80;1;1;0;0;1;1
+52445;21013;1;172;75.0;130;90;1;3;0;0;1;1
+52447;20744;2;162;64.0;110;70;1;3;0;0;1;0
+52450;17987;1;157;58.8;120;90;1;1;0;0;1;0
+52452;17488;2;171;81.0;140;100;3;3;0;0;0;1
+52453;22492;2;161;69.0;120;80;1;1;0;0;1;0
+52458;15391;1;156;110.0;120;80;2;1;0;0;1;0
+52460;19708;1;154;62.0;110;80;1;1;0;0;1;0
+52462;15987;1;156;80.0;110;70;1;1;0;1;1;0
+52463;22007;2;171;71.0;120;70;1;1;0;0;1;0
+52464;18398;1;165;65.0;120;80;1;1;0;0;1;0
+52465;14709;1;168;114.0;130;80;3;3;0;0;1;1
+52466;14326;1;164;45.0;100;70;1;1;0;0;1;0
+52467;15320;2;160;65.0;120;80;2;1;0;0;0;0
+52468;19164;1;172;76.0;120;80;1;1;0;0;1;0
+52472;19070;1;168;79.0;140;90;1;1;0;0;1;1
+52473;21805;1;158;57.0;130;80;1;1;0;0;1;1
+52474;17556;2;175;85.0;140;80;2;1;0;0;1;1
+52475;19035;2;165;73.0;120;80;1;3;1;0;1;0
+52477;19778;2;174;79.0;120;80;1;1;1;0;1;0
+52478;21208;1;152;83.0;130;80;1;2;0;0;1;0
+52479;19167;1;153;47.0;130;80;1;3;0;0;1;0
+52480;23481;1;150;81.0;110;70;1;1;0;0;0;1
+52481;17970;2;178;98.0;120;80;1;1;0;0;1;1
+52484;19066;1;172;97.0;110;80;1;2;0;0;1;0
+52485;18337;2;173;84.0;150;90;1;1;0;0;1;1
+52486;21922;1;160;60.0;120;60;1;1;0;0;1;0
+52487;18867;1;168;61.0;120;80;1;1;0;0;0;0
+52488;21367;2;178;85.0;150;1000;1;1;0;0;1;0
+52489;19810;1;160;55.0;120;80;1;1;0;0;1;1
+52490;19666;1;141;71.0;140;80;1;1;0;0;1;1
+52491;20414;1;158;89.0;140;1000;1;1;0;0;0;0
+52492;21333;2;169;65.0;120;80;1;1;0;0;1;0
+52493;20450;1;166;79.0;100;80;1;1;0;0;1;0
+52494;21119;1;158;56.0;120;80;1;1;0;0;0;1
+52495;14640;1;165;57.0;120;80;1;1;0;0;1;0
+52496;23433;2;163;69.0;110;80;1;1;1;0;0;0
+52499;20425;2;165;77.0;150;1000;2;3;0;0;1;0
+52501;18886;1;165;64.0;110;80;1;1;0;0;1;0
+52502;19627;1;165;65.0;120;80;3;3;0;0;0;1
+52503;21909;1;152;64.0;130;80;2;1;0;0;1;0
+52504;20875;2;179;129.0;140;90;2;1;0;0;0;1
+52505;18696;1;164;76.0;120;80;1;1;0;0;1;0
+52506;20523;1;150;49.0;90;60;1;1;0;0;0;1
+52507;21840;2;160;60.0;150;80;1;1;0;0;1;1
+52510;15804;1;169;75.0;130;80;2;1;0;0;1;0
+52511;21470;2;162;76.0;130;80;2;2;1;0;1;1
+52512;16123;1;167;63.0;120;80;1;1;0;0;1;0
+52513;20705;2;169;70.0;140;80;1;1;0;0;1;1
+52514;19697;1;165;68.0;120;80;1;1;0;0;1;1
+52516;20169;1;176;140.0;110;80;1;1;1;0;1;0
+52517;18093;1;160;62.0;120;80;1;2;0;0;1;0
+52518;19722;1;160;64.0;120;70;1;1;0;0;1;0
+52519;21943;1;153;77.0;120;70;1;1;0;0;1;1
+52520;22620;1;156;62.0;120;80;1;1;0;0;1;0
+52521;16892;1;166;78.0;130;80;1;1;0;0;1;0
+52522;22053;2;120;80.0;120;80;1;1;0;0;1;1
+52523;19696;1;153;54.0;160;100;1;1;0;0;1;0
+52524;21800;2;158;62.0;130;80;1;1;0;0;0;1
+52525;21738;1;157;65.0;110;70;1;1;0;0;1;1
+52526;22590;2;166;59.0;125;70;1;1;1;1;1;0
+52527;23178;1;152;54.0;174;95;1;1;0;0;1;1
+52530;19663;1;162;62.0;100;70;2;1;0;0;1;0
+52531;19755;1;153;90.0;120;80;1;1;0;0;1;1
+52532;19669;2;165;65.0;120;70;1;1;0;0;1;0
+52533;20194;1;157;80.0;150;80;3;3;0;0;1;1
+52534;18072;1;163;79.0;120;90;1;1;0;0;1;0
+52535;21746;1;148;68.0;140;90;2;1;0;0;0;1
+52538;19733;1;157;53.0;110;80;2;1;0;0;1;0
+52539;18081;2;173;52.0;100;70;1;1;0;0;1;1
+52540;18801;1;168;69.0;130;80;1;1;0;0;1;0
+52542;20151;1;157;62.0;130;80;1;1;0;0;1;1
+52543;16834;1;165;57.0;120;80;1;1;0;0;0;1
+52544;21879;1;148;69.0;120;80;1;1;0;0;1;1
+52546;22856;2;160;60.0;120;80;1;1;0;0;1;1
+52547;23135;1;169;84.0;140;90;1;1;0;0;1;1
+52549;18245;1;155;65.0;100;60;2;1;0;0;1;1
+52550;22133;1;156;97.0;130;90;2;2;0;0;0;1
+52551;18986;1;160;70.0;150;100;1;1;0;0;1;1
+52552;18903;1;170;78.0;130;90;1;1;0;0;1;1
+52553;18484;1;169;71.0;120;80;1;1;0;0;0;1
+52554;21087;1;160;60.0;120;80;1;1;0;0;1;0
+52560;19131;1;169;62.0;150;100;1;1;0;0;1;1
+52564;19630;1;161;181.0;180;1100;2;1;0;0;1;1
+52565;15337;1;170;88.0;140;100;2;2;0;0;1;1
+52569;17282;1;160;98.0;120;80;1;1;0;0;1;0
+52570;16726;1;165;63.0;110;70;1;1;0;0;1;1
+52571;22586;1;168;59.0;180;100;1;1;0;0;1;1
+52572;16060;1;157;56.0;130;85;1;1;0;0;1;0
+52573;18916;2;170;61.0;140;90;1;1;0;0;1;0
+52574;20546;1;167;60.0;130;80;2;1;0;0;0;0
+52576;19541;1;160;60.0;120;60;1;1;0;0;1;1
+52577;19800;1;161;85.0;140;90;1;1;0;0;0;1
+52580;20337;1;152;75.2;150;90;1;1;0;0;0;1
+52583;19601;1;162;79.0;130;90;1;1;0;0;1;0
+52584;18165;1;164;117.0;150;100;2;2;0;0;0;1
+52585;23213;1;154;60.0;110;80;1;1;0;0;1;1
+52586;20423;2;180;97.0;130;90;1;3;1;0;1;0
+52588;19476;1;157;72.0;140;90;1;1;0;0;1;1
+52589;19543;2;176;70.0;120;80;1;1;1;0;1;0
+52590;18178;1;153;83.0;160;100;1;1;0;0;1;0
+52592;20951;1;165;68.0;120;80;3;1;0;0;1;1
+52593;20216;2;178;74.0;90;60;1;1;0;0;1;1
+52594;18219;1;169;66.0;90;60;1;1;0;0;1;0
+52595;14691;1;162;74.0;160;90;1;1;0;0;1;1
+52596;16832;1;160;64.0;160;90;1;1;0;0;1;1
+52598;19777;2;168;88.0;120;80;2;1;0;0;1;1
+52599;21148;1;158;85.0;120;70;3;3;0;0;1;0
+52600;23465;1;152;56.0;140;80;3;3;0;0;1;1
+52602;22085;1;161;58.0;120;80;3;3;0;0;1;1
+52603;19863;1;165;65.0;120;80;1;1;0;0;0;0
+52604;19182;2;177;73.0;120;80;1;1;0;0;1;0
+52605;14616;2;169;78.0;140;80;1;1;1;0;1;1
+52606;22595;1;161;60.0;110;75;3;3;0;0;1;0
+52607;14385;1;171;79.0;100;60;2;1;1;0;1;0
+52608;18908;1;156;56.0;120;80;1;1;0;0;1;0
+52610;17532;1;153;63.0;120;80;3;1;0;0;1;1
+52614;18894;1;160;85.0;130;80;2;2;0;0;1;1
+52616;19785;1;164;63.0;140;90;1;1;0;0;1;1
+52617;20665;1;176;67.0;160;100;1;1;0;0;1;1
+52618;18990;1;163;96.0;140;100;1;1;0;0;1;0
+52619;21148;1;153;65.0;140;80;2;1;0;0;0;0
+52621;18279;2;178;78.0;120;80;1;1;0;0;1;0
+52622;14370;2;189;108.0;140;90;1;1;0;0;0;1
+52623;21699;2;173;84.0;120;90;2;2;0;0;1;1
+52624;17655;2;168;71.0;150;1100;1;1;0;0;1;0
+52626;20494;1;152;65.0;140;90;3;3;0;0;1;0
+52627;16064;2;168;55.0;120;80;1;1;0;0;0;0
+52629;16836;1;164;82.0;110;80;2;1;0;0;1;0
+52630;22621;2;170;72.0;120;60;1;1;1;1;1;0
+52631;17713;2;186;65.0;130;80;1;1;0;0;1;0
+52632;17270;1;164;90.0;110;90;1;1;0;0;1;0
+52633;19030;2;165;96.0;140;80;3;1;1;0;1;1
+52639;21982;1;151;68.0;170;100;1;1;0;0;1;1
+52640;14799;2;162;68.0;120;80;1;1;0;0;1;0
+52642;18851;1;157;79.0;160;110;3;2;0;0;1;0
+52643;20478;1;163;64.0;130;80;2;1;0;0;1;0
+52644;21042;2;166;68.0;130;80;2;1;1;1;1;0
+52645;21158;1;166;85.0;100;60;1;2;0;0;1;1
+52647;17442;1;163;87.0;140;90;1;1;0;0;1;1
+52648;19875;1;165;60.0;130;80;3;1;0;0;1;1
+52649;20335;2;165;69.0;120;80;1;1;0;0;1;0
+52650;19790;2;154;47.0;120;80;1;1;0;0;1;0
+52651;19815;2;160;60.0;120;80;3;3;0;0;1;0
+52653;19042;2;162;70.0;120;80;1;1;0;0;1;1
+52654;21860;1;163;71.0;100;60;1;1;0;0;1;1
+52655;20228;1;159;100.0;150;90;1;2;0;0;1;1
+52656;22693;1;163;72.0;120;80;1;1;0;0;1;1
+52657;16561;1;162;90.0;110;70;1;2;0;0;1;1
+52658;15428;1;177;95.0;160;80;1;1;0;0;1;0
+52659;18178;1;155;70.0;120;90;1;1;1;0;1;0
+52660;19674;1;147;69.0;120;60;1;1;0;0;1;0
+52661;23155;2;170;84.0;110;70;3;2;0;0;1;1
+52662;19508;2;171;93.0;150;100;1;1;0;0;1;0
+52664;19447;1;148;72.0;135;85;3;1;0;0;1;1
+52665;16105;1;156;78.0;140;80;1;3;0;0;1;1
+52666;19820;1;168;66.0;129;80;1;1;0;0;1;1
+52667;19705;1;160;80.0;120;80;1;1;0;0;1;0
+52668;21045;1;163;84.0;150;80;1;1;0;0;1;0
+52671;23300;1;152;69.0;160;100;2;1;0;0;0;1
+52673;15054;1;151;75.0;110;70;1;1;0;0;1;0
+52675;18854;1;155;73.0;160;100;3;1;0;0;1;1
+52676;14808;1;169;72.0;120;70;1;1;0;0;0;0
+52677;14508;2;182;130.0;160;90;2;1;1;0;0;1
+52678;19646;1;156;94.0;150;90;2;2;0;0;1;1
+52679;19581;1;158;58.0;140;80;3;3;0;0;1;1
+52680;14692;1;158;50.0;110;70;1;1;0;0;1;0
+52681;21996;1;168;70.0;140;80;2;1;0;0;0;1
+52682;19738;1;162;150.0;130;80;1;1;0;0;0;1
+52684;20667;1;164;120.0;130;90;1;1;0;0;1;1
+52685;18303;2;157;54.0;110;70;1;1;0;0;1;0
+52687;21247;2;157;80.0;180;100;1;1;0;0;0;1
+52689;15224;1;165;72.0;100;70;1;1;1;0;1;1
+52690;17409;1;158;75.0;110;80;1;1;0;0;0;0
+52691;22928;2;158;76.0;130;80;1;1;1;0;1;1
+52693;18446;1;170;75.0;140;90;1;1;0;0;1;1
+52696;17085;1;168;120.0;170;100;1;1;0;0;0;1
+52699;16887;2;169;68.0;130;90;1;2;0;0;1;0
+52701;16120;2;164;76.0;120;80;1;2;0;0;1;1
+52704;16725;2;180;82.0;120;80;1;1;0;0;1;0
+52705;19526;1;160;75.0;120;80;1;1;0;0;1;0
+52706;21320;1;164;96.0;120;80;1;1;0;0;0;1
+52707;22057;1;164;90.0;127;87;1;2;0;0;1;0
+52708;18399;2;169;57.0;120;90;1;1;1;0;1;0
+52709;19623;1;170;73.0;120;80;1;1;0;0;1;0
+52711;20442;1;168;83.0;140;80;3;3;0;0;1;1
+52712;20065;1;160;92.0;160;90;2;1;0;0;1;1
+52713;19831;1;164;77.0;120;80;1;1;0;0;1;1
+52715;20271;1;154;62.0;140;90;1;1;0;0;1;1
+52716;17070;2;162;60.0;150;90;1;1;0;1;1;1
+52717;19477;2;181;79.0;120;80;1;1;0;0;1;1
+52718;16138;1;172;70.0;140;90;1;1;0;0;1;1
+52719;19578;1;168;71.0;120;80;1;1;0;0;1;1
+52720;19609;1;156;57.0;100;70;1;1;0;0;1;0
+52722;20525;1;160;78.0;140;90;1;1;0;0;1;0
+52723;20984;1;161;70.0;130;80;2;1;0;0;1;1
+52724;15165;1;158;97.0;130;80;2;1;0;0;1;0
+52725;20612;2;175;78.0;1130;90;1;1;0;0;1;1
+52726;15477;1;159;72.0;140;80;1;2;0;0;1;1
+52727;21065;1;160;68.0;150;100;1;1;0;0;1;1
+52728;23519;1;170;71.0;120;80;1;1;0;0;1;1
+52729;19854;1;166;72.0;150;90;2;2;0;0;1;1
+52730;21828;1;174;58.0;120;80;1;1;0;0;1;0
+52731;16039;1;172;75.0;120;80;1;1;0;0;1;0
+52732;22565;1;158;80.0;130;80;1;1;0;0;1;0
+52733;14390;2;165;66.0;120;70;1;1;1;0;1;0
+52734;20671;1;165;62.0;140;80;1;1;0;0;0;1
+52735;19645;1;164;65.0;120;80;1;1;0;0;1;0
+52736;14604;2;160;60.0;120;80;1;1;0;0;1;0
+52737;16666;1;167;70.0;120;80;1;1;0;0;1;0
+52741;16512;1;160;58.0;120;80;1;1;0;0;1;0
+52742;21283;1;154;93.0;130;90;3;1;0;0;1;1
+52743;23313;1;162;74.0;170;95;1;3;0;0;1;1
+52745;23450;2;171;70.0;140;90;1;1;0;1;1;1
+52746;20532;1;164;56.0;120;80;1;1;0;0;0;1
+52747;22611;1;157;100.0;120;80;2;1;0;0;1;1
+52748;20967;1;156;76.0;130;80;1;1;0;0;0;0
+52749;20565;1;164;66.0;130;80;1;1;0;0;1;1
+52751;23392;1;145;60.0;180;80;1;1;0;0;1;1
+52752;14869;2;158;73.0;120;80;1;1;1;1;1;0
+52754;22701;1;152;54.0;150;100;2;2;0;0;1;1
+52758;15512;1;156;71.0;120;80;1;3;0;0;1;0
+52759;18899;2;174;78.0;120;80;1;1;0;0;0;0
+52760;21065;1;168;68.0;120;80;1;1;0;0;1;0
+52762;16590;1;158;58.0;110;70;1;1;0;0;1;0
+52764;23333;1;160;90.0;150;80;3;1;0;0;1;1
+52765;22405;1;152;48.0;135;85;1;1;0;0;1;1
+52766;15508;2;162;68.0;130;90;1;1;0;0;1;1
+52767;22570;1;150;60.0;140;90;1;1;0;0;1;1
+52768;23368;1;159;71.0;120;80;1;1;0;0;1;0
+52769;16133;1;158;65.0;120;80;1;1;0;0;1;1
+52771;19743;1;156;74.0;120;80;2;1;0;0;1;0
+52773;21034;1;152;82.0;120;80;1;1;0;0;1;1
+52774;19017;2;156;58.0;120;80;1;2;0;0;1;0
+52777;18164;1;168;59.0;120;80;1;1;0;0;1;0
+52778;16636;1;154;86.0;90;60;1;2;0;0;0;0
+52779;19045;2;165;73.0;150;90;1;1;0;0;1;1
+52780;20503;1;162;59.0;120;70;1;1;0;0;1;0
+52781;16018;1;153;47.0;110;60;1;1;0;0;0;0
+52784;20463;1;160;70.0;120;80;1;1;0;0;1;0
+52785;18323;1;168;74.0;120;80;1;1;0;0;1;0
+52786;21982;1;168;83.0;130;80;1;3;0;0;0;1
+52787;15404;2;168;72.0;110;80;1;1;0;0;1;0
+52788;20170;2;175;127.0;140;90;1;2;1;0;1;1
+52789;23399;2;176;85.0;140;100;3;1;0;0;0;1
+52790;19530;1;166;64.0;110;70;1;1;0;0;1;0
+52791;16909;1;168;92.0;120;80;1;1;0;0;1;0
+52793;20653;2;172;84.0;120;80;1;1;0;0;1;0
+52794;17471;2;178;74.0;110;70;1;1;0;0;0;0
+52795;19002;1;165;82.0;150;80;3;1;0;0;1;1
+52796;20501;2;175;74.0;110;70;1;1;1;0;0;1
+52797;15374;1;168;75.0;120;80;1;1;0;0;1;1
+52798;21083;1;155;63.0;130;80;1;1;0;0;1;1
+52800;18270;2;169;65.0;120;80;1;1;0;0;1;1
+52801;19628;1;161;112.0;150;90;2;2;0;0;1;1
+52802;17515;2;178;64.0;140;90;2;1;0;0;1;1
+52803;19631;1;160;65.0;110;70;2;2;0;0;1;1
+52804;21737;1;165;65.0;150;90;1;1;0;0;1;0
+52809;19757;2;170;73.0;120;80;1;1;0;0;0;0
+52810;18350;1;162;69.0;90;60;1;1;0;0;0;0
+52811;23409;1;168;66.0;140;80;1;1;0;0;0;1
+52813;18237;1;171;82.0;160;30;1;1;0;0;0;1
+52814;15489;2;175;97.0;120;80;1;1;0;0;0;0
+52815;16118;1;161;60.0;100;70;1;1;0;0;1;0
+52816;20317;1;160;74.0;150;90;1;1;0;0;1;1
+52817;21648;1;160;60.0;120;80;1;1;0;0;1;0
+52818;20305;1;160;70.0;120;80;1;1;0;0;1;1
+52819;21284;1;159;67.0;110;90;1;1;0;0;1;1
+52821;19661;1;161;65.0;140;90;3;3;0;0;1;0
+52822;21759;2;165;68.0;120;80;3;3;0;0;1;1
+52823;19719;1;165;69.0;130;60;1;1;0;0;1;1
+52824;15921;2;175;80.0;140;90;3;3;1;1;1;1
+52825;23376;1;160;75.0;130;80;1;1;0;0;1;1
+52826;16765;1;156;65.0;120;80;1;1;0;0;1;0
+52827;16847;1;164;101.0;145;90;1;1;0;0;1;1
+52828;19711;1;174;68.0;130;90;1;1;0;0;0;1
+52829;15040;2;166;53.0;140;90;1;1;0;0;1;1
+52830;22628;2;163;97.0;150;90;1;1;0;0;1;1
+52831;22079;1;165;65.0;110;80;1;1;0;0;1;0
+52832;23075;1;145;50.0;120;90;3;3;0;0;1;1
+52833;21994;2;170;80.0;140;90;1;1;0;0;1;1
+52835;22449;1;161;53.0;140;90;2;1;0;0;1;1
+52837;21931;1;168;90.0;120;80;1;1;0;0;1;0
+52838;22048;1;161;84.0;110;70;1;1;0;0;1;0
+52839;18330;1;160;59.0;120;90;1;1;0;0;1;1
+52842;19012;1;166;78.0;140;80;1;1;0;0;1;1
+52843;18428;1;168;120.0;140;90;1;1;0;0;1;1
+52845;18359;1;171;81.0;120;80;1;1;0;0;1;0
+52846;22126;1;164;66.0;120;80;1;1;0;0;1;1
+52848;18414;2;166;78.0;125;85;3;1;0;0;0;1
+52849;20975;1;167;75.0;120;80;1;1;0;1;1;0
+52850;17553;2;178;80.0;160;100;1;1;1;0;1;1
+52851;18997;1;162;58.0;120;60;1;1;0;0;1;0
+52852;15350;1;153;63.0;140;90;2;1;0;0;0;1
+52853;16059;1;164;58.0;110;70;1;1;0;0;0;0
+52855;14593;2;178;98.0;140;90;1;1;0;0;0;1
+52857;14784;1;156;65.0;110;80;1;1;0;0;1;0
+52858;20660;2;175;73.0;140;80;1;1;0;0;1;1
+52859;18350;2;170;87.0;150;90;2;2;0;0;1;1
+52860;18837;2;168;62.0;120;80;1;1;0;0;1;1
+52861;20363;1;165;65.0;120;80;1;1;0;0;0;1
+52863;14549;1;163;74.0;110;70;1;1;0;0;1;0
+52864;19614;2;168;70.0;140;90;3;3;0;0;1;1
+52865;19862;1;160;65.0;120;80;1;1;0;0;1;1
+52866;16691;1;167;90.0;110;80;1;1;0;0;0;0
+52867;19811;2;163;67.0;130;80;1;1;1;1;1;0
+52868;20203;2;175;72.0;130;90;1;1;0;0;0;0
+52869;15999;1;160;65.0;110;70;2;2;0;0;1;1
+52870;18041;1;158;59.0;130;80;2;2;0;0;1;0
+52871;21977;2;173;69.0;180;100;3;1;0;0;1;1
+52872;19611;1;165;78.0;110;60;1;1;0;0;0;0
+52873;14629;1;162;52.0;110;70;1;1;0;0;1;0
+52874;21990;1;168;82.0;130;80;1;1;0;0;1;1
+52875;16045;1;164;60.0;100;60;1;1;0;0;0;0
+52876;22686;1;162;63.0;130;80;3;1;0;0;1;1
+52877;19594;1;159;62.0;130;90;1;1;0;0;1;1
+52881;21162;2;163;63.0;120;80;1;1;0;0;1;0
+52883;19183;2;166;62.0;110;70;1;1;0;0;1;0
+52884;20460;1;178;72.0;120;70;2;2;0;0;1;1
+52885;16270;1;161;53.0;140;90;1;1;0;0;1;1
+52886;23316;1;160;76.0;160;90;1;1;0;0;1;1
+52888;16202;1;166;67.0;120;80;1;1;0;0;0;0
+52889;15908;1;165;90.0;120;80;3;3;0;0;0;1
+52892;19869;2;182;110.0;150;90;1;1;0;0;1;1
+52893;19834;1;165;76.0;120;70;1;1;0;0;0;1
+52894;20952;1;170;84.0;120;80;3;1;0;0;1;1
+52895;15458;1;164;65.0;150;90;1;1;0;0;1;1
+52896;20535;1;159;65.0;120;80;3;1;0;0;1;1
+52898;17678;2;179;85.0;120;80;1;1;0;0;1;0
+52899;18314;1;169;110.0;120;80;2;1;0;0;0;1
+52901;20657;2;165;60.0;120;80;1;1;0;0;0;1
+52903;19192;2;170;60.0;120;80;1;1;0;0;1;1
+52904;22792;1;162;72.0;100;60;2;1;0;0;0;0
+52906;19117;1;165;66.0;130;80;1;1;0;0;1;1
+52907;19066;2;172;58.0;140;90;2;1;0;0;1;1
+52908;17629;1;155;70.0;120;80;1;1;0;0;1;0
+52909;17492;1;168;69.0;130;90;3;1;0;0;1;1
+52911;19755;1;157;82.0;120;80;2;3;0;0;1;0
+52912;22111;1;171;70.0;100;70;1;1;0;0;1;1
+52914;18813;1;158;62.0;100;70;1;1;0;0;0;0
+52916;20484;1;176;68.0;140;100;3;1;0;0;1;0
+52918;18229;2;162;70.0;110;70;1;2;0;0;1;1
+52920;21142;2;179;75.0;120;80;1;1;0;0;0;1
+52921;21975;2;170;73.0;150;90;1;1;0;0;1;1
+52923;18272;1;158;73.0;140;90;1;1;0;0;1;0
+52924;15365;2;170;78.0;125;70;1;1;1;1;1;0
+52925;21302;1;177;99.0;150;100;1;1;0;0;1;1
+52926;21171;1;153;54.0;90;60;1;1;0;0;1;0
+52927;15146;1;175;65.0;120;80;1;1;0;0;0;0
+52929;19544;1;157;62.0;140;90;1;1;0;0;1;1
+52931;19081;1;154;56.0;120;80;1;1;0;0;1;1
+52933;16910;2;175;50.0;110;60;1;1;1;0;1;1
+52934;18832;2;158;78.0;150;100;1;1;0;0;1;1
+52935;20530;1;152;77.0;170;80;2;2;0;0;1;1
+52936;16803;1;169;67.0;120;80;1;1;0;0;1;0
+52940;16816;1;172;83.0;110;80;2;1;0;0;1;1
+52942;16543;1;163;72.0;110;80;1;1;0;0;0;0
+52944;16809;1;158;50.0;100;60;1;1;0;0;0;0
+52945;21978;1;168;65.0;120;80;1;1;0;0;0;1
+52946;21256;1;149;63.0;110;70;2;1;0;0;1;0
+52948;22057;1;169;74.0;120;80;1;1;0;0;1;0
+52949;14632;2;164;76.0;120;80;1;1;0;0;1;0
+52951;20218;1;150;85.0;140;90;2;2;0;0;1;1
+52952;20538;1;161;69.0;120;80;3;2;1;0;1;1
+52953;21729;1;169;66.0;120;80;1;1;0;0;1;1
+52954;16600;2;176;75.0;100;70;1;1;0;0;0;0
+52956;22082;1;156;60.0;120;80;1;1;0;0;1;1
+52957;22481;2;182;87.0;140;100;3;3;0;0;1;0
+52958;19054;1;154;83.0;120;70;1;1;0;0;1;0
+52960;22441;1;148;55.0;120;80;2;1;0;0;1;1
+52961;22035;2;180;76.0;150;90;1;1;0;0;1;1
+52962;21927;1;159;65.0;100;80;1;1;0;0;1;0
+52965;19720;1;157;75.0;130;90;1;1;0;0;1;1
+52966;23389;1;164;93.0;130;80;1;1;0;0;0;0
+52967;17500;1;162;72.0;150;90;1;2;0;0;1;1
+52969;18856;2;165;67.0;153;109;1;1;0;0;1;1
+52970;21059;1;160;95.0;140;90;3;1;0;0;1;1
+52971;23359;2;163;52.0;115;65;1;1;1;1;1;0
+52972;21152;2;162;74.0;110;70;1;3;0;0;1;1
+52974;14418;1;162;96.0;180;100;1;1;0;0;0;0
+52975;19643;2;172;70.0;120;80;1;1;0;0;1;0
+52977;19758;1;160;55.0;120;80;1;1;0;0;0;1
+52978;22654;2;171;93.0;150;90;1;1;0;0;1;1
+52979;20691;1;173;70.0;140;90;1;1;0;0;1;1
+52981;18804;1;167;65.0;120;80;1;1;0;0;1;0
+52982;19111;1;161;89.0;110;80;1;1;0;0;1;0
+52983;18325;2;170;89.0;130;90;2;1;1;0;1;1
+52984;14644;2;186;105.0;140;90;1;1;0;0;0;0
+52985;17676;1;163;70.0;120;70;1;1;0;0;1;0
+52987;21312;1;158;85.0;130;80;3;1;0;0;1;1
+52988;17348;1;160;56.0;160;70;1;1;0;0;0;1
+52989;17554;2;153;73.0;110;80;1;1;0;0;1;0
+52990;22403;1;155;92.0;152;95;3;3;0;0;1;1
+52992;21159;2;182;95.0;130;90;3;1;0;0;0;1
+52993;18786;2;171;103.0;140;90;1;1;1;0;1;1
+52995;14728;1;154;74.0;120;80;1;1;0;0;1;0
+52996;15287;1;153;48.0;120;80;1;1;0;0;0;0
+52997;19050;2;166;65.0;160;90;1;1;0;0;1;1
+52998;21675;2;173;93.0;150;90;2;1;0;0;1;1
+52999;21275;1;146;82.0;120;80;1;2;0;0;1;1
+53000;19567;1;165;69.0;110;60;1;1;0;0;1;1
+53001;19091;1;162;77.0;120;80;1;1;0;0;1;1
+53002;19790;1;165;64.0;120;70;1;1;0;0;0;1
+53005;20389;1;167;69.0;120;80;1;1;0;0;1;0
+53008;20430;2;175;90.0;120;80;1;1;0;1;1;1
+53013;15848;1;162;85.0;120;80;2;2;0;0;1;1
+53015;19509;1;175;77.0;140;90;1;1;0;0;1;1
+53017;14588;1;164;62.0;120;80;1;1;0;0;1;0
+53018;19650;2;170;74.0;110;80;1;1;1;0;1;0
+53019;19818;2;170;100.0;130;80;2;1;1;0;1;1
+53020;19151;1;160;56.0;130;90;1;1;0;0;1;1
+53021;18218;2;165;75.0;160;100;1;1;0;0;1;1
+53022;21174;1;160;70.0;140;90;3;1;0;0;1;1
+53023;19781;1;168;68.0;120;80;1;1;0;0;1;0
+53025;21927;1;159;58.0;100;70;3;1;0;0;1;0
+53026;14633;2;165;90.0;140;80;1;1;1;1;1;1
+53027;15140;1;180;86.0;100;60;1;1;0;0;1;0
+53028;17551;2;188;89.0;110;70;1;1;1;0;1;0
+53029;23431;2;175;85.0;120;80;1;1;0;0;1;1
+53032;18956;1;165;70.0;120;80;1;1;0;0;1;1
+53034;17614;2;178;90.0;120;80;1;3;0;0;1;0
+53035;20950;1;168;71.0;120;90;1;1;0;0;0;0
+53039;19786;1;160;83.0;120;80;1;1;0;0;1;0
+53040;19898;1;159;89.0;120;80;2;1;0;0;0;1
+53041;14766;1;167;99.0;125;90;1;1;0;0;0;0
+53042;23262;2;179;92.0;160;110;2;1;1;0;1;0
+53043;16657;1;165;70.0;130;90;1;1;0;0;1;1
+53044;19703;2;170;85.0;160;100;2;1;0;0;1;1
+53045;21793;1;149;82.0;170;90;3;3;0;1;1;1
+53046;19595;1;158;46.0;120;80;2;1;0;0;1;0
+53047;20487;1;164;80.0;180;100;2;1;0;0;1;1
+53048;21295;2;160;58.0;120;80;1;1;1;1;0;0
+53050;15146;2;186;75.0;150;90;2;1;1;0;0;1
+53052;17448;1;162;76.0;110;70;1;2;0;0;1;0
+53053;19824;1;163;89.0;160;100;1;1;0;0;1;1
+53055;21944;2;170;60.0;120;85;1;1;0;0;1;0
+53057;17261;1;154;90.0;100;90;2;1;0;0;1;1
+53058;20583;2;157;66.0;110;70;1;1;0;0;1;0
+53059;23245;2;170;75.0;120;80;3;1;0;0;1;1
+53060;17531;2;172;101.0;130;90;1;1;0;0;1;1
+53061;18427;1;168;70.0;110;70;1;1;0;0;1;0
+53063;20518;1;160;74.0;140;90;3;1;1;0;1;1
+53064;22525;2;174;78.0;150;70;3;3;0;0;1;0
+53065;19051;1;163;69.0;110;80;1;1;0;0;1;0
+53067;23253;1;158;84.0;160;80;3;3;0;0;1;1
+53068;19713;1;149;64.0;170;110;3;3;0;0;1;1
+53069;14449;1;155;68.0;160;100;3;1;0;0;1;1
+53070;18784;2;175;75.0;150;180;1;1;0;0;0;1
+53071;18369;1;170;66.0;110;70;1;1;0;0;1;0
+53072;22070;1;157;67.0;120;80;1;3;0;0;0;0
+53073;21827;1;155;74.0;100;70;1;1;0;0;1;0
+53074;23295;1;160;74.0;130;80;1;1;0;0;1;1
+53076;21159;1;157;80.0;130;1000;1;1;0;0;1;1
+53077;21222;1;159;65.0;170;90;2;1;0;0;0;1
+53078;16940;2;164;62.0;120;80;1;1;0;0;1;1
+53079;21030;1;165;80.0;130;80;1;1;0;0;1;0
+53080;21183;1;164;93.0;140;90;3;1;0;1;0;1
+53081;20551;2;175;76.0;130;90;1;1;0;0;0;1
+53082;23296;1;153;75.0;110;60;3;1;0;0;1;1
+53083;20626;2;176;80.0;140;8099;1;1;0;0;1;0
+53084;22039;1;146;79.0;193;118;1;1;0;0;0;1
+53085;21888;1;168;59.0;120;80;1;1;0;0;1;0
+53086;14605;1;156;62.0;100;60;1;1;0;0;1;0
+53087;18319;1;167;56.0;120;80;2;2;0;0;1;0
+53092;19136;2;167;82.0;120;80;1;1;0;0;1;0
+53093;15969;1;184;80.0;130;80;1;1;0;0;0;0
+53094;21833;1;165;65.0;120;80;1;1;0;0;1;0
+53095;21153;1;162;62.0;120;80;1;1;0;0;1;1
+53096;19895;1;167;86.0;120;80;1;1;0;0;1;1
+53097;19894;2;168;74.0;110;70;1;1;0;0;1;0
+53099;21236;2;166;85.0;150;90;1;1;0;0;0;1
+53101;18157;1;162;60.0;140;90;1;1;0;0;1;1
+53102;14454;1;165;60.0;170;10;1;1;0;0;1;0
+53103;16040;2;171;68.0;120;80;1;1;0;0;0;1
+53105;22466;1;158;74.0;160;90;1;1;0;0;1;0
+53106;21966;1;155;57.0;130;80;2;1;0;0;1;1
+53108;19483;1;162;65.0;120;80;1;1;0;0;1;1
+53109;20524;2;166;79.0;110;80;1;1;0;1;1;0
+53112;20428;1;154;68.0;120;90;1;1;0;0;1;0
+53113;18081;1;150;45.0;100;60;1;1;0;0;1;0
+53114;21352;1;167;65.0;130;90;1;1;0;0;0;0
+53115;22827;1;160;99.0;120;80;1;1;0;0;1;1
+53116;22695;2;165;61.0;130;80;1;1;0;0;0;1
+53117;20339;2;165;70.0;140;90;1;1;0;0;1;1
+53119;16665;1;166;70.0;120;80;1;1;0;0;1;0
+53120;16265;1;158;56.0;140;90;1;1;0;0;1;1
+53123;16840;1;168;90.0;130;80;1;1;0;0;1;1
+53125;21255;1;174;54.0;120;80;2;2;0;0;1;1
+53126;19019;1;160;79.0;120;80;1;1;0;0;1;0
+53127;14520;1;165;67.0;160;1000;1;1;0;0;1;0
+53128;20599;2;165;62.0;120;80;1;1;1;0;1;0
+53130;19954;1;173;70.0;120;80;1;3;0;0;1;0
+53132;21750;1;165;62.0;120;80;1;1;0;0;1;1
+53133;14507;1;159;53.0;110;80;2;1;0;0;1;1
+53134;21241;2;180;96.0;130;90;1;2;0;0;0;0
+53135;14616;2;173;72.0;120;80;1;1;0;0;0;0
+53136;21928;1;170;95.0;120;80;1;1;0;0;0;0
+53137;16001;2;170;75.0;150;80;1;1;1;0;1;1
+53139;20483;1;150;68.0;180;120;1;1;0;0;1;1
+53142;18106;2;168;86.0;140;90;3;3;0;0;1;1
+53143;19541;2;173;128.0;160;90;1;1;0;0;0;0
+53144;19494;2;166;70.0;110;80;1;1;0;0;1;0
+53145;14530;2;152;40.0;110;70;1;1;0;0;0;0
+53146;15057;1;164;79.0;110;70;1;1;0;0;1;0
+53147;19747;1;171;73.0;120;80;1;1;0;0;1;0
+53148;22007;1;164;65.0;120;80;3;3;0;0;1;0
+53149;21895;2;178;84.0;160;115;1;1;1;0;0;1
+53150;21340;2;174;83.0;125;70;1;1;1;0;1;0
+53152;19005;1;156;73.0;150;90;1;1;0;0;1;0
+53153;18344;1;161;73.0;110;90;1;1;0;0;1;0
+53156;20432;1;165;55.0;120;80;1;1;0;0;1;1
+53158;22639;1;156;45.0;150;90;1;1;0;0;1;1
+53159;18964;1;160;64.0;110;70;1;1;0;0;1;0
+53161;15983;1;165;73.0;120;80;1;1;0;0;0;0
+53162;15988;2;181;79.0;140;70;1;1;1;0;1;1
+53163;22383;1;164;75.0;120;80;1;1;0;0;1;0
+53164;15340;2;174;83.0;120;70;1;1;0;0;1;0
+53165;21711;1;175;65.0;120;80;1;1;0;0;1;1
+53166;17423;1;160;71.0;120;80;1;1;0;0;1;0
+53167;22041;1;155;97.0;140;90;1;2;0;0;1;1
+53168;20364;2;175;75.0;130;80;1;1;0;0;0;0
+53169;22089;2;159;62.0;120;80;2;1;0;0;1;1
+53170;19644;1;158;114.0;120;80;1;1;0;0;0;0
+53172;15225;1;176;79.0;120;80;1;1;0;0;0;0
+53173;21116;1;153;94.0;140;90;1;1;0;0;1;1
+53174;18268;1;165;68.0;120;80;1;1;0;0;1;0
+53175;19126;1;165;93.0;130;80;1;1;0;0;0;0
+53176;16794;1;171;68.0;120;80;1;1;0;0;1;0
+53177;15305;1;167;95.0;130;80;1;1;0;0;1;1
+53180;15464;1;154;62.0;100;60;1;1;0;0;1;0
+53181;18787;2;173;86.0;130;80;1;1;0;0;1;1
+53182;17452;1;155;104.0;150;100;1;1;0;0;1;0
+53183;19110;1;152;78.0;110;80;1;1;0;0;1;1
+53186;22894;1;152;68.0;180;100;1;2;0;0;0;1
+53188;19869;1;169;58.0;150;90;1;1;0;0;1;1
+53189;18888;1;173;59.0;110;70;1;1;0;0;1;0
+53191;17526;2;169;61.0;120;70;1;1;0;0;1;1
+53193;22725;1;168;89.0;120;82;2;2;0;0;1;1
+53194;20322;1;161;65.0;110;70;1;1;0;0;1;1
+53195;19028;2;174;95.0;130;90;3;1;1;0;0;0
+53196;21184;1;164;89.0;150;95;1;1;0;0;1;1
+53197;17281;1;160;59.0;120;80;1;1;0;0;0;0
+53198;19014;2;168;74.0;120;80;1;1;0;0;1;0
+53199;23216;1;165;98.0;150;1000;3;1;0;0;1;1
+53200;21732;1;172;76.0;120;80;1;1;0;0;1;1
+53201;21251;1;165;66.0;130;80;1;1;0;0;1;1
+53202;17422;1;163;118.0;160;100;1;1;0;0;0;0
+53204;15317;1;164;64.0;120;80;1;1;0;0;1;0
+53206;16691;1;160;55.0;110;70;1;1;0;0;1;1
+53208;19114;1;165;62.0;120;80;1;1;0;0;0;0
+53209;20488;1;168;60.0;120;80;1;1;0;0;1;0
+53210;21889;2;165;60.0;120;60;2;2;0;0;0;1
+53211;19028;1;163;61.0;120;80;1;1;0;0;1;0
+53212;15384;2;175;97.0;120;90;1;1;0;1;1;0
+53213;19178;1;171;72.0;120;80;1;1;0;0;1;0
+53214;15239;1;165;80.0;120;90;1;1;0;0;1;1
+53215;19072;1;168;68.0;120;80;1;1;0;0;1;0
+53216;23370;1;155;72.0;110;90;1;1;0;0;0;0
+53217;18125;1;152;56.0;99;71;1;1;0;0;1;0
+53218;19693;2;165;66.0;120;80;1;1;0;0;1;1
+53219;14460;2;185;95.0;150;90;1;2;0;0;1;1
+53220;20588;1;160;61.0;120;90;1;1;0;0;1;1
+53222;20658;1;156;54.0;100;70;1;3;0;0;1;0
+53223;21141;1;165;72.0;120;80;1;1;0;0;1;1
+53224;21863;1;159;61.0;140;90;2;1;0;0;0;0
+53225;17492;1;162;70.0;110;80;1;1;0;0;1;1
+53226;20955;2;167;90.0;150;90;1;1;0;0;0;1
+53227;21911;1;159;73.0;120;80;1;1;0;0;0;1
+53228;21278;2;159;57.0;120;70;1;1;0;0;0;1
+53229;17739;1;168;70.0;140;80;2;1;0;0;1;1
+53230;15892;1;174;85.0;120;80;1;1;0;0;1;0
+53231;18276;1;167;62.0;120;80;1;1;0;0;1;0
+53232;20521;1;168;64.0;130;90;3;3;0;0;1;0
+53233;21884;2;170;80.0;140;90;1;1;0;0;1;1
+53234;22605;1;162;59.0;120;70;1;1;0;0;1;0
+53235;20925;2;170;70.0;120;80;1;1;0;1;1;1
+53236;19031;1;165;98.0;120;60;1;2;0;0;1;0
+53237;20640;2;161;74.0;110;70;2;1;1;1;1;0
+53238;18268;2;184;95.0;120;80;1;1;0;0;1;0
+53240;16718;2;170;67.0;140;100;1;1;1;0;1;1
+53241;21927;1;160;70.0;140;90;1;1;0;0;1;1
+53243;16835;1;158;95.0;130;70;1;1;0;0;1;1
+53245;21182;1;163;63.0;120;80;1;3;0;0;0;1
+53249;18292;1;160;101.0;140;90;2;2;0;0;1;1
+53250;14474;1;169;71.0;110;80;1;1;0;0;0;0
+53251;18195;1;158;83.0;150;90;1;1;0;0;1;1
+53252;19074;1;172;89.0;120;80;3;3;0;0;1;0
+53253;20406;2;180;80.0;120;80;1;1;0;0;1;1
+53254;18184;2;166;69.0;130;80;1;1;1;0;1;1
+53257;21092;1;157;92.0;100;70;1;1;0;0;0;0
+53259;18334;1;169;81.0;130;80;1;1;0;0;0;0
+53260;18911;1;157;57.0;110;70;2;1;0;0;1;0
+53261;15299;2;162;77.0;160;90;3;1;0;0;1;1
+53265;20453;2;179;89.0;140;80;3;2;0;0;0;1
+53266;19565;1;177;72.0;110;80;1;1;0;0;1;0
+53267;18992;2;168;75.0;130;90;1;1;0;0;0;1
+53268;16593;2;174;74.0;130;70;1;1;0;0;1;0
+53270;23408;1;160;68.0;150;90;2;1;0;0;1;1
+53272;22738;1;160;72.0;160;90;1;1;0;0;0;1
+53273;20296;1;166;89.0;120;70;3;3;0;0;0;1
+53274;22001;1;158;62.0;140;90;2;1;0;0;1;0
+53276;21802;1;167;57.0;140;70;1;1;0;0;1;0
+53277;16045;1;169;81.0;140;90;1;1;0;0;1;1
+53278;20949;1;158;91.0;140;90;3;3;0;0;0;0
+53279;22415;1;161;58.0;100;70;1;1;0;0;1;0
+53280;19448;1;160;70.0;130;80;1;2;0;0;1;1
+53281;22091;1;166;83.5;140;80;2;1;0;0;1;1
+53283;20247;1;153;60.0;110;80;1;1;0;0;1;0
+53284;16083;1;158;71.0;110;70;1;1;0;0;1;0
+53286;23269;1;169;63.0;90;60;1;1;0;0;1;0
+53287;18141;1;165;63.0;120;80;1;1;0;0;1;0
+53288;18294;2;170;78.0;130;80;1;1;0;0;1;0
+53289;19662;1;166;65.0;110;60;1;1;0;0;1;0
+53290;19718;1;173;80.0;130;80;3;1;0;0;1;1
+53291;15364;2;166;77.0;120;80;1;1;0;0;1;0
+53292;16112;2;170;85.0;140;80;1;1;0;0;1;1
+53293;20576;1;162;74.0;110;70;1;1;0;0;0;0
+53294;19593;1;162;45.0;130;80;1;1;0;0;1;1
+53296;17397;2;174;81.0;130;80;2;1;0;0;1;0
+53297;23371;1;150;78.0;130;80;3;1;0;0;1;0
+53298;21212;2;172;68.0;120;80;1;1;1;1;1;1
+53299;22173;1;170;98.0;150;100;1;1;0;0;1;1
+53300;14578;2;155;64.3;120;70;1;1;0;0;0;0
+53303;18313;1;161;52.0;100;70;1;1;0;0;1;0
+53304;23052;1;165;72.0;140;90;1;1;0;0;1;1
+53305;19572;1;156;52.0;100;70;1;1;0;0;1;1
+53306;22515;1;156;75.0;130;80;3;1;0;0;1;1
+53309;21848;1;150;71.0;180;1000;3;1;0;0;1;1
+53310;20442;1;158;69.0;120;80;1;1;0;0;1;0
+53311;22071;1;174;85.0;140;90;1;1;0;0;0;0
+53313;19525;2;175;70.0;120;80;1;1;0;0;1;0
+53314;22626;1;170;70.0;110;70;1;1;0;0;0;0
+53316;18909;2;175;104.0;20;90;1;2;0;0;1;1
+53317;22610;1;164;82.0;140;87;1;1;0;0;1;1
+53318;22590;2;170;86.0;160;90;2;1;0;0;1;1
+53319;21822;2;178;85.0;140;80;2;1;1;0;0;1
+53322;14494;1;157;61.0;120;80;1;1;0;0;1;0
+53323;18371;2;165;80.0;130;90;1;1;0;0;1;0
+53324;18442;1;175;84.0;120;80;3;3;0;0;0;1
+53325;18968;1;162;77.0;150;90;3;1;0;0;1;1
+53327;19513;1;159;70.0;140;80;2;1;0;0;1;0
+53329;21887;2;160;66.0;130;90;1;1;0;0;1;1
+53330;19789;2;176;72.0;120;80;1;1;0;0;1;0
+53331;19045;1;166;65.0;110;70;1;1;0;0;1;0
+53332;15173;1;162;63.0;110;70;1;1;0;0;1;0
+53333;23500;1;162;78.0;120;70;1;1;0;0;1;0
+53334;22058;1;160;58.0;120;70;1;1;0;0;1;0
+53335;22438;1;169;96.0;150;100;2;1;0;0;1;1
+53336;16208;1;163;72.0;110;70;1;1;0;1;1;0
+53337;20551;2;174;83.0;120;80;2;2;0;0;1;1
+53338;18375;2;187;102.0;135;80;1;1;1;1;1;1
+53339;18286;1;178;68.0;120;80;1;1;0;0;1;0
+53340;17522;2;167;63.0;120;70;1;1;0;0;0;0
+53341;15226;2;167;74.0;110;80;1;1;0;0;1;1
+53342;16734;1;154;40.0;100;60;1;1;0;0;0;1
+53343;22318;2;164;78.0;130;90;1;1;0;0;1;0
+53344;19725;1;156;67.0;120;80;1;1;0;0;1;0
+53346;20234;2;164;68.0;120;80;1;1;0;0;1;0
+53349;15502;2;164;70.0;120;70;2;1;0;0;1;0
+53350;18142;1;153;57.0;130;80;1;1;0;1;1;0
+53352;21391;1;165;65.0;120;80;1;1;0;0;1;1
+53353;21930;2;166;70.0;140;100;2;2;0;0;0;0
+53354;20336;1;160;90.0;140;90;1;1;0;0;1;1
+53355;21735;2;165;87.0;140;90;3;3;0;0;0;0
+53356;23390;1;165;59.0;160;100;2;1;0;0;1;0
+53357;21827;2;165;65.0;120;80;1;1;0;0;0;1
+53358;19865;2;167;61.0;120;80;1;1;0;0;1;0
+53359;21911;1;156;100.0;140;90;3;2;0;0;0;1
+53360;18168;1;164;65.0;110;80;1;1;0;0;1;0
+53361;21243;2;174;76.0;120;80;1;1;1;0;0;0
+53362;18143;1;172;72.0;120;80;1;1;0;0;1;1
+53363;22492;1;156;49.0;160;90;2;1;0;0;1;1
+53364;19792;2;168;72.0;130;90;1;1;0;0;0;0
+53369;17401;1;168;68.0;120;80;2;2;0;0;0;0
+53370;20451;1;158;60.0;120;80;1;1;0;0;1;1
+53371;23198;2;174;56.0;100;80;1;1;0;0;1;0
+53372;23451;1;158;77.0;150;90;2;3;0;0;1;1
+53373;19250;2;170;65.0;120;60;2;1;0;0;1;1
+53374;21025;1;157;73.0;120;90;1;1;0;0;1;1
+53375;15052;1;163;59.0;120;80;1;1;0;0;1;0
+53376;22818;2;172;58.0;110;60;1;1;0;0;1;0
+53377;18938;1;156;67.0;120;80;1;1;0;0;1;1
+53379;23153;1;172;89.0;120;80;1;1;0;0;1;0
+53380;16061;1;164;78.0;110;70;1;1;0;0;0;0
+53381;15958;2;169;67.0;110;70;1;1;0;0;1;0
+53382;22665;2;165;71.0;110;70;1;1;0;0;1;0
+53383;15821;1;167;64.0;140;100;1;1;0;0;1;1
+53384;18348;2;171;84.0;120;80;1;1;1;1;1;1
+53386;20564;1;162;135.0;140;90;3;3;0;0;1;1
+53387;19779;2;172;68.0;120;80;1;1;0;1;1;0
+53388;21871;1;158;73.0;110;70;2;1;0;0;1;0
+53389;22051;1;105;72.0;120;70;1;3;0;0;1;0
+53391;19063;1;168;65.0;150;100;1;1;0;0;1;1
+53393;19564;2;171;74.0;180;100;1;1;1;0;1;1
+53395;21936;1;166;68.0;120;80;1;1;0;0;0;1
+53396;20549;1;167;72.0;15;80;1;1;0;0;1;1
+53398;21277;1;150;80.0;140;80;1;1;0;0;1;0
+53401;21984;2;157;60.0;110;60;3;3;0;0;1;0
+53403;18093;1;152;54.0;100;60;1;1;0;0;0;0
+53406;20356;2;170;78.0;140;80;3;3;1;0;1;1
+53407;18305;2;166;90.0;110;70;1;1;0;0;0;1
+53408;15455;2;171;81.0;130;80;2;1;1;0;0;1
+53409;22348;1;158;112.0;140;90;3;1;0;0;1;1
+53410;22745;1;168;60.0;120;80;1;1;0;0;0;1
+53411;15278;1;165;59.0;110;70;1;1;0;0;1;0
+53412;19078;1;165;80.0;160;90;1;1;0;0;1;1
+53413;17621;1;155;62.0;100;60;1;1;0;0;1;0
+53414;21263;1;168;75.0;160;90;1;1;0;0;0;1
+53415;16805;1;157;83.0;140;90;2;1;0;0;0;1
+53416;19511;1;158;68.0;110;70;1;1;0;0;1;0
+53417;18228;1;155;72.0;120;80;1;1;0;0;1;0
+53418;23293;1;169;68.0;110;70;1;1;0;1;1;1
+53419;19866;1;154;84.0;125;79;1;1;0;0;0;1
+53420;21799;2;164;84.0;120;70;3;1;0;0;1;1
+53421;19289;1;169;67.0;120;80;2;1;0;0;0;1
+53423;15117;2;170;67.0;120;80;1;1;1;0;1;0
+53424;21690;1;163;100.0;150;90;2;2;0;0;1;1
+53425;14563;2;160;69.0;110;90;3;1;0;0;0;0
+53429;21267;1;173;83.0;110;70;2;2;0;0;1;0
+53430;18823;2;165;65.0;150;90;1;1;0;0;1;0
+53431;20548;2;169;65.0;120;90;3;3;0;0;0;1
+53432;21839;2;160;72.0;140;100;1;1;1;0;1;1
+53433;19739;2;154;67.0;140;80;1;1;0;0;1;0
+53434;23212;1;164;73.0;130;90;1;1;0;0;1;1
+53435;15410;1;150;57.0;120;80;1;1;0;0;1;0
+53436;14858;1;155;75.0;130;80;1;2;0;0;1;1
+53438;14414;1;170;72.0;120;80;1;1;0;0;1;0
+53441;21237;1;152;71.0;140;90;1;1;0;0;1;0
+53443;18322;1;162;70.0;110;70;1;1;0;0;1;0
+53446;23390;1;155;65.0;150;80;1;1;0;0;1;1
+53447;23216;1;163;58.0;140;90;3;1;0;0;0;1
+53448;21750;1;163;57.0;120;80;1;1;0;0;1;0
+53449;21364;1;153;82.0;130;80;1;1;0;0;1;0
+53450;20587;1;153;62.0;140;80;1;1;0;0;1;1
+53454;20517;2;165;92.0;120;70;1;1;0;0;1;1
+53458;20619;2;172;70.0;120;80;1;1;0;0;1;0
+53459;19018;1;161;65.0;120;80;3;3;0;0;1;1
+53460;20490;1;165;72.0;120;80;1;1;0;0;1;1
+53461;18444;1;158;71.0;130;90;2;1;0;0;1;0
+53462;20599;1;165;65.0;120;80;1;1;0;0;1;0
+53463;23286;1;154;82.0;130;60;1;1;0;0;1;1
+53464;20592;1;169;70.0;120;80;1;1;0;0;1;0
+53466;22345;1;166;100.0;120;80;3;1;0;0;1;1
+53467;23388;1;149;75.0;130;90;3;3;0;0;1;1
+53468;21189;2;167;66.0;150;80;1;1;0;0;1;1
+53469;19478;1;162;65.0;113;64;1;1;0;1;1;0
+53470;16237;1;151;58.0;110;70;1;1;0;0;1;0
+53471;23287;2;160;73.0;110;80;1;1;0;0;0;0
+53472;19170;2;171;82.0;120;80;1;1;0;0;1;1
+53475;17468;1;160;73.0;120;80;1;1;0;0;1;0
+53476;23392;1;165;92.0;160;100;3;1;0;0;1;1
+53479;15194;1;164;59.0;90;60;1;1;0;0;1;0
+53481;23153;1;158;80.0;140;90;3;3;0;0;1;1
+53482;18325;2;171;80.0;120;80;1;1;0;0;1;0
+53483;18241;2;169;63.0;115;70;1;1;1;1;1;0
+53484;19465;2;176;74.0;130;80;3;3;0;0;1;1
+53485;18218;2;169;58.0;100;80;1;1;1;1;1;0
+53488;19792;1;157;74.0;110;80;1;2;0;0;1;0
+53489;16692;1;162;59.0;11;70;1;1;0;0;1;0
+53490;21725;1;152;72.0;130;80;2;2;0;0;1;0
+53491;15227;1;161;80.0;120;80;1;1;0;0;1;0
+53492;23246;1;162;56.0;120;70;1;1;0;0;1;0
+53494;19758;1;170;100.0;120;80;1;1;0;0;0;0
+53495;15927;1;157;57.0;100;80;1;1;0;0;1;0
+53496;21284;1;153;95.0;160;100;1;1;0;0;1;0
+53497;18288;1;161;69.0;160;100;2;1;0;0;1;1
+53499;21312;1;156;75.0;130;80;1;1;0;0;1;1
+53500;20337;1;161;94.0;130;70;3;3;0;0;1;1
+53501;22015;1;160;69.0;135;85;3;1;0;0;1;1
+53503;21897;1;168;71.0;150;90;1;1;0;0;1;1
+53505;19000;1;164;64.0;140;80;2;1;0;0;1;1
+53506;20481;1;161;90.0;110;80;2;1;0;0;0;0
+53507;19079;1;150;70.0;120;80;1;1;0;0;1;1
+53508;22607;1;148;72.0;140;90;1;1;0;0;1;1
+53510;19672;2;161;75.0;140;90;3;1;0;0;1;1
+53511;20257;1;166;103.0;140;90;3;3;0;0;1;0
+53512;16839;1;159;60.0;100;70;1;1;0;0;1;0
+53513;21763;1;158;67.0;150;90;1;2;0;0;1;1
+53514;21270;1;170;70.0;130;90;2;2;0;0;0;1
+53515;16935;1;165;58.0;140;90;1;1;0;0;1;0
+53516;19580;1;149;50.0;110;70;1;1;0;0;1;0
+53517;23363;1;154;65.0;110;70;1;1;0;0;1;0
+53518;19024;1;166;84.0;140;90;1;1;1;0;1;1
+53521;22605;1;178;69.0;120;80;1;1;0;0;1;0
+53523;20484;1;167;93.0;110;80;3;1;0;0;1;1
+53526;18225;2;174;67.0;110;70;1;1;0;0;1;1
+53528;18224;1;158;70.0;120;80;1;1;0;0;1;1
+53529;18401;2;168;84.0;150;80;1;1;0;0;1;0
+53530;18751;2;185;95.0;125;80;2;1;0;0;0;1
+53531;21747;1;158;67.0;140;90;1;1;0;0;1;0
+53533;21340;2;170;70.0;160;100;1;3;1;0;1;1
+53534;14658;2;173;70.0;120;80;1;1;1;0;1;0
+53535;21085;2;168;79.0;120;80;1;1;0;0;1;1
+53536;16050;1;165;118.0;150;80;1;1;0;1;1;1
+53538;16137;2;170;72.0;120;80;1;2;0;0;1;0
+53539;23419;2;170;83.0;160;80;1;1;0;0;1;1
+53540;18219;2;163;77.0;160;90;1;1;0;0;1;0
+53541;19452;1;159;63.0;140;90;2;1;0;0;1;1
+53542;21160;1;167;81.0;120;80;1;1;0;0;1;0
+53543;23268;1;160;71.0;130;80;1;1;0;0;1;0
+53544;21244;1;169;75.0;120;80;1;1;0;0;1;0
+53545;22573;1;148;92.0;140;90;1;1;0;0;1;1
+53547;17450;2;169;65.0;110;70;1;1;0;0;1;1
+53548;22484;2;175;90.0;140;90;1;1;0;0;1;1
+53549;23199;1;165;74.0;120;80;1;1;0;0;1;1
+53551;18901;1;151;62.0;120;80;1;1;0;0;1;0
+53552;19531;1;168;76.0;130;70;1;1;0;0;0;0
+53553;22688;1;159;68.0;140;80;2;1;0;0;1;0
+53554;21364;1;173;79.0;120;60;1;1;0;0;1;0
+53555;19037;1;165;73.0;120;80;1;1;0;0;0;1
+53556;19485;1;163;63.0;120;80;1;1;0;0;1;0
+53557;20382;1;158;85.0;140;80;1;1;0;0;1;0
+53558;21191;2;170;73.0;150;80;3;1;1;1;1;0
+53560;19563;1;152;68.0;120;80;1;1;0;0;1;0
+53561;22743;1;155;70.0;130;90;1;1;0;0;1;1
+53564;21877;1;160;70.0;100;60;1;1;0;0;1;0
+53565;21939;1;180;70.0;120;80;2;2;1;0;1;1
+53566;16168;1;156;61.0;120;80;1;1;0;0;1;0
+53567;15769;1;158;60.0;110;70;1;1;0;0;1;1
+53568;21323;1;162;64.0;120;80;1;1;0;0;1;1
+53569;23446;1;169;67.0;120;80;1;1;0;0;0;0
+53570;19583;2;161;62.0;130;90;3;1;0;0;1;0
+53571;19901;1;163;70.0;120;80;3;3;0;0;1;0
+53573;21720;1;153;84.0;140;90;1;1;0;0;0;1
+53574;21095;1;158;108.0;120;80;1;1;0;0;1;0
+53575;19709;1;178;70.0;140;90;3;1;0;0;1;1
+53576;16663;2;173;73.0;120;80;1;1;0;0;1;0
+53577;15390;2;176;72.0;120;80;1;1;1;0;1;0
+53578;18398;1;187;75.0;120;70;1;1;0;0;0;0
+53580;19735;1;168;83.0;140;90;1;1;0;0;1;1
+53582;14526;1;150;51.0;120;80;1;1;0;0;1;0
+53584;18033;1;163;80.0;120;70;1;1;0;0;1;0
+53585;23307;2;179;98.0;140;100;1;1;0;0;1;1
+53586;20318;2;170;78.0;110;70;1;1;0;0;1;1
+53587;20419;1;160;60.0;120;80;2;1;0;0;0;0
+53588;22650;1;145;70.0;140;100;1;1;0;0;1;0
+53589;17602;2;172;75.0;120;80;1;1;0;0;1;1
+53590;17338;1;160;58.0;120;80;1;1;0;0;1;1
+53591;19825;1;158;88.0;140;90;1;2;0;0;1;1
+53592;20402;2;171;76.0;160;1000;3;3;0;0;1;1
+53593;19651;1;163;80.0;150;90;1;1;0;0;1;1
+53594;18305;1;163;78.0;120;80;1;1;1;0;1;1
+53595;21133;1;166;65.0;120;80;1;1;0;0;1;0
+53596;23346;2;172;87.0;115;80;1;1;0;0;1;0
+53597;16817;2;167;68.0;100;60;2;1;1;0;1;0
+53600;17471;1;164;52.0;110;70;1;1;0;0;1;0
+53604;23350;2;162;70.0;140;60;1;1;0;0;0;1
+53605;21171;2;168;58.0;100;60;1;1;0;0;1;0
+53606;21218;2;159;52.0;140;80;1;1;1;0;1;0
+53607;22014;2;170;68.0;130;80;1;1;1;0;1;0
+53608;18466;1;172;68.0;120;80;1;1;0;0;0;0
+53609;19769;1;166;69.0;150;90;1;1;0;0;1;1
+53610;19045;1;168;80.0;110;70;1;1;0;0;1;0
+53611;21752;2;155;70.0;160;90;3;1;1;0;1;1
+53612;22025;1;164;58.0;135;85;3;1;0;0;0;1
+53614;15272;2;182;63.0;120;8000;1;1;0;0;0;0
+53615;19823;1;165;65.0;120;80;1;1;0;0;0;0
+53617;22536;1;159;74.0;160;80;1;1;0;0;0;1
+53618;19829;2;175;76.0;90;150;1;1;1;0;1;1
+53621;20523;1;160;60.0;120;80;1;1;0;0;1;1
+53622;20617;1;156;91.0;110;70;1;1;0;0;1;0
+53623;19886;2;172;75.0;130;80;3;1;0;0;1;1
+53624;21207;2;167;65.0;120;80;1;1;0;0;1;0
+53627;23204;1;160;66.0;120;90;1;1;0;0;0;1
+53628;21112;1;154;76.0;120;80;2;1;0;0;1;0
+53629;21804;1;175;89.0;140;90;1;1;0;0;1;1
+53630;23097;2;163;58.0;120;80;1;1;0;0;1;1
+53631;21634;1;150;48.0;80;60;1;1;0;0;1;1
+53632;20243;1;167;60.0;120;80;2;2;0;0;1;1
+53633;17488;1;156;84.0;140;90;1;1;0;0;1;1
+53634;19712;1;154;55.0;120;80;1;1;0;0;0;0
+53635;14397;1;153;91.0;120;80;1;1;0;0;1;0
+53640;21106;1;166;87.0;180;120;1;1;0;0;0;1
+53641;15188;1;154;62.0;120;80;1;1;0;0;1;0
+53644;19583;1;158;75.0;140;90;2;1;0;0;1;1
+53646;21118;1;160;66.0;110;70;3;3;0;0;1;1
+53647;19730;1;147;58.0;165;100;1;1;0;0;1;1
+53648;17586;1;155;46.0;120;80;1;1;1;0;1;0
+53649;19175;2;160;61.0;200;90;1;1;0;0;1;1
+53650;18186;1;178;99.0;110;80;1;1;1;0;0;1
+53651;21843;2;170;110.0;150;90;1;2;0;1;1;0
+53653;21339;2;170;70.0;110;69;1;1;0;0;1;0
+53656;22742;2;174;78.0;120;80;1;1;0;0;1;1
+53657;14594;1;156;65.0;120;80;1;2;0;0;0;1
+53658;19583;1;156;65.0;140;90;3;1;0;0;1;1
+53659;18963;1;144;63.0;130;90;1;2;0;0;1;0
+53660;22440;1;159;76.0;110;70;3;1;0;0;1;1
+53661;20598;1;152;65.0;160;80;1;1;0;0;0;1
+53662;18899;1;154;80.0;130;90;1;1;0;0;1;1
+53663;22492;1;160;58.0;150;100;1;1;0;0;0;1
+53664;21046;1;169;69.0;130;90;3;3;0;0;0;1
+53666;18021;1;163;55.0;120;80;1;1;0;0;1;0
+53669;18212;2;180;87.0;120;80;1;1;1;1;1;0
+53670;19909;1;162;175.0;140;1000;1;1;0;0;1;1
+53671;22045;1;163;71.0;120;80;1;1;0;0;1;1
+53672;22773;2;162;67.0;120;70;2;1;1;1;1;0
+53674;20668;2;168;65.0;120;80;1;1;0;0;0;1
+53679;17567;1;171;67.0;130;90;1;1;0;0;1;1
+53682;14688;1;152;68.0;90;70;1;1;0;0;1;0
+53683;16261;2;165;55.0;120;80;1;1;1;0;1;0
+53685;20601;2;162;63.0;130;82;2;1;0;0;1;0
+53686;19781;1;163;69.0;120;80;2;1;0;0;1;1
+53691;17566;2;170;75.0;120;80;1;2;0;0;1;0
+53692;16792;2;171;69.0;120;80;1;1;0;0;1;1
+53693;21684;1;158;72.0;120;80;3;3;0;0;1;0
+53694;15791;2;159;73.0;160;1000;2;1;0;0;1;1
+53695;21337;1;165;60.0;120;80;1;1;0;0;1;0
+53697;21146;1;160;68.0;125;80;2;1;0;0;1;1
+53698;17018;1;160;62.0;110;70;1;1;0;0;1;0
+53699;20460;2;185;90.0;110;80;1;1;0;0;1;0
+53700;20728;2;175;82.0;120;60;1;1;1;0;1;0
+53701;21444;2;168;78.0;150;100;1;1;1;0;1;0
+53702;20576;1;172;105.0;160;80;1;1;0;0;1;1
+53703;18319;2;166;84.0;120;80;2;1;0;1;1;1
+53704;19420;1;161;70.0;110;80;1;1;0;1;1;1
+53705;16928;2;160;65.0;120;80;1;1;0;0;0;0
+53708;21200;2;170;89.0;140;90;3;1;0;0;1;0
+53709;16115;1;168;65.0;110;90;1;1;0;0;0;1
+53711;18814;1;160;108.0;120;80;3;3;0;0;0;1
+53713;22650;1;165;78.0;110;70;1;1;0;0;0;1
+53714;18894;1;158;59.0;120;80;3;3;0;0;1;1
+53715;18766;1;155;64.0;120;70;1;1;0;0;1;0
+53718;19232;1;166;72.0;120;80;1;1;0;0;1;0
+53719;18244;2;191;108.0;120;80;1;1;0;0;1;0
+53720;19034;2;178;75.0;120;80;1;1;0;0;1;0
+53721;20614;2;175;65.0;140;90;1;1;0;0;1;1
+53726;17367;2;175;88.0;130;100;2;2;1;0;1;1
+53727;21374;2;178;115.0;110;80;1;1;0;0;1;0
+53728;16038;1;156;60.0;120;80;1;1;0;0;1;1
+53730;15166;2;178;83.0;120;80;1;1;0;0;1;0
+53731;18892;1;161;83.0;132;79;1;1;0;0;0;0
+53733;18239;2;159;60.0;100;70;1;1;1;1;1;0
+53735;17048;1;167;66.0;130;90;2;1;0;0;1;1
+53736;21363;1;160;60.0;120;80;1;1;0;0;1;0
+53737;23095;2;172;95.0;160;100;2;1;0;0;1;0
+53738;16935;1;165;60.0;120;80;1;1;0;0;0;0
+53739;19608;1;160;100.0;170;90;1;1;0;0;0;1
+53741;22042;1;158;78.0;130;80;3;1;0;0;1;1
+53742;16986;2;164;88.0;110;80;1;3;1;0;1;0
+53744;17334;1;163;71.0;110;70;2;1;0;0;1;1
+53745;15999;2;170;84.0;140;80;1;1;0;0;1;0
+53746;14482;1;153;86.0;110;80;1;1;0;0;0;0
+53747;20412;1;170;70.0;120;80;1;1;0;0;1;0
+53748;20488;2;156;86.0;180;100;1;1;0;0;1;1
+53750;19043;2;180;72.0;106;72;1;2;1;0;1;0
+53752;16510;2;170;60.0;150;90;1;1;0;0;0;1
+53753;18183;1;156;81.0;120;80;1;1;0;0;1;0
+53756;21919;1;160;75.0;130;70;2;1;0;0;1;0
+53757;23080;2;162;63.0;120;70;1;3;0;0;0;0
+53758;18825;1;161;73.0;120;80;1;1;0;0;1;0
+53760;20241;1;164;61.0;120;80;1;1;0;0;0;0
+53761;22562;2;167;81.0;130;80;1;3;0;0;1;0
+53762;15132;2;158;70.0;120;80;1;1;1;1;1;0
+53764;16575;1;160;74.0;110;70;1;1;0;0;1;0
+53765;21308;2;154;56.0;110;70;1;1;1;0;1;0
+53766;14726;1;168;65.0;120;80;1;1;1;1;1;0
+53769;19192;2;169;69.0;110;80;2;1;0;1;1;0
+53772;15983;2;168;68.0;120;80;1;1;0;0;1;0
+53773;20611;2;167;74.0;120;60;1;1;0;0;1;0
+53774;19692;2;174;88.0;120;80;1;1;0;0;1;1
+53775;16498;1;166;77.0;160;100;2;1;0;0;1;0
+53778;22503;1;169;59.0;110;90;1;1;0;0;0;1
+53780;20399;2;164;60.0;100;80;1;1;0;0;1;0
+53782;15166;2;176;79.0;125;80;1;1;0;0;1;1
+53784;21117;1;161;80.0;90;60;3;1;0;0;1;0
+53785;22419;1;158;89.0;130;90;2;1;0;0;0;0
+53786;19148;1;161;72.0;130;80;1;1;0;0;0;1
+53787;19116;1;164;105.0;110;70;1;1;0;0;1;0
+53788;15953;1;171;68.0;120;80;1;1;0;0;1;1
+53789;18950;1;160;82.0;120;80;1;1;0;0;1;1
+53790;21628;2;177;79.0;120;70;2;2;1;0;1;0
+53791;18979;2;170;72.0;110;80;1;1;0;0;1;0
+53792;14702;1;168;60.0;120;80;3;1;0;0;1;1
+53795;19669;1;164;76.0;150;70;1;1;0;1;1;1
+53796;20361;1;158;84.0;160;90;1;1;0;0;1;1
+53797;19682;2;165;85.0;120;90;1;1;0;0;1;0
+53798;18993;1;161;72.0;120;80;1;1;0;0;1;1
+53800;22791;1;153;70.0;100;80;3;1;0;0;1;1
+53803;19491;1;159;61.0;130;80;1;1;0;0;0;0
+53804;15272;1;162;63.0;120;80;1;2;0;0;1;0
+53805;23684;2;165;64.0;120;80;1;1;0;0;1;1
+53806;21893;1;150;61.0;140;80;1;1;0;0;1;1
+53807;17236;2;171;56.0;100;80;1;1;1;0;1;0
+53812;15371;1;152;61.0;120;70;1;1;1;0;1;0
+53813;20332;1;166;72.0;120;80;1;1;0;0;1;0
+53814;16852;2;156;52.0;90;60;1;1;0;0;1;0
+53815;22527;2;176;86.0;120;80;1;1;0;0;0;1
+53817;17572;1;158;51.0;160;1000;1;1;0;0;0;1
+53818;17573;2;171;78.0;140;90;1;1;0;0;1;1
+53819;14435;2;185;99.0;120;80;2;1;0;0;1;1
+53820;16579;1;149;78.0;130;90;1;1;0;0;0;0
+53821;20757;1;156;85.0;140;90;3;1;0;0;1;1
+53822;20299;1;159;85.0;120;80;1;3;0;0;1;0
+53824;22105;2;170;79.0;120;70;1;1;0;0;1;0
+53826;18691;1;162;110.0;130;80;1;1;1;0;0;1
+53828;18261;2;174;74.0;120;80;1;1;0;0;1;0
+53829;16762;1;178;97.0;110;80;1;1;0;0;1;0
+53830;14552;1;156;65.0;110;70;1;1;0;0;1;0
+53831;16730;1;152;71.0;130;90;1;1;0;0;1;1
+53832;22724;2;170;80.0;120;80;1;1;0;0;1;0
+53835;22052;2;168;72.0;130;90;1;1;0;0;0;1
+53836;14609;1;152;56.0;120;70;1;1;0;0;1;0
+53837;21933;1;158;102.0;120;80;3;2;0;0;1;1
+53839;20424;1;156;78.0;140;90;1;1;0;0;1;1
+53840;22403;1;163;75.0;120;80;1;1;0;0;1;1
+53841;15848;1;165;70.0;120;80;1;1;0;0;1;1
+53842;19229;2;176;80.0;160;90;1;1;0;0;1;1
+53844;18967;1;150;49.0;120;80;1;1;0;0;1;0
+53845;19686;2;175;71.0;120;80;2;1;0;0;0;1
+53846;20599;1;165;72.0;150;90;1;1;0;0;1;1
+53847;21805;2;182;70.0;120;80;1;1;1;1;1;0
+53848;21430;2;180;86.0;120;80;1;1;0;1;1;0
+53849;16066;1;169;68.0;130;80;1;1;0;0;1;0
+53851;21096;2;165;65.0;120;80;1;1;0;0;1;1
+53852;19763;1;174;69.0;120;80;1;3;0;0;1;1
+53853;21867;2;173;75.0;140;70;1;1;0;0;1;1
+53854;19644;2;180;70.0;120;80;1;1;0;0;1;0
+53855;22443;2;169;76.0;140;90;1;3;0;0;0;1
+53857;22428;2;173;76.0;140;80;3;1;0;0;1;1
+53858;17517;2;170;78.0;120;80;1;1;0;0;1;1
+53859;23360;2;182;85.0;140;90;3;1;0;0;1;1
+53860;16800;1;168;69.0;140;90;1;1;0;0;1;1
+53861;19038;2;163;67.0;140;100;2;1;0;0;1;1
+53862;18830;1;160;91.0;120;80;2;1;0;0;1;0
+53863;19807;1;148;53.0;100;80;1;2;0;0;1;0
+53864;21158;2;174;80.0;160;100;2;1;0;0;1;0
+53866;22743;1;156;108.0;140;90;3;3;0;0;0;1
+53867;21786;1;159;65.0;110;70;1;1;0;0;1;1
+53868;19107;1;165;69.0;120;80;1;1;0;0;0;0
+53869;18100;1;162;65.0;120;80;1;1;0;0;1;0
+53870;16004;1;154;102.0;130;90;3;1;0;0;1;1
+53871;14472;1;155;58.0;110;60;1;1;0;0;1;0
+53874;18160;2;170;73.0;140;80;2;1;1;1;0;1
+53875;15296;2;182;102.0;120;80;1;1;0;1;1;0
+53876;23539;1;166;69.0;160;1100;1;1;0;0;1;1
+53877;19042;1;162;65.0;110;70;1;1;0;0;1;0
+53878;18972;1;162;69.0;125;80;1;3;0;0;1;0
+53879;21833;1;165;65.0;120;79;1;2;0;0;0;0
+53880;14760;1;169;100.0;120;80;1;1;0;0;1;0
+53881;18334;1;160;51.0;120;80;1;1;0;0;0;0
+53882;15248;1;165;65.0;120;80;1;1;0;0;0;0
+53884;20994;2;160;61.0;120;80;1;1;0;0;1;0
+53885;20190;1;153;58.0;120;80;1;1;0;0;0;0
+53886;21960;2;164;54.0;120;80;2;1;0;0;1;0
+53888;17600;2;169;80.0;150;110;2;1;1;0;1;1
+53889;17488;1;167;73.0;130;90;1;1;0;0;1;1
+53890;20251;2;163;60.0;160;90;1;1;0;0;0;1
+53891;21166;1;161;78.0;120;80;1;1;0;0;1;1
+53893;22433;2;170;72.0;120;79;1;1;0;0;1;0
+53894;17203;1;154;111.0;140;90;2;2;0;0;0;1
+53895;21907;2;168;71.0;150;1000;1;1;1;0;1;1
+53897;19466;2;178;81.0;120;80;1;1;0;0;1;0
+53898;21911;1;164;67.0;120;80;1;1;0;0;0;1
+53899;16168;1;170;61.0;120;80;1;1;0;0;1;0
+53900;23481;2;182;50.0;120;80;1;1;0;0;1;0
+53901;14442;1;164;67.0;120;80;1;1;0;0;0;0
+53902;20226;1;165;71.0;140;100;2;1;0;0;1;1
+53903;16784;1;146;40.0;90;60;2;2;0;0;1;0
+53904;18131;1;158;60.0;120;80;2;1;0;0;1;1
+53905;20429;1;153;61.0;130;90;3;1;0;0;1;1
+53906;21105;2;175;73.0;140;100;1;1;0;0;1;1
+53907;20918;2;169;65.0;160;90;2;1;0;0;1;1
+53909;19181;2;168;71.0;120;80;1;1;0;0;1;0
+53910;17477;2;178;76.0;160;100;2;2;1;1;1;1
+53911;21078;1;156;93.0;120;70;3;3;0;0;1;1
+53913;21797;2;159;79.0;140;100;1;1;0;0;1;1
+53914;20460;1;166;100.0;130;80;2;1;0;0;1;0
+53915;20550;1;160;64.0;110;70;1;1;0;0;1;0
+53916;18759;1;158;81.0;120;60;1;1;0;0;0;0
+53917;20494;1;156;63.0;120;80;1;1;0;0;1;1
+53918;16601;2;175;103.0;130;80;1;1;0;0;0;0
+53919;19719;1;156;66.0;110;70;1;1;0;0;1;0
+53920;22414;2;166;66.0;120;80;1;1;0;0;1;0
+53921;23273;1;148;48.0;130;80;2;2;0;0;1;0
+53922;21084;1;165;65.0;110;70;1;1;0;0;1;1
+53923;21088;2;190;100.0;160;90;1;1;0;0;1;1
+53924;21105;1;170;81.0;130;90;1;1;0;0;1;0
+53925;22657;1;154;43.0;120;80;1;1;0;0;1;1
+53926;19087;1;168;63.0;120;70;1;1;0;0;1;0
+53928;21876;1;160;65.0;120;80;1;1;0;0;1;1
+53930;22723;1;170;87.0;160;95;1;3;0;1;0;1
+53932;20506;1;160;90.0;120;80;1;1;0;0;0;0
+53934;23101;1;155;64.0;150;90;1;1;0;0;0;0
+53935;18804;2;174;99.0;150;90;1;1;0;0;1;1
+53936;18184;1;162;56.0;120;80;1;1;0;0;1;0
+53937;21078;1;155;80.0;130;80;1;1;1;1;1;0
+53938;19645;2;170;72.0;120;80;1;2;0;0;1;0
+53941;23097;2;177;111.0;130;1003;1;1;1;0;1;1
+53942;18255;2;173;70.0;110;70;1;1;0;0;1;0
+53943;20463;1;164;70.0;150;90;1;1;0;0;1;1
+53944;16969;2;170;70.0;120;80;1;1;0;0;0;0
+53945;19667;1;159;61.0;110;70;1;1;0;0;1;0
+53946;18983;1;150;59.0;110;80;1;1;0;0;1;0
+53947;20266;1;161;87.0;130;80;1;1;0;0;1;1
+53948;18320;1;163;69.0;120;80;1;1;0;0;0;0
+53950;16909;1;165;70.0;150;80;1;1;0;0;1;1
+53952;23163;1;158;73.0;120;80;1;1;0;0;1;0
+53953;19029;1;165;73.0;110;70;1;1;0;0;1;0
+53954;21762;1;158;80.0;120;80;1;1;0;0;1;1
+53955;19820;1;165;80.0;120;80;1;1;0;0;1;0
+53956;18487;1;170;95.0;140;90;1;1;0;0;1;0
+53957;20386;1;161;62.0;130;90;1;1;0;0;1;0
+53958;19570;2;174;61.0;110;70;1;1;0;0;1;0
+53960;22378;1;157;89.0;150;90;1;1;0;0;1;1
+53961;23219;2;169;71.0;120;80;1;1;0;0;1;1
+53966;18330;2;170;83.0;120;70;2;2;0;1;1;0
+53967;20572;2;168;103.0;140;90;2;1;0;0;0;0
+53968;21421;2;171;73.0;120;80;1;1;0;0;1;0
+53970;15999;2;168;70.0;160;100;1;2;1;1;1;1
+53971;21277;2;173;74.0;120;80;1;2;0;0;1;1
+53972;16915;1;174;61.0;130;80;1;2;0;0;0;1
+53973;20936;1;165;59.0;130;90;1;1;0;0;1;0
+53974;21822;1;165;74.0;120;80;1;1;0;0;1;1
+53975;19411;1;159;102.0;120;80;1;1;1;0;0;0
+53976;21879;1;153;60.0;160;100;2;3;0;0;1;1
+53978;19706;1;149;79.0;160;70;1;1;0;0;0;1
+53979;23549;2;160;60.0;130;80;1;1;1;1;1;1
+53980;19570;2;163;83.0;200;100;1;1;0;0;1;1
+53981;19664;1;164;78.0;120;90;1;1;0;0;1;1
+53982;17729;1;165;72.0;120;80;1;1;0;0;1;0
+53983;21836;2;184;96.0;150;100;1;1;0;0;1;1
+53984;21759;2;163;65.0;120;70;1;1;1;0;1;0
+53985;19038;1;161;62.0;90;70;1;1;0;0;1;1
+53988;23137;2;174;79.0;150;110;1;1;0;0;0;1
+53990;19934;1;156;65.0;120;89;1;1;0;0;1;1
+53991;20493;1;157;69.0;120;80;1;1;0;0;1;1
+53992;17517;1;159;75.0;110;60;1;1;0;0;1;0
+53994;21285;1;170;81.0;160;80;1;1;0;0;1;1
+53996;17476;2;167;85.0;120;80;1;1;0;0;1;1
+53997;18422;1;156;55.0;90;56;2;1;0;0;1;1
+53998;21757;2;160;70.0;120;80;1;1;0;0;1;1
+53999;15305;2;169;67.0;120;80;1;1;0;0;1;1
+54000;21842;1;158;61.0;120;80;3;3;0;0;1;1
+54001;14565;2;177;81.0;120;80;1;1;0;0;1;0
+54002;18263;1;168;78.0;120;80;1;1;0;0;1;1
+54003;23057;1;169;78.0;130;90;3;1;0;0;1;1
+54004;23430;1;170;69.0;120;80;1;1;0;0;0;1
+54005;21186;1;149;88.0;160;100;2;2;0;0;1;1
+54007;22598;1;156;62.0;120;80;1;1;0;0;1;0
+54008;19003;1;158;68.0;160;100;1;1;0;0;1;0
+54010;19578;2;178;100.0;120;80;1;1;0;0;1;0
+54011;18732;2;175;85.0;120;80;1;1;0;0;0;0
+54014;14750;1;155;56.0;120;80;1;1;0;1;1;0
+54015;16107;1;162;82.0;115;80;1;1;0;0;1;0
+54017;14453;2;174;89.0;120;80;2;1;0;0;1;0
+54018;19925;2;156;64.0;130;90;2;1;0;0;1;0
+54019;18947;1;165;66.0;120;80;1;1;0;0;1;0
+54020;20558;1;170;68.0;120;80;1;1;0;0;1;0
+54021;16635;2;174;71.0;120;80;1;1;1;1;1;0
+54022;18268;1;167;87.0;120;70;1;1;0;0;1;0
+54023;18552;1;164;70.0;120;80;1;1;0;0;1;0
+54027;15879;2;172;71.0;140;90;1;1;1;0;1;1
+54032;15348;2;170;75.0;150;100;1;1;0;0;1;1
+54034;18387;1;155;60.0;150;80;1;1;0;0;1;1
+54035;22135;1;175;80.0;120;80;1;1;0;0;0;1
+54036;21051;2;158;75.0;140;90;1;1;1;0;1;1
+54037;23151;1;152;75.0;120;80;1;1;0;0;1;1
+54038;15471;2;176;78.0;120;70;1;1;0;0;0;0
+54039;16161;1;162;60.0;110;70;1;1;0;0;1;0
+54043;20454;2;174;81.0;140;90;1;1;0;0;1;0
+54044;18078;1;160;58.0;120;80;1;1;0;0;1;0
+54045;21657;1;174;135.0;140;90;1;1;0;0;0;1
+54047;22118;1;170;69.0;120;80;1;1;0;0;1;1
+54048;17663;2;168;93.0;130;90;1;1;0;0;1;0
+54049;20517;1;169;70.0;120;80;1;1;0;0;1;0
+54051;19738;1;151;65.0;120;80;1;1;0;0;1;1
+54052;19677;2;171;93.0;130;90;2;1;0;0;1;1
+54054;19082;1;162;54.0;120;80;1;1;0;0;1;0
+54055;14736;1;158;54.0;120;80;1;1;0;0;1;0
+54057;17748;1;172;68.0;110;80;1;1;0;0;1;0
+54058;17976;2;175;92.0;150;100;1;2;0;0;1;1
+54060;15261;2;165;65.0;120;80;1;1;0;0;0;1
+54061;16599;1;159;65.0;140;80;1;1;0;0;1;1
+54062;18746;1;159;80.0;130;80;1;1;0;0;1;1
+54063;15266;1;154;54.0;120;80;1;1;0;0;1;0
+54066;18222;1;168;73.0;110;70;1;1;0;0;1;0
+54067;16645;1;156;65.0;140;80;2;1;0;0;1;1
+54069;17507;2;185;104.0;120;80;1;2;0;0;1;0
+54070;21131;2;168;77.0;120;80;1;1;0;0;1;1
+54072;21036;2;164;69.0;135;90;2;1;1;0;1;0
+54073;18894;2;183;98.0;120;80;1;1;0;0;1;0
+54076;18035;1;159;85.0;110;70;1;2;0;0;1;0
+54077;23531;1;162;56.0;145;90;2;3;0;0;1;1
+54079;17292;1;170;64.0;120;75;1;1;0;0;0;0
+54080;22751;1;153;92.0;190;100;3;1;0;0;1;1
+54082;16674;1;169;69.0;150;100;1;1;0;0;1;1
+54084;18808;1;157;64.0;120;80;1;1;0;0;1;0
+54085;19546;2;165;63.0;120;80;1;1;0;0;0;1
+54087;16556;2;171;101.0;110;80;1;1;0;0;0;0
+54088;22652;1;165;94.0;140;80;2;1;0;0;1;1
+54089;19885;1;160;65.0;120;80;1;1;0;0;0;1
+54091;16884;1;166;75.0;100;70;1;1;0;0;1;0
+54092;15842;1;156;56.0;110;70;1;1;0;0;0;0
+54093;21927;2;155;52.0;160;100;2;1;0;0;1;1
+54094;18182;1;150;60.0;180;90;2;1;0;0;1;1
+54095;17478;2;166;80.0;108;78;1;1;1;0;1;0
+54096;21891;1;155;79.0;120;80;1;1;0;0;1;0
+54097;20686;1;165;70.0;100;80;1;1;0;0;1;0
+54098;21233;2;169;75.0;150;90;1;1;0;0;1;1
+54099;15945;1;155;68.0;150;90;2;1;0;0;1;1
+54100;21742;2;172;87.0;120;80;1;1;1;0;1;0
+54101;21027;2;166;91.0;150;1000;3;1;0;1;1;1
+54102;16750;1;158;96.0;140;90;1;1;0;0;0;1
+54106;17564;2;170;85.0;140;90;2;1;0;0;1;1
+54107;16657;2;170;75.0;120;80;1;1;0;0;1;0
+54109;16641;1;178;65.0;120;80;1;1;0;0;1;0
+54110;21768;1;150;40.0;120;80;1;1;0;0;1;0
+54111;22539;1;161;83.0;130;90;3;1;0;0;0;1
+54113;15786;2;175;89.0;120;70;1;2;0;0;1;0
+54115;19736;1;160;65.0;130;60;1;1;0;0;0;0
+54118;18204;1;159;50.0;130;90;2;2;0;0;1;1
+54120;19759;2;174;72.0;120;80;1;1;0;0;1;1
+54121;22710;2;164;53.0;120;80;1;2;1;0;0;0
+54124;19785;1;165;87.0;140;90;3;3;0;0;1;1
+54125;19717;1;150;75.0;150;100;1;1;0;0;0;1
+54127;21730;1;156;87.0;150;80;1;1;0;0;1;1
+54128;17745;2;172;76.0;120;80;1;1;0;0;0;1
+54129;22042;1;157;83.0;120;80;1;1;0;0;0;0
+54130;19698;1;152;84.0;150;100;3;3;0;0;1;1
+54131;20434;1;156;47.0;110;70;2;1;0;0;1;0
+54132;20527;2;170;92.0;140;90;1;2;1;0;0;1
+54133;21243;1;164;84.0;140;80;3;3;0;0;1;0
+54134;16198;1;162;73.0;100;60;1;1;0;0;1;0
+54136;20467;1;174;61.0;120;80;1;1;0;0;1;1
+54137;19059;2;158;62.0;150;90;2;2;0;0;1;1
+54138;15859;1;153;80.0;140;90;3;2;0;0;1;1
+54140;20396;2;162;73.0;120;80;2;2;0;0;1;0
+54142;21115;1;166;96.0;130;80;1;1;0;0;1;0
+54143;18056;1;165;67.0;120;80;1;1;0;0;1;0
+54145;20311;1;159;103.0;150;90;1;1;0;0;1;1
+54147;20494;2;178;60.0;110;70;1;1;1;0;1;1
+54148;21845;2;180;96.0;180;100;3;1;0;0;1;0
+54153;21929;1;162;69.0;150;100;2;1;0;0;1;1
+54154;19597;2;178;75.0;140;100;1;1;0;0;0;1
+54155;22152;1;156;86.0;120;80;1;3;0;0;0;1
+54156;17401;1;168;92.0;110;70;1;1;0;0;0;0
+54157;21053;1;168;68.0;120;80;1;1;0;0;0;1
+54158;18866;1;170;63.0;140;80;2;1;0;0;1;1
+54159;20424;1;161;102.0;130;80;1;1;0;0;0;1
+54160;23262;1;173;92.0;120;80;1;2;0;0;1;0
+54161;20531;1;165;90.0;140;90;3;1;0;0;1;1
+54162;17531;2;164;63.0;140;90;1;1;0;0;0;1
+54163;19701;2;174;89.0;150;100;2;2;0;1;1;1
+54164;21308;1;164;98.0;120;80;1;1;0;0;1;1
+54166;15413;2;180;89.0;120;80;1;1;0;0;0;0
+54168;17487;1;170;75.0;120;80;1;1;0;0;1;1
+54171;23202;2;170;74.0;120;80;3;1;0;0;1;0
+54172;22083;1;154;67.0;150;90;1;1;0;0;1;1
+54173;21150;2;167;62.0;130;80;1;1;0;0;1;1
+54174;14631;1;162;78.0;90;60;1;1;0;0;1;0
+54178;19748;1;166;72.0;130;90;1;1;0;0;1;0
+54179;20480;2;178;93.0;130;90;1;1;0;0;1;1
+54181;18111;2;174;54.0;110;90;1;1;0;0;1;0
+54182;22732;1;166;66.0;171;100;1;1;0;0;1;0
+54184;16633;1;168;79.0;120;80;2;1;0;1;1;0
+54185;16754;2;174;66.0;120;80;2;2;0;0;1;0
+54186;20454;1;147;75.0;140;90;1;1;0;0;1;1
+54188;21734;1;168;75.0;120;80;1;1;0;0;1;0
+54189;19665;2;156;52.0;140;90;3;3;1;1;0;1
+54190;14751;1;160;57.0;120;80;1;1;0;0;1;0
+54191;21270;1;161;40.0;110;70;2;1;0;0;1;0
+54192;22590;1;158;70.0;120;80;1;1;0;0;1;1
+54193;23135;2;173;95.0;120;80;2;2;0;0;1;0
+54194;20474;2;168;70.0;120;80;1;1;0;0;1;0
+54195;20480;1;158;52.0;120;80;1;1;0;0;1;1
+54196;19741;1;156;50.0;110;70;1;1;0;0;1;0
+54197;19699;2;178;92.0;120;80;1;1;0;0;1;1
+54198;21877;2;170;68.0;130;85;3;1;1;1;1;1
+54200;21213;2;165;95.0;140;90;1;1;0;1;1;0
+54201;20626;1;156;62.0;120;70;1;1;0;0;0;1
+54202;20000;1;157;82.0;120;80;1;1;0;0;1;0
+54203;15350;1;168;78.0;120;79;1;1;0;0;0;0
+54204;15984;1;167;70.0;120;80;1;1;0;0;1;0
+54205;16128;1;164;72.0;110;70;1;1;0;0;1;0
+54206;19494;1;158;63.0;140;80;3;1;0;0;1;1
+54207;19249;2;160;70.0;120;80;1;1;0;0;0;0
+54208;18311;2;170;80.0;150;80;2;1;1;0;1;1
+54211;19684;2;164;69.0;160;90;3;1;0;0;1;0
+54212;19837;1;147;63.0;130;80;1;1;0;0;1;1
+54213;19658;2;181;70.0;130;90;3;1;1;1;1;1
+54214;23416;2;170;65.0;120;80;1;1;0;0;1;0
+54215;20547;1;169;74.0;120;80;1;1;0;0;1;1
+54216;18088;1;164;70.0;120;70;3;1;0;0;1;1
+54217;14525;2;178;75.0;120;80;1;1;0;0;1;0
+54220;19471;1;160;60.0;120;80;3;3;0;0;1;0
+54221;17648;2;171;85.0;120;80;1;2;1;1;1;1
+54223;22559;1;162;63.0;130;80;1;1;0;0;1;1
+54225;16272;2;170;80.0;140;90;1;1;0;0;1;1
+54226;22536;1;150;90.0;130;90;3;1;0;0;1;1
+54228;20569;1;159;66.0;120;80;1;1;0;0;1;0
+54231;18111;1;170;61.0;120;70;1;1;0;0;1;0
+54232;21356;2;160;60.0;140;90;2;3;1;0;1;1
+54233;17999;1;164;80.0;110;70;1;1;0;0;1;0
+54234;18779;1;158;61.0;130;90;1;1;0;0;1;0
+54236;18837;2;167;119.0;120;80;2;1;0;1;0;0
+54237;18236;1;160;60.0;120;80;1;1;0;0;1;0
+54239;16787;2;162;71.0;120;80;1;1;0;0;1;0
+54240;16579;2;165;96.0;130;90;1;2;0;0;1;0
+54241;19614;1;160;79.0;180;120;1;1;0;0;1;1
+54242;18136;1;164;66.0;120;80;1;1;0;0;1;0
+54244;20413;2;162;68.0;120;80;1;1;0;0;1;1
+54245;22562;2;171;86.0;120;90;3;1;1;0;0;0
+54248;21798;1;165;62.0;120;80;1;1;0;0;1;0
+54249;15176;2;167;60.0;120;80;1;1;1;1;1;0
+54250;21224;1;149;49.0;100;60;1;1;0;0;1;0
+54252;21370;1;163;80.0;150;100;1;1;0;0;1;1
+54253;19814;1;154;70.0;120;80;1;1;0;0;1;0
+54257;16925;1;154;71.0;100;60;1;1;0;0;1;1
+54258;15792;1;176;76.0;100;60;1;1;0;0;1;0
+54259;21792;1;155;63.0;120;80;1;1;0;0;1;0
+54260;19739;2;170;75.0;140;90;1;1;1;0;1;1
+54261;19081;1;167;89.0;120;90;1;1;1;0;1;1
+54262;21080;1;160;122.0;150;90;1;1;0;0;0;1
+54263;20538;1;169;68.0;160;90;1;1;0;0;0;0
+54265;16642;1;155;53.0;120;80;1;1;0;0;1;0
+54267;16900;2;174;70.0;120;80;1;1;1;1;0;1
+54270;15289;1;158;90.0;120;80;2;1;0;0;1;0
+54271;16604;1;157;112.0;160;100;1;1;0;0;1;1
+54272;17394;1;165;70.0;110;80;1;1;0;0;0;0
+54273;21791;1;158;67.0;130;80;1;1;0;0;1;1
+54274;22143;1;157;70.0;120;80;1;1;0;0;1;0
+54275;21037;1;165;67.0;120;80;1;1;0;0;1;1
+54279;18196;1;169;65.0;120;80;1;1;0;0;1;0
+54280;16629;2;167;61.0;120;80;1;1;0;0;1;0
+54281;16748;2;169;72.0;120;80;1;1;1;0;1;0
+54282;21770;1;161;84.0;196;182;2;2;0;0;1;1
+54284;18115;1;160;62.0;120;80;1;1;0;0;1;0
+54286;15999;2;174;70.0;130;8099;1;1;0;0;0;0
+54287;16081;2;159;56.0;110;70;3;3;0;0;0;0
+54288;15968;2;165;76.0;130;90;1;1;0;0;1;1
+54289;18394;2;171;85.0;130;80;2;1;0;0;1;1
+54290;19981;1;166;77.0;140;95;3;3;0;0;0;1
+54292;19123;1;153;67.0;180;100;1;1;0;0;1;1
+54293;23408;2;172;74.0;120;80;1;1;1;0;1;1
+54294;16332;1;160;54.0;120;70;1;1;0;0;1;1
+54295;21123;2;172;80.0;120;80;1;1;0;0;1;0
+54297;17403;1;164;81.0;140;80;1;1;0;0;1;1
+54298;23426;1;157;62.0;120;80;1;1;0;0;1;1
+54299;19800;2;174;94.0;140;90;2;3;0;0;1;1
+54301;18226;1;156;71.0;140;90;2;2;0;0;1;1
+54302;21975;1;160;64.0;100;70;1;1;0;0;0;0
+54303;22495;1;169;91.0;110;70;1;1;0;0;1;0
+54304;14486;2;171;79.0;120;80;1;1;0;0;1;1
+54305;18715;1;155;62.0;120;80;1;1;0;0;1;0
+54306;16757;1;153;42.0;90;60;2;1;0;0;1;0
+54307;14644;2;163;90.0;110;80;1;1;1;1;1;0
+54308;19040;2;170;93.0;140;90;2;2;0;0;1;1
+54309;21280;1;171;78.0;120;80;1;1;0;0;1;1
+54310;17478;1;166;76.0;120;80;1;1;0;0;1;0
+54311;17602;1;155;67.0;175;90;1;1;0;0;1;1
+54312;23570;1;166;74.0;120;80;1;1;0;0;1;0
+54313;15439;1;165;60.0;110;80;1;1;0;0;1;0
+54315;18259;1;162;60.0;120;80;2;1;0;0;0;0
+54316;21756;2;158;45.0;120;80;1;1;0;0;1;0
+54317;16240;1;159;54.0;90;60;1;1;0;0;1;0
+54319;15002;2;170;71.0;120;70;1;1;0;0;1;1
+54320;16800;1;168;60.0;110;70;1;1;0;0;1;0
+54321;14814;1;164;59.0;120;80;1;1;0;0;1;0
+54322;19548;1;170;125.0;150;90;1;1;0;0;1;1
+54325;18855;1;164;107.0;120;80;1;1;0;0;0;1
+54326;19017;1;155;52.0;110;70;1;1;0;0;1;0
+54327;18076;1;178;55.0;120;80;1;1;0;0;1;1
+54328;22369;1;155;56.0;140;80;1;1;0;0;1;1
+54329;14395;1;158;46.0;110;70;1;1;0;0;1;0
+54330;16855;2;165;69.0;120;80;3;1;0;0;0;1
+54331;15477;2;175;80.0;150;80;3;3;0;0;0;1
+54332;18991;1;149;109.0;120;80;1;1;0;1;0;1
+54333;15883;2;186;130.0;150;110;2;1;0;0;0;1
+54334;20642;1;164;78.0;120;80;1;1;0;0;1;1
+54335;21927;2;176;71.0;140;100;1;1;0;0;1;0
+54338;19768;1;153;92.0;128;68;1;1;1;0;0;0
+54339;15129;2;175;88.0;120;80;2;1;0;0;1;0
+54340;17478;1;152;62.0;114;67;1;1;0;0;1;0
+54341;14559;2;168;75.0;120;70;1;1;0;0;0;0
+54342;16963;1;156;62.0;120;80;1;1;0;0;1;1
+54343;22501;1;150;65.0;120;80;1;2;0;0;1;0
+54344;22578;1;154;65.0;140;80;1;1;0;0;1;1
+54345;19454;2;174;90.0;150;100;1;1;0;0;1;1
+54346;22055;1;158;76.0;140;90;2;1;0;0;1;1
+54348;21847;1;164;80.0;140;100;1;1;0;0;1;1
+54350;14596;1;175;57.0;140;80;1;1;0;0;0;1
+54351;19543;1;158;82.0;160;120;2;1;0;0;1;0
+54352;23493;1;152;86.0;140;100;3;3;0;0;0;1
+54354;22106;2;163;65.0;110;70;1;1;0;0;1;0
+54355;19885;1;178;74.0;150;100;1;1;0;0;1;1
+54357;20995;1;162;60.0;120;80;1;1;0;0;0;1
+54358;19733;1;154;88.0;130;90;1;1;0;0;1;1
+54359;23299;1;150;60.0;110;80;1;1;0;0;0;0
+54360;19700;1;165;78.0;130;80;1;1;0;0;1;0
+54362;18992;1;160;65.0;110;70;3;3;0;0;1;0
+54363;23428;1;160;55.0;120;80;1;2;0;0;1;1
+54367;20502;1;150;83.0;140;90;1;1;0;0;1;0
+54368;19055;1;160;72.0;120;80;2;2;0;0;1;0
+54370;19056;2;169;83.0;120;80;1;1;0;0;1;1
+54371;20417;2;156;85.0;130;80;1;1;0;0;0;0
+54372;23169;1;165;65.0;120;80;1;1;0;0;0;1
+54373;20991;1;164;75.0;140;90;1;1;0;0;0;1
+54374;18977;1;162;104.0;130;90;1;1;0;0;1;0
+54375;20677;1;167;68.0;110;70;1;1;0;0;1;0
+54376;23111;2;174;86.0;180;100;3;1;1;1;1;1
+54378;15308;1;160;60.0;120;80;1;1;0;0;0;0
+54380;20321;2;168;75.0;120;80;1;1;0;0;1;0
+54381;23453;1;162;80.0;150;90;1;1;0;0;0;1
+54382;15147;1;175;82.0;120;80;1;1;0;0;1;1
+54383;23241;1;152;64.0;110;80;1;1;0;0;0;1
+54384;18268;2;160;78.0;150;90;3;3;0;0;1;0
+54385;21746;1;164;58.0;90;50;1;1;0;0;1;0
+54386;19474;1;158;75.0;110;70;1;1;0;0;1;0
+54387;22409;1;163;90.0;140;90;2;1;0;0;1;1
+54388;18881;1;160;68.0;120;70;3;3;0;0;0;0
+54390;16224;2;172;80.0;120;80;1;1;0;0;0;1
+54393;21775;1;164;83.0;120;90;3;1;0;0;0;1
+54394;20405;2;169;72.0;130;90;1;1;0;0;1;1
+54395;20984;1;165;63.0;120;80;1;1;0;0;1;1
+54396;15296;1;164;55.0;120;80;1;1;0;0;0;0
+54400;20571;2;166;48.0;120;90;2;1;0;0;1;0
+54401;20259;1;160;70.0;120;80;3;3;0;0;0;0
+54402;22202;2;161;67.0;100;80;1;1;0;0;1;0
+54404;21057;1;154;63.0;140;90;1;1;0;0;1;1
+54405;19096;1;151;75.0;120;80;1;1;0;0;1;1
+54407;21276;2;178;102.0;120;80;1;1;0;1;1;1
+54408;21846;1;168;75.0;165;90;2;1;0;0;0;1
+54409;14744;1;155;65.0;120;79;1;1;0;0;0;0
+54410;18816;1;154;73.0;120;80;1;1;0;0;1;0
+54411;15991;2;175;77.0;120;70;1;1;0;0;1;0
+54412;18884;1;165;69.0;140;90;1;1;0;0;1;0
+54413;21419;1;165;75.0;120;80;1;1;0;0;1;0
+54414;19027;1;162;52.0;100;60;2;1;0;0;1;0
+54415;22732;2;168;75.0;140;90;2;1;0;0;1;1
+54417;14510;1;163;109.0;120;80;3;3;0;0;1;0
+54418;17739;1;168;70.0;140;80;2;2;0;0;1;1
+54419;17530;2;166;84.0;140;80;1;1;1;0;1;0
+54420;18323;1;160;57.0;120;80;3;1;0;0;1;1
+54421;20486;1;152;52.0;120;80;3;1;1;0;1;1
+54422;20314;1;159;71.0;150;79;1;3;0;0;0;1
+54423;21963;1;159;98.0;120;80;1;1;0;0;1;1
+54424;19969;1;167;74.0;130;90;1;1;0;0;1;0
+54427;16847;2;158;59.0;120;80;1;1;1;1;0;0
+54428;14483;1;162;62.0;120;80;1;1;0;0;1;1
+54429;23366;2;168;67.0;140;80;1;1;0;0;1;0
+54430;14542;1;158;58.0;130;80;1;1;0;0;1;0
+54431;16584;2;175;106.0;150;100;1;1;0;0;1;0
+54433;19869;1;159;80.0;150;90;1;1;0;0;1;1
+54434;21040;1;156;66.0;110;80;3;3;0;0;1;0
+54435;20424;1;161;100.0;140;100;3;3;0;0;1;1
+54439;23369;1;161;87.0;120;80;1;1;0;0;0;1
+54441;15307;1;158;58.0;120;80;1;1;0;0;0;0
+54443;19728;1;165;70.0;120;80;1;1;0;0;0;1
+54445;21329;1;168;57.0;140;90;1;1;0;0;0;1
+54446;18393;2;184;84.0;110;70;1;1;0;0;1;0
+54448;15812;1;158;100.0;150;90;1;2;0;0;0;1
+54449;22780;2;159;56.0;120;80;1;1;0;0;0;1
+54450;21124;1;161;109.0;120;80;1;1;0;0;1;1
+54451;23386;2;168;70.0;120;80;3;3;0;0;1;1
+54454;22696;2;185;96.0;120;70;1;1;0;0;1;1
+54455;18420;2;170;63.0;140;90;2;1;0;0;1;1
+54457;22690;1;156;72.0;130;90;3;3;0;0;0;1
+54458;21960;1;147;70.0;130;90;1;1;0;0;1;0
+54459;17534;2;164;81.0;120;80;1;1;1;1;1;0
+54460;19728;2;165;65.0;120;80;1;1;0;0;1;0
+54461;22422;2;175;75.0;130;80;2;2;0;0;1;1
+54463;18151;2;172;74.0;140;90;1;1;1;1;1;1
+54464;23465;2;162;58.0;130;80;1;1;1;0;1;0
+54465;22667;1;160;63.0;120;80;1;1;0;0;1;1
+54466;21081;2;170;73.0;160;90;1;1;0;0;1;1
+54467;19078;1;156;102.0;120;90;1;1;0;0;1;0
+54468;23548;1;170;69.0;140;80;1;1;0;0;1;0
+54471;17446;1;162;72.0;110;90;2;1;0;0;1;0
+54474;18403;2;170;78.0;140;90;2;1;0;0;1;1
+54475;19185;1;159;65.0;125;85;1;1;0;0;1;0
+54476;21324;1;147;96.0;120;80;1;1;0;0;1;1
+54479;17449;1;155;70.0;125;80;1;1;0;0;0;0
+54480;20872;1;156;78.0;120;80;1;1;0;0;1;0
+54481;19492;1;155;66.0;140;80;1;1;0;0;1;1
+54482;21413;2;167;70.0;120;80;1;2;0;0;0;1
+54484;21959;1;167;70.0;120;70;1;1;0;0;1;0
+54486;18026;1;156;55.0;120;80;1;1;0;0;1;1
+54487;18194;2;175;78.0;150;90;1;1;1;0;1;1
+54489;20236;1;161;60.0;120;70;1;1;0;0;0;0
+54491;15337;1;170;60.0;120;80;1;1;1;0;1;1
+54492;18219;1;165;50.0;90;60;1;1;0;0;1;0
+54493;16663;1;170;70.0;120;80;1;1;0;0;0;0
+54494;17534;2;172;74.0;130;80;1;1;1;0;1;0
+54495;21787;1;160;72.0;140;90;1;1;0;0;1;0
+54496;15891;1;156;62.0;100;70;1;1;0;0;1;0
+54498;22103;1;165;60.0;170;60;1;1;0;0;1;1
+54501;20576;1;170;63.0;120;80;2;2;0;0;1;1
+54502;22783;1;156;43.0;150;90;2;2;0;0;1;0
+54503;23595;2;165;65.0;120;80;1;3;0;0;0;1
+54504;21289;1;159;62.0;140;90;1;1;0;0;1;1
+54505;22523;1;148;52.0;150;80;1;1;0;0;1;1
+54506;19812;1;167;67.0;120;80;1;1;0;0;1;1
+54507;22562;2;180;70.0;180;80;1;1;1;0;1;1
+54508;16649;2;165;76.0;120;80;1;1;1;0;1;0
+54509;22070;1;158;62.0;120;80;1;1;0;0;1;1
+54510;21805;2;184;96.0;140;90;1;1;1;1;1;1
+54512;17987;1;166;85.0;160;90;3;1;0;0;1;1
+54514;20651;1;169;98.0;140;90;1;1;0;0;1;1
+54516;20378;1;165;65.0;120;80;1;1;0;1;0;1
+54517;18390;2;166;71.0;120;80;1;1;0;0;1;0
+54518;17455;1;156;78.0;120;80;1;1;0;0;1;0
+54519;20289;1;163;72.0;120;80;1;1;0;0;0;1
+54521;19632;2;171;69.0;110;70;1;1;0;0;1;0
+54522;19000;2;190;103.0;120;80;1;1;0;0;1;0
+54523;21233;1;150;55.0;110;90;1;1;0;0;1;0
+54525;22608;2;166;71.0;140;90;3;3;0;0;0;1
+54526;17265;1;160;65.0;120;80;1;1;0;0;1;1
+54527;19706;1;159;69.0;120;70;2;1;0;0;1;0
+54531;17420;1;160;70.0;130;80;3;1;0;0;1;1
+54532;17568;1;165;100.0;140;90;2;2;0;0;1;1
+54533;17544;1;164;66.0;120;80;1;1;0;0;1;0
+54534;22075;2;178;85.0;150;100;1;1;0;0;0;1
+54535;16778;1;175;60.0;140;90;2;1;0;0;1;1
+54536;21921;1;157;61.0;120;80;3;1;0;0;1;1
+54537;18366;1;162;68.0;120;90;1;1;0;0;1;0
+54539;20478;1;164;92.0;130;80;3;1;0;0;1;0
+54540;18144;2;172;70.0;100;70;1;1;0;0;1;0
+54542;21828;1;155;85.0;140;90;1;1;0;0;1;0
+54544;18516;1;165;65.0;120;80;1;1;0;0;1;0
+54545;17694;1;172;82.0;110;70;1;1;0;0;1;1
+54549;20065;1;160;52.0;120;60;1;1;0;0;1;0
+54551;22045;1;168;57.0;110;70;1;1;0;0;1;1
+54552;22602;1;152;53.0;150;90;3;3;1;0;1;1
+54553;19066;1;158;60.0;160;90;1;1;0;0;0;1
+54554;14692;1;167;74.0;110;70;1;1;0;0;1;1
+54556;20392;2;170;73.0;130;90;3;2;1;0;1;1
+54557;16727;1;168;112.0;130;1000;1;1;0;0;1;1
+54559;18027;1;157;60.0;110;70;1;1;0;0;1;0
+54560;22566;2;160;68.0;150;90;2;1;0;0;1;0
+54561;16852;1;162;69.0;120;80;1;1;0;0;1;1
+54563;14930;1;168;64.0;120;80;1;1;0;0;1;1
+54565;20391;1;160;58.0;120;80;1;1;0;0;1;0
+54566;21422;2;172;88.0;150;80;3;3;0;0;1;1
+54567;18807;2;162;58.0;100;70;1;2;0;0;1;0
+54568;22740;1;150;77.0;130;90;1;1;0;0;1;1
+54569;17460;1;160;70.0;130;80;1;1;0;0;1;0
+54570;19073;2;163;84.0;140;90;1;1;1;0;1;0
+54571;20558;1;172;74.0;120;80;1;3;0;0;1;1
+54572;23367;1;165;70.0;135;90;3;3;0;0;1;1
+54573;19049;1;158;60.0;110;70;1;1;0;0;1;0
+54574;20639;1;158;60.0;120;80;1;1;0;0;1;1
+54576;21865;1;154;88.0;110;70;1;1;0;0;1;0
+54577;19626;1;170;68.0;120;80;1;1;0;0;1;0
+54578;23441;2;170;75.0;120;80;2;2;0;1;1;1
+54579;19637;2;188;96.0;130;90;1;3;0;0;0;0
+54580;22376;1;145;47.0;140;90;3;3;0;0;0;0
+54584;16832;2;168;86.0;140;70;1;1;0;0;1;1
+54585;19784;1;158;83.0;140;90;1;1;0;1;1;1
+54586;21856;1;145;60.0;160;90;3;2;0;0;1;1
+54588;22010;2;168;70.0;120;80;1;1;0;0;1;0
+54590;19779;1;162;85.0;150;90;1;1;0;0;0;1
+54592;22373;2;169;74.0;130;85;1;1;0;0;1;1
+54594;22801;2;149;53.0;120;79;1;1;0;0;1;0
+54595;16160;1;165;80.0;11;70;1;1;0;0;0;0
+54596;20503;1;154;79.0;130;90;1;1;0;0;0;1
+54597;20940;1;165;105.0;140;90;1;1;0;0;0;1
+54598;19679;2;179;90.0;120;80;1;1;0;0;1;0
+54601;15322;2;178;88.0;180;100;1;1;0;0;1;1
+54602;23290;1;163;76.0;130;80;1;1;0;0;1;0
+54603;19548;1;168;65.0;120;80;1;1;0;0;1;0
+54604;23273;1;166;70.0;160;100;1;1;0;0;1;1
+54605;19671;1;156;56.0;120;80;1;1;0;0;1;0
+54607;21871;2;160;60.0;125;70;1;1;1;0;1;0
+54610;21875;1;178;76.0;135;95;1;1;0;0;1;1
+54611;17407;2;171;86.0;110;80;1;1;0;0;0;0
+54612;21658;1;156;70.0;150;809;2;2;0;0;1;0
+54613;18959;1;158;56.0;120;80;2;1;0;0;1;0
+54615;17680;2;176;82.0;120;80;1;1;0;0;1;0
+54616;16311;1;169;67.0;120;80;1;1;0;0;0;0
+54617;17584;1;165;68.0;120;70;1;1;0;0;1;0
+54619;19431;1;171;83.0;110;80;1;1;0;0;1;0
+54620;18432;1;170;61.0;120;80;3;3;0;0;1;0
+54621;21788;1;156;70.0;120;80;1;1;0;0;1;0
+54623;18163;1;152;62.0;120;80;1;1;0;0;1;0
+54625;21679;1;164;72.0;80;140;1;1;0;0;1;0
+54626;18763;2;170;89.0;180;100;1;1;0;0;1;1
+54627;21375;1;159;126.0;120;70;2;1;0;0;1;1
+54628;18792;1;157;67.0;140;90;1;1;0;0;1;0
+54629;20570;2;180;80.0;120;80;3;3;0;0;0;0
+54632;22822;1;169;68.0;90;60;1;1;0;0;1;0
+54634;20336;2;180;55.0;120;80;1;1;0;0;1;0
+54635;23407;1;160;67.0;150;90;1;1;1;0;1;0
+54636;18343;1;165;56.0;120;60;1;1;0;0;1;0
+54637;19557;2;165;65.0;120;80;1;1;0;0;1;0
+54639;19615;2;158;76.0;160;80;2;1;0;0;1;1
+54641;18904;2;166;64.0;110;70;1;1;1;0;1;0
+54643;22707;1;165;91.0;140;80;1;1;0;0;1;1
+54644;20464;1;160;54.0;130;80;1;1;0;0;1;1
+54646;21052;2;173;92.0;130;90;2;1;0;0;1;1
+54650;18786;1;145;69.0;120;80;1;1;0;0;1;0
+54651;20402;1;170;68.0;120;80;1;1;0;0;1;0
+54653;19973;2;178;94.0;120;80;1;1;0;0;1;1
+54654;18988;1;163;68.0;150;90;1;1;0;0;1;1
+54655;15798;2;160;60.0;110;70;2;1;0;0;1;0
+54656;21056;2;172;100.0;130;810;2;2;1;1;1;1
+54658;20520;1;168;63.0;120;85;1;1;0;0;1;0
+54659;21758;1;167;69.0;120;80;1;1;0;0;1;1
+54660;22071;1;168;71.0;120;80;1;1;0;0;1;0
+54663;21897;1;165;63.0;130;90;1;1;0;0;1;0
+54666;19060;1;168;81.0;130;90;1;1;0;0;1;1
+54668;19493;2;171;60.0;120;90;1;1;0;0;1;0
+54669;21729;2;165;63.0;130;90;2;1;1;1;1;1
+54670;15250;1;164;53.0;100;60;1;1;0;0;1;0
+54671;18877;1;153;68.0;120;80;1;1;0;0;1;0
+54673;21787;1;162;74.0;130;90;3;1;0;0;1;1
+54674;23220;1;152;85.0;140;90;1;3;0;0;0;1
+54675;23157;1;152;78.0;150;90;2;1;0;0;0;1
+54676;21792;2;168;70.0;130;80;1;1;0;0;1;0
+54679;19475;1;160;60.0;120;60;1;1;0;0;1;1
+54680;19784;1;159;96.0;150;80;1;1;0;0;1;1
+54681;21620;2;166;94.0;110;80;3;2;0;0;0;1
+54683;18022;1;160;56.0;110;70;1;1;0;0;0;0
+54684;19792;1;163;70.0;120;80;2;1;0;0;1;0
+54685;18155;1;158;62.0;120;80;1;1;0;0;0;0
+54687;17715;2;159;62.0;140;90;2;3;0;0;1;1
+54688;16626;2;176;89.0;130;90;1;1;0;0;0;1
+54689;17380;2;177;63.0;140;90;3;1;0;0;1;1
+54690;22553;2;168;63.0;130;80;1;1;1;1;1;1
+54693;20285;1;160;77.0;130;80;3;1;0;0;0;0
+54694;16986;1;165;72.0;130;80;1;1;0;0;0;1
+54695;19743;1;173;86.0;120;80;1;1;0;0;1;1
+54696;20532;1;150;74.0;120;80;1;1;0;0;1;0
+54701;18980;2;172;68.0;150;80;1;1;1;1;1;1
+54702;21979;1;156;84.9;140;90;1;1;0;0;1;1
+54704;16809;1;157;52.0;120;70;1;1;0;0;1;0
+54707;19720;1;158;91.0;140;90;1;1;0;0;1;1
+54708;19732;1;167;65.0;120;80;1;1;0;0;1;0
+54709;21316;2;180;85.0;170;100;1;1;0;1;1;1
+54711;19729;1;158;67.0;180;120;3;3;0;0;0;0
+54712;21089;1;170;68.0;120;80;1;1;0;0;1;0
+54713;21769;2;184;97.0;160;110;1;1;0;0;1;1
+54714;21248;1;157;75.0;120;80;1;3;0;0;1;0
+54716;15483;1;175;75.0;100;70;1;1;0;0;1;0
+54717;22649;1;142;56.0;160;80;1;1;0;0;0;1
+54720;21335;1;159;53.0;110;70;1;1;0;0;1;0
+54721;23385;1;158;62.0;130;80;1;1;0;0;1;0
+54724;19549;1;155;61.0;145;90;1;1;0;0;1;1
+54725;18989;1;160;78.0;120;80;3;1;0;0;1;0
+54729;22089;1;165;81.0;120;80;1;1;0;0;1;0
+54730;17729;1;165;65.0;120;80;1;1;0;0;0;0
+54732;17427;1;167;78.0;130;80;1;1;0;0;1;1
+54733;21975;1;156;54.0;110;70;2;1;0;0;1;0
+54734;20385;1;161;74.0;120;80;1;1;0;0;1;1
+54735;18285;2;165;60.0;120;80;1;1;0;0;1;0
+54737;20347;1;152;74.0;130;80;1;1;0;0;1;1
+54738;23241;2;161;79.0;120;80;1;1;0;0;0;0
+54739;21804;1;156;100.0;140;90;1;1;0;0;0;1
+54741;18981;2;170;90.0;140;90;1;2;0;0;1;1
+54743;15209;2;161;63.0;110;70;1;1;0;0;1;0
+54745;21250;2;165;65.0;150;90;1;1;0;0;0;1
+54747;21070;1;170;82.0;150;100;1;1;0;0;1;0
+54748;16303;1;153;57.0;90;60;1;1;0;0;1;0
+54749;21647;2;167;91.0;120;80;1;1;0;0;1;1
+54750;21187;1;159;80.0;140;90;3;1;0;0;1;1
+54752;18192;2;164;56.0;120;80;1;1;1;1;1;0
+54753;14556;2;175;89.0;100;70;2;1;0;0;1;0
+54754;16125;1;151;64.0;110;70;1;1;0;0;1;1
+54755;18873;2;175;73.0;185;90;1;1;0;0;1;1
+54757;15256;1;152;76.0;100;69;1;1;0;0;1;0
+54758;14662;1;164;86.0;140;90;1;1;0;0;0;0
+54759;19743;1;157;65.0;120;80;1;1;0;0;1;0
+54761;18845;1;159;85.0;110;80;1;1;0;0;1;0
+54763;19496;1;163;82.0;120;80;1;1;0;0;1;0
+54764;18252;2;137;68.0;110;70;1;1;0;0;0;0
+54765;17286;1;167;74.0;120;80;1;1;0;0;1;0
+54767;15228;1;163;74.0;140;90;1;1;0;0;1;1
+54769;21128;1;158;60.0;90;70;1;1;0;0;0;0
+54771;18882;1;167;69.0;130;90;1;1;0;0;0;1
+54772;22433;1;158;66.0;120;80;1;3;0;0;0;1
+54773;15342;1;153;54.0;100;60;1;1;0;0;1;0
+54776;15949;1;166;67.0;110;70;1;1;0;0;1;0
+54777;15565;1;172;86.0;120;80;1;1;0;0;0;0
+54778;15097;2;169;65.0;110;80;1;1;1;0;1;0
+54780;23208;2;170;81.0;148;0;1;1;0;0;1;0
+54781;20424;1;165;65.0;160;100;1;1;0;0;1;1
+54782;21101;1;170;61.0;120;80;1;1;0;0;1;1
+54783;20332;2;173;81.0;160;90;1;1;0;0;1;1
+54784;20317;2;172;69.0;130;90;1;1;0;1;1;1
+54786;22524;2;165;65.0;120;80;1;1;0;0;0;1
+54787;19637;2;174;79.0;120;80;1;3;0;0;0;1
+54789;15804;1;160;75.0;110;50;1;1;0;0;1;0
+54790;17631;1;165;69.0;120;80;1;1;0;0;1;1
+54792;16648;2;172;67.0;120;80;1;1;0;1;1;0
+54793;21250;1;164;72.0;120;80;1;1;0;0;1;0
+54794;18263;1;158;88.0;120;80;1;1;0;1;1;0
+54796;19769;2;176;80.0;155;100;3;3;0;0;1;1
+54803;22555;2;178;85.0;130;90;1;1;1;0;1;0
+54805;21231;2;175;87.0;160;1100;2;1;0;0;1;1
+54806;21180;1;165;70.0;130;70;1;1;0;0;1;1
+54808;21381;1;156;65.0;130;80;3;3;0;0;1;0
+54809;21001;1;154;71.0;120;70;1;1;0;0;0;0
+54810;20555;1;178;96.0;130;80;1;1;0;0;0;0
+54812;21200;2;174;115.0;160;70;1;1;0;0;1;1
+54813;16096;1;171;90.0;120;80;1;1;0;0;1;0
+54814;21962;1;161;79.0;150;90;1;1;0;0;1;1
+54816;20454;1;159;72.0;115;80;1;1;0;0;1;1
+54817;18390;2;178;91.0;90;80;2;1;1;1;1;0
+54818;21146;1;158;78.0;120;70;2;1;0;0;1;1
+54819;18331;2;177;85.0;180;100;1;1;0;0;1;1
+54821;16005;2;171;87.0;120;80;2;1;0;0;0;1
+54823;15927;1;157;70.0;120;80;1;1;0;0;1;0
+54824;23429;2;170;86.0;110;80;3;1;0;0;1;1
+54829;19690;2;174;79.0;120;80;1;1;1;0;1;1
+54830;14907;1;160;60.0;120;80;3;3;0;0;0;0
+54832;22017;1;153;51.0;110;70;1;1;0;0;0;0
+54833;19065;1;166;80.0;130;90;1;1;0;0;1;0
+54834;16855;2;172;67.0;110;70;2;1;0;0;1;0
+54836;18387;2;170;80.0;140;90;1;1;0;0;1;1
+54837;18162;1;153;62.0;110;70;1;1;0;0;0;0
+54838;19001;2;166;67.0;150;100;1;1;0;0;1;0
+54839;19844;1;166;115.0;130;90;2;1;0;0;1;0
+54841;18322;1;150;80.0;110;70;1;1;0;0;1;0
+54842;16694;1;157;91.0;110;80;1;1;0;0;1;0
+54843;20274;1;188;65.0;151;92;1;1;0;0;1;1
+54844;19585;1;168;51.0;120;80;1;1;0;0;0;0
+54845;19595;1;166;94.0;120;80;2;1;0;0;0;0
+54847;23513;1;164;110.0;130;80;2;2;0;0;1;0
+54848;19505;1;165;94.0;150;90;2;1;0;0;0;1
+54849;18338;1;160;65.0;110;80;1;1;0;0;1;0
+54850;16856;2;158;75.0;150;100;2;1;0;0;1;1
+54851;21809;1;154;32.0;110;60;1;1;0;0;1;0
+54852;15945;2;171;64.0;100;60;1;1;0;0;1;0
+54853;19948;2;169;74.0;120;80;1;1;0;0;1;0
+54854;19037;1;165;78.0;130;80;1;1;0;0;1;1
+54855;20349;2;169;68.0;110;60;2;1;0;0;1;0
+54857;19791;1;168;69.0;110;70;1;1;0;0;1;0
+54858;21789;1;157;75.0;160;90;2;1;1;0;1;1
+54860;18290;2;171;51.0;140;80;3;1;1;1;1;1
+54861;21233;1;157;73.0;130;90;1;1;0;0;1;1
+54862;15343;1;167;64.0;100;60;1;1;0;0;1;1
+54863;19668;2;168;87.0;140;90;2;1;0;0;1;1
+54866;14657;1;152;62.0;100;60;1;1;0;0;1;0
+54867;19547;2;176;86.0;150;90;1;1;0;0;1;1
+54868;19137;1;160;70.0;130;90;1;1;1;1;1;1
+54869;23492;2;180;82.0;110;70;1;1;0;0;1;0
+54872;18926;1;165;63.0;120;80;1;1;0;0;0;0
+54873;21131;2;160;60.0;120;80;1;1;0;0;1;1
+54876;23396;1;171;81.0;140;90;1;1;0;0;1;0
+54877;20242;2;178;105.0;180;90;3;1;0;0;0;0
+54878;19199;2;169;77.0;130;80;1;1;0;0;1;1
+54879;19449;1;160;60.0;110;80;1;1;0;0;1;0
+54880;21788;1;161;78.0;130;82;1;1;0;0;1;0
+54883;21620;1;158;90.0;120;80;3;1;1;1;1;1
+54884;19019;1;156;79.0;130;90;3;3;0;0;0;1
+54886;21046;1;175;88.0;120;90;1;1;0;0;1;0
+54887;21290;2;171;101.0;130;85;3;3;0;0;1;1
+54889;23481;1;156;79.0;130;70;2;2;0;0;1;0
+54891;22481;2;159;80.0;180;100;3;3;0;0;1;1
+54892;18149;1;151;83.0;150;100;1;1;0;0;1;1
+54893;17504;1;170;75.0;120;80;1;1;0;0;1;0
+54894;21134;1;165;65.0;120;80;1;1;0;0;0;1
+54895;23113;2;167;48.0;140;80;1;1;0;0;1;1
+54896;17418;1;154;73.0;130;80;1;1;0;0;1;0
+54897;16003;2;167;64.0;90;60;1;1;0;0;1;0
+54898;21157;2;156;52.0;150;100;1;1;0;0;1;1
+54900;15321;2;175;70.0;120;80;1;1;0;0;0;0
+54903;19668;1;169;62.0;100;70;2;1;0;0;1;0
+54904;20550;2;168;65.0;130;90;1;1;0;0;1;1
+54905;21065;1;165;89.0;150;90;1;1;0;0;0;0
+54906;20401;2;170;85.0;120;80;1;1;0;0;1;0
+54907;16860;1;165;75.0;110;70;1;1;0;0;1;0
+54908;19881;1;168;64.0;120;80;1;1;0;0;0;1
+54912;21291;2;175;110.0;140;90;1;1;0;0;1;1
+54913;18090;1;157;90.0;140;90;1;1;0;0;1;1
+54914;22024;1;156;64.0;130;90;1;1;0;0;0;1
+54917;19460;2;176;80.0;110;70;1;1;0;0;1;1
+54918;21217;1;164;64.0;120;80;1;1;0;0;1;0
+54919;20736;1;169;79.0;120;80;1;1;0;0;1;0
+54920;18293;1;149;75.0;90;60;1;1;0;0;1;0
+54922;21793;2;167;68.0;120;80;1;1;0;0;1;0
+54923;16876;1;167;56.0;100;70;1;1;0;0;1;0
+54924;20950;2;171;83.0;140;90;1;1;0;0;1;0
+54925;17504;1;155;100.0;140;90;1;1;0;0;1;0
+54926;18377;1;165;90.0;120;80;1;3;0;0;1;0
+54928;19702;1;160;59.0;120;80;1;1;0;0;1;0
+54930;14460;1;169;86.0;120;80;1;1;0;0;1;0
+54932;21167;2;170;81.0;140;90;1;1;1;1;1;1
+54933;22033;2;178;71.0;120;80;1;1;0;0;0;0
+54934;21904;2;155;50.0;120;80;1;3;0;0;1;0
+54935;19068;1;155;58.0;100;70;1;1;0;0;1;1
+54936;17155;2;167;64.0;120;70;3;3;0;0;1;0
+54937;19803;1;163;73.0;140;100;2;1;0;0;1;1
+54938;15397;1;160;58.0;120;80;1;1;0;0;1;0
+54943;19779;2;170;108.0;120;80;1;1;0;0;1;0
+54944;18827;1;158;65.0;120;60;1;1;0;0;1;0
+54946;15316;1;152;93.0;135;80;1;1;0;0;1;1
+54947;16675;2;168;70.0;120;70;1;1;0;0;1;1
+54949;15248;1;162;100.0;130;80;1;1;0;0;1;0
+54952;21973;2;176;70.0;140;75;2;1;1;0;1;1
+54953;23447;1;159;95.0;160;90;1;1;0;0;1;1
+54956;19781;2;177;70.0;140;90;2;2;1;0;0;1
+54957;15890;1;169;68.0;110;80;1;1;0;0;1;0
+54958;16267;1;168;70.0;120;70;1;1;0;0;1;1
+54960;15791;1;163;59.0;120;85;1;1;0;0;1;0
+54961;19502;1;157;80.0;140;100;1;1;0;0;1;1
+54962;19587;1;161;65.0;120;80;1;1;0;0;1;0
+54963;20230;1;162;71.0;165;90;1;1;0;0;1;1
+54964;21904;1;175;71.0;120;80;1;1;0;0;1;1
+54965;18198;2;167;67.0;90;60;1;1;0;0;1;0
+54966;17979;1;165;64.0;90;60;1;1;0;0;1;0
+54967;21021;1;160;60.0;130;80;3;1;0;0;0;0
+54968;15159;2;163;74.0;110;90;1;1;0;0;0;0
+54969;18805;1;165;65.0;120;80;1;1;0;0;1;0
+54971;22769;1;148;94.0;140;80;1;1;0;0;0;1
+54972;16028;2;185;95.0;140;90;1;1;0;0;1;1
+54973;14488;2;175;79.0;120;80;2;1;1;0;1;1
+54974;16114;1;167;62.0;110;70;1;1;0;0;0;1
+54976;15852;2;173;65.0;120;80;1;1;0;0;0;0
+54977;18988;1;164;65.0;120;80;1;1;0;0;1;0
+54979;18654;2;169;79.0;120;80;1;1;0;0;1;0
+54980;23374;1;172;88.0;130;90;3;3;0;0;1;0
+54982;21042;1;154;98.0;120;80;1;1;0;0;1;0
+54984;21367;2;168;78.0;120;80;1;1;0;0;0;1
+54986;17769;2;168;70.0;110;80;1;1;0;0;0;1
+54987;23596;1;163;63.0;120;80;1;1;0;0;0;1
+54988;20887;1;160;73.0;130;80;1;1;0;0;0;1
+54989;15178;1;165;50.0;110;70;1;1;0;0;0;0
+54993;15358;1;171;84.0;140;90;2;1;1;0;1;1
+54994;23340;2;165;75.0;140;1000;2;1;1;0;1;1
+54995;16260;1;164;72.0;110;70;1;1;0;0;1;0
+54997;18235;2;175;76.0;120;80;1;1;0;0;1;0
+54999;18316;1;158;60.0;120;80;1;1;0;0;1;1
+55000;20508;1;168;85.0;150;90;1;1;0;0;1;1
+55001;21628;1;152;68.0;140;80;2;1;0;0;1;1
+55004;14627;1;157;54.0;120;80;1;1;0;0;0;0
+55008;21173;1;161;81.0;125;80;2;1;0;0;0;0
+55009;22150;1;164;75.0;130;80;3;3;0;0;1;1
+55011;19956;2;174;83.0;120;80;1;1;1;0;0;0
+55012;21751;1;160;76.0;150;80;1;1;0;0;1;1
+55015;16085;1;170;105.0;120;80;2;2;0;0;1;1
+55017;17460;1;168;113.0;150;90;1;1;0;0;0;1
+55018;20454;1;165;65.0;130;80;1;1;0;0;1;1
+55019;15593;2;165;70.0;120;80;1;1;1;0;1;0
+55020;15801;1;171;59.0;130;70;1;1;0;1;1;0
+55021;19425;2;173;88.0;120;80;3;1;0;0;1;1
+55022;20424;2;169;86.0;140;80;2;1;1;1;1;0
+55024;18091;1;169;61.0;110;70;1;1;0;0;0;0
+55025;15898;1;159;62.0;120;80;1;1;0;0;1;0
+55026;19614;1;167;90.0;100;60;1;1;0;0;1;0
+55027;17068;1;159;85.0;90;60;1;1;0;0;1;0
+55028;22029;1;157;74.0;110;70;3;3;0;0;0;1
+55029;21227;1;162;65.0;110;70;1;1;0;0;1;0
+55030;21950;1;159;79.0;120;80;1;1;0;0;1;0
+55031;15789;1;159;83.0;130;70;1;1;0;0;0;1
+55032;21961;1;162;74.0;160;90;1;1;0;0;1;1
+55033;20493;1;152;93.0;140;90;1;1;0;0;1;0
+55034;20453;1;155;67.0;110;70;1;1;0;0;0;1
+55035;21304;1;158;58.0;140;100;1;2;0;0;1;1
+55036;21904;1;160;67.0;120;80;1;1;0;0;1;1
+55039;19982;1;160;62.0;120;80;1;1;0;0;1;0
+55040;17244;1;149;57.0;150;90;1;1;0;0;1;1
+55041;14650;1;165;67.0;120;80;1;1;0;0;1;1
+55043;19566;2;180;80.0;120;80;1;1;1;1;1;0
+55044;23231;2;165;82.0;140;80;1;1;0;1;0;1
+55046;21926;1;156;68.0;130;90;1;2;0;0;1;0
+55048;19716;2;168;85.0;160;80;1;1;0;0;1;1
+55049;23215;2;160;72.0;140;90;3;2;0;0;1;1
+55050;18817;1;162;65.0;140;80;2;1;0;0;0;1
+55051;20935;2;162;57.0;120;80;1;1;0;0;0;1
+55053;20960;2;165;80.0;110;70;1;3;1;0;1;0
+55054;17199;1;154;58.0;120;90;1;1;0;0;1;0
+55055;14608;1;172;74.0;120;80;1;2;0;0;1;0
+55056;19637;1;160;74.0;115;70;2;2;0;0;1;0
+55058;16171;1;162;67.0;110;80;1;1;0;0;1;1
+55059;22643;1;151;52.0;120;80;1;1;0;0;1;0
+55061;18739;1;164;67.0;140;80;3;1;0;0;1;1
+55062;17624;2;171;56.0;110;70;1;1;0;0;1;0
+55063;23158;2;166;99.0;150;90;1;1;1;0;1;1
+55064;18282;2;170;103.0;140;90;1;1;0;0;0;0
+55065;18885;1;156;50.0;150;80;2;1;0;0;0;0
+55067;22605;2;170;80.0;140;90;3;1;0;0;1;1
+55068;14521;1;168;54.0;110;90;1;1;0;0;1;0
+55069;20464;1;170;65.0;120;80;1;1;0;0;1;0
+55070;20381;2;173;72.0;180;100;1;3;0;0;1;1
+55071;20982;2;166;87.0;140;80;1;3;0;0;1;0
+55074;23542;2;171;77.0;120;80;1;1;0;0;0;1
+55076;19188;1;172;85.0;140;80;2;1;0;0;1;1
+55077;22002;1;170;70.0;110;60;1;1;0;0;1;1
+55079;18801;1;163;85.0;120;80;2;1;0;1;1;0
+55084;21921;1;165;65.0;140;90;1;1;0;0;1;0
+55086;21889;1;165;92.0;150;90;1;1;0;0;1;1
+55087;19700;2;172;82.0;120;80;1;1;0;0;1;1
+55089;21347;1;169;63.0;120;80;1;1;0;0;1;1
+55090;20370;1;167;72.0;140;90;1;1;0;0;1;1
+55091;21079;1;158;69.0;130;80;1;1;0;0;1;0
+55092;15396;2;174;85.0;120;80;1;1;1;1;1;0
+55095;16919;1;144;74.0;130;80;3;1;0;0;1;0
+55096;17713;1;157;60.0;120;80;1;1;0;0;1;0
+55097;21259;2;170;55.0;120;80;1;1;0;0;1;0
+55098;21010;1;168;75.0;110;70;2;1;0;0;1;1
+55099;14769;1;165;97.0;100;60;1;1;0;0;1;0
+55100;18367;2;177;120.0;170;90;3;1;0;0;1;1
+55102;21119;1;160;60.0;120;80;1;1;0;0;0;1
+55105;23299;1;175;57.0;140;70;2;2;0;0;1;1
+55106;15920;1;152;58.0;90;60;1;1;0;0;0;0
+55108;18580;1;151;54.0;115;80;1;1;0;0;1;0
+55109;16057;2;173;76.0;120;80;1;1;0;0;1;0
+55110;14282;1;156;45.0;110;80;2;1;0;0;0;0
+55111;22800;1;171;74.0;140;90;1;1;0;0;1;1
+55113;23435;2;167;85.0;200;100;3;2;1;0;1;1
+55115;18902;2;172;58.0;130;70;1;1;0;0;1;1
+55118;20680;1;156;83.0;120;80;1;1;0;0;1;0
+55119;18091;2;165;64.0;120;9;1;1;0;0;1;0
+55120;20433;2;158;70.0;110;80;2;1;1;1;1;1
+55121;19494;1;166;98.0;160;95;1;2;0;0;1;1
+55122;15139;2;166;87.0;140;110;1;1;1;1;1;1
+55126;19570;1;164;81.0;120;80;1;1;0;0;0;1
+55128;19836;1;158;60.0;125;90;1;1;0;0;1;0
+55129;16842;2;172;70.0;120;80;1;1;0;0;1;1
+55130;23612;2;179;72.0;120;80;1;1;0;0;0;1
+55132;17319;1;158;60.0;90;60;1;1;0;0;1;0
+55134;19220;1;169;66.0;120;81;1;1;0;0;0;1
+55136;15893;2;176;71.0;120;70;1;1;1;0;1;0
+55137;20504;1;166;71.0;120;80;1;1;0;0;1;0
+55138;18106;2;182;115.0;130;90;1;1;0;0;1;1
+55139;18713;2;150;50.0;120;80;1;1;0;0;1;1
+55140;16561;2;174;93.0;150;90;1;1;0;0;0;1
+55141;22391;1;157;84.0;120;80;1;1;0;0;1;0
+55142;19577;1;164;74.0;130;80;3;1;0;0;1;1
+55143;14734;1;152;47.0;110;70;1;1;0;0;1;0
+55145;14604;1;155;68.0;120;80;3;1;1;0;1;1
+55146;15449;1;159;65.0;110;70;1;3;0;0;1;0
+55147;22018;1;164;91.0;120;80;3;1;0;0;1;1
+55149;15963;2;168;75.0;120;80;1;1;1;1;0;0
+55150;20333;1;152;76.0;140;90;3;3;0;0;0;1
+55151;21286;1;158;89.0;140;90;3;1;0;0;1;1
+55152;16772;2;159;58.0;120;80;1;1;0;0;0;0
+55153;14530;1;165;65.0;120;80;1;1;0;0;1;0
+55154;22600;1;158;78.0;140;80;2;1;0;0;0;1
+55155;18251;2;166;87.0;163;100;3;1;1;0;1;1
+55157;16763;1;163;59.0;12;80;1;1;0;0;1;0
+55158;18202;1;154;86.0;140;90;2;1;0;0;1;1
+55159;23262;1;160;70.0;120;80;3;3;0;0;1;0
+55161;18269;1;154;76.0;90;60;1;2;0;1;1;0
+55162;19219;2;172;92.0;120;80;1;1;0;0;1;0
+55163;14586;1;156;75.0;120;70;1;1;0;0;1;0
+55164;20505;1;156;83.0;120;80;3;3;0;0;1;1
+55165;14702;2;159;54.0;120;80;1;1;0;0;1;0
+55166;20460;1;163;70.0;120;60;1;1;0;0;1;0
+55167;16851;2;166;68.0;120;80;1;1;0;0;0;0
+55168;20005;2;182;89.0;120;80;1;1;0;0;1;0
+55171;22466;1;166;76.0;120;70;1;2;0;1;1;1
+55172;18249;1;165;70.0;110;70;1;1;0;0;1;0
+55173;14874;1;160;62.0;100;60;1;1;0;0;0;0
+55174;19764;1;158;58.0;120;80;1;1;0;0;1;0
+55175;19131;2;173;67.0;110;60;1;1;0;0;1;0
+55176;20303;2;172;89.0;120;80;1;1;1;0;1;0
+55177;17195;1;152;54.0;90;60;1;1;0;0;1;0
+55178;21764;1;168;75.0;120;80;1;1;0;0;1;1
+55179;20674;1;172;98.0;160;90;2;1;0;0;1;1
+55180;20522;1;181;73.0;110;70;1;1;0;0;1;0
+55181;23195;2;179;74.0;130;70;1;2;0;0;1;1
+55182;22582;1;160;81.0;180;1200;1;1;0;0;1;1
+55183;22023;2;170;75.0;140;90;2;2;1;0;1;1
+55184;21890;1;167;112.0;120;80;1;1;0;0;1;1
+55185;19710;1;163;86.0;110;80;1;1;0;0;1;1
+55186;21775;2;154;65.0;180;90;1;1;0;0;1;1
+55189;18441;2;161;67.0;100;80;1;1;0;0;1;0
+55190;21225;1;158;120.0;120;80;1;1;0;0;1;1
+55191;14687;1;155;86.0;100;70;1;1;0;0;1;0
+55192;15364;2;167;64.0;110;70;1;1;0;0;1;0
+55194;18170;1;169;116.0;140;90;2;2;0;0;0;0
+55196;20688;1;176;72.0;120;80;1;1;0;0;1;1
+55199;19555;1;160;60.0;120;80;1;1;0;0;1;1
+55201;22091;1;165;84.0;110;70;2;1;0;0;1;0
+55202;15983;2;162;79.0;150;90;1;1;0;0;1;1
+55203;19866;1;164;74.0;110;80;1;2;0;0;1;1
+55204;21026;1;161;55.0;105;60;2;1;0;0;1;0
+55205;16682;2;172;98.0;120;80;2;1;0;0;1;1
+55206;20604;2;180;80.0;100;70;1;1;0;1;1;0
+55207;18990;1;165;66.0;110;70;1;1;0;0;1;0
+55208;21067;2;177;106.0;160;100;2;2;0;1;0;1
+55210;20529;1;165;65.0;120;80;1;1;0;0;1;0
+55211;16589;1;165;66.0;140;80;1;1;0;0;1;1
+55212;18065;1;164;75.0;130;90;2;1;0;0;1;0
+55213;19525;1;156;63.0;120;80;3;3;0;0;0;1
+55215;18175;1;160;98.0;120;80;1;1;0;1;1;0
+55219;14464;2;171;88.0;120;70;2;1;0;0;1;1
+55220;20950;1;169;78.0;120;80;3;3;0;0;1;1
+55222;20214;2;165;66.0;160;100;2;1;0;0;1;0
+55223;14848;1;156;73.0;110;70;1;1;0;0;0;0
+55224;20414;2;178;84.0;120;80;1;1;0;0;1;0
+55225;15505;1;167;67.0;110;70;1;1;0;0;1;0
+55227;21169;1;162;68.0;130;80;3;1;0;0;1;1
+55228;14714;1;160;55.0;100;60;1;1;0;0;1;0
+55229;19438;1;151;64.0;100;60;1;1;0;0;0;0
+55230;16902;1;166;82.0;110;70;1;1;0;0;1;0
+55233;18227;1;157;79.0;130;90;1;1;0;0;1;1
+55234;22611;2;164;78.0;130;80;3;1;0;1;1;1
+55237;16790;2;182;67.0;145;90;2;1;0;0;1;0
+55240;18852;1;165;74.0;140;1000;3;1;0;0;1;1
+55243;22659;1;156;79.0;120;80;1;1;0;0;1;0
+55245;18234;1;165;65.0;120;80;1;1;0;0;1;0
+55246;17562;1;153;70.0;100;70;1;1;0;0;1;0
+55248;19777;1;163;94.0;150;100;1;1;0;0;1;1
+55249;18370;1;168;73.0;150;90;1;1;0;0;0;1
+55250;22506;1;152;61.0;150;90;3;1;0;0;1;1
+55251;23375;1;153;73.0;140;90;1;1;0;0;1;0
+55252;22491;1;152;81.0;120;80;3;3;0;0;0;1
+55254;19917;1;149;47.0;140;90;1;1;0;0;1;0
+55256;19785;2;176;72.0;130;90;2;1;0;0;1;1
+55257;17622;2;162;71.0;160;90;1;2;1;0;1;1
+55258;16592;1;170;70.0;120;70;2;1;0;0;1;0
+55259;18988;1;154;70.0;150;90;1;1;0;0;0;0
+55260;19762;1;174;115.0;170;100;1;1;0;0;1;1
+55261;20464;1;156;88.0;130;80;3;1;0;0;1;1
+55262;17327;1;156;54.0;130;80;1;2;0;0;1;0
+55264;17403;1;164;66.0;110;70;1;1;0;0;0;0
+55265;22556;1;160;82.0;120;80;1;1;0;0;1;0
+55266;23303;1;151;65.0;140;90;2;2;0;0;0;1
+55267;15356;1;168;74.0;110;70;1;1;0;0;1;0
+55268;22497;2;174;85.0;120;80;1;1;0;0;0;1
+55269;22621;1;155;83.0;110;70;1;1;0;0;1;0
+55270;14845;1;158;93.0;140;90;2;2;0;0;1;1
+55271;15947;1;157;70.0;140;1000;2;1;0;0;0;1
+55272;15307;2;168;80.0;125;85;1;1;0;0;1;0
+55273;21158;1;162;87.0;120;80;2;2;0;0;0;1
+55274;19733;1;165;65.0;120;80;1;1;0;0;0;0
+55275;20586;1;175;83.0;130;80;3;3;0;0;1;0
+55276;19195;2;175;83.0;150;90;1;1;1;1;0;0
+55277;20182;1;180;78.0;120;80;1;1;0;0;1;0
+55278;17278;1;156;83.0;130;80;1;1;0;0;1;1
+55279;20222;1;159;86.0;140;90;1;1;0;0;1;0
+55280;20374;2;166;60.0;90;60;1;1;1;0;0;1
+55282;19737;2;175;83.0;120;70;1;1;0;0;1;0
+55283;20375;2;179;80.0;140;90;1;1;0;0;0;1
+55284;23245;1;158;69.0;120;80;1;1;0;0;1;1
+55285;16051;2;163;58.0;110;80;1;1;0;0;0;0
+55286;23381;1;165;105.0;140;80;3;3;0;0;0;1
+55287;22713;2;167;77.0;120;80;1;1;0;0;1;1
+55288;19007;2;168;97.0;130;80;2;2;0;1;1;0
+55289;20595;2;151;56.0;110;80;1;1;1;0;1;0
+55290;22084;2;168;68.0;130;80;1;1;0;0;1;1
+55291;16528;1;149;51.0;70;120;1;1;0;0;1;0
+55292;15509;2;172;71.0;130;90;1;1;1;0;1;1
+55294;18272;1;157;89.0;120;80;1;1;0;0;1;0
+55295;17480;1;160;74.0;135;80;1;1;0;0;1;0
+55296;15254;2;168;71.0;100;69;1;1;0;0;1;0
+55299;18336;2;170;88.0;110;80;1;1;0;0;1;0
+55300;16011;2;169;76.0;120;80;1;1;0;0;1;0
+55302;15580;2;168;85.0;120;80;2;1;1;0;1;1
+55304;17400;1;161;59.0;90;60;2;1;0;0;0;0
+55306;18893;2;169;58.0;110;70;1;1;0;1;1;0
+55307;17359;2;169;72.0;120;80;1;1;0;0;0;0
+55309;19023;2;175;86.0;120;80;1;1;0;0;1;0
+55310;17720;1;169;72.0;160;90;1;1;0;0;0;1
+55311;21291;1;152;38.0;150;1000;1;1;0;0;1;1
+55312;16048;1;152;69.0;120;80;3;1;0;0;1;1
+55313;18188;1;158;69.0;160;1000;1;1;0;0;1;1
+55315;22541;1;158;72.0;120;79;1;1;0;0;1;0
+55316;20403;1;163;70.0;140;80;1;1;0;0;1;0
+55318;15985;2;173;76.0;120;80;1;1;0;1;1;0
+55319;19726;1;162;68.0;120;80;2;1;0;0;1;1
+55321;19509;1;158;68.0;190;100;1;1;0;0;1;1
+55322;16267;2;166;70.0;120;80;1;1;1;1;1;0
+55323;20358;1;154;75.0;110;70;1;1;0;0;1;0
+55325;18281;1;169;64.0;120;80;1;1;0;0;1;1
+55326;20635;2;170;79.0;130;80;3;1;0;0;0;0
+55327;15846;1;163;85.0;120;80;1;1;0;0;1;0
+55328;19920;1;160;68.0;120;70;1;1;0;0;0;0
+55329;23342;2;174;64.0;120;80;2;2;0;0;1;1
+55330;21720;1;164;85.0;120;70;1;2;0;0;1;0
+55332;19219;1;158;66.0;120;70;1;1;0;0;1;0
+55334;14444;1;159;68.0;90;60;2;3;0;0;1;0
+55336;21303;1;166;68.0;120;80;1;1;0;0;1;0
+55337;21266;1;154;86.0;120;80;1;1;0;0;1;0
+55338;16309;1;157;88.0;120;80;1;1;0;0;0;0
+55339;21900;1;169;62.0;160;100;2;1;0;0;1;1
+55341;22717;2;167;70.0;130;100;1;1;0;0;1;1
+55344;21923;2;171;51.0;125;85;1;1;0;0;1;0
+55345;19244;2;168;69.0;140;90;1;1;0;0;1;1
+55346;20450;2;175;90.0;120;80;1;2;0;0;1;1
+55347;19709;1;165;78.0;130;70;1;1;0;0;1;1
+55348;21376;1;173;78.0;110;70;3;1;0;0;1;1
+55350;22548;1;153;55.0;155;100;3;1;1;0;0;1
+55351;19007;1;158;70.0;110;80;1;1;0;0;1;0
+55352;21108;2;170;75.0;130;100;1;1;0;0;0;0
+55353;15790;2;160;75.0;120;80;1;1;0;0;0;0
+55356;23284;1;158;57.0;120;80;3;3;0;0;1;0
+55357;19671;1;160;75.0;120;80;1;1;0;0;1;0
+55359;18811;1;159;90.0;140;90;1;2;0;0;1;1
+55360;17431;1;168;58.0;120;80;3;3;0;0;1;0
+55361;21196;2;160;63.0;150;90;1;1;0;0;1;1
+55362;22440;2;180;72.0;120;80;1;1;0;0;1;1
+55363;21276;1;160;80.0;120;80;1;1;0;0;1;1
+55364;19503;1;160;64.0;110;70;1;1;0;0;1;0
+55366;19535;1;154;50.0;180;120;1;1;0;0;0;1
+55368;19029;1;160;57.0;100;70;1;1;0;0;0;0
+55370;18490;1;165;76.0;120;70;1;1;0;0;1;0
+55372;19527;2;156;63.0;120;80;3;3;0;0;0;0
+55373;17452;1;170;75.0;150;90;1;1;0;0;1;1
+55374;19749;1;165;80.0;120;80;1;1;0;0;0;0
+55375;22096;1;165;57.0;120;80;1;1;0;0;1;0
+55377;16290;2;171;83.0;120;80;1;1;0;0;0;1
+55379;14515;1;159;59.0;110;70;1;1;0;0;1;0
+55380;19653;2;180;98.0;120;80;1;1;0;0;1;0
+55381;22858;1;150;62.0;150;90;3;1;0;0;1;1
+55385;15029;1;163;68.0;120;70;1;1;0;0;1;0
+55387;17502;2;158;74.0;145;80;1;1;1;1;1;0
+55388;16668;1;160;93.0;140;90;1;1;0;0;0;1
+55389;18686;1;158;105.0;130;70;1;1;0;0;1;0
+55394;21194;1;164;64.0;120;80;1;1;0;0;1;0
+55395;17484;1;174;77.0;140;90;1;1;0;0;1;1
+55396;18337;2;179;93.0;180;90;1;1;1;1;1;1
+55397;17543;1;165;84.0;150;90;1;1;0;0;1;1
+55398;23187;1;167;88.0;145;95;3;3;0;0;1;0
+55399;16695;1;161;73.0;130;90;1;1;0;0;1;0
+55400;22129;2;161;62.0;110;70;1;1;0;0;1;0
+55401;23409;2;166;86.0;120;70;1;1;0;0;1;1
+55403;18227;1;154;55.0;120;80;2;1;0;0;1;0
+55404;15420;2;166;64.0;110;70;1;1;0;0;1;0
+55405;17419;1;159;142.0;200;100;1;1;0;0;1;1
+55406;18236;2;162;80.0;130;90;2;2;0;0;1;0
+55407;21705;2;154;69.0;120;70;1;1;0;0;1;0
+55409;17089;1;155;50.0;110;70;1;1;0;0;1;0
+55410;23370;1;159;85.0;120;80;3;1;0;0;1;1
+55413;19472;2;187;76.0;150;90;1;1;1;1;1;1
+55414;17503;2;176;51.0;120;80;1;1;0;0;1;0
+55417;21176;1;150;62.0;130;80;1;1;0;0;0;0
+55418;21665;1;155;77.0;120;80;1;1;0;1;0;1
+55419;16890;2;182;84.0;120;80;1;1;0;0;1;0
+55420;18934;2;167;89.0;150;90;1;1;0;0;1;1
+55422;16079;1;156;61.0;110;70;1;2;0;0;1;0
+55423;23617;1;156;67.0;120;80;1;1;0;0;1;0
+55424;19615;2;174;68.0;120;70;1;1;0;0;0;1
+55425;19146;2;167;85.0;130;1000;2;2;1;0;1;1
+55426;19718;2;166;82.0;150;100;2;2;0;1;1;1
+55427;18267;1;164;56.0;160;80;3;1;0;0;1;1
+55428;22759;1;157;80.0;140;90;1;1;0;0;1;1
+55429;21827;1;151;59.0;110;70;1;1;0;0;0;0
+55430;14699;1;176;68.0;120;80;1;1;0;0;1;0
+55431;15957;2;178;66.0;120;80;1;3;1;0;1;0
+55432;21939;1;165;65.0;150;79;1;1;0;0;0;1
+55433;19810;2;170;110.0;140;80;2;1;0;0;1;0
+55434;21919;2;170;72.0;125;80;1;1;0;0;1;1
+55435;17567;1;156;73.0;160;100;1;1;0;0;0;1
+55437;21448;1;165;67.0;120;80;1;1;0;0;1;1
+55438;16048;2;166;72.0;140;90;1;1;0;0;0;0
+55441;23254;2;172;90.0;160;90;1;1;0;0;0;1
+55443;15477;1;163;63.0;110;70;1;1;0;0;0;1
+55444;22122;1;162;63.0;110;80;1;1;0;0;0;1
+55445;16872;1;159;85.0;140;90;2;1;0;0;1;1
+55446;18307;1;165;69.0;120;80;1;1;0;0;1;0
+55447;22744;1;154;70.0;130;60;2;1;0;0;1;1
+55448;16066;2;172;71.0;150;90;1;1;0;0;0;1
+55452;19032;1;158;85.0;120;70;1;1;0;0;1;0
+55453;16117;1;168;68.0;100;70;1;1;0;0;1;0
+55454;21725;2;170;58.0;140;90;1;1;0;0;1;1
+55455;15311;1;152;60.0;110;70;1;1;0;0;1;0
+55458;17732;1;163;73.0;150;100;2;1;0;0;1;1
+55460;19689;1;167;79.0;120;80;1;1;0;0;1;0
+55462;17565;1;164;85.0;120;80;3;3;0;0;0;1
+55463;15303;1;167;69.0;120;80;1;1;0;0;1;0
+55464;15439;1;171;85.0;160;100;2;1;0;0;1;1
+55465;14689;1;168;99.0;90;60;1;1;0;0;0;0
+55467;17590;2;163;87.0;130;80;2;2;0;0;0;1
+55470;16146;2;175;68.0;140;90;1;1;0;1;1;0
+55471;21117;1;169;70.0;140;80;1;1;0;0;1;0
+55473;20260;2;175;111.0;160;100;3;3;0;0;0;1
+55474;23425;2;147;50.0;120;80;1;1;0;0;1;1
+55475;20441;1;165;84.0;130;90;1;1;0;0;1;1
+55477;19875;2;176;65.0;130;80;1;1;1;0;1;1
+55478;22739;2;160;52.0;120;80;1;1;1;0;1;0
+55479;18956;1;171;110.0;110;80;2;1;0;0;0;0
+55480;18102;2;175;95.0;120;80;1;2;0;1;1;0
+55482;21883;1;162;88.0;120;80;1;1;0;0;1;0
+55483;20554;1;162;106.0;160;90;1;1;0;1;1;1
+55484;18915;1;164;65.0;140;80;2;1;0;0;1;1
+55485;23490;1;163;76.0;140;80;1;1;0;0;1;1
+55486;16811;2;188;78.0;140;90;2;1;0;0;1;1
+55487;22760;2;174;74.0;120;80;2;2;0;0;1;1
+55488;17724;1;163;65.0;120;80;1;1;0;0;0;1
+55490;18986;2;171;93.0;140;80;1;2;0;0;0;1
+55491;14445;2;169;93.0;120;80;2;2;0;1;1;1
+55493;14474;1;165;77.0;120;80;1;1;0;0;1;0
+55494;14473;2;172;94.0;110;60;1;1;0;0;1;0
+55495;19675;1;153;74.0;150;90;1;1;0;0;1;1
+55496;18355;1;152;58.0;140;90;2;1;0;0;1;0
+55498;21613;1;161;73.0;110;80;1;1;0;0;1;1
+55500;20592;2;164;84.0;120;80;2;1;0;0;1;0
+55502;21997;1;160;80.0;150;90;1;1;0;0;1;1
+55503;17988;2;172;76.0;110;80;2;1;1;0;1;0
+55509;23314;2;170;70.0;130;80;3;1;1;1;0;1
+55511;23610;2;175;75.0;120;80;1;1;0;0;1;0
+55513;20549;1;164;78.0;140;90;3;1;0;0;1;1
+55515;22058;1;163;106.0;140;90;3;1;0;0;1;1
+55517;17497;1;159;79.0;120;80;2;1;0;0;1;1
+55518;14613;2;165;68.0;122;70;1;1;0;0;1;0
+55519;16774;1;158;65.0;150;90;1;1;0;0;0;1
+55520;21020;1;164;74.0;120;80;1;1;0;0;0;1
+55521;23170;1;155;59.0;140;70;2;1;0;0;1;1
+55522;20348;1;170;78.0;120;60;1;1;0;0;1;0
+55524;21221;1;160;85.0;140;90;2;1;0;0;1;1
+55525;16155;2;163;78.0;140;80;3;1;0;0;0;1
+55527;15596;1;162;78.0;120;80;2;1;0;0;1;1
+55528;21254;2;175;71.0;160;100;1;1;0;0;0;1
+55529;22195;1;160;79.0;130;90;3;1;0;0;1;1
+55531;20390;1;158;75.0;120;80;3;3;0;0;1;0
+55533;21056;1;163;88.0;110;69;1;1;0;0;0;0
+55534;19762;1;162;58.0;160;1100;2;1;0;0;1;1
+55535;20451;1;160;78.0;150;90;2;1;0;0;0;1
+55536;15073;1;159;55.0;100;60;2;1;0;0;1;0
+55539;20987;1;145;54.0;120;80;1;1;0;0;1;0
+55540;20423;1;168;68.0;120;80;1;1;0;0;1;1
+55542;20408;1;160;76.0;130;90;1;1;0;0;1;1
+55544;18191;2;185;80.0;145;80;1;1;1;0;1;1
+55546;21404;1;160;68.0;130;80;3;1;0;0;1;1
+55547;16985;1;165;83.0;140;90;1;1;0;0;1;1
+55550;19559;1;158;52.0;160;90;1;1;0;0;1;1
+55551;23334;1;156;82.0;130;80;1;1;0;0;0;1
+55552;16902;1;164;65.0;120;80;2;2;0;0;1;1
+55554;14589;2;180;107.0;180;100;1;1;0;0;1;1
+55555;15337;2;178;97.0;110;70;1;1;1;0;1;0
+55556;21889;1;168;77.0;110;80;1;1;0;0;1;0
+55557;21256;1;166;64.0;120;90;3;1;0;0;0;1
+55558;22668;1;158;52.0;120;80;1;1;0;0;1;0
+55559;21946;2;160;45.0;140;100;1;1;0;0;1;1
+55561;18065;2;180;72.0;130;80;2;1;1;0;1;1
+55562;20570;1;166;90.0;120;80;1;1;0;0;1;0
+55563;21897;1;145;61.0;150;90;1;1;0;0;0;1
+55564;20872;1;161;59.0;140;100;1;1;0;0;1;0
+55565;22661;1;164;98.0;120;80;1;1;0;0;0;1
+55566;14718;1;167;80.0;120;80;1;1;0;0;0;0
+55567;21963;1;158;75.0;140;80;1;1;0;0;1;1
+55568;22559;2;166;74.0;150;80;1;1;0;0;1;0
+55571;18496;2;165;65.0;120;80;1;1;0;0;1;0
+55573;19598;1;170;70.0;140;90;1;1;0;0;1;1
+55574;20180;1;159;59.0;120;80;3;1;0;0;1;1
+55575;18137;1;165;56.0;120;80;1;1;0;0;1;0
+55576;19950;1;162;66.0;110;60;1;1;0;0;1;0
+55577;23140;2;167;91.0;140;90;1;1;0;0;0;1
+55578;20386;1;169;72.0;120;80;1;1;0;0;1;0
+55580;18306;1;150;73.0;120;80;2;2;0;0;1;0
+55581;19839;2;173;80.0;130;80;1;1;0;0;1;1
+55583;23206;1;161;97.0;160;100;2;1;0;0;0;1
+55584;16855;1;168;62.0;140;90;3;3;0;0;0;1
+55586;15384;1;165;74.0;120;80;1;1;0;0;1;1
+55587;21150;1;168;72.0;120;80;2;1;0;0;0;1
+55589;18262;1;164;81.0;120;80;3;3;0;0;1;0
+55590;22681;1;164;88.0;180;90;2;1;0;0;1;1
+55592;20323;2;176;48.0;120;70;1;1;0;0;1;0
+55593;14599;2;187;125.0;140;90;1;1;0;0;1;1
+55595;22860;1;166;66.0;120;80;1;1;0;0;1;0
+55596;20637;1;159;69.0;120;80;2;1;0;0;1;0
+55597;18039;1;169;70.0;130;80;1;1;0;0;0;0
+55599;18181;1;173;71.0;110;70;2;1;0;0;1;0
+55600;22574;1;162;92.0;120;80;2;1;0;0;1;0
+55601;22625;1;150;68.0;120;80;2;1;0;0;1;1
+55602;21140;1;158;68.0;120;80;1;1;0;0;1;1
+55603;19938;1;165;82.3;120;80;1;1;0;0;0;0
+55604;22529;2;168;106.0;140;100;3;2;0;0;1;1
+55605;19754;1;167;94.0;130;80;1;2;0;0;1;1
+55606;21088;1;168;100.0;140;100;3;3;0;0;1;0
+55608;21285;1;161;80.0;130;80;1;1;0;0;1;1
+55611;18106;1;154;64.0;140;80;1;1;0;0;1;1
+55612;20253;1;154;62.0;140;80;1;1;0;0;0;1
+55613;19611;2;176;87.0;110;80;1;1;0;0;0;0
+55614;21175;1;160;60.0;120;80;1;1;0;0;1;1
+55615;15130;1;159;95.0;90;60;1;1;0;0;1;0
+55616;18145;1;163;67.0;130;90;3;1;0;0;1;1
+55617;20627;2;163;69.0;120;80;1;1;0;0;1;0
+55618;17020;1;167;58.0;110;70;1;1;0;0;1;0
+55619;18981;1;165;69.0;110;70;1;1;0;0;1;0
+55621;22640;2;165;65.0;120;80;1;1;0;0;1;0
+55622;21992;1;158;79.0;120;80;3;3;0;0;1;1
+55623;17527;2;163;73.0;120;80;2;1;0;0;1;1
+55624;19926;2;170;110.0;130;80;2;1;0;0;1;1
+55625;21238;1;163;57.0;130;80;1;3;0;0;1;0
+55626;16776;1;164;58.0;120;80;1;1;0;0;1;0
+55628;22613;2;167;74.0;120;80;1;1;0;0;1;0
+55629;16131;1;170;89.0;140;90;3;3;0;0;0;1
+55630;17725;1;166;61.0;110;70;1;1;0;0;1;0
+55632;19042;2;165;62.0;120;80;1;1;1;1;1;0
+55633;22440;1;157;68.0;120;80;1;1;0;0;1;1
+55634;18986;1;155;63.0;120;80;1;1;0;0;0;0
+55635;20263;1;162;57.0;120;80;1;1;0;0;1;0
+55637;20137;1;160;87.0;140;90;1;1;0;0;0;1
+55638;18150;2;174;108.0;130;70;3;3;1;0;0;1
+55643;19040;1;165;92.0;140;90;1;1;0;0;1;0
+55644;15204;2;168;73.0;120;80;3;1;0;0;1;1
+55646;18498;2;167;64.0;130;70;3;1;0;1;1;1
+55647;21270;2;169;70.0;120;80;3;1;0;0;1;0
+55648;23391;2;159;76.0;140;90;1;1;1;1;1;1
+55649;18241;2;180;83.0;120;80;1;3;0;0;1;1
+55651;19788;1;166;80.0;130;80;1;1;0;0;1;0
+55652;14590;1;166;66.0;120;80;1;1;0;0;0;0
+55654;16744;2;173;100.0;130;80;2;2;0;0;0;1
+55657;20385;1;166;50.0;120;80;1;1;0;0;0;1
+55658;21792;1;155;80.0;140;90;3;1;0;0;1;1
+55664;23395;2;159;62.0;130;80;1;1;0;0;0;1
+55667;17451;1;167;70.0;130;80;1;1;0;0;1;0
+55668;17405;1;168;73.0;110;80;1;1;0;0;1;0
+55669;14558;2;168;65.0;110;70;1;1;0;0;1;0
+55670;18830;1;160;98.0;160;130;1;1;0;0;1;1
+55671;19530;2;175;68.0;120;80;2;2;0;0;1;0
+55672;20457;1;150;59.0;90;60;2;1;0;0;1;0
+55673;21958;1;154;78.0;140;90;2;2;0;0;1;1
+55674;20313;2;170;78.0;140;1000;1;1;0;0;1;1
+55675;18829;1;155;68.0;140;90;1;1;0;0;1;1
+55676;20949;1;161;85.0;120;80;1;1;0;0;1;0
+55678;18246;1;152;66.0;140;90;1;1;0;0;1;1
+55679;16028;2;171;61.0;160;90;2;1;1;0;1;1
+55680;17670;1;155;79.0;100;80;1;2;0;0;1;0
+55681;21371;2;174;74.0;120;80;1;1;0;0;1;0
+55682;20550;1;151;67.0;140;80;1;1;0;0;1;0
+55683;15220;2;170;67.0;170;67;1;1;0;1;0;0
+55684;20909;1;147;57.0;120;80;3;3;0;0;1;0
+55685;18975;1;164;52.0;120;80;1;1;0;0;0;0
+55686;21124;2;180;89.0;130;90;3;1;0;0;1;1
+55687;20572;1;148;96.0;160;100;3;1;0;0;1;1
+55688;15422;2;172;68.0;120;80;1;1;0;0;1;0
+55689;18127;1;168;64.0;120;80;1;3;0;0;1;0
+55690;14699;1;155;58.0;120;60;1;1;0;0;1;1
+55691;19095;1;155;56.0;140;100;1;1;0;0;1;1
+55692;21864;1;153;70.0;140;90;1;1;0;0;0;1
+55695;20451;1;167;65.0;120;80;1;1;0;0;1;1
+55696;16746;2;175;91.0;130;90;1;1;0;0;1;1
+55697;20593;1;171;75.0;120;80;1;1;0;0;1;1
+55698;20429;1;151;65.0;151;65;1;1;0;0;1;0
+55699;18883;1;155;51.0;110;50;1;1;0;0;1;0
+55701;21174;1;161;78.0;150;90;1;1;0;0;1;1
+55703;19161;1;158;86.0;140;90;2;2;0;0;1;1
+55705;15275;1;164;68.0;90;60;1;1;0;0;0;0
+55707;21142;1;165;58.0;170;90;3;1;0;0;1;1
+55708;22795;2;165;84.0;140;100;1;1;0;0;1;0
+55709;18904;1;170;91.0;110;70;2;1;0;0;1;0
+55711;21752;1;157;67.0;120;70;1;1;0;0;1;0
+55713;19777;1;165;74.0;125;70;1;1;0;0;0;0
+55714;19207;2;172;83.0;120;80;1;1;0;0;1;1
+55715;18422;1;165;68.0;120;80;1;1;0;0;1;0
+55717;19657;1;168;87.0;90;70;1;1;0;0;1;1
+55718;20367;1;159;95.0;160;90;1;1;0;0;1;1
+55720;23171;1;162;88.0;120;80;1;1;0;0;0;0
+55721;21311;2;176;93.0;120;80;1;1;0;0;1;0
+55724;22473;1;153;70.0;140;80;1;1;0;0;1;1
+55725;20668;2;170;66.0;170;100;1;1;1;0;1;1
+55726;20340;1;169;74.0;120;80;1;1;0;0;1;0
+55728;19656;2;172;97.0;152;93;1;1;0;0;1;1
+55729;22062;2;167;63.0;120;70;1;1;0;0;1;0
+55730;19641;1;153;75.0;120;80;1;1;0;0;0;0
+55731;18123;2;163;72.0;190;90;1;1;0;0;1;1
+55732;15352;2;168;70.0;110;70;1;1;1;0;1;0
+55733;14597;2;180;88.0;120;70;1;1;1;0;1;0
+55734;20430;1;163;58.0;120;80;3;3;0;0;1;1
+55736;19938;1;162;63.0;120;80;1;1;0;0;1;0
+55738;21192;2;180;89.0;180;100;1;1;1;1;1;1
+55739;20391;1;151;69.0;180;100;3;1;0;0;1;1
+55741;18750;2;170;95.0;120;80;1;1;0;0;1;0
+55742;17497;2;165;121.0;110;80;1;2;0;0;1;1
+55743;21730;1;161;94.0;130;80;1;1;0;0;1;0
+55745;18940;1;155;54.0;90;60;2;1;0;0;1;0
+55746;19527;2;168;73.0;130;90;2;1;1;1;1;0
+55747;23349;1;148;67.0;120;80;1;1;0;0;1;1
+55749;15262;1;170;64.0;110;60;1;1;0;0;1;0
+55752;17709;2;168;98.0;130;80;1;1;1;1;1;1
+55753;15305;1;161;63.0;110;70;1;1;0;0;1;0
+55754;22349;2;170;73.0;140;80;3;2;0;0;0;1
+55758;21799;2;168;72.0;130;90;1;1;0;0;1;1
+55759;19019;1;164;92.0;120;80;3;3;0;0;0;1
+55760;20274;1;169;66.0;120;80;1;1;0;0;1;1
+55761;18295;1;168;60.0;120;80;3;3;0;0;1;1
+55763;16614;2;165;60.0;100;60;1;1;1;0;1;0
+55764;16651;1;161;105.0;160;90;2;2;0;0;1;1
+55765;17289;2;179;84.0;120;70;1;1;0;0;1;0
+55766;19920;1;162;70.0;100;60;2;2;0;0;1;0
+55767;23261;1;154;84.0;180;90;2;1;0;0;0;1
+55773;15775;1;165;82.0;120;80;1;1;0;0;0;1
+55775;18381;2;178;85.0;120;80;1;1;0;0;0;0
+55776;19802;2;166;76.0;130;90;3;1;0;0;1;1
+55780;19711;2;160;66.5;120;80;1;1;0;0;0;1
+55782;21233;1;168;59.0;120;80;1;1;0;0;1;0
+55783;21023;1;161;78.0;190;110;1;1;0;0;1;0
+55784;16942;2;175;83.0;120;80;1;1;0;0;1;0
+55785;16726;2;170;82.0;120;80;1;1;0;0;1;1
+55786;21919;1;150;62.0;160;90;3;1;0;0;0;1
+55787;18200;1;156;89.0;140;90;1;1;0;0;0;1
+55788;19837;2;163;56.0;110;70;1;1;0;0;0;1
+55789;16552;1;173;65.0;125;80;1;1;0;0;0;0
+55792;21135;1;158;62.0;100;70;1;1;0;0;1;0
+55793;18098;1;158;102.0;130;80;3;1;0;0;1;1
+55794;21972;1;152;77.0;120;80;1;1;0;0;1;1
+55795;23387;1;170;70.0;120;79;1;1;0;0;1;0
+55797;15139;2;140;40.0;110;80;1;1;0;0;1;0
+55799;19771;1;166;75.0;160;90;2;1;0;0;1;1
+55800;21743;2;175;97.0;160;90;2;2;0;0;1;1
+55802;22550;1;165;55.0;140;90;1;1;0;0;1;1
+55805;20405;1;164;83.0;130;80;3;3;0;0;1;1
+55807;21270;1;150;50.0;125;70;2;1;0;1;1;0
+55809;20993;1;162;76.0;130;80;3;3;0;0;0;0
+55810;20347;1;149;91.0;160;100;1;1;0;0;1;1
+55811;21958;2;169;105.0;150;90;2;1;0;0;1;1
+55812;18078;1;162;74.0;110;72;1;1;0;0;1;0
+55813;18228;1;153;66.0;150;90;3;1;0;0;1;1
+55816;20993;2;168;54.0;140;90;1;1;0;0;1;1
+55817;21767;2;173;91.0;125;90;1;1;0;0;1;0
+55818;21780;1;165;70.0;110;70;1;1;0;0;1;1
+55820;15315;1;147;70.0;140;90;1;1;0;0;1;1
+55822;22767;2;170;83.0;143;73;1;1;0;1;1;1
+55824;22448;2;161;65.0;160;1100;1;1;0;0;1;1
+55825;19169;1;155;85.0;120;80;3;1;0;0;1;1
+55833;21860;1;163;78.0;140;80;2;1;1;0;1;0
+55834;18802;1;137;94.0;140;90;2;1;0;0;1;1
+55835;18034;1;161;90.0;125;76;1;1;0;0;1;0
+55836;23370;1;161;56.0;140;90;1;1;0;0;1;1
+55837;23119;2;178;95.0;130;80;1;1;0;0;1;1
+55838;23115;1;147;63.0;160;90;1;1;0;0;1;1
+55840;15830;1;164;77.0;130;80;1;1;0;0;1;0
+55841;17344;1;162;114.0;120;80;1;1;0;0;1;0
+55842;19948;1;170;95.0;120;80;1;1;0;0;1;0
+55843;18856;1;166;82.0;120;80;1;1;0;0;1;0
+55844;19405;2;158;85.0;110;50;3;2;0;0;1;1
+55845;21157;2;173;66.0;120;80;1;1;0;0;1;0
+55847;15287;1;162;80.0;110;70;2;2;0;0;1;0
+55849;18025;1;176;80.0;120;80;2;1;1;0;1;1
+55850;16029;1;165;72.0;120;70;2;1;0;0;1;0
+55852;20244;1;154;77.0;130;90;1;1;0;0;1;1
+55853;19678;2;175;74.0;100;70;1;1;0;0;1;0
+55854;17289;1;169;69.0;110;70;1;2;0;0;1;0
+55856;16692;2;160;65.0;120;80;2;1;1;0;0;0
+55857;14473;2;180;74.0;140;89;1;1;0;0;0;1
+55858;18357;1;150;84.0;140;80;1;1;0;1;1;1
+55860;16545;1;156;81.0;140;98;1;2;0;0;1;0
+55862;18903;1;163;77.0;140;80;3;1;0;0;0;1
+55864;19761;1;172;52.0;100;70;1;1;1;0;1;0
+55866;19584;1;162;56.0;110;80;1;1;0;0;1;0
+55868;19069;1;160;59.0;150;100;1;1;0;0;0;1
+55869;16741;1;159;62.0;100;60;1;1;0;0;1;0
+55870;18992;1;156;71.0;110;70;1;1;0;0;1;0
+55871;18258;1;165;66.0;160;90;3;1;0;0;0;1
+55872;20211;1;164;71.0;130;90;1;1;0;0;1;1
+55874;22039;1;168;80.0;140;90;3;1;0;0;1;1
+55875;21153;1;170;75.0;120;80;1;1;0;0;0;0
+55876;20419;1;168;70.0;120;80;1;1;0;0;0;0
+55877;21335;1;160;88.0;140;90;1;1;0;0;1;1
+55878;22121;1;155;55.0;110;60;1;1;0;0;1;0
+55879;21194;2;179;81.0;120;80;3;1;0;0;1;1
+55881;15360;2;185;115.0;140;100;1;1;1;0;0;1
+55883;18184;1;161;72.0;120;80;2;1;0;0;1;0
+55884;23471;1;149;77.0;180;90;1;1;0;0;0;1
+55885;19669;1;156;88.0;120;70;1;1;0;0;0;1
+55886;21375;2;178;80.0;130;80;1;1;0;0;1;0
+55887;21164;1;157;73.0;140;90;1;1;0;0;1;1
+55888;21281;1;165;65.0;120;79;3;3;0;0;0;0
+55889;15498;2;178;74.0;120;80;1;1;0;0;0;1
+55890;18932;2;178;71.0;120;80;1;1;1;0;1;0
+55892;21287;1;157;50.0;160;80;1;1;0;0;1;0
+55893;22663;1;175;65.0;140;1000;1;1;0;0;1;1
+55895;17472;1;166;82.0;110;50;1;1;0;0;0;1
+55897;17537;2;168;92.0;110;70;1;1;0;0;1;0
+55902;16104;2;181;118.0;140;90;3;1;1;0;0;1
+55903;21669;1;164;105.0;170;90;1;1;0;0;1;0
+55904;19137;2;167;78.0;160;90;1;1;0;0;1;1
+55905;15134;2;174;96.0;100;80;1;1;0;0;0;1
+55906;20337;1;159;90.0;145;90;3;3;0;0;1;1
+55907;17629;2;162;62.0;120;80;1;1;0;0;1;1
+55908;16928;1;160;58.0;110;80;1;1;0;0;1;0
+55909;21855;1;159;67.0;150;100;1;1;0;0;1;1
+55910;19479;2;172;69.0;130;80;1;1;0;0;0;1
+55911;19737;1;163;108.0;120;90;1;1;0;0;1;1
+55913;18246;1;154;66.0;120;90;1;1;1;0;1;0
+55914;22014;1;163;63.0;120;80;3;3;0;0;1;1
+55915;14570;1;158;79.0;105;60;1;1;0;1;0;0
+55916;18314;1;152;67.0;120;90;1;2;0;0;1;1
+55918;21844;1;176;76.0;130;80;1;1;0;0;0;1
+55919;14664;2;174;75.0;120;80;1;1;0;0;0;0
+55922;20450;1;151;54.0;110;80;3;1;0;0;1;0
+55923;21149;1;176;60.0;120;80;1;1;0;0;1;1
+55925;20411;1;165;100.0;140;70;3;1;0;0;1;1
+55926;19093;1;170;93.0;140;90;3;3;0;0;1;1
+55927;18197;2;170;80.0;140;100;1;1;0;0;0;1
+55928;22763;1;150;60.0;120;70;1;2;0;0;1;1
+55929;21274;2;178;103.0;160;100;1;1;0;0;0;1
+55930;18905;2;176;71.0;160;90;2;1;1;0;1;1
+55931;21158;1;157;74.0;120;70;1;1;0;0;1;1
+55932;20621;1;156;75.0;120;80;1;1;0;0;1;1
+55933;22073;1;163;85.0;130;70;1;1;0;0;0;1
+55934;21762;1;168;114.0;120;80;1;1;0;0;1;0
+55938;21820;1;154;69.0;140;90;1;2;0;0;1;0
+55939;23285;1;154;64.0;120;80;1;1;0;0;1;0
+55940;18494;1;151;68.0;110;80;1;1;0;0;1;0
+55941;16583;2;168;65.0;110;80;1;1;0;0;1;0
+55942;18926;2;166;62.0;150;80;1;1;0;0;0;0
+55943;20308;1;155;100.0;160;100;1;2;0;0;1;1
+55944;20330;2;159;95.0;140;90;1;1;1;0;1;0
+55946;22516;1;162;79.0;100;70;2;2;0;0;0;0
+55949;21280;1;150;50.0;120;80;1;1;0;0;1;0
+55950;20404;2;176;97.0;150;90;1;1;0;0;1;1
+55951;19859;1;180;87.0;110;70;2;2;0;0;0;1
+55954;16995;1;169;84.0;150;80;1;1;0;0;1;0
+55955;21738;1;166;88.0;120;80;1;1;0;0;1;0
+55956;21472;1;159;65.0;120;80;1;1;0;0;1;0
+55958;19793;2;165;65.0;180;100;2;1;0;0;1;1
+55961;16126;2;180;68.0;110;70;2;2;0;0;1;0
+55963;22083;1;160;77.0;150;90;1;1;0;0;1;1
+55965;20431;2;166;73.0;120;80;1;1;0;0;1;0
+55966;19080;1;165;68.0;120;80;1;1;0;0;0;0
+55967;17588;1;164;77.0;120;80;1;1;0;0;1;0
+55968;18742;1;158;62.0;110;80;1;1;0;0;1;0
+55969;15322;1;161;60.0;90;60;2;2;0;0;1;0
+55970;16078;1;179;63.0;130;80;1;3;0;0;1;0
+55972;23408;1;150;97.0;160;100;2;1;0;0;1;1
+55973;18219;1;165;66.0;130;90;3;1;0;0;0;1
+55976;19055;1;165;71.0;140;90;1;1;0;0;1;1
+55977;23228;2;162;77.0;130;80;1;2;0;0;1;1
+55979;18329;1;179;98.0;120;80;1;1;0;0;1;1
+55982;20334;1;162;95.0;180;100;1;1;0;0;1;1
+55983;19521;1;157;65.0;110;80;2;2;0;0;1;0
+55984;14852;2;173;83.0;170;1000;1;1;1;1;1;1
+55987;21355;1;170;69.0;120;80;1;1;0;0;1;1
+55988;19631;2;173;72.0;120;80;2;1;0;0;1;0
+55990;19070;1;161;64.0;110;80;1;1;0;0;1;0
+55991;18966;2;168;63.0;140;90;1;2;0;0;0;1
+55993;22799;2;160;58.0;170;1000;1;1;0;0;1;1
+55996;18733;2;167;94.0;120;80;1;1;0;0;0;0
+55997;19496;2;178;103.0;130;80;1;1;0;0;1;0
+55998;18846;1;174;63.0;140;90;1;1;0;0;1;1
+56001;18745;2;161;69.0;120;80;1;1;0;0;1;1
+56003;15259;1;160;60.0;120;80;1;1;0;0;0;0
+56004;22669;2;175;80.0;120;80;1;1;1;0;1;0
+56006;18298;1;158;68.0;110;70;1;1;0;0;1;1
+56009;22041;1;170;95.0;140;90;3;3;0;0;1;0
+56010;16625;2;169;68.0;110;70;1;1;0;0;1;0
+56011;22639;1;153;79.0;113;79;2;2;1;1;1;0
+56012;21291;2;170;70.0;120;80;1;1;0;0;0;0
+56013;16289;2;170;72.0;120;90;1;1;0;0;1;0
+56015;16370;2;165;65.0;120;80;1;1;0;0;1;1
+56016;18100;1;164;56.0;110;70;2;1;0;0;1;0
+56018;20471;1;155;71.0;160;100;1;1;0;0;1;1
+56019;15395;2;161;59.0;120;70;1;1;1;0;1;0
+56020;21219;1;176;95.0;120;80;1;1;0;0;0;1
+56021;22680;1;165;62.0;120;90;3;3;0;0;1;1
+56022;22700;1;163;59.0;120;80;1;3;0;0;1;1
+56023;16043;1;156;91.0;120;80;1;1;0;0;1;0
+56029;16055;1;158;75.0;110;70;1;1;0;0;0;0
+56031;19052;1;160;72.0;120;80;1;1;0;0;1;0
+56032;21152;1;168;64.0;140;1000;1;1;0;0;0;0
+56037;19767;1;165;98.0;120;80;1;1;0;0;1;0
+56038;23468;1;168;70.0;140;70;3;3;0;0;1;1
+56041;21443;2;169;73.0;120;80;1;1;0;0;1;0
+56042;19913;2;176;84.0;130;80;2;1;1;0;0;1
+56045;18750;2;158;58.0;120;80;1;1;0;0;1;0
+56046;21812;1;169;48.0;140;90;1;1;0;0;1;1
+56047;19506;1;158;70.0;139;91;2;2;0;0;1;1
+56048;19982;2;165;65.0;11;120;1;1;0;0;0;0
+56049;18311;1;151;48.0;90;60;1;1;0;0;1;0
+56050;16178;1;182;101.0;111;70;3;1;0;0;1;0
+56051;21415;2;174;85.0;120;80;1;1;0;0;1;1
+56052;20974;1;165;80.0;120;80;1;1;0;0;1;0
+56053;21020;1;160;70.0;120;80;1;1;0;0;1;0
+56054;16874;1;168;56.0;110;70;1;1;0;0;0;0
+56055;17642;1;165;75.0;110;70;1;1;0;0;0;0
+56056;15354;2;175;59.0;120;79;1;1;0;0;1;0
+56057;20491;1;178;80.0;150;90;1;1;0;0;1;1
+56058;16059;1;157;58.0;110;80;1;1;0;0;1;0
+56059;14401;1;159;89.0;100;70;1;1;0;0;1;0
+56062;18913;2;171;75.0;125;70;1;1;0;0;1;0
+56065;15915;1;164;43.0;90;60;1;1;0;0;1;0
+56066;21158;1;168;74.0;100;59;1;1;0;0;1;0
+56068;21176;1;164;78.0;120;80;1;1;0;0;1;1
+56070;16569;2;161;66.0;120;80;1;1;0;0;1;0
+56071;18346;2;172;74.0;120;80;1;1;1;0;1;0
+56072;17615;2;178;93.0;190;100;1;1;1;0;1;1
+56074;19681;1;150;72.0;180;120;1;1;0;0;1;1
+56075;20953;1;165;77.0;130;80;1;1;0;0;1;1
+56078;21454;1;162;71.0;130;90;1;1;0;0;1;1
+56079;19938;1;168;85.0;140;90;3;3;0;0;1;1
+56080;23106;1;158;84.0;160;90;3;3;0;0;1;0
+56081;21028;1;147;50.0;110;70;1;1;0;0;1;0
+56082;16250;1;165;58.0;110;70;1;1;0;0;1;0
+56084;22709;2;164;76.0;130;90;1;1;0;0;1;1
+56085;20192;2;160;51.0;120;90;3;1;0;0;1;0
+56087;18034;1;162;118.0;140;90;1;1;0;0;1;1
+56089;18201;1;174;107.0;130;90;1;1;1;0;1;0
+56090;21955;1;160;73.0;140;80;3;1;0;0;1;1
+56093;22003;2;183;95.0;120;60;1;1;0;0;1;0
+56094;18775;2;180;78.0;110;70;1;1;1;0;1;0
+56095;18228;1;164;80.0;120;80;1;1;0;1;1;1
+56096;23261;2;180;80.0;130;90;1;1;0;0;1;0
+56097;23202;2;168;69.0;160;90;1;1;0;0;1;0
+56098;17406;2;162;70.0;120;80;1;1;0;0;1;0
+56099;14766;1;165;68.0;120;80;1;1;0;0;1;0
+56100;18044;1;156;57.0;100;70;1;1;0;0;1;0
+56103;18062;2;164;78.0;140;90;1;1;0;0;1;1
+56104;17317;2;151;45.0;140;80;1;1;1;0;1;1
+56105;18024;2;188;91.0;130;80;1;1;0;0;1;0
+56106;20550;2;176;70.0;120;70;1;1;0;0;1;0
+56108;23240;2;152;74.0;120;80;1;1;0;0;1;0
+56109;19616;1;165;90.0;130;80;1;2;0;0;1;1
+56110;23182;2;167;74.0;130;80;1;1;0;0;0;1
+56111;19743;2;167;130.0;120;80;2;3;1;1;0;0
+56112;19018;2;178;88.0;120;70;1;1;1;0;0;0
+56113;22082;1;165;66.0;140;80;1;1;0;0;0;1
+56116;15235;1;165;78.0;110;70;1;1;0;0;0;0
+56117;16630;1;158;55.0;120;80;1;1;1;1;1;0
+56120;16644;1;163;80.0;120;80;1;1;0;0;1;1
+56122;17548;2;168;74.0;140;70;1;1;0;0;1;1
+56125;14731;2;168;68.0;120;80;1;1;0;0;0;0
+56126;21250;2;174;82.0;120;80;2;1;0;0;1;0
+56127;23212;1;150;80.0;150;80;1;1;0;0;1;0
+56128;21670;1;160;101.0;179;72;3;2;0;0;1;1
+56129;21902;1;157;70.0;100;70;3;1;0;0;1;1
+56131;19586;1;161;132.0;150;90;3;1;0;0;1;1
+56132;19617;2;160;60.0;120;80;1;1;0;0;1;0
+56133;19107;2;165;72.0;120;80;1;1;1;1;1;0
+56134;19674;1;161;51.0;160;1000;2;1;0;0;1;1
+56135;20399;2;175;85.0;140;90;2;1;0;1;1;1
+56137;15387;1;160;67.0;140;80;1;1;0;0;1;1
+56138;18125;1;160;70.0;120;80;1;1;0;0;1;0
+56139;23106;1;152;74.0;160;100;2;2;0;0;1;1
+56140;18236;1;165;65.0;120;79;1;1;0;0;0;0
+56141;15279;2;172;78.0;120;80;2;1;0;0;1;0
+56142;21832;1;162;69.0;160;90;1;1;0;0;1;1
+56143;20453;1;165;80.0;137;76;1;1;0;0;0;0
+56144;19009;1;146;83.0;150;90;2;1;0;0;1;1
+56147;17473;1;155;66.0;120;80;1;1;0;0;0;0
+56148;14415;2;178;75.0;120;80;1;1;1;0;1;0
+56149;16923;1;179;65.0;110;70;1;1;0;0;0;0
+56151;14584;1;158;93.0;120;79;1;1;0;0;1;0
+56153;17992;1;158;62.0;120;80;1;1;0;0;1;0
+56154;18119;2;171;57.0;110;80;1;1;1;0;0;1
+56157;16664;2;174;64.0;120;80;1;1;0;1;0;0
+56158;18838;1;151;117.0;120;80;1;1;0;0;1;0
+56159;19570;1;157;78.0;140;90;2;2;0;0;0;1
+56160;22873;1;170;97.0;130;70;2;3;0;0;1;0
+56162;18236;1;168;92.0;200;140;1;1;0;0;1;1
+56164;23248;1;154;91.0;140;90;1;1;0;0;1;1
+56168;21288;2;168;60.0;120;80;1;1;0;0;1;0
+56169;21272;2;172;81.0;120;80;1;1;0;0;1;0
+56172;19127;1;169;71.0;120;80;1;1;0;0;0;0
+56173;20483;1;156;73.0;110;60;1;1;0;0;1;0
+56174;23106;1;159;70.0;140;95;1;1;0;0;1;1
+56175;19792;1;160;60.0;120;80;1;1;0;0;1;1
+56176;15980;1;170;70.0;120;80;1;1;0;0;1;0
+56177;17546;1;149;82.0;120;80;1;1;0;0;1;0
+56178;15793;2;167;50.0;100;60;1;1;0;0;1;0
+56179;21927;1;156;69.0;145;80;3;1;0;0;0;1
+56180;18325;2;159;70.0;140;90;1;1;0;0;0;0
+56181;17514;2;167;95.0;130;80;1;3;1;1;1;0
+56182;20540;1;169;67.0;120;80;1;1;0;0;0;1
+56183;18468;1;164;59.0;120;70;1;1;0;0;1;0
+56184;22611;1;160;67.0;90;60;1;1;0;0;0;0
+56186;23219;1;153;87.0;130;80;1;1;0;0;1;1
+56190;18706;1;160;72.0;120;80;1;1;0;0;1;1
+56193;21023;2;173;70.0;120;80;1;1;0;0;1;0
+56195;17510;2;173;70.0;130;70;1;1;1;0;1;1
+56196;22850;1;154;72.0;180;70;1;1;0;0;1;1
+56197;20511;1;165;69.0;120;80;1;1;0;0;0;1
+56200;23327;1;157;94.0;130;70;1;1;0;0;0;1
+56201;17345;1;150;66.0;110;70;1;1;0;1;1;0
+56202;23340;2;168;64.0;120;80;3;1;1;0;0;0
+56203;15975;2;175;78.0;120;80;1;1;1;1;1;0
+56205;18751;1;156;74.0;140;90;3;3;0;0;1;1
+56206;21825;2;168;63.0;120;80;1;1;0;0;1;0
+56208;19535;1;155;68.0;120;80;3;1;0;0;1;1
+56210;16607;2;198;92.0;120;80;1;1;0;0;1;0
+56212;20981;1;162;78.0;110;90;1;1;0;0;1;0
+56214;20475;1;170;80.0;120;80;1;1;0;0;0;1
+56215;21045;1;169;65.0;130;90;2;1;0;0;0;1
+56216;17311;1;156;50.0;80;60;2;2;1;1;1;0
+56217;17446;2;167;69.0;120;80;3;1;0;0;0;0
+56218;18243;1;157;67.0;120;80;1;1;0;0;1;1
+56220;15847;1;162;63.0;160;100;3;3;0;0;0;1
+56221;14293;2;182;75.0;120;80;2;1;0;0;1;0
+56222;20531;2;177;82.0;120;80;1;1;1;1;1;0
+56223;17483;2;168;60.0;110;70;1;1;0;0;0;0
+56226;15168;2;166;65.0;120;80;1;1;0;0;1;0
+56227;18745;2;180;110.0;140;90;3;3;0;0;1;1
+56229;18353;1;164;90.0;110;80;1;1;0;0;1;0
+56230;18159;1;163;50.0;90;60;1;1;0;0;1;0
+56231;19029;2;175;68.0;110;70;1;2;0;0;1;1
+56235;15369;1;146;63.0;110;70;1;1;0;0;1;0
+56236;15354;2;156;46.0;110;80;1;1;0;0;1;0
+56237;20568;1;155;74.0;115;78;1;1;0;0;1;0
+56238;16685;1;162;90.0;120;80;1;1;0;0;1;0
+56241;18300;2;175;89.0;130;90;1;1;0;0;1;0
+56243;20487;1;158;110.0;130;90;3;3;0;0;1;0
+56244;20599;2;163;62.0;110;60;1;1;0;0;1;1
+56246;21898;2;175;103.0;160;80;2;1;0;0;1;0
+56248;18906;1;155;50.0;120;80;1;1;0;0;1;0
+56249;14492;1;156;81.0;120;80;1;2;0;0;1;1
+56250;23440;2;164;84.0;120;60;1;1;0;0;0;1
+56251;20460;1;162;69.0;100;60;1;1;0;0;1;0
+56252;18184;2;178;80.7;135;95;2;1;0;0;1;0
+56253;20393;1;150;93.0;140;100;3;2;0;0;1;1
+56254;15141;2;167;63.0;120;80;3;2;1;0;0;0
+56255;21986;1;158;110.0;120;80;3;1;0;0;1;1
+56258;22640;1;156;85.0;160;90;1;1;0;0;1;1
+56259;22158;2;166;69.0;130;90;1;1;1;0;1;1
+56260;18888;1;170;86.0;130;80;1;1;0;1;1;0
+56261;19161;2;170;89.0;130;80;3;3;0;0;1;1
+56262;17538;1;165;60.0;120;80;1;1;1;1;1;0
+56263;18369;1;162;67.0;120;80;1;1;0;0;1;0
+56264;21033;1;150;42.0;130;80;1;1;0;0;1;1
+56265;20550;1;161;64.0;128;76;1;2;0;0;1;0
+56268;19550;1;153;73.0;120;90;2;1;0;0;0;1
+56269;15014;1;159;57.0;115;60;2;1;0;0;1;1
+56270;19035;2;179;84.7;140;90;1;1;0;0;1;1
+56272;15301;1;168;65.0;120;80;1;1;0;0;1;0
+56273;23356;1;164;58.0;120;80;1;1;0;0;1;1
+56274;21288;1;165;65.0;120;80;1;1;0;0;1;1
+56278;21706;1;162;49.0;120;80;1;1;0;0;1;0
+56279;20262;1;154;91.0;120;80;1;3;0;0;1;0
+56281;20172;2;163;61.0;115;75;1;1;1;0;1;0
+56282;21018;1;156;60.0;100;80;1;2;0;0;1;0
+56284;22603;1;164;93.0;150;90;3;1;0;0;1;1
+56285;16657;2;170;76.0;160;90;1;1;1;0;0;1
+56286;19176;1;151;70.0;130;70;3;1;0;0;1;0
+56287;20899;2;165;65.0;120;80;1;1;0;0;1;1
+56288;18931;1;156;72.0;110;70;1;1;0;0;1;0
+56289;17433;1;156;53.0;100;60;1;1;0;0;1;0
+56290;21961;1;156;51.0;120;80;1;1;0;0;1;0
+56291;21391;2;177;81.0;140;90;1;1;0;0;1;1
+56292;21014;2;167;102.0;14;80;2;2;0;0;0;1
+56293;21688;2;176;69.0;140;90;1;1;0;0;1;0
+56294;20042;1;165;69.0;120;80;3;3;0;0;1;0
+56296;21768;1;155;110.0;140;90;2;1;0;0;1;1
+56297;18925;1;170;56.0;140;80;1;1;0;0;1;1
+56298;16788;2;170;70.0;120;80;1;1;0;0;1;0
+56299;19115;1;160;72.0;120;80;1;3;0;0;0;0
+56301;16026;2;162;56.0;110;80;1;1;0;0;1;0
+56302;18184;1;162;89.0;150;80;2;1;0;0;1;1
+56303;22491;1;152;61.0;180;1000;2;1;0;0;1;1
+56305;18324;1;169;69.0;120;80;1;1;0;0;1;0
+56306;19456;1;164;77.0;135;90;1;1;0;0;1;0
+56308;21227;1;153;75.0;153;104;3;2;0;0;1;1
+56309;19945;1;168;65.0;130;70;1;1;0;0;1;0
+56310;23454;1;155;76.0;160;100;1;1;0;0;1;1
+56314;16059;2;171;78.0;110;80;1;1;1;0;1;1
+56315;20698;1;155;81.0;160;85;1;1;0;0;1;1
+56317;20719;1;170;90.0;170;80;1;2;0;0;0;1
+56319;21327;2;168;72.0;140;90;1;2;0;0;1;1
+56320;17266;1;161;66.0;110;70;1;1;0;0;0;0
+56322;21226;2;165;65.0;120;80;1;1;0;0;0;1
+56323;21446;1;160;93.0;130;90;3;3;0;0;1;1
+56324;20434;1;162;76.0;130;70;1;1;0;0;1;0
+56325;22620;1;157;88.0;175;1011;3;3;0;0;1;1
+56332;21466;1;165;65.0;130;80;1;1;0;0;1;0
+56334;20986;2;168;87.0;120;80;1;1;0;0;1;0
+56335;19891;1;164;65.0;120;80;1;1;0;0;1;1
+56337;22507;2;169;68.0;140;80;1;1;0;0;1;1
+56338;18243;2;178;85.0;120;80;2;1;0;0;1;1
+56339;21355;2;175;72.0;120;80;3;1;0;0;0;0
+56340;23497;1;164;75.0;160;90;1;1;0;0;1;1
+56341;18341;1;160;75.0;100;75;1;1;0;0;1;0
+56344;21159;2;171;64.0;120;80;1;1;0;0;0;0
+56345;18350;1;165;80.0;180;100;1;1;0;0;0;1
+56348;17364;2;163;60.0;140;80;1;1;0;0;1;1
+56349;22537;2;170;76.0;140;70;1;1;0;0;1;1
+56350;21174;1;158;56.0;120;80;1;1;0;0;1;1
+56352;20284;1;157;80.0;120;80;3;3;0;0;0;0
+56353;21039;2;172;85.0;120;80;1;1;0;0;0;1
+56354;18441;1;162;68.0;140;90;1;2;0;0;1;1
+56356;18617;1;158;63.0;120;80;2;1;0;0;0;1
+56357;20555;2;178;94.0;150;100;3;3;0;0;1;1
+56360;17658;2;170;69.0;120;80;1;1;0;0;1;0
+56361;15194;2;170;65.0;120;80;1;1;0;0;1;0
+56362;20446;1;163;77.0;150;90;1;1;0;0;1;0
+56363;23472;1;171;56.0;130;70;1;1;0;0;1;1
+56365;22690;2;178;87.0;120;70;1;1;0;0;1;1
+56366;17439;2;168;65.0;120;80;1;1;0;0;1;1
+56367;16013;1;175;78.0;155;90;1;1;0;0;0;1
+56369;18367;2;172;58.0;160;90;1;1;0;0;1;0
+56370;16793;1;159;69.0;120;80;1;1;0;0;1;0
+56374;17459;2;168;82.0;130;90;2;1;0;0;1;1
+56378;18859;1;171;72.0;120;80;1;1;0;0;1;0
+56379;22812;2;165;65.0;140;1000;1;1;0;0;1;1
+56380;18403;1;169;65.0;120;80;1;1;0;0;1;1
+56382;18520;1;170;60.0;120;80;1;1;0;0;1;0
+56386;21302;1;165;65.0;120;80;1;1;0;0;1;0
+56387;15332;1;160;60.0;90;60;1;1;0;0;0;0
+56388;21906;1;155;75.0;140;100;3;1;0;0;1;1
+56391;20956;1;164;77.0;110;70;2;1;0;1;1;0
+56393;18181;1;160;70.0;110;70;1;1;0;1;1;0
+56395;18844;2;156;54.0;150;90;1;1;0;0;0;0
+56397;19238;1;158;72.0;95;140;1;1;0;0;1;1
+56398;14588;2;164;67.0;120;80;1;1;0;0;1;0
+56399;19628;2;175;89.0;170;110;3;3;0;0;1;1
+56400;22637;1;164;70.0;120;70;1;1;0;0;1;1
+56401;20411;1;167;81.0;120;80;1;1;0;0;1;1
+56402;16714;2;173;85.0;140;80;1;1;0;0;0;1
+56403;20982;1;149;54.0;110;70;1;1;0;0;1;0
+56404;20338;1;172;80.0;130;80;1;1;0;0;0;1
+56405;22444;2;162;50.0;120;80;1;1;0;0;1;0
+56407;20679;1;159;92.0;130;90;3;1;0;0;1;0
+56408;19724;1;154;85.0;90;80;2;1;0;0;1;0
+56410;21435;2;169;61.0;120;80;1;1;0;0;1;0
+56411;22582;1;151;54.0;120;80;1;1;0;0;1;0
+56412;16643;1;152;66.0;120;90;1;1;0;0;1;0
+56414;19025;1;151;82.0;140;90;3;1;0;0;0;1
+56415;23257;2;162;77.0;140;80;3;1;0;0;0;1
+56416;23443;2;161;75.0;120;80;1;1;1;0;1;1
+56417;22694;1;168;73.0;140;90;1;2;0;0;1;1
+56418;21868;1;169;68.0;140;90;1;1;0;0;0;0
+56419;20568;1;161;71.0;130;90;3;1;0;0;1;1
+56420;20583;1;160;100.0;120;80;1;1;0;0;1;1
+56421;20288;1;169;76.0;110;70;1;1;0;0;0;1
+56424;16603;2;180;90.0;110;70;1;1;1;1;1;1
+56425;15924;2;168;50.0;120;80;1;1;0;0;1;0
+56426;18901;2;172;69.0;120;80;1;1;0;0;1;0
+56428;21652;2;170;86.0;110;70;1;1;0;0;0;0
+56432;18989;1;161;70.0;120;80;1;1;0;0;1;0
+56433;15388;2;170;82.0;120;80;1;1;0;0;1;0
+56434;14476;2;170;74.0;130;70;2;1;0;1;1;0
+56435;19548;1;157;60.0;140;90;1;1;0;0;1;0
+56436;19030;1;149;53.0;100;60;2;1;0;0;1;1
+56438;22555;1;155;84.0;128;80;1;1;1;0;1;0
+56441;18958;1;175;69.0;120;80;1;1;0;0;1;0
+56442;22540;1;165;105.0;150;90;1;3;0;0;0;0
+56443;14713;1;159;61.0;110;90;1;1;0;0;1;0
+56444;20759;1;166;73.0;120;80;1;2;0;0;1;1
+56445;23291;1;165;99.0;140;90;2;1;0;0;1;1
+56446;18495;1;170;65.0;120;80;1;1;0;0;1;1
+56449;23180;1;149;46.0;120;80;2;1;0;0;1;1
+56452;17517;1;144;55.0;130;90;1;1;0;0;1;1
+56453;21070;1;151;72.0;130;80;3;1;0;0;1;1
+56454;21846;1;156;62.0;130;70;1;1;0;0;1;1
+56456;18506;1;172;89.0;130;80;3;3;0;0;1;1
+56457;18955;2;169;76.0;100;60;1;1;0;0;1;0
+56458;22136;2;169;69.0;120;80;3;3;0;0;1;0
+56459;18841;2;175;86.0;120;80;1;1;1;0;1;0
+56461;18457;1;152;58.0;110;80;3;3;0;0;1;1
+56462;20322;1;162;67.0;120;80;1;1;0;0;1;0
+56463;21745;1;156;81.0;120;80;1;1;0;0;1;0
+56464;18247;2;156;52.0;100;60;1;1;0;0;1;1
+56465;18868;2;163;63.0;120;80;1;1;0;0;1;0
+56470;23488;1;166;64.0;120;80;1;1;0;0;1;1
+56471;19594;2;175;59.0;100;60;1;1;0;0;1;0
+56472;18937;1;169;70.0;160;90;1;1;0;0;1;1
+56473;15184;2;176;73.0;120;80;1;1;0;0;1;0
+56474;18350;1;154;62.0;140;100;1;1;0;0;0;1
+56475;16232;2;170;73.0;100;70;1;1;0;0;0;0
+56476;20657;1;155;56.0;130;80;1;1;0;0;1;1
+56479;22759;1;153;53.0;120;80;2;1;0;0;1;1
+56480;20304;1;151;70.0;130;80;1;1;0;0;1;0
+56481;23303;1;157;97.0;180;90;3;1;0;0;1;1
+56482;23248;1;157;52.0;120;70;1;1;0;0;1;0
+56483;23452;2;175;72.0;120;90;1;1;0;0;1;0
+56485;20638;1;168;68.0;120;80;1;1;0;0;1;1
+56486;23385;1;158;104.0;150;80;1;1;0;0;0;1
+56488;21254;2;168;65.0;120;80;1;1;0;0;0;0
+56489;21924;1;178;89.0;120;80;1;1;0;0;1;0
+56490;22620;1;165;62.0;114;90;1;1;0;0;1;0
+56492;19841;2;165;69.0;120;80;1;1;0;0;1;0
+56493;18184;1;150;75.0;140;80;1;2;0;0;0;1
+56494;14417;1;172;89.0;120;80;1;1;0;0;0;0
+56495;14481;1;158;78.0;140;90;1;1;0;0;0;1
+56496;14606;1;108;70.0;140;90;1;1;0;0;1;1
+56498;17399;1;170;93.0;120;70;1;1;0;0;0;1
+56500;23254;1;160;75.0;160;100;1;1;0;0;1;1
+56501;21097;1;161;110.0;100;80;1;1;0;0;1;1
+56503;21312;2;167;67.0;120;80;1;3;0;0;1;0
+56505;19795;2;166;79.0;160;90;2;1;1;0;1;1
+56507;20197;1;169;94.0;150;90;1;1;0;0;1;1
+56509;20294;1;156;84.0;130;90;2;2;0;0;1;1
+56510;17467;1;157;75.0;120;80;1;1;0;0;1;0
+56511;19081;2;169;86.0;130;90;1;1;0;0;1;1
+56512;16284;2;174;77.0;120;80;1;1;0;0;1;0
+56514;14390;2;168;68.0;120;80;1;1;1;1;1;0
+56516;18298;2;174;69.0;130;80;2;1;0;0;1;1
+56517;19021;2;169;72.0;130;90;1;1;1;0;1;0
+56519;19054;1;170;80.0;120;80;1;1;0;0;1;1
+56520;20605;1;155;64.0;120;80;1;1;0;0;1;1
+56522;16533;2;158;62.0;120;80;1;1;1;1;1;0
+56523;19447;2;173;70.0;120;80;1;1;1;0;1;1
+56524;15251;1;162;64.0;120;80;1;1;0;0;1;0
+56525;18240;1;165;69.0;120;80;3;3;0;0;1;0
+56526;20582;2;178;79.0;120;80;1;1;0;0;1;1
+56528;21755;2;165;64.0;110;70;1;1;1;0;1;0
+56529;20341;1;160;56.0;110;70;1;1;0;0;1;0
+56530;21931;1;156;55.0;150;90;1;1;0;0;1;1
+56531;22704;1;164;97.0;130;90;3;1;0;0;1;1
+56535;20355;1;168;78.0;120;80;1;1;0;0;0;1
+56536;22876;1;169;73.0;140;90;1;1;0;0;0;1
+56537;21939;2;170;70.0;120;80;1;1;0;0;1;1
+56539;21871;2;162;70.0;110;70;1;1;0;0;1;0
+56540;22439;1;148;72.0;130;90;3;1;0;0;0;1
+56541;19628;1;156;60.0;140;80;1;1;0;0;1;1
+56542;22041;2;171;63.0;112;72;1;1;0;0;1;0
+56543;18243;1;156;68.0;135;95;1;1;0;0;0;1
+56545;16638;2;165;80.0;160;100;1;1;1;1;0;1
+56546;21320;2;165;65.0;120;80;1;1;0;0;1;0
+56547;21900;1;142;53.0;120;80;1;1;0;0;1;1
+56549;21975;1;159;61.0;120;80;1;1;0;0;1;1
+56550;17059;1;158;85.0;140;90;1;1;0;0;1;1
+56551;20704;2;179;85.0;130;70;1;1;1;1;1;0
+56552;23482;1;156;87.0;140;70;1;1;0;0;1;1
+56553;21036;1;152;82.0;120;70;1;1;0;0;1;0
+56554;20336;1;162;86.0;120;70;2;1;0;0;1;1
+56556;21869;2;168;67.0;120;80;2;2;0;0;0;1
+56557;19548;1;167;72.0;130;90;3;3;0;0;0;1
+56558;23093;1;160;86.0;130;80;1;1;0;0;0;1
+56559;23378;1;158;80.0;120;80;1;1;0;0;1;0
+56560;18161;1;168;84.0;140;90;1;1;0;0;1;1
+56562;23463;1;165;85.0;130;90;2;3;0;0;1;0
+56563;17670;2;168;56.0;110;80;1;1;0;0;1;0
+56564;16528;1;158;52.0;120;80;1;1;0;0;0;0
+56566;14563;1;162;55.0;100;60;1;1;0;0;0;0
+56567;22394;1;159;60.0;120;80;1;1;0;0;1;0
+56568;18218;1;158;60.0;130;80;3;3;0;0;1;0
+56569;20195;2;172;90.0;120;80;1;1;0;0;1;1
+56570;15346;1;161;57.0;120;80;1;1;0;0;1;0
+56573;20383;1;150;82.0;120;80;1;1;0;0;1;0
+56575;23233;2;175;100.0;150;100;2;2;0;0;1;1
+56577;20389;2;175;126.0;130;80;1;1;1;0;1;1
+56578;18186;1;156;63.0;170;110;1;1;0;0;0;1
+56579;18985;1;164;71.0;110;70;1;1;0;0;1;0
+56580;18864;1;165;60.0;120;80;1;1;0;0;1;1
+56581;18168;2;174;85.0;150;100;2;1;0;0;1;1
+56585;19760;2;165;90.0;160;100;3;3;0;0;1;1
+56587;18536;2;170;74.0;120;80;2;1;0;0;0;1
+56588;21783;1;165;70.0;170;100;2;1;0;0;1;1
+56589;19832;1;165;65.0;120;80;1;1;0;0;1;0
+56592;19976;1;162;65.0;120;80;1;1;0;0;1;0
+56593;16889;1;170;63.0;110;70;1;1;0;0;0;0
+56594;15999;1;158;53.0;100;60;1;1;0;0;1;0
+56595;18916;1;165;79.0;140;90;3;1;0;0;1;1
+56596;19674;2;168;83.0;130;80;1;1;0;0;1;0
+56597;21051;1;169;101.0;130;80;3;3;0;0;0;1
+56598;21782;2;170;88.0;150;90;3;1;0;0;1;1
+56600;21021;1;163;91.0;130;90;1;1;0;1;1;1
+56603;18072;1;152;61.0;150;90;1;1;0;0;1;1
+56604;20373;1;165;80.0;130;80;1;3;0;0;1;1
+56608;19885;1;160;68.0;120;80;1;1;0;0;1;0
+56610;22493;2;180;90.0;160;90;1;1;0;0;1;1
+56612;23495;2;175;95.0;150;100;1;2;1;0;1;1
+56614;20359;1;172;68.0;120;60;1;1;0;0;0;1
+56616;16882;1;157;54.0;125;80;1;1;0;0;1;0
+56618;21165;1;158;76.0;160;80;2;1;0;0;1;1
+56620;19092;2;170;75.0;110;70;1;1;0;0;0;0
+56622;16583;1;165;61.0;140;80;1;2;0;0;1;1
+56624;19659;1;166;74.0;130;80;3;1;0;1;0;1
+56625;17762;2;178;74.0;120;80;1;1;0;0;1;0
+56626;15334;1;163;86.0;120;80;1;1;0;0;1;0
+56627;19596;1;165;65.0;120;80;1;1;0;0;1;1
+56628;18266;2;165;60.0;120;80;1;1;0;0;1;0
+56629;22597;2;183;70.0;160;80;1;1;1;0;1;1
+56631;22761;1;150;68.0;140;90;3;1;0;0;0;1
+56633;18325;1;158;58.0;110;70;1;1;0;0;1;0
+56634;20290;2;180;94.0;130;70;1;3;1;0;1;1
+56635;21816;1;160;72.0;130;90;1;1;0;0;0;1
+56640;20386;1;162;100.0;130;70;3;1;1;0;0;1
+56641;15337;2;156;58.0;120;80;1;1;0;0;1;0
+56642;20307;2;184;84.0;100;60;1;1;0;0;1;0
+56645;15029;1;150;93.0;130;80;1;1;0;0;1;0
+56646;19585;1;174;69.0;140;90;3;3;0;0;1;1
+56647;17612;1;158;104.0;190;90;1;1;0;0;1;1
+56649;22835;1;159;74.0;140;90;1;1;0;0;1;0
+56650;20563;1;156;60.0;130;80;2;1;0;0;0;1
+56651;18915;2;160;60.0;120;80;1;1;0;0;0;0
+56652;21047;2;168;105.0;130;80;1;1;0;0;0;1
+56653;17257;2;178;77.0;120;80;1;1;1;1;0;0
+56654;20977;1;158;52.0;110;70;1;1;0;0;0;1
+56655;16024;2;169;71.0;120;80;1;1;0;0;1;0
+56656;20980;1;158;70.0;130;80;1;1;0;0;1;1
+56657;18382;1;165;76.0;120;80;1;1;0;0;1;0
+56660;19897;2;165;80.0;110;80;2;1;0;0;1;0
+56661;19083;2;171;74.0;160;100;1;2;0;0;1;1
+56663;21747;2;170;99.0;170;90;1;1;0;0;0;1
+56664;20217;2;152;50.0;100;70;1;1;1;0;1;0
+56665;20549;1;168;73.0;120;80;1;1;0;0;1;1
+56666;14773;1;158;70.0;110;90;1;1;0;0;1;0
+56667;17399;2;181;102.0;130;90;3;1;0;0;0;1
+56668;16644;2;170;72.0;120;75;1;1;0;0;0;0
+56669;14693;1;162;56.0;120;80;1;1;0;0;1;0
+56670;18104;2;175;91.0;120;80;1;1;1;1;0;0
+56671;16914;1;151;85.0;140;90;1;1;0;0;1;1
+56672;21259;1;175;68.0;110;90;2;1;0;0;1;1
+56673;21908;1;164;123.0;160;90;2;3;0;0;1;1
+56674;22785;1;168;79.0;120;80;1;1;0;0;1;1
+56677;14585;2;175;100.0;150;110;2;1;0;0;1;1
+56678;15889;1;159;60.0;140;90;1;1;0;0;1;1
+56679;15999;2;172;68.0;150;100;2;2;0;0;1;1
+56680;17351;1;165;50.0;130;90;1;1;0;0;1;0
+56681;18721;1;170;90.0;120;80;1;3;0;0;1;0
+56682;22875;2;180;72.0;120;80;1;1;0;0;1;0
+56683;20405;1;169;61.0;110;70;1;1;0;0;1;0
+56685;17239;1;166;80.0;160;80;1;1;0;0;0;1
+56686;16162;2;180;84.0;140;90;1;1;1;0;0;1
+56687;21793;1;159;68.0;110;80;2;1;0;0;1;0
+56690;15825;1;167;67.0;120;80;1;1;0;0;1;1
+56692;21799;1;160;75.0;145;90;1;1;0;0;1;1
+56693;21099;1;156;67.0;120;80;1;1;0;1;1;0
+56694;17477;2;160;75.0;100;80;1;1;0;0;1;0
+56696;19672;1;150;90.0;150;90;1;1;0;0;1;1
+56699;20450;1;160;67.0;140;90;1;1;0;0;0;1
+56700;16079;1;164;70.0;120;80;1;1;1;0;0;0
+56701;23352;1;152;77.0;130;80;3;1;0;0;1;1
+56702;15287;2;187;97.0;120;80;1;1;0;0;1;0
+56706;20514;1;178;80.0;110;70;1;3;0;0;0;0
+56708;22087;2;162;64.0;130;90;1;1;0;0;1;0
+56709;21723;2;178;95.0;130;80;3;2;0;0;0;1
+56710;21827;2;168;70.0;120;80;1;1;0;0;1;0
+56711;18253;1;154;58.0;120;80;1;1;0;0;0;0
+56712;17634;1;164;60.0;120;80;3;3;0;0;1;1
+56713;20538;1;159;57.0;120;80;1;1;0;0;1;0
+56714;16673;1;151;56.0;120;80;1;1;0;0;1;0
+56715;19135;2;158;63.0;120;80;1;1;0;0;1;1
+56716;18153;1;168;78.0;130;85;1;3;0;0;1;1
+56717;21320;1;153;74.0;120;80;1;1;0;0;1;1
+56718;22599;1;165;80.0;130;80;1;1;0;0;1;1
+56720;20025;1;182;74.0;110;70;3;3;0;0;1;1
+56721;22869;2;175;98.0;150;90;2;3;0;0;1;1
+56724;18957;1;165;70.0;140;90;2;1;0;0;1;1
+56726;19833;1;162;71.0;130;90;1;2;0;0;1;0
+56727;23291;1;155;85.0;140;80;2;1;0;0;1;1
+56729;17478;2;176;118.0;125;85;1;2;1;0;1;0
+56730;21798;1;157;94.0;130;80;1;1;0;0;1;0
+56731;19821;2;158;78.0;130;90;2;1;1;0;1;0
+56732;16058;2;169;82.0;120;80;1;1;0;0;1;0
+56736;18981;2;168;85.0;140;90;1;1;0;0;1;0
+56739;16642;2;176;72.0;130;90;3;1;0;0;1;1
+56741;22714;2;182;80.0;160;90;1;1;0;1;1;1
+56743;21294;1;152;42.0;160;90;1;1;0;0;1;1
+56744;22658;2;171;96.0;160;80;2;1;0;0;1;1
+56745;21067;1;160;85.0;130;70;3;1;0;0;1;1
+56748;21702;2;171;73.0;110;80;1;1;0;0;1;0
+56750;20432;1;171;69.0;120;80;1;1;0;0;0;0
+56753;15834;1;151;72.0;100;70;1;1;0;0;0;0
+56754;21105;1;170;80.0;120;80;1;1;0;0;1;0
+56756;23270;2;169;67.0;150;90;1;1;0;0;1;1
+56758;22618;2;164;59.0;120;80;1;1;0;0;1;0
+56759;18927;1;162;51.0;90;50;1;1;0;0;0;0
+56760;22542;1;170;70.0;120;80;3;1;0;0;1;0
+56761;19919;1;157;73.0;160;90;2;2;0;0;1;1
+56762;20679;2;170;70.0;130;80;1;1;0;0;1;0
+56765;22027;2;167;78.0;130;80;1;1;0;0;1;0
+56766;19711;2;174;92.0;130;90;3;2;0;0;1;1
+56767;22179;1;172;88.0;130;80;1;1;0;0;1;1
+56768;23388;2;170;91.0;140;90;3;1;0;0;1;1
+56770;22854;2;170;112.0;120;80;1;1;0;0;1;1
+56771;19486;1;151;49.0;100;70;1;1;1;0;1;0
+56772;18316;1;158;82.0;140;90;1;1;0;0;1;1
+56773;20209;1;170;70.0;150;100;1;1;0;0;0;1
+56774;15335;1;158;70.0;11;70;1;1;0;0;1;0
+56776;19654;1;166;98.0;120;80;1;1;0;0;0;0
+56779;14597;1;168;66.0;150;80;1;1;0;0;1;1
+56781;19397;1;164;100.0;110;70;1;1;0;0;1;1
+56782;21931;1;165;60.0;120;90;1;1;0;0;1;0
+56783;14404;1;157;54.0;130;70;1;1;0;0;1;0
+56787;22030;1;150;67.0;130;90;1;1;0;0;1;1
+56788;18354;1;157;47.0;90;60;1;1;0;0;1;0
+56789;20418;1;168;67.0;150;80;1;1;0;0;1;1
+56790;16230;2;158;60.0;115;80;1;1;0;0;1;0
+56791;15911;2;180;110.0;150;90;1;1;1;0;0;1
+56792;20570;2;180;82.0;120;80;1;1;1;0;0;1
+56794;20370;2;172;66.0;120;75;1;1;1;0;1;1
+56795;18773;2;180;98.0;130;80;3;3;0;0;1;1
+56796;18399;1;163;67.0;120;80;1;1;0;0;1;0
+56797;16525;2;173;101.0;120;85;3;1;0;0;1;1
+56798;23430;2;158;69.0;150;1000;1;1;0;0;1;0
+56799;21840;1;160;70.0;120;80;1;1;0;0;0;1
+56801;20356;1;161;87.0;160;95;1;1;0;0;1;1
+56802;20425;1;166;70.0;125;87;1;1;0;0;1;0
+56803;16766;1;158;55.0;110;90;1;1;0;0;1;0
+56804;16304;2;165;65.0;120;80;1;1;0;0;0;0
+56806;15509;1;159;61.0;120;80;1;1;0;0;1;0
+56807;18195;1;159;56.0;100;70;2;2;0;0;1;0
+56808;20271;1;146;83.0;160;90;1;1;0;0;1;1
+56809;18791;1;149;72.0;160;100;3;1;0;0;1;0
+56810;19013;2;176;68.0;120;80;1;1;0;0;1;1
+56811;16770;2;159;95.0;120;80;1;1;0;0;1;1
+56813;22503;1;170;79.0;120;80;1;3;0;0;1;0
+56814;20397;2;165;59.0;140;80;2;1;0;0;1;1
+56815;20264;1;163;71.0;120;70;2;1;0;1;1;1
+56816;17574;1;151;77.0;120;80;1;1;0;0;1;1
+56818;19562;1;165;68.0;120;80;1;1;0;0;1;0
+56820;19626;1;166;60.0;120;80;1;1;0;0;1;0
+56821;23575;2;170;68.0;120;70;1;1;0;0;1;0
+56822;23101;1;152;57.0;150;80;2;1;0;0;1;1
+56824;16973;2;160;60.0;120;80;3;3;0;0;1;0
+56825;20388;1;167;87.0;130;80;1;1;0;0;1;1
+56827;21157;2;176;97.0;140;90;1;1;0;0;0;1
+56828;21214;1;155;70.0;120;80;1;1;0;0;0;1
+56829;23502;2;168;70.0;120;80;1;1;0;0;1;1
+56830;23324;1;158;87.0;120;80;3;3;0;0;1;1
+56832;22422;1;165;67.0;120;80;3;1;0;0;1;1
+56835;21219;2;170;92.0;120;80;3;3;0;0;1;1
+56836;18129;2;178;74.0;150;90;1;1;1;1;1;1
+56837;22530;1;165;68.0;140;90;3;1;0;0;1;1
+56838;20407;1;165;73.0;160;1100;1;1;0;0;1;1
+56839;15886;2;168;72.0;130;80;2;1;1;0;1;0
+56840;20446;2;169;73.0;170;80;3;1;1;1;1;1
+56841;21664;1;144;70.0;140;90;1;1;0;0;1;1
+56843;21892;1;162;60.0;120;80;1;1;0;0;1;0
+56845;14629;2;156;52.0;120;80;1;1;0;0;1;0
+56846;16975;1;159;78.0;110;90;1;1;0;0;1;0
+56848;17384;1;168;90.0;140;80;1;1;0;0;1;0
+56849;18387;1;165;86.0;110;70;1;1;0;0;1;0
+56850;16977;1;161;74.0;120;80;1;1;0;0;1;0
+56851;21730;1;160;50.0;150;90;2;1;0;0;1;1
+56855;18910;1;167;79.0;130;90;2;1;0;0;1;0
+56858;16881;1;162;69.0;110;70;1;1;0;0;1;1
+56859;22543;1;153;60.0;120;60;1;1;0;0;1;0
+56860;16086;1;156;45.0;110;70;1;1;0;0;1;0
+56864;21095;1;165;80.0;140;90;1;1;0;0;1;1
+56866;20387;1;155;50.0;120;80;1;1;0;0;0;0
+56867;23479;1;167;94.0;130;80;3;3;0;0;1;1
+56869;16656;1;149;61.0;110;90;1;1;0;0;1;0
+56870;21219;1;166;69.0;120;80;1;1;0;0;1;0
+56871;16655;1;158;56.0;110;60;1;1;0;0;1;0
+56873;19601;1;160;65.0;110;70;2;2;0;0;0;1
+56874;18129;1;169;66.0;120;80;1;1;0;0;1;1
+56875;14407;2;172;78.0;120;80;1;1;0;0;1;1
+56877;19183;1;167;74.0;120;80;1;1;0;0;0;0
+56878;18837;2;171;90.0;130;85;2;3;0;1;1;0
+56879;15107;2;173;96.0;120;70;1;3;0;0;0;0
+56880;22357;2;187;90.0;150;80;2;1;0;0;0;1
+56882;18120;2;177;100.0;130;90;1;3;0;0;0;0
+56884;19121;1;159;64.0;150;79;1;1;0;0;0;1
+56886;21825;1;162;57.0;140;90;2;1;0;0;1;1
+56888;19794;1;170;75.0;120;80;1;1;0;0;1;0
+56891;17598;1;155;93.0;150;90;1;1;0;0;1;1
+56893;19117;2;180;74.0;130;70;1;1;1;1;1;0
+56894;16828;1;163;65.0;110;70;1;1;0;0;1;0
+56896;18896;1;155;52.0;120;80;1;1;1;0;1;0
+56900;22018;2;158;57.0;130;90;1;1;0;0;1;0
+56901;19833;1;168;68.0;120;80;1;1;0;0;1;1
+56903;16008;1;165;89.0;140;100;2;1;0;0;1;1
+56904;16038;1;161;61.0;160;98;1;1;0;0;0;1
+56905;19618;1;161;76.0;152;90;2;2;0;0;1;1
+56906;22639;1;158;60.1;150;100;2;1;0;0;0;1
+56908;21972;2;170;85.0;130;90;1;1;0;0;1;0
+56909;21020;1;154;90.0;170;100;2;2;0;0;1;1
+56911;16867;1;158;72.0;140;90;1;1;0;0;1;1
+56914;22667;2;165;70.0;130;90;1;1;0;0;1;1
+56915;21688;1;156;62.0;130;80;1;1;0;0;1;1
+56917;16844;1;162;63.0;110;70;1;1;0;0;1;1
+56918;15214;2;170;70.0;120;80;1;1;0;0;1;0
+56919;21863;1;157;52.0;140;90;3;1;0;0;1;1
+56920;16917;1;165;72.0;100;70;1;1;0;0;1;0
+56921;21210;1;157;84.0;120;80;3;1;0;0;1;1
+56923;17585;2;173;68.0;150;90;1;1;0;0;1;1
+56925;16998;2;162;62.0;120;70;1;1;0;0;0;0
+56926;18752;1;160;60.0;120;80;1;1;0;0;0;0
+56927;21354;1;149;60.0;140;90;1;1;0;0;0;0
+56928;16715;1;168;83.0;110;70;2;1;0;0;1;0
+56932;20419;1;165;79.0;120;80;1;1;0;0;1;0
+56933;17953;2;173;78.0;120;80;1;1;1;0;1;1
+56936;14365;2;170;69.0;110;70;1;1;0;0;0;0
+56937;16574;2;168;58.0;120;70;1;1;0;0;0;0
+56939;18135;1;175;68.0;120;80;1;1;0;0;1;1
+56941;20349;2;183;108.0;140;90;2;2;0;0;1;0
+56943;19810;1;170;95.0;130;90;1;1;0;0;1;1
+56945;17359;1;162;72.0;100;70;1;1;0;0;1;0
+56946;20488;1;158;120.0;140;90;3;1;0;0;0;1
+56947;18740;2;178;107.0;130;80;1;1;0;0;1;0
+56948;20909;1;166;92.0;150;90;3;1;0;0;0;1
+56949;18918;2;164;60.0;120;80;1;1;1;0;1;0
+56951;18581;1;164;65.0;120;70;3;3;0;0;1;1
+56952;17938;2;168;51.0;100;60;3;1;0;0;1;0
+56954;18157;1;155;68.0;120;80;1;1;0;0;1;0
+56955;19551;1;152;87.0;140;90;3;3;0;0;1;1
+56958;21304;1;162;62.0;110;70;1;1;0;0;0;0
+56959;21325;2;161;63.0;120;80;1;1;0;0;1;0
+56960;15125;2;166;85.0;120;70;1;3;0;0;1;0
+56961;18262;1;167;88.0;120;80;2;2;0;0;1;0
+56962;18032;1;162;67.0;140;80;2;1;0;0;1;1
+56963;19495;2;168;80.0;140;80;1;1;0;0;1;1
+56964;19870;1;160;60.0;150;90;3;1;0;0;0;1
+56965;17762;2;168;65.0;120;80;1;1;1;1;1;0
+56967;16210;1;158;81.0;120;80;1;1;0;0;1;0
+56970;17960;2;185;86.0;130;80;1;1;0;0;0;0
+56971;23501;1;165;78.0;150;90;3;3;0;0;1;1
+56973;14584;1;158;74.0;100;70;1;1;0;0;1;0
+56976;15353;1;159;64.0;120;80;1;1;0;0;1;0
+56977;19681;2;178;87.0;120;80;1;1;1;1;1;0
+56978;18240;1;158;62.0;120;80;1;1;0;0;0;0
+56981;22574;1;165;68.0;120;80;1;1;0;0;0;1
+56982;19024;1;170;65.0;120;80;1;1;0;0;1;0
+56983;15298;1;163;75.0;120;69;1;1;0;1;1;0
+56984;19858;1;168;82.0;100;60;2;3;0;0;0;1
+56985;21957;1;164;57.0;90;60;1;1;0;0;1;0
+56986;14692;2;163;76.0;120;80;1;1;1;0;1;0
+56989;20179;1;164;88.0;140;90;2;1;0;0;1;1
+56990;21109;2;165;82.0;120;80;3;1;1;0;1;1
+56992;18288;1;164;59.0;120;80;1;1;0;0;1;0
+56996;18336;1;166;82.0;120;80;1;1;0;0;1;0
+56997;16333;1;172;71.0;120;80;1;1;0;0;1;1
+56998;16628;1;162;75.0;150;90;1;1;0;0;1;1
+56999;16732;1;164;76.0;130;80;2;1;0;0;1;1
+57000;22044;1;165;77.0;120;80;1;1;0;0;1;1
+57001;17386;1;168;75.0;120;90;1;1;0;0;1;0
+57003;17689;1;165;65.0;120;80;1;1;0;0;1;1
+57004;18744;2;172;89.0;120;80;1;1;0;0;1;0
+57006;22853;1;156;68.0;120;90;1;1;0;0;1;0
+57007;17726;1;156;62.0;110;70;1;1;0;0;1;0
+57009;22386;1;171;73.0;120;80;1;1;0;0;1;1
+57010;23470;1;178;80.0;140;90;1;1;0;0;0;1
+57011;19481;2;160;61.0;145;95;1;1;0;0;0;1
+57013;21890;1;177;70.0;120;70;1;1;0;1;0;1
+57014;16482;1;156;66.0;110;80;3;1;0;0;1;1
+57015;17592;2;182;113.0;130;90;1;1;1;1;1;1
+57016;14521;1;156;57.0;120;80;1;1;0;0;1;0
+57017;21164;1;157;74.0;120;80;1;1;0;0;0;0
+57018;20726;2;163;63.0;120;80;1;1;1;0;1;0
+57019;18758;1;158;72.0;140;90;3;1;0;0;0;0
+57020;21157;1;168;94.0;150;70;1;1;0;0;1;1
+57021;14752;2;171;78.0;120;80;1;1;1;1;1;0
+57022;15200;2;171;66.0;130;70;1;1;1;0;1;1
+57023;18167;1;177;59.0;120;20;2;2;0;0;1;1
+57024;18929;2;168;85.0;120;60;1;1;0;0;1;1
+57025;19122;1;162;89.0;110;70;1;1;0;0;0;0
+57030;21989;2;175;91.0;160;100;1;1;0;0;1;1
+57031;18777;1;170;70.0;140;90;1;1;0;0;1;1
+57032;19522;1;162;60.0;120;80;1;1;0;0;1;0
+57033;21033;1;159;50.0;120;80;3;3;0;0;1;1
+57034;19051;2;159;56.0;120;80;1;1;1;1;1;0
+57035;19954;1;160;64.0;140;90;1;1;0;0;1;1
+57037;15420;1;174;125.0;140;90;1;1;0;0;0;0
+57038;23464;1;165;98.0;120;80;1;1;0;0;1;0
+57039;23150;2;170;92.0;140;100;2;1;0;0;1;1
+57040;14612;1;155;50.0;110;70;1;1;0;0;0;0
+57042;21852;2;170;62.0;140;1000;1;1;0;0;0;0
+57044;20423;1;165;62.0;120;80;3;3;0;0;1;0
+57049;21146;1;169;80.0;120;80;1;1;0;0;1;1
+57052;16525;1;169;67.0;110;80;1;1;0;0;1;0
+57053;20266;1;155;93.0;150;90;1;1;0;0;1;0
+57054;17477;1;169;75.0;150;90;1;1;0;0;1;1
+57055;18128;2;179;97.0;120;80;1;1;0;0;1;0
+57056;17720;2;176;82.0;110;70;1;1;0;0;1;1
+57057;19122;1;168;67.0;130;80;1;1;0;0;1;1
+57060;19515;1;170;56.0;120;80;1;1;0;0;1;0
+57062;21974;1;156;49.0;90;60;1;1;0;0;0;0
+57064;16648;1;159;78.0;110;70;2;1;0;0;1;0
+57066;21171;1;159;69.0;130;70;1;1;0;0;1;0
+57067;22853;1;156;88.0;140;90;3;3;0;1;1;0
+57068;19512;1;172;68.0;120;80;1;1;0;0;1;1
+57070;20417;2;178;69.0;130;70;1;1;0;0;1;1
+57071;20560;1;160;58.0;110;70;1;1;0;0;1;0
+57072;21843;1;156;79.0;120;80;1;1;0;0;1;0
+57073;20465;1;150;90.0;150;90;1;1;0;0;1;1
+57074;20483;1;168;80.0;140;80;2;2;0;0;1;1
+57078;19478;2;174;73.0;140;80;1;1;0;0;1;1
+57079;19584;1;159;106.0;150;90;1;1;0;0;1;1
+57081;21740;1;166;68.0;120;80;1;1;0;0;1;1
+57082;18173;2;171;71.0;120;80;1;1;0;0;1;0
+57083;15214;1;163;101.0;120;80;2;2;0;0;1;0
+57084;17459;1;165;90.0;140;100;2;1;0;0;1;1
+57085;21123;2;170;75.0;130;80;3;3;0;0;1;1
+57086;14607;2;172;69.0;120;80;1;1;0;0;0;0
+57087;17694;2;174;78.0;120;80;1;1;0;0;1;1
+57090;21131;1;155;81.0;100;70;3;3;0;0;1;1
+57094;23303;2;168;98.0;140;90;3;3;1;0;1;1
+57096;23245;1;155;66.0;140;90;1;1;0;0;1;1
+57097;17704;1;158;64.0;120;80;1;1;0;0;1;1
+57098;16879;1;159;69.0;105;70;1;1;0;0;1;0
+57099;14629;1;156;64.0;100;70;1;1;0;0;1;0
+57101;20397;1;169;65.0;140;90;1;2;0;0;1;1
+57102;21955;1;153;59.0;140;90;2;1;0;0;1;1
+57104;17380;1;158;60.0;120;80;1;1;0;0;1;0
+57105;21290;1;171;93.0;160;1000;2;1;0;0;1;1
+57107;20976;1;170;93.0;120;80;2;2;0;0;1;1
+57110;22088;2;170;90.0;140;100;2;3;0;0;1;1
+57112;21292;1;158;59.0;120;80;1;1;0;0;1;1
+57113;22578;2;167;73.0;130;80;2;1;0;0;1;1
+57115;14686;2;170;67.0;140;90;1;1;0;0;1;1
+57116;17468;1;159;59.0;120;80;1;1;0;0;1;0
+57122;21838;1;168;83.0;120;70;1;1;0;0;0;1
+57123;21840;1;162;56.0;120;80;1;1;0;0;1;1
+57124;18298;2;179;80.0;120;80;1;1;0;0;1;0
+57127;16816;2;175;67.0;120;80;2;1;0;0;1;0
+57128;14362;2;170;59.0;120;80;1;1;0;0;1;0
+57130;22506;1;160;51.0;120;80;1;1;0;0;1;0
+57131;18024;1;165;75.0;120;80;1;1;0;0;1;0
+57132;22584;2;176;84.0;140;90;1;1;1;1;0;1
+57133;21790;1;140;58.0;120;80;2;2;0;0;0;1
+57134;17582;1;160;58.0;110;70;1;1;0;0;1;0
+57135;19711;1;160;59.0;110;70;2;1;0;0;1;0
+57136;19798;2;163;66.0;120;70;1;1;0;0;1;1
+57137;21745;1;165;62.0;110;70;2;1;0;0;1;1
+57138;20383;2;173;61.0;140;80;3;3;0;0;1;1
+57140;23434;1;171;78.0;120;80;1;1;0;0;1;0
+57142;15396;1;168;69.0;120;70;1;1;0;0;0;0
+57143;22734;1;159;50.0;140;79;1;1;0;0;1;0
+57144;20594;2;168;76.0;150;90;1;1;1;0;1;1
+57145;20650;1;163;63.0;130;80;1;1;0;0;1;0
+57146;21257;1;158;84.0;120;80;1;1;0;0;1;1
+57147;20464;2;164;74.0;120;80;1;1;0;0;1;0
+57148;21711;2;171;105.0;127;87;3;1;1;1;1;1
+57150;23347;1;173;85.0;120;80;1;1;0;0;1;1
+57152;22004;1;157;48.0;100;70;1;1;0;0;0;0
+57153;17350;2;169;68.0;130;90;1;1;0;1;1;1
+57154;16759;1;174;65.0;120;80;1;1;0;0;1;0
+57155;15248;1;153;60.0;110;70;1;1;0;0;0;0
+57156;21106;1;170;92.0;110;70;2;1;0;0;1;1
+57157;18342;2;177;70.0;150;90;1;1;0;0;1;1
+57160;18234;1;156;55.0;120;80;1;1;0;0;1;1
+57161;19803;1;155;76.0;120;80;3;3;0;0;1;1
+57162;22696;2;174;81.0;140;80;1;1;0;0;1;1
+57163;23519;2;169;68.0;120;80;1;1;0;0;1;1
+57165;23401;1;155;68.0;140;100;1;1;0;0;1;1
+57166;18777;1;165;56.0;120;80;1;1;0;0;1;1
+57167;18360;1;170;80.0;120;80;1;1;0;0;1;0
+57169;16725;1;160;93.0;140;90;3;2;0;0;1;1
+57171;19184;1;165;70.0;130;90;1;1;0;0;0;1
+57173;15236;1;158;76.0;120;80;1;1;1;1;0;0
+57174;23419;1;171;70.0;125;80;1;1;0;0;1;1
+57175;15246;2;180;78.0;120;80;1;1;1;1;1;0
+57176;19398;1;157;82.0;150;90;1;1;0;0;1;1
+57178;19229;1;161;58.0;110;70;1;1;0;0;1;0
+57179;18918;1;164;100.0;120;80;2;1;0;0;0;0
+57180;21205;1;168;84.0;190;98;3;3;0;0;1;1
+57182;20510;1;172;68.0;120;80;1;1;0;0;0;0
+57183;14347;2;170;79.0;120;70;1;1;1;0;1;0
+57184;20393;1;153;72.0;119;86;1;1;0;0;1;1
+57185;19705;1;159;74.0;110;70;1;1;0;0;1;0
+57186;18238;2;168;65.0;140;90;2;2;0;0;0;1
+57187;19553;2;172;84.0;120;80;1;1;0;0;1;1
+57189;19072;1;165;70.0;140;90;2;2;0;0;1;1
+57191;21800;1;158;105.0;130;80;1;1;0;0;0;0
+57192;17475;2;180;83.0;120;80;1;1;0;0;1;0
+57194;18922;1;164;61.0;120;80;2;1;0;0;0;0
+57195;14383;1;168;66.0;140;90;1;1;0;0;0;0
+57196;19636;1;153;83.0;130;80;2;2;0;0;0;1
+57197;21985;1;159;107.0;140;95;1;1;0;1;0;1
+57199;22713;1;156;56.0;120;80;1;1;0;0;1;0
+57200;23559;2;167;60.0;120;80;1;2;0;0;1;0
+57204;19775;1;155;70.0;110;60;1;1;0;0;0;0
+57206;21359;1;156;65.0;120;90;3;3;0;0;1;1
+57208;22397;2;168;79.0;150;100;1;1;1;0;1;1
+57209;16092;2;175;80.0;130;70;1;1;0;0;1;1
+57210;22726;2;171;103.0;190;100;1;3;0;0;1;1
+57211;14509;1;148;51.0;120;70;1;1;0;0;1;0
+57212;21992;1;175;78.0;120;80;1;1;0;0;1;1
+57213;19180;1;160;52.0;110;90;1;1;0;0;0;0
+57214;16056;2;172;98.0;120;80;1;1;0;0;1;0
+57216;20352;1;158;67.0;160;90;2;1;0;0;1;0
+57217;20409;2;165;60.0;120;80;1;1;0;0;0;1
+57218;19030;2;168;68.0;150;90;1;1;1;1;1;1
+57219;20357;2;170;80.0;130;80;1;1;0;0;0;1
+57220;21133;1;152;54.0;90;60;1;1;0;0;1;0
+57221;19086;1;154;58.0;120;80;1;1;0;0;1;0
+57223;18871;1;152;72.0;120;80;1;1;0;0;1;0
+57224;15540;1;175;75.0;120;80;1;1;0;0;1;1
+57225;20237;1;170;72.0;140;90;1;1;0;0;1;0
+57226;19778;2;175;65.0;110;70;1;1;0;0;0;0
+57230;15147;1;156;73.0;110;70;2;2;0;0;1;0
+57231;23194;1;149;93.0;150;90;3;1;0;0;1;1
+57232;22570;1;166;79.0;100;70;1;1;0;0;1;1
+57233;18874;1;160;76.0;110;70;2;1;0;0;1;1
+57235;21907;1;155;80.0;160;90;1;1;0;0;1;1
+57236;20338;1;168;72.0;130;90;1;1;0;0;0;1
+57237;22558;2;168;72.0;120;70;1;1;0;0;1;0
+57238;20431;1;147;67.0;120;80;3;3;0;0;1;1
+57239;14369;1;170;130.0;140;90;3;1;0;0;1;0
+57241;17526;1;166;66.0;100;70;1;1;0;0;1;0
+57243;23173;1;151;72.0;120;80;1;1;0;0;1;1
+57244;18179;2;170;75.0;150;90;1;1;0;0;1;1
+57247;21933;2;168;79.0;160;100;2;2;0;0;0;1
+57248;21864;1;154;73.0;90;60;3;3;0;0;1;1
+57249;20425;2;175;73.0;170;70;1;1;0;0;1;1
+57252;19524;1;156;58.0;100;60;1;1;0;0;1;1
+57253;20417;1;166;90.0;130;90;3;3;0;0;1;1
+57255;21163;1;170;78.0;120;80;1;1;0;0;1;0
+57256;18969;2;160;60.0;110;80;1;1;0;0;1;0
+57257;19183;2;175;74.0;120;80;1;3;0;0;0;0
+57258;19654;1;151;58.0;130;90;2;1;0;0;1;0
+57260;21933;1;170;69.0;120;80;1;1;0;0;1;1
+57261;21155;2;176;85.0;130;90;1;1;0;0;0;1
+57262;17422;2;167;69.0;120;80;1;1;0;0;1;1
+57264;21980;1;160;56.0;130;80;1;1;0;0;1;0
+57265;21270;1;164;82.0;130;90;1;1;0;0;1;0
+57268;22584;1;168;57.0;120;80;1;1;0;0;1;0
+57269;18218;2;164;71.0;120;70;2;1;0;0;1;0
+57270;20554;1;162;69.0;140;80;1;2;0;0;0;0
+57271;17568;1;172;68.0;120;80;1;1;0;0;1;0
+57273;16025;2;168;95.0;140;90;1;1;1;0;1;1
+57275;22759;2;167;75.0;120;90;2;1;0;0;1;1
+57276;22152;1;165;60.0;120;80;1;1;0;0;0;0
+57277;22004;2;180;92.0;110;70;2;1;0;0;0;0
+57278;21926;1;151;95.0;160;90;1;1;0;0;0;1
+57279;19868;2;168;63.0;130;80;1;1;0;0;1;1
+57281;20526;1;154;56.0;100;60;1;1;0;0;1;0
+57282;16169;1;172;80.0;110;70;1;1;0;0;0;1
+57284;15390;1;159;82.0;140;90;1;1;0;0;1;1
+57286;19648;1;168;68.0;120;80;1;1;0;0;1;1
+57287;16745;2;167;104.0;150;90;2;2;0;0;1;1
+57288;16609;2;164;90.0;120;80;1;1;0;0;1;0
+57291;18404;2;162;60.0;120;80;1;1;0;0;1;1
+57292;14858;1;157;63.0;110;80;1;1;0;0;1;1
+57293;21952;2;177;94.0;110;80;1;1;0;0;1;1
+57294;22918;1;165;80.0;110;80;1;3;0;0;1;0
+57295;23269;1;160;95.0;140;90;3;1;0;1;1;1
+57296;16858;1;164;62.0;120;80;1;1;0;0;1;0
+57297;19762;2;170;74.0;120;80;1;1;0;0;1;0
+57299;19058;1;157;68.0;120;70;1;1;0;0;1;0
+57300;20538;1;164;71.0;110;79;1;1;0;0;0;0
+57301;21990;1;165;87.0;130;70;1;1;0;0;1;1
+57302;22155;1;153;67.0;130;100;1;1;1;0;1;0
+57303;20589;2;160;79.0;140;80;1;1;0;0;1;1
+57304;18087;1;166;69.0;130;80;1;1;0;0;1;1
+57305;16306;1;159;63.0;110;70;1;1;0;0;1;0
+57306;16859;1;163;57.0;120;80;1;1;0;0;1;0
+57307;21201;1;198;99.0;140;80;1;1;0;0;1;1
+57309;19736;1;160;90.0;120;80;1;1;0;0;1;0
+57311;16677;2;169;78.0;100;60;1;1;1;0;1;0
+57312;22572;2;165;66.0;130;80;3;1;0;0;1;1
+57314;21061;2;162;62.0;120;80;1;1;0;0;1;0
+57315;20960;1;155;93.0;120;80;1;1;0;0;1;0
+57316;23321;1;168;69.0;100;70;3;3;0;0;0;1
+57319;19830;1;155;63.0;110;80;1;1;0;0;0;0
+57320;17522;2;174;85.0;160;1000;2;1;0;0;1;1
+57321;23678;1;165;74.0;120;80;1;1;0;0;1;0
+57322;18540;1;161;99.0;140;100;1;3;0;0;1;0
+57323;22379;2;162;65.0;100;70;1;1;0;0;1;1
+57324;16683;1;161;74.0;130;80;2;1;0;0;0;1
+57325;15332;1;174;79.0;120;70;1;1;0;0;1;0
+57327;21369;2;182;94.0;120;80;1;1;0;0;1;0
+57328;22040;1;150;70.0;130;80;3;3;0;0;1;1
+57331;19743;1;158;96.0;110;80;2;1;0;0;1;0
+57332;16677;2;181;93.0;130;80;1;1;0;0;1;0
+57333;21885;1;166;71.0;120;80;1;1;0;0;1;1
+57335;22618;1;147;70.0;130;80;2;1;0;0;1;1
+57337;14497;1;150;40.0;100;70;1;1;0;0;1;0
+57339;18321;1;162;80.0;110;70;1;1;0;0;1;0
+57340;20336;1;159;87.0;110;70;3;3;0;0;0;1
+57341;22157;1;165;78.0;120;80;2;1;0;0;1;1
+57342;15901;1;160;49.0;100;70;3;3;0;0;1;0
+57343;20434;2;167;67.0;120;80;2;2;0;0;1;0
+57344;20236;2;176;105.0;150;90;2;1;1;0;1;0
+57345;23405;2;184;79.0;140;80;2;1;0;0;0;0
+57346;15397;2;179;61.0;120;70;1;1;0;0;1;0
+57347;23363;2;176;97.0;150;1000;1;1;0;0;1;1
+57348;21764;2;172;78.0;130;80;1;3;1;0;1;0
+57349;22794;2;176;81.0;150;90;1;1;1;1;1;1
+57351;21802;1;164;85.0;130;100;1;1;0;0;1;1
+57353;21117;2;163;90.0;150;90;1;1;0;0;1;1
+57354;19663;1;158;60.0;120;90;1;1;0;0;1;0
+57358;22641;2;164;75.0;130;70;1;1;0;0;1;1
+57359;21873;1;159;70.0;130;90;1;1;0;0;1;1
+57360;16246;1;162;85.0;140;100;1;2;0;0;0;1
+57361;21617;1;168;69.0;120;80;1;1;0;0;1;1
+57362;16072;2;176;79.0;120;80;1;1;0;0;1;0
+57363;20021;2;160;64.0;140;90;2;1;1;0;1;1
+57364;17656;2;167;70.0;140;90;1;1;0;0;1;1
+57365;21885;2;172;76.0;140;90;2;1;0;0;1;1
+57366;18248;1;169;73.0;120;80;1;1;0;0;1;0
+57367;21217;1;158;62.0;140;90;1;1;0;0;1;1
+57368;19236;1;153;50.0;110;70;1;1;0;0;1;0
+57370;14414;2;174;83.0;120;80;1;1;0;1;1;0
+57373;22490;1;159;83.0;130;90;3;1;0;0;1;0
+57374;21984;1;163;72.0;110;70;1;1;0;0;1;0
+57375;16318;2;162;69.0;120;70;1;2;0;0;0;0
+57376;19138;2;167;69.0;120;80;1;3;0;0;1;0
+57377;23322;1;156;70.0;140;80;3;1;0;0;1;1
+57378;19105;1;159;84.0;100;70;1;1;0;0;1;0
+57379;21002;1;149;62.0;120;90;2;1;0;0;1;0
+57381;21663;1;158;109.0;120;80;3;3;0;0;1;0
+57382;15106;2;178;87.0;120;80;1;1;0;0;1;0
+57383;20391;1;160;52.0;120;70;1;1;0;0;0;1
+57384;16107;1;153;85.0;120;70;3;1;0;0;1;1
+57385;19700;2;170;89.0;120;80;1;1;1;1;1;0
+57388;19876;1;168;78.0;120;80;1;1;0;0;0;1
+57389;19804;2;169;67.0;130;80;1;1;1;0;1;0
+57390;22137;2;170;72.0;120;80;1;1;0;0;1;1
+57391;23047;1;158;55.0;90;60;1;1;0;0;1;1
+57392;18444;1;164;93.0;130;80;1;1;0;0;1;1
+57394;19055;1;158;110.0;130;80;3;3;0;1;1;1
+57395;21218;1;157;93.0;130;80;2;2;0;0;1;1
+57396;21166;1;160;98.0;180;100;1;1;0;0;1;1
+57400;18758;2;173;60.0;110;70;1;1;0;0;1;0
+57401;21039;1;154;57.0;110;70;2;1;0;0;0;1
+57404;17044;2;185;80.0;120;80;1;1;0;0;1;0
+57405;21968;1;154;68.0;130;90;3;3;0;0;1;1
+57406;22846;1;165;68.0;120;80;1;1;0;0;1;1
+57408;23146;1;150;79.0;160;90;3;3;0;0;1;1
+57410;14552;1;157;84.0;120;80;1;1;0;0;1;0
+57412;21897;1;170;112.0;170;90;1;2;0;0;1;1
+57413;18527;1;166;125.0;160;120;1;3;0;0;0;0
+57414;18193;2;175;85.0;140;90;1;1;1;0;1;1
+57415;20510;1;156;60.0;150;90;1;1;0;0;1;1
+57416;20375;1;163;66.0;120;80;1;1;0;0;0;0
+57418;20460;1;162;89.0;150;110;3;1;0;0;1;1
+57419;19048;1;163;122.0;140;90;1;1;0;0;1;0
+57420;22588;1;162;65.0;110;70;1;1;0;0;1;1
+57421;19708;1;163;85.0;150;100;2;1;0;0;1;1
+57422;19558;2;173;80.0;110;70;1;3;0;0;1;0
+57423;16070;1;162;58.0;110;80;1;1;0;0;1;0
+57425;19475;1;154;56.0;140;100;1;1;0;0;1;0
+57428;15159;1;162;51.0;120;80;1;1;1;1;1;0
+57430;21271;2;171;98.0;120;80;3;3;0;0;1;1
+57431;15316;1;178;76.0;120;80;1;1;0;0;1;1
+57432;22558;2;157;92.0;120;80;1;1;0;1;1;1
+57434;21196;2;178;69.0;100;70;1;1;1;0;1;0
+57435;21860;2;176;96.0;130;90;1;1;0;1;0;1
+57436;20263;2;172;72.0;160;90;3;1;0;0;1;1
+57437;19932;1;156;69.0;120;80;1;1;0;0;0;0
+57438;18150;2;180;95.0;120;80;3;1;0;0;0;0
+57439;18092;2;172;70.0;120;80;1;1;0;0;1;0
+57440;18791;1;173;84.0;120;80;1;1;0;0;1;1
+57441;22184;2;173;80.0;120;80;3;3;0;0;1;1
+57443;16848;2;168;65.0;120;80;1;1;0;0;1;1
+57445;22004;1;163;62.0;120;80;1;1;0;0;1;0
+57446;18373;1;156;81.0;160;110;1;1;0;0;0;1
+57448;14489;2;178;96.0;120;80;1;1;0;0;1;0
+57451;23400;2;171;68.0;190;100;1;1;0;0;1;1
+57452;20407;1;164;72.0;160;1000;1;1;0;0;0;1
+57453;23652;1;167;72.0;120;70;1;1;0;0;1;1
+57454;21878;1;159;93.0;150;90;1;3;0;0;1;1
+57455;23478;1;153;53.0;160;80;1;1;0;0;1;1
+57456;20479;1;173;103.0;180;90;3;2;0;0;0;1
+57457;17472;2;185;87.0;170;90;1;1;0;0;0;1
+57462;23362;1;164;104.0;120;80;3;1;0;0;1;1
+57463;19682;1;165;65.0;120;80;1;1;0;0;1;0
+57464;20606;1;163;54.0;130;80;1;1;0;0;1;1
+57466;20645;1;160;58.0;110;70;1;1;0;0;1;0
+57468;19467;1;158;79.0;110;70;2;1;0;0;1;0
+57470;19608;1;161;65.0;112;68;1;1;0;0;0;0
+57471;20212;2;165;69.0;140;90;1;1;1;1;1;1
+57472;22337;1;163;100.0;140;90;2;2;0;0;1;1
+57473;16747;2;170;75.0;120;80;1;1;1;0;1;0
+57474;15384;2;172;70.0;110;70;1;1;0;0;1;0
+57475;14384;2;175;76.0;150;90;1;1;0;0;0;1
+57476;16877;1;169;81.0;140;95;2;1;0;0;1;1
+57477;23164;2;177;90.0;130;80;3;1;0;0;0;1
+57478;17582;1;164;97.0;140;60;1;1;0;0;1;1
+57479;23274;2;162;65.0;120;80;1;1;0;0;0;1
+57480;20429;2;158;72.0;120;80;1;1;0;0;1;0
+57482;21874;2;159;58.0;120;80;2;1;0;0;1;0
+57484;18948;1;161;71.0;140;90;1;1;0;0;1;1
+57485;23469;1;168;95.0;160;90;2;1;0;0;1;1
+57486;15833;1;156;64.0;120;80;1;1;0;0;1;1
+57487;21332;1;163;79.0;120;80;1;2;0;0;0;0
+57488;20401;1;178;65.0;140;90;2;1;0;1;0;1
+57489;19671;1;170;75.0;120;80;1;1;0;0;0;0
+57491;21962;1;155;87.0;140;90;1;1;0;0;1;1
+57492;20380;1;160;74.0;150;100;3;1;0;0;1;1
+57493;20254;1;160;65.0;135;80;1;1;0;0;1;1
+57496;19417;1;160;98.0;140;90;1;1;0;0;0;1
+57497;14500;1;164;61.0;120;60;1;1;0;0;1;1
+57499;20415;1;164;85.0;130;80;2;1;0;0;1;0
+57500;21805;1;152;57.0;159;100;2;1;0;1;1;1
+57502;18550;1;162;64.0;130;80;1;2;0;0;1;1
+57503;20613;1;156;88.0;150;80;1;1;0;0;1;0
+57504;19859;1;152;65.0;120;80;2;1;0;1;1;1
+57506;18412;2;168;68.0;120;80;1;1;0;0;1;1
+57508;16676;1;162;61.0;110;70;1;1;0;0;1;0
+57509;22081;1;165;80.0;140;70;3;1;0;0;1;1
+57510;21873;1;150;90.0;140;100;1;1;0;0;0;1
+57511;18229;1;158;73.0;140;80;1;3;0;0;1;1
+57512;19180;2;169;71.0;150;90;1;1;0;0;1;1
+57513;22418;1;149;78.0;130;80;1;1;0;0;1;1
+57514;20617;1;166;50.0;120;80;1;1;0;0;0;0
+57515;20597;1;168;69.0;130;80;1;3;0;0;1;1
+57517;18308;1;175;75.0;140;90;1;1;0;0;1;1
+57518;23565;1;165;53.0;130;80;1;1;0;0;1;0
+57520;20440;1;152;108.0;120;80;3;1;0;0;1;1
+57523;23267;1;166;90.0;120;80;2;1;0;0;1;0
+57524;21097;1;166;80.0;160;100;1;1;0;0;1;1
+57526;17598;1;156;90.0;150;90;2;1;0;0;1;1
+57527;20315;2;175;95.0;130;80;1;1;0;0;1;0
+57529;15322;1;168;65.0;120;80;1;1;0;0;0;0
+57530;16082;2;168;72.0;140;90;1;1;0;0;1;1
+57531;17327;1;166;57.0;110;70;1;1;0;0;1;0
+57537;20404;1;154;61.0;100;60;1;1;0;0;1;0
+57539;18194;2;175;92.0;130;80;1;1;1;0;1;0
+57541;21900;2;185;92.0;120;80;1;1;0;0;0;0
+57542;22589;2;178;75.0;120;80;1;1;0;0;1;0
+57543;20292;1;170;68.0;110;70;1;1;0;0;1;0
+57545;17377;1;164;64.0;140;90;2;1;0;0;1;0
+57546;14597;1;159;58.0;110;70;1;1;0;0;1;0
+57547;17455;1;158;63.0;100;60;1;1;0;0;1;0
+57550;19550;2;174;70.0;110;70;1;1;0;0;1;1
+57551;16558;2;170;80.0;120;80;1;1;0;0;1;1
+57552;21202;1;158;58.0;120;80;1;1;0;0;1;0
+57553;22447;2;167;77.0;125;85;1;1;1;0;0;1
+57554;18611;1;164;86.0;120;80;1;1;0;0;1;0
+57555;16627;1;170;68.0;110;70;1;1;0;0;1;0
+57557;19034;2;161;64.0;120;80;1;2;0;0;1;0
+57558;19693;1;170;74.0;120;80;1;1;0;0;0;0
+57559;23413;2;170;90.0;120;80;1;1;0;0;1;0
+57560;20580;2;170;86.0;130;80;2;2;0;0;1;0
+57561;22011;1;150;73.0;140;90;2;1;0;0;0;1
+57562;14874;2;174;91.0;120;80;1;1;0;0;1;0
+57563;20478;1;170;72.0;140;90;1;1;0;0;1;1
+57564;19889;1;156;74.0;120;90;1;1;0;0;1;0
+57565;21895;1;160;110.0;140;90;3;1;0;0;1;1
+57566;23167;1;166;70.0;150;90;1;1;0;0;1;1
+57567;15909;1;163;60.0;120;80;1;1;1;1;1;0
+57569;19666;1;169;87.0;140;80;2;1;0;0;0;1
+57570;14703;2;172;71.0;120;85;1;1;0;0;1;0
+57571;21355;1;155;72.0;140;80;1;1;0;0;0;1
+57572;21029;1;168;52.0;120;80;1;1;0;0;1;1
+57573;19858;1;169;96.0;120;80;1;1;0;0;1;0
+57574;19871;1;169;58.0;120;80;2;1;0;0;0;0
+57576;16117;1;169;61.0;110;70;1;1;0;0;1;0
+57581;20302;2;168;90.0;120;80;1;1;0;0;0;0
+57582;18877;1;162;97.0;140;100;1;1;0;0;1;1
+57583;22591;2;172;74.0;130;80;2;1;1;1;1;0
+57585;20726;1;170;69.0;130;80;1;1;0;0;1;0
+57586;19180;2;176;93.0;140;90;1;1;1;0;1;1
+57587;16924;1;153;101.0;160;90;1;3;0;0;1;1
+57588;18693;2;167;54.0;120;80;1;1;0;0;1;0
+57589;23353;1;154;82.0;130;80;3;1;0;0;0;1
+57590;21456;1;165;60.0;120;80;1;1;0;0;1;1
+57591;21983;1;169;68.0;140;100;1;1;0;0;1;1
+57592;14393;1;160;90.0;120;80;1;1;0;0;1;0
+57593;20467;1;160;70.0;160;100;1;1;0;0;1;1
+57595;18365;2;175;77.0;110;80;1;1;0;0;1;0
+57596;20604;2;168;83.0;160;100;1;1;0;0;1;1
+57598;21087;1;175;74.0;120;80;1;1;0;0;1;0
+57599;18193;2;169;53.0;120;70;2;1;1;1;1;0
+57600;18434;1;164;63.0;140;90;3;1;0;0;0;1
+57601;21910;2;167;72.0;140;100;1;1;0;0;0;0
+57602;21943;1;165;65.0;120;80;1;1;0;0;1;1
+57603;16227;2;166;75.0;120;80;1;1;0;0;1;0
+57605;14339;2;170;68.0;140;90;2;2;0;0;1;0
+57606;19911;1;153;68.0;150;100;1;1;0;0;1;1
+57607;15422;1;176;71.0;120;80;1;1;0;0;0;0
+57608;21869;2;180;75.0;110;80;1;1;0;0;1;1
+57609;19865;2;166;82.0;120;80;1;1;0;0;1;0
+57611;18044;2;180;80.0;140;90;1;1;0;0;1;1
+57612;19175;1;158;105.0;150;100;2;1;0;0;1;1
+57614;21016;1;157;115.0;120;90;1;1;0;0;0;1
+57615;20449;1;160;60.0;120;80;1;1;0;0;0;0
+57617;16043;1;175;80.0;110;70;1;1;0;0;1;0
+57618;20369;1;155;56.0;130;80;2;2;0;1;1;0
+57619;23088;1;160;94.0;120;80;2;1;0;0;1;0
+57620;21923;2;178;103.0;120;80;1;1;0;0;1;0
+57621;21274;1;156;66.0;120;80;1;2;0;0;1;1
+57622;14757;1;180;79.0;120;80;1;1;0;0;1;0
+57627;19761;1;165;64.0;120;80;1;1;0;0;1;0
+57630;21297;2;162;71.0;160;90;1;1;0;0;1;1
+57633;19878;1;157;72.0;120;80;1;1;0;0;1;0
+57634;19061;2;175;94.0;130;80;1;1;0;0;1;0
+57635;17342;1;162;58.0;120;80;1;1;0;0;0;0
+57637;18889;1;146;67.0;120;80;1;1;0;0;1;0
+57638;23356;1;149;67.0;120;80;1;1;0;0;1;1
+57639;22080;1;168;68.0;130;90;1;1;0;0;0;1
+57640;18126;1;142;60.0;120;80;1;1;0;0;1;1
+57643;18048;1;160;89.0;130;90;3;1;0;0;1;0
+57644;14720;2;178;139.0;130;80;1;2;0;0;1;1
+57645;23321;1;157;72.0;140;90;1;1;0;0;1;1
+57646;20322;1;162;50.0;309;0;1;1;0;0;1;0
+57647;15217;1;164;90.0;130;90;2;2;0;0;1;1
+57651;21270;1;168;66.0;120;80;1;1;0;0;1;1
+57652;21878;2;167;78.0;120;80;1;1;1;0;1;0
+57654;15810;2;170;74.0;130;100;1;1;0;0;1;0
+57655;20278;2;158;76.0;140;90;1;1;0;0;1;1
+57657;20552;1;169;90.0;150;90;3;1;0;0;1;1
+57658;14607;2;160;60.0;130;90;1;1;0;0;1;1
+57660;15929;1;155;54.0;90;60;1;1;0;0;1;1
+57662;18851;1;162;96.0;130;80;3;1;0;0;1;1
+57663;16884;2;163;75.0;120;80;1;1;1;0;1;1
+57664;19530;2;177;80.0;130;80;1;1;0;0;1;1
+57666;19535;1;158;70.0;100;70;1;1;0;0;1;1
+57667;21750;1;171;92.0;140;90;1;1;0;0;1;1
+57668;21062;1;152;59.0;110;70;1;3;0;0;0;0
+57669;21924;2;168;59.0;160;100;2;1;0;0;1;1
+57670;15954;1;160;72.0;120;80;1;1;0;0;1;0
+57671;23391;1;161;80.0;130;80;1;1;0;0;1;0
+57672;20510;1;167;68.0;130;70;1;1;0;0;1;1
+57673;17242;1;158;70.0;100;80;1;1;0;0;0;0
+57674;15589;1;165;65.0;120;70;1;1;0;0;1;0
+57675;18123;1;158;80.0;120;80;1;1;0;0;1;0
+57676;21223;2;176;89.0;120;90;1;1;0;0;1;0
+57677;18978;1;158;61.0;160;90;1;1;0;0;1;1
+57678;15918;2;181;65.0;126;84;1;1;0;0;1;0
+57679;15269;1;167;68.0;110;70;1;1;0;0;0;0
+57680;14496;1;162;68.0;110;80;1;1;0;0;1;0
+57682;16018;1;161;59.0;120;60;1;1;0;0;1;0
+57683;18981;2;174;76.0;120;80;1;1;0;0;1;0
+57684;18842;2;168;62.0;110;70;2;1;0;0;1;0
+57685;18211;1;159;63.0;120;70;1;1;0;0;1;0
+57686;21874;1;152;56.0;140;90;1;1;0;0;1;1
+57687;18429;2;165;71.0;140;100;1;1;1;0;1;1
+57688;16654;1;173;101.0;130;80;1;1;0;0;1;1
+57689;16931;2;163;65.0;120;80;1;1;0;0;1;0
+57690;14552;1;158;64.0;120;80;1;1;0;0;1;0
+57691;22412;2;175;76.0;130;90;3;1;0;0;1;1
+57692;19539;2;168;82.0;140;80;2;1;0;0;1;1
+57693;14489;1;178;74.0;110;80;1;1;0;0;1;0
+57694;21016;1;166;61.0;120;80;1;1;0;1;0;0
+57695;23488;2;162;62.0;120;80;1;1;0;0;1;0
+57696;15393;1;166;62.0;100;70;1;1;0;0;0;0
+57697;15200;2;165;56.0;100;60;1;1;0;0;1;0
+57698;23425;1;168;68.0;140;100;1;1;0;0;0;1
+57700;19671;1;158;67.0;130;90;1;1;0;0;1;1
+57701;19131;1;169;55.0;120;80;1;3;0;0;1;1
+57703;21903;1;150;59.0;130;90;1;1;0;0;1;1
+57704;18733;1;166;87.0;110;60;1;1;0;0;0;1
+57707;16651;2;170;71.0;140;90;1;1;0;0;1;0
+57708;19833;1;169;70.0;120;80;1;1;0;0;0;0
+57709;15382;1;165;76.0;120;80;2;1;0;0;1;0
+57711;22508;1;159;112.0;130;70;1;2;0;0;0;0
+57713;17588;2;169;68.0;125;80;1;3;0;0;0;0
+57714;19542;1;162;64.0;120;80;1;1;0;0;1;0
+57715;19961;1;161;70.0;120;80;1;1;0;0;1;1
+57716;16911;1;164;62.0;110;60;1;1;0;0;1;1
+57717;16497;1;162;50.0;110;70;1;1;0;0;1;0
+57718;17505;1;161;77.0;130;90;1;1;0;0;1;1
+57721;15892;2;175;61.0;110;70;1;1;0;0;0;0
+57722;18045;1;166;68.0;120;80;1;1;0;0;1;0
+57723;22778;1;158;64.0;130;90;2;2;0;0;1;0
+57724;21681;2;162;56.0;110;80;1;1;0;1;1;1
+57725;22479;1;164;90.0;130;80;3;1;0;0;1;0
+57726;20370;1;152;68.0;140;80;2;1;0;0;1;1
+57727;18964;1;164;70.0;150;80;2;1;0;0;0;1
+57728;21075;1;158;61.0;150;90;2;1;0;0;0;1
+57729;21264;1;158;62.0;120;70;3;3;0;0;1;0
+57730;14575;2;160;77.0;110;70;1;1;1;1;1;0
+57731;20492;1;152;72.0;120;80;1;1;0;1;0;0
+57732;20593;1;170;68.0;120;80;3;3;0;0;0;1
+57733;21233;2;168;82.0;115;80;1;1;0;0;1;0
+57734;16923;1;167;76.0;150;90;3;1;0;0;1;1
+57735;18112;2;176;90.0;130;90;1;1;0;0;1;1
+57737;16946;1;150;53.0;90;60;2;1;0;0;0;0
+57738;21155;1;151;61.0;110;80;1;1;0;0;0;0
+57739;19012;1;170;69.0;120;80;1;1;0;0;1;1
+57740;23423;2;165;69.0;120;80;1;1;0;0;1;1
+57741;22690;1;155;60.0;120;70;1;1;0;0;1;1
+57743;18365;1;165;66.0;120;80;1;1;0;0;1;0
+57744;23286;2;169;120.0;150;100;1;3;0;0;1;0
+57745;14570;2;178;78.0;100;70;1;1;0;0;0;0
+57746;20579;1;158;61.0;120;80;2;2;0;0;1;0
+57747;19119;2;170;75.0;120;80;1;1;0;0;0;0
+57748;21217;2;167;82.0;130;100;2;2;0;0;1;1
+57749;21253;1;165;70.0;120;70;1;1;0;0;1;1
+57750;23144;1;155;65.0;110;70;1;1;0;0;0;1
+57751;20499;1;165;86.0;150;100;3;1;0;0;1;1
+57752;18789;2;161;69.0;120;80;1;1;0;0;1;0
+57753;19828;1;170;85.0;150;100;1;2;0;0;1;1
+57754;21178;1;158;82.0;120;80;1;1;0;0;1;0
+57756;22078;1;159;56.0;120;80;1;1;0;0;1;0
+57758;23220;1;150;76.0;130;90;1;1;0;0;1;1
+57759;21833;1;163;93.0;120;80;1;1;0;0;1;0
+57760;22765;2;159;69.0;120;80;1;1;0;0;1;0
+57761;21061;1;152;65.0;170;100;1;1;0;0;0;1
+57762;22634;1;170;96.0;140;100;1;1;0;1;0;1
+57763;20461;1;161;73.0;130;90;1;1;0;0;0;1
+57764;15186;2;170;80.0;160;100;1;1;0;0;1;1
+57765;23409;1;155;75.0;140;80;3;3;0;0;1;1
+57766;16918;2;169;68.0;137;89;1;1;0;0;1;0
+57767;19700;1;170;120.0;160;100;1;2;0;0;1;1
+57769;17801;2;168;68.0;120;80;1;1;0;0;1;0
+57770;17565;1;159;73.0;150;100;2;1;0;0;1;1
+57771;20281;2;168;69.0;140;90;2;1;0;0;0;1
+57775;23320;1;161;66.0;100;60;1;1;0;0;1;1
+57776;18204;1;168;102.0;140;90;1;1;0;0;0;1
+57778;19948;1;157;65.0;110;80;2;1;0;0;1;0
+57782;18862;1;159;56.0;100;70;2;1;0;0;1;0
+57784;19573;2;151;70.0;130;90;3;1;1;0;1;0
+57785;18217;1;174;85.0;120;90;1;1;0;0;1;0
+57788;14586;1;168;89.0;120;80;1;1;0;0;1;0
+57789;20984;1;146;70.0;160;100;3;3;0;0;1;1
+57790;21870;2;172;100.0;140;90;1;1;0;0;1;0
+57792;14455;1;164;62.0;110;70;1;1;0;0;1;0
+57793;15520;1;162;67.0;100;70;1;1;0;0;1;0
+57795;22692;1;154;59.0;130;80;1;1;0;0;1;1
+57798;18766;1;161;62.0;140;90;1;1;0;0;1;1
+57799;22049;2;178;74.0;120;80;1;1;0;0;1;1
+57800;20992;1;169;90.0;160;80;1;2;0;0;1;0
+57801;21897;1;172;71.0;120;80;1;1;0;0;1;0
+57803;19474;1;165;65.0;120;80;1;1;0;0;1;0
+57804;20437;1;168;54.0;140;100;3;1;0;0;1;1
+57805;21117;1;166;71.0;130;90;3;1;0;0;1;0
+57806;17546;2;169;67.0;110;70;1;1;0;0;0;0
+57807;20496;1;164;62.0;70;1100;1;1;0;0;0;0
+57808;19848;2;168;68.0;130;80;1;1;0;0;1;1
+57809;21213;1;168;61.0;120;80;1;1;0;0;0;1
+57810;19466;1;165;97.0;130;90;1;1;0;0;0;1
+57811;22720;1;158;63.0;130;80;1;1;0;0;0;1
+57812;20221;1;163;72.0;150;90;1;1;0;0;0;1
+57813;18034;1;156;80.0;130;80;1;1;0;0;1;1
+57816;21084;2;166;75.0;130;90;2;1;0;1;1;0
+57818;15123;1;168;70.0;120;80;1;1;0;0;1;0
+57819;16681;2;177;77.0;120;80;1;1;0;0;0;0
+57821;15910;1;169;70.0;120;80;1;1;0;0;1;0
+57822;17379;1;169;75.0;120;80;1;1;0;0;1;1
+57823;20389;1;168;74.0;120;80;1;1;0;0;1;0
+57825;16954;1;157;57.0;120;80;2;1;0;0;1;1
+57826;18500;1;156;63.0;90;60;1;1;0;0;1;0
+57827;16098;2;170;71.0;120;80;1;1;0;0;1;0
+57829;19633;1;152;52.0;110;80;2;1;0;0;1;0
+57830;18978;1;159;79.0;120;70;3;1;1;0;1;1
+57832;18473;2;170;78.0;120;80;1;1;0;0;1;0
+57833;21644;1;150;79.0;120;80;1;1;0;0;1;0
+57834;14639;1;164;67.0;110;70;1;1;0;0;1;0
+57836;18249;2;170;71.0;120;80;1;1;0;0;1;1
+57837;19645;1;149;61.0;150;80;2;1;0;0;0;1
+57839;21735;2;174;80.0;120;80;1;1;0;0;1;1
+57842;18853;2;175;59.0;130;90;1;1;0;0;1;0
+57845;20904;1;164;67.0;155;90;1;1;0;0;1;1
+57847;22089;1;163;67.0;120;60;1;1;0;0;1;1
+57848;21853;2;170;69.0;130;90;1;1;0;0;1;1
+57849;14712;1;162;60.0;120;80;1;1;0;0;1;0
+57850;17302;1;157;72.0;110;70;1;1;0;0;1;0
+57852;21085;1;154;65.0;110;70;1;1;0;0;1;1
+57853;16158;1;157;74.0;140;90;1;1;0;0;1;1
+57854;21822;1;152;76.0;110;80;2;2;0;0;1;0
+57855;21919;2;164;61.0;100;69;1;1;0;0;0;0
+57856;19837;1;157;54.0;120;80;1;1;0;0;1;0
+57858;20397;2;166;67.0;120;80;1;1;0;0;1;0
+57859;22698;2;168;80.0;130;80;1;1;0;0;1;0
+57860;19084;1;165;67.0;120;70;1;1;0;0;0;0
+57861;19779;2;170;74.0;140;80;2;1;0;0;1;0
+57862;16715;1;174;114.0;130;80;2;2;0;0;0;1
+57863;15926;1;168;70.0;120;60;1;1;0;0;1;0
+57865;16660;1;162;80.0;130;90;1;1;0;0;0;1
+57867;20471;1;169;56.0;120;80;2;1;1;0;1;0
+57870;19582;2;165;91.0;124;86;1;1;1;0;1;0
+57873;18837;1;169;75.0;120;80;1;1;0;0;1;0
+57874;21106;1;149;57.0;110;70;1;1;0;0;1;0
+57875;18488;2;156;62.0;120;70;3;3;0;0;1;1
+57877;23349;1;160;86.0;140;90;3;1;1;0;1;0
+57878;21735;1;160;75.0;100;70;2;2;0;0;1;0
+57879;16810;1;157;66.0;110;80;1;1;0;1;1;0
+57880;15913;1;161;71.0;130;90;1;1;0;0;1;1
+57881;14481;1;160;75.0;110;70;1;1;0;0;0;1
+57882;19811;2;153;53.0;130;90;3;1;0;0;1;0
+57884;16109;2;179;80.0;110;70;1;1;0;0;1;0
+57885;14350;1;164;60.0;90;60;1;1;0;0;1;0
+57886;22711;1;155;126.0;120;80;1;1;0;0;1;1
+57887;16046;2;169;72.0;120;80;1;1;1;0;0;0
+57888;21416;1;160;59.0;110;80;1;1;0;0;1;1
+57890;14784;2;176;84.0;120;70;1;1;0;0;0;0
+57892;23427;1;160;58.0;130;80;1;1;0;0;1;0
+57893;17540;1;154;58.0;140;90;1;1;0;0;0;1
+57894;16168;1;159;66.0;120;80;1;1;0;0;1;0
+57895;19075;1;165;60.0;120;80;1;1;0;0;1;1
+57896;23370;1;160;124.0;140;90;2;1;0;0;1;1
+57897;21162;2;170;92.0;140;90;3;1;0;0;0;0
+57899;19971;1;154;67.0;130;90;1;1;0;0;1;1
+57901;23373;1;167;77.0;130;80;3;1;0;0;0;0
+57903;20582;1;153;101.0;160;120;1;1;0;0;1;1
+57904;22188;1;165;61.0;110;70;1;1;0;0;1;0
+57906;19159;2;169;71.0;120;80;1;1;0;0;1;0
+57907;22452;1;160;88.0;130;90;1;1;0;0;1;0
+57908;16139;1;145;47.0;80;60;1;1;0;0;0;0
+57910;15340;1;160;58.0;120;80;2;1;0;0;1;1
+57912;19926;1;165;69.0;130;80;1;1;0;0;1;0
+57913;19924;2;160;65.0;120;80;1;1;0;0;1;1
+57916;16631;2;173;73.0;130;80;2;1;0;0;1;0
+57918;19803;2;175;70.0;120;80;1;1;0;0;1;0
+57919;19865;2;166;99.0;160;90;1;1;0;0;1;1
+57920;15393;2;170;72.0;120;80;1;1;1;0;1;0
+57923;16840;1;162;65.0;140;100;1;1;0;0;0;1
+57924;20647;1;165;70.0;110;70;1;1;0;0;1;0
+57925;16007;2;169;72.0;120;90;1;1;0;0;0;0
+57926;23306;1;153;56.0;150;90;1;2;0;0;1;1
+57929;23416;1;169;69.0;120;80;1;1;0;0;1;0
+57930;19449;2;172;78.0;120;80;1;1;0;1;1;0
+57931;21929;2;170;85.0;120;60;1;1;0;0;1;0
+57932;17323;1;171;70.0;120;70;1;1;0;0;1;0
+57934;19683;1;166;82.0;120;80;1;1;0;0;1;1
+57936;20436;2;176;74.0;120;80;1;1;1;0;1;0
+57937;19112;1;160;78.0;120;80;1;1;0;0;1;1
+57938;21878;1;144;56.0;130;80;3;1;0;0;1;1
+57939;19461;2;176;92.0;110;70;1;1;0;0;1;0
+57940;19710;2;176;89.0;120;80;2;1;0;0;1;1
+57941;15407;2;169;75.0;120;70;2;3;0;0;1;1
+57943;16030;1;161;96.0;120;80;2;1;0;0;0;1
+57944;19635;1;158;61.0;120;80;1;1;0;0;1;1
+57945;23339;1;157;65.0;100;70;2;1;0;0;0;0
+57946;16608;2;158;75.0;140;90;1;1;1;0;1;1
+57947;18931;1;160;58.0;100;70;1;1;0;0;1;0
+57948;21976;2;171;82.0;140;1000;1;1;1;0;1;0
+57949;21924;1;161;72.0;140;80;2;1;0;0;1;1
+57950;21227;1;162;86.0;140;80;3;1;0;0;1;1
+57952;22462;1;160;55.0;110;60;1;1;0;0;1;0
+57953;21887;2;170;70.0;120;80;1;1;1;0;1;0
+57956;20229;1;159;85.0;140;90;2;1;0;0;0;0
+57957;21737;1;160;76.0;120;80;2;2;0;0;0;0
+57958;23204;2;164;100.0;120;80;1;1;0;0;1;1
+57959;22130;1;157;71.0;110;70;1;1;0;0;1;0
+57960;18442;1;165;75.0;120;80;1;1;0;0;1;0
+57962;19212;1;160;65.0;120;80;3;1;0;0;1;0
+57963;18159;2;168;120.0;140;90;2;2;1;0;0;1
+57965;18237;2;170;72.0;120;70;1;1;0;0;1;0
+57966;18706;1;169;78.0;130;90;1;1;0;0;1;0
+57967;17583;2;173;97.0;130;90;1;1;0;0;0;1
+57969;21892;2;157;80.0;120;80;3;2;0;0;1;1
+57970;17393;2;169;65.0;120;80;3;3;0;0;1;1
+57971;22662;2;171;57.0;150;80;2;2;0;0;1;1
+57972;17589;2;170;69.0;120;80;1;1;0;0;1;1
+57973;19675;1;162;84.0;120;80;1;1;0;0;1;0
+57974;18809;1;150;72.0;130;80;1;1;0;0;1;0
+57975;21067;1;165;74.0;120;90;3;1;0;0;1;1
+57978;17249;1;169;64.0;160;100;1;1;0;0;1;1
+57979;21106;2;169;82.0;120;80;3;3;1;0;0;1
+57980;19709;1;153;48.0;120;80;1;1;0;0;1;0
+57981;17713;1;164;66.0;120;80;2;1;0;0;1;0
+57982;22717;1;164;72.0;140;90;2;1;0;0;1;1
+57984;19740;1;157;63.0;130;80;1;1;0;0;1;1
+57985;21347;1;157;61.0;100;80;1;1;0;0;0;0
+57986;21099;1;156;58.0;120;80;2;1;0;0;1;1
+57988;14773;1;170;68.0;120;80;1;1;0;0;1;0
+57989;22053;2;156;62.0;140;90;1;1;0;0;1;1
+57990;22024;1;165;67.0;125;90;1;1;0;0;0;1
+57992;22020;1;168;62.0;120;80;1;1;0;0;1;1
+57995;19960;1;164;72.0;120;80;1;1;0;0;1;0
+57996;14567;1;152;84.0;130;80;1;1;0;0;1;0
+57997;18331;1;160;90.0;140;100;1;1;0;0;1;1
+57999;19055;1;165;70.0;120;80;1;1;0;0;1;1
+58001;20467;1;170;84.0;120;80;1;1;0;0;1;0
+58002;17608;1;160;79.0;140;90;1;1;0;0;1;1
+58004;18162;2;177;79.0;120;80;1;1;0;0;1;0
+58006;19463;1;159;62.0;140;80;1;1;0;0;1;0
+58007;19834;2;153;85.0;120;80;1;2;1;1;1;0
+58008;19549;1;162;59.0;140;90;1;1;0;0;1;1
+58009;14554;1;164;67.0;140;90;1;1;1;0;1;0
+58010;21912;2;170;107.0;120;80;1;1;0;0;1;0
+58011;21922;1;167;73.0;130;80;1;1;0;0;0;0
+58012;17454;1;165;80.0;140;80;1;1;0;0;1;1
+58013;16591;1;160;62.0;120;80;1;1;0;0;1;0
+58014;16691;1;170;65.0;138;80;1;1;0;0;0;1
+58017;20494;2;169;68.0;120;80;1;1;0;0;1;1
+58018;21984;1;159;69.0;120;80;1;1;0;0;1;0
+58019;22621;1;158;59.0;110;80;1;1;0;0;1;0
+58021;20627;1;156;78.0;150;90;1;1;0;0;0;1
+58025;20511;1;156;115.0;190;100;1;1;0;0;1;1
+58026;20532;1;160;75.0;120;80;1;1;0;0;1;1
+58028;21907;2;172;94.0;140;80;1;1;0;0;1;1
+58029;20974;2;167;80.0;130;80;2;1;0;0;1;0
+58032;23293;1;149;66.0;160;100;3;1;0;0;1;1
+58033;23202;1;154;38.0;90;70;1;2;0;0;1;0
+58034;23291;1;168;88.0;130;80;3;1;0;0;1;1
+58036;18387;2;175;75.0;110;70;1;1;0;0;1;1
+58037;18904;1;159;62.0;118;74;1;1;0;0;1;0
+58038;21228;1;157;89.0;120;80;1;1;0;0;1;0
+58040;22521;1;158;92.0;120;80;3;3;0;0;1;1
+58041;21429;1;164;59.0;140;80;1;1;0;0;1;1
+58042;16933;2;167;69.0;120;80;1;1;0;0;1;0
+58043;16078;1;158;45.0;110;70;1;1;0;0;1;0
+58044;19955;1;156;64.0;130;90;1;1;0;0;1;1
+58045;23591;1;168;64.0;150;80;1;1;0;0;1;1
+58047;14799;2;175;75.0;140;90;1;1;1;0;1;1
+58048;18252;1;154;69.0;150;95;1;1;0;0;1;1
+58049;17393;1;148;65.0;90;60;1;1;0;0;1;0
+58050;18348;1;156;62.0;120;79;2;3;0;0;1;0
+58051;16021;2;174;61.0;110;70;1;1;1;0;1;0
+58052;17460;1;161;85.0;110;70;2;2;0;0;0;1
+58053;20574;2;168;72.0;140;90;3;1;1;1;1;1
+58055;22453;1;154;68.0;130;80;2;1;0;0;1;1
+58058;19499;1;162;80.0;150;90;3;1;0;0;1;1
+58059;22717;1;169;74.0;130;80;1;2;0;0;0;1
+58063;16827;2;160;59.0;120;80;1;1;0;0;1;0
+58065;16913;2;171;76.0;70;120;1;1;1;1;1;0
+58066;19633;2;167;71.0;120;70;1;1;0;0;1;0
+58068;22017;1;156;62.0;140;90;1;1;0;0;0;1
+58070;21242;2;172;79.0;130;80;1;1;1;0;1;1
+58072;21261;1;178;79.0;160;100;1;1;0;0;1;1
+58073;17591;2;165;66.0;120;80;1;2;0;0;1;0
+58074;22881;1;174;74.0;120;80;2;2;0;0;0;1
+58076;23181;1;150;75.0;120;60;1;1;0;0;1;0
+58077;21304;1;165;75.0;130;90;1;1;0;0;1;1
+58078;22658;1;154;59.0;115;70;2;2;0;0;1;0
+58080;18133;1;160;60.0;120;80;1;1;0;0;1;1
+58081;20526;1;170;71.0;120;80;1;1;0;0;1;1
+58082;15295;1;154;102.0;120;80;1;1;0;0;1;0
+58083;19724;1;156;76.0;140;80;1;1;0;0;1;1
+58084;17546;1;165;71.0;120;60;1;1;0;0;0;0
+58086;22098;1;152;67.0;110;70;3;1;0;0;1;1
+58088;14671;1;162;58.0;120;20;1;1;0;0;1;0
+58089;14458;1;166;63.0;110;80;1;1;0;0;1;0
+58091;21769;1;152;68.0;110;70;1;1;0;0;1;0
+58092;16578;1;157;85.0;120;80;1;3;0;0;1;0
+58093;19789;1;164;75.0;110;70;1;1;0;0;1;0
+58094;22365;1;153;74.0;140;100;3;1;0;0;1;1
+58098;17972;1;169;88.0;170;94;1;3;0;0;0;1
+58100;19080;2;161;56.0;130;100;1;1;1;0;1;1
+58102;23442;2;180;78.0;150;90;1;1;0;0;1;1
+58103;19924;1;163;71.0;130;90;1;1;0;0;0;1
+58104;16619;2;180;70.0;120;80;1;1;0;1;1;0
+58105;21191;1;150;60.0;130;80;1;1;0;0;1;0
+58107;17327;2;175;61.0;110;70;1;1;0;0;0;0
+58108;22638;1;158;54.0;110;70;1;1;0;0;1;0
+58109;19120;2;166;66.0;120;80;1;1;0;0;1;1
+58110;14713;1;165;78.0;140;90;1;1;0;0;1;1
+58111;21173;1;172;90.0;120;80;1;1;0;0;1;0
+58113;14889;1;165;66.0;120;80;1;1;0;0;1;0
+58115;18946;2;172;80.0;120;80;2;1;0;0;1;1
+58116;23633;2;174;74.0;140;90;1;1;0;0;1;1
+58118;19650;1;179;84.0;150;90;1;1;0;0;1;1
+58119;19637;2;168;75.0;110;80;1;1;1;0;1;0
+58120;23657;2;168;69.0;120;80;1;1;0;0;1;0
+58122;14766;2;163;48.0;100;60;1;3;0;0;1;0
+58123;23196;1;159;59.0;120;80;1;3;0;0;0;0
+58124;21148;1;170;95.0;130;80;2;3;0;0;0;1
+58125;19848;1;156;80.0;120;80;1;1;0;0;0;1
+58127;19629;1;157;59.0;120;80;3;3;0;0;0;1
+58128;14424;1;168;72.0;120;80;1;1;0;0;1;0
+58129;14648;2;165;58.0;110;70;1;1;1;0;1;0
+58130;18198;1;163;80.0;120;80;1;1;0;0;1;0
+58131;15095;1;170;86.0;110;70;1;1;0;0;1;0
+58132;20438;1;167;96.0;140;90;1;1;0;0;1;1
+58133;19882;2;170;80.0;120;80;1;1;1;0;1;0
+58135;16651;2;170;79.0;120;80;1;1;1;1;1;0
+58138;21742;1;162;56.0;120;80;3;3;0;0;1;0
+58139;18243;1;169;81.0;140;90;1;1;0;0;0;1
+58140;19607;2;175;93.0;140;90;1;1;0;0;0;0
+58141;18885;1;162;91.0;150;90;1;1;0;0;0;1
+58143;22607;2;164;78.0;120;80;3;3;0;0;1;1
+58144;17474;2;168;88.0;140;80;2;1;1;0;0;1
+58145;21804;1;178;91.0;140;90;1;1;0;0;1;1
+58146;18430;1;162;68.0;150;90;2;1;0;0;1;1
+58147;16778;2;158;59.0;110;60;1;1;0;0;1;0
+58148;20636;1;167;70.0;120;70;1;1;0;0;0;1
+58150;17685;1;157;83.0;140;90;2;1;0;0;1;1
+58152;21190;1;160;64.0;120;80;3;3;0;0;1;0
+58153;18793;1;165;63.0;120;80;1;1;0;0;0;1
+58156;22047;2;164;70.0;120;80;1;1;1;1;1;0
+58157;16679;2;170;74.0;120;80;1;1;0;0;0;1
+58159;14827;2;170;68.0;110;80;1;1;1;0;1;0
+58160;19719;1;160;62.0;120;80;1;1;0;0;1;1
+58161;19197;1;163;61.0;110;70;1;1;1;0;0;0
+58165;20665;1;165;89.0;125;85;1;1;0;0;1;0
+58166;18099;2;182;128.0;130;100;3;3;1;1;0;0
+58167;21774;1;160;90.0;140;90;3;3;0;0;1;1
+58168;16779;1;162;63.0;120;80;1;1;0;0;0;1
+58169;22712;1;163;63.0;140;90;1;1;0;0;0;0
+58170;18309;2;170;80.0;120;90;1;1;0;0;1;0
+58171;22511;1;175;80.0;150;100;1;1;0;0;0;0
+58172;21117;2;169;64.0;160;90;1;1;0;0;1;1
+58173;20351;1;165;77.0;120;80;1;1;0;0;1;0
+58175;21728;1;154;162.0;120;80;1;1;0;0;1;0
+58176;18165;1;162;69.0;120;80;1;1;0;0;1;0
+58177;21881;1;163;70.0;150;90;1;1;0;0;1;1
+58178;14449;1;167;63.0;120;80;1;1;0;0;1;0
+58179;20583;1;166;99.0;140;90;1;1;0;0;1;1
+58181;21108;1;165;58.0;140;90;1;1;0;0;1;0
+58183;16699;2;177;68.0;120;80;1;1;0;0;0;0
+58184;16779;1;166;110.0;130;90;1;1;0;0;1;1
+58185;15846;1;170;69.0;120;80;1;1;0;0;1;0
+58186;19845;1;152;75.0;140;90;1;1;0;0;1;1
+58187;21003;1;159;75.0;170;100;2;1;0;0;1;1
+58188;18966;2;170;98.0;160;80;1;1;0;0;1;1
+58191;18284;1;165;68.0;120;80;1;1;0;0;1;0
+58192;19861;1;152;54.0;110;70;1;1;0;0;1;0
+58193;21250;1;165;65.0;120;70;1;1;0;0;1;1
+58194;18229;1;156;95.0;130;90;1;2;0;0;0;0
+58195;23595;1;170;65.0;130;70;1;1;0;0;0;1
+58197;21318;1;169;93.0;120;80;1;1;0;0;0;1
+58198;21900;1;160;70.0;120;80;2;1;0;0;1;1
+58200;21949;1;161;68.0;130;80;1;1;0;0;1;1
+58202;22033;2;120;60.0;130;90;1;1;1;0;1;0
+58203;23430;1;172;90.0;130;80;3;3;0;0;1;1
+58204;18277;1;149;56.0;120;70;1;2;0;0;1;0
+58207;22523;2;168;99.0;120;80;1;1;0;0;1;1
+58210;18534;2;172;97.0;130;90;1;1;1;0;1;1
+58211;16010;1;156;62.0;120;80;1;2;0;1;1;1
+58213;21748;1;170;76.0;120;80;1;1;0;0;1;1
+58215;19554;1;156;66.0;140;80;1;1;0;0;0;1
+58216;22671;2;175;79.0;120;70;1;1;0;1;1;0
+58217;16117;1;163;71.0;90;70;1;1;0;0;1;0
+58218;14636;2;165;54.0;110;80;1;1;0;0;1;0
+58220;22592;2;166;59.0;130;90;3;3;0;0;1;0
+58221;14715;2;170;59.0;120;80;2;2;0;0;0;0
+58223;18361;1;165;75.0;120;80;1;1;0;0;0;0
+58224;15836;1;166;80.0;120;80;1;1;0;0;1;0
+58225;22764;2;170;69.0;120;80;1;1;0;0;1;0
+58226;20987;2;172;82.0;130;80;1;3;0;0;0;1
+58227;16711;1;168;86.0;110;70;1;1;0;0;1;0
+58228;22000;2;167;51.0;120;80;1;1;0;0;1;1
+58230;20645;1;165;68.0;120;80;1;1;0;0;1;0
+58231;15466;2;163;76.0;160;80;1;1;0;0;0;1
+58233;22549;2;169;84.0;130;80;3;3;1;1;0;1
+58235;23383;2;170;74.0;160;100;1;1;0;0;1;1
+58238;19611;1;160;70.0;120;80;1;1;0;0;0;0
+58239;16882;1;161;78.0;100;70;2;1;0;0;1;0
+58240;23135;1;163;90.0;130;70;1;1;0;0;1;0
+58242;18287;1;162;78.0;120;80;1;1;0;0;1;0
+58244;20549;1;153;53.0;120;80;1;1;0;0;0;1
+58245;19677;2;162;78.0;120;80;1;1;0;0;1;0
+58246;21143;1;158;68.0;120;80;1;1;0;0;1;0
+58247;19558;2;185;90.0;120;80;1;1;0;0;1;0
+58248;20476;2;167;82.0;120;80;1;1;0;0;1;1
+58249;23347;1;158;65.0;110;80;1;1;0;0;1;0
+58251;21116;2;175;75.0;120;80;1;1;0;0;1;0
+58253;20340;1;156;60.0;130;80;1;1;0;0;1;0
+58254;19170;1;159;58.0;120;80;1;1;0;0;1;0
+58256;21902;1;164;87.0;130;80;3;3;0;0;0;1
+58259;20953;2;172;65.0;120;80;1;1;0;0;1;0
+58260;18883;2;169;92.0;110;70;1;1;0;0;1;0
+58261;17998;2;179;74.0;120;80;1;1;0;0;0;1
+58262;16386;2;169;75.0;120;70;1;1;0;0;0;0
+58264;21196;2;167;92.0;130;85;1;1;0;1;1;0
+58265;20396;2;160;67.0;120;80;1;1;1;0;1;0
+58267;16782;2;167;72.0;120;80;1;1;0;0;1;0
+58268;21379;1;160;58.0;120;70;1;1;0;0;1;0
+58269;20924;1;168;95.0;130;90;1;1;0;0;1;0
+58270;23352;1;160;100.0;140;90;1;1;0;0;1;1
+58272;23409;1;169;65.0;140;90;1;1;0;0;0;1
+58273;15942;1;170;105.0;110;70;1;1;0;0;1;0
+58275;23468;1;168;67.0;120;80;1;1;0;0;1;0
+58276;18421;1;164;70.0;90;60;1;1;0;0;1;0
+58277;16079;2;179;81.0;140;110;1;1;0;0;1;1
+58279;16721;1;165;94.0;120;60;1;1;0;1;1;0
+58280;21004;1;156;96.0;130;90;1;1;0;0;1;1
+58281;15340;1;167;84.0;120;70;1;1;0;0;1;0
+58283;21818;2;162;68.0;130;90;1;1;0;0;1;1
+58285;19098;2;175;63.0;120;80;1;1;0;0;1;0
+58286;21314;1;167;73.0;120;80;1;2;0;0;0;1
+58288;20234;1;166;65.0;140;90;1;1;0;0;1;1
+58289;18205;1;162;75.0;120;80;1;1;0;0;1;0
+58292;19468;2;182;93.0;130;80;2;2;1;1;1;0
+58293;19061;1;162;70.0;160;90;1;1;0;0;1;1
+58295;21870;2;170;72.0;170;80;1;1;0;0;1;1
+58297;19808;2;163;66.0;120;80;1;1;0;0;1;0
+58298;18366;1;168;79.0;120;801;1;1;0;0;1;0
+58299;20378;1;160;68.0;120;80;1;1;0;0;1;0
+58300;20491;1;156;92.0;130;85;1;1;0;0;1;1
+58302;18905;1;164;85.0;140;80;1;1;0;0;1;1
+58304;22606;1;147;88.0;120;80;1;1;0;0;1;0
+58306;18551;1;157;82.0;120;80;1;1;0;0;1;0
+58308;21757;2;174;80.0;120;80;1;1;0;0;1;0
+58309;22497;2;160;70.0;150;90;1;1;0;0;1;1
+58310;21155;1;158;61.0;140;90;3;1;0;0;1;1
+58311;18884;1;173;95.0;140;80;3;3;0;0;1;1
+58312;20953;2;170;75.0;140;90;3;1;0;1;1;1
+58314;21765;1;169;69.0;120;80;3;3;0;0;0;1
+58315;20589;1;158;50.0;120;80;1;1;0;0;1;1
+58316;17992;1;159;67.0;140;80;3;3;0;0;1;1
+58317;14719;1;170;75.0;170;70;1;1;0;0;0;1
+58318;16684;2;162;65.0;110;70;1;1;0;0;0;0
+58319;21304;2;161;73.0;140;90;1;1;1;1;1;1
+58320;16176;2;170;72.0;120;80;1;1;0;0;0;0
+58321;20155;2;175;70.0;120;80;1;1;0;0;1;0
+58324;21896;1;166;75.0;120;80;3;2;0;0;1;0
+58325;19579;1;174;83.0;150;100;1;1;0;0;0;1
+58326;23425;1;167;111.0;120;80;3;2;0;0;1;0
+58328;21207;2;180;89.0;120;80;1;1;1;0;1;0
+58331;22065;1;156;57.0;120;80;3;3;0;0;0;1
+58332;23418;2;165;60.0;120;80;1;3;0;0;1;1
+58333;17318;1;162;62.0;120;80;1;2;0;0;1;0
+58334;15878;1;159;90.0;150;90;1;1;0;0;0;1
+58337;21157;1;164;79.0;130;90;2;2;0;0;1;0
+58339;20332;1;169;86.0;120;80;1;1;0;0;1;0
+58340;18292;1;157;74.0;150;100;1;2;0;0;1;1
+58341;20957;2;168;87.0;130;90;1;1;1;0;1;1
+58342;21309;2;166;79.0;130;80;1;1;0;0;1;1
+58344;23275;1;172;67.0;120;80;1;1;0;0;1;0
+58347;21395;1;152;71.0;110;70;3;3;0;0;0;1
+58348;15291;1;164;92.0;140;90;1;1;0;0;1;1
+58349;19806;1;162;67.0;401;80;1;3;0;0;1;1
+58350;18256;2;180;98.0;160;90;1;1;1;0;1;1
+58352;18192;1;164;63.0;120;80;1;1;0;0;1;0
+58353;23300;2;175;97.0;120;80;1;1;0;0;1;0
+58355;21286;2;173;69.0;130;80;1;1;1;0;1;0
+58356;16105;1;166;66.0;110;80;1;1;0;0;1;0
+58357;19085;1;162;80.0;160;90;1;1;0;0;1;1
+58358;23398;2;172;74.0;130;70;1;1;0;0;1;1
+58359;22718;1;182;84.0;130;80;1;1;0;0;1;1
+58360;23161;1;153;85.0;120;100;2;1;0;0;0;1
+58361;21073;1;165;65.0;140;90;1;1;0;0;1;0
+58362;22072;1;165;56.0;120;80;1;1;0;0;1;0
+58363;21078;1;172;65.0;120;80;1;1;0;0;1;0
+58364;19914;1;164;82.0;140;90;3;3;0;0;1;1
+58365;17518;1;169;76.0;120;80;1;1;0;0;1;0
+58366;18176;2;172;74.0;110;80;1;1;0;0;1;0
+58367;23202;2;162;70.0;120;80;1;1;0;0;0;1
+58369;22460;1;166;79.0;130;79;3;2;0;0;1;1
+58371;21347;2;161;59.0;100;60;2;2;0;0;0;1
+58372;19591;1;178;74.0;140;90;1;1;0;0;1;1
+58373;21879;1;166;90.0;120;80;3;1;0;0;1;1
+58374;17438;1;169;70.0;16020;80;1;1;0;0;0;1
+58376;18343;2;176;89.0;120;80;1;1;0;0;1;0
+58377;23461;1;162;65.0;120;80;1;1;0;0;1;0
+58378;18098;1;153;45.0;120;80;1;1;0;0;1;0
+58379;18150;1;163;47.0;120;80;1;1;0;0;1;0
+58382;20387;1;166;64.0;110;60;1;1;0;0;1;1
+58383;19018;1;159;82.0;110;70;2;2;0;0;0;0
+58384;20460;1;169;74.0;130;90;2;2;0;0;1;0
+58385;21166;1;149;82.0;120;80;1;1;0;0;1;1
+58387;21644;1;156;46.0;120;70;1;1;0;0;1;0
+58389;19082;1;162;58.0;120;80;1;1;0;0;1;0
+58390;14435;1;162;130.0;130;80;1;1;0;0;1;0
+58392;15429;2;178;85.0;130;80;1;1;0;0;0;0
+58394;20464;1;151;73.0;120;70;3;3;0;0;0;1
+58398;23190;1;157;74.0;120;80;3;3;0;0;1;1
+58399;23364;2;159;61.0;120;80;1;1;0;0;1;1
+58400;21729;1;160;58.0;140;90;2;1;0;0;1;1
+58402;19775;1;167;75.0;120;80;1;1;0;0;1;0
+58403;19023;1;160;58.0;120;80;1;1;0;0;1;0
+58408;20557;1;158;120.0;150;90;3;3;0;0;1;1
+58410;17445;1;162;50.0;95;60;1;1;0;0;1;0
+58412;21106;2;169;79.0;120;80;1;1;0;0;1;1
+58413;16073;1;155;69.0;112;80;1;1;0;1;1;0
+58414;19634;1;170;61.0;90;60;1;1;0;0;1;0
+58416;21026;1;164;86.0;110;70;1;1;0;0;1;1
+58417;21833;2;165;68.0;120;80;1;1;0;0;1;0
+58418;16208;1;164;59.0;120;80;1;1;0;0;1;1
+58419;20488;1;154;76.0;120;80;1;1;0;0;0;1
+58421;18975;1;169;56.0;160;100;1;1;0;0;1;0
+58422;16909;1;175;76.0;130;90;1;1;0;0;0;1
+58423;19505;1;160;70.0;130;70;2;3;0;0;1;1
+58424;19060;1;160;84.0;140;90;3;2;0;0;1;1
+58426;21634;2;166;71.0;140;80;2;1;0;0;1;1
+58427;15954;1;174;80.0;140;90;1;1;0;0;0;1
+58429;19903;2;169;64.0;120;80;1;1;0;0;1;0
+58432;17398;1;160;55.0;130;90;1;1;0;0;0;0
+58433;19622;1;152;80.0;120;80;1;1;0;0;1;0
+58434;21998;1;168;73.0;120;80;2;1;0;0;1;0
+58436;17694;2;175;74.0;120;90;2;2;1;0;1;1
+58438;19764;1;162;72.0;110;70;1;1;0;0;1;0
+58439;15263;2;185;73.0;110;70;2;1;1;1;1;0
+58442;21212;1;167;80.0;150;80;3;3;0;0;0;1
+58443;23081;2;185;74.0;120;80;3;1;0;0;1;1
+58445;19015;1;170;64.0;120;70;2;1;0;0;1;1
+58446;20431;2;159;56.0;120;80;1;1;0;0;1;1
+58447;22591;1;169;105.0;120;80;3;1;0;0;1;0
+58448;21805;2;163;81.0;150;90;1;1;0;0;1;1
+58449;18138;1;164;72.0;80;120;1;3;0;0;1;1
+58450;19797;2;170;78.0;120;80;1;1;0;0;0;1
+58451;21049;1;159;63.0;140;90;1;1;0;0;1;0
+58452;16078;1;154;83.0;140;90;1;1;0;0;1;1
+58453;23429;2;167;87.0;110;70;1;1;0;0;0;1
+58455;19854;1;166;69.0;120;80;1;1;0;0;1;1
+58456;18836;1;162;62.0;120;80;3;3;0;0;1;0
+58457;18108;1;163;93.0;120;90;2;1;0;0;1;0
+58459;16762;1;161;52.0;110;70;1;1;0;0;1;0
+58460;21761;1;155;105.5;130;80;3;1;0;0;0;1
+58461;15410;1;170;68.0;120;70;1;1;0;0;1;0
+58462;22595;1;151;68.0;110;70;1;3;0;0;1;1
+58463;19955;2;175;80.0;120;80;1;1;0;0;1;1
+58465;22592;1;165;61.0;120;80;1;1;0;0;1;1
+58466;18242;1;167;80.0;110;70;2;1;0;0;1;1
+58468;23128;2;162;98.0;160;100;2;1;0;0;1;1
+58469;14638;2;168;63.0;130;70;1;1;1;0;0;0
+58470;23412;2;171;79.0;170;100;1;1;1;0;1;1
+58471;21087;1;165;63.0;120;80;1;1;0;0;1;0
+58472;20289;2;169;67.0;200;110;1;1;1;0;1;0
+58473;18908;1;155;65.0;120;80;1;2;0;0;1;1
+58475;18353;2;165;70.0;110;70;1;1;0;0;1;1
+58476;18990;1;155;96.0;120;80;2;1;0;0;1;0
+58477;16245;1;169;49.0;100;80;1;1;0;0;1;0
+58479;17459;2;164;62.0;120;80;1;1;0;0;0;0
+58480;17670;2;175;79.0;120;80;1;1;1;1;1;0
+58482;15122;1;166;56.0;90;60;1;1;0;0;1;0
+58483;17978;1;150;67.0;120;80;1;1;0;0;1;0
+58485;23383;2;169;75.0;120;80;1;1;0;0;1;1
+58487;22489;1;166;93.0;140;90;3;1;0;0;1;1
+58488;20495;1;164;90.0;120;80;1;1;0;0;1;0
+58489;21797;1;174;80.0;140;90;3;3;0;0;1;1
+58490;19438;1;149;52.0;100;70;1;1;0;0;1;0
+58495;20445;1;150;70.0;110;80;1;1;0;0;0;1
+58496;18015;1;160;60.0;120;80;1;1;0;0;1;0
+58497;22591;1;164;70.0;120;80;1;1;0;0;1;0
+58499;19048;1;167;70.0;120;80;2;1;0;0;0;0
+58500;19683;1;174;58.0;100;60;1;1;0;0;1;0
+58501;19147;2;167;69.0;140;90;1;1;1;0;0;1
+58503;23537;1;165;59.0;120;80;1;1;0;0;0;0
+58506;16862;2;170;105.0;130;90;1;1;0;0;1;1
+58507;22043;1;165;65.0;120;80;1;1;0;0;0;1
+58509;14597;1;174;82.0;90;70;1;1;0;0;1;0
+58510;14649;2;177;90.0;120;80;1;1;0;0;1;0
+58512;19076;1;158;77.0;130;80;1;1;0;0;1;0
+58513;19014;1;160;70.0;143;85;1;1;0;0;1;1
+58515;18113;1;162;88.0;120;80;1;1;0;0;1;0
+58516;19758;2;165;63.0;120;80;1;1;1;0;1;0
+58517;20608;1;168;65.0;130;90;1;1;0;0;0;1
+58518;20449;1;164;96.0;120;80;2;2;0;0;1;1
+58519;23348;1;161;58.0;140;100;1;1;0;0;1;0
+58520;19081;1;165;75.0;120;80;1;1;0;0;1;0
+58521;18852;1;152;76.0;140;90;2;1;0;0;1;1
+58525;22703;1;165;78.0;120;80;1;3;0;0;0;1
+58526;21934;1;153;79.0;140;80;3;3;0;0;1;0
+58527;19553;2;173;90.0;130;80;3;1;0;0;1;1
+58529;18969;1;168;60.0;130;80;1;1;0;0;1;0
+58530;14523;1;170;53.0;110;90;1;1;0;1;1;0
+58531;18246;1;168;78.0;140;90;1;1;0;0;1;1
+58532;17407;1;162;65.0;120;80;1;1;0;0;1;0
+58534;22730;1;160;83.0;150;100;1;1;0;0;1;1
+58536;23536;1;153;73.0;160;90;1;1;0;0;1;1
+58537;19174;1;170;68.0;100;20;1;1;0;0;1;0
+58538;16017;1;156;62.0;160;100;1;1;0;0;0;1
+58539;16714;1;154;70.0;120;70;1;1;0;0;1;0
+58542;15090;2;174;73.0;140;90;2;1;1;1;1;1
+58543;21145;1;141;83.0;130;80;1;1;0;0;1;1
+58544;19677;1;156;82.0;125;90;2;1;0;0;1;0
+58546;17662;2;174;78.0;90;60;1;1;1;0;0;1
+58547;20220;1;159;60.0;110;80;1;1;0;0;0;0
+58548;21919;2;176;99.0;130;80;3;3;0;1;1;1
+58550;17720;1;157;74.0;120;80;1;1;0;0;1;0
+58551;17525;1;175;67.0;130;80;2;1;0;0;1;0
+58552;23278;1;164;69.0;140;80;3;3;0;0;0;1
+58554;18389;1;158;72.0;120;80;1;1;0;0;1;0
+58555;18833;2;176;102.0;130;85;1;1;0;0;0;0
+58556;18374;1;155;51.0;140;100;2;1;0;0;1;1
+58557;14471;2;170;73.0;120;90;1;1;1;1;1;1
+58560;20971;1;149;53.0;120;90;2;2;0;0;1;0
+58562;22727;2;178;80.0;130;80;3;3;0;0;1;0
+58564;18114;1;168;71.0;100;70;1;1;0;0;1;0
+58565;16074;2;165;65.0;130;70;2;2;0;0;1;1
+58568;21385;1;165;67.0;120;80;1;1;0;0;0;0
+58569;18407;1;169;81.0;120;80;1;1;0;0;1;0
+58571;23420;2;169;75.0;120;80;3;1;0;0;1;1
+58572;21100;2;168;64.0;140;90;1;1;0;0;0;1
+58574;16647;1;154;95.0;120;80;1;1;0;0;1;0
+58575;20970;1;160;107.0;170;100;3;2;0;0;1;0
+58576;21086;2;171;96.0;150;80;3;1;0;0;1;1
+58577;21147;2;165;100.0;120;80;2;1;0;0;0;1
+58578;19077;2;170;68.0;140;80;2;2;0;0;0;1
+58580;17480;1;167;73.0;90;60;2;1;0;0;1;0
+58582;20466;1;167;75.0;140;80;1;1;0;0;0;1
+58585;21081;1;160;59.0;130;90;1;1;0;0;1;0
+58586;15424;1;172;97.0;130;80;1;1;0;0;1;0
+58588;22119;1;168;69.0;120;80;1;3;0;0;1;0
+58590;23413;1;154;70.0;120;80;1;1;0;0;0;1
+58592;21790;2;163;76.0;120;80;1;1;0;0;1;0
+58593;18909;1;168;79.0;120;80;1;1;0;0;1;1
+58595;16750;2;162;60.0;120;70;1;1;0;0;0;0
+58596;21199;1;157;86.0;110;80;1;1;0;0;1;0
+58597;16178;2;179;128.0;160;1000;2;1;1;0;0;1
+58602;18988;1;165;71.0;120;80;1;1;0;0;0;1
+58603;16221;2;172;82.0;140;1000;1;1;1;0;1;1
+58606;19779;2;172;73.0;140;90;2;1;0;0;0;1
+58607;18253;1;168;89.0;120;80;1;1;0;0;1;0
+58610;18363;1;166;56.0;120;60;1;1;0;0;1;0
+58611;19585;1;150;85.0;180;1000;1;1;0;0;1;1
+58612;18306;2;170;78.0;140;90;1;1;0;0;0;1
+58613;19903;1;160;85.0;100;70;1;2;0;0;0;0
+58615;21323;1;152;69.0;130;90;1;1;0;0;1;0
+58617;18095;1;156;64.0;100;70;1;1;0;0;1;0
+58618;19674;2;178;85.0;120;80;1;1;0;0;0;0
+58619;22102;2;170;74.0;120;80;1;1;0;0;1;1
+58620;22462;2;159;66.0;160;90;1;1;0;0;1;1
+58621;14615;2;170;65.0;120;80;1;1;0;0;1;0
+58622;21706;2;168;93.0;130;100;3;1;0;0;0;1
+58623;18957;1;156;65.0;120;80;2;1;0;0;1;0
+58624;16025;2;170;85.0;100;60;1;1;1;1;1;0
+58625;22724;2;170;70.0;120;80;2;1;0;0;0;0
+58627;15160;1;162;45.0;100;60;1;2;0;0;1;0
+58629;23356;2;178;80.0;130;90;1;1;0;0;1;0
+58631;22797;2;172;67.0;140;90;1;1;0;0;1;1
+58632;18499;1;154;63.0;160;100;3;3;0;0;1;0
+58633;23316;1;158;61.0;120;80;1;1;0;0;1;1
+58634;22862;2;168;71.0;120;80;1;1;0;0;1;1
+58636;15508;1;165;60.0;120;80;1;1;0;0;0;1
+58637;23192;1;156;77.0;160;90;1;1;0;0;1;0
+58638;14783;1;163;70.0;120;80;1;1;0;0;1;0
+58639;23432;1;166;86.0;160;80;2;1;0;0;0;1
+58642;17589;2;163;68.0;120;80;1;1;1;1;1;0
+58643;16778;1;167;72.0;120;80;3;3;0;0;0;0
+58644;23372;2;170;82.0;120;80;1;1;0;0;1;0
+58646;18972;1;145;41.0;110;70;1;1;0;0;0;0
+58648;18230;1;162;87.0;140;90;1;1;0;0;1;1
+58649;19969;1;165;68.0;120;80;1;1;0;0;1;1
+58650;22619;2;175;100.0;120;80;1;1;1;1;0;0
+58652;19635;2;179;75.0;120;80;1;1;0;0;1;0
+58653;20397;2;178;86.0;120;80;1;1;0;0;1;0
+58655;21159;2;168;61.0;120;90;1;1;0;0;1;0
+58656;17492;1;168;70.0;150;90;1;1;0;0;1;1
+58657;14621;1;165;62.0;120;80;1;1;0;0;0;0
+58658;19252;1;160;90.0;130;90;1;1;0;0;1;0
+58659;17329;2;174;82.0;175;119;1;1;0;1;1;1
+58661;19735;1;168;70.0;110;70;1;1;0;0;0;0
+58662;21217;1;168;105.0;120;80;1;1;0;0;1;0
+58663;22019;1;158;73.0;130;89;3;1;0;0;1;1
+58664;18260;1;160;83.0;140;70;3;1;0;0;1;1
+58665;20370;1;160;80.0;140;90;1;1;0;0;1;1
+58666;22628;1;171;90.0;140;90;1;1;0;0;0;1
+58667;19022;1;154;67.0;120;80;2;2;0;0;1;0
+58668;18829;1;157;55.0;130;80;1;1;0;0;1;0
+58669;21765;2;161;90.0;130;80;1;1;0;0;1;1
+58670;19796;1;165;65.0;120;80;3;3;0;0;0;0
+58671;20517;1;168;59.0;120;80;2;1;0;0;0;1
+58672;14382;2;177;80.0;120;80;1;1;1;1;1;0
+58674;21918;1;169;67.0;120;80;1;1;0;0;0;1
+58675;14332;1;163;73.0;110;80;1;1;0;0;0;0
+58677;21955;1;166;83.0;140;80;2;1;0;0;1;1
+58678;18398;1;147;86.0;120;80;1;1;0;0;1;0
+58679;16558;2;153;65.0;140;90;1;1;0;0;1;1
+58680;23304;1;157;86.0;150;90;3;1;0;0;1;1
+58682;18820;1;160;79.0;150;90;1;1;0;0;0;1
+58683;18786;2;175;111.0;140;90;2;1;0;0;1;1
+58684;18963;2;183;65.0;190;100;1;1;1;1;1;1
+58686;19948;1;167;76.0;120;80;1;1;0;0;1;0
+58687;18499;2;160;60.0;120;90;2;1;1;0;1;0
+58688;19771;2;160;71.0;140;90;3;1;0;0;1;1
+58689;21284;2;170;85.0;140;100;1;1;0;0;1;1
+58690;18916;1;160;79.0;130;90;3;2;0;0;1;1
+58691;18405;2;164;72.0;120;80;1;1;0;0;1;0
+58692;19189;2;167;65.0;120;80;1;1;0;0;1;0
+58693;23253;2;170;70.0;120;80;1;1;0;0;1;1
+58695;19000;1;160;65.0;130;90;1;1;0;0;1;1
+58696;21035;1;156;60.0;130;80;1;1;0;0;1;1
+58699;21753;1;162;102.0;120;80;1;1;0;0;1;1
+58700;18957;2;170;81.0;130;70;1;1;1;0;1;1
+58701;17415;1;161;86.0;140;90;1;1;0;0;1;0
+58702;22537;1;165;65.0;140;80;1;1;0;0;1;1
+58703;19709;1;170;68.0;160;90;1;1;0;0;0;1
+58704;20297;1;161;70.0;120;80;1;1;0;0;1;0
+58705;21056;1;158;92.0;130;90;1;1;0;0;1;0
+58706;23241;2;170;54.0;90;60;1;1;1;0;1;0
+58707;20609;2;166;72.0;120;80;1;2;0;0;1;1
+58710;20215;1;160;82.0;140;90;2;1;0;0;0;1
+58711;22621;1;167;70.0;140;90;3;2;0;0;1;1
+58713;20124;2;174;74.0;120;70;1;1;0;0;0;0
+58714;21146;1;162;65.0;150;90;1;1;0;1;1;1
+58715;21845;1;157;68.0;120;80;1;1;0;0;1;1
+58716;20440;1;163;95.0;110;70;3;1;0;0;1;1
+58717;18831;1;160;58.0;120;80;1;1;0;0;0;0
+58719;14612;1;146;47.0;110;80;1;1;0;0;1;0
+58720;19985;1;163;69.0;140;90;1;1;0;0;0;1
+58721;14595;1;153;43.0;110;70;1;1;0;0;1;0
+58726;21895;1;159;72.0;140;80;2;1;0;0;1;0
+58727;19536;2;160;60.0;120;80;1;1;0;0;1;0
+58728;21117;1;160;60.0;1202;80;1;1;0;0;1;1
+58729;21150;1;165;60.0;120;80;1;1;0;0;1;1
+58730;16098;1;162;63.0;120;80;1;1;0;0;1;0
+58732;17636;1;167;80.0;140;80;1;1;0;0;1;1
+58734;17807;1;164;68.0;140;90;2;1;0;0;1;1
+58736;23218;2;175;62.0;130;90;1;1;0;0;1;1
+58737;20529;1;151;68.0;160;100;1;1;0;0;1;0
+58739;19179;1;165;69.0;140;90;1;1;0;0;0;1
+58740;22524;1;165;69.0;130;80;1;1;0;0;1;0
+58742;20887;1;152;67.0;150;90;2;1;0;0;1;0
+58743;21024;1;170;92.0;150;100;1;1;0;0;1;1
+58744;14701;2;160;70.0;140;90;1;1;1;1;1;1
+58745;23493;1;158;85.0;140;80;1;1;0;0;0;1
+58747;15310;2;165;66.0;120;80;1;1;0;0;1;0
+58750;20947;1;174;81.0;120;80;1;1;0;0;1;0
+58751;19080;2;170;70.0;140;90;1;1;0;0;1;1
+58752;14460;2;176;58.0;110;80;1;1;0;0;1;0
+58753;22575;1;166;80.0;160;90;2;1;0;0;1;1
+58754;16732;1;170;70.0;120;80;1;1;0;0;1;0
+58755;23304;1;163;75.0;130;70;3;1;0;0;1;1
+58757;16066;1;152;75.0;110;70;1;1;0;0;1;0
+58759;21845;1;172;71.0;140;90;1;1;0;0;1;1
+58760;20533;1;161;58.0;120;90;1;1;0;0;1;1
+58761;23286;1;157;75.0;120;80;1;2;0;0;0;1
+58762;21934;2;168;80.0;100;70;1;1;0;0;0;0
+58763;22126;2;176;84.0;130;80;1;1;1;0;1;0
+58764;21143;1;161;91.0;100;80;2;1;0;0;1;0
+58765;20526;2;169;64.0;120;80;1;1;0;0;1;0
+58768;18242;1;164;61.0;110;70;1;1;0;0;1;0
+58770;21854;1;163;120.0;130;70;3;3;0;0;1;0
+58773;19657;1;160;76.0;120;80;1;1;0;0;1;0
+58774;15477;2;182;90.0;130;80;1;1;1;0;1;1
+58775;18785;1;167;70.0;120;80;1;1;0;0;1;0
+58776;22859;1;158;70.0;140;90;1;1;0;0;1;1
+58777;23511;2;167;80.0;140;80;2;1;0;0;1;1
+58778;21004;2;164;68.0;110;70;1;1;0;0;1;0
+58779;22506;2;167;74.0;120;80;1;1;0;0;0;0
+58781;22493;2;162;77.0;120;80;1;1;0;0;1;1
+58783;17331;2;170;80.0;120;80;1;1;1;1;0;1
+58784;22524;1;156;80.0;120;80;1;1;0;0;1;0
+58786;15574;1;169;65.0;120;80;1;1;0;0;1;0
+58787;19884;2;175;80.0;120;80;1;1;0;0;1;0
+58788;19710;2;173;82.0;120;75;1;1;0;0;0;0
+58789;22531;1;154;87.0;160;100;1;1;0;0;0;1
+58790;23072;2;163;65.0;110;90;1;1;0;0;1;0
+58791;20276;1;153;62.0;130;80;1;1;0;0;0;1
+58793;21106;2;178;79.0;140;90;1;1;0;0;0;1
+58794;20331;1;158;60.0;160;110;1;1;0;0;0;1
+58797;23437;1;158;87.0;160;100;3;1;0;0;1;1
+58798;22479;1;153;98.0;130;80;2;1;0;0;1;1
+58799;15342;2;177;74.0;110;80;1;1;0;0;1;0
+58800;16952;1;160;67.0;120;80;1;2;0;0;1;0
+58802;22094;2;178;113.0;140;90;3;2;1;0;0;1
+58804;18980;1;160;65.0;140;80;1;3;0;0;0;1
+58805;15405;2;159;65.0;145;75;1;1;0;0;1;1
+58806;20707;2;165;75.0;140;80;1;1;1;0;0;1
+58808;21115;1;156;56.0;120;80;1;1;0;0;1;1
+58810;22023;1;162;70.0;120;80;1;1;0;0;1;0
+58811;20343;2;172;82.0;120;80;3;2;0;0;1;1
+58812;21191;2;160;69.0;110;70;1;1;0;0;1;0
+58813;23213;1;151;70.0;140;90;1;1;0;0;1;1
+58814;17494;1;160;70.0;120;80;1;3;0;0;1;0
+58815;19241;1;167;69.0;120;80;1;1;0;0;1;1
+58818;20384;2;169;91.0;140;79;3;1;0;0;0;1
+58819;19628;1;159;58.0;130;80;3;3;0;0;1;0
+58821;22540;2;170;85.0;160;90;1;1;0;0;1;1
+58822;23288;2;163;57.0;120;80;3;1;0;0;1;1
+58823;21838;1;158;77.0;140;90;2;3;0;0;1;0
+58824;20396;2;178;82.0;120;80;1;1;1;1;1;0
+58826;19020;1;172;65.0;110;90;1;1;0;0;1;0
+58829;16675;1;168;68.0;110;80;1;1;0;0;1;1
+58830;15360;1;168;70.0;100;80;1;1;0;0;1;0
+58831;15281;2;160;65.0;110;80;1;1;0;0;1;0
+58832;15309;1;165;70.0;100;70;1;1;0;0;0;0
+58833;20557;1;161;60.0;90;70;2;2;0;0;1;0
+58834;17630;2;163;80.0;130;90;1;1;1;1;1;1
+58835;15256;1;160;78.0;120;70;1;1;0;0;1;0
+58837;15302;2;160;57.0;90;60;1;1;0;0;1;0
+58838;18326;2;174;109.0;120;80;1;1;0;0;1;1
+58840;22512;1;152;70.0;140;1100;1;1;0;0;1;1
+58841;17643;1;158;73.0;160;100;1;1;0;0;1;1
+58843;19559;2;170;60.0;110;70;1;1;0;0;1;0
+58844;14380;1;166;109.0;130;90;1;1;0;0;1;0
+58845;20400;2;165;65.0;120;80;1;1;0;0;0;1
+58846;18338;1;159;75.0;140;100;1;1;0;0;1;1
+58847;20746;2;164;66.0;120;80;3;3;0;0;1;0
+58848;18046;1;158;88.0;140;70;1;1;0;0;1;1
+58849;15318;1;175;85.0;120;80;1;1;0;0;1;0
+58850;18875;2;169;73.0;130;90;2;1;0;0;1;1
+58851;20678;1;162;73.0;120;80;3;1;0;0;1;1
+58852;16584;1;152;53.0;100;60;2;1;0;0;1;0
+58853;20901;1;168;84.0;160;100;2;2;0;0;0;1
+58854;20303;1;153;75.0;120;80;1;1;0;0;1;1
+58857;23264;1;161;71.0;140;80;3;1;0;0;1;1
+58859;22136;1;146;68.0;150;90;3;1;0;0;1;1
+58861;22804;1;164;61.0;110;70;1;1;0;0;0;0
+58862;18297;1;151;53.0;140;90;1;1;0;0;1;1
+58863;20359;1;153;100.0;160;100;3;1;0;1;1;1
+58864;17470;2;171;103.0;120;80;1;1;0;0;1;0
+58865;23478;1;169;79.0;130;90;1;2;0;0;1;1
+58866;14399;1;158;69.0;120;80;1;1;0;0;0;0
+58867;22603;1;152;60.0;160;90;1;1;0;0;1;1
+58869;19716;1;166;78.0;130;70;1;1;0;0;1;0
+58870;15927;1;170;80.0;140;80;1;1;0;0;1;1
+58871;15052;1;158;61.0;100;70;1;1;0;0;1;0
+58877;19152;1;159;66.0;110;70;1;1;0;0;1;1
+58878;17490;1;165;69.0;120;80;1;1;0;0;1;0
+58882;21347;1;154;95.0;120;80;1;1;0;0;0;1
+58884;18019;2;187;83.0;120;80;1;1;0;0;1;0
+58885;18723;1;160;62.0;130;80;1;1;0;0;1;0
+58886;23264;1;160;62.0;120;80;1;1;0;0;1;0
+58888;21867;2;182;78.0;110;70;1;1;0;0;0;0
+58889;23128;1;168;76.0;140;80;1;1;0;0;1;1
+58890;20292;1;167;63.0;120;80;1;1;0;0;0;1
+58891;19934;2;168;68.0;120;80;1;1;0;0;1;0
+58893;18137;1;164;56.0;100;70;1;1;0;0;1;0
+58894;15091;1;161;51.0;120;70;1;1;0;0;1;0
+58896;22081;1;152;56.0;140;80;1;2;0;0;1;0
+58897;20685;1;164;70.0;120;80;1;1;0;0;1;1
+58898;19190;1;160;53.0;110;60;1;1;0;0;1;0
+58899;15904;1;161;67.0;130;90;3;1;0;0;1;1
+58901;17374;2;156;56.0;120;80;1;1;0;0;1;0
+58902;19041;1;164;69.0;110;70;1;1;0;0;1;0
+58903;17583;1;153;106.0;120;80;1;1;0;0;1;1
+58904;18413;1;162;60.0;130;90;1;1;0;0;1;1
+58905;16837;2;172;76.0;120;80;1;1;0;0;1;0
+58907;20407;1;159;94.0;160;100;3;3;0;0;1;1
+58908;21191;1;151;64.0;120;80;2;2;0;0;1;0
+58909;14401;1;168;65.0;100;60;1;1;0;0;1;0
+58910;21793;2;172;96.0;130;60;1;1;0;0;0;1
+58911;21128;2;165;81.0;160;80;1;1;0;0;1;0
+58915;19068;1;165;80.0;120;80;1;1;0;0;1;1
+58916;23146;1;153;83.0;150;90;3;1;0;0;1;1
+58917;21299;1;154;74.0;150;100;3;3;0;0;1;1
+58919;16877;1;168;70.0;120;80;1;1;0;0;1;0
+58920;16539;2;169;74.0;120;80;1;1;0;0;1;0
+58922;18315;2;165;78.0;100;80;1;1;0;0;1;0
+58924;15981;1;167;70.0;130;90;1;1;0;0;1;0
+58925;20050;2;168;78.0;140;90;1;1;0;0;1;1
+58927;15428;2;175;71.0;120;90;1;1;0;0;1;0
+58928;19447;2;171;65.0;120;80;2;2;0;0;0;0
+58929;22005;1;158;60.0;160;80;1;1;0;0;1;1
+58930;16052;2;178;92.0;120;80;1;1;0;0;1;0
+58931;17447;1;157;58.0;120;80;1;1;0;0;1;0
+58933;21809;1;170;65.0;140;90;1;1;0;0;0;1
+58934;21291;1;149;70.0;130;80;3;3;0;0;1;1
+58936;18212;1;153;73.0;110;70;1;1;0;0;1;0
+58937;18743;1;160;75.0;120;60;1;1;0;0;1;0
+58939;16179;1;158;94.0;135;85;1;1;0;0;1;0
+58940;19956;2;179;93.0;160;100;3;1;0;0;1;1
+58941;20621;1;162;63.0;126;74;1;1;0;0;1;1
+58942;22547;1;161;69.0;120;80;1;1;0;0;1;1
+58943;18877;1;157;69.0;140;100;1;1;0;0;0;1
+58944;21642;2;171;80.0;130;90;3;1;0;0;1;1
+58945;17413;1;160;70.0;160;90;2;2;0;0;1;1
+58946;21969;1;165;86.0;150;90;1;1;0;0;0;1
+58947;21018;2;164;63.0;130;90;1;1;0;0;0;1
+58949;21963;1;172;110.0;130;90;3;1;0;0;1;1
+58950;20531;2;167;80.0;130;80;1;1;0;0;1;0
+58952;19669;2;155;75.0;130;80;1;1;0;0;1;0
+58954;21688;1;166;82.0;140;80;3;3;0;0;0;1
+58955;20980;1;165;74.0;100;60;1;1;0;0;1;1
+58956;21878;2;172;83.0;150;90;2;1;0;0;1;1
+58957;19061;2;172;70.0;120;80;1;1;0;0;1;1
+58958;20298;2;171;79.0;110;70;1;1;0;0;1;1
+58961;22034;1;156;52.0;100;70;1;1;0;0;1;0
+58962;23164;1;164;96.0;160;100;3;1;0;0;1;1
+58963;20561;1;166;69.0;120;80;1;1;0;0;1;1
+58964;22443;1;163;68.0;140;80;2;1;0;0;1;1
+58965;18100;1;158;86.0;160;100;1;1;0;0;1;1
+58967;23465;2;156;65.0;120;80;1;1;1;0;1;1
+58969;19691;1;168;73.0;120;80;1;1;0;0;0;0
+58970;22744;1;156;65.0;120;80;1;1;0;0;1;1
+58971;23301;1;140;78.0;170;90;1;1;0;0;0;0
+58972;18857;1;165;68.0;120;80;1;1;0;0;0;1
+58976;21371;1;165;74.0;120;80;1;1;0;0;1;0
+58977;14730;1;164;79.0;130;90;3;1;0;0;1;1
+58979;22893;1;168;70.0;130;90;1;1;0;0;1;0
+58980;21798;2;168;72.0;120;80;1;1;0;0;1;0
+58981;17448;2;169;81.0;140;90;1;1;0;0;0;1
+58982;22454;2;161;61.0;109;67;1;1;0;0;1;0
+58983;20275;1;168;74.0;120;80;1;1;0;0;1;1
+58984;23329;1;165;85.0;130;80;1;1;0;0;1;1
+58985;21715;1;168;69.0;120;80;1;1;0;0;1;0
+58986;21045;1;174;65.0;100;90;1;1;0;0;1;1
+58987;15286;2;170;66.0;120;65;1;1;0;0;0;0
+58988;21854;2;177;92.0;120;80;1;1;0;0;0;1
+58989;21339;1;173;95.0;120;80;1;1;0;0;1;1
+58991;16813;2;175;86.0;140;90;1;1;0;0;0;0
+58992;18895;1;162;73.0;150;90;1;1;0;0;0;1
+58994;19513;1;153;57.0;130;90;2;1;0;0;1;1
+58996;21774;2;173;110.0;163;100;3;3;1;0;0;1
+58998;20450;1;165;69.0;120;80;1;1;0;0;1;1
+59001;16230;1;160;72.0;100;60;1;2;0;0;1;0
+59003;22529;2;174;87.0;150;100;1;1;0;0;1;1
+59007;16056;2;168;65.0;120;80;1;1;0;0;1;1
+59008;14613;1;151;43.0;90;70;1;1;0;0;1;0
+59009;16692;2;161;64.0;140;80;1;1;0;0;0;1
+59010;19248;2;170;75.0;120;80;1;1;0;0;1;0
+59011;15345;2;174;101.0;120;80;1;1;0;0;1;0
+59013;18858;1;149;67.0;160;100;1;1;0;0;1;1
+59014;23292;1;156;68.0;160;80;1;1;0;0;1;1
+59015;19100;1;159;92.0;150;1000;1;1;0;0;1;0
+59016;21866;2;171;104.0;140;90;1;1;0;0;1;1
+59019;21795;1;164;70.0;110;70;2;2;0;0;1;1
+59020;16122;2;173;82.0;120;90;1;1;1;1;1;0
+59022;18981;2;170;65.0;120;75;1;1;0;0;1;0
+59023;18939;1;153;70.0;130;80;1;1;0;0;1;1
+59024;16010;1;153;62.0;120;80;1;1;0;0;1;0
+59025;15982;1;156;67.0;110;70;1;1;0;0;1;0
+59026;21978;1;172;70.0;120;80;1;1;0;0;1;1
+59027;20982;2;167;72.0;150;90;1;1;0;0;1;1
+59028;19157;2;164;70.0;160;90;1;1;0;0;1;1
+59030;20260;2;165;65.0;120;80;1;1;1;0;1;0
+59032;21790;1;159;71.0;130;90;1;1;0;0;1;1
+59033;20386;1;147;48.0;120;80;1;1;0;0;1;1
+59034;21175;1;165;68.0;140;1000;2;1;0;0;1;1
+59035;20429;1;154;78.0;150;70;1;3;0;0;1;1
+59037;14648;1;167;59.0;100;80;1;1;0;0;1;0
+59038;19725;1;178;67.0;130;60;1;1;0;0;1;0
+59039;16665;2;172;76.0;130;90;1;1;0;0;1;0
+59040;20434;1;166;74.0;110;70;1;1;0;0;0;0
+59041;20991;1;160;62.0;140;90;1;1;0;0;1;1
+59044;15381;1;162;50.0;110;70;1;1;0;0;1;0
+59046;21985;1;164;110.0;120;80;3;1;0;0;1;1
+59047;18146;1;156;46.0;90;60;1;1;0;0;1;0
+59049;15471;1;165;77.0;110;70;1;3;0;0;1;0
+59050;22359;1;150;87.0;160;100;1;1;0;0;1;1
+59051;21668;1;165;76.0;120;79;1;1;0;0;1;0
+59054;21260;1;156;85.0;120;80;3;3;0;0;1;0
+59055;18826;1;164;97.0;120;80;2;2;0;0;1;0
+59056;16637;2;169;82.0;150;90;1;1;1;0;1;1
+59058;20500;1;155;58.0;110;70;2;1;0;0;1;0
+59059;15827;1;171;68.0;120;80;1;1;0;0;1;0
+59060;21134;1;165;65.0;120;80;3;3;0;0;0;1
+59061;21360;2;170;86.0;120;80;1;1;0;0;1;1
+59062;22592;1;157;69.0;120;80;1;1;0;0;1;1
+59063;17471;1;155;93.0;140;80;3;3;0;0;1;1
+59065;18729;1;163;59.0;110;80;1;1;0;0;1;0
+59067;17473;1;174;61.0;110;80;1;1;0;0;1;0
+59068;17510;1;165;88.0;120;80;1;1;0;0;1;0
+59069;17494;2;167;60.0;110;70;3;1;0;0;1;0
+59070;23283;1;154;51.0;120;80;2;1;0;0;1;0
+59072;21975;2;174;90.0;160;100;3;1;1;1;1;1
+59073;20311;2;168;72.0;130;80;1;3;1;0;1;1
+59074;22046;1;149;72.0;130;80;2;1;0;0;1;1
+59077;20979;1;155;95.0;160;90;2;1;0;0;1;1
+59078;16668;1;159;56.0;120;70;3;1;0;1;1;0
+59079;18858;2;176;80.0;100;80;1;1;0;0;0;0
+59080;14658;1;165;65.0;120;80;1;1;0;0;0;0
+59081;20469;2;162;78.0;120;80;1;1;1;0;0;0
+59082;15764;2;160;67.0;130;90;1;2;0;0;1;1
+59083;19627;2;174;74.0;160;110;1;1;0;0;1;1
+59084;18461;2;175;73.0;130;90;2;1;0;0;1;1
+59085;22737;1;156;56.0;150;90;1;1;0;0;1;0
+59087;19567;1;156;65.0;130;90;1;1;0;0;0;1
+59088;18887;1;159;56.0;100;70;1;1;0;0;1;0
+59089;23264;1;164;93.0;130;80;3;1;0;0;0;1
+59092;20892;1;157;38.0;120;80;1;1;0;0;1;1
+59093;18067;1;160;72.0;110;80;1;1;0;0;1;0
+59094;20369;1;157;79.0;110;70;3;3;0;0;0;1
+59095;21207;1;145;63.0;115;75;1;1;0;0;1;0
+59096;18405;2;175;76.0;120;80;1;1;1;0;1;0
+59097;14632;1;165;69.0;130;80;1;1;0;0;0;0
+59099;14613;1;170;72.0;130;80;1;1;0;0;1;1
+59100;18169;2;175;67.0;100;80;1;1;1;0;1;0
+59104;21192;1;160;69.0;120;80;1;1;0;0;1;1
+59105;22049;2;168;75.0;120;80;1;1;1;0;1;0
+59106;20495;1;158;105.0;120;80;2;1;0;0;1;0
+59108;14875;2;173;86.0;120;80;1;1;1;0;1;1
+59109;21012;2;175;95.0;130;90;1;1;0;0;1;1
+59111;19190;2;170;70.0;120;80;1;1;1;0;1;0
+59112;19014;1;163;77.0;120;90;1;1;0;0;1;1
+59113;19573;1;162;71.0;130;80;3;3;0;0;1;1
+59115;15194;1;164;54.0;110;70;1;1;0;0;1;0
+59116;21886;1;167;83.0;120;80;3;3;0;0;1;1
+59117;19130;1;169;70.0;160;90;1;1;0;0;1;0
+59118;16214;2;167;80.0;120;80;1;1;0;0;1;0
+59120;15469;2;175;75.0;120;80;1;1;0;0;0;0
+59121;20672;1;175;81.0;120;70;1;1;0;0;1;0
+59122;18248;2;168;81.0;140;90;1;1;1;1;1;1
+59123;23475;1;158;76.0;140;80;1;1;0;0;1;1
+59125;16221;1;168;80.0;120;80;1;1;0;0;1;0
+59128;14524;2;160;57.0;120;70;1;1;0;0;1;0
+59130;17700;2;175;71.0;130;90;1;1;0;0;1;1
+59131;18003;1;161;49.0;100;70;1;1;0;0;0;0
+59132;21327;2;170;87.0;115;84;1;1;1;1;1;0
+59133;21077;1;163;101.0;190;100;1;1;0;0;1;1
+59134;21231;1;152;70.0;160;90;1;1;0;0;1;1
+59135;21895;1;150;80.0;160;80;3;3;0;0;0;1
+59137;16234;1;145;40.0;120;100;1;1;0;0;1;1
+59140;21880;2;177;80.0;120;80;1;1;0;0;1;1
+59142;23332;1;162;74.0;120;80;1;1;0;0;1;1
+59144;23513;1;155;76.0;150;70;2;2;0;0;1;1
+59146;22561;1;151;80.0;130;80;3;1;0;0;1;0
+59147;20504;1;164;64.0;140;90;2;2;0;0;0;1
+59148;19322;1;164;70.0;110;80;1;1;0;0;1;0
+59149;22912;2;153;47.0;100;70;1;1;0;0;1;0
+59151;19011;2;180;104.0;120;80;2;2;1;0;1;0
+59152;18951;1;187;89.0;120;80;2;1;0;0;1;0
+59153;22853;1;152;54.0;120;80;1;1;0;0;1;1
+59155;23209;2;170;73.0;140;90;3;1;0;1;1;1
+59156;19604;1;158;80.0;160;100;1;1;0;0;0;1
+59157;18177;1;161;60.0;150;7099;1;1;0;0;1;1
+59158;19017;1;165;95.0;160;100;2;1;0;0;1;1
+59162;15421;2;174;73.0;120;80;3;1;0;0;1;0
+59163;19038;1;156;73.0;100;70;1;1;0;0;1;0
+59164;21132;2;170;76.0;130;90;3;3;0;0;1;1
+59165;20360;2;169;72.0;120;80;1;1;0;0;0;0
+59166;20418;2;168;85.5;130;90;2;1;0;0;0;0
+59167;21807;2;170;88.0;120;80;1;1;0;0;1;1
+59168;19212;1;163;79.0;110;80;1;1;0;0;1;1
+59169;19607;1;163;62.0;90;70;1;1;0;0;1;0
+59172;22037;1;153;64.0;100;60;1;1;0;0;1;0
+59174;21824;1;148;70.0;140;80;3;1;0;0;0;1
+59175;19531;2;182;88.0;180;90;1;1;1;0;1;1
+59177;16543;2;175;96.0;120;80;1;1;1;0;1;0
+59179;16083;2;168;62.0;120;80;1;1;1;0;1;0
+59181;20469;2;170;116.0;149;81;2;2;1;0;1;0
+59182;21060;1;154;65.0;120;80;2;1;0;0;1;0
+59184;14569;1;166;75.0;110;80;1;1;0;0;1;0
+59185;23270;1;151;90.0;130;80;1;1;0;0;1;1
+59186;23323;1;169;88.0;140;80;3;3;0;0;0;1
+59187;19787;2;173;76.0;120;80;1;1;1;0;1;0
+59189;21974;1;156;70.0;135;90;3;1;0;0;1;0
+59190;15314;1;170;71.0;120;80;1;1;0;0;1;0
+59191;18022;2;169;93.0;140;90;2;2;0;0;1;1
+59193;17644;1;167;60.0;120;80;1;1;0;0;1;1
+59194;19936;1;169;65.0;120;80;1;1;0;0;1;1
+59195;15981;1;158;56.0;110;70;1;1;0;0;0;0
+59196;17398;1;168;70.0;120;80;1;1;0;0;0;0
+59199;22113;2;163;62.0;130;80;1;1;0;0;1;1
+59200;15418;2;167;77.0;120;80;1;1;0;0;1;0
+59201;16763;1;166;63.0;140;80;2;2;0;0;1;1
+59202;20496;2;178;92.0;140;90;3;2;1;0;1;0
+59204;19796;1;170;65.0;120;80;1;1;0;0;1;0
+59205;18724;1;160;73.0;130;90;1;1;0;0;1;1
+59206;18458;2;160;68.0;140;70;1;1;0;0;1;1
+59207;22601;2;178;78.0;120;80;1;1;0;0;1;1
+59208;21927;1;154;54.0;100;70;1;1;0;0;0;0
+59209;19622;1;164;80.0;120;80;1;1;0;0;0;0
+59210;22065;1;156;98.0;140;90;1;1;0;0;1;1
+59211;22050;2;164;62.0;120;80;1;1;0;0;0;0
+59214;21298;2;184;110.0;160;100;1;1;0;0;1;1
+59216;23273;1;163;133.0;180;100;3;3;0;0;1;1
+59217;19697;2;170;105.0;120;80;1;1;1;0;1;0
+59218;22508;1;153;60.0;120;80;1;1;0;0;1;0
+59219;20391;1;169;74.0;120;80;1;1;0;0;1;0
+59220;15254;1;168;68.0;120;80;1;1;0;0;0;0
+59224;21783;1;160;65.0;110;70;1;1;0;0;1;0
+59225;18187;2;170;69.0;150;100;1;1;0;0;1;0
+59226;18964;2;165;78.0;120;80;1;1;0;0;1;1
+59227;19807;1;152;63.0;120;80;1;1;0;0;1;0
+59228;20468;1;185;82.0;110;70;1;1;0;0;1;1
+59229;19957;1;170;80.0;120;80;1;1;0;0;1;0
+59230;15357;2;168;73.0;120;80;1;1;0;0;1;0
+59232;19006;1;170;80.0;120;90;1;1;0;0;0;0
+59233;21375;1;145;64.0;120;80;2;1;0;0;1;1
+59234;18410;1;160;69.0;120;80;1;1;0;0;1;0
+59236;18260;1;154;69.0;124;76;1;1;0;0;1;0
+59237;18837;2;167;64.0;125;90;1;1;1;1;1;0
+59238;23262;2;170;90.0;150;90;2;1;0;1;1;1
+59240;18184;1;148;76.0;115;80;1;2;0;0;1;0
+59241;19509;2;164;72.0;140;80;1;1;1;1;1;1
+59243;18339;1;155;79.0;90;60;1;2;0;0;0;1
+59244;16826;2;170;100.0;130;90;1;1;0;0;0;0
+59245;22505;2;171;76.0;120;80;1;1;0;0;1;0
+59246;20391;2;172;70.0;120;80;1;1;0;0;1;1
+59247;20595;1;168;106.0;130;90;2;3;0;0;1;1
+59248;20955;2;170;95.0;170;100;1;1;1;1;0;1
+59249;19736;1;160;60.0;150;100;2;1;0;0;1;1
+59250;16579;2;173;77.0;120;80;1;1;0;0;1;0
+59251;19737;2;176;85.0;160;90;1;1;1;0;1;1
+59252;23430;2;165;69.0;130;80;1;1;0;0;0;0
+59254;15848;1;165;55.0;90;60;2;1;0;0;0;1
+59256;18121;1;156;68.0;90;60;1;1;0;0;1;0
+59257;18937;2;170;70.0;120;80;1;1;0;0;0;0
+59260;23283;2;175;64.0;140;80;2;1;1;0;1;1
+59261;23182;1;154;50.0;120;80;1;1;0;0;0;1
+59263;15024;1;163;77.0;140;90;1;1;0;0;1;1
+59264;20416;1;161;82.0;120;60;1;1;0;0;1;1
+59265;15797;1;154;61.0;120;80;1;1;0;0;1;0
+59266;23478;1;158;41.0;100;70;1;1;0;0;1;0
+59267;18290;2;188;108.0;140;90;2;1;0;0;1;0
+59269;14555;2;170;60.0;120;70;3;1;0;0;1;1
+59270;18039;1;163;71.0;110;70;1;1;0;0;1;0
+59271;19129;2;168;80.0;123;74;1;1;0;0;1;0
+59273;15412;1;165;62.0;120;80;1;1;0;0;0;0
+59274;16710;1;165;60.0;120;80;2;1;0;0;0;1
+59275;14703;1;158;58.0;110;80;1;1;0;0;0;0
+59276;22794;1;166;72.0;120;80;1;1;0;0;1;1
+59277;19987;2;169;113.0;120;80;1;1;0;0;0;0
+59278;22044;1;156;79.0;156;105;3;1;0;0;1;0
+59279;19583;1;160;76.0;90;60;1;1;0;0;1;0
+59281;23283;1;173;78.0;140;80;1;1;0;0;1;1
+59282;21162;1;162;66.0;160;90;1;1;0;0;1;1
+59283;22371;1;155;42.0;130;80;1;1;0;0;1;1
+59285;23405;1;172;72.0;160;90;2;1;0;0;1;1
+59286;21245;2;161;73.0;170;90;1;1;0;0;1;1
+59288;15360;2;174;65.0;110;70;1;1;0;0;1;0
+59290;23330;1;164;61.0;120;75;1;1;0;0;0;1
+59291;22799;1;157;69.0;130;90;3;3;0;0;1;1
+59292;19731;1;175;70.0;120;80;1;1;0;0;1;0
+59293;21162;2;171;73.0;140;90;1;1;0;0;1;1
+59294;21876;2;164;100.0;120;80;1;1;0;0;1;0
+59295;15237;2;166;78.0;120;80;1;1;0;0;1;1
+59296;21254;2;159;59.0;120;80;3;3;0;0;1;0
+59297;22035;1;168;70.0;140;80;1;1;0;0;1;1
+59299;20415;1;168;70.0;80;60;2;1;0;0;1;0
+59300;17516;2;174;62.0;100;70;1;1;1;0;0;1
+59301;20970;1;154;41.0;806;0;1;1;0;0;1;0
+59302;23360;1;158;60.0;110;90;2;1;0;0;1;0
+59303;15896;1;152;128.0;120;80;1;1;0;0;1;0
+59304;20409;1;170;70.0;120;80;1;1;0;0;1;0
+59305;18147;2;185;85.0;120;80;3;1;1;0;1;1
+59306;14727;1;143;42.0;100;60;1;1;0;0;1;0
+59307;18959;1;159;69.0;120;80;1;1;0;0;1;0
+59308;20238;1;159;49.0;120;79;1;1;0;0;1;0
+59309;16155;1;162;53.0;100;70;1;1;0;0;0;0
+59312;21655;1;162;108.0;140;90;2;1;0;0;1;1
+59313;18170;1;145;58.0;130;90;3;3;0;0;1;1
+59314;21046;1;179;55.0;120;80;1;1;0;0;0;1
+59316;14495;1;163;71.0;100;70;1;1;0;0;0;0
+59317;21250;1;156;60.0;110;70;2;1;0;1;1;0
+59318;18829;1;155;65.0;120;70;1;1;0;0;1;0
+59319;21294;2;170;80.0;140;80;1;1;1;0;1;1
+59320;23192;1;148;61.0;122;73;1;1;0;0;1;0
+59322;22535;1;152;80.0;150;90;1;1;0;0;1;1
+59324;17513;1;169;90.0;150;90;1;1;0;0;1;1
+59329;18901;1;156;61.0;110;80;1;1;0;0;1;1
+59330;20448;2;170;81.0;155;100;1;1;0;0;1;1
+59331;16762;1;162;70.0;120;80;1;1;0;0;1;0
+59332;23400;1;170;86.0;120;80;2;1;0;0;1;0
+59333;18079;1;166;77.0;120;80;3;3;0;0;1;1
+59335;14689;1;167;80.0;110;80;1;1;0;0;1;1
+59336;18257;2;169;65.0;120;80;1;1;1;0;1;0
+59337;20379;1;155;66.0;110;70;2;1;0;0;1;1
+59339;18202;1;159;91.0;180;100;2;1;0;0;0;1
+59340;19218;1;164;77.0;126;85;1;1;0;0;1;0
+59341;22044;2;173;95.0;120;80;1;1;0;0;1;0
+59342;17306;1;148;60.0;120;80;2;1;0;0;1;1
+59343;18118;2;167;65.0;110;70;1;1;0;1;1;1
+59345;20979;1;156;80.0;130;80;1;1;0;0;1;1
+59347;21727;1;158;65.0;110;80;2;1;0;0;1;1
+59349;17613;1;164;68.0;120;80;1;1;0;0;1;0
+59350;19493;1;170;100.0;120;80;1;1;0;0;1;0
+59351;18891;1;157;70.0;160;100;3;1;0;0;1;1
+59353;18270;1;152;75.0;120;80;1;1;0;0;1;0
+59355;20396;1;155;72.0;160;100;1;1;0;0;0;0
+59356;19802;1;160;78.0;130;90;1;2;0;0;1;1
+59357;21045;1;168;75.0;160;90;3;1;0;0;1;1
+59359;19532;1;161;83.0;160;100;1;1;0;0;1;1
+59361;19681;1;176;68.0;140;90;1;1;0;0;1;1
+59364;16574;1;160;98.0;120;80;1;2;0;0;1;0
+59365;17632;1;157;69.0;140;90;3;3;0;0;1;0
+59366;18159;1;160;93.0;140;70;1;1;0;0;1;0
+59367;18435;1;160;78.0;110;70;1;1;0;0;1;0
+59368;21337;1;165;64.0;130;80;3;3;0;0;1;1
+59369;22119;1;170;68.0;120;80;1;1;0;0;1;0
+59371;21795;1;162;71.0;120;80;1;1;0;0;1;0
+59374;21693;2;174;97.0;145;90;1;1;0;0;0;1
+59375;19579;1;168;85.0;120;80;1;1;0;0;1;0
+59376;20399;1;170;72.0;130;80;1;1;0;0;1;1
+59379;19654;2;165;102.0;140;100;3;1;0;0;0;0
+59380;20390;1;155;97.0;130;90;1;1;0;0;1;1
+59381;23308;1;156;68.0;130;80;3;3;0;1;1;1
+59382;19442;1;165;84.0;120;80;2;1;0;0;1;0
+59383;20522;1;165;70.0;120;80;1;1;0;0;1;1
+59384;17478;1;163;70.0;120;80;3;3;0;0;1;1
+59386;18854;2;159;65.0;155;105;1;1;1;0;1;1
+59387;21311;1;161;54.0;120;80;2;1;0;0;1;1
+59388;16135;1;170;66.0;110;70;1;1;0;0;1;0
+59389;21928;2;176;98.0;120;80;1;1;0;0;1;1
+59391;22830;1;162;65.0;155;91;1;1;0;0;1;1
+59392;21957;2;170;65.0;110;80;2;1;0;0;1;1
+59394;18219;2;169;72.0;140;90;1;3;1;0;1;1
+59395;22785;1;165;65.0;120;80;1;1;0;0;1;0
+59396;18973;1;164;105.0;130;80;1;1;0;0;0;0
+59397;21363;1;150;78.0;150;100;2;1;0;0;1;1
+59398;18295;1;143;76.0;180;1000;1;1;0;0;1;1
+59400;20590;2;171;83.0;150;90;1;1;0;0;0;1
+59401;15907;1;163;70.0;130;90;1;1;0;0;1;1
+59402;21173;1;168;60.0;160;90;1;1;0;0;1;1
+59403;23285;2;167;70.0;110;80;2;1;0;0;1;0
+59404;17519;2;176;75.0;140;80;1;3;0;0;1;1
+59405;22539;2;164;75.0;120;80;1;1;0;0;1;0
+59406;22375;1;158;71.0;130;80;2;1;0;0;1;1
+59407;19659;1;165;75.0;120;80;1;1;0;0;1;1
+59409;20492;1;161;60.0;120;80;1;1;0;0;1;0
+59410;22456;2;189;102.0;130;90;1;1;0;0;0;0
+59412;22748;2;180;94.0;140;90;2;1;0;0;0;1
+59413;18813;1;174;78.0;110;70;2;1;0;0;0;0
+59414;21660;1;165;66.0;120;80;1;1;0;0;1;0
+59416;18190;2;165;76.0;110;80;1;1;0;0;1;0
+59417;20513;1;151;88.0;130;80;1;1;0;0;1;0
+59418;16834;1;158;70.0;120;80;1;1;0;0;1;1
+59419;19053;1;178;82.0;110;80;1;1;0;0;1;0
+59422;19823;1;174;82.0;110;60;1;1;0;0;0;1
+59423;21810;1;170;70.0;120;80;1;1;0;0;1;0
+59424;21756;1;160;78.0;130;90;2;1;0;0;1;1
+59425;23138;1;168;115.0;120;80;3;1;0;0;1;1
+59426;21956;2;168;68.0;140;90;1;1;0;0;1;0
+59427;15574;1;168;64.0;120;80;1;1;0;0;1;1
+59428;20717;2;174;71.0;120;80;1;1;0;0;1;1
+59429;15347;1;163;127.0;110;80;1;1;0;0;0;0
+59431;16044;1;158;67.0;100;70;1;1;0;0;1;0
+59432;18845;1;153;90.0;150;100;1;1;0;0;0;1
+59433;16667;1;154;67.0;140;90;1;1;0;0;1;1
+59434;17543;1;152;62.0;140;90;1;1;0;0;1;1
+59435;18392;2;158;72.0;130;90;1;1;0;0;1;0
+59436;21662;1;155;55.0;90;60;1;1;0;0;1;0
+59437;18278;2;160;60.0;120;80;1;1;0;0;1;1
+59441;21896;1;165;72.0;120;80;3;3;0;0;0;1
+59442;14653;1;163;70.0;110;70;1;1;0;0;1;0
+59443;22421;1;165;65.0;140;90;1;2;0;0;1;0
+59445;21445;1;162;96.0;110;80;1;1;0;0;1;0
+59446;19639;1;159;71.0;120;70;1;1;0;0;1;0
+59447;15942;1;162;59.0;90;60;2;1;0;0;0;0
+59448;20342;2;164;89.0;120;80;1;1;0;0;0;1
+59450;23159;1;160;84.0;110;60;2;1;0;0;0;1
+59453;20506;1;164;116.0;150;1000;2;2;0;0;1;1
+59455;22516;1;162;88.0;120;80;1;1;0;0;1;0
+59457;21026;1;150;66.0;120;80;1;1;0;0;1;0
+59458;23138;2;164;60.0;130;80;2;2;0;0;1;1
+59459;19002;2;160;78.0;160;90;1;2;0;0;1;1
+59460;20511;1;161;75.0;130;80;3;1;0;0;1;1
+59462;20393;1;152;83.0;110;70;1;2;0;0;1;1
+59463;17432;1;160;105.0;120;80;1;2;0;0;1;1
+59464;16750;1;168;63.0;120;80;1;1;0;0;1;1
+59465;16325;1;155;80.0;120;80;1;1;0;0;1;0
+59466;18299;1;159;57.0;130;80;1;1;0;0;1;1
+59467;20888;1;178;98.0;110;90;1;1;0;0;0;0
+59468;18508;1;164;72.0;120;80;2;1;0;0;1;0
+59469;21379;2;166;66.0;120;80;3;1;0;0;1;0
+59470;22701;2;165;95.0;130;80;3;3;0;0;1;1
+59471;18290;1;165;65.0;120;80;1;1;0;0;1;0
+59473;17268;1;165;85.0;120;80;1;1;0;0;0;1
+59474;20698;1;160;85.0;120;80;1;1;0;0;1;1
+59475;16161;2;170;73.0;125;70;1;1;1;0;1;0
+59476;18339;2;174;69.0;130;70;1;1;0;0;1;0
+59477;23220;1;158;87.0;120;80;3;1;1;0;1;1
+59478;16543;2;158;48.0;110;73;2;1;0;0;0;0
+59479;18820;1;154;82.0;170;110;3;2;0;0;1;1
+59480;17485;1;172;85.0;120;90;1;1;0;0;1;0
+59481;19793;1;151;66.0;120;80;1;1;0;0;1;0
+59482;20519;1;165;72.0;100;80;1;2;0;0;1;0
+59483;19746;1;153;67.0;120;80;3;1;0;0;1;1
+59484;22589;1;150;50.0;130;80;3;3;0;0;1;1
+59486;21704;1;155;79.0;120;80;3;1;0;0;1;1
+59487;22661;1;155;68.0;120;79;1;2;0;0;0;1
+59488;22077;2;165;103.0;130;70;1;2;0;0;0;1
+59489;20996;1;169;96.0;140;80;3;3;0;0;1;1
+59490;19035;1;162;86.0;145;90;1;1;0;0;1;1
+59491;21434;2;170;73.0;120;80;1;2;0;0;1;0
+59493;15852;2;170;64.0;120;70;1;1;0;0;1;0
+59494;21893;2;175;89.0;130;80;3;3;0;0;1;1
+59495;20569;1;155;69.0;120;70;2;2;0;0;0;0
+59496;22504;1;158;60.0;120;80;1;1;0;0;0;1
+59498;23364;1;158;70.0;130;80;1;1;0;0;0;0
+59499;22463;1;162;79.0;160;70;2;2;0;0;1;1
+59500;21750;2;169;72.0;120;80;1;1;0;0;1;0
+59501;22623;1;170;91.0;140;80;3;1;0;0;1;1
+59502;21094;1;155;65.0;180;110;3;1;0;0;0;1
+59504;22475;2;178;100.0;135;90;1;1;0;0;1;1
+59506;14481;1;157;107.0;130;90;2;1;0;0;1;1
+59507;21742;1;147;78.0;110;70;2;1;0;0;1;0
+59510;15141;2;179;78.0;140;100;1;1;1;0;1;1
+59511;16013;2;179;81.0;150;90;2;2;0;0;1;0
+59513;15406;1;166;121.8;120;80;1;1;0;0;1;0
+59514;17522;2;181;117.0;140;90;1;1;0;0;1;1
+59515;17964;2;182;97.0;110;70;1;2;1;0;1;1
+59516;19581;1;147;82.0;110;60;1;1;0;0;0;0
+59518;18117;1;158;83.0;140;80;1;3;0;0;1;0
+59519;20305;1;158;56.0;150;100;3;1;0;0;1;1
+59521;18869;2;174;80.0;160;100;2;1;0;0;1;1
+59522;16935;1;160;65.0;120;80;1;1;0;0;0;1
+59523;22503;1;155;62.0;100;70;1;1;0;0;0;1
+59524;16737;1;154;64.0;120;80;1;1;0;0;1;1
+59525;16584;1;174;67.0;110;60;1;1;1;0;1;0
+59526;14337;1;161;76.0;130;80;1;2;0;0;1;1
+59527;22509;2;180;105.0;140;90;2;2;0;0;1;1
+59528;15205;1;152;66.0;120;80;1;1;0;0;1;0
+59529;22070;2;170;89.0;130;80;1;1;0;0;1;1
+59531;18537;2;175;70.0;120;80;1;2;0;0;0;1
+59532;14493;1;160;63.0;110;80;1;1;0;0;1;0
+59533;21317;2;158;58.0;140;90;3;3;1;0;1;1
+59535;22882;2;167;79.0;140;90;1;1;0;0;1;1
+59536;21151;2;160;70.0;120;80;1;1;0;0;1;1
+59537;21039;1;156;68.0;120;80;2;1;0;0;0;1
+59540;16138;2;180;79.0;120;80;1;1;0;0;1;0
+59541;20282;1;161;92.0;120;80;1;1;0;0;1;1
+59542;23446;1;157;60.0;110;70;1;1;0;0;1;1
+59544;17396;2;170;88.0;150;90;1;1;0;0;1;1
+59546;18903;1;160;60.0;120;70;1;1;0;0;1;0
+59549;16747;1;175;78.0;120;80;1;1;0;0;1;1
+59550;20992;1;160;87.0;120;70;1;1;0;0;1;1
+59551;19548;1;166;90.0;130;90;1;1;0;0;1;0
+59553;18148;1;166;80.0;140;90;2;2;0;0;1;1
+59554;20168;1;154;75.0;135;90;1;1;0;0;1;1
+59555;21024;1;155;69.0;140;80;1;3;0;0;1;1
+59556;18861;1;168;80.0;105;75;2;1;0;0;1;0
+59557;19187;1;169;72.0;120;80;1;1;0;0;1;1
+59558;19019;1;163;83.0;120;80;1;1;0;0;1;0
+59559;15288;1;162;72.0;110;80;1;2;0;0;1;0
+59560;18288;1;166;89.0;160;100;2;2;0;0;1;1
+59561;23083;1;160;87.0;130;80;3;3;0;0;1;1
+59562;20327;1;175;55.0;140;80;2;1;0;0;1;1
+59563;22707;1;157;70.0;130;80;3;3;0;0;1;1
+59564;16815;2;167;75.0;130;80;2;1;1;0;0;0
+59565;22796;2;160;67.0;120;80;1;1;1;1;1;1
+59566;17553;1;170;98.0;150;100;2;1;0;0;0;1
+59567;20471;2;164;65.0;120;90;1;1;0;0;1;0
+59569;20536;2;170;80.0;120;80;1;1;0;0;1;0
+59570;21002;1;162;85.0;140;80;1;1;0;0;1;0
+59571;20347;2;175;78.0;120;80;1;2;0;0;0;1
+59572;18211;1;153;69.0;140;90;1;1;0;0;1;1
+59573;20443;2;169;75.0;120;80;1;1;0;0;1;0
+59574;23240;1;168;74.0;120;80;1;1;0;0;1;1
+59575;18261;2;176;88.0;130;90;1;1;0;0;1;1
+59576;21301;1;167;68.0;140;90;1;1;0;0;1;1
+59577;20689;1;159;78.0;120;80;1;1;0;0;1;0
+59579;22026;2;180;85.0;120;80;1;1;0;0;0;1
+59580;18068;2;173;71.0;120;80;1;1;1;1;1;0
+59583;15169;1;166;73.0;110;70;1;1;0;0;1;0
+59584;19069;1;158;54.0;90;60;2;1;0;0;1;0
+59585;17509;1;159;62.0;120;80;1;1;0;0;1;0
+59586;15258;1;175;83.0;100;60;1;1;0;0;1;0
+59588;14693;1;170;90.0;115;90;1;1;0;0;1;0
+59589;20350;2;174;85.0;120;80;1;1;1;0;1;1
+59590;22783;1;155;62.0;120;80;1;1;0;0;1;1
+59593;21172;2;176;83.0;170;100;2;1;0;1;0;1
+59594;22476;1;156;58.0;140;80;1;1;0;0;1;1
+59595;14568;1;161;46.0;80;50;1;1;0;0;0;0
+59597;16910;1;161;94.0;110;70;1;1;0;0;1;0
+59598;18918;2;180;111.0;160;90;1;1;0;0;1;1
+59600;17393;1;173;75.0;110;70;1;1;0;0;1;0
+59601;19557;2;168;79.0;130;80;1;1;0;0;1;1
+59602;18129;1;157;67.0;140;90;1;1;0;0;1;1
+59603;16003;1;165;95.0;130;90;1;1;0;0;1;0
+59604;20139;1;164;116.0;130;80;3;3;0;0;1;0
+59605;18910;1;164;81.0;140;90;2;1;0;0;1;1
+59606;20586;2;170;65.0;100;75;2;1;0;0;1;0
+59608;19004;2;171;72.0;130;90;1;1;1;0;1;0
+59609;22042;1;165;65.0;120;80;3;3;0;0;1;0
+59610;15349;2;180;105.0;120;80;1;1;0;0;1;1
+59611;17591;1;159;75.0;110;60;1;1;0;0;1;1
+59612;14479;2;180;80.0;120;80;1;1;0;0;1;0
+59613;23499;2;154;67.0;96;65;1;1;0;0;1;0
+59614;18819;1;159;50.0;100;70;2;1;0;0;1;0
+59616;16648;1;156;76.0;130;80;1;1;0;0;1;1
+59618;17523;2;174;88.0;150;90;2;2;0;0;1;1
+59622;19900;1;158;60.0;140;90;1;1;0;0;1;1
+59623;21203;1;163;76.0;120;80;2;1;0;1;1;0
+59624;21613;2;169;80.0;110;80;1;2;0;0;1;0
+59625;20485;2;176;70.0;120;80;1;1;0;0;0;0
+59627;23192;1;160;67.0;120;80;1;1;0;0;1;1
+59631;19591;1;164;77.0;120;80;3;1;0;1;1;1
+59632;17455;2;169;80.0;120;80;1;1;0;0;1;0
+59633;16649;1;170;74.0;110;70;1;1;0;0;1;0
+59634;21038;2;165;72.0;120;80;1;1;0;0;0;1
+59635;18165;1;164;70.0;110;70;1;1;0;0;1;0
+59637;16587;2;181;82.0;120;80;1;1;0;0;1;0
+59639;21333;2;155;68.0;120;80;1;1;0;0;1;0
+59641;17413;1;157;73.0;110;70;1;1;0;0;1;0
+59643;21359;1;168;69.0;120;80;1;1;0;0;0;0
+59645;16052;2;175;75.0;120;80;1;1;0;0;1;0
+59649;19597;1;150;82.0;150;90;3;2;0;0;1;0
+59650;15523;1;159;60.0;110;70;1;1;0;0;1;0
+59652;15560;1;165;68.0;120;80;1;1;0;0;1;0
+59653;22510;1;169;69.0;120;80;1;1;0;0;1;0
+59655;20211;1;156;59.0;125;80;1;1;0;1;1;1
+59656;15554;1;172;89.0;117;80;1;1;0;1;1;0
+59659;18816;2;182;120.0;150;90;2;2;0;0;1;1
+59660;16354;2;171;75.0;120;80;1;2;0;0;1;1
+59661;23317;1;149;58.0;190;120;1;1;0;0;1;0
+59662;21767;2;162;59.0;140;80;1;1;1;0;1;0
+59663;20366;1;169;103.0;120;80;3;1;0;0;1;1
+59664;22500;1;157;65.0;140;80;3;1;0;0;1;1
+59665;18383;1;164;63.0;120;80;1;1;0;0;1;0
+59666;21146;1;155;88.0;120;90;2;2;0;0;1;0
+59667;21068;2;172;60.0;110;60;2;1;0;1;0;0
+59668;18354;1;158;88.0;130;80;1;1;0;0;1;0
+59670;15266;1;155;66.0;150;110;3;1;1;0;1;1
+59671;21124;2;171;105.0;170;100;3;1;0;1;1;0
+59672;21032;1;166;66.0;110;80;1;1;0;0;1;0
+59674;21317;1;155;92.0;130;80;3;1;0;0;0;1
+59675;22459;1;157;54.0;140;100;2;1;0;0;1;1
+59676;17442;2;181;105.0;135;90;1;1;0;0;1;0
+59677;15296;1;143;64.0;110;70;1;1;0;0;1;0
+59678;18167;2;185;78.0;100;80;1;1;0;0;1;0
+59679;20630;1;160;53.0;120;80;1;1;0;0;0;0
+59680;23151;1;165;65.0;120;80;1;1;0;0;1;1
+59683;14583;1;160;66.0;140;90;1;1;1;0;1;1
+59684;23401;1;154;53.0;120;79;3;1;0;0;0;0
+59685;16996;1;165;65.0;120;80;1;1;0;0;1;0
+59686;22670;1;169;65.0;120;80;1;1;0;0;1;1
+59687;16937;2;170;70.0;120;70;1;3;0;0;0;0
+59688;22582;2;170;90.0;120;80;1;1;0;0;0;0
+59689;23225;1;148;70.0;160;90;1;1;0;0;1;0
+59690;19444;1;168;86.0;130;70;1;1;0;0;1;0
+59691;19749;1;152;55.0;120;80;1;1;0;0;1;0
+59692;17490;1;162;56.0;150;100;2;1;0;0;1;1
+59693;19707;1;156;80.0;140;90;2;1;0;0;0;1
+59694;21251;1;159;68.0;110;80;2;2;0;0;1;0
+59697;16927;1;165;59.0;120;80;1;1;0;0;1;0
+59699;23259;1;157;61.0;130;80;1;1;0;0;1;1
+59701;21319;2;180;80.0;120;80;1;1;0;0;0;1
+59702;20321;2;162;75.0;130;80;2;1;1;0;1;1
+59704;20532;1;158;74.0;110;70;1;1;0;0;1;1
+59708;20310;1;164;80.0;140;90;1;1;0;0;1;1
+59709;17285;1;156;52.0;90;70;1;1;0;0;1;0
+59711;16681;1;167;82.0;120;80;1;1;0;0;1;0
+59712;23319;1;109;68.0;120;80;1;1;0;0;1;1
+59714;20484;1;165;57.0;150;95;1;1;0;0;1;1
+59716;19887;1;170;87.0;160;90;1;1;0;0;1;0
+59717;19893;1;151;60.0;110;80;1;1;0;0;1;0
+59718;18210;1;165;69.0;150;80;2;1;0;0;0;1
+59720;18338;2;182;67.0;120;80;1;1;0;1;0;0
+59723;23062;2;165;66.0;100;70;3;1;1;0;1;1
+59724;16763;1;150;63.0;100;70;2;1;0;0;1;1
+59725;22596;2;168;82.0;150;1000;1;3;0;0;1;0
+59727;21825;1;162;74.0;130;80;1;3;0;0;1;0
+59728;17298;1;156;81.0;155;110;3;1;0;0;1;1
+59729;21697;1;167;68.0;120;80;1;1;0;0;0;0
+59730;20477;2;170;70.0;120;90;1;1;0;0;1;0
+59731;17411;1;151;77.0;150;80;1;1;0;0;1;1
+59732;15784;1;165;64.0;120;80;1;1;0;0;1;0
+59733;19801;2;173;130.0;150;110;1;2;0;0;0;0
+59735;21313;2;165;102.0;130;90;3;2;0;1;0;1
+59736;15742;1;162;62.0;110;60;1;1;0;0;1;0
+59737;21861;1;164;72.0;120;60;3;1;0;0;1;1
+59738;20917;1;162;78.0;120;80;2;1;0;0;1;0
+59739;23387;1;154;55.0;140;1000;1;1;0;0;0;1
+59742;21731;2;169;67.0;140;70;2;1;0;0;1;1
+59744;22393;2;175;74.0;140;70;1;1;0;0;1;1
+59745;18215;1;170;65.0;120;80;1;1;0;0;1;0
+59746;15175;1;173;79.0;110;80;1;1;0;0;1;0
+59748;15939;1;169;75.0;130;90;1;1;0;0;1;1
+59750;18076;1;165;93.0;150;1000;3;3;0;0;1;1
+59751;17638;1;165;70.0;120;80;1;1;0;0;0;0
+59753;21923;2;160;80.0;100;80;2;1;0;0;1;0
+59754;18042;1;166;79.0;200;120;2;1;0;0;1;1
+59755;15140;1;166;105.0;130;80;1;1;0;0;1;0
+59756;23409;1;150;46.0;140;90;1;1;0;0;1;0
+59758;21144;1;158;54.0;120;80;1;1;0;0;1;1
+59759;21373;1;156;70.0;90;60;1;1;0;0;1;0
+59761;19177;1;151;56.0;130;80;1;1;0;0;1;0
+59762;20388;1;162;60.0;120;79;3;3;0;0;1;1
+59766;23168;1;148;84.0;120;80;1;1;1;0;0;1
+59768;20464;1;164;164.0;140;90;3;3;0;0;1;1
+59769;16706;2;168;59.0;110;70;1;1;0;0;1;0
+59770;18122;1;168;93.0;110;70;1;1;0;0;1;0
+59771;14619;2;167;105.0;150;110;1;1;0;0;1;0
+59775;18902;2;165;66.0;145;90;1;1;0;0;1;1
+59776;22703;2;168;62.0;120;80;1;1;0;0;1;1
+59780;21825;1;158;109.0;140;90;3;1;0;0;1;1
+59782;19510;2;165;75.0;120;80;1;1;0;0;0;1
+59783;21180;1;180;80.0;110;80;1;1;0;0;1;0
+59784;20492;1;158;72.0;130;80;1;1;0;0;1;1
+59785;15388;1;159;55.0;120;80;1;1;0;0;1;0
+59786;18342;1;161;100.0;150;90;1;1;0;0;1;1
+59787;19717;1;154;82.0;130;90;1;1;0;0;1;0
+59788;21009;2;162;104.0;130;90;1;1;0;0;1;1
+59790;20621;1;172;68.0;120;80;1;1;0;0;1;0
+59791;14504;1;161;75.0;140;80;1;1;0;0;1;1
+59792;19640;1;173;56.0;160;80;1;1;0;0;1;0
+59793;21164;1;159;82.0;120;80;3;3;0;0;1;1
+59794;21164;1;159;68.0;107;78;2;2;0;0;1;0
+59795;23225;2;178;102.0;130;90;3;3;0;0;1;0
+59796;22711;1;169;85.0;150;90;2;3;0;1;1;0
+59797;18160;2;177;80.0;120;80;1;1;0;0;1;0
+59801;20625;1;172;68.0;120;60;1;1;0;1;1;1
+59803;20916;2;168;64.0;140;90;2;1;1;0;1;1
+59805;18838;1;167;78.0;130;80;1;1;0;0;1;1
+59806;18965;1;160;71.0;110;70;1;1;0;0;1;0
+59807;23299;1;155;110.0;140;90;3;2;0;0;0;1
+59808;19096;1;169;85.0;140;90;3;1;0;0;0;1
+59809;18156;1;155;73.0;120;80;1;1;0;0;1;0
+59810;16076;1;164;70.0;130;90;1;1;0;0;1;0
+59811;16841;1;156;52.0;120;80;1;1;0;0;1;0
+59812;22070;2;170;78.0;110;70;1;1;0;0;0;1
+59815;16055;1;159;69.0;110;80;1;1;0;0;0;1
+59818;23366;2;178;80.0;140;80;1;1;0;0;1;1
+59819;22482;2;172;81.0;120;80;1;1;0;0;1;1
+59821;17435;1;163;82.0;100;70;2;2;0;0;0;1
+59822;21035;1;162;89.0;110;80;1;1;0;0;1;0
+59824;21065;2;167;63.0;110;70;2;1;0;0;1;0
+59825;21998;1;146;64.0;141;72;1;1;0;0;0;1
+59826;17401;2;163;80.0;160;100;2;1;0;0;1;1
+59827;18061;1;154;77.0;150;90;3;3;0;0;1;1
+59828;22104;2;175;90.0;140;80;1;1;0;0;1;1
+59830;20505;1;160;94.0;140;80;3;1;0;0;1;1
+59831;21943;2;163;56.0;140;80;1;1;1;0;0;1
+59832;22390;1;160;97.0;120;90;3;1;0;0;0;1
+59834;20941;2;174;78.0;130;90;1;1;0;0;1;1
+59835;18256;1;175;57.0;120;80;2;1;0;0;1;0
+59836;23117;1;159;84.0;100;70;1;1;0;0;1;1
+59837;16836;1;158;70.0;140;90;2;2;0;0;1;0
+59838;16607;1;160;58.0;120;80;1;2;0;0;1;0
+59839;19051;1;160;63.0;140;90;1;1;0;0;0;1
+59840;17544;1;172;80.0;120;80;1;2;0;0;1;1
+59841;18354;2;175;72.0;110;70;1;1;0;0;1;0
+59842;20925;2;174;81.0;140;90;3;3;0;0;0;1
+59844;20221;1;185;78.0;120;80;1;1;0;0;1;1
+59845;16728;1;172;74.0;120;80;3;1;0;0;1;1
+59846;20645;1;157;67.0;130;80;1;1;0;0;0;1
+59847;19187;2;200;100.0;170;1100;2;2;0;0;1;1
+59849;23417;2;167;71.0;120;80;1;1;0;0;1;0
+59850;18371;1;159;78.0;110;70;2;1;0;0;1;0
+59852;19695;1;161;77.0;110;70;1;1;0;0;1;0
+59853;21334;1;143;30.0;103;61;2;1;0;0;1;0
+59854;22702;1;168;100.0;140;90;3;2;0;1;1;1
+59856;23339;1;163;73.0;110;80;3;3;0;0;1;1
+59857;21237;1;165;65.0;120;70;2;1;0;0;1;1
+59858;22455;2;158;85.0;140;100;1;2;0;0;1;1
+59860;21968;2;175;90.0;120;79;1;1;0;0;1;1
+59861;14701;1;159;56.0;110;80;1;1;0;0;1;0
+59862;16096;1;160;94.0;140;90;3;2;0;0;1;0
+59863;18715;1;159;95.0;110;70;1;1;0;0;1;0
+59865;19029;1;165;65.0;120;79;1;1;0;0;0;1
+59866;19239;2;186;80.0;120;80;1;1;0;0;1;0
+59868;16914;1;168;65.0;120;80;1;1;0;0;1;0
+59870;18949;1;168;80.0;120;90;2;1;0;0;1;1
+59871;17391;1;152;65.0;110;70;1;1;0;0;1;0
+59873;19009;2;169;80.0;120;80;1;1;0;0;0;1
+59874;20491;1;169;75.0;120;80;1;1;0;0;1;0
+59875;15377;1;169;58.0;110;70;1;1;0;1;1;0
+59879;16286;1;168;70.0;120;80;1;1;0;0;1;0
+59880;14579;1;168;60.0;140;80;1;1;0;0;1;1
+59882;19189;2;168;82.0;120;80;1;1;0;0;1;1
+59883;19650;2;177;93.0;110;70;1;1;0;0;1;0
+59885;17291;1;166;53.0;120;70;1;1;0;0;1;0
+59886;19664;2;160;59.0;120;70;1;1;1;1;0;0
+59887;23184;1;151;60.0;130;80;1;1;0;0;1;1
+59888;16646;1;165;70.0;140;90;2;1;0;0;1;1
+59889;19085;1;160;85.0;120;80;1;1;0;0;1;1
+59890;19674;1;159;72.0;110;80;2;1;0;0;1;0
+59892;23276;2;171;90.0;120;80;1;1;1;0;1;1
+59893;19133;2;176;74.0;11;70;1;1;0;0;1;0
+59894;21764;2;172;77.0;115;71;1;1;0;0;1;0
+59895;20385;2;181;91.0;140;90;1;1;0;0;1;1
+59897;15854;2;163;58.0;90;70;1;1;0;0;1;0
+59898;20349;1;157;60.0;110;70;1;1;0;0;1;0
+59902;20363;2;181;85.0;140;90;1;1;0;0;1;1
+59903;19721;2;178;78.0;120;80;3;3;0;0;1;0
+59905;22118;1;165;62.0;120;80;1;1;0;0;1;1
+59906;18852;1;146;66.0;110;90;1;1;0;0;1;1
+59907;19717;1;160;119.0;140;80;1;1;0;0;0;1
+59908;20431;2;160;130.0;200;100;1;1;1;1;1;1
+59909;15394;2;170;74.0;150;100;1;1;0;0;1;1
+59912;19622;2;167;61.0;100;60;1;1;0;0;0;1
+59914;23497;2;170;59.0;140;90;1;1;0;0;0;0
+59916;22349;1;165;68.0;120;80;1;1;0;0;0;1
+59917;21331;1;157;64.0;110;70;1;1;0;0;1;0
+59918;15635;2;165;60.0;120;80;1;1;0;0;0;0
+59920;20417;1;168;62.0;120;80;1;1;0;0;1;0
+59921;19432;2;169;75.0;120;80;1;1;1;0;0;0
+59923;21192;2;159;50.0;120;80;1;1;0;0;1;0
+59924;21215;1;168;103.0;120;80;1;1;0;0;1;1
+59925;19762;2;171;114.0;170;70;3;1;0;0;1;1
+59926;16514;2;167;70.0;121;74;1;1;1;1;1;0
+59927;22364;2;172;76.0;160;100;3;1;0;0;1;1
+59928;20291;1;153;66.0;140;80;1;2;0;0;1;1
+59929;23359;1;169;68.0;120;80;1;1;0;0;1;1
+59930;19078;2;170;95.0;120;90;1;3;0;0;0;0
+59931;15235;2;168;72.0;110;80;2;1;0;0;1;0
+59932;22956;2;185;90.0;120;80;1;1;1;0;1;0
+59933;21117;2;167;103.0;170;120;2;1;0;0;0;0
+59934;18238;1;167;83.0;120;80;1;1;0;0;1;0
+59935;21954;1;163;95.0;160;100;1;1;0;0;1;1
+59936;15373;2;157;55.0;130;80;1;1;0;0;0;0
+59937;22594;1;172;92.0;150;80;1;1;0;0;1;1
+59938;18360;1;158;88.0;140;1000;1;1;0;0;1;0
+59941;21632;2;170;74.0;120;80;1;1;0;0;1;0
+59942;20359;1;170;75.0;120;80;1;1;0;0;1;0
+59943;21467;1;171;109.0;140;80;1;1;0;0;1;1
+59944;18294;2;168;76.0;120;80;3;3;0;0;1;0
+59945;19649;1;158;56.0;120;80;1;1;0;0;0;1
+59946;18747;2;179;90.0;120;80;1;1;0;0;0;0
+59948;22857;1;158;75.0;110;70;1;1;0;0;1;0
+59949;17619;1;168;69.0;110;70;1;1;0;0;1;0
+59950;18808;2;170;66.0;110;70;1;1;0;0;0;0
+59952;17459;1;165;91.0;120;75;1;1;0;0;1;1
+59953;18890;1;164;75.0;120;80;1;1;0;0;0;0
+59954;23536;2;175;86.0;160;100;2;1;1;0;1;1
+59955;18101;1;162;63.0;110;70;1;1;0;0;1;0
+59956;18864;2;160;80.0;160;100;2;1;0;0;0;1
+59959;18089;1;158;107.0;120;80;1;1;0;0;0;1
+59961;20338;1;165;72.0;118;75;1;1;0;0;1;0
+59962;15382;2;164;67.0;120;70;1;1;1;0;1;0
+59963;22155;1;151;77.0;130;90;1;1;0;0;1;1
+59964;17582;1;153;71.0;120;80;1;1;0;0;0;0
+59965;20397;2;166;65.0;120;80;1;1;0;0;1;0
+59966;21390;2;177;73.0;120;70;1;1;0;1;1;0
+59967;21037;1;155;76.0;155;91;3;1;0;0;1;1
+59969;18340;2;172;57.0;130;90;1;1;0;0;1;0
+59970;20458;1;158;96.0;120;80;1;1;0;0;1;0
+59971;15227;2;173;90.0;140;90;3;1;0;0;0;1
+59973;23291;1;158;60.0;120;80;1;1;0;0;1;1
+59975;16102;1;158;60.0;120;80;1;1;0;0;1;0
+59979;17415;2;177;62.0;120;80;1;1;1;0;1;0
+59981;16143;1;158;55.0;110;70;1;1;0;0;1;0
+59982;20979;1;145;73.0;120;80;1;1;0;0;1;0
+59984;21899;1;150;85.0;120;80;1;1;0;0;0;1
+59987;21216;1;158;110.0;130;90;3;1;0;0;1;1
+59988;18897;2;163;61.0;130;80;1;1;0;0;0;0
+59989;22551;2;176;97.0;127;80;1;1;0;0;1;0
+59991;22391;1;156;90.0;130;90;3;2;0;0;1;1
+59992;20160;1;156;67.0;120;80;1;1;0;0;1;1
+59994;18343;1;158;66.0;120;80;1;1;0;0;1;0
+59997;21593;1;145;47.0;130;100;1;1;0;0;1;1
+59998;19221;1;164;73.0;120;80;1;1;0;0;1;0
+59999;18285;2;169;89.0;188;105;3;2;0;0;1;1
+60001;21034;1;158;64.0;120;90;1;1;0;0;1;0
+60002;15912;1;156;81.0;80;110;2;2;0;0;1;0
+60003;20386;2;170;70.0;120;80;1;1;1;1;1;0
+60004;20254;1;165;65.0;120;80;1;1;0;0;0;1
+60006;19084;1;165;75.0;140;90;1;1;0;0;1;1
+60008;15486;2;182;106.0;150;90;1;1;1;0;1;1
+60010;22785;2;160;60.0;180;100;1;1;0;0;0;1
+60011;19097;1;165;65.0;130;90;1;1;0;0;0;0
+60012;19500;1;160;79.0;120;80;1;1;0;0;1;1
+60013;23568;1;166;85.0;160;90;1;1;0;0;1;1
+60014;21143;2;162;68.0;140;90;1;1;0;0;1;1
+60015;21189;1;160;70.0;110;69;1;1;0;0;1;0
+60016;16100;2;180;135.0;130;80;1;1;1;0;1;0
+60019;17698;1;148;69.0;110;60;1;1;0;0;1;1
+60021;21779;2;172;83.0;140;100;1;1;0;0;1;0
+60023;21910;1;155;78.0;130;90;1;1;0;0;1;1
+60025;20174;1;158;86.0;150;100;1;2;0;0;1;1
+60026;20531;2;162;70.0;120;80;1;3;0;0;0;0
+60027;18983;2;175;98.0;140;90;2;1;0;0;1;1
+60029;21964;1;151;52.0;110;80;1;3;0;0;1;0
+60030;16690;1;171;82.0;150;90;1;1;0;0;1;1
+60031;23421;1;154;73.0;130;70;1;1;0;0;1;0
+60032;20252;2;169;70.0;125;80;1;1;0;0;1;0
+60033;21908;1;156;55.0;127;80;2;1;0;1;1;0
+60034;21171;2;163;59.0;140;90;1;1;0;0;0;0
+60037;16988;1;160;62.0;130;90;1;2;0;0;1;1
+60038;16080;1;175;73.0;120;80;1;1;0;0;1;0
+60040;21183;1;170;86.0;140;90;1;1;0;0;0;1
+60042;15367;2;178;82.0;150;90;1;1;1;1;0;0
+60043;21207;1;164;70.0;130;70;3;1;0;0;1;1
+60044;20261;2;172;75.0;130;80;1;2;1;0;1;1
+60045;21184;2;166;72.0;130;80;1;1;1;0;1;1
+60047;18274;1;175;85.0;120;90;1;1;0;0;1;0
+60048;21772;1;153;56.0;110;70;1;1;0;0;1;1
+60049;23412;2;162;61.0;130;80;1;1;0;0;1;0
+60050;20519;2;168;67.0;120;70;1;1;0;0;1;1
+60051;16559;1;160;64.0;130;80;1;1;0;0;1;1
+60052;20339;1;155;59.0;120;100;3;1;0;0;1;1
+60054;22600;1;151;58.0;140;90;2;1;0;0;1;1
+60056;20013;1;172;80.0;110;70;1;1;0;0;1;0
+60058;21105;2;171;96.0;110;70;1;1;0;0;1;1
+60059;20682;1;171;69.0;120;80;1;1;0;0;1;0
+60060;20422;1;157;60.0;145;90;1;1;0;0;1;1
+60062;20425;2;162;64.0;160;90;1;1;0;0;0;1
+60063;16750;1;160;60.0;110;70;1;1;0;0;1;0
+60064;21804;1;164;74.0;120;80;1;2;0;0;1;0
+60065;18828;2;163;93.0;140;90;1;1;0;0;1;1
+60067;18321;2;175;76.0;120;80;1;1;0;0;1;0
+60068;20279;1;161;76.0;150;90;1;1;0;0;1;1
+60070;21120;1;153;61.0;120;80;1;3;0;0;1;0
+60071;23123;2;174;72.0;150;90;1;1;0;0;1;1
+60072;14613;1;157;66.0;120;83;1;1;0;0;0;0
+60074;19726;2;165;50.0;120;80;1;1;0;0;0;1
+60075;17571;1;155;68.0;90;60;1;1;0;0;1;0
+60076;19733;1;158;69.0;120;80;2;1;0;0;1;1
+60078;22570;1;145;53.0;160;80;1;1;0;0;1;1
+60080;21212;1;167;65.0;120;80;1;1;0;0;1;0
+60081;19542;2;165;68.0;150;90;1;1;0;0;1;1
+60082;21095;1;168;62.0;120;80;1;1;0;0;1;1
+60083;19942;2;174;95.0;120;80;1;1;0;0;1;1
+60084;22665;1;160;61.0;120;80;1;1;0;0;1;1
+60085;20346;2;168;92.0;110;70;2;1;1;1;1;0
+60086;19532;1;164;87.0;170;140;2;1;0;0;1;1
+60088;21352;2;179;96.0;130;80;1;1;0;0;1;0
+60089;18961;2;172;52.0;120;80;1;1;0;0;1;0
+60090;21987;1;156;95.0;120;70;3;3;0;0;1;0
+60091;22069;1;158;56.0;140;90;1;1;0;0;1;1
+60092;16202;2;167;65.0;120;80;1;1;0;0;0;1
+60093;18000;1;162;74.0;120;80;1;1;0;0;1;0
+60094;21197;1;168;88.0;140;90;3;1;0;0;0;1
+60095;20231;1;169;75.0;150;100;1;1;0;0;1;0
+60097;21822;1;167;69.0;120;80;1;1;0;0;1;0
+60100;18989;1;162;95.0;120;80;2;1;0;0;0;1
+60101;19684;1;157;71.0;140;90;2;1;0;0;1;1
+60102;20279;1;156;55.0;120;80;3;3;0;0;1;1
+60103;18331;2;169;69.0;120;80;1;1;0;0;1;0
+60104;15951;1;162;82.0;120;80;1;1;0;0;1;0
+60105;21978;1;157;60.0;120;80;1;1;0;0;1;1
+60106;22752;2;165;85.0;210;1100;1;1;0;0;0;1
+60107;21917;1;187;68.0;130;80;1;1;0;0;1;1
+60108;20608;2;176;96.0;120;80;1;1;1;0;1;0
+60109;18256;1;172;97.0;110;80;1;1;0;0;1;0
+60110;20409;1;164;55.0;100;80;1;1;0;0;1;1
+60113;16250;1;160;61.0;110;70;1;3;0;0;1;0
+60115;19073;1;167;68.0;180;90;1;3;0;0;1;1
+60117;18924;1;170;74.0;130;80;1;1;0;0;0;0
+60118;22640;2;171;105.0;140;1000;3;1;1;0;1;1
+60123;22572;1;160;74.0;150;99;2;1;0;0;0;1
+60126;14505;2;168;61.0;115;75;2;2;0;0;1;0
+60127;19566;2;167;70.0;130;90;1;1;1;1;1;0
+60128;19007;1;165;92.0;150;100;1;1;0;0;1;1
+60129;21190;1;154;88.0;130;90;1;1;0;1;1;0
+60130;21135;1;168;61.0;120;80;1;1;0;0;1;0
+60131;14715;1;163;63.0;120;80;2;1;0;0;1;0
+60132;18417;1;162;58.0;90;60;1;1;0;0;1;0
+60134;22487;1;168;78.0;130;80;1;1;0;0;1;1
+60135;22978;2;169;70.0;110;80;1;1;0;0;1;0
+60136;19096;2;170;70.0;120;80;1;1;0;0;0;0
+60137;20693;1;174;64.0;120;80;1;1;0;0;1;1
+60138;16831;1;156;75.0;120;80;2;2;0;0;1;0
+60139;19922;2;160;52.0;140;80;3;3;1;0;0;0
+60140;20197;2;171;71.0;120;70;1;1;0;0;1;0
+60141;18911;2;167;70.0;120;70;1;1;0;0;0;0
+60142;19824;1;170;80.0;120;80;1;1;0;0;0;1
+60143;19703;1;168;65.0;120;80;1;1;0;0;0;0
+60147;21243;2;170;88.0;120;70;1;1;0;0;1;1
+60148;18309;2;170;57.0;120;80;1;1;1;1;1;0
+60149;19750;1;167;76.0;140;90;1;1;0;0;0;1
+60150;23542;2;180;74.0;120;80;1;1;0;0;1;0
+60152;20573;1;147;42.0;110;70;1;1;0;0;1;0
+60153;23222;1;154;60.0;130;90;1;1;0;0;1;1
+60155;19863;2;175;68.0;120;80;1;1;0;0;1;0
+60156;22376;2;171;73.0;110;70;1;1;0;0;1;0
+60157;18237;1;160;71.0;170;100;2;1;0;0;1;1
+60158;19833;2;170;67.0;125;80;1;1;0;0;1;0
+60159;20926;1;159;74.0;140;90;3;3;0;0;1;1
+60160;21242;2;170;68.0;120;80;1;1;0;0;1;1
+60163;20250;1;174;69.0;120;80;1;1;0;0;1;0
+60165;20265;1;160;55.0;120;80;1;3;0;0;1;1
+60167;17502;2;160;61.0;120;80;1;1;0;1;1;0
+60170;20182;2;170;70.0;130;80;1;1;0;0;1;0
+60171;17426;1;156;67.0;110;70;1;1;0;0;1;1
+60172;21809;1;165;65.0;120;80;1;1;0;0;1;0
+60174;14388;2;168;83.0;110;80;1;1;0;0;1;0
+60179;20268;2;167;65.0;120;80;1;1;0;0;1;0
+60180;16954;2;170;79.0;130;90;1;1;0;0;0;1
+60182;18478;2;172;86.0;130;80;1;1;0;0;1;0
+60186;18293;2;168;79.0;120;80;1;1;0;0;1;1
+60187;14446;2;176;58.0;120;80;1;1;0;0;1;0
+60188;16711;2;176;110.0;120;80;1;1;0;0;1;1
+60189;21288;2;170;80.0;11;80;1;1;0;0;1;1
+60190;18274;1;174;80.0;140;90;1;2;0;0;1;0
+60192;23118;1;165;100.0;140;70;3;1;0;0;0;1
+60193;14483;2;172;81.0;140;70;1;1;0;0;1;1
+60194;20620;1;159;87.0;140;90;1;1;0;0;0;1
+60195;16604;1;162;87.0;150;90;1;1;0;0;1;0
+60196;21337;1;162;91.0;130;70;1;1;0;0;1;1
+60197;21268;1;153;86.0;150;90;1;2;0;0;1;0
+60199;18417;1;163;48.0;140;80;1;1;0;0;1;1
+60200;21838;1;163;70.0;120;80;1;1;0;0;1;0
+60201;18329;1;163;74.0;120;70;1;1;0;0;0;0
+60202;19847;1;155;78.0;120;80;1;1;0;0;1;1
+60203;19694;2;167;73.0;120;70;1;1;1;0;1;0
+60204;19075;1;165;68.0;110;90;1;1;0;0;1;0
+60205;21930;1;158;63.0;140;90;1;1;0;0;1;1
+60206;18841;2;163;75.5;110;70;1;2;1;0;1;1
+60209;21124;1;157;57.0;180;1100;1;1;0;0;0;1
+60211;15068;1;157;62.0;150;100;1;1;0;0;1;1
+60212;18960;2;165;70.0;120;80;1;1;1;0;1;1
+60214;17499;2;165;79.0;110;70;1;1;0;0;1;0
+60215;18304;1;170;74.0;120;80;1;1;0;0;1;0
+60216;18270;1;164;60.0;120;70;1;1;0;0;1;0
+60218;20494;2;175;77.0;110;70;1;1;0;0;1;1
+60221;18378;1;159;66.0;110;70;2;2;0;0;1;0
+60222;18756;1;162;56.0;110;80;1;1;0;0;1;0
+60223;17384;2;175;63.0;110;70;1;1;0;0;1;0
+60231;18364;1;154;100.0;140;90;3;1;0;0;1;1
+60232;19537;2;172;82.0;160;90;1;1;1;0;1;1
+60238;22565;1;150;75.0;150;80;2;2;1;0;1;1
+60239;15332;1;163;58.0;120;80;1;1;0;0;1;0
+60241;18819;1;168;92.0;120;80;1;1;0;0;1;0
+60242;14665;1;162;69.0;130;70;1;1;0;0;1;1
+60243;18261;1;160;65.0;120;80;1;1;0;0;0;0
+60244;19166;1;165;57.0;120;80;1;1;0;0;1;0
+60245;17406;1;165;136.0;140;90;1;1;0;0;1;1
+60247;14522;2;170;74.0;120;80;1;1;0;0;0;0
+60249;23240;2;166;77.0;170;100;1;1;0;0;1;1
+60251;19598;1;158;86.0;120;80;1;1;0;0;0;0
+60252;16146;1;167;60.0;120;80;2;1;0;0;1;1
+60253;14323;1;178;85.0;120;80;2;1;0;0;0;1
+60254;22000;2;175;75.0;120;80;1;1;0;0;1;0
+60256;21958;1;154;62.0;120;80;3;3;0;0;0;0
+60260;21200;1;165;78.0;140;100;1;2;0;1;1;1
+60264;19828;2;159;68.0;110;70;1;2;1;0;0;0
+60265;19051;1;169;57.0;160;100;1;1;0;0;1;1
+60267;21258;1;163;70.0;120;80;1;1;0;0;0;1
+60271;21851;1;155;65.0;130;90;1;2;0;0;1;1
+60272;22512;2;159;70.0;140;90;1;2;0;1;0;0
+60273;17295;1;157;72.0;120;80;1;1;0;0;1;0
+60275;15909;2;165;57.0;90;60;1;1;0;0;0;0
+60277;18856;1;166;68.0;120;79;1;1;0;0;1;1
+60278;23517;1;164;80.0;120;80;1;1;0;0;0;1
+60279;23224;1;175;75.0;120;70;1;1;0;0;0;1
+60280;19914;1;162;60.0;140;90;1;1;0;0;1;1
+60283;22071;1;170;75.0;120;80;2;1;0;0;0;0
+60284;16808;1;158;61.0;110;80;1;1;0;0;1;0
+60285;17331;1;152;51.0;110;80;1;1;0;0;1;0
+60286;22496;2;170;70.0;120;80;1;1;1;1;1;0
+60287;20478;2;169;78.0;120;90;1;2;0;0;1;0
+60288;18912;2;168;113.0;140;80;1;1;0;0;1;1
+60289;21864;1;153;75.0;120;80;1;1;0;0;1;0
+60291;23242;1;172;51.0;110;80;1;1;0;0;1;1
+60292;21013;1;149;80.0;140;100;1;1;0;0;1;1
+60293;21116;1;158;58.0;104;75;1;1;0;0;1;0
+60296;21144;1;159;62.0;120;80;1;1;0;0;1;1
+60298;14416;1;158;75.0;110;80;1;1;0;0;0;0
+60299;19884;1;164;110.0;144;90;1;1;0;0;1;1
+60301;17340;1;168;70.0;140;90;1;1;0;0;0;1
+60302;20240;1;148;68.0;140;80;1;1;0;0;0;0
+60303;21816;2;160;56.0;125;80;2;1;0;0;0;1
+60307;16773;1;164;69.0;110;80;1;1;0;0;1;0
+60308;14601;1;161;80.0;120;80;1;1;0;0;1;0
+60310;21286;1;156;74.0;140;90;3;3;0;0;1;1
+60311;15876;1;155;72.0;100;70;1;1;0;0;0;0
+60312;19165;2;168;58.0;110;70;1;1;1;0;1;0
+60313;14776;1;167;63.0;120;80;1;1;1;1;0;0
+60314;18313;1;149;61.0;150;80;1;1;0;0;1;1
+60317;20452;1;163;81.0;110;70;3;1;0;0;1;0
+60318;16750;2;177;82.0;120;80;1;1;0;0;0;1
+60319;14494;2;172;70.0;110;80;1;1;0;0;0;0
+60321;19788;1;163;65.0;150;90;1;1;0;0;1;0
+60322;20282;2;185;70.0;120;80;1;1;1;0;1;0
+60323;23175;1;168;69.0;120;80;2;1;0;0;0;0
+60326;16110;2;175;75.0;120;80;1;1;1;0;1;0
+60328;22173;1;175;62.0;120;80;3;3;0;0;1;0
+60329;17294;1;162;60.0;120;80;1;1;0;0;1;0
+60330;18112;2;169;92.0;180;100;1;1;0;0;1;1
+60331;18753;2;183;78.0;110;80;1;1;0;0;1;0
+60332;20277;1;179;81.0;140;90;1;1;0;0;0;0
+60333;18062;1;158;49.0;130;79;1;1;0;0;0;1
+60334;20027;1;158;65.0;110;80;1;1;0;0;1;1
+60335;23555;1;158;60.0;120;80;1;1;0;0;1;1
+60336;15058;1;162;105.0;180;100;1;2;0;0;1;1
+60339;20253;1;169;82.0;120;80;1;1;0;0;1;0
+60340;20515;1;158;83.0;110;80;1;1;0;1;1;0
+60343;19003;2;151;51.0;120;80;1;1;0;0;1;0
+60346;18193;1;163;64.0;160;100;1;1;0;0;1;1
+60348;14507;2;174;76.0;120;80;1;1;0;0;1;1
+60350;18786;1;172;86.0;120;80;1;1;0;0;1;0
+60352;16702;1;163;67.0;120;80;1;1;0;0;1;0
+60353;21170;2;170;64.0;120;80;1;1;0;0;0;0
+60355;23395;1;162;81.0;180;110;3;1;0;0;1;1
+60356;20704;2;160;59.0;130;80;3;1;0;0;1;1
+60357;16832;2;164;80.0;120;80;1;1;0;1;0;0
+60358;22496;1;160;60.0;120;80;1;1;0;0;1;1
+60359;19697;1;156;69.0;130;90;1;1;0;0;1;1
+60360;22547;1;162;60.0;160;100;1;1;0;0;1;1
+60361;17508;1;165;71.0;130;89;1;1;0;0;1;1
+60363;15041;2;173;61.0;110;70;3;3;0;0;1;0
+60364;22573;2;168;78.0;110;70;1;1;0;0;1;1
+60365;15231;1;163;53.0;100;60;1;1;0;0;1;0
+60367;14671;1;154;82.0;90;70;1;1;0;0;1;0
+60368;19779;1;161;66.0;120;80;1;1;0;0;1;0
+60372;19551;2;160;60.0;150;100;1;1;0;0;1;1
+60373;15914;2;174;80.0;150;90;2;1;0;1;1;1
+60374;22648;1;168;68.0;140;80;1;1;0;0;1;1
+60375;21069;2;169;73.0;120;80;1;1;0;0;1;1
+60376;21354;2;160;74.0;120;60;1;1;1;0;1;0
+60377;16717;1;169;65.0;120;80;1;1;0;0;1;0
+60379;20423;2;177;94.0;120;80;1;1;1;0;1;1
+60380;18038;1;163;79.0;130;90;3;1;0;0;1;0
+60381;16680;1;158;64.0;120;80;1;1;0;0;1;0
+60382;22117;1;171;69.0;130;80;3;3;1;0;0;0
+60384;18711;1;166;99.0;150;90;1;1;0;0;1;1
+60385;19149;1;159;57.0;110;70;2;1;0;0;1;0
+60386;19096;1;170;69.0;150;90;2;1;0;0;1;0
+60387;22069;1;170;80.0;160;90;2;2;0;0;1;1
+60388;18970;1;162;76.0;150;90;1;1;0;0;1;1
+60389;18887;1;158;55.0;140;95;1;1;0;0;1;1
+60390;19653;1;157;105.0;150;100;1;1;0;0;1;1
+60391;15535;2;166;76.0;120;70;1;1;1;0;1;0
+60392;23211;1;162;79.0;130;80;3;1;0;0;0;1
+60393;23409;1;156;68.0;140;90;3;1;0;0;1;1
+60396;16017;1;160;54.0;110;70;1;1;0;0;0;0
+60397;19675;1;159;55.0;120;70;1;1;0;0;0;0
+60400;18956;1;168;65.0;153;94;1;1;0;0;0;0
+60401;21266;1;157;96.0;80;110;1;1;0;0;0;0
+60402;16819;2;161;69.0;140;80;3;1;0;1;1;1
+60403;21911;2;173;90.0;160;100;3;1;0;0;0;1
+60404;23187;2;180;85.0;170;100;2;2;0;0;0;1
+60405;16972;1;148;51.0;110;70;1;1;0;0;1;0
+60406;18978;1;160;85.0;120;80;1;1;0;0;1;0
+60407;21798;1;164;80.0;150;80;1;1;0;0;1;1
+60408;21942;1;156;57.0;130;80;3;1;0;0;1;1
+60409;19873;2;182;84.0;150;90;1;1;0;1;1;1
+60410;22382;1;160;79.0;120;80;3;1;0;1;1;1
+60411;21169;1;161;69.0;120;80;1;1;0;0;0;1
+60413;17679;1;160;62.0;160;100;1;1;0;0;1;1
+60414;21488;2;168;77.0;140;80;3;3;0;0;1;0
+60415;22602;1;154;68.0;110;80;1;1;0;0;1;1
+60416;21657;1;165;71.0;110;80;1;1;0;0;1;0
+60417;19596;1;155;65.0;130;100;3;1;1;0;0;1
+60418;16018;2;176;73.0;120;80;1;1;0;0;1;0
+60419;19576;1;156;70.0;120;80;1;1;0;0;1;0
+60420;20554;1;151;78.0;130;80;1;1;0;0;1;1
+60421;21078;1;155;76.0;120;80;1;1;0;0;1;0
+60422;15372;1;162;56.0;120;80;1;1;0;0;1;0
+60423;16176;1;159;61.0;140;90;1;1;0;0;1;1
+60426;15140;1;153;63.0;100;70;1;1;0;0;1;0
+60428;16740;1;163;77.0;90;60;1;1;0;0;1;0
+60429;20576;1;167;72.0;120;80;1;1;0;0;1;0
+60430;19786;2;162;66.0;150;100;1;1;0;0;1;1
+60431;18120;2;176;81.0;140;90;3;3;0;0;1;1
+60432;16194;1;168;60.0;150;80;1;1;0;0;1;0
+60433;14470;1;170;66.0;130;80;1;1;0;0;1;0
+60434;18324;1;167;70.0;120;80;1;1;0;0;0;0
+60436;17456;2;170;88.0;130;90;3;1;0;0;1;1
+60437;18027;1;161;75.0;120;80;1;1;0;0;0;0
+60438;16926;1;168;81.0;120;80;1;1;0;0;1;0
+60439;23107;1;167;71.0;120;60;1;1;0;0;1;1
+60440;19099;2;165;83.0;140;90;3;1;1;0;1;1
+60442;19631;2;164;58.0;120;80;1;1;0;0;1;0
+60444;19536;1;157;60.0;110;90;1;3;0;0;0;1
+60445;23579;2;165;70.0;150;100;1;1;0;0;1;1
+60446;21884;2;169;73.0;120;70;1;2;0;0;1;1
+60450;23285;1;161;65.0;120;80;1;1;0;0;1;1
+60452;19762;1;168;58.0;120;80;1;1;0;0;1;1
+60454;17456;1;162;64.0;115;70;1;1;0;0;0;0
+60456;19549;1;164;80.0;130;70;1;1;0;0;1;1
+60457;19765;1;160;80.0;130;70;2;1;0;0;1;0
+60458;21232;1;148;43.0;110;60;1;1;0;0;0;0
+60459;17496;1;154;90.0;130;90;3;3;0;0;0;1
+60460;19826;1;160;117.0;130;90;2;1;0;0;0;0
+60461;22678;2;175;85.0;110;90;1;1;0;0;0;1
+60462;20252;2;166;67.0;120;80;1;1;0;0;1;0
+60464;17524;1;162;64.0;110;70;1;1;0;0;1;1
+60465;20565;1;146;56.0;140;80;2;1;0;0;1;1
+60466;15436;1;168;67.0;110;70;1;1;0;0;0;0
+60467;19056;1;174;69.0;120;80;1;1;0;0;1;0
+60468;23402;1;165;83.0;140;80;1;1;0;0;1;1
+60469;20650;1;168;65.0;120;80;1;1;0;0;0;0
+60470;21743;1;160;77.0;130;90;3;1;0;0;1;1
+60471;18165;1;152;55.0;140;1000;1;1;0;0;1;1
+60472;15970;2;167;69.0;120;80;1;1;0;0;1;0
+60473;20319;2;167;100.0;140;80;3;3;0;0;1;1
+60476;17549;1;160;71.0;110;70;1;1;0;0;1;1
+60477;18716;1;171;80.0;1;1088;1;1;0;0;1;1
+60478;16044;2;170;75.0;120;80;1;1;0;0;1;0
+60479;16004;2;170;82.0;140;100;1;1;0;0;1;0
+60483;17447;1;160;58.0;120;80;1;1;0;0;1;0
+60484;15122;1;154;78.0;110;70;1;1;0;0;1;1
+60485;21298;1;150;42.0;180;100;2;1;0;0;1;1
+60486;19602;2;179;96.0;130;90;1;3;0;0;0;1
+60487;19489;1;164;87.0;120;80;3;1;0;0;1;1
+60489;15822;1;154;58.0;150;90;1;1;0;0;1;1
+60491;21981;1;167;68.0;145;90;2;1;0;0;1;0
+60492;18344;2;170;72.0;110;70;1;1;0;0;1;0
+60493;23425;1;165;67.0;140;90;1;1;0;0;1;1
+60494;15925;2;171;74.0;120;79;2;1;0;0;0;1
+60495;19004;2;168;66.0;120;80;1;1;0;0;1;0
+60498;17379;1;163;65.0;150;90;1;1;0;0;1;1
+60500;20283;1;157;73.0;130;80;3;2;0;0;1;1
+60501;15143;1;162;68.0;120;80;2;1;0;0;1;0
+60502;21151;1;156;94.0;120;80;1;1;0;0;1;1
+60504;17554;1;160;71.0;110;70;2;1;0;0;1;0
+60506;20228;2;171;69.0;120;80;1;1;0;0;1;0
+60507;17435;1;160;68.0;120;80;3;3;0;0;0;1
+60508;18749;1;169;96.0;120;80;1;1;0;0;1;0
+60509;14654;1;165;90.0;120;70;2;1;0;0;1;0
+60511;22699;2;160;67.0;130;90;1;1;0;0;1;1
+60512;19744;2;173;110.0;150;90;1;1;0;0;1;1
+60514;18140;1;152;80.0;130;80;3;1;0;0;1;1
+60515;21714;2;167;66.0;110;70;1;1;1;0;1;0
+60516;23144;1;154;76.0;110;80;2;1;0;0;1;0
+60517;22146;2;168;85.0;120;80;3;3;0;0;1;0
+60519;19990;1;174;97.0;130;80;1;1;0;0;1;0
+60521;21902;2;174;77.0;160;60;1;1;0;0;1;1
+60523;21928;1;168;87.0;130;70;1;1;0;0;0;1
+60524;18263;1;151;64.0;120;70;1;1;0;0;1;1
+60525;21974;1;156;53.0;120;80;2;1;0;1;1;0
+60527;19077;1;170;68.0;160;100;2;1;0;0;0;1
+60528;19064;2;190;114.0;140;90;3;1;1;1;1;1
+60530;20982;1;157;63.0;120;70;1;1;1;0;1;0
+60531;15353;2;169;55.0;120;80;2;1;1;0;1;0
+60534;17599;2;174;60.0;110;70;1;1;1;1;1;1
+60535;21611;1;154;90.0;145;80;1;1;0;0;1;0
+60538;16017;1;163;76.0;120;80;1;1;0;0;1;0
+60539;23367;1;158;105.0;130;80;1;1;0;0;1;1
+60540;21705;1;159;74.0;160;1000;1;1;0;0;0;1
+60541;18956;1;164;74.0;130;90;1;1;0;0;1;1
+60542;16683;1;161;68.0;130;90;3;3;0;0;1;1
+60543;20407;2;164;71.0;130;80;3;3;0;0;1;0
+60544;21910;1;157;80.0;140;80;1;1;0;0;1;1
+60545;21071;1;168;84.0;140;90;1;1;0;0;1;0
+60546;21176;1;162;53.0;120;80;1;3;0;0;1;0
+60547;14563;1;160;60.0;120;60;1;1;0;0;1;0
+60548;16854;2;167;74.0;120;80;1;1;0;0;1;1
+60550;21194;1;164;78.0;120;90;1;1;0;0;1;0
+60551;21102;2;172;96.0;130;80;2;3;0;0;1;1
+60553;16694;1;156;65.0;130;80;2;2;0;0;1;1
+60554;22494;2;166;79.0;120;90;1;1;0;0;1;0
+60555;20601;2;165;60.0;120;80;1;1;0;0;0;1
+60556;14511;1;160;90.0;120;80;3;1;0;0;1;0
+60557;16762;2;166;74.0;120;80;1;1;0;0;1;1
+60559;20677;1;166;89.0;160;80;3;1;0;0;1;1
+60560;22429;2;164;73.0;120;80;1;1;0;0;1;1
+60562;16148;1;168;58.0;120;80;1;1;0;0;1;1
+60563;16103;1;163;72.0;120;90;1;1;0;1;1;1
+60564;14863;1;170;78.0;150;1000;2;1;0;0;1;1
+60565;17988;2;176;69.0;906;0;1;1;0;0;1;0
+60566;21950;1;165;75.0;120;80;2;2;0;0;1;1
+60567;19857;1;174;94.0;120;80;2;2;0;0;1;0
+60568;22602;1;152;85.0;130;70;2;2;0;0;1;1
+60569;17453;1;159;52.0;110;80;2;2;0;0;1;0
+60571;21128;1;170;80.0;127;69;1;1;0;0;0;0
+60572;21830;2;169;78.0;130;80;1;1;1;0;1;0
+60573;21937;2;180;105.0;140;80;1;2;1;0;1;1
+60574;23284;2;162;110.0;190;100;1;1;0;0;1;1
+60577;18960;1;158;71.0;120;80;2;2;0;0;1;0
+60578;22460;1;167;73.0;173;89;2;2;0;0;1;1
+60581;15982;2;178;125.0;160;100;1;1;1;0;0;1
+60582;22437;1;153;70.0;120;80;2;1;0;0;0;0
+60583;19706;1;163;90.0;150;90;1;1;0;0;0;1
+60584;18389;1;158;61.0;120;80;2;1;0;0;0;1
+60587;14343;2;170;67.0;140;90;1;1;0;0;1;1
+60590;15873;2;174;80.0;130;90;3;3;0;0;1;0
+60591;21649;1;152;65.0;140;100;3;3;0;0;1;1
+60593;16859;1;163;82.0;140;80;1;1;0;0;1;0
+60595;16161;1;158;78.0;115;80;2;2;1;0;1;0
+60596;15316;2;168;72.0;110;70;1;1;0;0;1;0
+60598;22663;1;163;108.0;140;100;3;1;0;0;1;1
+60599;21135;1;156;75.0;130;90;1;3;0;0;1;0
+60600;23145;1;167;93.0;200;1000;3;2;0;0;0;1
+60601;15374;1;164;69.0;130;70;1;1;0;0;1;0
+60604;16133;2;174;75.0;120;80;1;1;0;0;0;0
+60605;18907;2;167;78.0;120;80;1;1;0;0;1;1
+60606;18993;1;153;52.0;110;70;1;1;0;0;1;0
+60607;23291;1;162;56.0;110;80;1;1;0;0;1;0
+60608;15532;1;167;62.0;110;70;1;1;0;0;1;0
+60610;21305;1;158;62.0;100;70;1;1;0;0;1;0
+60612;20420;2;168;68.0;110;70;1;1;0;0;1;1
+60613;22671;1;175;74.0;140;80;1;1;0;0;0;1
+60614;14761;1;168;72.0;140;90;1;1;0;0;1;1
+60615;23268;2;170;70.0;120;80;1;1;1;0;1;0
+60616;19057;1;178;76.0;140;90;1;1;0;0;0;1
+60617;14834;1;167;69.0;110;70;1;1;0;0;1;0
+60618;18299;1;155;80.0;140;95;2;1;0;0;1;1
+60619;18446;1;165;76.0;120;80;1;3;0;0;1;0
+60620;22664;2;167;70.0;130;80;1;2;0;0;1;1
+60622;20377;1;150;76.0;120;70;1;2;0;0;0;0
+60623;19175;1;150;74.0;130;80;1;1;0;0;1;1
+60624;15234;2;171;89.0;120;80;1;1;0;0;1;0
+60625;16033;2;168;69.0;120;80;1;1;0;0;1;0
+60627;19646;1;169;67.0;120;80;1;1;0;0;1;0
+60628;19223;1;157;65.0;125;80;1;1;0;0;0;0
+60629;23431;2;169;73.0;110;80;3;1;0;0;1;0
+60630;22715;2;161;65.0;120;80;1;1;0;0;1;1
+60631;19450;1;160;155.0;120;80;1;1;0;0;1;1
+60635;22645;2;166;98.0;130;40;1;1;0;0;1;1
+60636;15277;1;168;70.0;130;80;1;1;0;0;1;0
+60638;18711;1;158;70.0;140;90;2;1;0;1;1;1
+60639;18297;2;165;58.0;110;70;1;1;0;0;1;0
+60642;18353;1;169;67.0;120;80;1;1;0;0;1;0
+60643;22124;2;176;64.0;140;90;3;1;0;0;0;1
+60646;21933;2;170;66.0;140;90;2;1;0;0;1;1
+60649;16879;1;168;90.0;150;100;3;1;0;0;1;1
+60650;19686;1;168;83.0;120;70;3;1;0;0;1;1
+60651;20277;1;160;86.0;116;74;2;2;0;0;0;1
+60652;21036;1;162;74.0;140;80;1;1;0;0;1;1
+60653;20504;1;162;70.0;120;80;1;1;0;0;1;0
+60654;21209;1;153;76.0;110;80;1;1;0;0;1;1
+60655;20288;2;157;65.0;130;90;1;1;0;0;1;1
+60656;17668;1;164;76.0;130;85;2;2;0;0;1;0
+60657;20598;1;162;86.0;14;80;3;3;0;0;0;0
+60658;21444;2;170;75.0;120;80;1;1;0;0;0;1
+60659;23301;1;154;80.0;130;90;1;1;0;0;1;0
+60660;22400;1;168;90.0;130;80;2;1;0;0;1;1
+60661;21872;1;161;57.0;160;90;1;2;0;0;1;1
+60662;21023;1;162;96.0;130;80;3;1;0;0;1;1
+60663;16582;2;170;92.0;130;80;1;1;0;0;1;1
+60665;18974;2;171;74.0;140;100;1;1;1;1;1;0
+60666;14534;1;165;72.0;120;80;1;1;0;0;0;0
+60667;22832;1;168;75.0;150;90;1;2;0;0;1;1
+60672;19112;1;162;64.0;110;70;1;1;0;0;1;0
+60673;18115;2;170;90.0;150;100;2;1;0;1;1;1
+60674;16091;2;172;80.0;100;60;2;1;1;0;1;1
+60675;22464;2;172;123.0;130;90;1;1;0;0;1;1
+60677;15284;2;164;76.0;147;90;1;1;0;0;0;0
+60679;20583;2;175;68.0;130;90;2;3;0;0;1;0
+60680;21228;1;151;53.0;100;75;2;1;0;0;1;0
+60681;22638;1;162;61.0;130;85;1;1;0;0;1;0
+60682;21037;2;160;60.0;130;90;3;1;0;0;1;1
+60683;21962;1;170;56.0;120;80;1;1;0;0;1;0
+60685;21282;1;166;66.0;120;70;3;3;0;0;1;1
+60686;16796;1;167;78.0;110;80;1;1;0;0;0;1
+60687;17769;2;183;75.0;130;100;1;1;0;0;1;0
+60688;15224;1;175;71.0;120;80;1;1;0;0;0;0
+60693;16674;1;164;63.0;140;70;2;2;0;0;1;1
+60696;20273;1;163;72.0;140;90;1;1;0;0;1;1
+60697;22576;1;160;98.0;140;80;2;1;0;0;0;1
+60699;23271;1;157;55.0;110;70;1;1;0;0;1;0
+60700;21835;2;165;65.0;130;90;1;1;0;0;1;1
+60702;20305;1;160;70.0;120;80;1;1;0;0;1;0
+60703;23308;2;171;89.0;120;80;3;3;0;0;0;1
+60704;19648;1;160;70.0;120;70;1;1;0;0;1;1
+60705;23395;1;159;69.0;150;90;1;1;0;0;0;1
+60706;18287;1;163;60.0;120;80;1;1;0;0;1;0
+60707;18168;1;168;82.0;127;72;1;1;0;0;0;0
+60708;21830;2;160;55.0;90;60;2;1;0;0;0;0
+60709;20055;1;170;69.0;120;80;1;1;0;0;1;0
+60710;18216;1;168;68.0;120;80;1;1;0;0;1;0
+60712;21324;2;169;70.0;140;90;1;1;0;0;0;1
+60714;19019;1;164;93.0;160;80;1;1;0;1;1;1
+60715;19936;1;168;76.0;140;80;1;1;0;0;1;1
+60716;15504;1;170;66.0;120;80;1;1;0;0;1;0
+60717;19864;1;152;76.0;130;80;1;3;0;1;1;0
+60719;23200;2;178;86.0;140;90;3;1;0;0;1;1
+60720;20561;1;159;87.0;90;60;1;1;0;0;1;0
+60721;19386;1;159;76.0;120;80;1;1;0;0;1;1
+60723;19097;2;163;78.0;120;80;1;1;1;1;1;0
+60724;21281;2;169;82.0;130;80;1;1;0;0;1;1
+60725;19046;1;162;105.0;140;1000;1;1;0;0;0;1
+60727;21774;1;165;65.0;120;80;3;3;0;0;0;1
+60731;16604;2;164;80.0;140;90;1;2;1;0;1;1
+60732;16195;2;169;76.0;150;1000;1;1;1;1;0;1
+60733;22108;1;160;55.0;120;80;1;1;0;0;1;0
+60734;14562;1;166;93.0;120;79;3;1;0;0;0;1
+60738;18966;1;164;70.0;120;79;1;1;0;0;0;0
+60739;22725;1;164;81.0;120;80;1;1;0;0;1;1
+60742;20520;1;153;59.0;120;80;1;1;0;0;1;1
+60743;20271;2;170;70.0;120;80;1;1;0;0;1;0
+60744;21091;1;164;95.0;130;90;1;1;0;0;1;0
+60746;22708;1;161;72.0;130;80;1;1;0;0;1;1
+60747;18960;1;163;70.0;120;90;1;1;0;0;1;0
+60749;21964;1;170;75.0;120;80;1;1;0;0;0;1
+60751;17735;1;164;94.0;180;110;1;1;0;0;1;1
+60752;19815;1;168;64.0;120;70;1;3;0;0;0;1
+60753;20752;2;172;70.0;150;90;3;3;0;0;1;1
+60754;19815;1;154;80.0;140;90;1;1;0;0;1;1
+60755;14594;1;168;59.0;110;70;1;1;0;0;1;0
+60757;17448;1;161;71.0;110;70;1;1;0;0;1;1
+60759;18770;2;158;85.0;160;100;2;2;0;0;1;1
+60761;19719;1;164;78.0;130;80;1;1;0;0;1;0
+60762;23159;1;168;85.0;140;80;3;3;0;0;0;1
+60763;19492;1;165;65.0;120;80;1;1;0;0;1;1
+60764;22488;1;157;59.0;130;80;3;1;0;0;1;1
+60765;18275;1;169;62.0;140;90;3;3;0;0;1;0
+60766;18499;1;161;60.0;100;80;1;1;0;0;0;0
+60767;15463;2;180;80.0;120;80;1;1;1;0;1;0
+60769;14486;1;185;80.0;120;80;1;1;0;0;1;0
+60770;21192;2;174;80.0;120;90;1;1;0;0;1;0
+60771;20746;1;178;75.0;110;60;1;1;0;0;1;0
+60773;23392;1;162;90.0;110;80;2;2;0;0;1;1
+60774;14457;2;180;73.0;120;80;1;1;0;0;1;0
+60776;23521;2;161;89.0;120;80;1;1;0;0;1;0
+60777;19895;1;146;84.0;140;80;3;1;0;0;1;1
+60779;18825;2;168;70.0;130;80;1;1;0;0;1;1
+60780;14624;2;164;77.0;140;90;2;1;0;1;1;0
+60781;20391;1;178;75.0;120;80;1;1;0;0;1;0
+60784;16844;1;153;100.0;170;100;2;1;0;0;1;1
+60785;20419;2;164;65.0;120;80;1;1;0;0;1;0
+60786;19911;1;165;67.0;120;80;1;1;0;0;1;0
+60787;21861;1;174;73.0;150;80;3;3;0;0;1;0
+60791;17471;1;168;71.0;120;80;1;1;0;0;0;0
+60792;17643;2;164;66.0;120;80;1;1;1;1;1;0
+60794;18418;1;166;69.0;120;80;1;1;0;0;1;1
+60796;20483;2;170;88.0;140;90;1;1;0;0;0;1
+60797;17492;2;167;73.0;120;80;1;1;0;0;1;0
+60800;23569;1;160;120.0;140;80;1;1;0;0;1;1
+60801;18284;1;158;67.0;90;65;1;1;0;0;1;0
+60802;17514;2;181;91.0;120;80;2;1;1;0;1;1
+60804;19799;2;180;105.0;150;90;1;1;0;0;1;1
+60805;23382;1;166;94.0;120;80;1;1;0;0;1;1
+60806;15241;2;178;76.0;120;80;1;1;0;0;1;0
+60807;18840;1;165;64.0;130;70;1;1;0;0;1;0
+60808;22671;2;160;81.0;150;90;2;2;0;0;1;1
+60809;16602;1;169;74.0;140;100;1;1;0;0;1;1
+60812;19712;2;165;62.0;130;90;1;1;0;0;1;1
+60813;18232;1;165;65.0;120;80;1;3;0;0;0;1
+60815;19729;2;171;62.0;150;1000;1;1;0;0;1;1
+60816;21912;1;164;77.0;130;90;1;1;1;0;1;0
+60817;18068;1;160;80.0;100;70;2;1;0;0;0;0
+60818;22490;1;152;57.0;140;90;1;1;0;0;1;1
+60820;22715;2;172;90.0;150;1000;1;1;1;1;1;1
+60822;22515;2;180;78.0;130;80;2;1;0;0;1;1
+60824;15982;2;160;52.0;120;80;1;1;0;0;1;1
+60825;20308;2;162;69.0;120;60;1;1;0;0;1;0
+60826;17460;2;175;83.0;130;90;1;1;0;0;1;1
+60828;18177;2;169;72.0;125;80;1;1;1;0;1;0
+60829;22022;1;162;96.0;130;80;2;2;0;0;1;0
+60830;18826;1;150;62.0;140;110;1;1;0;0;1;0
+60831;20425;1;168;74.0;120;80;1;1;0;0;1;1
+60833;15417;2;164;89.0;160;90;2;1;0;0;1;1
+60835;15823;1;159;58.0;120;80;1;1;0;0;1;1
+60836;21809;1;155;64.0;130;60;1;1;0;0;1;1
+60838;21249;1;162;88.0;140;90;2;2;0;0;1;0
+60840;21180;1;156;60.0;140;90;1;1;0;0;1;1
+60841;14556;1;170;88.0;90;70;1;1;0;0;1;0
+60843;19453;1;164;64.0;120;80;1;1;0;0;1;1
+60844;16005;2;168;82.0;120;80;1;1;0;0;1;0
+60845;14909;1;156;65.0;110;80;1;1;0;0;1;0
+60846;21696;2;168;78.0;130;80;1;1;0;0;1;1
+60847;21634;1;162;89.0;140;90;2;1;0;0;1;1
+60848;18142;1;150;62.0;110;70;1;1;0;0;1;0
+60849;22592;1;141;50.0;140;80;2;2;0;0;0;1
+60850;19474;2;172;80.0;120;70;1;1;0;0;1;0
+60851;20414;1;162;68.0;140;70;3;1;0;0;0;0
+60852;18302;1;164;71.0;120;80;1;1;0;0;0;1
+60853;19853;1;165;72.0;140;90;1;1;0;0;1;1
+60854;19624;1;150;73.0;140;90;1;1;0;0;1;1
+60855;16129;1;170;95.0;140;90;2;1;0;0;1;1
+60856;22594;1;160;60.0;140;90;1;1;0;0;1;1
+60858;20122;2;175;69.0;140;80;1;1;1;0;1;0
+60861;21233;1;165;69.0;128;90;1;3;0;0;1;1
+60862;18760;1;164;98.0;120;80;2;1;0;0;1;1
+60864;20539;2;178;68.0;120;80;1;1;1;0;1;0
+60865;23519;2;175;89.0;120;80;1;1;1;1;0;1
+60871;18320;1;160;62.0;120;80;1;1;0;0;1;0
+60873;15097;1;164;47.0;100;80;1;1;0;0;1;0
+60874;18265;2;176;75.0;100;70;1;1;1;0;1;0
+60876;20319;1;164;94.0;140;90;3;1;0;0;1;1
+60878;22007;1;155;95.0;130;70;3;3;0;0;0;1
+60879;16732;2;165;84.0;140;80;1;1;0;0;0;0
+60880;19609;1;158;60.0;110;70;1;1;0;0;1;0
+60882;18024;2;168;80.0;140;79;2;1;0;0;1;1
+60883;22385;2;174;72.0;120;80;1;1;0;0;1;0
+60884;20534;1;169;70.0;120;80;1;1;0;0;1;1
+60885;19538;1;174;68.0;120;80;1;1;0;0;1;0
+60886;15890;1;178;63.0;120;80;1;1;0;0;1;0
+60888;19692;1;168;66.0;120;80;1;1;0;0;0;1
+60889;22743;1;156;83.0;170;100;1;2;0;0;1;1
+60890;21873;1;166;67.0;120;80;1;1;0;0;1;1
+60891;19201;1;170;60.0;120;80;1;1;0;0;0;1
+60892;17593;2;168;62.0;120;80;1;1;0;0;1;0
+60893;18154;1;168;78.0;120;80;1;1;0;0;1;0
+60895;23424;2;180;89.0;160;90;1;1;0;0;1;0
+60896;15816;1;168;97.0;140;100;1;1;0;0;1;1
+60898;18735;1;170;62.0;110;70;2;1;0;0;1;0
+60899;17994;2;171;85.0;120;80;3;1;0;1;0;1
+60900;20552;1;162;72.0;160;90;3;1;0;0;1;1
+60901;21721;1;150;85.0;160;100;2;1;0;0;1;1
+60902;21621;1;165;95.0;120;80;1;1;0;0;1;0
+60904;21405;2;162;66.0;145;95;3;3;0;0;1;0
+60907;23118;2;174;84.0;120;60;2;1;0;0;0;1
+60908;19009;2;174;66.0;160;100;2;1;1;0;0;1
+60910;19622;2;174;91.0;140;90;1;3;1;0;1;0
+60913;21027;1;167;67.0;120;90;1;1;0;0;0;1
+60915;19789;1;160;72.0;150;100;1;1;0;0;1;1
+60916;16198;1;159;59.0;120;80;1;1;0;0;0;1
+60917;17437;2;180;84.0;138;85;1;1;0;0;1;1
+60919;18265;2;175;103.0;120;80;3;1;1;0;1;1
+60920;16026;2;184;94.0;150;89;1;1;0;0;0;1
+60923;21895;1;156;90.0;160;100;3;1;0;0;1;1
+60924;22473;1;170;76.0;120;80;1;1;0;0;1;1
+60925;18230;1;152;64.0;110;70;2;2;0;1;0;0
+60926;21314;2;181;121.0;120;80;3;1;0;0;1;1
+60927;16218;1;162;80.0;120;80;1;1;0;0;1;1
+60928;19009;2;165;63.0;120;70;1;1;0;0;1;1
+60931;18749;1;172;72.0;130;90;1;2;0;0;1;1
+60933;20539;1;156;78.0;150;90;1;1;0;0;1;1
+60935;21836;2;164;79.0;120;80;1;1;0;0;1;0
+60936;22024;2;170;89.0;130;80;1;1;0;0;1;0
+60937;20383;1;157;100.0;130;90;1;1;0;0;1;1
+60940;19200;2;168;85.0;130;80;1;1;0;0;1;1
+60941;15407;1;167;64.0;110;70;1;1;0;0;1;0
+60942;18970;1;164;99.0;120;80;1;1;0;0;1;0
+60944;21946;1;168;92.0;130;90;3;3;0;0;1;0
+60945;16019;1;168;74.0;120;80;1;1;0;0;1;0
+60946;21377;2;175;77.0;80;60;2;2;0;0;1;1
+60947;20312;1;160;80.0;120;80;1;1;0;0;1;0
+60948;20456;2;182;80.0;906;60;1;1;0;0;1;1
+60949;19616;2;165;65.0;120;80;1;1;0;0;0;1
+60952;23296;1;157;70.0;150;100;1;1;0;0;1;1
+60954;15941;1;140;64.0;120;80;1;1;0;0;1;0
+60955;16002;2;177;77.0;120;80;1;1;0;0;1;1
+60956;21697;2;160;63.0;120;80;1;1;0;0;1;1
+60957;18390;1;157;68.0;110;80;1;1;0;0;1;0
+60958;18269;2;173;84.0;120;90;1;1;0;1;0;0
+60960;22059;1;145;40.0;140;90;3;1;0;0;0;1
+60961;23267;1;159;75.0;120;80;1;1;0;0;1;0
+60963;22597;1;155;53.0;120;80;1;1;1;0;1;0
+60965;22151;1;170;60.0;130;80;1;1;0;0;1;1
+60967;18513;2;171;79.0;110;70;2;3;0;0;0;1
+60970;20598;1;164;78.0;120;89;1;1;0;0;1;0
+60971;21337;1;165;97.0;150;90;2;1;0;0;0;1
+60972;19735;2;170;72.0;110;80;1;1;0;0;1;0
+60973;23204;1;153;58.0;120;80;1;1;0;0;1;1
+60975;21988;1;156;70.0;130;90;1;1;0;0;1;0
+60977;21082;1;152;82.0;130;80;1;1;0;0;1;1
+60978;19838;2;174;79.0;120;80;3;3;0;0;0;0
+60979;21834;2;169;60.0;120;80;1;1;0;0;0;0
+60983;21212;2;166;67.0;140;90;2;1;0;0;1;0
+60985;18341;1;155;85.0;125;80;2;2;0;0;1;0
+60986;15219;1;167;112.0;120;80;3;1;0;0;0;0
+60987;18769;2;163;79.0;140;90;1;1;0;0;1;1
+60988;22642;2;171;71.0;140;80;1;1;0;0;1;1
+60989;15784;2;170;90.0;130;90;2;2;0;0;1;0
+60990;19099;2;171;78.0;120;80;1;1;0;0;1;0
+60991;18001;2;176;87.0;130;80;1;1;1;0;1;0
+60992;22537;1;164;68.0;170;100;1;1;0;0;1;1
+60993;21900;1;161;83.0;120;80;3;3;0;0;1;1
+60994;19719;1;169;78.0;120;80;1;1;0;0;1;0
+60995;16770;1;169;66.0;140;90;1;1;0;0;1;1
+60996;19077;2;170;80.0;130;40;1;1;0;0;0;0
+61000;21030;1;147;54.0;110;70;1;1;0;0;1;0
+61001;23310;2;162;56.0;130;80;3;3;0;0;1;0
+61002;16135;2;165;72.0;120;80;1;1;0;0;1;1
+61003;15410;1;158;80.0;120;80;2;1;0;0;1;0
+61004;20709;1;169;64.0;120;80;1;1;0;0;1;0
+61005;17706;1;160;60.0;120;80;1;1;0;0;1;1
+61006;15998;1;158;61.0;130;90;3;1;0;0;1;1
+61007;21184;1;152;87.0;120;80;3;3;0;1;1;1
+61008;19861;1;167;133.0;126;77;2;2;0;0;1;0
+61009;22608;2;164;90.0;120;80;1;1;0;0;1;1
+61010;22838;2;168;75.0;120;80;1;1;0;0;0;0
+61011;19115;2;168;117.0;140;90;3;1;0;0;1;1
+61012;15300;1;162;84.0;120;80;1;1;0;0;1;1
+61013;22508;2;179;85.0;110;70;2;1;0;0;0;0
+61014;22124;2;162;94.0;120;80;1;1;0;0;0;1
+61016;18233;2;164;90.0;150;90;3;1;0;0;1;1
+61017;19057;1;165;75.0;120;80;1;1;0;0;1;0
+61019;17417;1;163;65.0;120;80;1;1;0;0;1;0
+61020;20435;1;156;67.0;120;80;1;1;0;0;1;0
+61021;16090;1;165;73.0;100;70;1;1;0;0;1;0
+61022;19052;2;162;68.0;120;80;1;1;0;0;1;0
+61024;18762;1;160;95.0;110;80;1;1;0;0;0;1
+61025;23348;2;170;80.0;120;80;1;2;0;0;1;1
+61026;21131;1;169;74.0;120;80;1;1;0;0;1;1
+61027;14708;1;164;58.0;110;70;1;1;0;0;1;0
+61028;18361;2;165;72.0;130;80;1;1;0;0;1;1
+61031;14628;1;165;85.0;120;70;1;1;0;0;1;1
+61032;18074;2;179;92.0;140;90;1;1;0;0;0;1
+61034;14683;1;161;60.0;120;80;1;1;0;0;0;0
+61037;18772;2;172;82.0;120;80;2;1;0;0;1;1
+61038;19865;1;160;82.0;110;70;1;1;0;0;1;1
+61039;19750;1;168;68.0;120;80;1;3;0;0;1;0
+61040;21136;1;164;69.0;120;70;1;1;0;0;1;1
+61041;18302;2;165;76.0;240;100;1;1;0;0;1;1
+61042;22658;1;152;83.0;130;70;3;3;0;0;0;1
+61043;18221;1;167;75.0;130;80;2;1;0;0;1;1
+61046;16594;1;158;81.0;120;80;1;1;0;0;1;0
+61050;22649;2;170;68.0;120;80;1;1;0;0;1;1
+61051;14723;1;161;57.0;120;80;1;1;0;0;0;0
+61052;17506;1;156;48.0;120;80;3;3;1;0;1;0
+61054;17602;1;160;71.0;200;120;2;1;1;1;1;0
+61055;16725;2;181;95.0;130;80;1;1;0;0;1;0
+61057;22427;2;172;85.0;120;80;1;1;0;0;0;0
+61060;20880;1;153;65.0;120;80;1;1;0;0;1;0
+61063;16700;1;150;60.0;130;90;1;1;0;0;1;0
+61064;23614;1;143;64.0;140;80;1;1;0;0;1;1
+61066;20534;1;170;77.0;120;80;1;1;0;0;1;0
+61067;20283;2;167;68.0;120;80;1;2;0;0;1;0
+61068;14714;2;174;84.0;100;70;1;1;1;0;1;0
+61069;14774;1;170;70.0;120;80;1;1;1;1;1;0
+61070;19063;1;170;65.0;110;70;1;2;0;0;0;0
+61071;21354;2;168;79.0;110;70;1;1;1;0;1;0
+61075;21286;1;161;94.0;110;70;1;1;0;0;1;0
+61077;17304;1;159;67.0;110;80;1;1;0;0;1;0
+61078;17603;1;162;65.0;120;80;1;1;0;0;1;0
+61079;21005;1;164;68.0;150;100;1;1;0;0;1;1
+61081;19802;1;150;51.0;120;80;1;1;1;1;1;1
+61085;21912;2;167;80.0;140;90;1;1;0;0;0;1
+61086;19879;1;158;67.0;120;70;1;1;0;0;1;1
+61087;20522;2;172;76.0;110;80;3;1;1;0;1;1
+61090;21838;1;152;60.0;100;70;2;1;0;0;0;0
+61092;18926;2;176;100.0;150;90;1;1;0;0;1;1
+61093;16606;1;166;66.0;120;80;2;1;0;0;1;1
+61094;16202;1;156;86.0;120;90;1;1;0;0;0;1
+61095;14393;1;168;72.0;90;70;1;1;0;0;0;0
+61096;18290;1;176;78.0;120;70;1;1;0;0;1;0
+61097;20477;2;175;78.0;110;70;1;1;1;0;1;0
+61098;19506;2;163;54.0;120;60;3;1;0;0;1;1
+61099;21824;2;170;68.0;150;100;1;1;0;0;1;1
+61102;17589;1;166;87.0;150;1000;1;1;0;0;1;1
+61105;19572;1;160;105.0;120;80;1;1;0;0;1;1
+61106;18155;1;162;63.0;120;80;1;1;0;0;1;0
+61107;22539;1;158;58.0;150;100;1;1;1;1;1;1
+61108;18262;1;165;103.0;115;70;3;2;0;0;1;1
+61109;19634;1;169;69.0;120;80;1;1;0;0;1;0
+61110;22365;1;168;80.0;140;80;1;1;0;0;1;1
+61111;16855;2;176;74.0;120;70;1;1;0;0;1;0
+61112;16896;1;168;72.0;110;70;1;1;0;0;1;1
+61113;20193;1;165;85.0;120;80;1;1;0;0;1;0
+61114;15027;1;160;90.0;160;100;1;1;0;0;1;1
+61115;21093;2;169;92.0;140;80;1;1;1;0;0;1
+61116;23450;2;156;66.0;160;90;1;1;1;1;0;1
+61120;22550;1;156;76.0;130;80;1;1;0;0;1;1
+61121;15390;1;160;74.0;140;90;1;1;0;0;0;1
+61122;21957;1;167;68.0;140;90;1;1;0;0;1;1
+61123;21894;2;159;64.0;120;70;1;1;0;0;1;0
+61124;21244;2;169;70.0;140;90;1;1;0;0;1;0
+61125;14575;1;156;54.0;110;70;1;1;0;0;1;0
+61126;20381;1;158;95.0;130;80;2;1;0;0;0;0
+61127;18260;1;160;58.0;110;70;1;1;0;0;1;0
+61128;19046;1;180;70.0;160;120;1;1;0;0;1;1
+61129;21186;2;167;68.0;120;70;1;1;0;0;1;1
+61130;21095;2;171;90.0;150;80;1;3;0;0;0;1
+61131;18418;2;165;78.0;130;80;1;1;0;0;0;0
+61132;22718;2;160;82.0;130;90;3;1;0;0;1;0
+61133;19969;2;175;105.0;150;90;1;1;1;0;1;0
+61134;20240;1;178;68.0;120;70;1;1;0;0;1;1
+61136;22460;2;169;60.0;130;90;1;1;0;0;0;0
+61138;21978;1;162;59.0;120;80;1;1;0;0;1;1
+61139;20359;2;170;94.0;160;100;3;1;0;0;1;0
+61140;15105;1;155;67.0;120;70;1;1;0;0;1;0
+61142;18967;1;162;65.0;110;80;2;1;0;0;0;1
+61144;21314;1;174;78.0;130;80;1;1;0;0;1;1
+61145;19070;1;155;92.0;140;90;2;1;0;0;0;0
+61146;16027;1;153;85.0;110;80;1;1;0;0;1;0
+61147;19917;2;172;76.0;100;70;1;1;0;1;1;0
+61148;21160;2;164;94.0;120;80;3;3;0;0;0;1
+61151;19034;1;151;71.0;140;90;1;1;0;0;0;0
+61152;21236;1;165;65.0;120;80;1;1;0;0;1;1
+61153;15271;2;170;75.0;120;80;1;1;1;0;1;0
+61154;19684;2;174;75.0;110;80;1;1;0;0;1;1
+61155;20318;1;169;62.0;130;80;1;1;0;0;1;1
+61156;21343;1;157;121.0;120;80;1;3;0;0;1;1
+61157;20202;1;165;63.0;120;80;1;1;0;0;1;0
+61158;21139;1;158;88.0;140;100;3;3;0;0;1;1
+61159;16844;2;160;65.0;180;1110;1;1;0;0;1;1
+61160;18173;1;151;74.0;130;80;1;1;0;0;1;0
+61161;19010;1;166;82.0;140;90;1;1;0;0;1;1
+61163;19910;1;162;59.0;120;80;1;1;0;0;0;0
+61164;21736;1;159;85.0;120;70;1;1;0;0;1;0
+61165;18327;1;165;73.0;120;80;1;1;0;0;1;0
+61166;18927;2;175;76.0;120;80;1;1;0;0;1;0
+61167;19618;1;174;68.0;120;80;1;1;0;0;1;1
+61168;16604;1;165;97.0;120;80;1;1;0;0;1;0
+61169;18975;2;174;65.0;120;80;1;1;0;0;1;0
+61171;14784;1;160;60.0;120;60;1;1;0;0;1;0
+61172;21305;1;157;61.0;120;80;1;1;0;0;0;0
+61174;15305;2;157;64.0;116;70;1;1;1;0;1;0
+61175;18064;1;157;64.0;110;70;1;1;0;0;1;0
+61176;16068;2;185;90.0;120;80;1;1;0;0;1;0
+61177;22090;1;159;87.0;160;100;1;3;0;0;1;1
+61178;23473;2;164;67.0;140;90;3;3;1;1;1;1
+61179;15264;1;157;62.0;120;80;1;1;0;0;1;1
+61180;18536;2;156;60.0;120;80;1;1;0;0;1;0
+61181;18854;2;158;72.0;130;80;1;2;1;1;1;1
+61182;21727;1;165;65.0;120;79;2;1;0;0;0;1
+61183;19051;2;178;105.0;140;90;1;1;0;0;1;1
+61185;15239;1;158;74.0;120;80;1;1;0;1;1;0
+61186;23135;1;163;69.0;120;80;1;1;0;0;1;0
+61187;17558;2;168;95.0;140;90;2;1;0;0;1;1
+61188;19006;1;151;95.0;130;90;2;2;0;0;1;1
+61189;21091;1;164;85.0;120;80;3;3;0;0;0;0
+61190;19661;2;167;70.0;120;80;1;1;0;0;1;0
+61193;18964;1;173;44.0;120;80;1;1;0;0;1;0
+61195;17427;1;155;105.0;180;80;1;1;0;0;1;1
+61196;18259;2;182;90.0;110;80;1;1;0;0;0;1
+61197;23441;1;153;62.0;160;90;2;1;0;0;1;1
+61199;19864;1;160;69.0;120;80;1;1;0;0;1;1
+61201;16785;1;158;78.0;110;70;1;1;0;0;1;1
+61202;20522;2;165;97.0;120;80;2;1;1;1;1;1
+61204;18427;2;166;72.0;130;90;1;1;0;0;1;0
+61206;21172;2;172;68.0;150;90;2;1;1;1;1;1
+61207;14386;1;157;60.0;120;80;1;1;0;0;0;0
+61208;17528;2;158;60.0;120;80;1;1;0;0;1;1
+61209;23209;2;161;87.0;150;90;1;1;0;0;0;1
+61210;21163;2;172;65.0;130;80;1;1;1;1;1;0
+61211;19836;2;172;74.0;160;90;3;1;0;0;1;1
+61212;19039;1;162;58.0;120;80;1;1;0;0;1;0
+61213;21775;1;163;93.0;120;70;1;1;0;0;1;1
+61215;21055;1;170;74.0;130;80;1;1;0;0;1;0
+61216;19016;1;158;62.0;140;80;1;1;0;0;1;1
+61217;18218;2;180;80.0;120;80;1;1;0;0;1;0
+61218;19567;1;161;66.0;110;80;1;1;0;0;0;0
+61221;18856;1;175;80.0;110;80;1;1;0;0;1;0
+61223;19545;1;155;83.0;120;80;1;1;0;0;1;0
+61225;20443;2;182;95.0;130;80;3;3;0;0;1;0
+61227;23173;1;157;89.0;150;100;1;1;0;0;0;1
+61229;18875;2;172;81.0;140;80;2;3;0;0;0;1
+61230;19010;2;163;63.0;120;80;1;1;0;0;1;0
+61231;22895;2;167;89.0;120;80;1;1;0;0;1;1
+61232;21268;2;172;80.0;120;80;1;1;0;0;1;0
+61233;20351;1;165;62.0;140;90;1;1;0;0;1;0
+61234;23308;1;157;74.0;120;80;3;1;0;0;1;1
+61236;21992;1;158;123.0;123;60;1;1;0;0;1;0
+61237;14568;1;165;80.0;110;70;1;1;0;0;0;0
+61238;18808;1;160;65.0;100;70;1;3;0;0;1;0
+61239;19665;1;156;90.0;120;79;2;1;0;0;1;1
+61240;15255;1;160;114.0;90;60;1;1;0;0;1;0
+61242;17702;2;170;57.0;100;60;1;1;0;1;1;0
+61243;19613;2;181;72.0;120;90;1;2;0;0;1;1
+61244;20150;2;171;76.0;120;80;1;1;0;0;1;0
+61245;19705;1;168;67.0;120;80;1;1;0;0;0;0
+61246;17466;1;164;73.0;150;100;1;1;0;1;1;1
+61247;22110;2;169;69.0;120;80;1;1;0;0;1;0
+61248;15880;1;156;69.0;120;80;1;1;0;0;0;1
+61249;18975;1;162;64.0;140;80;1;1;0;0;1;1
+61250;21139;2;165;90.0;150;100;3;2;0;0;1;1
+61251;18736;1;156;86.0;120;70;1;1;0;0;1;1
+61252;18774;2;177;90.0;120;80;1;1;0;0;0;0
+61253;14461;1;170;64.0;110;70;1;1;0;0;1;0
+61254;18941;1;158;64.0;140;90;2;3;0;0;1;1
+61255;19161;1;152;77.0;120;80;1;1;0;0;1;0
+61256;21835;2;175;81.0;120;70;1;1;1;1;1;0
+61257;23225;1;155;65.0;100;60;1;1;0;0;1;1
+61258;16589;2;175;98.0;120;80;1;2;0;0;1;0
+61259;21060;1;158;61.0;130;90;2;1;0;1;1;0
+61260;14562;1;159;61.0;100;70;1;1;0;0;1;0
+61261;20291;2;169;75.0;110;80;2;1;0;0;1;0
+61262;21817;1;160;58.0;120;80;1;1;0;0;0;0
+61263;21476;1;172;75.0;120;80;3;3;0;0;1;0
+61265;16165;2;166;82.0;160;100;1;1;0;1;1;1
+61267;21780;1;160;87.0;140;80;3;3;0;0;0;1
+61270;21700;1;172;87.0;120;80;2;2;0;0;1;1
+61272;22465;1;168;78.0;120;80;1;2;0;0;1;0
+61273;21857;2;171;87.0;150;80;3;3;0;0;0;0
+61274;21044;1;168;65.0;120;80;1;1;0;0;1;1
+61277;19610;2;160;81.0;120;80;1;1;0;0;1;0
+61279;20415;1;155;88.0;160;90;1;1;0;0;1;1
+61283;18735;1;168;69.0;120;80;1;1;0;0;1;0
+61284;21116;2;178;98.0;130;80;2;1;0;0;1;1
+61285;23211;1;156;55.0;130;90;1;1;0;0;1;0
+61286;22109;1;165;66.0;115;80;1;2;0;0;1;0
+61287;21864;1;158;74.0;120;80;3;1;0;0;1;1
+61288;22671;1;164;67.0;120;60;3;1;0;0;1;0
+61289;17259;1;165;94.0;160;100;1;1;0;0;1;1
+61290;22709;2;172;91.0;120;80;1;1;0;0;1;1
+61291;19036;1;153;66.0;110;80;1;1;0;0;1;0
+61293;21136;1;157;50.0;120;80;1;1;0;0;1;1
+61294;22034;1;147;75.0;120;80;1;1;0;0;0;1
+61295;18324;2;174;54.0;120;80;2;2;0;0;1;1
+61296;19482;1;158;57.0;150;80;1;1;0;0;1;0
+61297;21939;1;162;98.0;110;80;1;1;0;0;1;1
+61298;23271;2;170;98.0;180;100;2;1;0;0;1;1
+61299;23113;1;157;67.0;110;80;2;1;0;0;1;0
+61300;16863;1;169;71.0;90;60;2;1;0;0;0;1
+61301;18331;1;158;80.0;130;79;1;1;0;0;0;0
+61302;15886;2;172;80.0;120;80;1;1;1;0;1;0
+61304;16762;1;164;75.0;150;80;1;1;0;0;1;1
+61308;19639;1;145;63.0;140;80;1;1;0;0;1;1
+61309;14425;1;169;57.0;140;90;1;1;0;0;1;1
+61312;19767;2;170;90.0;120;80;1;1;0;0;1;1
+61314;18734;1;156;65.0;100;70;1;1;1;0;1;0
+61315;23166;1;170;71.0;120;80;1;1;0;0;1;0
+61317;20966;2;172;71.0;180;100;3;3;0;0;1;1
+61318;21915;1;152;59.0;120;80;1;1;0;0;1;0
+61319;16551;1;158;65.0;130;90;2;1;0;0;1;0
+61320;23172;1;166;58.0;140;90;1;1;0;0;1;1
+61321;19084;1;151;65.0;120;80;2;1;0;0;1;1
+61322;18057;1;160;68.0;120;80;1;1;0;0;1;0
+61323;20347;1;165;88.0;120;80;2;2;0;0;1;1
+61325;14570;2;164;75.0;120;80;1;1;0;0;1;0
+61326;21978;1;158;59.0;110;80;1;1;0;0;1;0
+61329;21753;1;158;67.0;110;70;2;2;0;0;1;0
+61330;17482;2;168;93.0;140;90;1;1;1;0;1;1
+61331;20975;2;172;66.0;120;80;2;1;0;0;1;0
+61332;18962;1;167;64.0;160;100;1;1;0;0;0;1
+61333;15429;1;168;55.0;100;70;1;1;0;0;1;0
+61334;18872;1;153;66.0;110;70;2;1;0;0;1;0
+61336;18209;2;172;68.0;110;70;2;1;0;0;1;0
+61337;20295;1;165;102.0;130;70;1;1;0;0;1;1
+61339;17544;1;178;76.0;120;80;1;1;0;0;0;0
+61340;21054;2;162;68.0;140;90;1;1;0;0;0;1
+61341;14426;2;160;59.0;110;80;1;1;1;0;1;0
+61344;18280;1;160;111.0;120;80;1;1;0;0;0;1
+61346;16097;2;171;102.0;130;80;3;1;0;0;0;1
+61347;22579;2;168;90.0;140;80;1;1;0;0;0;1
+61349;21139;2;174;96.0;120;80;1;1;0;0;1;1
+61351;17275;1;161;88.0;110;70;2;1;0;0;1;0
+61352;22360;2;158;64.0;140;80;1;1;0;0;1;1
+61353;22159;1;170;84.0;110;70;2;1;0;0;0;0
+61355;22495;1;154;94.0;140;90;2;2;0;0;0;1
+61357;14378;2;178;76.0;110;80;1;1;0;0;1;0
+61360;16775;2;170;70.0;120;80;1;1;0;1;1;0
+61362;20434;1;162;80.0;130;90;1;1;0;0;1;0
+61363;22094;2;170;85.0;120;80;1;1;0;0;0;0
+61365;23287;2;172;70.0;150;1000;1;1;0;0;1;0
+61366;19716;1;155;73.0;120;90;1;1;0;0;0;1
+61368;20315;2;170;85.0;130;90;1;1;0;0;1;1
+61369;18931;1;160;90.0;140;80;3;1;0;0;1;1
+61370;21012;2;175;115.0;140;90;1;1;0;0;1;1
+61372;19785;2;162;82.0;145;95;1;1;0;0;1;1
+61373;15186;2;178;69.0;130;80;1;1;1;1;1;0
+61374;21685;1;157;99.0;140;80;3;1;0;0;0;1
+61375;20924;1;163;90.0;100;80;1;1;0;0;1;0
+61376;14585;1;173;72.0;140;100;1;1;0;0;1;1
+61377;21199;2;175;75.0;130;70;1;1;0;0;1;1
+61379;19534;1;168;69.0;120;80;1;1;0;0;1;1
+61380;21184;1;158;55.0;120;80;2;1;0;0;1;1
+61381;20479;2;175;105.0;130;80;3;3;0;0;1;1
+61382;21934;2;174;70.0;120;80;1;1;0;0;0;0
+61385;21348;2;177;102.0;120;80;1;1;0;0;0;1
+61388;16080;1;165;63.0;110;70;1;1;0;0;1;0
+61390;20386;1;165;73.0;120;80;2;2;0;0;1;0
+61392;21396;1;160;60.0;120;80;1;1;0;0;1;0
+61393;19812;2;175;84.0;110;70;1;2;0;0;1;0
+61395;19646;1;172;67.0;110;70;1;1;0;0;1;0
+61396;23315;2;173;69.0;120;80;1;1;1;0;0;0
+61398;15128;1;166;70.0;110;80;1;1;0;0;1;1
+61399;23322;2;169;65.0;140;100;3;1;1;1;1;1
+61400;20351;1;165;66.0;110;70;1;1;0;0;1;0
+61401;21299;1;178;70.0;120;80;1;1;0;0;1;0
+61402;19425;1;149;55.0;120;80;1;1;0;0;0;0
+61403;15354;1;166;63.0;120;80;1;1;0;0;1;0
+61404;21951;1;161;79.0;100;70;1;1;0;0;1;1
+61408;14664;1;152;79.0;90;60;3;1;0;0;1;0
+61409;20494;1;160;68.0;120;70;1;1;0;0;1;1
+61410;21758;2;167;104.0;120;79;2;1;0;0;0;1
+61412;19728;2;168;78.0;100;60;1;1;0;0;0;0
+61413;18989;1;178;65.0;120;80;1;1;0;0;0;1
+61416;17463;2;153;60.0;12;80;1;1;0;0;1;0
+61417;19812;2;171;68.0;120;80;1;1;0;0;0;0
+61419;22554;1;162;63.0;105;70;1;1;0;0;1;1
+61420;18057;2;166;102.0;160;1000;1;1;0;0;1;1
+61421;20522;1;154;72.0;120;80;3;1;0;0;1;1
+61422;21690;1;174;65.0;120;80;1;1;0;0;1;0
+61424;19493;1;154;73.0;140;90;1;1;0;0;1;1
+61425;21010;2;162;80.0;120;80;1;1;0;0;1;1
+61428;18130;2;161;62.0;140;90;3;3;0;0;1;1
+61429;19080;1;155;61.0;120;70;1;1;0;1;1;0
+61430;14692;2;173;90.0;150;100;1;3;0;0;1;1
+61433;22142;1;157;59.0;120;80;1;1;0;0;1;1
+61434;19605;1;168;68.0;140;80;1;1;0;0;1;1
+61436;14465;2;174;74.0;120;80;1;1;0;0;1;0
+61439;22598;1;161;90.0;120;80;1;1;0;0;1;1
+61440;23314;1;158;63.0;160;1000;3;3;0;0;1;1
+61442;15297;2;163;83.0;110;80;1;1;0;0;1;0
+61443;18211;2;183;93.0;120;80;1;1;0;1;1;1
+61445;20782;1;156;93.0;140;90;3;3;0;0;1;1
+61446;23306;2;174;67.0;130;60;1;1;0;0;1;0
+61447;19064;1;166;72.0;110;70;2;1;0;0;1;1
+61448;18857;1;156;86.0;120;80;1;1;0;0;0;0
+61449;20503;1;163;60.0;130;90;1;2;0;0;1;1
+61450;20352;1;169;76.0;160;80;1;1;0;0;0;1
+61452;14400;1;169;66.0;140;80;2;2;0;0;1;1
+61453;18361;1;152;79.0;110;70;1;1;0;0;1;0
+61454;21822;1;165;65.0;120;79;1;1;0;0;0;1
+61455;21160;1;158;60.0;130;90;2;2;0;0;0;1
+61456;19826;1;163;60.0;110;70;1;1;0;0;1;0
+61457;17659;2;171;76.0;150;90;1;1;0;0;0;1
+61458;14342;1;160;60.0;120;80;1;1;0;0;1;0
+61460;14880;2;174;68.0;115;80;1;1;0;0;1;0
+61461;18169;1;160;68.0;130;90;3;1;0;0;1;1
+61462;18824;1;165;86.0;110;80;1;1;0;0;0;0
+61463;23257;1;163;100.0;130;80;3;1;0;0;1;1
+61465;22461;1;150;58.0;130;80;1;1;0;0;1;1
+61467;21886;2;172;85.0;120;80;1;1;0;0;1;0
+61469;22733;1;156;71.0;130;90;1;1;0;0;1;1
+61470;21191;1;158;74.0;120;80;1;1;0;0;1;0
+61471;15250;2;160;58.0;120;80;1;1;0;0;1;0
+61472;20452;1;166;75.0;120;80;3;1;0;0;0;1
+61473;17314;2;166;80.0;120;80;2;2;1;0;1;0
+61474;21999;1;162;63.0;130;80;1;1;0;0;1;1
+61475;20489;1;161;65.0;130;80;1;1;0;0;1;0
+61476;20477;1;168;66.0;110;80;1;1;0;0;0;1
+61477;17579;2;177;79.0;150;80;3;1;0;0;1;1
+61478;21777;2;180;83.0;120;80;1;1;0;0;1;0
+61479;22701;1;165;81.0;120;80;3;1;0;0;1;1
+61480;20553;1;155;60.0;120;60;1;1;0;0;1;0
+61481;21991;1;168;66.0;120;80;1;1;0;0;1;1
+61483;21194;2;182;114.0;180;90;1;2;0;0;0;1
+61485;21938;2;170;69.0;120;80;1;3;0;0;0;0
+61486;15035;2;170;64.0;110;70;2;1;1;1;1;1
+61487;19822;1;160;60.0;150;90;1;1;0;0;0;1
+61488;15892;1;168;85.0;140;80;1;1;0;0;1;1
+61490;20549;1;150;83.0;120;70;1;1;0;0;1;1
+61491;18226;1;166;116.0;130;90;1;1;0;0;1;0
+61494;21866;1;163;123.0;130;80;3;3;0;0;1;1
+61495;21930;1;158;87.0;120;80;1;2;0;0;1;1
+61497;22158;1;160;85.0;120;80;1;1;0;0;1;1
+61498;21087;2;175;87.0;110;70;1;1;1;0;1;0
+61500;20475;1;149;71.0;130;90;1;1;0;0;1;1
+61501;22685;2;170;88.0;120;80;3;3;0;0;0;1
+61502;21180;1;145;69.0;140;90;3;3;0;0;1;1
+61505;14439;1;166;115.0;140;90;1;1;1;1;1;0
+61506;18187;1;154;55.0;180;1100;1;1;0;0;1;1
+61507;15247;2;174;90.0;140;80;3;1;0;0;1;1
+61508;15376;2;168;70.0;120;80;1;1;0;0;1;0
+61509;19835;1;147;42.0;100;80;1;1;0;0;1;0
+61510;19960;1;164;74.0;120;80;1;1;0;0;1;0
+61511;19805;2;167;73.0;120;80;1;1;1;0;0;0
+61514;20401;1;175;71.0;120;80;1;2;0;0;1;1
+61515;19638;2;165;65.0;130;90;1;1;0;0;0;1
+61516;17530;2;165;65.0;120;80;1;1;0;0;1;0
+61517;20489;1;158;81.0;110;80;1;1;0;0;1;1
+61518;15197;2;170;74.0;120;80;1;1;0;0;1;0
+61519;19876;1;165;65.0;130;100;1;1;0;0;1;1
+61522;21756;1;153;88.0;138;83;1;2;0;0;1;1
+61525;18217;1;169;74.0;140;80;3;3;0;0;1;1
+61526;22671;1;156;63.0;130;80;1;2;0;0;1;1
+61527;23308;2;172;70.0;110;70;3;1;0;0;0;1
+61528;19438;1;178;85.0;120;80;1;1;0;0;0;1
+61529;19876;2;165;78.0;120;80;1;1;0;0;1;0
+61530;23292;2;161;66.0;120;80;2;1;0;0;1;0
+61531;15580;1;170;69.0;120;80;1;1;0;0;0;1
+61532;18186;2;180;86.0;120;80;1;1;0;0;1;0
+61533;23343;2;182;84.0;120;80;3;1;1;0;1;1
+61535;19819;1;172;70.0;130;90;1;1;0;0;0;0
+61536;22660;1;163;65.0;120;90;1;1;0;0;1;0
+61542;19067;1;159;64.0;120;80;1;1;0;0;1;0
+61544;14490;1;168;53.0;120;80;1;1;0;0;1;0
+61545;18968;1;161;83.0;130;80;2;2;0;0;1;0
+61546;19988;1;165;65.0;130;90;1;1;0;0;1;1
+61548;20984;1;164;64.0;120;80;1;1;0;0;1;0
+61549;20446;2;174;70.0;140;90;1;1;1;0;1;1
+61550;18150;2;173;64.0;105;70;1;1;0;0;1;0
+61552;21435;2;175;68.0;120;80;3;1;0;0;1;0
+61553;19051;2;169;65.0;120;90;2;1;0;1;1;0
+61557;17472;2;154;57.0;160;80;1;1;1;1;1;1
+61558;22711;1;152;76.0;110;70;2;1;0;0;1;1
+61559;16903;2;180;51.0;120;80;1;1;1;0;1;0
+61563;18282;2;174;86.0;110;70;1;1;0;0;1;0
+61564;14439;1;159;48.0;110;80;1;1;0;0;0;0
+61566;18164;2;168;68.0;120;80;1;1;1;1;1;0
+61567;17382;1;178;83.0;160;1200;2;1;0;0;1;1
+61569;16767;1;156;65.0;140;90;1;1;0;0;1;1
+61570;22612;2;161;67.0;160;90;1;1;0;0;1;1
+61572;16839;2;176;87.0;120;80;1;1;0;0;1;0
+61574;23554;2;167;84.0;120;100;1;1;0;0;1;0
+61575;19709;1;164;77.0;120;80;1;1;0;0;1;0
+61577;19683;1;170;77.0;120;80;1;1;0;0;1;0
+61578;22721;1;157;63.0;120;80;3;3;0;0;1;1
+61579;16910;2;170;73.0;110;70;1;1;0;0;1;0
+61580;19738;1;170;58.0;120;80;2;1;0;0;1;0
+61581;21227;1;168;64.0;120;80;1;1;0;0;1;0
+61582;15239;1;160;95.0;130;90;3;1;1;1;1;1
+61584;23471;2;178;77.0;160;100;1;2;0;0;1;1
+61585;21962;1;160;60.0;120;79;1;1;0;0;1;1
+61587;16063;2;174;74.0;140;90;1;1;0;0;1;1
+61588;16917;1;164;68.0;120;60;1;1;0;0;0;1
+61589;18888;2;174;81.0;110;70;1;1;0;0;1;0
+61590;21234;1;160;58.0;110;70;1;1;0;0;1;0
+61591;23160;1;163;81.0;120;70;1;1;0;0;1;1
+61594;23576;1;155;61.0;130;80;1;1;0;0;1;1
+61595;16010;1;175;90.0;120;80;3;1;0;0;1;1
+61596;20269;1;163;76.0;120;90;1;1;0;0;1;0
+61597;21899;2;161;62.0;140;90;1;1;0;0;0;1
+61598;17690;1;168;62.0;120;80;1;2;1;0;1;0
+61599;18070;1;156;60.0;140;90;1;1;0;0;1;1
+61600;19150;1;168;60.0;130;70;1;1;0;0;1;0
+61601;18057;2;168;75.0;130;90;1;1;0;0;0;1
+61602;21161;1;162;105.0;170;1100;3;1;1;1;1;0
+61604;21028;1;157;54.0;90;70;1;1;0;0;0;0
+61606;17465;2;170;72.0;150;90;2;2;0;0;1;1
+61607;20462;1;162;76.0;140;99;2;1;0;0;0;1
+61610;16827;2;175;76.0;130;80;1;1;0;0;1;1
+61611;18403;2;180;75.0;120;90;1;1;0;0;1;0
+61612;19122;1;162;63.0;80;40;2;2;0;0;0;0
+61613;17460;2;179;85.0;120;80;1;1;1;0;1;0
+61614;18281;1;165;94.0;100;70;1;1;0;0;0;0
+61615;20617;1;152;48.0;120;80;1;1;0;0;1;0
+61616;23294;2;168;68.0;140;90;3;2;0;0;1;1
+61618;20961;2;170;78.0;1400;90;2;1;0;0;1;0
+61619;22532;1;172;60.0;110;70;1;1;0;0;1;0
+61620;21023;1;160;95.0;140;90;2;1;0;0;1;1
+61621;19657;1;152;52.0;120;80;1;2;0;0;1;0
+61623;21932;1;170;120.0;160;40;3;3;0;0;1;1
+61624;20960;2;165;62.0;130;90;1;1;0;0;1;1
+61625;18712;2;181;106.0;120;80;2;1;0;0;1;1
+61627;19586;2;172;93.0;130;80;3;2;1;0;1;1
+61628;17709;1;165;75.0;150;80;2;1;0;0;0;1
+61629;15552;1;156;80.0;110;80;1;1;0;0;1;0
+61630;23173;2;159;60.0;180;120;2;1;1;0;1;1
+61631;22686;2;174;82.0;110;70;1;1;0;0;1;0
+61632;23146;2;185;86.0;140;100;3;1;1;0;1;1
+61633;22621;2;164;75.0;140;80;2;1;0;0;1;1
+61634;18083;2;168;90.0;140;90;3;1;0;0;1;1
+61635;18839;1;158;67.0;140;90;1;2;0;0;1;1
+61636;18028;1;162;64.0;140;90;2;1;0;0;0;0
+61637;23189;1;167;71.0;120;80;3;3;0;0;1;1
+61639;18217;2;171;63.0;120;79;1;1;0;0;1;0
+61640;16035;1;172;96.0;110;80;1;1;0;0;1;1
+61642;20920;1;160;90.0;160;90;1;1;0;0;0;0
+61643;15906;1;155;85.0;120;80;1;1;0;0;1;0
+61645;22028;1;170;75.0;120;80;1;1;0;0;0;0
+61646;21180;1;155;78.0;120;80;1;1;0;0;1;1
+61647;21179;2;165;53.0;130;90;1;1;0;0;1;0
+61648;21186;1;153;63.0;120;80;1;1;0;0;1;0
+61650;18203;2;168;70.0;140;90;1;1;0;0;1;1
+61651;22459;1;158;66.0;130;80;1;1;0;0;1;0
+61652;20989;1;178;82.0;120;80;1;1;0;0;0;0
+61654;20967;1;167;78.0;130;90;2;1;0;0;1;1
+61658;17301;1;159;87.0;130;90;1;1;0;0;1;0
+61659;18982;1;170;72.0;120;80;3;1;0;0;1;1
+61662;14657;1;178;96.0;130;90;1;1;0;0;0;0
+61666;18525;2;167;68.0;120;80;1;1;0;0;1;0
+61669;19219;2;175;93.0;120;80;2;3;0;0;1;0
+61670;20473;1;161;91.0;200;100;3;3;0;0;1;1
+61672;17617;1;167;63.0;110;90;1;1;0;0;0;0
+61674;17703;1;161;65.0;120;80;1;1;0;0;1;0
+61675;16878;2;180;86.0;130;70;1;1;0;0;1;0
+61676;22731;2;168;70.0;130;80;1;1;0;1;1;0
+61677;21098;1;158;65.0;110;70;1;1;0;0;1;0
+61678;18254;1;165;72.0;120;80;1;1;0;0;1;0
+61681;21234;1;175;75.0;100;70;1;1;0;0;0;1
+61683;22656;2;176;83.0;170;120;3;1;0;0;1;1
+61684;18469;1;172;68.0;120;80;2;1;0;0;1;1
+61685;23447;1;153;54.0;100;60;2;3;0;0;1;0
+61686;19047;2;165;85.0;120;80;1;1;0;0;1;0
+61687;18995;1;155;62.0;170;100;3;1;0;0;1;1
+61689;16809;1;166;75.0;110;70;1;1;0;0;1;0
+61690;20338;1;167;68.0;120;80;1;1;0;0;0;0
+61691;20231;1;170;63.0;110;70;1;1;0;0;1;1
+61693;19597;1;162;86.0;140;90;1;1;0;1;0;1
+61695;23224;1;152;61.0;110;70;2;1;0;0;1;0
+61696;21142;1;163;75.0;140;90;1;1;0;0;0;0
+61697;21685;2;170;98.0;120;80;2;1;0;0;1;1
+61698;17939;1;169;72.0;120;80;1;1;0;0;0;1
+61699;22177;1;169;78.0;120;80;1;1;0;0;1;1
+61701;15479;2;178;75.0;140;80;1;1;0;0;0;1
+61702;20998;1;154;78.0;130;90;2;3;0;0;1;1
+61704;21400;2;175;78.0;120;80;1;1;0;0;0;0
+61707;19684;1;153;50.0;130;80;2;1;0;0;1;0
+61708;16799;2;168;65.0;110;80;1;1;0;0;1;0
+61709;16135;1;163;96.0;120;80;1;1;0;0;1;0
+61711;22686;1;163;78.0;120;90;2;1;0;0;0;0
+61712;23200;1;156;103.0;110;70;1;1;0;0;1;0
+61713;19723;1;153;49.0;120;70;1;1;0;0;0;0
+61714;20394;1;154;57.0;180;120;1;1;0;0;1;1
+61715;19013;1;148;50.0;130;90;3;3;0;0;1;1
+61716;16908;2;168;89.0;140;90;1;1;1;1;0;1
+61717;20376;1;162;95.0;120;80;1;1;0;0;1;1
+61718;19049;1;158;65.0;120;80;1;1;0;0;1;1
+61719;22574;1;168;90.0;140;80;2;3;0;0;1;1
+61721;20400;2;165;85.0;110;80;1;1;0;0;1;0
+61723;19499;2;170;61.0;100;80;1;1;0;0;1;0
+61724;14687;2;169;71.0;110;70;1;1;0;0;0;0
+61725;23418;1;165;67.0;1420;80;2;1;0;0;1;1
+61726;17648;2;173;100.0;160;100;2;2;0;0;0;0
+61727;14378;1;152;60.0;100;70;1;1;0;0;1;0
+61729;22015;2;162;75.0;140;100;1;1;0;0;1;1
+61730;15277;2;168;58.0;110;80;1;1;0;0;1;1
+61732;19671;2;174;79.0;140;90;1;1;0;0;1;1
+61734;21805;1;154;64.0;100;60;1;1;0;0;1;0
+61735;19258;1;160;68.0;120;80;3;3;0;0;1;1
+61736;22152;1;158;63.0;130;80;1;2;0;0;1;1
+61737;20528;2;185;90.0;140;80;2;2;1;0;1;1
+61739;18190;1;169;69.0;120;80;1;1;0;0;0;0
+61741;18399;2;165;75.0;120;80;3;3;0;1;0;1
+61742;22438;1;161;60.0;120;80;1;1;0;0;1;1
+61743;19843;1;164;62.0;100;60;1;1;0;0;1;0
+61744;16166;2;185;90.0;110;70;1;1;0;0;1;0
+61745;22024;1;180;80.0;140;90;1;1;0;0;1;1
+61746;14788;2;175;95.0;110;70;2;1;0;0;1;0
+61747;19589;2;171;70.0;130;80;3;1;0;0;1;1
+61748;17486;2;165;70.0;150;90;2;1;0;0;1;1
+61749;19526;1;160;48.0;140;90;1;1;0;0;1;1
+61750;17635;1;151;60.0;130;90;2;2;0;0;1;0
+61751;21347;1;162;68.0;110;70;1;1;0;0;1;0
+61752;18823;2;176;90.0;190;1000;3;1;0;0;1;0
+61753;21035;1;143;48.0;130;90;2;1;0;0;1;0
+61754;20291;1;150;83.0;100;80;1;1;0;0;1;0
+61755;18186;2;172;75.0;80;50;2;2;0;0;1;1
+61757;19773;1;174;72.0;120;80;1;1;0;0;1;1
+61758;15998;2;163;54.0;100;80;1;1;0;0;1;0
+61759;18424;1;165;71.0;120;80;1;1;0;0;1;1
+61760;23043;1;164;80.0;120;80;1;1;0;0;1;0
+61762;18199;1;168;96.0;150;100;2;1;0;0;1;1
+61763;19752;1;154;98.0;130;80;1;1;0;0;1;0
+61764;15430;2;172;75.0;120;80;1;1;0;0;1;1
+61765;19754;1;155;80.0;130;90;3;1;0;0;1;0
+61766;14535;1;162;62.0;120;80;1;1;0;0;1;0
+61771;20438;1;162;62.0;120;80;1;1;0;0;1;0
+61775;23304;1;152;72.0;140;80;2;1;0;0;1;1
+61776;14672;1;159;76.0;100;90;2;1;0;0;1;1
+61777;22612;2;178;80.0;140;90;3;1;0;0;0;1
+61781;21107;1;160;85.0;110;80;1;1;0;0;1;1
+61782;20998;2;167;92.0;140;100;1;1;1;1;1;1
+61785;19106;2;175;67.0;120;80;2;2;0;0;1;0
+61786;20444;1;166;68.0;120;80;1;1;0;0;1;0
+61787;17471;2;165;61.0;140;90;1;1;0;0;1;1
+61788;22032;1;154;115.0;120;80;1;1;0;0;1;0
+61789;23417;2;155;68.0;130;80;3;3;0;0;0;1
+61791;19015;1;160;59.0;110;70;1;1;0;0;0;0
+61792;18889;1;150;52.0;120;75;2;1;0;0;1;1
+61796;16020;2;171;69.0;120;80;1;1;1;0;1;1
+61799;15049;1;160;88.0;120;80;1;1;0;0;1;0
+61800;23135;1;169;70.0;110;80;3;1;0;0;1;1
+61801;22551;1;162;72.0;130;80;3;3;0;0;1;1
+61802;23500;2;168;76.0;140;90;2;2;0;0;1;1
+61803;19282;2;165;75.0;120;80;1;1;0;0;1;1
+61804;16702;2;180;90.0;130;80;1;1;0;0;1;1
+61807;18060;1;158;78.0;140;80;1;1;0;0;1;0
+61808;21803;1;154;77.0;110;80;1;3;0;0;1;1
+61809;17548;2;164;70.0;110;70;2;3;0;0;0;0
+61810;18903;1;170;70.0;120;80;1;3;0;0;1;0
+61812;18861;1;169;79.0;150;100;1;1;0;0;0;1
+61813;23553;2;175;86.0;120;80;1;1;0;0;0;0
+61814;21978;1;157;69.0;110;70;2;1;0;0;1;1
+61815;19878;1;165;80.0;140;90;2;2;0;0;1;0
+61819;23453;1;145;50.0;110;70;1;1;0;0;1;1
+61820;22694;2;159;87.0;160;90;2;3;0;0;1;1
+61821;21250;2;169;76.0;120;80;1;1;0;0;0;0
+61823;20316;1;162;84.0;120;90;1;1;0;0;0;0
+61826;16993;1;156;60.0;120;80;1;1;0;0;1;0
+61827;14557;2;170;75.0;110;70;1;1;0;0;1;0
+61831;16157;2;160;60.0;110;60;1;1;0;0;0;0
+61834;16882;1;176;82.0;120;80;1;1;0;0;1;0
+61835;20594;1;152;54.0;120;90;1;1;0;0;0;1
+61837;18258;1;164;76.0;140;90;1;1;0;0;1;1
+61838;19803;1;170;65.0;110;70;1;3;0;0;0;0
+61839;22771;1;169;72.0;150;80;3;1;0;0;0;1
+61840;15356;2;169;78.0;140;70;2;1;0;0;0;1
+61841;20623;2;181;79.0;120;80;1;1;0;0;1;1
+61842;18211;2;162;92.0;150;90;1;1;0;0;1;1
+61845;21694;1;178;89.0;160;80;2;3;0;0;1;1
+61846;14598;2;173;69.0;140;90;1;1;0;0;1;1
+61847;19252;1;163;78.0;120;80;2;1;1;0;1;0
+61848;18800;1;162;74.0;120;80;2;1;0;0;0;0
+61849;19751;1;153;65.0;150;100;1;2;0;0;1;1
+61852;19708;1;175;109.0;110;90;2;2;0;0;1;1
+61853;17581;1;159;84.0;120;80;1;1;0;0;0;1
+61854;21857;2;173;112.0;140;90;3;1;0;1;1;1
+61858;14366;2;166;53.0;120;80;1;3;0;0;1;0
+61859;21042;1;165;65.0;120;80;1;1;0;0;1;1
+61860;19488;1;158;59.0;110;80;2;1;0;0;1;0
+61863;20322;1;170;74.0;100;70;1;1;0;0;1;0
+61864;18495;2;169;69.0;120;80;1;1;0;0;0;1
+61865;22020;2;173;86.0;120;70;1;1;1;0;1;0
+61866;20361;1;165;65.0;120;80;1;1;0;0;1;0
+61868;20602;2;156;65.0;120;60;3;3;1;0;1;0
+61869;23380;2;170;70.0;150;70;1;1;0;0;1;0
+61870;20311;1;165;65.0;120;80;1;1;0;0;1;1
+61871;23264;2;180;108.0;160;90;1;2;0;0;1;0
+61872;16696;1;156;64.0;120;90;1;1;0;0;1;0
+61873;21073;1;156;86.0;160;90;2;1;0;0;1;1
+61874;22718;1;151;58.0;170;10;3;1;0;0;1;1
+61876;18183;2;170;83.0;170;1000;2;1;0;0;1;1
+61877;16638;1;163;87.0;110;70;1;2;0;0;1;0
+61878;14369;1;151;50.0;110;70;1;1;0;0;1;0
+61879;19048;1;171;76.0;120;80;1;1;0;0;1;1
+61880;23196;1;165;52.0;120;80;3;2;0;0;1;1
+61881;15908;1;157;59.0;120;80;1;1;0;1;0;0
+61882;23351;1;154;43.0;90;60;1;1;0;0;1;0
+61883;19712;1;177;96.0;140;80;3;1;1;0;1;1
+61884;17426;2;178;76.0;110;70;2;1;0;0;0;1
+61885;19756;1;166;72.0;130;90;1;3;0;0;1;1
+61887;17273;1;157;60.0;110;80;1;3;0;0;1;0
+61888;19588;1;165;63.0;120;80;1;1;0;0;1;0
+61891;19018;1;162;93.0;130;70;1;1;0;0;0;0
+61892;18055;1;165;65.0;120;70;1;1;0;0;1;0
+61895;20502;1;161;67.0;120;80;1;1;0;0;1;0
+61896;20541;1;155;65.0;120;80;3;3;0;0;1;1
+61898;17349;1;165;61.0;110;70;1;1;0;0;1;0
+61900;19610;2;173;80.0;140;90;1;1;0;0;1;1
+61901;23221;1;160;105.0;200;11000;1;1;0;0;1;1
+61902;17259;1;164;57.0;130;70;1;1;0;0;1;0
+61903;21825;2;171;74.0;140;90;1;1;0;0;1;1
+61907;15085;1;167;71.0;90;60;1;1;0;0;1;0
+61908;20196;1;169;72.0;110;70;1;1;0;0;1;1
+61909;16023;1;151;70.0;130;90;1;1;0;0;1;0
+61912;16095;1;163;68.0;120;80;1;1;0;0;0;0
+61913;20402;1;148;53.0;110;80;2;1;0;0;1;0
+61914;21633;1;168;67.0;120;80;1;1;0;0;0;1
+61915;16666;1;165;62.0;120;79;1;1;0;0;1;0
+61917;19063;2;173;100.0;140;90;3;3;0;0;0;1
+61918;22544;1;156;55.0;130;80;3;3;0;0;1;1
+61920;17978;1;156;59.0;120;80;1;1;0;0;1;0
+61921;22677;1;157;57.0;110;70;1;1;0;0;1;1
+61922;23281;2;167;84.0;120;60;2;2;0;0;1;0
+61923;18205;2;170;80.0;120;80;1;1;0;0;1;1
+61925;21929;2;169;73.0;125;80;1;1;0;0;1;0
+61927;18942;1;165;75.0;120;80;1;1;0;0;1;0
+61929;21386;1;165;54.0;110;70;1;1;0;0;1;0
+61930;23563;2;160;54.0;120;80;1;1;0;0;1;1
+61931;22481;2;166;87.0;140;90;1;1;0;0;1;1
+61932;15450;1;161;80.0;150;100;2;1;0;0;0;1
+61933;19797;1;153;78.0;160;100;1;1;0;0;1;1
+61934;18177;2;170;73.0;110;70;2;1;1;0;1;0
+61935;20438;1;172;68.0;120;80;1;1;0;0;1;1
+61936;15340;1;168;68.0;120;90;2;2;0;0;1;0
+61937;20293;2;174;78.0;120;80;1;1;0;0;1;0
+61938;16130;2;166;64.0;120;80;1;1;0;0;0;0
+61939;22053;1;156;67.0;130;90;1;1;0;0;0;1
+61940;20625;1;165;63.0;120;80;1;1;0;0;1;0
+61943;23101;2;172;88.0;110;70;3;1;1;0;0;1
+61945;16039;1;150;65.0;150;100;1;1;0;0;1;1
+61947;20402;1;164;63.0;120;80;1;1;0;0;1;0
+61948;23247;1;156;73.0;120;80;1;1;0;0;0;0
+61951;21198;2;164;62.0;140;90;2;1;0;0;1;0
+61952;20489;2;173;91.0;180;100;2;1;0;0;1;1
+61955;15567;1;165;69.0;146;106;1;1;0;0;1;1
+61957;18407;1;155;59.0;120;80;2;1;0;0;0;0
+61958;19674;1;162;64.0;120;80;1;1;0;0;1;1
+61959;18934;1;160;51.0;110;70;1;1;0;0;1;0
+61960;21905;1;147;67.0;160;90;3;1;0;0;1;1
+61961;19739;1;153;117.0;140;90;1;1;0;0;1;1
+61962;17464;1;150;80.0;135;80;2;2;0;0;1;1
+61963;15064;1;164;66.0;108;63;1;1;1;0;1;0
+61966;22520;1;157;80.0;140;90;2;1;0;0;0;1
+61967;16022;1;168;70.0;140;90;1;1;0;0;1;1
+61969;20509;1;160;73.0;130;90;1;2;0;0;0;1
+61971;21133;2;168;80.0;130;90;2;1;1;0;1;0
+61972;18495;1;147;52.0;120;80;1;1;0;0;1;0
+61973;19691;1;155;61.0;110;80;1;1;0;0;1;0
+61975;22849;1;162;74.0;120;60;1;1;0;0;1;1
+61976;20414;1;162;65.0;120;80;1;1;0;0;1;1
+61977;21016;1;165;86.0;100;60;2;2;0;0;1;0
+61978;15557;1;168;66.0;130;80;1;1;0;0;1;1
+61980;15354;2;172;88.0;120;80;1;1;0;0;1;0
+61981;22013;1;153;70.0;120;60;1;1;1;0;1;0
+61982;23328;1;152;86.0;140;90;1;3;0;0;1;1
+61983;16039;2;177;90.0;120;80;1;1;0;0;1;0
+61986;19869;2;173;82.0;150;90;1;1;0;0;1;1
+61987;22621;1;162;58.0;100;60;1;1;0;0;1;1
+61991;21948;1;162;77.0;120;80;1;1;0;0;1;1
+61992;21049;1;169;85.0;120;80;1;1;0;0;1;0
+61994;23473;1;165;71.0;110;70;2;3;0;0;1;0
+61995;20394;1;156;87.0;140;90;2;1;0;0;1;1
+62000;20471;2;163;59.0;140;80;1;1;1;0;1;1
+62001;19207;2;180;71.0;110;70;1;1;0;1;0;0
+62002;19010;2;168;76.0;130;90;2;1;1;1;1;0
+62003;20335;1;155;110.0;135;69;3;3;0;0;0;0
+62004;22572;1;163;95.0;130;90;2;1;0;0;1;1
+62005;23423;1;154;76.0;120;80;3;1;0;0;1;1
+62006;17655;1;162;86.0;110;70;1;1;0;0;1;0
+62008;18768;1;162;67.0;130;80;3;3;0;0;0;0
+62009;23338;1;175;80.0;130;70;1;1;0;0;1;1
+62010;21114;2;176;70.0;120;80;1;1;0;0;1;0
+62011;19834;1;176;70.0;120;80;3;3;0;0;1;1
+62013;18311;2;165;65.0;120;70;1;1;0;0;1;0
+62014;19703;1;169;88.0;130;80;1;1;0;0;0;1
+62016;18065;2;179;80.0;140;80;1;1;0;0;0;1
+62017;20609;1;172;82.0;120;80;1;1;0;0;1;1
+62019;17943;2;175;80.0;120;80;1;1;0;0;1;0
+62020;19560;1;152;61.0;140;80;1;1;0;0;0;1
+62021;20462;2;180;93.0;120;90;1;1;0;1;1;0
+62024;18371;1;165;60.0;110;80;1;1;0;0;1;0
+62025;21984;1;168;60.0;150;90;1;1;0;0;1;1
+62026;19721;2;175;77.0;140;90;1;1;0;0;1;1
+62028;23197;1;164;92.0;120;70;1;1;0;0;1;0
+62029;22427;1;156;94.0;140;80;3;1;0;0;1;1
+62030;16000;1;164;75.0;120;80;1;1;0;0;1;1
+62031;20248;1;160;90.0;150;90;2;1;0;0;1;1
+62032;21080;1;151;86.0;120;80;2;1;0;0;1;0
+62034;18243;1;162;100.0;120;80;1;1;0;0;1;1
+62035;18919;1;155;53.0;140;100;2;1;0;0;0;1
+62036;20514;1;155;56.0;120;70;1;1;0;0;1;0
+62037;20445;1;167;67.0;120;80;1;1;0;0;1;1
+62038;15274;2;182;114.0;120;90;1;1;0;0;1;1
+62040;19696;2;180;98.0;150;100;3;3;0;0;1;1
+62042;16664;1;155;68.0;140;90;3;1;0;0;1;1
+62043;22777;2;159;61.0;120;90;1;1;0;0;1;1
+62044;18835;1;169;68.0;110;70;1;1;0;0;1;0
+62045;19698;2;169;75.0;120;80;2;1;0;0;1;0
+62047;21782;1;150;70.0;140;80;1;1;0;0;1;1
+62049;18223;2;174;81.0;130;80;1;1;1;1;1;0
+62050;18924;2;176;93.0;140;100;1;1;0;0;0;1
+62051;18215;2;174;64.0;120;80;1;1;0;0;1;0
+62053;14507;1;163;63.0;110;80;1;1;0;0;1;0
+62054;22009;1;160;97.0;140;90;3;1;0;0;1;1
+62055;21825;1;156;82.0;150;80;1;1;0;0;0;1
+62056;17365;1;160;69.0;160;90;1;1;0;0;1;1
+62058;21906;2;179;62.0;130;9800;1;1;0;0;1;0
+62060;20448;1;152;65.0;130;80;1;1;0;0;1;0
+62061;16163;2;167;78.0;130;80;1;1;0;0;1;1
+62062;18907;1;168;69.0;120;80;1;1;0;0;1;0
+62063;22146;2;167;74.0;160;90;1;1;0;0;1;1
+62065;21161;2;170;65.0;120;80;1;1;0;0;1;0
+62067;21799;2;168;80.0;140;80;1;1;0;0;0;0
+62068;20382;1;161;82.0;140;90;3;1;0;0;1;1
+62069;20411;2;178;98.0;140;90;1;1;0;0;1;1
+62070;21788;2;168;80.0;110;80;1;1;0;0;0;0
+62072;22677;2;168;90.0;120;80;1;1;1;1;1;1
+62074;21383;1;166;60.0;120;80;1;1;0;0;1;1
+62075;18937;2;160;61.0;120;80;2;2;1;1;1;0
+62077;17452;2;170;92.0;120;80;1;1;0;0;1;0
+62078;21019;1;153;70.0;90;70;1;1;0;0;1;0
+62080;18257;1;168;75.0;120;70;1;1;0;0;1;0
+62081;19034;1;153;75.0;140;90;1;1;0;0;1;1
+62082;22209;1;168;64.0;160;90;1;1;0;0;0;1
+62083;20462;2;173;97.0;140;80;1;1;0;0;1;1
+62084;23165;2;166;77.0;120;70;1;1;0;1;1;1
+62085;18515;1;163;58.0;120;80;1;1;0;0;1;0
+62086;16210;1;163;64.0;110;70;2;2;0;0;1;0
+62087;22743;2;178;79.0;120;80;1;1;0;0;0;1
+62088;18109;2;164;76.0;90;60;1;1;0;0;1;0
+62089;21872;1;158;65.0;120;60;1;1;0;0;1;0
+62090;16726;1;158;78.0;120;80;1;1;0;0;1;0
+62092;20506;1;168;85.0;166;1000;1;1;0;0;1;1
+62093;20447;1;162;64.0;130;90;3;3;0;0;1;1
+62094;22820;2;163;69.0;140;90;1;1;0;0;1;1
+62095;19819;1;170;96.0;130;90;3;1;1;1;1;0
+62097;14802;1;167;78.0;120;80;1;1;0;0;0;0
+62098;14556;2;182;100.0;130;90;1;1;0;0;1;1
+62101;19496;1;165;90.0;130;80;1;1;0;0;1;0
+62102;21036;1;154;71.0;130;80;3;3;0;0;0;1
+62105;19437;1;152;92.0;120;80;1;1;0;0;0;1
+62106;21225;1;162;80.0;130;90;3;3;0;0;1;1
+62107;22638;1;156;69.0;140;90;3;1;0;0;1;1
+62108;19792;2;159;70.0;130;80;1;1;0;0;1;0
+62109;21795;1;162;79.0;120;80;1;1;0;0;0;1
+62111;17521;2;175;90.0;140;90;1;1;0;0;1;1
+62112;23156;1;165;90.0;150;90;1;1;0;0;0;1
+62114;18491;1;162;65.0;140;90;1;1;0;0;1;0
+62115;17967;2;172;69.0;120;80;2;1;1;0;1;1
+62116;23155;1;156;58.0;140;90;1;1;0;0;1;1
+62117;18187;2;169;51.0;140;90;1;2;1;1;1;1
+62118;18732;1;159;65.0;120;80;1;1;0;0;1;0
+62119;19706;2;171;76.0;120;80;1;1;1;0;1;0
+62121;20491;1;155;103.0;120;80;1;1;0;0;1;1
+62122;21039;1;165;65.0;120;70;1;1;0;0;1;0
+62123;19134;2;173;56.0;100;70;1;1;0;0;0;0
+62124;21179;1;178;78.0;80;60;1;1;0;0;0;0
+62125;15400;2;170;72.0;120;80;1;1;1;0;1;0
+62126;18326;1;161;124.0;140;100;2;1;0;0;1;1
+62127;22910;1;165;64.0;120;80;1;2;0;0;1;1
+62128;21798;1;168;75.0;120;80;1;1;0;0;1;0
+62129;21109;1;160;60.0;120;80;1;1;0;0;0;0
+62130;18775;1;165;52.0;170;70;1;1;0;0;0;1
+62131;16977;1;156;56.0;100;70;2;1;0;0;1;0
+62132;18894;2;176;87.0;120;80;1;1;0;0;1;0
+62133;19601;1;158;62.0;110;70;1;1;0;0;1;0
+62135;23391;1;158;55.0;120;70;1;1;0;0;1;1
+62136;21327;1;160;115.0;140;90;1;3;0;0;1;0
+62139;22517;2;169;75.0;140;90;3;3;0;0;1;1
+62140;18062;1;163;88.0;120;80;1;1;0;0;1;0
+62142;21165;1;160;67.0;110;60;2;1;0;0;1;0
+62143;23148;1;157;57.0;120;79;1;1;0;0;1;0
+62144;16034;1;150;80.0;120;80;1;1;0;0;0;0
+62147;20328;1;159;64.0;110;70;1;1;0;0;1;0
+62150;16680;1;171;73.0;150;90;1;1;0;0;0;1
+62152;21945;2;167;72.0;140;90;1;1;1;0;0;0
+62154;19534;1;158;62.0;1300;80;3;1;0;1;1;1
+62155;23305;1;152;67.0;120;80;1;1;0;0;1;1
+62156;19767;1;157;89.0;130;100;1;1;0;0;1;0
+62158;18113;2;172;89.0;160;110;1;1;0;0;0;1
+62159;14459;1;169;93.0;120;80;2;1;0;0;1;0
+62160;18191;1;170;60.0;110;80;1;1;0;0;1;0
+62161;21332;2;169;86.0;130;90;1;1;1;0;1;0
+62162;17528;2;172;86.0;120;80;1;1;0;0;1;0
+62163;23345;1;156;73.0;200;100;3;1;0;0;1;1
+62164;14724;1;162;98.0;160;100;1;1;0;0;1;1
+62166;18850;1;167;94.0;150;100;2;1;0;0;1;1
+62167;20384;1;157;79.0;130;80;2;1;0;0;1;0
+62168;21802;1;162;62.0;120;80;1;2;0;0;0;0
+62170;18308;2;162;56.0;120;80;1;1;0;0;1;0
+62171;17438;1;164;75.0;150;100;1;2;0;0;0;1
+62172;17294;1;160;85.0;120;80;1;1;0;0;1;0
+62173;16604;1;168;74.0;160;90;1;1;0;0;1;1
+62174;17621;2;167;75.0;140;80;1;1;0;0;1;1
+62175;19945;1;157;95.0;120;80;1;1;0;0;1;1
+62176;22612;1;154;70.0;120;90;1;1;0;0;0;1
+62177;19687;2;175;74.0;120;80;1;1;0;0;1;1
+62178;23217;2;165;79.0;120;80;1;1;0;0;1;0
+62179;21958;1;165;65.0;120;70;1;1;0;0;0;1
+62180;17837;2;165;63.0;120;80;1;1;1;0;1;0
+62181;20486;1;162;95.0;110;80;1;1;0;0;1;0
+62182;19784;1;156;74.0;170;1000;1;1;0;0;0;1
+62183;19735;1;174;68.0;120;60;1;1;0;0;1;0
+62184;23272;2;176;84.0;140;90;1;1;0;0;1;1
+62185;22206;1;165;66.0;120;80;1;1;0;0;0;1
+62186;19715;1;174;69.0;120;80;1;1;0;0;1;0
+62188;14886;2;174;75.0;140;90;2;2;1;0;1;1
+62189;20932;1;157;82.0;120;80;1;1;0;0;1;0
+62193;15154;1;166;96.0;150;100;2;2;0;0;1;1
+62194;22609;2;172;93.0;120;80;1;1;0;0;1;1
+62196;18477;1;160;62.0;120;80;1;1;0;0;1;0
+62197;18351;1;164;72.0;140;80;1;1;0;0;0;0
+62198;23269;2;167;66.0;100;80;3;2;1;0;1;0
+62199;18164;2;175;107.0;150;90;2;1;1;0;0;1
+62201;23251;2;166;91.0;120;60;3;1;1;1;1;1
+62202;16679;2;170;68.0;120;80;1;1;0;0;1;0
+62204;19890;2;185;85.0;120;80;1;1;0;0;1;0
+62206;21839;1;160;73.0;120;80;1;1;0;0;1;0
+62208;14589;1;155;68.0;120;80;1;1;0;0;0;0
+62209;23383;2;155;51.0;110;80;2;1;0;0;1;1
+62211;21377;1;165;80.0;140;90;1;2;0;0;1;1
+62212;22047;2;172;105.0;130;90;3;3;0;0;1;1
+62213;19692;1;162;70.0;120;80;1;1;0;0;1;1
+62214;16943;2;172;79.0;160;90;1;1;0;0;1;0
+62217;22627;1;158;92.0;140;90;3;3;0;0;0;0
+62219;21219;1;155;84.0;140;90;1;1;0;0;0;1
+62220;14664;1;165;74.0;120;70;1;1;0;0;1;1
+62221;18859;1;160;63.0;120;80;1;1;0;0;0;0
+62223;22415;2;173;63.0;110;60;1;1;0;0;1;1
+62224;22357;2;155;77.0;140;90;3;1;0;0;1;1
+62225;16350;2;168;70.0;110;70;1;1;0;0;1;0
+62227;23103;1;153;71.0;120;80;2;1;0;0;1;1
+62228;21387;1;166;63.0;120;80;3;3;0;0;1;1
+62231;21679;1;155;62.0;120;90;1;2;0;0;1;1
+62233;19642;2;168;70.0;120;80;1;1;0;0;1;0
+62236;22710;1;159;71.0;140;90;1;1;0;0;1;1
+62237;21916;1;166;90.0;180;110;1;1;0;0;1;0
+62238;22690;2;158;64.0;120;80;1;1;0;0;1;1
+62239;18336;1;165;60.0;120;80;1;1;0;0;0;0
+62243;18321;1;153;85.0;120;80;1;1;0;0;1;0
+62244;22797;1;165;80.0;130;90;1;1;0;0;0;0
+62246;16700;2;171;107.0;120;80;1;1;0;0;0;1
+62247;15988;1;157;52.0;100;60;1;1;0;0;1;0
+62248;23232;1;165;65.0;120;80;3;3;0;0;1;1
+62250;18261;1;149;44.0;90;60;1;1;0;0;1;0
+62251;16587;1;163;63.0;120;90;1;1;0;0;1;1
+62252;15140;1;165;65.0;120;80;1;1;0;0;0;0
+62253;23372;1;155;87.0;220;1120;3;2;0;0;1;1
+62254;18039;1;174;88.0;130;90;1;1;0;0;0;0
+62255;22485;1;162;110.0;120;80;1;1;0;0;1;0
+62256;20548;1;157;59.0;110;70;1;1;0;0;1;0
+62257;17340;1;155;66.0;120;80;1;2;0;0;0;0
+62258;20319;1;171;131.0;160;90;2;2;0;0;1;1
+62260;21874;2;172;84.0;120;90;1;1;0;0;1;0
+62261;22814;2;168;82.0;110;80;1;1;0;0;1;1
+62264;17490;1;164;55.0;110;80;1;1;0;0;1;0
+62265;23375;2;164;79.0;150;70;2;3;0;0;1;1
+62268;18084;2;172;84.0;120;80;1;1;0;0;0;0
+62269;16671;1;162;76.0;120;70;1;1;0;0;1;0
+62270;20513;1;159;71.0;140;80;3;1;0;0;0;1
+62271;20321;1;161;64.0;150;90;2;1;0;0;1;1
+62272;21086;1;158;84.0;150;100;3;1;0;0;0;1
+62273;21100;1;158;90.0;160;90;1;1;0;0;1;1
+62274;22566;2;178;79.0;140;90;1;1;0;0;0;1
+62280;16221;1;164;68.0;120;80;1;1;0;0;0;0
+62286;18919;1;170;72.0;120;80;1;1;0;0;1;0
+62287;20964;1;160;79.0;115;70;1;1;0;0;1;0
+62288;21004;1;158;55.0;110;70;1;1;0;0;1;0
+62289;19547;1;169;75.0;120;80;2;1;0;0;1;1
+62291;23071;1;168;90.0;150;90;1;1;0;0;1;1
+62292;16683;1;161;73.0;130;70;1;1;0;0;1;0
+62293;16616;1;164;89.0;140;90;1;1;0;0;1;1
+62297;20384;1;164;111.0;120;80;1;1;0;0;1;0
+62298;14789;2;165;72.0;120;80;2;2;0;0;1;0
+62300;21067;1;167;74.0;130;90;1;1;0;0;0;1
+62301;19745;1;165;63.0;120;80;2;3;0;0;0;1
+62302;16592;1;161;72.0;120;80;1;1;0;0;1;0
+62304;20655;2;165;63.0;140;100;2;1;0;0;1;1
+62307;22634;2;170;95.0;120;80;1;1;0;0;1;1
+62308;22536;1;148;86.0;120;80;1;1;0;0;1;0
+62309;23342;2;168;82.0;130;80;1;1;1;0;1;0
+62310;21079;1;156;72.0;120;80;3;3;0;0;0;1
+62312;20523;1;161;73.0;120;80;1;1;0;0;0;0
+62313;18310;2;167;58.0;125;80;1;1;0;0;0;1
+62314;18943;2;184;88.0;120;80;1;1;0;0;1;1
+62315;19777;2;163;63.0;120;80;1;1;0;0;0;0
+62319;21663;1;162;60.0;120;80;1;1;0;0;1;0
+62321;16672;1;165;67.0;110;70;1;1;0;0;1;0
+62322;15276;1;168;75.0;110;70;1;1;0;0;1;0
+62323;19584;2;181;77.0;120;80;1;1;0;0;1;0
+62325;15269;1;170;80.0;120;80;1;1;0;0;1;0
+62327;15274;1;161;56.0;120;80;2;2;0;0;1;1
+62328;19737;1;156;93.0;120;80;3;3;0;0;0;1
+62329;18372;2;165;75.0;120;80;1;1;0;0;1;0
+62331;14475;2;165;55.0;120;80;1;1;0;0;1;0
+62332;20321;2;189;88.0;110;70;1;1;0;0;1;1
+62333;21877;1;160;85.0;120;80;2;1;0;0;1;0
+62334;21151;2;169;82.0;120;90;1;1;0;0;1;0
+62335;21747;2;165;82.0;130;90;1;1;0;0;1;1
+62336;18880;2;167;62.0;110;80;1;1;1;0;1;0
+62337;20429;1;178;85.0;150;90;2;1;0;0;0;1
+62338;16534;1;153;60.0;120;70;1;1;0;0;1;1
+62340;22652;1;158;68.0;130;90;2;1;0;0;1;1
+62341;22746;1;158;64.0;140;80;2;2;0;0;1;1
+62343;21225;1;157;58.0;150;90;1;1;0;0;1;1
+62344;16690;1;156;111.0;160;110;1;1;0;0;1;0
+62346;18300;1;165;65.0;120;80;1;1;0;0;1;0
+62347;14661;1;165;65.0;110;70;1;1;0;0;1;0
+62348;17261;1;172;67.0;130;80;3;1;0;0;1;1
+62349;19630;1;155;54.0;120;80;1;1;0;0;1;0
+62350;21834;2;165;72.0;140;90;1;1;0;0;1;0
+62351;16835;1;158;68.0;110;80;1;1;0;0;1;1
+62352;14555;1;156;76.0;130;90;2;1;0;0;0;1
+62355;21285;2;168;72.0;130;80;3;1;0;0;1;1
+62356;19879;2;156;80.0;120;80;1;1;0;0;1;0
+62357;21254;1;165;71.0;140;90;1;1;0;0;0;1
+62358;18255;1;165;78.0;153;76;1;1;0;1;1;1
+62360;14555;2;164;73.0;120;80;1;1;0;0;1;0
+62362;18925;1;159;52.0;110;80;1;1;0;0;1;0
+62364;23594;1;170;80.0;150;90;2;1;0;0;0;1
+62365;19890;1;165;69.0;140;90;2;1;0;0;0;0
+62366;22756;1;165;51.5;130;90;1;1;0;0;1;1
+62368;21144;2;168;92.0;160;100;1;1;1;0;1;1
+62370;18322;1;163;59.0;120;80;1;1;0;0;1;0
+62371;16263;1;168;65.0;110;70;1;1;0;0;0;1
+62372;17584;1;163;64.0;110;70;2;1;0;0;1;0
+62374;18434;1;168;63.0;110;70;1;1;0;0;1;0
+62375;18368;1;156;80.0;130;90;1;1;0;0;1;1
+62377;23327;2;172;83.0;130;90;2;1;0;0;1;1
+62379;21083;2;165;84.0;170;100;1;2;0;0;0;0
+62380;15321;1;156;70.0;90;70;1;1;0;0;1;1
+62382;18992;1;171;63.0;110;80;1;3;0;0;1;1
+62383;23281;1;164;72.0;140;90;1;1;0;0;1;1
+62388;18218;1;159;126.0;150;90;1;3;0;0;1;1
+62390;20389;1;161;74.0;110;70;2;1;0;0;1;0
+62391;18151;1;165;70.0;140;80;3;1;0;0;1;0
+62392;21219;2;169;72.0;120;80;1;1;0;0;0;1
+62393;20593;2;168;68.0;130;90;1;1;0;0;0;1
+62394;18838;1;153;70.0;112;80;1;1;0;0;1;0
+62396;19549;1;165;115.0;120;80;1;1;0;0;1;0
+62397;15176;1;164;74.0;120;70;1;2;0;0;1;0
+62399;21932;2;174;80.0;140;90;2;1;0;0;1;1
+62401;19579;1;168;65.0;120;80;1;1;0;0;1;1
+62402;15098;1;160;61.0;110;70;1;1;0;0;0;0
+62403;19899;1;170;71.0;120;80;1;1;0;0;0;1
+62404;20437;1;155;80.0;110;80;2;2;0;0;1;0
+62405;21022;2;158;71.0;120;80;2;1;1;0;1;1
+62406;20351;2;179;68.0;120;80;1;1;0;0;1;0
+62407;21861;2;171;64.0;120;80;2;1;0;0;1;1
+62410;19055;2;172;70.0;120;80;1;1;0;0;1;0
+62411;17607;1;155;60.0;120;80;1;1;0;0;1;0
+62413;16166;2;161;73.0;140;90;1;1;0;0;1;1
+62415;19439;2;166;66.0;140;90;1;1;0;0;1;1
+62417;21820;1;174;72.0;120;90;1;1;0;0;1;0
+62418;20899;1;170;70.0;140;90;1;1;0;0;1;1
+62420;18334;1;160;78.0;160;90;2;1;0;1;1;0
+62421;21159;2;179;118.0;140;90;1;1;1;0;1;1
+62423;15487;1;169;74.0;120;80;1;1;0;0;1;1
+62424;21703;1;156;90.0;140;90;1;1;0;0;1;1
+62425;17514;1;158;70.0;120;80;1;2;0;0;0;0
+62426;23239;1;158;59.0;130;80;1;1;0;0;1;0
+62427;18794;1;164;60.0;140;80;1;1;0;0;1;1
+62428;20421;2;173;87.0;116;80;1;1;1;1;1;0
+62430;19738;1;163;70.0;120;80;2;1;0;0;1;0
+62431;23188;2;164;102.0;160;90;3;3;0;0;1;1
+62432;22788;1;168;70.0;120;80;1;1;0;0;0;0
+62433;21691;1;160;80.0;160;100;1;1;0;0;1;1
+62435;20983;2;178;69.0;135;85;2;2;0;0;1;0
+62436;20354;1;165;65.0;120;79;3;3;0;0;1;0
+62439;17361;1;163;76.0;80;120;2;1;0;0;1;1
+62440;19059;2;175;71.0;90;60;1;2;0;0;1;1
+62441;15314;2;174;78.0;120;80;1;3;0;0;0;0
+62445;19958;1;170;68.0;120;80;1;1;0;0;1;0
+62447;20466;1;160;99.0;170;90;2;3;0;0;1;1
+62449;18273;1;168;100.0;110;70;1;1;0;0;1;0
+62450;20143;2;174;82.0;150;90;1;1;0;0;1;1
+62453;15341;2;166;60.0;120;80;1;1;1;0;1;0
+62454;21105;1;165;90.0;140;90;1;1;0;0;1;1
+62455;20558;1;165;63.0;120;80;1;2;0;0;1;0
+62456;16003;1;156;78.0;120;80;1;2;0;0;0;0
+62457;21769;2;161;73.0;120;80;1;1;0;0;1;0
+62458;18254;1;170;72.0;120;80;1;1;0;0;1;0
+62460;21261;2;169;75.0;120;80;1;1;0;0;1;1
+62462;22517;1;162;62.0;120;80;1;1;0;0;1;0
+62464;23367;1;170;68.0;120;80;2;1;0;0;1;0
+62466;22340;1;156;90.0;110;70;1;1;0;0;1;1
+62467;15908;1;160;81.0;100;70;1;1;0;0;1;0
+62469;17775;1;174;74.0;120;80;1;1;0;0;0;1
+62470;18399;2;160;65.0;120;80;1;1;0;0;0;1
+62471;17497;2;160;70.0;120;80;1;1;0;0;1;0
+62472;23387;2;155;74.0;160;100;1;1;0;0;1;1
+62473;20477;2;168;84.0;130;90;1;1;1;0;1;1
+62475;18736;1;153;57.0;110;70;1;1;0;0;1;0
+62477;21394;1;168;82.0;140;80;1;1;0;0;1;1
+62478;16524;1;170;80.0;140;90;1;1;0;0;1;1
+62479;19804;1;156;72.0;120;60;1;1;0;0;1;0
+62480;20495;1;155;62.0;140;80;1;1;0;0;1;1
+62481;18395;1;164;68.0;120;80;1;1;0;0;1;0
+62482;16189;1;155;57.0;140;90;1;1;0;0;0;0
+62485;18257;1;164;80.0;90;60;1;1;0;0;1;0
+62486;20244;1;149;53.0;140;90;1;1;0;0;1;1
+62488;23364;1;167;89.0;110;70;1;1;0;0;1;1
+62489;19052;1;165;75.0;100;70;1;1;0;0;1;0
+62491;22856;2;179;70.0;120;80;1;1;0;0;1;0
+62492;18910;1;168;97.0;120;70;2;1;0;0;1;1
+62493;19073;1;155;67.0;100;70;1;1;0;0;1;0
+62495;15504;1;164;82.0;110;70;1;1;0;0;1;0
+62496;18163;1;168;70.0;160;90;1;1;0;0;1;1
+62497;20338;1;149;60.0;110;80;2;1;0;0;1;0
+62498;21377;1;151;55.0;120;80;3;3;0;1;1;1
+62499;22637;1;174;90.0;130;100;1;1;1;0;1;0
+62500;19870;1;164;70.0;120;90;2;2;0;0;0;0
+62501;18814;2;165;70.0;130;89;1;1;0;0;1;0
+62502;15860;1;156;96.0;130;90;3;1;0;0;1;1
+62503;22504;2;178;86.0;150;100;1;1;1;0;1;1
+62505;20281;1;167;80.0;127;80;1;1;0;0;0;1
+62506;16070;1;165;80.0;110;90;3;3;0;0;0;1
+62507;16760;1;163;62.0;120;80;1;1;0;0;1;0
+62508;18813;1;173;78.0;120;80;1;1;0;0;1;0
+62510;18330;1;154;61.0;90;60;1;1;0;0;1;0
+62514;19632;2;173;68.0;110;70;1;1;1;0;1;0
+62515;19615;2;178;90.0;140;90;2;2;0;0;1;1
+62516;14727;2;171;69.0;120;80;1;1;0;0;1;0
+62517;14670;2;167;77.0;120;80;1;1;0;0;0;0
+62518;18302;2;174;64.0;100;90;1;1;0;0;0;0
+62519;18512;1;168;71.0;120;80;1;1;0;0;1;0
+62524;23564;2;160;76.0;120;80;2;1;0;0;1;0
+62525;21225;1;165;65.0;120;80;1;1;0;0;1;0
+62526;21989;2;163;68.0;120;80;1;1;0;0;0;1
+62527;15381;2;172;80.0;120;80;1;1;0;0;1;0
+62528;18475;2;175;78.0;120;80;1;1;0;0;1;0
+62529;18050;1;135;37.0;150;90;2;3;0;0;1;0
+62530;16148;1;152;67.0;100;70;1;1;0;0;1;0
+62531;21822;2;168;83.0;130;90;1;1;1;1;1;0
+62532;20292;1;165;68.0;150;90;1;1;0;0;1;1
+62533;21089;1;168;98.0;140;90;1;1;0;0;1;1
+62535;16005;2;170;73.0;150;90;1;1;0;0;1;1
+62536;20543;1;160;66.0;130;90;2;1;0;0;1;1
+62537;22047;1;167;60.0;130;80;3;2;0;0;0;1
+62538;19759;2;169;76.0;100;80;1;1;0;0;1;0
+62539;17580;2;172;74.0;150;90;1;1;0;0;1;1
+62541;18857;1;154;55.0;120;80;1;1;0;0;1;0
+62542;22622;2;169;71.0;120;80;1;1;1;0;0;0
+62543;21350;1;164;58.0;120;80;1;1;0;0;1;0
+62545;20490;1;164;90.0;150;90;1;1;0;0;1;1
+62546;22543;1;170;89.0;110;75;1;1;0;0;1;0
+62548;16742;1;171;80.0;120;80;1;2;0;0;1;0
+62551;18711;1;150;66.0;120;70;1;1;0;0;1;0
+62552;14678;1;165;73.0;120;80;1;1;0;0;1;0
+62553;21101;1;160;67.0;150;80;2;1;0;1;1;0
+62557;21106;2;170;69.0;130;80;1;1;1;1;1;0
+62560;20218;2;172;72.0;144;105;2;2;0;0;1;0
+62561;21747;1;158;62.0;150;90;2;3;0;0;1;1
+62562;18168;2;171;70.0;120;80;1;1;0;0;1;0
+62563;19797;2;171;60.0;110;70;1;1;1;0;1;0
+62565;21075;2;165;75.0;110;70;1;1;0;0;0;0
+62566;14792;2;163;70.0;130;90;1;1;1;0;0;1
+62568;20271;1;160;60.0;120;80;1;1;0;0;1;0
+62569;19640;2;175;76.0;120;80;1;1;0;0;1;0
+62570;20635;1;168;70.0;130;90;1;1;0;1;1;0
+62571;21929;1;157;65.0;120;80;1;1;0;0;1;0
+62572;18269;1;161;79.0;110;70;1;1;0;0;1;0
+62573;21022;2;167;67.0;130;80;1;1;0;1;1;0
+62575;18245;1;160;60.0;160;60;1;1;0;0;1;1
+62576;17011;1;152;54.0;110;80;1;1;0;0;1;0
+62577;14660;2;170;100.0;120;80;1;1;0;0;1;0
+62578;15927;1;168;79.0;140;100;2;1;0;0;1;1
+62580;19568;1;164;80.0;130;90;1;1;0;0;1;0
+62582;19614;1;170;75.0;120;80;1;1;0;0;1;0
+62584;16064;2;168;98.0;120;80;1;1;0;0;1;0
+62585;16611;1;158;88.0;140;90;3;1;0;0;0;1
+62587;20330;1;161;64.0;110;90;3;3;0;0;1;0
+62588;19916;1;164;72.0;110;80;1;1;0;0;1;1
+62589;16869;1;161;90.0;120;80;1;1;0;0;0;1
+62591;19792;2;169;70.0;120;80;1;1;0;0;0;0
+62592;21296;1;165;62.0;120;80;1;1;0;0;1;1
+62595;19931;2;175;76.0;160;100;1;1;1;0;1;1
+62597;21261;2;180;65.0;120;80;3;3;1;0;1;1
+62598;22498;2;177;92.0;140;90;2;1;0;0;1;1
+62599;19004;1;160;87.0;140;90;1;2;0;0;1;1
+62600;19470;1;164;105.0;140;80;1;1;0;0;1;0
+62602;21260;1;164;75.0;120;80;2;1;0;0;1;0
+62603;21971;1;167;83.0;160;100;1;1;0;0;1;1
+62604;23221;1;160;86.0;120;80;3;1;0;0;0;1
+62605;21897;1;164;72.0;110;70;1;1;0;0;1;1
+62606;18990;2;168;70.0;120;80;1;1;1;0;1;0
+62607;22453;2;166;92.0;120;70;1;1;0;0;1;0
+62609;19758;2;168;72.0;140;90;1;1;0;0;0;1
+62611;21131;1;149;52.0;130;90;1;1;0;0;1;1
+62612;21030;1;162;70.0;120;80;1;1;0;0;1;0
+62613;21775;1;156;88.0;130;70;1;3;0;0;1;0
+62614;16863;2;170;84.0;140;80;1;2;0;0;1;1
+62615;19427;1;161;95.0;130;80;1;1;0;0;1;0
+62618;21166;1;168;96.0;140;90;1;1;0;0;1;1
+62619;21085;1;159;80.0;130;90;1;1;0;0;1;1
+62621;18411;1;171;76.0;140;100;2;1;0;0;1;0
+62622;19637;2;178;90.0;125;75;2;1;1;1;1;0
+62623;17486;1;166;64.0;150;90;1;1;0;0;1;1
+62624;19845;2;165;85.0;180;100;1;1;0;0;1;1
+62625;19806;2;172;69.0;120;80;1;3;0;0;1;0
+62627;20446;1;165;65.0;120;80;3;3;0;0;0;0
+62628;21023;1;158;56.0;130;90;3;1;0;0;1;1
+62630;23371;1;166;85.0;100;70;1;1;0;0;1;0
+62631;17395;1;160;53.0;120;80;1;1;0;0;1;1
+62632;14619;2;181;117.0;150;80;1;2;1;0;1;0
+62634;20273;2;178;93.0;100;70;2;2;0;1;0;0
+62635;16516;2;168;75.0;130;80;1;1;0;0;1;0
+62636;21035;2;174;91.0;120;80;1;3;1;0;1;0
+62638;18995;2;170;95.0;130;80;1;1;0;0;1;0
+62639;16835;1;154;78.0;120;80;1;1;0;0;1;0
+62640;15935;2;180;72.0;120;80;1;1;0;0;1;0
+62641;14711;1;168;72.0;140;90;2;1;0;0;1;1
+62643;16065;2;169;71.0;140;80;2;1;0;0;0;1
+62644;14838;1;159;65.0;120;80;1;1;0;0;1;0
+62645;19699;2;161;70.0;140;90;2;2;0;0;1;1
+62646;22714;1;160;75.0;140;90;1;1;0;0;1;1
+62647;17567;2;167;102.0;120;80;1;1;0;0;1;0
+62648;19530;1;149;72.0;130;80;1;1;0;0;1;1
+62649;21191;2;169;71.0;120;80;1;1;0;0;1;0
+62650;14746;1;155;42.0;90;60;1;1;0;0;1;0
+62651;18414;1;160;62.0;120;80;1;1;0;0;1;1
+62653;16631;1;158;51.0;120;80;2;1;1;1;1;0
+62656;15557;1;176;79.0;140;80;1;1;0;0;1;1
+62658;18368;2;168;92.0;150;90;1;1;0;0;1;1
+62659;20464;2;167;115.0;170;1100;3;1;0;0;1;1
+62660;18768;1;160;62.0;120;80;2;1;0;0;1;1
+62661;21668;2;173;98.0;170;100;1;1;0;0;1;1
+62662;16680;2;175;75.0;120;80;1;1;0;0;1;1
+62665;21769;1;160;64.0;120;80;1;1;0;0;1;1
+62666;20473;2;175;96.0;140;90;1;2;0;0;1;0
+62667;18940;1;157;80.0;160;100;1;1;0;0;1;0
+62668;20229;1;163;91.0;140;90;1;1;0;0;1;1
+62670;17333;1;165;64.0;120;80;1;1;0;0;1;0
+62671;18332;2;175;69.0;120;80;1;1;0;0;0;0
+62673;15926;2;164;70.0;120;80;1;1;0;0;1;0
+62675;21382;2;170;85.0;120;80;3;3;0;0;0;1
+62676;21133;1;152;63.0;120;70;1;1;0;0;1;0
+62677;16917;2;149;51.0;110;70;1;1;1;0;1;0
+62679;19773;1;154;65.0;140;90;3;1;0;0;1;1
+62681;18964;1;158;68.0;130;80;3;3;0;0;1;1
+62683;23154;1;163;64.0;150;100;1;2;0;0;1;1
+62684;18951;1;160;76.0;110;70;1;1;0;0;1;0
+62685;19298;1;165;65.0;120;80;1;1;0;0;1;1
+62686;21028;2;180;105.0;120;80;1;1;0;0;1;1
+62688;14724;2;156;71.0;140;90;1;1;0;0;1;0
+62689;23153;1;167;68.0;125;70;1;1;0;0;1;1
+62690;20473;1;150;62.0;130;100;3;1;0;0;1;1
+62692;18190;2;173;76.0;120;80;1;1;0;0;1;0
+62693;23293;1;162;72.0;140;90;1;1;0;0;1;1
+62694;14592;1;155;74.0;100;70;1;1;0;0;1;0
+62695;19549;1;154;68.0;130;80;1;1;0;0;1;1
+62697;16784;1;170;102.0;130;90;3;1;0;0;1;1
+62698;19740;1;158;52.0;100;60;2;1;0;0;1;0
+62699;20434;2;163;63.0;120;80;1;1;0;0;0;1
+62700;20271;2;172;112.0;160;100;3;3;0;0;1;1
+62702;21373;2;164;71.0;170;110;3;1;1;0;1;1
+62703;23321;2;160;74.0;160;80;1;1;0;0;1;0
+62704;14386;1;158;54.0;120;80;2;1;0;0;0;0
+62706;19571;2;178;91.0;110;70;2;2;0;0;0;1
+62707;21765;2;167;70.0;140;90;3;3;0;0;1;1
+62708;20359;2;160;60.0;120;80;1;1;1;0;1;1
+62709;21096;2;169;66.0;140;80;1;1;0;0;0;1
+62710;21725;1;165;72.0;140;90;1;1;0;0;0;1
+62711;18184;2;158;80.0;140;60;1;1;0;0;1;1
+62712;19130;1;175;80.0;130;90;2;1;0;0;1;1
+62713;22476;2;170;60.0;130;90;1;1;1;0;1;0
+62714;16923;2;164;96.0;110;70;2;1;0;0;0;0
+62715;21317;1;163;68.0;160;90;1;1;0;0;1;1
+62716;21258;2;152;85.0;140;100;1;1;0;0;1;1
+62717;20557;1;156;54.0;120;80;1;1;0;0;1;1
+62718;15225;1;159;70.0;120;70;2;1;0;0;0;0
+62719;19703;2;169;73.0;120;80;3;3;0;0;1;0
+62720;18103;1;164;95.0;120;80;1;1;0;0;1;0
+62721;19011;2;175;108.0;140;90;2;1;0;0;1;1
+62726;17195;1;169;115.0;150;90;2;2;0;0;1;1
+62727;17746;1;172;77.0;160;70;1;3;0;0;0;1
+62728;18195;1;154;51.0;110;80;1;1;0;0;1;0
+62729;19733;1;172;66.0;120;80;1;1;0;0;1;0
+62732;21890;1;154;60.0;150;90;1;1;0;0;1;1
+62735;21928;1;166;61.0;90;70;2;1;0;0;1;1
+62736;17482;1;156;72.0;120;65;3;1;0;0;1;1
+62738;22604;1;160;84.0;130;80;3;1;0;0;0;1
+62739;20356;2;168;76.0;120;80;1;1;1;1;1;1
+62740;20266;1;166;71.0;120;90;1;1;0;0;1;0
+62741;21000;2;164;74.0;160;90;3;3;0;0;1;1
+62742;21168;1;168;78.0;140;90;1;1;0;0;1;1
+62743;19919;1;165;89.0;140;90;1;1;0;1;0;1
+62745;17481;1;158;62.0;110;70;1;1;0;0;1;1
+62747;22203;1;164;68.0;120;80;1;1;0;0;1;1
+62749;20154;1;151;74.0;160;80;2;1;0;0;1;1
+62750;20323;1;169;70.0;140;80;2;1;0;0;1;1
+62751;16817;1;167;74.0;120;80;1;1;0;1;1;1
+62752;19940;1;149;77.0;130;80;2;1;0;0;1;1
+62753;16251;1;162;58.0;120;80;1;1;0;0;1;0
+62754;18802;1;164;78.0;108;0;2;1;0;0;1;0
+62757;21854;1;169;70.0;160;1000;1;1;0;0;0;1
+62758;22759;2;166;75.0;120;70;1;1;0;0;1;0
+62759;19133;1;160;65.0;120;80;2;2;0;0;1;0
+62761;23265;1;169;96.0;120;80;3;3;0;0;1;1
+62763;20437;1;173;98.0;140;90;1;1;0;0;1;1
+62766;14762;1;162;66.0;120;90;1;1;0;0;0;1
+62767;19553;1;165;105.0;140;90;3;3;0;0;1;1
+62769;14641;2;180;80.0;150;90;1;1;0;0;1;1
+62770;17583;1;170;100.0;170;90;1;1;0;0;1;1
+62773;18789;1;170;76.0;120;80;1;1;0;0;1;0
+62775;16111;1;153;63.0;120;70;1;1;0;0;1;1
+62776;21316;1;156;85.0;140;90;3;1;0;0;0;1
+62778;22571;1;164;80.0;120;90;3;1;0;0;1;0
+62779;22025;1;174;65.0;120;80;1;1;0;0;1;0
+62780;23066;2;165;77.0;150;90;2;1;1;0;1;1
+62781;19049;1;166;66.0;160;90;1;1;0;0;1;0
+62782;14387;2;175;59.0;130;80;2;1;0;1;1;0
+62783;18149;1;160;62.0;120;80;1;1;0;0;1;0
+62784;19006;1;160;58.0;120;80;1;1;0;0;1;0
+62785;18135;2;170;86.0;120;80;1;1;1;0;1;0
+62789;20928;2;172;77.0;130;90;1;1;0;0;1;1
+62790;23462;2;160;60.0;120;80;1;1;0;0;0;1
+62791;21991;1;156;62.0;120;80;2;2;0;0;1;1
+62792;22737;1;150;50.0;110;70;1;1;0;0;0;0
+62794;23342;1;166;45.0;130;80;1;1;0;0;1;1
+62795;15154;2;170;75.0;120;79;1;1;0;0;1;0
+62796;14611;1;164;70.0;120;80;1;1;0;0;0;0
+62797;21201;2;176;89.0;130;80;2;1;0;0;1;1
+62799;19729;2;180;83.0;110;70;1;1;0;0;1;0
+62800;16004;1;163;88.0;120;80;1;1;0;0;0;0
+62801;21375;1;169;70.0;100;70;1;1;0;0;1;1
+62803;20972;2;176;88.0;120;80;1;1;0;0;1;1
+62804;20493;1;170;78.0;170;100;3;2;0;0;0;1
+62805;20485;1;160;98.0;120;80;3;1;0;0;1;1
+62806;21644;1;161;71.0;110;80;3;1;0;0;1;0
+62807;16545;1;168;70.0;120;80;1;1;0;0;1;0
+62808;20240;2;182;72.0;120;80;1;1;0;0;1;1
+62809;19548;2;162;62.0;120;80;1;1;0;0;1;0
+62812;18090;1;149;48.0;120;80;1;1;0;0;1;0
+62814;16223;2;165;72.0;120;80;1;1;1;0;0;1
+62816;16822;1;160;70.0;130;90;1;1;0;0;1;1
+62817;19543;1;151;47.0;120;80;1;1;0;0;1;0
+62818;22048;1;167;76.0;110;70;1;1;0;0;1;1
+62819;21903;2;175;77.0;150;100;2;2;0;0;1;1
+62820;22027;2;150;52.0;140;80;2;1;1;0;1;1
+62822;20516;1;169;65.0;120;80;1;1;0;0;1;0
+62824;18106;1;165;65.0;110;58;1;1;0;0;1;1
+62825;20465;2;175;85.0;120;80;1;2;0;0;1;1
+62826;17291;2;175;79.0;120;80;1;1;0;0;1;0
+62827;17364;2;166;67.0;150;90;1;1;1;0;1;0
+62829;22647;2;157;73.0;130;90;1;1;0;0;1;1
+62830;21927;2;180;80.0;110;80;1;1;1;1;1;1
+62831;18080;1;164;74.0;120;80;1;1;0;0;0;0
+62832;18887;1;156;86.0;150;90;2;1;0;0;1;1
+62833;18949;1;156;74.0;120;80;1;1;0;0;1;0
+62835;22838;2;170;70.0;130;80;1;1;0;0;1;1
+62836;23236;2;165;68.0;130;90;3;3;1;0;1;1
+62838;22522;2;160;62.0;140;80;1;1;0;0;1;1
+62840;15825;1;151;86.0;120;80;1;1;0;0;1;0
+62841;21961;2;170;64.0;130;80;1;1;0;0;1;0
+62842;18953;1;169;73.0;140;90;2;2;0;0;1;0
+62844;21950;2;165;77.0;160;1000;1;1;0;0;0;1
+62845;20436;1;165;63.0;170;90;1;1;0;0;1;1
+62846;14367;2;165;60.0;120;80;1;1;0;0;1;0
+62847;21209;1;159;65.0;150;90;1;1;0;0;0;1
+62849;21084;2;180;78.0;120;90;1;1;1;0;0;1
+62850;16630;1;162;64.0;110;70;1;1;0;0;1;0
+62851;21707;1;154;65.0;200;100;3;3;0;0;0;1
+62852;18975;1;173;81.0;130;90;1;1;0;0;1;0
+62853;15188;2;168;76.0;100;70;1;1;0;1;1;0
+62854;19605;1;167;100.0;150;90;1;1;0;0;1;1
+62855;21797;1;156;77.0;130;80;1;1;0;0;1;0
+62856;22437;1;156;62.0;120;80;2;2;0;0;1;1
+62858;20438;2;168;61.0;120;80;1;1;0;0;1;0
+62859;21142;2;190;85.0;120;80;1;1;0;0;1;0
+62861;22652;2;163;70.0;200;180;1;1;0;0;0;1
+62862;15901;1;165;62.0;110;70;1;1;0;0;1;0
+62863;21294;1;164;65.0;120;80;1;1;0;0;1;1
+62864;23449;1;168;79.0;120;80;1;1;0;0;1;0
+62865;19132;1;168;65.0;110;70;1;1;0;0;1;1
+62866;19545;2;174;92.0;150;100;1;1;0;0;1;0
+62867;14573;2;173;66.0;110;60;1;1;1;0;1;0
+62868;15830;1;154;56.0;140;80;1;1;0;0;1;1
+62872;22649;1;174;96.0;140;80;1;2;0;0;1;1
+62874;16082;2;162;64.0;120;90;1;1;0;1;1;0
+62875;17342;1;160;70.0;120;80;1;1;0;0;1;1
+62876;18102;1;166;73.0;120;80;1;1;0;0;1;0
+62877;20388;1;163;79.0;100;70;2;1;0;0;1;0
+62878;18210;1;164;67.0;120;80;1;1;0;0;1;1
+62879;15274;1;158;77.0;130;90;1;1;0;0;1;0
+62880;23335;1;156;89.0;150;80;2;2;0;0;0;1
+62882;19719;1;147;67.0;120;70;1;1;0;0;1;0
+62884;17680;2;164;72.0;180;90;2;2;1;0;1;1
+62885;22775;1;175;73.0;140;90;2;2;0;0;1;1
+62886;18978;1;168;70.0;120;80;1;1;0;0;1;0
+62888;22572;1;167;69.0;180;100;2;2;0;0;1;1
+62889;14642;1;155;65.0;110;70;1;1;0;0;1;0
+62890;20382;2;178;82.0;120;80;1;1;0;0;1;0
+62892;21719;1;150;86.0;180;1000;3;1;0;0;1;1
+62894;22564;2;172;91.0;142;86;1;1;0;0;1;1
+62895;16812;1;150;59.0;100;70;2;1;0;1;0;0
+62896;20663;1;165;65.0;120;80;1;1;0;0;1;0
+62902;18799;2;179;58.0;100;60;1;1;1;1;1;0
+62903;23479;2;178;113.0;180;100;1;1;0;1;1;1
+62904;17553;1;160;63.0;120;60;1;1;0;0;1;0
+62905;19926;1;165;68.0;130;80;3;3;0;1;1;1
+62906;20631;2;176;68.0;210;150;1;1;0;0;1;1
+62907;21402;2;160;61.0;120;80;1;1;0;0;1;0
+62908;20400;2;167;62.0;130;80;2;1;1;1;1;0
+62909;21784;2;165;65.0;120;80;1;1;0;0;1;0
+62910;21430;1;157;70.0;120;80;1;1;1;0;1;0
+62912;15184;1;158;60.0;120;80;1;1;0;0;0;0
+62913;18987;1;163;101.0;100;80;1;2;1;0;1;0
+62914;17703;2;167;98.0;110;80;1;2;0;0;0;1
+62915;20413;1;160;80.0;120;80;1;1;0;0;0;1
+62916;15417;2;179;84.0;120;90;1;1;0;0;1;1
+62917;16283;1;169;80.0;110;80;1;1;0;0;1;0
+62918;18274;1;160;69.0;130;89;2;1;0;0;1;1
+62919;16199;1;172;84.0;125;80;1;1;0;0;1;0
+62921;21220;1;165;74.0;120;8200;2;3;0;0;1;0
+62922;15302;1;158;52.0;120;80;1;1;0;0;1;1
+62924;21173;1;151;67.0;110;70;1;1;0;0;1;1
+62925;20054;1;166;70.0;110;70;1;1;0;0;1;0
+62930;20666;1;159;62.0;120;80;2;2;0;0;1;0
+62931;22440;1;152;102.0;140;80;3;3;0;0;0;0
+62934;21749;1;165;78.0;140;80;1;1;0;0;0;1
+62935;20886;2;169;71.0;120;80;3;1;0;0;1;1
+62936;17619;1;169;88.0;110;70;1;2;0;0;0;1
+62937;18349;2;160;60.0;11;120;1;1;0;0;0;0
+62938;16333;1;175;89.0;90;160;1;1;0;0;1;1
+62939;20661;1;175;65.0;120;80;3;3;0;0;0;0
+62940;21198;1;160;57.0;120;70;1;1;0;0;1;0
+62941;21119;2;171;75.0;180;100;1;1;0;0;1;1
+62942;19763;1;170;68.0;120;80;3;3;0;0;1;1
+62943;21295;1;158;79.0;120;80;2;1;0;0;0;0
+62946;17571;2;175;69.0;130;80;1;1;0;0;1;0
+62947;21845;1;159;67.0;110;70;1;1;0;0;0;1
+62950;20532;1;153;84.0;140;90;1;1;0;0;1;1
+62952;18206;1;159;70.0;130;80;1;1;0;0;1;1
+62953;18275;1;163;75.0;100;70;1;1;0;0;1;0
+62954;19169;1;165;78.0;120;80;1;1;0;0;1;0
+62955;17430;1;176;75.0;120;80;1;1;0;0;1;0
+62956;23344;1;164;90.0;130;80;1;1;0;0;0;1
+62957;16832;1;163;67.0;110;70;2;1;0;0;0;0
+62959;20284;1;158;81.0;150;100;1;1;1;1;1;1
+62962;23373;1;161;79.0;140;80;1;1;0;0;1;1
+62964;15833;1;168;55.0;120;80;1;1;0;0;1;0
+62967;18180;2;162;66.0;120;80;3;3;1;1;1;0
+62968;19776;1;155;60.0;120;80;1;1;0;0;1;0
+62970;19103;1;153;56.0;130;80;2;1;0;0;1;1
+62971;18458;2;163;80.0;130;90;1;1;0;0;1;1
+62972;18302;1;173;96.0;140;90;1;3;0;0;1;1
+62973;19596;1;167;77.0;150;80;1;1;0;0;1;1
+62975;20615;1;156;100.0;140;80;3;3;0;0;0;1
+62977;14514;1;167;68.0;120;80;1;1;0;0;1;0
+62978;23239;1;157;72.0;130;90;1;1;0;0;1;1
+62979;22661;1;159;68.0;120;80;1;1;0;0;0;0
+62980;19741;2;165;75.0;120;80;1;1;0;1;0;0
+62982;18251;1;160;56.0;110;70;1;1;0;1;1;0
+62983;19798;1;168;68.0;120;80;1;3;0;0;0;0
+62984;19015;1;166;70.0;120;80;1;1;0;0;1;1
+62985;21229;1;169;72.0;120;60;1;1;0;0;0;1
+62987;18440;1;167;117.0;90;150;1;1;0;1;1;1
+62988;18818;1;162;62.0;120;80;1;1;0;0;1;0
+62989;19744;2;175;55.0;120;80;1;1;0;0;0;1
+62990;16068;1;162;65.0;120;80;2;1;0;0;1;0
+62992;18336;2;168;70.0;100;80;1;1;1;0;1;0
+62994;17262;2;175;75.0;149;90;2;1;0;0;1;1
+62995;21837;1;167;85.0;127;90;1;2;0;0;0;0
+62996;21770;1;152;59.0;150;90;2;1;0;0;0;1
+62998;20303;1;163;87.0;150;90;3;3;0;0;1;1
+63001;19171;1;160;100.0;170;100;2;1;0;0;1;0
+63004;16722;1;170;96.0;140;80;1;1;0;0;1;1
+63005;15145;2;165;53.0;150;100;2;1;1;0;1;1
+63006;20367;1;163;91.0;140;90;2;1;0;0;1;1
+63007;23062;1;158;78.0;140;90;1;1;0;0;1;1
+63008;19072;1;155;65.0;130;1000;1;1;0;0;1;0
+63009;18221;2;170;65.0;125;70;1;1;1;1;1;0
+63010;18166;1;156;78.0;120;80;1;1;0;0;1;0
+63012;23584;1;163;63.0;120;80;1;1;0;0;0;1
+63013;18401;1;160;60.0;140;90;1;1;0;0;1;0
+63014;21435;1;179;68.0;120;80;1;1;0;0;1;1
+63015;18189;1;159;64.0;120;80;1;1;0;0;1;0
+63016;14532;1;156;75.0;130;80;1;1;0;0;1;0
+63020;18220;1;165;60.0;110;80;1;2;0;1;1;0
+63021;21270;1;164;75.0;120;80;1;1;0;0;1;1
+63022;17271;2;165;65.0;120;80;2;1;0;0;0;0
+63023;18233;2;175;78.0;120;80;1;1;1;1;1;0
+63024;20676;2;178;90.0;140;80;1;1;0;0;1;1
+63026;19773;1;161;59.0;120;80;1;1;0;0;1;0
+63027;19832;1;168;75.0;120;80;1;1;0;0;0;0
+63029;22100;2;159;85.0;120;80;2;2;0;0;0;1
+63030;19662;1;168;71.0;120;80;2;1;0;1;1;0
+63031;21336;1;170;65.0;130;80;1;1;0;0;1;0
+63032;18043;1;150;74.0;140;80;3;1;0;0;1;0
+63033;14777;1;163;81.0;120;80;1;1;0;0;1;0
+63034;18254;2;167;69.0;150;100;2;2;0;0;1;1
+63035;21799;1;161;59.0;120;90;1;1;0;0;1;1
+63036;19257;2;168;69.0;120;90;1;1;0;0;0;1
+63037;20458;2;165;61.0;120;80;1;1;0;0;1;0
+63038;15898;2;173;95.0;130;90;1;1;0;0;0;1
+63039;16942;1;164;62.0;120;80;1;1;0;0;1;0
+63040;20433;2;171;84.0;120;80;1;1;0;0;1;0
+63041;18968;1;166;60.0;100;70;1;1;0;0;0;0
+63042;19067;1;168;73.0;100;70;2;1;0;0;1;0
+63043;21835;1;147;61.0;100;70;1;1;0;0;1;0
+63045;22631;2;165;62.0;140;90;2;1;0;0;0;1
+63046;15185;2;175;87.0;120;80;1;1;1;0;1;0
+63047;19709;1;169;61.0;170;90;2;2;0;0;0;1
+63049;18059;1;159;94.0;120;80;2;2;0;0;1;1
+63050;18853;1;156;75.0;160;90;3;3;0;0;1;1
+63051;21981;1;170;65.0;120;80;2;2;0;0;1;0
+63052;17382;1;169;63.0;120;80;3;3;0;0;1;0
+63054;15410;1;155;85.0;110;70;1;1;0;0;0;0
+63055;19902;1;165;55.0;120;80;3;1;0;0;1;1
+63056;21828;1;151;38.0;100;70;1;1;0;0;1;1
+63057;17202;1;150;63.0;110;70;1;1;0;0;1;0
+63058;17479;2;169;84.0;140;80;2;1;0;0;1;1
+63060;19178;1;169;101.0;110;80;1;1;0;0;0;1
+63061;19710;1;160;65.0;120;80;1;1;0;0;1;1
+63062;20979;1;165;75.0;140;90;1;2;0;0;1;1
+63064;14736;2;168;70.0;120;80;1;1;0;0;0;0
+63065;21165;1;160;79.0;120;70;1;1;0;0;1;0
+63066;23451;1;151;62.0;120;80;1;1;0;0;1;0
+63067;17375;1;160;62.0;120;80;1;1;0;1;0;0
+63069;18172;2;171;74.0;130;90;3;1;0;0;1;0
+63071;16723;1;167;65.0;120;80;1;1;0;0;1;0
+63072;23083;1;150;60.0;110;70;1;1;0;0;1;1
+63073;18213;1;164;61.0;140;80;2;1;0;0;1;1
+63074;19041;1;175;70.0;120;80;1;1;0;0;0;0
+63075;17670;1;169;65.0;140;90;2;1;0;0;1;1
+63076;17602;2;170;71.0;100;70;1;1;0;0;1;0
+63077;22673;2;161;77.0;140;80;1;2;0;0;1;0
+63078;21096;2;172;70.0;130;90;1;3;0;0;1;0
+63081;20690;2;175;97.0;150;90;1;3;0;0;1;0
+63082;20330;1;160;83.0;130;60;1;1;0;0;1;1
+63083;18182;2;172;73.0;120;80;1;1;0;0;1;0
+63084;18517;1;163;80.0;140;100;1;1;0;0;1;1
+63085;18784;1;158;65.0;120;80;1;1;0;0;1;1
+63086;23282;2;165;58.0;120;80;2;1;0;0;1;1
+63087;20340;1;187;65.0;120;80;1;1;0;0;1;0
+63088;23531;1;153;64.0;160;90;2;1;0;0;1;1
+63093;16599;1;163;78.0;100;70;1;1;0;0;1;0
+63095;14920;1;165;59.0;110;70;1;1;0;0;1;0
+63096;20399;1;148;76.0;140;90;2;2;0;1;1;1
+63097;22516;2;167;69.0;110;80;1;1;0;0;1;1
+63098;17363;1;172;89.0;110;70;1;1;0;1;0;0
+63099;23271;1;159;72.0;120;80;3;1;0;0;1;1
+63101;19611;1;156;54.0;130;90;3;3;0;0;1;1
+63102;18314;1;164;94.0;125;85;1;1;0;0;1;0
+63104;20066;1;154;52.0;120;70;1;1;0;0;1;0
+63105;19002;2;172;87.0;140;80;1;1;1;0;1;1
+63106;18220;1;167;53.0;120;80;1;1;0;0;1;0
+63107;21839;1;168;90.0;120;80;1;1;0;0;1;1
+63108;15131;2;172;84.0;120;80;2;1;1;0;1;1
+63111;20667;1;160;65.0;120;80;1;1;0;0;0;1
+63113;21084;1;156;68.0;150;90;1;1;0;0;1;0
+63114;21018;2;166;82.0;160;100;1;1;0;0;1;1
+63115;14756;1;170;68.0;120;80;1;1;0;0;1;0
+63116;19795;1;156;69.0;120;80;1;1;0;0;1;0
+63117;20466;1;156;60.0;140;80;3;3;0;0;1;0
+63118;15511;1;154;52.0;110;70;1;1;0;0;1;1
+63119;21314;2;171;137.0;170;100;1;1;0;0;0;1
+63121;22680;1;158;64.0;120;80;1;1;0;0;1;0
+63122;15292;2;182;104.0;120;80;1;1;0;0;1;0
+63124;14671;1;165;85.0;120;80;1;1;0;0;0;0
+63125;22858;2;172;99.0;140;100;1;1;0;0;1;1
+63126;16919;2;166;67.0;110;70;1;3;1;0;1;0
+63128;17557;2;168;80.0;140;80;2;1;0;1;1;1
+63129;17609;1;156;68.0;120;80;1;1;0;0;1;0
+63130;22445;2;169;89.0;180;100;2;1;0;0;1;1
+63131;21424;1;155;54.0;120;80;1;1;0;0;1;1
+63133;20374;1;165;90.0;120;80;3;1;0;0;1;1
+63135;20333;1;158;73.0;130;80;1;1;0;0;1;0
+63136;18212;2;172;69.0;120;80;1;1;0;0;0;1
+63137;21901;2;172;86.0;140;90;1;1;0;0;0;1
+63140;20214;2;161;66.0;110;70;2;1;0;0;1;1
+63141;18457;2;170;80.0;120;80;1;1;0;0;0;1
+63142;20303;2;180;78.0;120;80;1;1;0;0;1;0
+63143;18954;2;178;82.0;140;90;1;1;0;0;1;1
+63144;23357;1;174;70.0;120;80;2;1;0;0;0;0
+63146;14404;1;163;94.0;130;90;2;1;0;0;1;1
+63147;21245;1;168;70.0;120;80;2;2;0;0;1;1
+63148;15391;2;170;69.0;120;80;1;1;0;0;1;1
+63149;20345;1;159;59.0;140;90;1;3;0;0;1;0
+63150;17737;2;165;78.0;120;90;1;1;0;0;0;0
+63151;19881;2;160;58.0;140;90;1;1;0;0;1;1
+63152;20524;1;158;80.0;140;90;3;1;0;0;1;1
+63154;18210;1;164;68.0;120;80;1;1;0;0;1;0
+63156;16104;1;162;85.0;140;90;1;1;0;0;1;1
+63157;20296;2;170;75.0;130;90;1;1;0;0;0;0
+63158;21860;2;163;71.0;140;90;1;1;0;0;0;0
+63160;19839;2;178;85.0;110;70;2;2;1;0;0;0
+63161;21767;2;167;93.0;130;80;2;1;0;0;0;1
+63162;16778;1;140;70.0;140;90;1;1;0;0;0;1
+63163;21176;1;160;66.0;120;80;1;1;0;0;1;1
+63164;21696;1;163;63.0;120;80;3;3;0;0;0;1
+63165;18997;1;166;52.0;110;70;1;1;0;0;1;0
+63166;19735;2;165;61.0;120;80;1;1;1;0;1;0
+63168;20259;2;168;93.0;130;90;1;1;1;0;1;1
+63169;19109;1;147;54.0;120;80;3;3;0;0;1;0
+63170;15046;1;169;85.0;120;80;2;1;0;0;0;0
+63171;16095;2;170;80.0;200;100;3;2;1;1;0;1
+63173;16714;2;186;97.0;120;80;1;1;1;1;0;0
+63174;14485;1;166;71.0;120;80;1;1;0;0;1;0
+63176;23595;2;165;70.0;120;79;1;1;0;0;1;0
+63177;17570;1;169;73.0;120;80;1;1;0;0;0;0
+63178;15848;1;155;90.0;120;80;1;1;0;0;1;0
+63179;21341;1;168;84.0;120;90;1;1;0;0;0;1
+63181;17493;2;165;42.0;99;70;1;1;0;0;1;0
+63182;22474;1;152;91.0;110;70;3;1;0;0;1;1
+63183;22018;1;155;70.0;130;80;1;1;0;0;0;1
+63184;19132;1;168;70.0;130;80;1;3;0;0;0;1
+63187;16832;1;162;80.0;120;80;1;1;0;0;0;0
+63189;21136;1;165;65.0;120;80;1;1;0;0;1;1
+63190;19567;2;175;68.0;120;80;1;1;0;0;1;1
+63191;20506;1;155;60.0;130;80;1;1;0;0;1;1
+63192;19552;1;152;64.0;140;80;2;1;0;0;1;1
+63193;23286;1;163;79.0;110;80;1;1;0;0;1;0
+63194;16718;1;150;54.0;170;120;1;1;0;0;1;0
+63195;19909;1;160;71.0;110;70;2;1;0;0;1;0
+63196;21343;2;168;61.0;110;79;2;2;0;0;1;0
+63198;22550;1;165;87.0;140;90;1;1;0;1;0;1
+63200;16548;2;169;68.0;170;100;1;1;0;0;1;0
+63201;16071;1;154;95.0;110;60;1;1;0;0;1;1
+63202;22791;1;150;81.0;120;80;1;1;0;0;1;0
+63203;21190;1;168;65.0;120;70;1;1;0;0;1;0
+63204;21838;2;170;90.0;110;70;1;1;0;0;1;0
+63206;17499;1;171;75.0;120;80;1;1;0;0;1;0
+63207;22590;1;159;79.0;160;100;2;1;0;0;0;1
+63208;22049;1;155;67.0;120;80;2;1;0;0;0;1
+63210;19725;1;162;56.0;120;80;1;1;0;0;1;0
+63211;19022;1;168;62.0;110;80;1;1;0;0;1;0
+63212;23274;2;169;71.0;125;90;1;1;0;0;1;0
+63213;21706;1;168;60.0;120;80;1;1;0;0;0;0
+63214;15234;2;172;75.0;120;80;1;1;1;0;1;0
+63217;19772;1;168;65.0;120;80;1;1;0;0;0;0
+63219;21166;1;150;63.0;130;90;1;1;0;0;1;1
+63224;21710;2;168;62.0;120;80;1;1;1;0;1;0
+63225;23118;1;176;88.0;150;90;1;1;0;0;1;1
+63226;21206;1;160;70.0;120;80;1;1;1;0;1;1
+63227;18220;1;168;66.0;120;80;1;1;0;0;1;0
+63228;19717;2;170;68.0;120;80;3;3;0;0;1;1
+63229;19956;1;164;70.0;140;100;1;1;0;0;1;1
+63230;18770;1;158;84.0;140;100;3;2;0;0;0;0
+63231;21212;1;169;75.0;110;70;1;1;0;0;0;1
+63232;20423;1;165;57.0;120;80;1;1;0;0;1;1
+63233;22777;2;165;67.0;130;80;1;1;0;0;0;1
+63234;21303;1;165;115.0;130;80;1;1;0;0;1;0
+63236;16686;1;169;70.0;110;70;1;1;0;0;0;0
+63237;17637;2;165;64.0;120;60;1;1;1;0;1;0
+63238;18996;1;156;59.0;120;80;3;1;0;0;0;1
+63239;18876;2;178;74.0;120;75;2;1;1;1;1;0
+63240;18369;2;164;61.0;120;80;1;1;0;0;1;1
+63243;18998;1;161;59.0;110;70;1;1;0;0;1;1
+63244;18092;2;175;65.0;140;90;3;1;0;0;1;1
+63246;15265;2;174;71.0;120;80;1;1;0;0;1;0
+63248;22643;2;172;84.0;140;90;3;3;0;0;1;0
+63251;23365;1;165;65.0;120;80;1;1;0;0;0;1
+63253;15179;2;172;67.0;160;100;1;1;0;0;1;0
+63254;18203;2;175;74.0;130;80;3;1;0;0;1;1
+63255;16668;1;162;67.0;120;80;1;1;0;0;0;0
+63256;19638;1;165;70.0;120;80;1;1;0;0;1;0
+63257;19173;1;157;73.0;120;80;1;2;0;0;1;0
+63258;19706;1;148;53.9;110;70;1;1;0;1;1;0
+63259;22658;1;156;57.0;160;100;1;1;0;0;1;1
+63260;17321;2;164;75.0;120;80;1;1;0;0;1;0
+63261;23552;2;170;80.0;150;80;3;3;0;0;1;1
+63262;19580;2;178;70.0;130;80;2;2;1;0;1;0
+63263;14679;1;165;56.0;110;80;1;1;0;0;1;0
+63264;18094;1;154;73.0;110;70;1;1;0;0;1;0
+63266;20699;2;160;81.0;120;80;1;3;0;0;1;0
+63267;23356;1;162;84.0;150;90;2;1;0;0;1;1
+63268;23163;2;168;75.0;100;80;1;1;0;0;1;1
+63270;18238;1;169;60.0;100;60;1;1;0;0;1;0
+63273;20547;1;156;74.0;105;69;1;1;0;0;0;0
+63275;17577;2;168;76.0;130;90;1;1;0;0;1;1
+63278;21922;2;174;70.0;120;80;1;1;0;0;1;0
+63279;21692;1;164;102.0;160;90;3;3;0;0;1;1
+63280;16591;1;165;62.0;120;80;1;3;0;0;1;0
+63281;20412;2;179;83.0;120;80;1;1;1;0;1;0
+63282;18910;1;162;86.0;120;80;3;1;0;1;1;1
+63283;19639;1;164;70.0;140;90;1;1;0;0;0;1
+63284;16012;2;163;71.0;163;71;1;1;0;0;1;1
+63285;19750;1;170;120.0;130;90;3;3;0;0;1;0
+63287;18384;2;170;69.0;120;80;1;1;0;0;1;0
+63288;19570;1;158;63.0;120;80;1;1;0;0;1;1
+63289;14543;1;158;64.0;120;90;1;1;0;0;1;0
+63292;21960;1;158;82.0;110;80;1;1;0;0;1;1
+63294;22030;1;160;62.0;110;80;2;1;0;0;1;1
+63295;19893;1;160;79.0;130;90;3;3;0;0;1;1
+63296;21022;1;165;71.0;130;90;2;2;0;0;0;1
+63297;18257;1;171;72.0;120;80;1;1;0;0;0;0
+63298;17656;2;174;89.0;150;100;2;1;0;0;1;1
+63299;16636;2;174;77.0;110;70;1;1;1;0;1;0
+63302;21825;1;154;83.0;160;90;3;2;0;0;0;1
+63303;17551;1;168;67.0;130;90;1;1;0;0;1;1
+63304;18840;2;174;116.0;160;100;1;2;0;1;1;1
+63305;19671;1;164;63.0;120;80;1;1;0;0;1;1
+63306;22710;2;170;70.0;140;90;1;2;0;0;1;1
+63308;18464;1;155;65.0;100;60;1;1;0;0;1;1
+63309;20271;2;168;73.0;117;78;1;1;1;0;0;0
+63311;16130;2;182;72.0;120;60;1;1;1;0;1;0
+63313;22672;1;160;79.0;110;70;1;1;0;0;1;0
+63315;17714;1;156;71.0;140;80;1;3;0;0;1;1
+63316;20291;1;168;72.0;160;100;2;1;0;0;1;0
+63317;18286;2;168;60.0;120;80;1;1;0;0;1;0
+63320;21038;1;158;60.0;120;80;1;1;0;0;1;0
+63321;20543;1;155;100.0;140;90;2;2;1;0;1;1
+63322;18394;2;162;98.0;140;100;1;2;0;0;1;1
+63324;18306;1;167;64.0;120;80;1;1;0;0;0;0
+63328;15957;1;161;84.0;110;80;1;1;0;0;1;0
+63330;22590;1;158;65.0;120;80;1;1;0;0;1;0
+63331;15967;2;167;72.0;120;80;2;1;0;0;1;1
+63333;19895;2;161;69.0;120;70;1;1;0;0;1;1
+63334;22437;2;184;86.0;120;60;1;1;0;0;1;1
+63336;18902;1;152;73.0;140;90;1;1;0;0;1;1
+63337;18884;2;178;107.0;150;100;1;1;1;1;1;1
+63339;14461;2;176;103.0;110;80;1;1;0;0;0;0
+63340;21150;1;151;60.0;140;100;1;1;0;0;1;1
+63341;21168;1;172;94.0;152;74;1;1;0;0;1;0
+63342;14591;1;159;96.0;110;70;1;2;0;0;1;0
+63343;20427;1;165;83.0;120;80;1;1;0;0;0;1
+63344;19424;1;161;60.0;140;100;3;3;0;0;1;1
+63347;20708;1;160;60.0;120;80;1;1;0;0;1;0
+63349;20361;2;165;76.0;120;80;1;1;0;0;1;0
+63350;22352;2;175;97.0;150;90;1;1;1;1;1;0
+63351;19727;2;167;63.0;100;70;1;1;1;0;0;0
+63353;18709;1;167;95.0;135;80;1;1;0;0;1;0
+63354;14609;1;158;61.0;120;80;1;1;0;0;1;1
+63355;21950;1;165;65.0;120;80;1;1;0;0;1;0
+63356;23415;1;160;70.0;160;90;1;1;0;0;1;1
+63357;20580;2;178;79.0;120;80;1;1;1;0;1;0
+63358;15253;1;165;58.0;120;80;1;1;0;0;0;1
+63359;18752;2;175;105.0;160;100;1;1;0;0;0;1
+63360;18416;1;165;65.0;140;90;1;1;0;0;1;1
+63363;15387;1;160;67.0;110;70;1;1;0;0;0;0
+63364;17776;2;172;68.0;130;90;1;1;0;0;1;0
+63365;18789;1;163;59.0;120;90;1;1;0;0;1;0
+63366;20587;1;162;68.0;130;80;3;3;0;0;0;1
+63367;20405;2;162;80.0;120;80;1;1;1;0;1;0
+63368;21877;1;156;75.0;164;92;1;2;0;0;0;1
+63369;18915;1;163;65.0;120;70;1;1;0;0;0;1
+63370;16629;1;160;82.0;120;80;1;1;0;0;1;0
+63371;15923;2;173;92.0;130;90;2;1;1;0;1;0
+63372;20277;1;175;85.0;120;80;1;1;0;0;1;0
+63373;17509;1;161;71.0;110;70;1;1;0;0;1;0
+63374;18192;1;165;55.0;140;90;1;1;0;0;1;1
+63375;23301;1;155;70.0;140;80;1;1;0;0;0;0
+63376;17729;1;162;61.0;100;70;1;1;0;0;1;0
+63378;19443;1;170;74.0;120;80;1;1;0;0;0;0
+63379;21269;1;155;79.0;140;90;3;1;0;0;1;1
+63380;21942;2;165;65.0;120;80;1;1;0;0;0;1
+63381;17439;1;162;65.0;120;80;1;1;0;0;1;0
+63383;22031;1;162;72.0;130;80;1;1;0;0;1;1
+63384;19885;1;160;108.0;120;80;2;2;0;0;1;0
+63385;18092;1;170;57.0;100;60;2;2;0;0;1;0
+63386;21368;1;165;62.0;120;80;2;1;0;0;1;0
+63387;15260;1;152;54.0;110;70;1;1;0;0;1;0
+63389;21213;2;162;82.0;120;80;1;1;0;0;1;1
+63390;21926;2;170;101.0;120;80;2;2;0;0;0;1
+63391;15890;1;166;85.0;110;80;1;1;0;0;1;0
+63392;21839;1;152;90.0;140;90;3;1;0;1;1;0
+63393;21938;1;163;60.0;120;80;1;1;0;0;1;0
+63394;14670;1;162;63.0;100;60;1;1;0;0;1;0
+63398;21066;1;130;90.0;130;90;2;2;0;1;0;0
+63399;19871;2;170;84.0;180;110;2;1;1;0;1;1
+63400;16727;2;161;64.0;120;80;2;1;1;0;1;0
+63402;19644;2;182;95.0;120;90;1;1;0;0;1;1
+63403;16153;1;170;98.0;130;90;1;1;0;1;0;0
+63404;18751;2;167;85.0;140;90;1;1;1;0;1;1
+63406;22597;1;158;70.0;100;70;1;1;0;0;1;0
+63408;19059;1;160;65.0;120;70;1;1;0;0;1;0
+63410;20514;1;150;71.0;140;90;1;1;0;0;0;1
+63411;21676;2;160;65.0;140;80;2;1;0;0;1;0
+63413;19575;2;173;82.0;120;80;1;1;0;0;1;0
+63414;21320;1;165;88.0;120;80;1;1;0;0;0;0
+63416;18466;2;165;68.0;120;80;1;1;0;0;1;0
+63417;23344;1;165;65.0;120;80;1;1;0;0;1;1
+63418;20501;1;167;75.0;140;90;2;1;0;0;1;1
+63419;21477;1;160;60.0;120;80;3;3;0;0;1;1
+63420;15913;2;170;58.0;110;70;1;1;0;0;1;0
+63421;15327;1;163;65.0;120;80;1;1;0;0;1;0
+63422;22579;1;149;65.0;130;90;2;1;0;0;0;0
+63424;21007;1;158;94.0;120;80;1;1;0;0;1;1
+63428;15367;1;163;52.0;90;60;1;1;1;0;1;0
+63429;21323;2;158;81.0;160;90;2;1;0;0;1;1
+63431;14635;1;160;65.0;130;80;1;1;0;0;0;0
+63434;21179;1;164;59.0;120;80;1;1;0;0;0;1
+63435;22719;1;151;54.0;120;80;1;1;0;0;1;1
+63436;18073;1;153;65.0;125;85;1;1;0;0;0;1
+63438;19733;1;170;84.0;120;80;1;1;0;0;1;0
+63439;19879;1;150;80.0;140;80;1;1;0;0;1;1
+63440;15626;1;162;68.0;110;70;1;1;0;0;1;1
+63441;18149;1;158;79.0;150;90;3;3;0;0;1;1
+63442;19718;1;169;62.0;110;70;1;1;0;0;1;0
+63443;20440;1;157;84.0;140;90;2;2;0;1;1;1
+63446;21721;1;159;58.0;120;90;2;1;0;0;1;0
+63447;16925;2;165;68.0;110;70;1;1;1;0;0;1
+63448;21111;1;152;54.0;100;60;1;1;0;0;0;0
+63449;20320;1;156;88.0;174;92;2;1;0;0;0;1
+63450;19007;2;164;69.0;120;80;1;1;0;0;1;0
+63451;21823;1;159;68.0;139;89;3;3;0;0;1;1
+63452;17284;1;166;86.0;110;70;1;1;0;0;1;0
+63453;18724;1;168;82.0;120;80;1;1;0;0;1;0
+63455;18566;1;166;76.0;120;80;1;1;0;0;1;0
+63457;20659;2;179;75.0;140;80;2;2;1;0;1;1
+63459;17308;1;167;80.0;120;80;1;1;0;0;1;1
+63461;20388;1;153;101.0;140;90;1;1;0;0;0;1
+63462;23607;2;170;82.0;120;80;1;1;0;0;1;1
+63463;21353;1;155;60.0;110;70;1;1;0;0;1;1
+63464;21072;1;169;75.0;120;80;1;1;0;0;0;0
+63466;20374;1;162;71.0;130;80;3;3;0;0;1;1
+63467;18352;2;158;60.0;140;90;3;3;0;0;1;1
+63468;14413;1;154;65.0;120;80;1;1;0;0;0;0
+63469;23458;1;153;79.0;130;90;1;1;0;0;1;0
+63472;18882;1;168;91.0;135;85;1;1;0;0;1;1
+63474;22758;1;154;69.0;120;80;1;1;0;0;1;0
+63475;18848;1;163;51.0;120;80;1;1;0;0;1;0
+63476;15936;2;168;68.0;120;70;1;1;0;0;1;0
+63477;20911;2;168;60.0;120;80;1;1;0;0;1;0
+63479;16603;1;169;65.0;110;70;1;1;0;0;1;0
+63480;16805;2;158;60.0;120;80;1;1;0;0;1;0
+63482;16957;2;168;71.0;140;80;1;1;0;0;1;0
+63483;17498;1;140;75.0;120;80;1;1;0;0;0;1
+63485;19618;1;160;80.0;120;80;1;1;0;0;1;1
+63486;19693;1;163;85.0;120;80;1;1;0;0;0;0
+63489;21931;1;160;80.0;140;90;2;3;0;0;1;0
+63491;20327;1;157;60.0;110;80;1;1;0;0;1;0
+63492;19621;2;178;86.0;140;90;2;1;1;0;1;1
+63493;20570;1;160;60.0;160;100;1;1;0;0;1;1
+63494;18848;1;160;92.0;130;90;2;1;0;0;1;1
+63495;18532;1;155;60.0;130;100;1;1;0;0;1;1
+63499;19128;1;152;69.0;120;70;2;2;0;0;1;0
+63500;18133;1;172;70.0;130;80;1;1;0;0;1;0
+63501;18996;2;167;78.0;130;80;1;1;0;0;1;1
+63502;16757;2;176;59.0;150;90;1;2;1;1;1;1
+63503;19848;2;170;78.0;150;90;2;1;0;0;1;1
+63505;15794;1;154;53.0;100;70;2;1;0;0;1;0
+63506;19641;1;158;63.0;120;80;1;1;0;0;1;0
+63507;21731;1;158;75.0;120;80;2;2;0;0;1;0
+63508;21815;1;160;66.0;140;80;3;3;0;0;1;0
+63510;22081;1;160;60.0;120;80;3;3;0;0;1;1
+63511;16551;1;152;68.0;120;90;1;1;0;0;1;0
+63512;19927;1;162;81.0;110;80;1;1;0;0;1;1
+63513;16838;1;163;65.0;120;80;1;1;0;0;0;1
+63516;14721;2;163;58.0;120;80;1;1;1;1;1;0
+63518;16173;2;170;86.0;140;90;2;2;0;0;1;1
+63519;22552;1;160;64.0;120;80;1;1;0;0;1;1
+63521;17521;2;170;79.0;130;80;1;1;1;0;1;0
+63522;18879;1;167;76.0;140;80;1;1;0;0;1;1
+63523;20498;1;159;69.0;120;80;1;1;0;0;1;0
+63524;20288;1;155;94.0;110;70;3;1;0;0;0;1
+63525;21037;1;156;79.0;120;80;1;3;0;0;1;0
+63528;17665;2;164;90.0;140;100;1;1;0;0;1;1
+63529;15329;2;158;70.0;120;80;1;1;0;0;1;1
+63531;19771;1;159;55.0;110;80;1;1;0;0;0;0
+63533;22410;2;160;90.0;160;90;2;1;0;0;1;1
+63534;14548;1;160;64.0;120;80;1;1;0;0;1;0
+63536;21191;1;167;90.0;130;80;1;1;0;0;1;1
+63537;18107;1;159;65.0;110;70;2;1;0;0;1;1
+63538;19726;1;162;70.0;125;90;1;1;0;0;1;1
+63539;20356;1;158;66.0;120;80;1;1;0;0;1;0
+63540;19573;1;162;80.0;160;90;1;1;0;0;0;1
+63541;19704;1;169;68.0;120;80;1;1;0;0;1;1
+63543;16832;2;178;90.0;140;90;2;2;0;1;1;1
+63544;23266;1;158;80.0;145;80;1;1;0;0;0;1
+63545;19120;1;65;60.0;120;80;1;1;0;0;1;0
+63546;19791;2;161;73.0;130;90;2;1;0;0;0;1
+63547;21146;2;168;64.0;120;80;1;1;0;0;1;0
+63548;17395;1;165;70.0;120;80;1;1;0;0;1;0
+63549;19616;2;162;67.0;150;80;1;1;0;0;1;1
+63550;21958;1;154;69.0;160;80;1;1;0;0;1;1
+63554;14910;2;165;60.0;110;80;1;2;0;0;1;0
+63555;14575;1;165;73.0;110;70;1;1;0;0;1;0
+63558;15909;1;157;92.0;140;100;2;1;0;0;1;1
+63559;21766;2;150;50.0;120;80;1;1;0;0;1;0
+63560;20355;1;168;72.0;120;80;1;1;0;0;1;0
+63561;21642;1;157;82.0;130;80;2;1;0;0;1;1
+63564;19089;1;159;87.0;12;80;1;2;0;0;1;0
+63565;21638;1;158;78.0;140;90;1;1;0;0;0;1
+63566;21784;2;166;81.0;120;80;3;3;0;0;1;1
+63567;18886;1;169;60.0;150;89;1;1;0;0;0;1
+63570;22014;1;165;51.0;120;80;1;1;0;0;1;0
+63571;21312;1;156;73.0;120;79;1;1;0;0;0;1
+63573;21962;2;173;70.0;130;80;1;1;0;0;1;0
+63574;23178;1;143;61.0;150;80;1;1;0;0;1;1
+63575;21099;1;174;91.0;180;100;1;1;0;0;1;0
+63576;15332;1;158;55.0;100;80;1;1;0;0;1;0
+63578;17464;1;166;70.0;120;80;1;1;0;0;1;0
+63579;17484;1;167;80.0;120;80;2;2;0;0;1;1
+63580;16594;1;165;70.0;120;80;1;1;0;0;1;0
+63581;15228;2;163;63.0;160;90;1;1;0;0;1;1
+63582;21102;1;161;70.0;120;80;3;3;0;0;1;1
+63584;19094;1;165;85.0;100;76;1;1;0;0;1;0
+63585;15417;1;176;70.0;110;70;1;1;0;0;1;0
+63586;18223;2;162;61.0;120;70;1;1;0;0;1;1
+63587;22176;1;162;61.0;120;80;3;3;0;0;0;0
+63588;23293;1;175;61.0;130;80;1;1;0;0;0;0
+63589;18877;1;153;84.0;150;100;1;1;0;0;1;1
+63590;18337;1;180;126.0;120;90;3;1;0;0;1;1
+63591;15519;1;160;78.0;120;80;1;1;0;0;0;0
+63592;19607;1;158;57.0;120;80;1;1;0;0;0;0
+63594;20305;2;172;64.0;120;80;1;1;1;0;1;0
+63595;21868;1;162;75.0;140;90;1;1;0;0;1;1
+63596;20452;1;162;76.0;120;80;1;1;0;0;1;0
+63597;19709;1;157;91.0;110;80;3;2;0;0;1;1
+63598;18941;1;163;101.0;150;90;1;1;0;0;1;1
+63599;19588;1;162;99.0;140;90;1;1;0;0;1;0
+63601;16532;1;167;75.0;110;70;1;1;0;0;1;0
+63603;19002;2;169;71.0;160;90;1;1;0;0;1;1
+63604;17441;2;171;69.0;110;79;1;1;0;0;1;0
+63606;21231;2;170;76.0;139;83;1;1;1;1;1;1
+63608;18357;1;165;68.0;120;80;1;1;0;0;1;0
+63609;18350;1;153;90.0;140;90;1;1;0;0;1;1
+63611;15960;2;181;75.0;120;80;1;1;0;0;1;0
+63613;19607;1;150;56.0;90;60;1;2;0;0;1;0
+63615;19493;1;165;80.0;130;80;1;1;0;0;0;0
+63616;20217;1;160;89.0;140;90;1;1;0;0;1;1
+63618;23433;2;176;90.0;140;90;1;1;0;1;1;0
+63619;23430;1;156;65.0;145;90;1;2;0;0;1;0
+63621;21077;1;160;72.0;120;80;3;3;0;0;1;1
+63622;19702;1;154;76.0;120;70;1;1;0;0;1;0
+63625;21234;1;157;69.0;120;70;1;1;0;0;1;0
+63626;15140;2;175;77.0;120;80;1;1;1;0;1;0
+63628;22588;1;153;50.0;120;80;1;1;0;0;0;1
+63629;17802;1;165;60.0;120;80;1;1;0;0;1;0
+63630;22050;1;162;78.0;150;90;1;1;0;0;1;1
+63631;20279;1;172;85.0;140;90;1;1;0;0;1;1
+63632;18175;2;170;80.0;130;80;1;1;0;0;1;1
+63634;15218;2;165;63.0;120;80;2;1;1;0;1;0
+63635;17544;1;158;77.0;120;80;1;1;0;0;1;1
+63636;16063;1;153;82.0;120;100;2;1;0;0;0;1
+63637;16846;1;165;60.0;100;70;1;1;0;0;1;0
+63639;17390;2;165;59.0;120;80;1;1;0;0;1;0
+63640;20638;1;156;71.0;120;80;3;2;0;0;0;1
+63642;20564;1;166;58.0;110;80;1;1;0;0;1;1
+63643;21798;2;162;74.0;120;80;1;1;0;0;0;0
+63645;21879;1;156;70.0;120;80;2;1;0;0;0;1
+63646;22546;1;150;72.0;120;80;1;1;0;0;1;1
+63649;17395;1;152;80.0;120;80;2;1;0;0;1;1
+63652;16299;1;167;70.0;120;90;1;1;0;0;1;0
+63653;16856;1;170;70.0;150;90;1;2;0;0;1;1
+63655;18156;1;165;89.0;120;80;1;1;0;0;1;0
+63656;21346;2;159;80.0;120;80;1;1;0;0;1;0
+63657;16738;1;155;85.0;120;80;2;2;0;0;1;1
+63660;15295;2;162;61.0;120;80;1;1;1;1;0;0
+63662;21006;1;150;70.0;120;80;3;3;0;1;1;1
+63664;22565;1;165;62.0;110;80;1;1;0;0;1;1
+63665;21689;1;160;103.0;120;80;2;1;0;0;1;1
+63666;18471;1;156;75.0;120;80;1;3;0;0;1;0
+63667;15366;1;170;66.0;120;80;1;1;0;0;1;0
+63668;18937;2;170;68.0;120;80;1;1;0;0;1;0
+63670;17384;1;168;85.0;140;90;2;2;0;0;1;1
+63671;21244;1;163;71.0;120;80;1;1;0;0;1;0
+63672;15266;2;180;80.0;120;80;1;1;0;0;1;0
+63673;14355;2;171;81.0;120;80;1;1;0;0;1;0
+63674;15468;2;178;79.0;120;80;1;1;0;0;0;0
+63676;18166;1;164;60.0;90;60;1;1;0;0;1;0
+63677;15222;2;174;127.0;120;80;1;1;0;1;1;1
+63679;18322;1;165;75.0;130;90;1;1;0;0;1;0
+63680;18987;1;158;63.0;140;90;1;1;0;0;1;1
+63681;19674;2;174;83.0;130;80;1;3;0;0;1;0
+63682;18155;1;160;75.0;130;90;3;3;0;1;1;1
+63683;19911;1;153;57.0;120;80;2;1;0;0;1;0
+63684;18977;1;156;90.0;120;70;1;1;0;0;1;0
+63685;20469;2;160;56.0;90;60;1;1;0;0;1;0
+63686;20703;1;158;80.0;120;80;1;1;0;0;1;1
+63689;19394;2;171;65.0;90;60;2;1;0;0;0;0
+63690;18883;2;179;73.0;120;80;2;1;0;0;1;1
+63691;23180;1;162;102.0;120;80;1;2;0;0;0;1
+63692;20187;1;155;75.0;130;90;3;3;0;0;1;1
+63693;18881;1;168;98.0;160;90;1;1;0;0;1;1
+63694;18896;1;165;80.0;120;80;1;1;0;0;1;0
+63695;19724;1;155;70.0;140;90;2;1;0;0;1;1
+63696;16074;2;176;101.0;110;90;1;1;0;0;1;0
+63698;19195;1;160;134.0;150;100;1;2;0;0;0;1
+63700;17666;1;163;65.0;150;100;1;1;0;0;1;1
+63701;18081;2;175;98.0;160;1120;2;1;0;0;0;1
+63702;16664;1;152;64.0;130;90;1;1;0;0;0;1
+63703;19189;1;174;72.0;120;80;1;1;0;0;1;1
+63705;18366;1;168;95.0;120;80;1;1;0;0;1;0
+63706;18991;2;162;66.0;140;90;1;1;0;0;1;1
+63707;19724;1;153;88.0;120;80;1;1;0;0;1;1
+63708;19418;1;169;60.0;120;80;1;1;0;0;1;1
+63709;16145;1;160;75.0;160;100;3;3;0;0;0;1
+63710;22433;2;165;65.0;130;20;1;1;0;0;1;1
+63711;20930;1;158;107.0;180;110;1;1;0;0;1;1
+63713;15352;1;166;63.0;90;60;1;1;0;0;1;0
+63714;20661;1;165;80.0;120;80;1;1;0;0;1;0
+63716;21677;1;155;60.0;120;80;1;1;0;0;0;0
+63717;21240;2;166;83.0;150;80;3;3;0;0;1;1
+63721;18179;1;167;75.0;140;90;1;1;0;0;1;1
+63722;19052;1;168;70.0;140;90;3;3;0;0;1;0
+63723;16856;1;168;68.0;140;90;1;1;0;0;0;1
+63724;16564;1;161;92.0;120;80;1;1;0;0;0;1
+63725;17298;1;167;83.0;120;70;3;1;0;0;1;1
+63726;18836;1;156;72.0;120;80;1;2;0;0;1;0
+63727;21851;1;158;59.0;120;80;1;1;0;0;1;1
+63728;18240;1;150;39.0;130;90;1;1;0;0;1;0
+63729;18288;1;168;63.0;120;70;1;1;0;0;1;1
+63730;21316;2;156;96.0;130;80;2;2;0;0;0;1
+63731;23353;1;168;68.0;120;80;1;1;0;0;0;1
+63732;18492;1;168;65.0;120;80;3;3;0;0;1;0
+63734;18337;1;176;79.0;100;70;1;1;1;0;0;0
+63735;21846;1;165;65.0;120;80;1;1;0;0;1;0
+63736;22736;1;166;69.0;200;90;2;1;0;0;1;1
+63738;21030;1;168;70.0;120;80;1;1;0;0;1;0
+63739;20960;1;158;83.0;110;80;2;2;0;0;0;1
+63740;20982;1;170;62.0;120;80;2;1;0;0;1;0
+63742;20277;1;151;63.0;110;70;1;1;0;0;1;0
+63743;19035;1;169;65.0;120;80;1;1;0;0;1;1
+63744;15344;2;178;80.0;120;80;1;1;0;0;1;0
+63747;19801;2;161;73.0;170;98;1;1;0;0;1;1
+63752;20473;1;156;64.0;120;70;1;1;0;1;1;0
+63753;18183;1;162;56.0;120;80;1;1;0;0;1;0
+63755;19758;1;163;76.0;110;80;1;1;0;1;1;0
+63756;22116;1;165;60.0;110;80;2;1;0;0;0;1
+63757;19793;1;150;80.0;120;80;1;2;0;0;1;0
+63758;22066;1;157;75.0;130;80;3;1;0;0;1;1
+63760;18189;2;170;62.0;120;70;1;1;1;0;1;0
+63763;22644;1;161;60.0;100;70;1;1;0;0;1;0
+63765;23334;1;148;48.0;120;80;1;1;0;0;0;1
+63766;20641;2;168;62.0;110;70;1;1;1;0;1;0
+63767;20998;2;177;90.0;140;90;1;1;0;0;1;1
+63768;19147;1;158;72.0;160;80;1;3;0;0;1;1
+63769;18249;1;162;60.0;110;70;1;1;0;0;1;0
+63771;20358;1;166;71.0;120;80;1;1;0;0;1;0
+63772;19148;2;180;75.0;110;70;2;1;0;0;1;0
+63773;20588;1;163;64.0;150;90;2;2;0;0;1;1
+63776;16937;2;170;70.0;120;80;1;1;0;0;0;0
+63780;19120;2;169;70.0;117;87;1;1;0;0;1;0
+63783;18738;1;168;92.0;140;80;1;1;0;0;1;0
+63784;18162;1;158;63.0;140;90;2;1;0;0;1;1
+63785;14600;1;158;59.0;110;60;1;1;0;0;1;0
+63786;21700;1;160;79.0;140;100;3;3;0;0;1;1
+63787;17567;1;166;70.0;140;89;1;1;0;0;1;1
+63788;20899;1;156;75.0;120;90;1;1;0;0;1;0
+63790;23456;1;150;71.0;120;80;1;1;0;0;1;0
+63791;20144;1;166;67.0;115;72;2;1;0;0;1;0
+63792;16557;2;166;93.0;120;80;1;1;0;0;1;0
+63793;22149;1;165;62.0;120;80;3;3;0;0;0;1
+63794;15348;1;167;65.0;110;70;3;3;0;0;1;0
+63797;21110;1;158;70.0;120;80;3;1;0;0;1;0
+63798;21945;2;171;82.0;150;90;1;1;0;0;1;1
+63800;16715;1;170;78.0;120;80;1;1;0;0;1;1
+63802;22065;2;170;73.0;140;90;1;1;0;1;1;1
+63803;22427;2;177;89.0;155;90;2;1;0;0;1;1
+63804;23305;1;153;63.0;190;110;1;1;0;0;1;1
+63808;22722;2;165;78.0;140;70;1;1;1;0;1;1
+63809;18380;2;170;65.0;120;80;1;1;0;0;1;0
+63810;20287;2;178;75.0;160;90;1;1;1;0;1;1
+63811;20483;1;164;76.0;130;90;3;1;0;0;0;1
+63812;17584;1;152;57.0;100;80;3;2;1;0;1;1
+63813;21966;2;175;59.0;120;60;1;1;1;0;1;1
+63814;20450;1;165;58.0;120;80;1;1;0;0;1;1
+63815;18896;2;171;80.0;120;80;1;1;0;0;1;0
+63817;20293;2;175;73.0;110;70;1;1;0;0;1;0
+63819;16901;2;168;67.0;120;80;1;1;0;0;1;0
+63823;22134;2;170;85.0;130;80;3;1;0;0;1;1
+63824;21945;1;156;58.0;150;90;1;1;0;0;1;1
+63825;22052;1;160;72.0;150;90;1;1;0;0;1;1
+63826;19634;2;165;72.0;120;80;1;1;0;1;1;0
+63828;21049;2;167;118.0;130;80;1;1;0;0;0;1
+63829;20463;1;160;85.0;120;80;1;1;0;0;1;0
+63830;14343;2;176;105.0;120;70;1;1;0;0;0;1
+63831;18829;1;154;45.0;110;70;2;1;0;0;1;0
+63832;18892;1;152;51.0;110;70;1;1;0;0;1;1
+63833;16768;1;149;65.0;130;90;1;1;0;0;1;0
+63834;23196;1;159;87.0;110;70;1;1;0;0;1;0
+63835;14694;1;160;58.0;110;70;1;1;0;0;1;0
+63836;21194;2;164;67.0;100;70;1;1;0;0;1;0
+63838;19562;1;160;70.0;120;80;1;1;0;0;0;0
+63839;16102;2;180;62.0;120;80;1;1;1;0;1;1
+63840;21278;1;158;69.0;140;90;1;1;0;0;0;1
+63842;22101;1;160;60.0;120;80;1;1;0;0;1;1
+63843;18848;1;169;65.0;120;80;1;1;0;1;1;1
+63845;21538;1;155;91.0;160;90;1;1;0;0;1;1
+63846;17038;1;163;83.0;140;90;2;1;0;0;0;1
+63848;14469;2;174;92.0;160;100;1;1;0;0;1;1
+63849;17408;1;159;84.0;140;80;1;1;0;0;1;0
+63850;22516;1;158;60.0;150;90;2;1;0;0;1;1
+63851;21243;2;173;84.0;110;70;1;1;0;0;1;0
+63852;21213;2;154;62.0;150;90;3;3;0;0;1;0
+63853;19707;1;154;58.0;145;90;1;1;0;0;1;0
+63855;19760;2;172;96.0;110;70;1;1;0;0;1;0
+63857;18070;2;160;70.0;120;60;1;1;0;0;0;1
+63858;16670;1;168;65.0;120;80;1;1;0;0;0;0
+63859;20447;1;160;65.0;100;60;1;1;0;0;1;0
+63860;23440;1;162;84.0;150;90;1;1;0;0;1;1
+63861;23409;1;164;68.0;150;90;1;1;0;0;1;1
+63862;21694;1;166;135.0;110;80;1;1;0;0;1;0
+63863;22166;2;160;90.0;140;90;1;1;0;0;1;1
+63864;21644;1;158;93.0;120;79;1;1;0;0;1;0
+63865;19555;1;165;64.0;120;80;1;1;0;0;0;0
+63867;19462;1;165;65.0;120;80;1;1;0;0;1;1
+63868;21980;1;160;114.0;150;100;3;1;0;0;1;0
+63869;15881;1;166;80.0;120;80;1;1;0;1;1;0
+63870;16653;2;170;85.0;120;80;3;1;1;0;1;1
+63871;18269;1;165;64.0;150;90;1;1;0;0;1;1
+63872;20525;1;176;100.0;100;60;1;2;0;0;1;1
+63873;20591;1;162;65.0;130;80;1;1;0;0;1;1
+63874;18407;1;161;69.0;140;90;1;1;0;0;1;1
+63875;19785;2;176;72.0;130;80;1;1;1;0;1;0
+63876;20261;2;167;97.0;160;100;1;2;0;0;0;1
+63877;16974;2;163;61.0;120;60;1;1;0;0;1;0
+63878;21350;1;163;64.0;120;80;1;1;0;0;1;1
+63880;21104;1;166;68.0;140;90;3;3;0;0;1;1
+63881;20561;2;167;85.0;140;90;1;2;0;0;1;0
+63882;19825;1;156;56.0;110;70;2;1;0;0;1;0
+63883;21676;1;157;50.0;120;80;1;1;0;0;1;1
+63885;14673;1;169;76.0;110;80;1;1;0;0;0;0
+63886;18358;1;165;53.0;120;80;1;1;0;0;1;0
+63887;19067;2;170;78.0;120;80;1;1;0;0;1;1
+63888;20470;1;170;81.0;120;80;1;1;0;0;1;0
+63889;14563;1;165;60.0;90;60;1;1;0;0;1;0
+63891;21689;1;152;81.0;120;80;3;3;0;0;1;0
+63892;22756;2;160;58.0;130;70;1;3;0;0;1;1
+63893;20960;1;170;65.0;110;70;1;1;0;0;0;0
+63894;19028;1;164;72.0;130;90;1;1;0;0;1;1
+63897;18882;1;155;87.0;130;80;3;2;0;0;1;1
+63898;18961;1;160;72.0;140;90;2;1;0;0;1;1
+63899;15480;1;169;67.0;120;80;1;1;0;0;0;0
+63900;18184;2;187;105.0;150;100;1;1;0;0;1;0
+63901;18987;1;157;60.0;120;80;1;1;0;0;1;0
+63902;20317;1;156;74.0;130;95;1;1;0;0;1;0
+63905;22796;1;174;85.0;140;80;1;1;0;0;0;1
+63906;17531;1;157;73.0;120;80;1;1;0;0;1;0
+63907;19460;2;170;75.0;120;80;1;1;0;0;1;0
+63909;15806;2;155;75.0;110;70;1;1;0;0;1;0
+63910;21966;2;162;70.0;150;70;2;1;0;0;1;1
+63911;19117;1;150;60.0;130;80;1;1;0;0;1;1
+63912;19143;1;158;57.0;90;60;1;1;0;0;1;0
+63913;21041;1;155;47.0;150;80;3;1;0;0;1;1
+63916;18102;1;163;64.0;110;70;1;1;0;0;1;0
+63917;14359;2;165;65.0;120;80;1;1;0;0;1;0
+63919;23241;1;162;114.0;110;70;3;1;0;0;1;0
+63920;18301;1;162;66.0;130;90;1;1;0;0;0;1
+63921;21143;1;152;67.0;130;80;1;1;0;0;1;0
+63922;20346;2;176;89.0;150;100;1;1;0;0;1;1
+63923;22558;1;165;105.0;140;90;2;1;0;0;1;1
+63924;19050;2;180;101.0;120;80;3;3;1;0;1;0
+63925;20990;2;169;92.0;110;70;1;1;0;0;1;1
+63927;21810;1;157;54.0;130;80;1;1;0;0;1;0
+63928;16738;1;160;100.0;230;120;2;1;0;0;1;1
+63930;16032;1;168;60.0;120;80;1;1;0;0;1;0
+63932;19807;2;179;74.0;110;70;1;1;0;0;1;0
+63933;20394;1;154;96.0;130;80;1;1;0;0;1;1
+63935;18887;2;170;79.0;170;90;2;1;0;1;1;1
+63936;23264;2;176;92.0;140;80;3;1;0;0;1;0
+63938;21714;1;165;64.0;160;90;2;1;0;0;1;1
+63939;20483;2;174;98.0;151;100;3;1;0;0;1;1
+63940;23203;1;165;59.0;140;80;2;2;0;0;1;1
+63942;20353;1;163;75.0;150;80;1;1;0;0;1;1
+63943;15123;1;157;64.0;110;70;1;1;0;0;1;0
+63944;18859;2;174;65.0;120;80;1;1;1;0;1;0
+63945;23249;1;162;70.0;125;80;1;1;0;0;1;1
+63946;16071;1;158;72.0;120;80;1;1;0;0;1;0
+63949;17682;2;167;89.0;120;80;1;1;0;0;0;1
+63951;18389;2;160;65.0;150;90;1;1;0;0;0;1
+63952;15105;1;163;48.0;100;60;1;1;0;0;1;0
+63953;19915;1;164;68.0;110;70;1;1;0;0;1;0
+63954;21157;2;171;79.0;120;80;1;1;0;0;1;0
+63955;15362;1;147;84.0;120;80;1;1;0;0;1;0
+63956;22472;1;160;80.0;140;90;1;1;0;0;0;0
+63957;14388;2;170;68.0;120;60;1;1;0;0;1;0
+63961;23278;1;159;72.0;150;100;2;1;0;0;1;1
+63962;19017;1;164;78.0;120;80;1;1;0;0;1;1
+63963;14497;2;170;78.0;120;80;1;1;0;0;1;0
+63964;20605;2;174;82.0;90;60;1;1;1;1;1;0
+63965;21967;1;158;53.0;130;85;3;3;0;0;0;0
+63967;18920;2;173;80.0;140;100;1;1;0;0;1;1
+63968;18249;1;168;65.0;110;80;3;3;0;0;0;0
+63972;19561;2;180;78.0;120;100;1;1;0;0;0;0
+63977;18169;1;158;66.0;120;80;1;2;0;0;1;0
+63978;18332;2;192;87.0;100;80;1;1;0;0;1;0
+63982;21953;1;162;50.0;120;80;1;1;0;0;1;0
+63983;16634;1;167;65.0;110;60;1;1;0;0;0;0
+63984;19123;1;156;83.0;120;80;1;1;0;0;1;1
+63985;22616;1;170;65.0;120;80;1;1;0;0;0;0
+63987;18170;1;167;130.0;170;1100;3;3;0;0;1;1
+63988;23170;2;162;61.0;140;80;1;2;0;0;1;1
+63989;21185;1;160;72.0;130;90;3;3;0;0;1;0
+63990;14695;2;165;69.5;120;80;2;2;0;0;1;0
+63991;20414;1;158;49.0;120;80;2;1;0;0;1;0
+63992;17396;1;163;87.0;140;100;2;2;0;0;1;1
+63993;18788;2;169;74.0;130;80;1;1;0;0;1;1
+63994;23382;2;172;87.0;140;80;1;2;0;0;0;1
+63995;18292;2;163;79.0;120;80;1;1;1;0;1;0
+63996;20418;1;155;95.0;140;90;1;2;0;0;1;1
+63997;16905;1;152;63.0;130;90;3;1;0;0;1;1
+63998;18192;2;172;87.0;140;80;1;1;0;0;1;1
+63999;18048;1;156;66.0;120;80;1;1;0;0;0;0
+64000;16005;1;152;73.0;140;90;1;1;0;0;1;1
+64001;19619;2;180;86.0;120;80;1;1;0;0;1;1
+64002;20581;1;168;70.0;120;80;3;3;0;0;1;0
+64004;22722;2;174;67.0;120;80;1;1;0;0;1;0
+64006;21333;1;156;68.0;120;70;1;1;0;0;1;1
+64007;23386;2;163;82.0;110;70;1;1;0;0;1;0
+64008;21992;2;170;70.0;150;90;1;1;0;0;1;1
+64009;16673;2;170;140.0;130;80;2;2;0;0;1;0
+64010;16696;1;138;40.0;100;80;1;1;0;0;1;0
+64011;16908;2;173;77.0;150;80;1;1;0;0;1;0
+64014;18183;1;166;77.0;140;90;2;1;0;0;0;1
+64015;21164;2;172;71.0;130;80;1;1;0;0;1;0
+64016;18293;2;168;83.0;130;80;1;2;1;1;1;1
+64017;21738;2;169;88.0;100;80;1;1;1;0;1;0
+64018;18486;1;154;55.0;100;70;1;1;0;0;1;0
+64021;15346;1;160;57.0;120;80;1;1;0;0;0;1
+64022;18153;1;168;77.0;120;80;2;1;0;0;0;1
+64024;16796;1;146;75.0;120;70;1;1;0;0;1;1
+64025;20518;2;180;69.0;100;70;1;1;0;0;0;0
+64027;18474;2;174;82.0;120;80;3;3;1;1;1;0
+64028;16855;1;160;100.0;120;70;1;1;0;0;1;0
+64030;16119;1;166;93.0;120;80;1;1;0;1;1;0
+64032;23128;2;176;116.0;150;80;1;2;0;0;1;1
+64034;19633;1;155;50.0;110;80;1;1;0;0;0;0
+64035;17388;2;160;68.0;120;70;1;1;0;0;1;0
+64036;20513;1;170;65.0;120;80;1;1;0;0;1;0
+64037;22710;1;165;65.0;120;80;1;3;0;0;0;1
+64038;17474;1;164;56.0;120;80;1;1;0;0;1;1
+64039;19602;1;163;68.0;12;80;2;1;0;0;1;1
+64040;20410;1;169;67.0;120;80;1;1;0;0;1;0
+64041;19733;1;160;82.0;120;80;1;1;0;0;0;0
+64042;18900;1;171;61.0;120;80;1;1;0;0;1;0
+64043;17544;1;158;85.0;120;80;1;1;0;0;1;0
+64044;20519;1;162;77.0;180;100;3;3;0;0;0;0
+64045;21116;1;162;67.0;150;100;3;1;0;0;1;1
+64046;22543;2;165;65.0;180;90;3;3;0;0;0;1
+64049;21241;1;165;66.0;120;80;1;1;0;0;1;1
+64050;21252;1;154;65.0;100;60;1;1;0;0;1;0
+64053;23562;2;161;64.0;120;80;1;1;0;0;0;1
+64054;16120;2;166;105.0;160;1100;2;1;1;0;1;1
+64055;18179;2;173;71.0;100;70;1;1;1;1;1;0
+64056;14295;1;157;71.0;130;90;1;1;0;0;1;0
+64057;22772;1;165;85.0;110;70;2;2;0;0;0;0
+64061;19805;1;160;65.0;110;70;1;1;0;0;1;0
+64062;18410;2;164;75.0;130;80;1;1;0;0;1;0
+64063;22665;1;163;115.0;160;90;1;1;0;1;1;0
+64066;19783;1;161;68.0;115;75;1;1;0;0;1;0
+64067;19841;2;174;65.0;120;80;1;1;1;0;1;0
+64068;17546;1;158;76.0;100;80;1;1;0;0;1;0
+64070;22493;1;158;60.0;140;90;1;1;0;0;1;1
+64071;19017;1;158;62.0;110;70;1;1;0;0;1;0
+64073;20962;1;161;67.0;130;85;2;2;0;1;1;1
+64074;16075;1;158;70.0;110;80;1;1;0;0;1;0
+64075;16808;1;145;75.0;120;80;1;1;0;0;1;1
+64076;17674;2;173;86.0;80;120;1;1;1;0;1;0
+64077;21208;2;160;60.0;120;80;1;1;0;0;1;1
+64078;21866;1;156;55.0;120;80;1;1;0;0;0;1
+64079;20510;1;146;53.0;120;70;1;1;1;0;0;1
+64082;21209;2;172;76.0;120;80;1;1;0;0;1;0
+64083;16777;1;158;64.0;110;70;1;1;0;0;0;0
+64084;15400;1;172;82.0;110;70;1;1;0;0;1;0
+64085;21034;2;168;77.0;130;70;3;3;0;0;1;1
+64086;17653;2;170;68.0;110;70;1;1;0;0;1;1
+64088;16746;2;163;77.0;140;90;2;1;0;0;1;1
+64089;15277;1;162;73.0;120;80;1;1;0;0;1;0
+64091;22132;1;166;57.0;120;80;1;1;0;0;1;0
+64093;19690;1;161;78.0;120;90;1;1;0;0;1;0
+64095;18350;2;172;75.0;160;80;2;1;0;0;1;1
+64096;19017;1;162;80.0;110;70;1;1;0;0;1;1
+64099;20926;1;162;59.0;120;90;2;1;0;0;1;0
+64101;15977;1;170;65.0;130;90;3;1;0;0;1;1
+64102;18375;2;174;70.0;120;80;1;1;0;1;1;0
+64103;21938;1;162;56.0;150;100;1;1;0;0;1;1
+64104;21994;2;164;53.0;150;100;1;1;1;1;1;1
+64105;20302;2;176;75.0;120;80;1;1;0;0;1;0
+64109;18366;1;160;70.0;110;70;1;1;0;0;1;0
+64110;22759;1;153;49.0;120;80;1;1;0;0;0;1
+64111;22495;2;172;75.0;110;80;1;1;0;0;1;1
+64112;16079;2;167;82.0;120;80;1;1;0;0;1;0
+64113;22575;2;175;76.0;170;100;1;1;0;0;1;1
+64115;21722;1;146;66.0;120;80;1;1;0;0;1;0
+64116;20332;2;178;86.0;150;100;3;1;0;0;1;1
+64118;20700;1;165;75.0;130;80;2;1;0;0;1;0
+64119;23348;1;161;65.0;130;90;1;1;0;0;0;1
+64121;17073;2;160;80.0;120;80;2;1;0;0;1;1
+64122;20557;1;160;75.0;160;100;1;1;0;0;1;1
+64123;17573;1;160;80.0;120;80;1;1;0;0;0;0
+64124;15386;2;166;64.0;150;100;1;1;0;0;1;1
+64126;14567;1;162;85.0;120;80;1;1;0;0;1;0
+64127;22776;2;170;70.0;120;80;1;1;0;0;1;1
+64128;22459;1;148;74.0;180;902;2;2;0;0;1;1
+64131;15228;1;170;64.0;110;70;1;1;0;0;1;0
+64132;20897;1;161;72.0;110;70;1;1;0;0;1;0
+64134;20213;1;167;69.0;120;80;1;1;0;0;1;0
+64137;21022;2;169;94.0;140;80;1;2;0;0;1;1
+64138;21142;2;180;94.0;160;100;3;3;1;0;1;1
+64139;20909;2;175;67.0;150;90;1;1;0;0;1;0
+64140;18117;1;153;43.0;110;70;1;1;0;0;1;1
+64141;18771;1;161;106.0;140;100;1;1;0;0;1;1
+64142;21383;2;167;94.0;140;90;1;1;0;0;1;1
+64143;20359;2;165;74.0;120;90;1;2;1;0;0;0
+64145;21024;1;173;72.0;120;80;1;1;0;0;0;0
+64147;16680;1;150;67.0;90;70;1;1;0;0;1;0
+64148;21966;1;163;64.0;120;80;2;1;0;0;0;1
+64149;15257;2;185;81.0;120;80;1;1;1;0;1;1
+64150;18359;2;174;78.0;130;60;2;1;0;0;1;0
+64152;21069;1;159;69.0;120;80;1;1;0;0;0;1
+64154;21169;2;165;74.0;160;90;1;1;1;1;1;1
+64155;18877;1;162;89.0;150;90;1;1;0;0;1;1
+64157;23566;1;165;68.0;125;80;2;1;0;0;1;1
+64158;16834;1;163;89.0;120;80;1;1;0;1;1;0
+64162;20491;1;150;87.0;150;80;1;1;0;0;1;1
+64163;16200;2;154;62.0;180;100;3;1;0;1;1;0
+64164;18946;2;169;74.0;140;80;1;1;0;0;0;0
+64165;20664;1;155;71.0;130;80;1;1;0;0;1;0
+64166;15109;1;165;65.0;110;70;1;1;0;0;1;0
+64167;19172;1;145;55.0;140;100;2;1;0;0;1;1
+64168;17335;1;164;69.0;90;60;1;1;0;0;1;0
+64169;19566;2;185;80.0;120;70;1;1;0;0;1;0
+64170;21942;2;169;80.0;140;80;2;1;1;1;1;0
+64172;18205;1;164;96.0;120;80;1;1;0;0;0;0
+64174;16688;1;159;72.0;120;80;1;1;0;0;1;1
+64175;20536;1;160;61.0;110;70;3;3;0;0;1;0
+64177;23110;1;163;71.0;120;80;1;1;0;0;0;1
+64178;21770;1;150;68.0;120;80;1;1;0;0;1;0
+64179;21209;2;168;75.0;120;90;1;1;0;0;1;0
+64180;20195;1;157;73.0;90;60;1;1;0;0;1;0
+64181;21861;1;168;72.0;110;80;1;1;0;0;0;1
+64183;18528;1;162;99.0;130;90;1;1;0;0;0;0
+64184;16046;2;164;67.0;120;80;1;1;1;1;1;0
+64185;20370;1;168;75.0;120;80;1;1;0;0;1;0
+64186;20616;1;168;57.0;120;80;1;1;0;0;0;0
+64189;21154;2;165;79.0;160;100;3;1;0;0;1;1
+64191;17554;2;185;80.0;110;70;1;1;0;0;0;0
+64192;19772;1;165;66.0;120;80;1;1;0;0;0;1
+64193;21289;1;167;66.0;120;80;1;1;0;0;1;1
+64196;19920;2;170;56.0;130;80;1;3;1;0;1;1
+64198;19582;2;171;72.0;120;80;1;1;1;0;0;0
+64199;18292;1;168;73.0;120;70;1;1;0;0;1;0
+64201;19691;1;163;63.0;120;80;3;3;0;0;0;1
+64202;19792;2;175;92.0;120;80;1;1;1;0;1;1
+64203;15801;2;168;65.0;130;80;1;1;0;0;1;1
+64205;14508;1;156;100.0;160;100;1;1;0;0;1;1
+64207;22628;1;167;67.0;120;80;1;1;0;0;1;0
+64209;18793;1;167;69.0;110;70;1;1;0;0;1;1
+64210;17298;1;165;68.0;140;90;1;1;0;0;0;1
+64211;22170;2;170;62.0;120;80;1;1;0;0;1;1
+64212;23541;2;169;122.0;140;80;1;2;1;1;0;1
+64215;23331;2;171;61.0;130;80;1;1;0;0;1;1
+64218;21781;1;165;86.0;140;80;3;3;0;1;1;1
+64220;14700;1;168;63.0;110;70;1;1;0;0;1;0
+64222;21094;1;168;59.0;110;80;1;1;0;0;1;0
+64224;20289;1;162;71.0;120;80;1;1;0;0;1;1
+64225;19051;1;159;63.0;120;90;1;1;0;1;1;1
+64229;16913;1;161;75.0;150;90;2;2;0;0;1;1
+64230;20428;1;157;80.0;150;90;1;1;0;0;1;1
+64231;15812;1;158;64.0;120;80;1;1;0;0;1;0
+64232;15851;2;183;63.0;100;70;1;1;0;0;1;0
+64233;18035;1;156;56.0;120;80;2;1;0;0;1;1
+64234;16694;2;172;60.0;126;83;1;1;0;0;1;0
+64237;20534;1;162;66.0;130;90;3;1;0;1;1;1
+64238;19588;2;165;67.0;130;90;1;1;0;0;1;1
+64240;21679;1;167;72.0;130;90;1;1;0;0;1;1
+64241;22803;1;155;115.0;110;90;1;1;0;0;1;1
+64242;16037;1;159;80.0;140;1000;1;1;0;0;0;1
+64244;18700;1;164;110.0;120;80;3;1;0;0;1;1
+64245;22807;1;171;69.0;120;80;1;1;0;0;1;0
+64248;17484;1;158;85.0;170;90;1;1;0;0;1;0
+64249;20956;2;178;105.0;130;80;3;1;1;0;1;1
+64251;21139;1;168;60.0;110;70;1;1;0;0;1;0
+64252;21010;2;164;68.0;120;80;1;1;1;1;1;1
+64254;21908;1;169;69.0;120;80;1;1;0;1;1;1
+64256;16183;1;168;70.0;110;70;2;1;0;0;1;0
+64257;21734;1;159;59.0;150;90;1;1;0;0;0;1
+64258;15910;2;171;82.0;120;60;3;3;0;0;1;1
+64260;21395;1;168;70.0;120;80;1;1;0;0;1;1
+64261;20209;1;184;87.0;120;80;1;1;0;0;1;0
+64262;21067;2;182;86.0;120;80;2;1;0;0;1;0
+64263;21072;2;178;100.0;130;80;2;3;0;0;1;1
+64265;17352;1;184;96.0;120;80;1;1;0;0;1;1
+64266;19730;2;157;80.0;130;80;1;1;0;0;1;0
+64267;23388;2;172;68.0;140;1000;1;1;0;0;1;1
+64269;21898;1;170;110.0;140;90;2;1;0;0;1;0
+64271;15339;1;120;80.0;120;80;1;1;0;0;1;0
+64274;21152;1;156;78.0;120;80;1;1;0;0;0;1
+64275;22562;2;174;116.0;145;80;1;3;0;0;1;0
+64276;17349;1;162;60.0;140;90;1;1;0;0;1;1
+64279;15816;2;168;70.0;130;90;1;1;0;0;0;1
+64283;22458;2;180;80.0;130;80;1;1;0;0;1;1
+64284;20675;1;167;70.0;127;90;1;2;0;0;1;1
+64286;21878;1;151;64.0;120;70;3;1;0;0;1;1
+64288;15904;1;169;69.0;130;90;1;2;0;0;1;0
+64289;15532;1;170;65.0;120;80;1;1;0;0;0;0
+64290;16962;1;158;62.0;110;70;1;1;0;0;1;0
+64291;19907;2;185;65.0;120;80;2;2;0;0;1;1
+64292;23445;2;164;67.0;120;70;1;1;0;0;0;0
+64293;17994;1;164;70.0;140;80;3;1;0;0;1;1
+64295;15228;1;160;59.0;100;70;1;1;0;0;1;0
+64296;17414;1;161;68.0;115;70;1;1;0;0;1;0
+64297;16718;2;170;68.0;120;80;1;1;0;0;1;0
+64298;19029;1;170;118.0;180;110;1;1;0;0;0;1
+64299;21700;1;164;80.0;150;90;1;1;0;0;1;1
+64301;18859;1;159;79.0;110;80;1;2;0;0;1;0
+64304;20544;1;158;70.0;13;75;1;1;0;0;0;1
+64305;19093;1;157;60.0;90;60;1;1;0;0;1;0
+64306;20975;1;158;82.0;120;80;1;1;0;0;1;1
+64307;20223;1;158;68.0;120;65;1;1;0;0;1;0
+64308;17445;2;170;84.0;120;80;1;1;0;0;1;0
+64309;17601;2;167;65.0;120;80;1;2;0;0;1;1
+64310;16028;1;161;95.0;130;80;3;3;0;0;1;1
+64311;21769;2;173;70.0;120;70;1;1;0;0;1;0
+64312;14644;1;158;82.0;120;80;1;1;0;0;1;0
+64313;20989;1;161;80.0;100;70;2;1;0;0;1;0
+64315;17680;1;149;74.0;160;99;2;1;0;0;0;1
+64316;19600;1;167;67.0;120;80;1;1;0;0;1;1
+64318;20603;1;172;75.0;130;80;1;1;0;0;1;1
+64319;16806;2;174;92.0;145;95;1;1;0;0;0;1
+64320;21079;1;155;62.0;100;80;1;1;1;0;0;0
+64321;18174;1;158;65.0;120;80;1;1;0;0;1;0
+64322;21036;1;168;89.0;150;80;1;1;0;0;1;1
+64323;18239;2;161;63.0;140;90;1;1;0;0;0;1
+64324;14600;2;169;110.0;120;80;1;1;1;0;1;1
+64325;20482;2;171;105.0;140;80;1;1;0;0;1;1
+64326;20311;1;151;94.0;140;80;1;1;0;1;1;0
+64327;21123;1;160;80.0;140;90;3;3;0;0;1;0
+64328;20323;2;170;70.0;120;80;1;1;1;1;1;1
+64330;15094;1;160;63.0;130;90;1;1;0;0;1;0
+64331;21281;1;168;70.0;130;80;1;1;0;0;1;1
+64332;23436;1;150;67.0;154;92;1;1;0;0;0;0
+64333;21266;2;175;83.0;140;90;2;1;0;0;1;1
+64334;19075;1;151;67.0;120;80;1;1;0;0;1;0
+64335;20484;1;160;62.0;110;70;1;1;0;0;1;0
+64336;20450;2;174;66.0;100;70;2;1;1;1;1;0
+64339;18355;1;153;81.0;110;70;2;1;0;0;1;0
+64340;15947;1;152;85.0;207;1139;1;2;0;0;1;1
+64342;22395;2;167;93.0;130;90;1;1;1;0;1;0
+64343;22584;1;161;100.0;120;80;1;1;0;0;1;1
+64345;22519;1;172;76.0;130;80;2;2;0;0;0;1
+64346;22703;1;166;58.0;118;81;1;1;0;0;0;1
+64348;23232;2;170;55.0;130;60;2;2;0;0;1;1
+64349;18260;1;158;74.0;120;80;1;1;0;0;1;0
+64350;15966;2;162;68.0;140;90;1;1;1;0;1;1
+64351;23614;2;169;74.0;160;90;1;1;0;0;1;1
+64352;21050;1;155;65.0;120;80;1;1;0;0;1;0
+64354;15362;1;166;69.0;120;80;1;1;0;0;0;0
+64355;15300;1;164;51.0;120;80;1;2;0;0;1;0
+64356;18231;1;168;65.0;120;80;1;1;0;0;1;0
+64357;18521;1;167;65.0;170;80;1;1;0;0;1;1
+64358;21811;1;150;74.0;120;80;1;1;0;0;1;1
+64359;15200;2;170;68.0;120;80;1;1;0;0;1;0
+64360;15915;2;184;89.0;160;100;1;1;0;0;1;1
+64362;21739;1;177;70.0;120;70;2;1;0;1;1;1
+64363;18941;1;163;112.0;130;100;2;2;0;0;1;1
+64364;16159;1;156;95.0;140;90;3;1;0;0;1;0
+64365;19272;1;167;66.0;120;70;1;1;0;0;1;1
+64366;18218;1;150;84.0;120;80;1;1;0;0;1;1
+64367;18253;1;153;59.0;90;60;1;1;0;0;1;0
+64369;17804;1;164;62.0;100;70;2;1;0;0;0;1
+64370;16751;1;163;70.0;115;80;1;1;0;1;1;0
+64371;16836;2;160;52.0;110;70;1;1;0;0;1;0
+64372;19640;1;160;58.0;120;80;1;1;0;0;1;0
+64374;18139;2;171;75.0;140;90;1;1;1;0;0;1
+64375;19805;1;154;61.0;90;70;2;2;0;0;1;0
+64377;19015;2;167;49.0;110;70;1;1;1;0;1;0
+64378;23261;2;162;61.0;140;90;1;1;0;0;1;0
+64379;15960;1;165;72.0;110;80;1;1;0;0;0;0
+64380;19836;1;160;76.0;170;100;3;1;0;0;1;1
+64381;21300;1;167;103.0;150;90;2;1;0;0;1;1
+64382;18933;2;170;81.0;150;1000;1;1;1;0;1;0
+64383;18841;1;152;63.0;140;90;1;1;0;0;1;1
+64384;17650;2;168;67.0;120;80;1;1;0;0;1;0
+64386;20461;1;158;85.0;130;90;3;3;0;0;1;0
+64387;22427;2;170;88.0;120;90;2;1;0;0;1;1
+64390;20433;1;166;62.0;120;75;1;1;0;1;1;0
+64391;18411;2;173;74.0;120;80;1;1;0;0;1;0
+64394;18130;1;110;70.0;110;70;1;1;0;0;1;0
+64398;22502;2;162;88.0;120;80;2;2;0;0;0;1
+64399;21089;1;176;80.0;170;80;2;3;0;0;1;1
+64403;19165;1;157;40.0;125;80;1;1;1;0;1;0
+64405;18196;1;158;89.0;110;80;1;1;0;0;1;1
+64406;22560;2;165;60.0;140;80;1;1;1;0;0;1
+64407;21138;1;165;78.0;110;75;1;2;0;0;1;0
+64408;14541;1;167;64.0;120;80;1;1;0;0;1;0
+64411;21943;2;175;76.0;120;80;3;1;0;0;1;1
+64412;21203;2;168;72.0;140;90;1;1;0;0;1;1
+64413;19216;1;166;70.0;130;80;1;1;0;0;1;0
+64414;16847;1;165;59.0;120;80;1;1;0;0;0;0
+64415;18715;1;164;107.0;140;80;1;3;0;0;1;1
+64416;21855;2;170;88.0;130;80;2;1;0;0;1;1
+64417;23394;1;160;60.0;130;70;1;1;0;0;1;1
+64418;20369;2;175;70.0;150;90;1;1;0;0;1;1
+64419;18875;1;164;75.0;120;80;1;1;0;0;1;0
+64421;21158;2;168;83.0;110;70;3;1;0;0;1;1
+64424;20537;1;159;68.0;100;80;1;1;0;0;1;0
+64425;20261;1;167;75.0;120;80;1;1;0;0;1;0
+64426;20699;1;168;64.0;130;90;1;1;0;0;1;1
+64427;19432;2;168;68.0;120;80;1;1;0;0;1;1
+64428;18907;1;164;60.0;120;80;1;1;0;0;1;0
+64430;19097;1;173;120.0;130;90;3;1;0;0;1;1
+64431;16851;2;170;65.0;120;80;1;1;0;0;1;0
+64434;20384;1;163;87.0;140;90;1;1;0;0;1;0
+64435;17526;1;162;120.0;160;1000;1;1;0;0;1;0
+64436;17609;1;160;62.0;130;80;1;1;0;0;1;1
+64437;15262;1;163;81.0;120;80;1;1;0;0;1;1
+64438;21021;2;164;74.0;120;80;1;1;0;0;0;0
+64440;22686;2;170;80.0;130;80;1;1;0;0;1;1
+64442;16880;2;170;68.0;120;80;1;1;0;0;1;0
+64443;18923;1;162;63.0;140;80;1;1;0;0;1;0
+64444;18946;2;160;61.0;120;80;1;1;1;0;1;0
+64445;21280;1;165;65.0;120;80;1;1;0;0;1;0
+64446;16972;2;178;63.0;140;90;2;1;1;0;1;1
+64447;15100;2;171;77.0;140;1000;1;1;0;0;1;1
+64448;15771;1;153;63.0;90;60;1;1;0;0;1;0
+64449;22896;1;165;64.0;100;70;1;1;0;0;1;1
+64453;20301;1;165;65.0;120;80;1;1;0;0;1;1
+64454;19779;1;170;68.0;120;80;1;1;0;0;1;1
+64455;16640;1;160;70.0;130;90;1;1;0;0;0;0
+64458;19818;1;162;84.0;140;90;1;2;0;0;1;1
+64459;20568;2;162;74.0;120;89;1;1;0;0;0;0
+64461;22019;1;159;70.0;100;70;1;1;0;0;1;0
+64463;22543;2;170;75.0;120;90;1;1;0;0;1;0
+64464;16091;1;171;69.0;120;80;1;1;0;0;1;0
+64465;18148;2;170;60.0;120;80;1;1;0;0;1;1
+64466;16044;2;170;90.0;120;80;1;1;0;0;1;0
+64467;15881;2;170;72.0;120;80;1;1;1;1;1;0
+64469;14429;2;168;72.0;120;80;1;1;0;0;0;0
+64470;23462;1;165;62.0;120;80;1;1;0;0;1;1
+64471;20399;1;174;70.0;110;70;1;1;0;0;1;0
+64472;21921;1;168;64.0;120;80;1;1;0;0;1;1
+64473;14655;1;156;53.0;106;71;1;1;0;0;0;0
+64475;22621;1;160;86.0;155;90;1;1;0;0;0;1
+64476;15111;1;160;67.0;120;70;1;1;0;0;1;1
+64477;17527;1;170;74.0;130;80;1;1;0;0;1;1
+64478;20440;1;164;67.0;110;70;2;1;0;0;1;0
+64481;20227;2;172;100.0;130;80;2;2;1;0;0;0
+64482;18424;1;168;72.0;110;70;1;1;0;1;0;0
+64483;14509;1;159;49.0;100;60;1;1;0;0;1;0
+64484;18986;1;149;70.0;140;90;1;1;0;0;0;1
+64485;23403;1;161;56.0;140;90;2;1;0;0;1;1
+64486;16961;2;168;72.0;120;80;1;1;0;0;1;0
+64487;22514;1;166;80.0;120;80;3;1;0;0;1;1
+64489;23116;1;154;100.0;170;1000;1;1;0;0;1;1
+64490;23256;1;154;98.0;170;100;3;1;0;0;1;1
+64492;22714;1;164;68.0;120;80;2;1;0;0;1;0
+64493;17599;2;163;71.0;120;80;3;1;0;0;1;1
+64494;21912;1;156;64.0;130;90;1;1;0;0;1;1
+64495;23348;1;158;69.0;120;80;1;1;0;0;1;1
+64496;18818;1;155;90.0;120;80;3;1;0;0;1;1
+64498;16155;1;162;67.0;130;90;1;2;0;1;1;1
+64505;21216;1;153;65.0;150;90;1;1;0;0;1;1
+64506;19439;1;174;91.0;140;100;1;1;0;0;1;1
+64507;22600;2;175;77.0;120;80;3;1;0;0;1;1
+64509;19791;2;161;65.0;120;80;1;3;0;0;1;0
+64510;21962;1;158;67.0;120;80;3;3;0;0;1;0
+64513;19013;1;149;53.0;130;80;2;1;0;0;1;1
+64514;21348;1;165;63.0;140;90;1;1;0;0;1;1
+64515;23263;1;161;74.0;110;70;1;1;0;0;1;0
+64516;14662;1;168;72.0;120;80;1;1;0;0;1;0
+64517;20292;2;172;95.0;140;1000;3;2;0;0;0;0
+64519;20327;1;165;78.0;120;60;1;1;0;0;1;0
+64522;23548;2;176;75.0;150;90;1;1;1;1;1;1
+64523;18703;1;155;65.0;120;80;1;1;0;0;1;1
+64525;15439;2;168;63.0;120;80;2;1;0;0;1;0
+64526;19112;2;170;74.0;120;80;1;1;0;0;1;0
+64527;18406;1;164;67.0;140;80;1;1;0;0;1;1
+64529;18287;1;160;60.0;120;80;1;1;0;0;1;0
+64531;19909;2;164;71.0;140;90;2;1;0;1;1;1
+64532;19685;2;187;96.0;120;90;1;1;0;0;0;0
+64534;20554;2;170;83.0;140;90;1;1;0;0;1;1
+64536;18884;2;172;105.0;160;110;2;2;0;1;1;1
+64538;20210;2;176;72.0;140;90;1;1;0;0;1;1
+64539;19022;2;173;99.0;140;90;2;1;1;1;0;0
+64540;21378;2;174;69.0;150;90;2;2;1;0;1;1
+64542;18865;2;175;82.0;120;80;1;1;0;0;0;0
+64543;20376;1;158;89.0;150;90;2;1;0;0;1;1
+64544;15069;1;165;75.0;150;100;2;2;0;0;1;1
+64545;21053;2;170;80.0;110;70;1;1;0;0;1;1
+64546;15205;1;169;85.0;150;90;1;1;1;1;1;1
+64547;23131;2;178;85.0;140;90;3;1;1;0;0;1
+64549;16749;1;156;63.0;120;70;1;1;0;0;0;0
+64550;17419;2;168;65.0;140;90;1;1;0;0;0;1
+64552;23279;1;151;85.0;100;80;3;3;0;0;1;1
+64556;14504;2;162;62.0;150;90;1;1;0;0;0;1
+64557;20307;2;168;89.0;130;80;3;1;0;0;1;1
+64559;23512;2;159;61.0;120;80;1;1;0;0;1;0
+64560;23401;1;160;60.0;130;80;1;1;0;0;1;1
+64562;19140;2;169;71.0;120;80;2;1;0;0;1;0
+64563;20948;1;157;80.0;150;80;3;1;0;0;0;1
+64565;21253;2;168;70.0;120;80;1;1;0;0;1;1
+64566;19737;2;169;89.0;160;90;1;1;0;0;0;1
+64567;17414;1;156;51.0;110;70;1;1;0;0;1;0
+64570;18196;2;178;102.0;120;80;2;2;0;0;1;0
+64571;23561;1;158;66.0;150;80;1;1;0;0;1;1
+64572;18284;1;165;60.0;140;90;2;1;0;0;1;1
+64574;20542;1;164;97.0;160;1100;1;1;0;1;1;1
+64577;21166;2;171;74.0;180;90;1;2;0;0;0;1
+64578;19842;2;175;75.0;120;80;1;1;0;0;1;0
+64580;21271;1;154;78.0;130;80;1;1;0;0;1;1
+64583;20620;1;160;60.0;120;80;1;1;0;0;1;0
+64585;22568;1;164;70.0;120;80;1;1;0;0;1;1
+64586;19915;1;163;75.0;120;80;3;3;0;0;1;0
+64588;18364;1;167;97.0;120;80;1;1;0;0;1;1
+64590;22403;1;156;91.0;120;70;1;1;0;0;1;0
+64591;20911;1;165;83.0;160;90;3;1;0;0;1;1
+64593;21965;1;155;68.0;140;90;1;1;0;0;1;0
+64594;19690;1;150;50.0;120;80;1;1;0;0;1;0
+64595;20644;1;171;81.0;120;80;1;2;0;0;1;0
+64597;19119;1;162;93.0;130;80;3;1;0;0;1;1
+64598;20881;2;169;73.0;130;80;1;1;1;0;1;0
+64599;22875;2;164;72.0;130;90;1;2;0;0;0;1
+64601;21318;1;158;67.0;120;80;1;1;0;1;1;0
+64602;22330;1;148;50.0;120;80;1;1;0;0;0;0
+64603;17631;2;161;62.0;120;80;1;1;0;0;1;0
+64609;21001;2;178;66.0;120;80;1;1;1;1;1;0
+64610;16685;2;170;80.0;120;80;1;1;0;0;1;1
+64611;16557;2;178;100.0;100;80;1;1;0;0;1;0
+64612;15230;1;164;70.0;12;80;1;1;0;0;0;1
+64613;18070;2;182;68.0;150;90;1;1;0;0;0;1
+64614;20161;1;170;72.0;120;70;1;1;0;0;1;1
+64616;22614;2;160;55.0;140;80;1;1;0;0;1;1
+64618;19781;2;161;86.0;150;90;1;1;1;1;1;1
+64619;23150;1;169;74.0;120;80;1;1;0;0;0;1
+64620;14542;1;155;67.0;110;70;1;1;0;0;1;0
+64623;19510;1;156;54.0;120;80;1;1;0;0;1;0
+64624;18951;1;156;52.0;160;100;2;1;0;0;1;1
+64626;21369;2;167;74.0;120;80;1;1;0;0;1;0
+64627;21903;2;170;70.0;120;80;1;1;0;0;1;0
+64628;17580;2;178;92.0;160;100;1;1;0;0;1;1
+64629;19822;1;170;72.0;130;80;1;1;0;0;1;0
+64630;21728;2;176;70.0;155;95;1;1;0;0;0;0
+64633;21309;2;163;65.0;120;80;1;1;0;0;0;0
+64634;20678;2;170;75.0;140;80;1;1;0;0;1;1
+64635;19880;1;164;62.0;120;70;1;1;0;0;1;0
+64638;18887;2;168;65.0;120;80;1;1;0;0;1;0
+64639;21746;1;173;78.0;160;100;1;1;0;0;1;0
+64641;21889;1;156;92.0;160;100;2;1;0;0;1;1
+64642;22752;2;172;73.0;140;80;1;3;0;0;1;1
+64643;19697;2;162;56.0;120;80;1;1;0;0;1;0
+64644;21912;2;168;90.0;180;90;1;1;0;0;0;1
+64647;19078;1;157;60.0;130;80;1;1;0;0;0;0
+64649;19655;1;160;61.0;140;90;1;1;0;0;1;1
+64651;19849;1;160;63.0;180;1000;1;1;0;0;1;1
+64653;19632;1;178;78.0;120;80;1;1;0;0;0;0
+64655;19844;2;175;75.0;120;80;2;2;0;0;1;0
+64657;15962;2;179;90.0;120;80;1;1;0;0;0;0
+64659;18755;2;171;78.0;130;80;1;1;0;0;1;1
+64660;19808;2;176;76.0;120;80;1;2;0;0;0;0
+64661;20438;1;168;72.0;120;80;1;1;0;0;1;0
+64662;20420;1;166;65.0;110;90;1;1;0;0;1;0
+64663;18132;1;160;59.0;130;80;1;1;0;0;1;0
+64664;19003;1;146;87.0;150;100;3;1;0;0;1;1
+64665;21952;2;173;74.0;120;90;1;1;0;0;1;0
+64666;14819;1;163;84.0;163;107;1;1;0;0;1;0
+64668;16171;1;157;48.0;130;80;2;1;0;0;1;1
+64669;22634;2;158;65.0;130;90;1;1;0;0;1;1
+64670;19754;1;174;82.0;130;80;3;3;0;0;1;0
+64671;21946;1;161;88.0;115;70;2;1;0;0;0;0
+64673;15274;1;175;68.0;110;70;1;1;0;0;1;0
+64674;21840;1;164;81.0;120;80;1;1;0;0;1;1
+64675;21708;1;163;87.0;160;90;1;1;0;0;1;1
+64676;14614;1;161;81.0;160;120;1;2;0;1;1;1
+64677;16882;1;157;58.0;90;60;1;1;0;0;0;0
+64678;17556;2;173;105.0;160;100;1;1;0;0;1;1
+64679;20457;1;168;70.0;120;80;1;1;0;0;1;1
+64680;19457;1;155;67.0;160;80;1;1;0;0;1;0
+64681;19973;1;165;71.0;140;80;1;1;0;0;0;1
+64682;19856;2;162;71.0;130;80;1;1;0;0;1;1
+64683;15854;1;163;76.0;120;80;1;1;0;0;0;0
+64688;23445;1;159;77.0;120;80;3;1;0;0;1;1
+64689;21947;1;162;69.0;120;80;1;1;0;0;1;0
+64690;16823;2;170;65.0;120;80;1;1;0;0;1;1
+64693;20400;1;165;68.0;120;80;1;1;0;0;1;1
+64694;19795;1;162;100.0;120;80;1;1;0;0;0;0
+64695;17417;1;156;54.0;110;70;1;1;0;0;1;0
+64696;15980;1;163;86.0;130;90;1;1;0;0;1;0
+64697;18877;2;182;112.0;120;80;1;1;0;0;0;0
+64700;22039;1;168;68.0;120;80;1;1;0;0;1;0
+64702;21968;2;169;78.0;140;90;1;2;0;0;1;1
+64703;23446;2;176;74.0;150;90;2;2;0;0;1;0
+64707;19587;1;154;52.0;100;60;1;1;0;0;1;1
+64709;20389;1;165;70.0;120;80;1;1;0;0;1;0
+64713;16782;2;178;103.0;120;80;1;1;0;0;1;0
+64716;23561;2;170;75.0;130;90;3;1;1;0;1;1
+64722;21848;1;169;66.0;100;70;1;1;0;0;1;1
+64724;20531;1;168;65.0;120;80;1;1;0;0;1;1
+64725;16189;2;169;70.0;120;80;1;1;1;1;1;0
+64726;20138;2;180;96.0;140;90;2;1;0;0;1;1
+64727;19801;1;159;73.0;90;60;3;3;0;0;1;0
+64728;20977;1;170;75.0;120;80;1;1;0;0;1;0
+64731;15892;1;162;78.0;120;80;1;1;0;0;0;1
+64732;18813;1;167;109.0;130;90;1;1;0;0;1;1
+64733;14530;1;163;55.0;110;80;1;1;0;0;1;0
+64734;19175;2;172;89.0;120;80;1;1;1;1;1;0
+64735;20469;1;158;81.0;140;90;1;1;0;0;1;1
+64736;23524;2;172;75.0;150;80;1;1;0;0;0;1
+64738;15502;2;170;75.0;130;90;1;2;0;0;1;1
+64739;19078;2;165;62.0;110;70;1;1;0;0;1;0
+64740;18019;1;158;69.0;110;70;1;1;0;0;1;0
+64741;21147;2;164;64.0;100;60;3;3;0;1;1;0
+64742;22153;1;165;63.0;120;80;1;1;0;0;1;0
+64743;16644;2;169;61.0;110;70;1;1;1;0;1;0
+64744;18410;1;163;56.0;120;79;3;3;0;0;1;0
+64745;21848;1;159;97.0;140;1000;1;1;0;0;1;1
+64747;14546;2;170;68.0;120;80;1;1;1;1;0;0
+64748;17295;1;160;47.0;90;50;2;1;0;0;1;0
+64749;18945;2;195;90.0;130;80;1;1;0;0;1;0
+64751;23375;1;167;64.0;100;60;1;3;0;0;0;0
+64752;16834;2;162;78.0;130;90;2;1;0;0;1;1
+64753;19668;2;167;64.0;160;100;1;3;0;0;1;1
+64754;20493;1;158;62.0;120;80;1;1;0;0;1;0
+64756;16969;1;165;62.0;120;80;1;1;0;0;1;1
+64758;16078;1;162;56.0;120;80;1;1;0;0;1;1
+64759;20660;2;162;79.0;120;90;1;2;0;1;1;1
+64760;15877;1;162;90.0;140;90;3;1;0;0;1;1
+64761;23315;1;148;62.0;140;90;2;1;0;0;1;1
+64762;18261;1;160;70.0;110;70;1;1;0;0;1;0
+64764;20168;1;157;84.0;150;1000;3;3;0;0;1;1
+64765;22163;1;156;55.0;120;80;1;1;0;0;1;0
+64766;17609;1;160;65.0;120;80;1;1;0;0;1;0
+64767;19728;1;160;97.0;150;97;1;1;0;1;1;0
+64768;19062;2;160;60.0;120;80;1;1;1;0;1;0
+64769;20300;2;174;82.0;120;80;1;1;0;0;0;0
+64771;16854;2;170;75.0;120;70;1;2;0;0;1;0
+64777;16623;1;169;105.0;130;80;1;1;0;0;1;0
+64779;23230;1;164;85.0;130;80;2;1;0;0;1;1
+64780;15268;2;171;60.0;120;80;1;1;1;0;1;0
+64781;16013;2;173;76.0;130;90;1;1;0;0;1;1
+64782;18478;1;160;67.0;110;80;1;3;0;0;0;0
+64783;14612;2;173;60.0;120;80;1;2;0;0;1;1
+64784;21081;1;164;74.0;160;90;2;1;0;0;1;1
+64786;21100;2;178;81.0;140;80;3;3;1;0;1;0
+64788;19133;1;163;63.0;120;80;1;1;0;0;1;0
+64789;16900;2;171;72.0;150;100;1;1;0;1;1;1
+64790;16721;1;165;58.0;140;80;1;1;0;0;0;1
+64791;20395;2;165;81.0;130;80;1;1;0;0;0;1
+64793;23578;1;170;60.0;110;90;1;1;0;0;1;1
+64794;19100;1;164;87.0;140;80;1;1;0;0;1;0
+64795;14680;1;168;92.0;110;70;1;1;0;0;1;0
+64796;19751;1;159;89.0;110;70;1;1;0;0;1;0
+64797;18923;2;165;65.0;120;80;1;1;0;0;1;0
+64799;14652;1;160;60.0;110;60;1;1;0;0;0;0
+64800;20420;2;171;72.0;140;80;1;1;0;0;1;1
+64802;19834;1;104;159.0;200;100;3;1;0;0;0;1
+64805;18293;2;161;58.0;120;79;1;1;0;0;1;0
+64806;21149;2;174;71.0;130;80;1;1;1;1;1;0
+64807;21278;1;163;57.0;130;90;1;1;0;0;1;0
+64808;18528;1;156;83.0;120;80;1;1;0;0;1;0
+64810;18141;1;154;73.0;134;81;1;1;0;0;0;1
+64812;18192;1;168;78.0;120;80;1;1;0;0;1;1
+64814;20558;1;168;80.0;128;88;1;1;0;0;0;0
+64815;21022;1;162;72.0;120;80;1;1;0;0;1;0
+64816;21620;1;153;74.0;140;100;3;3;0;0;1;1
+64817;16058;2;170;66.0;120;80;3;1;0;0;1;0
+64818;22544;1;156;56.0;120;80;1;1;0;0;0;0
+64820;22265;1;170;72.0;110;70;1;1;0;0;1;0
+64821;18177;2;160;60.0;100;70;1;1;1;0;1;1
+64822;20990;1;164;64.0;120;80;1;1;0;0;1;1
+64823;21235;1;155;75.0;150;90;1;1;0;0;1;1
+64824;21089;2;169;86.0;140;80;1;1;0;0;0;1
+64825;21136;2;165;75.0;150;80;1;1;0;0;1;1
+64826;17299;1;156;87.0;120;80;1;1;0;0;1;0
+64828;18009;1;161;72.0;180;100;2;2;0;0;1;1
+64829;17418;2;190;180.0;140;80;2;2;0;0;1;1
+64830;19763;1;171;81.0;120;80;3;3;0;0;1;1
+64832;19912;1;156;70.0;120;80;1;1;0;0;0;0
+64833;18161;1;158;64.0;120;80;1;1;0;0;0;0
+64835;20293;1;150;76.0;160;100;3;3;0;0;1;0
+64836;20588;1;147;50.0;100;70;2;1;0;0;1;0
+64837;19158;2;160;60.0;120;80;1;1;0;0;1;0
+64838;18098;1;160;60.0;140;80;1;1;0;0;1;1
+64839;19987;1;152;65.0;130;90;1;1;0;0;1;1
+64841;15222;1;165;63.0;120;60;1;1;0;0;1;0
+64842;21158;2;172;89.0;120;80;1;2;0;0;1;0
+64844;15140;2;150;65.0;120;80;1;1;0;0;1;0
+64845;21195;2;166;65.0;140;90;1;2;1;0;1;0
+64846;16985;1;166;63.0;120;80;1;1;0;0;1;0
+64847;18990;2;164;65.0;110;70;1;1;0;0;1;0
+64848;21881;1;162;90.0;110;80;1;1;0;0;0;0
+64851;15388;1;149;50.0;110;70;1;1;1;0;1;0
+64852;19754;1;164;70.0;150;100;1;1;0;0;0;1
+64853;21218;1;168;72.0;140;90;3;3;0;0;0;1
+64857;19621;1;162;102.0;150;100;3;2;0;0;1;1
+64858;19729;1;120;80.0;120;80;1;1;0;0;1;0
+64859;22711;1;154;85.0;140;90;1;1;0;0;1;1
+64860;16572;1;164;97.0;150;90;1;1;0;0;1;1
+64863;15477;1;154;45.0;110;70;1;1;0;0;1;0
+64864;16185;1;156;84.0;120;80;1;1;0;0;1;0
+64865;20498;1;169;67.0;120;70;1;1;0;0;0;0
+64866;18872;1;160;78.0;120;60;1;1;0;0;1;0
+64867;17823;1;164;64.0;90;60;1;1;0;0;1;1
+64869;19124;2;165;88.0;150;90;1;1;0;0;1;1
+64870;16190;1;160;80.0;120;80;1;1;1;0;1;0
+64871;19008;1;158;96.0;90;130;1;1;0;0;1;1
+64873;21069;1;176;81.0;140;90;1;1;0;0;1;1
+64876;20999;2;168;63.0;120;80;1;1;0;0;1;0
+64877;15864;2;162;63.0;150;90;1;1;0;0;1;1
+64878;21868;1;160;72.0;160;1100;2;1;0;0;1;1
+64879;21911;1;165;75.0;150;90;3;1;0;0;1;0
+64880;21854;1;150;86.0;120;80;2;2;0;0;1;0
+64881;16879;1;170;65.0;100;70;1;1;0;0;0;1
+64883;15413;1;164;69.0;120;80;1;1;0;0;1;0
+64884;19118;1;168;89.0;160;80;1;1;0;0;1;1
+64885;18214;1;170;69.0;120;80;3;3;0;0;0;0
+64886;15974;1;158;63.0;120;80;1;1;0;0;1;1
+64887;14479;2;167;64.0;110;80;2;1;1;1;1;0
+64891;22752;1;161;60.0;110;60;1;1;0;0;1;0
+64895;18311;2;178;116.0;150;80;2;1;0;0;1;1
+64897;21913;1;157;67.0;110;70;1;1;0;0;0;1
+64898;20541;1;152;60.0;110;60;1;1;0;0;1;0
+64899;14613;1;170;76.0;120;80;2;1;0;0;1;0
+64900;15197;1;172;78.0;110;80;2;1;0;0;1;0
+64901;17335;1;165;60.0;100;70;1;1;0;0;1;0
+64903;19810;1;165;61.0;120;80;1;1;0;0;0;1
+64904;20436;1;168;55.0;110;70;2;1;0;0;1;1
+64905;15743;2;177;105.0;120;80;1;1;0;0;0;0
+64906;21288;1;156;58.0;120;80;1;1;0;0;0;0
+64907;18841;1;155;67.0;120;75;2;1;0;0;1;1
+64908;21871;2;169;66.0;140;90;3;1;0;0;1;1
+64909;20592;2;174;75.0;120;80;1;1;1;0;1;0
+64911;22614;1;160;66.0;140;90;1;1;0;0;1;1
+64912;15428;1;166;97.0;120;80;3;3;0;0;1;1
+64913;19047;1;165;65.0;120;80;3;3;0;0;1;1
+64914;21230;2;177;67.0;110;70;1;1;0;0;1;0
+64915;14330;2;150;73.0;120;80;1;1;1;0;1;0
+64916;20595;1;156;87.0;120;80;1;1;0;0;1;0
+64917;21714;2;164;80.0;120;80;1;1;0;0;1;1
+64919;14463;1;156;47.0;110;70;1;1;0;0;1;0
+64920;20535;1;160;82.0;210;120;1;2;0;0;1;1
+64921;14528;1;158;68.0;120;80;1;1;0;0;0;0
+64922;22692;1;165;85.0;180;100;1;2;0;0;1;0
+64924;22807;2;174;85.0;14;100;1;1;0;0;1;1
+64925;16703;1;172;81.0;100;70;1;1;0;0;1;0
+64926;23499;1;150;73.0;140;80;3;3;0;0;0;1
+64927;14469;1;158;45.0;120;80;1;1;0;0;1;0
+64928;22466;1;150;49.0;170;100;1;1;0;0;1;1
+64929;21752;1;176;95.0;130;90;1;1;0;0;1;0
+64930;18281;2;170;70.0;120;80;1;1;1;0;1;0
+64931;21785;1;154;56.0;110;80;1;1;1;1;1;0
+64934;21031;2;171;98.0;110;90;1;1;1;0;1;1
+64935;20181;1;156;68.0;130;80;1;1;0;0;1;1
+64939;21982;1;148;50.0;140;100;1;1;0;0;1;0
+64940;18333;1;146;40.0;140;80;2;1;0;0;1;0
+64941;23436;2;163;65.0;145;85;1;1;0;0;1;1
+64942;19528;1;159;66.0;160;100;1;1;0;0;1;1
+64943;18222;1;164;70.0;130;90;1;1;0;0;1;0
+64946;22080;1;157;73.0;100;70;1;1;0;0;1;0
+64949;19050;1;159;65.0;120;80;1;1;0;0;1;1
+64951;21612;1;150;99.0;130;80;1;1;0;0;1;1
+64952;17609;1;155;58.0;110;80;1;1;0;0;1;0
+64953;23468;1;157;69.0;140;100;1;1;0;0;1;1
+64954;20446;1;165;66.0;130;80;1;1;0;0;1;0
+64957;14628;1;160;58.0;100;60;1;1;0;0;1;0
+64958;22477;1;168;72.0;120;80;1;1;0;0;1;1
+64959;20227;1;158;80.0;130;70;1;1;0;0;1;1
+64960;22427;1;160;65.0;170;95;2;1;0;0;0;1
+64961;18959;1;161;87.0;140;80;1;1;0;0;1;1
+64964;21951;1;168;75.0;120;80;1;1;0;0;0;0
+64965;18291;1;169;64.0;110;80;1;1;0;0;1;0
+64967;21979;2;165;65.0;120;80;1;1;0;0;1;0
+64968;21921;2;152;60.0;120;80;2;2;1;1;1;0
+64970;22621;2;175;79.0;120;80;1;1;0;0;1;1
+64971;21721;2;182;103.0;140;90;2;1;1;1;1;1
+64972;14422;1;158;89.0;110;70;1;1;0;0;1;0
+64975;21330;2;168;68.0;120;80;1;1;0;0;1;1
+64976;19719;1;152;53.0;150;100;3;1;0;0;1;1
+64977;23383;2;178;75.0;140;80;1;1;0;0;1;1
+64978;14691;1;160;60.0;120;80;1;1;0;0;1;0
+64979;23465;1;154;63.0;120;80;1;1;0;0;0;0
+64980;19856;1;165;59.0;110;60;1;1;0;0;1;0
+64981;19632;1;166;105.0;120;80;3;3;0;0;1;1
+64982;18165;1;156;66.0;140;90;1;1;0;0;1;1
+64983;14697;1;160;79.0;130;70;1;1;0;0;1;1
+64985;16823;2;171;81.0;120;80;1;1;0;0;0;0
+64986;21740;1;170;93.0;130;90;1;1;0;0;0;1
+64988;20428;1;155;84.0;120;80;1;1;0;0;1;1
+64989;21177;1;163;93.0;140;80;1;1;0;0;1;1
+64990;19599;1;159;60.0;110;70;1;1;0;0;1;1
+64991;15786;1;165;73.0;110;80;2;1;0;0;1;0
+64992;18166;1;156;69.0;120;80;1;1;0;0;1;1
+64993;22696;1;156;84.0;110;80;1;1;0;0;0;1
+64995;21375;1;151;80.0;140;90;1;1;0;0;0;0
+64997;22546;1;156;55.0;150;80;1;1;0;0;0;1
+64998;19804;1;152;68.0;130;80;1;3;0;0;0;0
+64999;21324;2;170;80.0;120;80;2;1;1;0;1;0
+65000;19558;1;158;66.0;100;70;1;1;0;0;0;0
+65001;21783;1;154;69.0;120;80;1;1;0;0;1;0
+65002;22469;1;168;62.0;120;80;1;1;0;0;1;1
+65003;19766;1;169;61.0;120;80;1;1;0;0;1;1
+65004;18295;1;169;67.0;140;90;1;1;0;0;1;1
+65005;19629;1;154;114.0;200;140;1;1;0;0;1;1
+65006;17548;2;151;53.0;140;80;2;3;0;0;1;1
+65007;20959;2;159;62.0;120;80;1;1;0;0;1;1
+65008;18380;1;166;69.0;120;80;1;1;0;0;1;0
+65012;21911;1;158;69.0;100;80;1;1;0;0;1;0
+65013;16606;1;160;69.0;120;80;1;1;0;0;1;0
+65014;18294;1;170;91.0;130;90;1;1;0;0;1;0
+65015;23414;2;164;85.0;160;110;2;3;0;0;1;1
+65016;18713;1;151;63.0;140;80;1;1;0;0;1;0
+65017;23667;1;156;75.0;100;80;1;1;0;0;0;0
+65019;19662;1;157;60.0;120;80;1;1;0;0;1;0
+65021;22554;1;174;103.0;140;90;1;1;0;0;1;0
+65022;23399;1;162;94.0;170;1000;3;1;0;0;1;1
+65023;18222;1;157;65.0;130;90;3;3;0;0;0;1
+65025;21998;1;164;85.0;140;90;3;1;0;0;1;1
+65026;18189;2;172;92.0;110;70;1;1;0;0;1;0
+65027;15982;1;154;67.0;120;80;1;1;0;0;1;0
+65028;19664;1;150;54.0;120;80;1;1;0;0;1;1
+65029;20305;2;159;58.0;160;90;1;1;1;1;1;1
+65030;14415;2;160;55.0;120;79;1;1;0;0;1;0
+65031;21192;2;163;65.0;140;90;1;1;0;0;1;1
+65033;22553;1;162;70.0;150;100;1;1;0;0;1;1
+65034;23465;1;152;100.0;140;90;1;1;0;0;1;0
+65035;22587;1;155;105.0;150;90;1;1;0;0;1;0
+65036;16017;1;154;83.0;120;80;1;3;0;0;1;0
+65037;18420;2;171;95.0;110;80;2;1;1;1;1;0
+65041;16172;2;185;110.0;140;90;3;2;0;0;1;0
+65043;22014;1;160;62.0;120;80;1;1;0;0;1;1
+65044;20538;2;170;53.0;110;60;1;1;1;0;1;0
+65045;19474;1;167;65.0;120;80;1;1;0;0;1;0
+65047;16124;1;163;65.0;110;80;1;1;0;0;1;0
+65048;21939;1;155;61.0;120;80;1;1;0;0;1;1
+65051;23501;1;155;71.0;160;1000;1;1;0;0;1;0
+65052;19942;1;167;60.0;120;80;1;1;0;0;1;0
+65053;18005;1;162;67.0;120;80;1;1;0;0;1;1
+65054;23316;1;156;69.0;130;90;1;1;0;0;1;1
+65057;21922;1;168;73.0;120;80;1;1;0;0;1;1
+65058;21885;1;168;70.0;120;80;1;1;0;0;0;1
+65059;15301;1;157;83.0;160;100;1;1;0;1;1;1
+65060;22530;1;167;73.0;120;80;1;1;0;0;1;0
+65061;14873;1;152;78.0;100;60;1;1;0;0;1;0
+65063;18408;2;173;93.0;150;100;1;1;0;0;1;1
+65064;23178;1;170;105.0;130;80;1;2;0;0;1;0
+65066;18229;1;162;93.0;160;100;2;1;0;0;0;1
+65067;17461;1;165;60.0;100;60;1;1;0;0;1;0
+65070;17061;1;167;78.0;120;80;1;1;0;0;1;1
+65072;14678;1;157;62.0;80;110;1;1;0;0;1;0
+65073;21024;2;186;115.0;120;80;1;1;0;0;1;0
+65074;23270;1;156;75.0;140;80;1;1;0;0;1;1
+65075;17294;1;156;55.0;90;50;1;1;0;0;1;1
+65076;21843;1;165;65.0;120;80;1;1;0;0;1;0
+65077;17544;1;157;57.0;90;50;1;1;0;0;1;0
+65078;21288;1;158;55.0;90;60;2;1;0;0;1;0
+65080;19748;1;160;60.0;130;80;1;1;0;0;0;1
+65081;18330;2;169;78.0;120;80;1;1;0;0;1;0
+65083;18287;2;175;86.0;120;80;1;1;1;1;1;0
+65084;19637;1;158;73.0;120;80;1;1;0;0;1;1
+65085;18877;1;165;60.0;120;80;1;1;0;0;1;1
+65086;21967;2;169;80.0;120;80;1;1;0;0;0;0
+65089;21232;1;172;80.0;120;80;1;1;0;0;1;0
+65091;20650;2;167;62.0;120;70;1;1;0;0;1;0
+65092;21244;1;150;88.0;200;120;1;1;0;0;0;1
+65093;18853;2;155;60.0;110;70;3;3;0;0;1;1
+65095;19724;2;169;67.0;150;100;1;3;0;0;1;1
+65096;23332;2;159;83.0;120;80;1;1;0;0;1;1
+65098;15921;1;160;63.0;110;70;2;2;0;0;0;1
+65100;21165;1;160;73.0;110;80;1;1;0;0;1;1
+65103;20938;2;178;83.0;120;80;1;1;0;0;1;0
+65105;16828;1;175;76.0;120;80;2;1;0;0;1;0
+65107;22334;1;165;86.0;160;90;3;1;0;0;1;1
+65108;18846;2;162;68.0;140;90;1;1;0;0;0;1
+65111;19079;2;174;95.0;120;80;1;1;1;0;1;1
+65113;23348;1;166;56.0;120;80;1;1;0;0;1;1
+65116;18106;2;173;71.0;120;80;2;1;1;0;1;0
+65120;18948;1;161;72.0;140;90;1;1;0;0;1;1
+65121;20949;2;163;73.0;120;80;1;1;0;0;1;0
+65122;15527;1;169;62.0;110;70;1;1;0;0;1;0
+65124;18721;1;153;81.0;110;70;1;1;0;0;1;1
+65125;18115;1;160;55.0;120;80;2;1;1;0;0;0
+65126;14415;1;160;63.0;110;70;1;1;0;0;0;0
+65127;19591;2;178;105.0;120;80;1;1;0;0;1;0
+65128;16232;1;156;68.0;160;80;1;1;0;0;1;1
+65129;16128;2;180;85.0;120;80;1;1;0;0;0;0
+65130;20357;2;170;91.0;160;1000;2;1;0;0;0;1
+65131;18936;2;162;61.0;120;80;2;1;0;0;1;1
+65132;15421;1;170;95.0;120;90;1;1;0;0;1;0
+65133;16566;1;172;74.0;120;80;2;1;0;0;0;0
+65134;18504;2;170;75.0;120;80;1;3;0;0;0;1
+65136;21927;1;160;62.0;110;60;1;1;0;0;1;0
+65137;21059;1;164;74.0;120;80;1;1;0;0;1;0
+65138;19204;1;167;99.0;120;70;1;1;0;0;1;1
+65139;20644;1;157;68.0;120;80;1;1;0;0;1;0
+65140;21135;1;169;68.0;120;80;1;1;0;0;1;0
+65142;16798;1;151;69.0;140;80;2;1;0;0;1;0
+65144;22716;1;155;65.0;140;90;2;1;0;0;1;1
+65145;21686;2;182;96.0;140;80;2;1;0;0;1;1
+65146;16096;1;163;79.0;110;80;1;1;0;0;1;0
+65147;16797;1;158;64.0;120;80;1;1;0;0;1;1
+65148;14681;2;166;71.0;120;80;1;1;0;0;0;0
+65149;15205;1;160;66.0;140;80;1;1;0;0;1;1
+65150;19007;2;171;70.0;120;80;3;3;0;0;1;1
+65151;22547;1;171;68.0;150;90;2;1;0;0;1;1
+65152;14621;1;157;85.0;110;70;1;1;0;0;1;0
+65153;21102;2;156;53.0;140;90;1;1;1;1;1;1
+65155;18750;1;170;85.0;130;80;3;1;0;0;1;1
+65156;20679;1;160;64.0;120;80;1;1;0;0;0;0
+65157;18915;2;170;70.0;120;80;1;1;0;0;1;0
+65158;19826;1;155;54.0;130;90;1;1;0;0;1;0
+65159;19064;1;164;70.0;140;80;1;1;0;0;1;1
+65162;18265;1;175;65.0;120;80;1;1;0;0;1;0
+65163;18160;2;158;60.0;110;80;1;1;1;0;1;0
+65164;20461;1;169;68.0;110;80;2;2;0;0;1;0
+65165;16997;1;167;73.0;100;70;1;1;0;0;0;0
+65167;18317;1;158;71.0;120;80;2;2;0;0;1;0
+65168;22484;1;168;75.0;120;80;1;1;0;0;1;0
+65169;21212;2;160;50.0;130;80;2;1;0;0;1;0
+65170;16507;2;175;68.0;110;80;1;1;1;1;1;0
+65172;20563;2;175;70.0;120;80;1;1;0;0;1;0
+65174;19684;2;178;80.0;140;90;2;2;0;0;1;1
+65175;16172;1;167;65.0;90;60;1;1;0;0;1;0
+65177;18792;2;176;94.0;125;90;1;3;1;1;1;0
+65178;21060;1;158;57.0;120;80;2;1;0;0;0;1
+65179;19777;2;164;71.0;120;80;1;1;0;0;0;0
+65180;16785;1;163;60.0;110;60;1;1;0;0;0;0
+65181;22709;1;156;80.0;160;80;3;1;0;0;1;1
+65182;18341;1;164;70.0;120;80;1;1;0;0;1;0
+65183;21636;1;174;89.0;130;70;1;1;0;0;1;0
+65184;20170;1;157;79.0;110;70;1;1;0;0;1;0
+65185;19741;1;169;72.0;120;80;1;1;0;0;1;1
+65186;18296;1;163;70.0;110;80;2;2;0;0;1;0
+65189;23516;1;160;62.0;110;70;1;1;0;0;1;0
+65190;19559;1;161;95.0;110;70;2;2;0;0;1;0
+65191;19068;1;160;83.0;100;150;1;1;0;0;0;1
+65192;20420;2;179;74.0;110;70;1;1;1;1;1;0
+65193;21122;2;168;94.0;130;80;1;1;1;0;1;1
+65194;18292;1;150;54.0;90;60;1;1;0;0;0;0
+65195;18386;2;169;68.0;120;80;3;3;0;0;1;0
+65196;18111;1;171;57.0;110;70;1;1;0;0;1;0
+65197;15576;1;166;83.0;140;90;1;1;0;0;1;1
+65199;15452;1;163;65.0;120;80;1;1;0;0;1;0
+65200;18116;2;182;92.0;160;90;1;1;0;0;1;1
+65201;18945;2;160;59.0;120;80;2;1;0;0;1;0
+65202;19753;1;163;84.0;120;80;1;1;0;0;1;0
+65203;14466;2;176;87.0;100;80;1;1;0;0;1;0
+65204;18908;2;180;86.0;130;80;1;1;0;0;1;1
+65205;17577;1;168;108.0;120;80;1;1;0;0;0;1
+65206;21883;2;172;75.0;160;100;3;1;0;0;1;1
+65207;15103;2;167;63.0;110;60;1;1;0;0;1;0
+65208;18505;1;162;63.0;110;70;1;1;0;0;0;0
+65210;15312;1;164;112.0;140;90;1;3;0;0;1;1
+65211;22395;2;171;69.0;150;1000;1;1;0;0;1;1
+65212;18949;1;164;74.0;120;80;3;1;0;0;1;1
+65213;22503;1;146;69.0;140;90;1;1;0;0;0;1
+65214;21829;2;177;80.0;130;90;2;2;0;0;1;1
+65216;19804;1;165;60.0;110;70;1;1;0;0;1;0
+65217;14666;2;180;91.0;120;80;1;2;0;0;1;0
+65218;20303;1;160;64.0;120;80;3;3;0;0;0;0
+65219;15297;1;159;84.0;120;80;1;1;0;0;1;0
+65220;18344;1;170;97.0;120;90;1;1;0;0;0;1
+65221;18401;1;156;75.0;140;90;1;1;0;1;1;1
+65222;20420;1;167;71.0;110;66;1;1;0;0;1;0
+65223;22688;1;164;86.0;140;60;2;1;0;0;1;1
+65224;18293;1;160;95.0;120;80;1;1;0;0;1;0
+65225;22489;1;158;64.0;120;80;1;2;0;0;1;0
+65228;14463;1;166;80.0;120;80;1;1;0;0;1;0
+65229;16056;2;169;92.0;100;80;1;1;0;0;0;1
+65230;16711;1;162;60.0;100;80;1;1;0;0;1;0
+65231;21169;1;168;80.0;110;80;1;1;0;0;1;0
+65232;16266;1;165;74.0;120;80;1;1;0;0;1;0
+65233;16296;1;168;79.0;120;80;1;1;0;0;1;0
+65234;20548;1;158;70.0;120;80;1;1;0;0;1;1
+65235;19819;2;170;72.0;120;80;1;1;0;0;0;0
+65236;17002;2;180;73.0;130;80;1;1;0;0;1;0
+65237;16092;2;160;65.0;130;80;1;1;1;0;0;0
+65238;17354;1;158;64.0;120;80;1;1;0;0;1;0
+65239;21302;1;168;90.0;120;80;1;1;0;0;1;0
+65240;20479;1;159;85.0;150;90;1;2;0;0;1;1
+65241;14618;1;171;71.0;120;80;1;1;0;0;0;0
+65242;21097;1;149;70.0;110;70;2;1;0;0;1;0
+65245;21351;1;165;55.0;160;90;2;2;0;0;1;1
+65247;16988;2;156;62.0;120;70;1;1;0;0;0;0
+65249;19779;1;170;76.0;120;90;1;1;0;0;1;0
+65253;14643;2;170;56.0;120;80;1;1;0;0;1;0
+65254;16498;2;170;84.0;110;90;1;1;0;1;1;0
+65256;14713;1;161;77.0;110;70;1;1;0;0;1;0
+65257;22720;2;178;82.0;130;80;3;1;0;0;1;0
+65258;18126;2;159;60.0;120;80;1;1;0;0;1;0
+65259;17251;1;151;63.0;110;80;1;1;0;0;1;0
+65260;16128;2;167;78.0;170;110;2;1;1;1;1;1
+65262;14284;1;156;70.0;100;80;3;3;0;0;0;0
+65263;18879;1;168;64.0;130;80;1;1;0;0;1;1
+65265;20562;2;170;68.0;120;80;2;1;1;1;1;0
+65268;19609;1;158;78.0;120;80;1;1;0;0;1;1
+65272;15255;2;175;87.0;110;80;1;1;1;0;0;0
+65273;19093;1;163;63.0;120;80;1;1;0;0;1;0
+65274;14598;1;152;90.0;140;80;2;1;0;0;1;1
+65278;18715;1;164;83.0;120;80;3;3;0;0;1;1
+65279;17419;1;163;72.0;120;80;1;1;0;0;1;0
+65280;22059;1;159;76.0;120;70;1;1;0;0;1;1
+65281;17574;1;156;84.0;100;70;2;3;1;0;0;1
+65282;22826;1;156;64.0;120;80;1;1;0;0;1;1
+65283;14688;1;168;59.0;120;80;1;1;0;0;1;0
+65286;19755;1;162;86.0;120;70;1;1;0;0;1;1
+65287;19599;2;173;76.0;120;80;1;1;1;0;1;0
+65288;23130;1;162;64.0;110;80;1;1;0;0;1;1
+65289;15186;1;160;62.0;120;80;1;1;0;0;0;0
+65290;19538;2;170;77.0;140;80;1;1;0;0;1;1
+65291;18807;2;169;69.0;120;80;1;1;0;0;1;0
+65294;19527;1;163;114.0;120;80;1;1;0;0;1;0
+65295;18196;2;176;68.0;110;69;1;1;0;0;0;0
+65296;20310;2;172;82.0;170;100;1;1;1;1;1;1
+65297;21210;2;176;49.0;110;70;1;1;0;0;1;0
+65298;18957;1;156;68.0;120;80;1;3;0;0;1;0
+65299;19450;2;175;103.0;115;80;2;2;1;1;1;0
+65302;21876;1;156;120.0;200;120;1;1;0;0;1;1
+65305;23241;1;154;80.0;110;70;3;1;0;0;0;1
+65306;14687;1;162;59.0;110;70;1;1;0;0;0;0
+65308;22611;2;174;72.0;130;80;1;1;0;0;1;1
+65314;16636;1;150;66.0;120;80;1;1;0;0;0;0
+65317;18095;1;164;64.0;110;70;2;2;0;0;1;0
+65319;15074;1;157;57.0;100;70;1;1;0;0;1;0
+65320;23411;1;157;77.0;136;67;2;2;0;0;1;1
+65321;19039;1;165;72.0;130;79;1;1;0;0;0;1
+65322;18224;1;170;70.0;120;80;1;1;0;0;1;1
+65324;17400;1;162;90.0;120;80;1;1;0;0;0;1
+65325;17527;1;156;65.0;100;60;1;1;0;0;1;0
+65326;23326;1;167;64.0;140;80;1;1;0;0;1;1
+65327;22734;1;162;59.0;110;70;1;1;0;0;1;1
+65328;18531;1;166;72.0;130;80;1;1;0;0;1;0
+65329;16954;1;174;74.0;150;80;1;1;0;0;1;1
+65334;22640;1;170;115.0;150;90;1;1;0;0;1;1
+65336;17464;1;162;77.0;150;80;3;1;0;0;1;1
+65337;18861;2;164;75.0;120;70;1;1;1;0;1;0
+65338;18892;1;148;58.0;120;80;2;1;0;0;1;0
+65339;18806;2;174;85.0;140;90;2;1;1;0;1;1
+65340;15192;1;170;53.0;120;80;1;1;0;0;1;0
+65342;15863;2;160;58.0;110;60;1;1;1;0;1;1
+65343;15306;2;171;64.0;100;70;1;1;1;0;1;0
+65345;19997;2;166;66.0;120;80;1;1;0;0;1;1
+65347;15937;2;164;68.0;140;90;1;1;0;0;0;1
+65348;18366;1;162;95.0;165;100;2;1;0;0;1;1
+65349;17516;2;168;71.0;180;105;1;1;0;0;0;1
+65350;15187;1;154;63.0;100;60;1;2;0;0;1;1
+65352;22077;1;175;69.0;120;80;1;1;0;0;1;1
+65353;23109;1;165;74.0;140;1000;2;1;0;0;1;1
+65354;14503;1;165;103.0;120;80;2;2;0;0;1;0
+65355;15425;1;165;65.0;120;80;1;1;0;0;1;0
+65358;19606;1;158;62.0;120;80;1;1;0;0;1;0
+65359;23410;2;167;76.0;160;100;2;2;0;0;1;0
+65361;20931;1;164;84.0;120;80;1;1;0;0;1;0
+65362;15188;1;175;65.0;120;90;1;1;0;0;1;0
+65363;21742;2;170;76.0;160;100;3;3;1;0;1;0
+65364;15981;1;150;47.0;90;60;1;1;0;0;1;0
+65366;22602;2;160;60.0;120;80;1;1;0;0;1;1
+65367;19954;2;175;71.0;120;80;1;1;0;0;1;1
+65370;20958;2;177;94.0;140;90;1;1;0;0;1;1
+65371;16624;1;166;63.0;120;80;1;1;0;0;1;1
+65372;21907;2;179;75.0;130;85;1;1;1;0;0;1
+65373;22510;1;155;78.0;120;80;3;1;0;0;1;1
+65374;16259;2;180;85.0;120;70;1;1;0;0;1;0
+65375;19898;1;164;139.0;130;80;1;2;0;0;1;1
+65376;15154;2;168;82.0;110;70;1;1;0;0;0;0
+65378;20682;1;165;64.0;120;80;1;1;0;0;0;0
+65379;23385;2;172;64.0;120;70;1;1;0;0;1;0
+65380;21293;1;174;69.0;120;80;1;1;0;1;1;1
+65382;18905;2;170;68.0;120;80;1;1;0;0;1;0
+65383;20409;1;167;77.0;120;80;1;1;0;0;0;0
+65385;18869;1;166;120.0;160;90;1;1;0;0;1;1
+65387;21921;2;169;70.0;140;90;1;1;0;0;1;0
+65388;20676;1;161;68.0;130;80;1;2;0;0;0;1
+65391;21989;1;160;83.0;130;80;1;1;0;0;1;1
+65392;19803;1;164;96.0;140;100;1;1;0;0;0;1
+65393;18051;1;165;72.0;120;80;1;1;0;0;1;0
+65394;15983;1;160;94.0;140;90;1;1;0;0;0;1
+65395;20363;2;175;83.0;160;90;1;1;0;0;1;1
+65396;23535;2;165;73.0;120;80;1;1;0;0;1;1
+65397;17633;1;156;62.0;120;80;1;1;0;0;1;0
+65398;15151;1;165;80.0;100;70;1;1;0;0;1;1
+65400;16792;2;182;96.0;120;80;1;1;1;0;1;0
+65401;20456;2;163;78.0;120;70;1;1;1;0;1;0
+65402;21260;2;161;73.0;150;90;2;2;0;0;1;1
+65403;17486;2;167;86.0;112;84;2;1;1;0;1;0
+65405;21241;1;155;84.0;120;80;3;1;0;0;1;0
+65406;15042;1;152;63.0;120;80;1;1;0;0;0;0
+65407;23429;1;155;87.0;140;80;1;1;0;0;0;1
+65410;19722;1;165;65.0;120;80;1;1;0;0;1;0
+65411;23095;2;155;73.0;160;90;1;1;0;0;0;1
+65412;22540;2;171;69.0;120;80;2;1;0;0;1;0
+65413;19670;2;183;100.0;90;150;1;1;0;0;1;1
+65415;16143;1;150;69.0;120;80;1;1;0;0;0;1
+65416;18120;2;176;89.0;140;90;1;1;0;0;1;1
+65418;20492;2;168;75.0;120;80;1;1;1;0;1;0
+65419;17415;2;166;102.0;120;80;1;1;0;0;1;0
+65420;18775;1;162;56.0;120;80;1;1;0;0;1;0
+65423;21789;1;151;77.0;130;90;1;1;0;0;1;1
+65424;20550;1;160;65.0;110;70;1;1;0;0;1;0
+65425;16804;1;162;66.0;140;90;1;1;0;0;1;1
+65426;15929;1;169;60.0;120;80;1;1;0;0;1;0
+65427;17649;1;167;95.0;180;100;1;1;0;0;1;0
+65428;19167;1;163;67.0;160;100;1;1;0;0;1;1
+65429;18389;1;153;84.0;120;80;1;1;0;0;0;0
+65432;15529;1;164;99.0;150;100;2;2;0;0;1;1
+65433;22015;1;160;72.0;120;80;1;1;0;0;1;0
+65435;14623;1;164;120.0;140;90;1;1;0;0;1;1
+65436;16180;2;170;64.0;120;80;1;1;1;0;1;0
+65438;21230;1;164;62.0;120;80;1;1;0;0;1;0
+65440;14778;2;169;74.0;100;70;1;1;0;0;1;0
+65441;23264;1;170;53.0;140;80;3;3;0;0;1;1
+65444;22400;2;176;85.0;120;80;1;1;0;0;1;1
+65446;19057;2;175;92.0;160;90;1;1;1;1;0;1
+65447;22733;1;150;76.0;140;100;1;1;0;0;1;1
+65448;20638;2;156;83.0;120;80;1;1;1;1;1;0
+65449;19961;2;175;90.0;150;90;1;1;0;0;1;1
+65450;18187;1;150;50.0;120;80;1;1;0;0;1;1
+65451;19059;1;169;79.0;160;1100;2;1;0;0;1;1
+65452;20436;1;166;68.0;110;80;1;1;0;0;1;0
+65453;18194;1;158;80.0;110;80;1;1;0;0;1;0
+65454;19524;1;166;65.0;120;80;1;1;0;0;1;0
+65455;18706;2;172;78.0;150;100;2;1;0;0;1;1
+65456;18765;1;162;65.0;120;80;1;1;0;0;1;0
+65457;20952;1;158;86.0;130;100;3;3;0;0;1;1
+65459;21907;1;159;93.0;130;90;1;1;0;0;1;1
+65460;22828;1;163;65.0;120;80;3;3;0;0;1;1
+65461;17008;1;166;69.0;110;80;1;1;0;0;1;1
+65464;23504;2;162;69.0;120;80;1;3;0;0;1;1
+65465;19010;2;176;92.0;130;80;1;1;0;0;0;0
+65466;17495;1;170;67.0;120;80;1;1;1;0;1;0
+65467;16056;1;159;83.0;140;90;1;1;0;0;1;0
+65468;14486;1;160;54.0;120;70;2;1;0;0;1;0
+65469;23492;1;157;82.0;130;90;1;1;0;0;1;1
+65470;19597;2;165;70.0;140;0;3;1;1;0;1;0
+65471;16246;1;159;61.0;90;70;1;1;0;0;1;0
+65472;14510;1;165;65.0;110;70;1;1;0;0;1;0
+65473;18261;1;161;60.0;110;70;1;1;0;0;1;0
+65474;23549;1;150;81.0;180;120;3;1;0;0;1;1
+65476;17368;2;173;109.0;150;100;1;1;0;0;1;1
+65477;18346;1;164;65.0;120;80;1;1;0;0;0;1
+65478;15354;2;169;65.0;120;70;1;1;0;0;1;0
+65479;21217;1;153;50.0;110;70;2;1;0;0;1;0
+65481;23398;1;170;80.0;110;70;1;1;0;0;1;0
+65482;21193;1;168;68.0;120;80;3;3;0;0;0;0
+65484;16615;1;160;85.0;120;80;1;2;0;0;1;0
+65485;18818;1;164;57.0;120;80;1;1;0;0;1;1
+65487;20676;1;169;60.0;120;80;1;1;0;0;0;0
+65489;17690;1;172;62.0;100;80;1;1;0;0;1;0
+65490;21077;1;154;61.0;120;80;1;1;0;0;0;0
+65491;18422;1;168;73.0;120;80;1;1;0;0;1;0
+65492;19818;1;164;64.0;140;100;1;1;0;0;1;1
+65493;20618;1;178;69.0;120;80;1;1;0;0;1;0
+65495;19625;1;163;80.0;150;80;2;2;0;0;1;1
+65497;18337;2;175;79.0;140;80;1;1;1;0;1;1
+65500;20282;2;166;80.0;120;70;1;1;0;0;1;1
+65501;16864;2;171;64.0;120;80;2;1;0;0;1;1
+65502;19625;2;170;110.0;130;80;1;1;0;0;1;1
+65503;18897;1;171;67.0;120;80;1;1;0;0;1;0
+65505;20521;1;164;74.0;130;90;1;1;0;0;1;1
+65506;19608;1;160;65.0;150;90;1;1;0;0;1;1
+65507;20508;1;160;63.0;140;100;1;1;0;0;1;0
+65509;19568;1;164;87.0;110;70;1;1;0;0;0;1
+65510;21953;1;169;66.0;120;80;1;1;0;0;1;1
+65511;18159;1;157;79.0;135;80;1;1;0;0;1;0
+65512;18993;2;179;86.0;120;70;1;1;0;0;1;0
+65513;23162;1;158;62.0;130;80;1;1;0;0;1;1
+65515;19904;1;170;81.0;120;80;1;1;0;0;1;0
+65516;21800;1;165;93.0;140;80;3;1;0;0;0;1
+65517;23550;1;159;53.0;140;80;3;1;0;0;1;1
+65519;22566;1;159;73.0;150;1000;1;1;0;0;1;1
+65520;20305;1;146;56.0;120;80;1;1;0;0;1;0
+65524;16870;1;175;68.0;120;60;1;1;0;0;1;1
+65525;21169;2;167;70.0;120;80;1;1;0;0;1;0
+65526;14616;1;159;43.0;110;70;1;1;0;0;1;0
+65527;20752;1;155;79.0;120;80;1;3;0;0;1;0
+65529;21111;2;162;83.0;120;80;1;1;1;0;1;1
+65530;19037;1;152;75.0;130;90;1;1;0;0;0;0
+65531;19452;1;160;90.0;110;80;3;1;0;0;1;1
+65532;21859;1;162;80.0;150;100;1;1;0;0;1;0
+65533;22320;2;160;80.0;160;80;1;1;0;0;1;1
+65534;18008;1;153;70.0;140;80;1;1;0;0;1;1
+65535;18939;1;155;80.0;140;80;1;1;0;0;1;0
+65537;21212;2;180;98.0;120;80;1;1;0;0;1;0
+65538;16592;2;168;98.0;190;1100;3;1;0;1;1;1
+65540;21889;1;165;79.0;120;80;1;1;0;0;0;0
+65542;21409;1;168;72.0;120;80;1;1;0;0;1;1
+65544;21922;1;160;78.0;120;80;1;1;0;0;1;1
+65545;18431;1;165;74.0;120;80;1;1;0;0;1;1
+65546;18870;1;161;100.0;130;90;2;1;1;0;0;1
+65548;23346;2;170;122.0;130;80;3;3;0;1;1;1
+65549;18903;1;163;90.0;120;70;1;1;0;0;0;0
+65553;20646;2;160;60.0;120;80;1;1;0;0;1;1
+65554;21811;1;156;55.0;100;70;1;1;0;0;1;0
+65555;20388;1;175;75.0;110;80;1;1;0;0;1;1
+65556;23118;2;168;97.0;150;100;2;1;0;0;0;0
+65557;20011;1;164;80.0;140;90;1;1;0;0;1;1
+65558;23517;1;161;74.0;120;80;1;1;0;0;1;0
+65559;21843;2;176;100.0;120;80;1;1;0;0;0;1
+65560;18283;1;164;70.0;120;80;2;2;0;0;1;0
+65561;20242;2;173;86.0;150;100;3;3;1;0;1;1
+65562;19868;2;164;72.0;130;90;1;1;0;0;1;0
+65563;18026;2;156;60.0;120;79;1;1;0;0;1;1
+65564;17297;1;162;78.0;150;100;1;1;0;0;1;1
+65566;20398;2;185;115.0;150;90;2;1;0;0;1;1
+65567;16010;2;175;88.0;120;80;1;1;0;0;1;1
+65568;21310;1;151;42.2;110;70;1;1;0;0;1;0
+65569;22061;1;155;70.0;120;70;1;1;0;0;1;1
+65571;21273;1;165;65.0;110;80;1;1;0;0;1;1
+65573;22813;1;178;75.0;120;80;1;1;0;0;1;0
+65574;18321;1;165;56.0;120;79;3;3;0;0;1;1
+65575;21852;2;161;87.0;120;80;1;1;0;0;1;1
+65576;21232;1;162;83.0;130;90;1;1;0;0;1;1
+65577;23518;2;184;90.0;120;80;1;1;0;0;1;1
+65578;23530;2;165;80.0;120;80;2;1;0;0;1;0
+65579;20516;2;165;65.0;120;80;1;1;0;0;1;0
+65581;21064;1;155;72.0;150;90;2;1;0;0;1;0
+65582;19206;2;168;58.0;120;80;1;1;1;1;1;0
+65584;15835;2;172;73.0;120;80;1;1;0;0;1;1
+65585;21842;2;174;88.0;160;1000;3;3;0;0;1;1
+65587;15859;1;155;86.0;130;80;1;1;0;0;1;1
+65589;20460;2;166;80.0;150;90;1;1;0;0;1;0
+65590;15142;2;168;82.0;120;80;1;1;0;0;1;0
+65591;16767;1;159;64.0;110;70;1;1;0;0;1;0
+65595;16024;1;158;73.0;120;70;1;1;0;0;1;0
+65597;21086;2;173;76.0;120;80;2;1;0;0;1;1
+65599;18980;1;168;74.0;120;80;1;1;0;0;1;0
+65600;19009;2;165;60.0;130;80;1;1;0;0;1;0
+65601;20175;2;166;66.0;130;90;3;1;0;0;1;0
+65603;20354;1;162;108.0;170;100;1;1;0;0;1;1
+65607;18082;2;174;80.0;140;80;2;1;1;0;1;1
+65608;22409;1;164;72.0;120;80;2;1;0;0;1;1
+65610;20450;1;155;85.0;140;100;1;1;0;0;0;1
+65612;18477;1;170;67.0;140;90;2;1;0;0;0;1
+65613;22648;2;169;70.0;160;100;1;1;0;0;1;0
+65614;17693;2;172;80.0;120;75;1;1;0;0;1;1
+65616;20209;2;168;90.0;140;90;1;1;0;0;1;1
+65617;18301;1;157;70.0;120;80;1;2;0;0;1;0
+65619;16091;1;165;88.0;130;90;1;1;0;0;0;0
+65620;20357;1;165;60.0;120;80;1;1;0;0;1;0
+65621;21894;1;155;49.0;120;70;1;1;0;0;1;0
+65624;18955;1;155;74.0;150;80;2;1;0;0;1;1
+65625;18007;1;165;62.0;120;80;1;1;0;0;1;0
+65626;22648;2;178;74.0;120;80;1;1;0;0;1;0
+65627;15146;1;168;64.0;120;80;3;1;0;0;1;0
+65628;21834;1;174;82.0;120;80;1;1;0;0;1;0
+65629;14656;2;159;52.0;110;70;1;1;1;0;1;0
+65630;15420;2;165;67.0;120;80;1;1;1;0;1;0
+65631;18161;2;169;103.0;110;70;1;1;0;0;1;0
+65632;19788;2;163;80.0;120;80;1;1;0;0;1;0
+65633;15399;1;158;47.0;70;40;1;1;0;0;1;0
+65634;19011;1;160;65.0;120;80;1;1;0;0;1;0
+65636;22499;1;159;57.0;120;80;1;1;0;0;1;0
+65637;21202;2;171;76.0;170;90;2;1;0;0;1;0
+65638;20409;1;159;54.0;120;70;1;1;0;0;0;1
+65639;15974;1;178;83.0;120;80;1;1;0;0;1;1
+65640;15915;1;162;82.0;140;90;1;1;0;0;1;0
+65642;16674;2;180;84.0;110;70;1;1;0;0;0;0
+65644;20539;1;153;117.0;200;1100;3;3;0;0;1;1
+65646;20234;2;166;86.0;150;90;1;1;0;0;0;1
+65647;21782;1;168;71.0;120;80;1;1;0;0;0;1
+65648;21326;1;158;81.0;120;80;1;1;0;0;1;0
+65651;14422;1;170;69.0;120;80;1;1;0;0;1;0
+65652;18726;1;155;85.0;140;90;1;1;0;0;1;1
+65653;23061;2;167;72.0;120;90;1;1;1;0;0;1
+65654;15162;2;169;87.0;120;80;1;1;0;1;1;1
+65656;21088;1;158;74.5;110;70;1;1;0;0;0;0
+65657;20611;2;171;63.0;120;62;1;1;1;0;1;1
+65659;15484;2;182;82.0;120;80;1;1;0;0;0;0
+65660;16038;2;180;62.0;120;80;2;2;1;0;1;0
+65662;14513;1;161;58.0;140;90;3;3;0;0;1;0
+65663;14367;1;160;57.0;90;60;2;1;0;0;0;0
+65664;14691;1;165;60.0;160;90;1;1;0;0;1;1
+65665;21307;2;175;75.0;120;80;1;1;0;0;0;0
+65666;22439;1;159;64.0;130;80;1;3;0;0;1;0
+65668;20556;1;163;59.0;120;80;2;1;0;0;0;1
+65669;20933;1;168;81.0;150;90;2;1;0;0;0;1
+65670;14606;1;159;50.0;120;80;2;1;0;0;1;0
+65671;15014;1;169;54.0;110;70;1;1;0;0;0;0
+65672;21047;1;147;66.0;140;70;1;1;0;0;0;0
+65673;18293;2;163;79.0;140;90;2;1;0;0;1;1
+65674;21660;1;162;90.0;140;80;2;2;0;0;1;1
+65675;16206;1;164;60.0;100;80;1;1;1;1;1;0
+65676;21073;1;158;69.0;110;70;1;1;0;0;0;0
+65677;18952;1;148;54.0;178;84;2;1;0;0;1;1
+65678;21774;1;150;70.0;120;80;2;1;0;0;1;0
+65679;20444;1;165;67.0;120;80;1;1;0;0;1;1
+65680;23260;1;147;54.0;120;100;1;1;0;0;1;1
+65681;15128;1;170;90.0;120;80;1;1;0;0;1;0
+65682;22595;1;158;56.0;130;95;1;1;0;0;1;1
+65683;15862;1;174;64.0;100;70;1;1;0;0;1;0
+65684;19134;1;169;68.0;120;80;1;1;0;0;1;0
+65690;23382;2;173;75.0;120;80;3;3;0;0;1;1
+65691;15477;1;163;65.0;110;70;1;1;0;0;1;0
+65692;18239;1;165;68.0;100;60;1;1;0;0;0;0
+65694;21829;1;153;65.0;130;100;1;1;0;0;1;1
+65695;21210;1;151;54.0;140;90;3;3;0;0;0;1
+65696;19222;1;168;71.0;110;80;1;1;0;0;1;0
+65698;20969;1;150;59.0;130;90;3;1;0;0;1;1
+65700;15822;2;170;100.0;150;100;3;1;0;0;1;1
+65701;15598;2;165;70.0;120;80;1;1;0;0;1;1
+65702;20367;1;156;55.0;120;80;1;1;0;0;1;0
+65705;20584;2;166;77.0;140;90;1;1;0;0;1;1
+65706;21255;2;186;129.0;140;90;1;1;0;0;1;1
+65708;16639;2;172;92.0;120;60;1;1;1;0;1;1
+65709;21113;1;161;88.0;130;80;1;3;0;0;1;1
+65710;16148;2;165;68.0;115;80;1;1;0;0;1;0
+65711;16526;1;156;88.0;120;80;1;1;0;0;1;0
+65712;21748;2;178;84.0;110;80;1;1;0;1;1;0
+65713;19659;1;157;100.0;120;80;2;1;0;0;1;0
+65714;19872;1;160;84.0;120;80;3;1;0;0;1;0
+65715;22514;2;171;94.0;120;80;1;3;0;0;1;1
+65716;21349;1;155;64.0;130;90;3;1;0;0;1;1
+65717;18851;1;155;60.0;139;89;3;1;0;1;1;1
+65718;16847;2;166;66.0;130;90;1;1;1;1;1;0
+65719;20559;2;177;77.0;110;70;1;1;0;0;1;0
+65722;22902;1;170;65.0;110;80;2;2;0;0;1;1
+65726;17588;1;169;75.0;120;70;2;1;0;0;1;0
+65727;23150;1;157;76.0;120;80;1;1;0;0;0;1
+65728;21635;2;170;70.0;120;80;1;1;0;0;1;0
+65729;21262;1;160;60.0;120;90;1;1;0;0;1;0
+65731;16750;1;158;79.0;120;80;1;1;0;0;1;1
+65732;22090;1;166;69.0;130;90;2;1;0;0;1;1
+65735;18888;1;168;72.0;110;70;1;1;0;0;1;0
+65737;17647;2;165;70.0;120;80;1;1;1;0;1;0
+65739;19684;1;155;105.0;140;90;2;2;0;0;1;1
+65742;21862;2;174;88.0;140;80;1;1;1;1;1;1
+65746;18427;2;162;56.0;120;60;1;1;0;0;1;0
+65747;19783;1;161;72.0;130;80;1;1;0;0;1;1
+65748;14741;1;168;65.0;110;70;1;1;0;0;1;0
+65750;14890;2;188;96.0;80;130;1;1;0;1;1;0
+65751;22730;2;184;100.0;150;100;1;1;1;1;0;1
+65752;19080;1;172;72.0;120;80;1;1;0;0;1;0
+65753;21221;1;165;92.0;140;90;1;1;0;0;1;0
+65754;18400;1;156;83.0;120;80;1;2;0;1;0;0
+65757;18964;2;171;63.0;130;90;1;1;1;1;1;0
+65758;19656;1;164;98.0;130;80;3;1;0;0;1;1
+65763;19575;1;164;64.0;120;80;1;1;0;0;1;1
+65764;14523;1;160;62.0;90;70;1;1;0;0;0;0
+65767;15346;1;170;61.0;110;70;1;1;0;0;1;0
+65768;18078;2;161;70.0;160;100;1;1;0;0;1;1
+65769;18177;1;161;105.0;140;80;2;1;0;0;1;1
+65775;18739;1;111;69.0;130;90;1;1;0;0;1;1
+65777;16910;2;166;71.0;140;90;1;1;1;1;1;1
+65778;20370;1;158;68.0;90;60;1;1;0;0;1;1
+65779;19705;2;165;65.0;110;80;1;3;0;0;1;1
+65781;19696;2;170;80.0;130;80;1;1;1;0;1;1
+65782;18246;2;169;70.0;120;80;1;1;0;0;1;0
+65783;16566;1;164;74.0;90;60;1;1;0;0;1;0
+65784;23506;1;167;60.0;130;80;1;1;0;0;0;1
+65785;18358;1;168;105.0;120;80;3;1;0;0;1;0
+65786;19720;1;153;58.0;100;70;2;2;0;0;1;1
+65787;15906;1;154;71.0;90;60;2;1;0;0;1;0
+65788;20941;2;163;60.0;110;70;3;3;1;0;1;0
+65791;20249;1;144;50.0;120;80;1;1;0;0;1;0
+65793;20376;1;176;105.0;120;80;1;1;0;0;1;0
+65794;21317;1;152;98.0;120;80;1;1;0;0;1;1
+65797;15189;2;159;60.0;110;70;1;1;1;0;0;0
+65798;19791;1;154;78.0;110;70;1;1;0;0;0;0
+65800;21774;2;164;70.0;120;80;1;1;0;0;1;1
+65801;17950;1;169;75.0;120;80;1;1;0;0;1;0
+65802;18363;1;175;65.0;120;90;2;1;0;0;1;0
+65803;23666;1;159;58.0;120;60;1;1;0;0;1;1
+65804;15377;1;165;87.0;110;70;2;2;0;0;1;0
+65805;21997;1;163;74.0;140;90;2;1;0;0;0;1
+65809;14592;1;160;68.0;120;80;1;1;0;0;0;0
+65810;22743;2;165;75.0;120;80;1;1;0;0;1;0
+65811;18305;1;170;69.0;120;80;1;1;0;0;1;0
+65812;21754;1;160;71.0;120;80;1;1;0;0;0;0
+65813;15986;1;158;56.0;120;70;1;1;0;0;1;0
+65814;20651;1;158;57.0;130;70;1;1;0;0;1;1
+65815;23382;2;174;84.0;160;90;1;1;0;0;1;1
+65816;22693;1;180;76.0;120;80;1;1;0;0;1;0
+65817;16667;1;170;70.0;120;80;1;1;0;0;1;0
+65818;19757;2;162;68.0;120;80;1;1;0;0;1;0
+65819;15995;2;175;60.0;120;70;1;1;1;1;1;0
+65820;19593;1;162;63.0;140;90;3;1;0;1;1;1
+65821;21983;1;165;63.0;125;85;3;3;0;0;1;0
+65823;22673;1;161;66.0;120;80;1;1;0;0;1;1
+65824;19095;2;168;60.0;145;90;1;1;0;1;1;1
+65827;20561;1;159;78.0;140;100;1;2;0;0;1;0
+65828;19769;1;167;69.0;140;90;3;1;0;0;1;0
+65829;19553;1;160;63.0;120;80;1;2;0;0;1;1
+65831;22704;1;150;65.0;130;70;1;3;0;0;1;1
+65832;15090;2;176;96.0;130;90;1;1;1;1;1;0
+65833;16819;1;166;74.0;120;80;1;1;0;0;1;0
+65835;19055;1;168;108.0;120;80;1;1;0;0;0;1
+65836;20263;1;166;63.0;120;80;2;1;0;0;1;1
+65840;23116;2;190;89.0;120;80;1;1;1;0;1;1
+65842;23160;2;165;73.0;140;90;3;1;0;0;1;1
+65843;18367;1;168;78.0;150;100;1;1;0;0;1;1
+65845;22678;1;146;77.0;110;70;1;1;0;0;1;0
+65846;18162;1;158;90.0;120;80;1;1;0;0;1;0
+65847;20472;2;168;80.0;130;80;1;1;0;0;1;0
+65848;18181;2;165;70.0;120;80;1;1;0;0;1;0
+65849;20731;1;162;63.0;130;80;1;1;0;0;1;0
+65851;20911;1;165;74.0;120;80;3;3;0;0;1;1
+65852;15858;1;156;45.0;100;70;1;1;0;0;1;0
+65855;19500;1;163;80.0;110;70;1;1;0;0;1;0
+65857;18045;1;167;74.0;120;80;1;1;0;0;1;0
+65858;22631;2;176;80.0;140;90;1;1;0;1;1;1
+65859;23340;2;178;90.0;140;90;3;1;0;0;1;1
+65860;21235;1;162;78.0;140;100;1;1;0;0;1;1
+65861;18372;1;168;66.0;140;90;1;1;0;0;0;1
+65862;22638;2;162;65.0;120;80;1;1;0;0;1;1
+65863;20375;2;181;94.0;180;100;1;2;0;0;0;1
+65865;22049;1;170;71.0;110;70;1;1;0;0;1;1
+65866;20359;1;157;60.0;120;80;1;2;0;0;0;0
+65867;15058;2;170;95.0;120;80;1;1;0;0;0;0
+65868;21219;1;165;76.0;120;60;1;3;0;0;1;0
+65871;17556;1;166;66.0;150;90;1;1;0;0;1;1
+65872;19875;2;180;78.0;110;70;1;1;0;0;1;0
+65876;21251;2;170;69.0;120;70;1;1;0;0;1;0
+65877;21080;2;165;49.0;140;90;1;1;0;0;1;1
+65878;15369;2;172;70.0;130;90;1;1;0;0;0;1
+65879;21916;1;154;70.0;110;70;3;3;0;0;0;1
+65880;15880;1;164;72.0;95;60;1;1;0;0;1;0
+65883;16872;1;159;54.0;120;80;1;1;0;0;0;0
+65885;23368;1;158;85.0;140;90;1;3;0;0;1;0
+65886;16800;2;163;81.0;140;90;1;1;1;0;1;1
+65887;17309;1;145;53.0;120;80;3;1;0;0;1;1
+65888;16157;1;165;60.0;120;70;1;1;0;0;1;0
+65889;17337;2;156;48.0;140;90;1;1;0;0;1;1
+65890;16162;1;165;70.0;120;70;1;1;0;0;1;0
+65893;20525;1;167;99.0;155;90;1;1;0;0;1;1
+65895;23313;1;146;77.0;120;80;1;1;0;0;0;1
+65896;21054;1;165;53.0;110;79;3;3;0;0;1;0
+65897;18747;2;180;82.0;150;100;3;1;1;1;1;1
+65898;21504;1;156;85.0;120;80;1;3;0;0;1;1
+65899;21119;1;157;75.0;120;80;2;1;0;0;1;1
+65900;20986;1;150;54.0;120;80;1;1;0;0;1;0
+65901;14729;2;168;76.0;140;90;1;1;1;1;1;1
+65902;19650;2;165;88.0;110;70;1;2;0;0;1;0
+65903;18386;1;167;70.0;150;80;1;1;0;0;1;1
+65904;20927;1;164;91.0;150;100;1;1;0;0;1;0
+65905;21015;1;155;67.0;130;90;2;2;0;0;1;0
+65907;21106;1;164;65.0;120;80;1;1;0;0;1;0
+65908;20421;1;160;83.0;140;90;2;1;0;0;0;1
+65909;16587;1;162;92.0;90;60;1;1;0;0;1;0
+65910;20360;1;155;80.0;130;90;2;2;0;0;1;1
+65911;16828;2;175;75.0;150;90;2;1;0;0;1;1
+65912;20401;1;165;68.0;110;70;1;1;0;0;1;0
+65913;19616;1;165;63.0;120;80;2;2;0;0;0;0
+65915;18207;1;158;81.0;110;80;1;1;0;0;1;0
+65918;20333;1;161;50.0;110;70;2;2;0;0;1;1
+65919;19653;1;158;56.0;130;60;1;1;0;0;1;0
+65921;22601;2;179;92.0;100;70;3;3;0;0;1;0
+65922;20420;1;166;53.0;110;70;3;3;0;0;1;0
+65923;18289;1;164;83.0;120;80;3;1;0;0;1;0
+65924;22708;1;175;85.0;120;80;1;1;0;0;0;1
+65925;20466;2;182;76.0;120;80;1;3;1;1;1;1
+65926;20554;1;151;58.0;120;80;1;1;0;0;1;0
+65928;17384;2;168;55.0;110;80;1;1;0;0;1;0
+65929;20618;2;165;92.0;140;90;1;1;0;0;0;1
+65930;19670;2;175;73.0;13;40;1;1;0;0;0;0
+65931;19119;1;166;60.0;120;70;1;1;0;1;1;1
+65932;20468;1;156;63.0;140;90;1;1;0;0;1;1
+65935;22673;2;171;68.0;120;80;3;1;0;0;1;0
+65936;17382;2;168;96.0;120;80;1;1;0;0;1;0
+65937;15401;1;156;62.0;80;60;1;1;0;0;0;0
+65939;18527;1;153;92.0;140;90;2;1;0;0;1;1
+65940;17539;1;158;52.0;120;80;1;1;0;0;1;0
+65941;16172;2;165;85.0;120;80;1;1;1;0;0;0
+65942;20715;1;160;54.0;110;80;1;1;0;0;0;0
+65943;22659;1;159;56.0;120;80;1;1;0;0;0;1
+65944;20945;1;164;114.0;140;100;2;1;0;0;1;1
+65945;21966;1;170;60.0;110;70;1;1;0;0;0;0
+65946;18918;1;154;92.0;140;90;1;1;0;0;1;1
+65947;17666;2;160;60.0;120;80;3;3;0;0;1;1
+65948;19642;2;174;95.0;120;70;1;1;0;0;1;0
+65949;20441;1;157;51.0;110;70;2;1;0;0;1;0
+65950;21715;1;159;75.0;120;80;1;1;0;0;0;1
+65951;22524;1;135;58.0;130;80;3;1;0;0;0;1
+65954;17691;2;164;87.0;130;80;3;1;0;0;1;1
+65955;20550;2;182;76.0;120;80;1;1;0;0;0;0
+65956;19711;1;165;65.0;120;80;1;1;0;0;1;1
+65957;23292;1;158;85.0;110;70;1;1;0;0;1;1
+65959;16795;2;172;75.0;120;80;1;1;0;0;1;0
+65960;21833;1;170;79.0;120;80;1;1;0;0;1;1
+65961;19831;1;165;92.0;160;100;2;1;0;0;0;1
+65962;20412;1;164;68.0;130;90;1;1;0;0;0;0
+65963;19815;1;158;61.0;120;80;1;3;0;0;1;0
+65964;19822;1;159;61.0;120;80;1;1;0;0;1;0
+65965;23484;2;163;67.0;110;70;1;1;0;0;0;0
+65966;23353;2;170;72.0;160;80;3;1;0;0;1;1
+65967;21312;2;168;69.0;140;100;1;1;0;0;0;1
+65973;21169;1;167;59.0;110;80;1;1;0;0;1;0
+65974;21831;2;172;96.0;120;80;2;1;0;0;1;1
+65975;22017;1;151;51.0;120;80;1;1;0;0;1;0
+65976;20341;1;163;75.0;125;75;3;1;0;0;1;0
+65977;19073;2;169;69.0;120;80;1;1;0;0;1;0
+65979;18868;1;153;54.0;120;70;3;1;0;0;1;1
+65980;17596;1;178;67.0;120;80;1;1;0;0;1;0
+65981;16901;2;174;100.0;140;90;1;1;0;1;1;1
+65983;16179;1;160;87.0;130;90;1;1;0;0;1;1
+65984;14802;1;160;59.0;120;80;2;1;0;0;1;1
+65985;20608;1;159;69.0;130;80;1;1;0;0;1;1
+65986;19867;1;160;60.0;120;80;1;1;0;0;1;1
+65988;20447;1;153;72.0;100;60;1;1;0;0;0;1
+65989;19052;1;164;76.0;140;90;1;1;0;0;1;1
+65991;20273;1;150;73.0;120;80;1;1;0;0;0;1
+65992;18914;1;155;90.0;130;100;2;3;0;0;1;1
+65993;19526;1;132;70.0;110;70;1;2;0;0;1;1
+65994;20370;1;155;78.0;120;80;3;1;1;0;1;1
+65995;15149;2;169;52.0;140;90;1;1;1;1;1;0
+65996;18073;2;158;73.0;130;90;1;1;0;0;1;0
+65998;18151;1;155;65.0;130;80;1;1;0;0;1;1
+65999;14702;2;165;64.0;120;80;1;1;0;0;1;0
+66000;19792;2;178;100.0;120;80;1;1;0;0;1;1
+66001;18926;1;167;59.0;120;80;1;1;0;0;1;0
+66002;19055;1;155;87.0;130;90;1;1;0;0;1;0
+66003;14539;1;165;130.0;120;80;2;1;1;0;1;1
+66004;21917;1;165;65.0;120;80;1;1;0;0;1;0
+66005;18128;2;170;70.0;130;90;1;1;0;0;1;1
+66006;16868;1;159;71.0;120;80;1;1;0;0;1;0
+66007;21172;2;168;68.0;140;90;3;3;0;0;1;1
+66010;17587;2;156;56.0;120;80;1;1;1;1;0;0
+66011;17463;2;175;75.0;110;70;2;1;0;0;1;0
+66013;22452;1;157;53.0;180;100;1;1;0;0;1;1
+66015;19564;1;167;63.0;130;80;1;1;0;0;1;0
+66016;20401;1;167;89.0;140;90;2;2;0;0;0;0
+66017;21317;1;165;56.0;120;80;1;1;0;0;1;1
+66018;20970;2;179;89.0;115;80;2;1;1;0;1;0
+66020;15410;2;173;62.0;120;80;1;1;0;0;1;0
+66021;18785;1;166;68.0;120;80;1;1;0;0;1;0
+66022;16821;2;171;68.0;140;90;1;1;0;0;0;0
+66023;23358;2;161;73.0;160;90;1;1;0;0;1;1
+66024;20714;1;159;62.0;110;70;1;1;0;0;1;0
+66025;17275;1;168;72.0;120;80;1;1;0;0;1;0
+66029;17517;1;168;67.0;110;70;1;1;0;0;1;0
+66031;19218;2;164;62.0;120;80;1;1;0;0;1;0
+66032;21782;1;156;72.0;160;100;1;1;0;0;1;0
+66033;22004;1;120;80.0;130;80;3;2;0;0;1;1
+66035;17675;1;162;61.0;100;60;1;1;1;1;1;0
+66036;19059;1;166;70.0;140;90;1;1;0;0;0;1
+66037;20731;1;167;80.0;140;90;3;3;0;0;1;0
+66038;20289;1;164;72.0;150;80;1;1;0;0;1;1
+66040;14601;1;165;65.0;120;80;1;1;0;0;0;0
+66042;22758;1;160;70.0;130;90;1;1;0;0;1;0
+66043;22404;1;153;77.0;120;80;2;1;0;0;1;1
+66044;14638;1;153;50.0;110;70;1;1;0;0;1;1
+66045;21996;2;174;76.0;220;120;2;1;0;0;1;1
+66048;21736;2;166;73.0;120;80;1;1;0;0;1;1
+66050;21793;1;158;67.0;140;90;2;1;0;0;1;1
+66051;18191;1;156;68.0;120;80;1;1;0;0;0;0
+66052;15147;2;174;76.0;120;80;1;1;0;0;1;0
+66054;23294;2;162;62.0;160;90;1;1;1;1;1;1
+66055;15940;1;160;85.0;110;80;2;2;0;0;1;0
+66060;18023;1;160;72.0;120;80;1;1;0;0;0;0
+66062;17948;1;170;86.0;130;80;1;1;1;0;1;0
+66063;20503;2;165;75.0;110;90;1;1;0;0;0;0
+66068;20461;1;175;78.0;120;80;3;1;0;0;1;0
+66069;21008;2;173;88.0;140;90;3;3;1;0;1;1
+66070;15165;1;168;68.0;140;90;1;1;0;0;1;1
+66074;18896;2;168;62.0;120;80;1;1;0;0;0;0
+66075;21164;2;172;98.0;160;90;1;2;0;0;1;1
+66076;19949;2;181;82.0;140;90;1;1;0;0;1;1
+66077;21737;1;158;67.0;130;90;1;3;0;0;1;1
+66078;23298;2;162;80.0;130;80;1;1;0;1;0;1
+66079;18138;1;153;57.0;120;80;2;1;0;0;1;0
+66080;18256;1;165;63.0;110;70;1;1;0;0;1;0
+66081;17337;2;178;72.0;120;80;1;1;0;0;1;0
+66082;18111;2;172;66.0;110;80;1;1;0;0;0;0
+66083;17725;2;170;65.0;140;80;2;1;1;1;1;0
+66084;20446;2;168;84.0;150;90;2;1;0;0;0;1
+66085;15320;1;156;95.0;120;80;2;1;1;0;1;0
+66086;15164;1;158;59.0;120;80;2;1;0;0;1;1
+66087;20060;1;160;59.0;100;70;1;1;0;0;0;0
+66088;16230;1;162;61.0;100;60;1;1;0;0;0;0
+66089;16638;1;162;75.0;150;70;1;2;0;0;1;1
+66090;18386;1;170;73.0;100;75;1;1;0;0;0;1
+66091;18743;1;156;75.0;160;100;1;2;0;1;1;1
+66092;17530;1;151;67.0;140;90;3;3;0;0;0;1
+66093;19114;1;150;62.0;150;80;1;1;0;0;0;0
+66095;14589;1;164;83.0;110;70;2;1;0;0;1;1
+66096;18907;1;166;74.0;140;100;3;1;0;0;1;1
+66098;23282;1;155;63.0;110;70;1;1;0;0;0;1
+66100;19085;2;165;86.0;130;80;1;1;0;0;1;1
+66101;17308;1;160;80.0;120;90;2;1;0;0;1;1
+66104;15309;2;158;62.0;110;70;1;1;0;1;1;0
+66105;18174;1;158;58.0;110;70;1;1;0;0;1;0
+66106;20975;2;165;62.0;120;80;2;1;1;0;1;0
+66108;20630;1;176;63.0;120;80;1;1;0;0;1;0
+66109;22072;1;165;65.0;120;80;1;1;0;0;1;0
+66110;19556;2;174;94.0;140;90;2;1;1;0;1;1
+66111;18930;1;160;71.0;110;70;1;1;0;1;1;1
+66112;19019;1;158;94.0;145;90;2;1;0;0;1;1
+66113;20354;1;169;74.0;130;80;1;1;0;0;1;0
+66114;15365;1;169;65.0;120;80;1;1;0;0;0;1
+66115;18927;1;160;72.0;130;90;1;1;0;0;1;1
+66116;21346;1;181;82.0;150;100;3;3;0;0;1;0
+66119;16632;1;155;75.0;120;70;1;1;0;0;1;1
+66120;22495;1;164;88.0;150;90;1;3;0;0;1;0
+66121;18272;1;159;62.0;120;80;1;1;0;0;0;0
+66122;19207;1;165;80.0;120;80;1;1;0;0;0;0
+66126;17476;1;164;80.0;130;70;2;1;0;0;1;0
+66127;22666;1;159;80.0;150;100;1;1;0;0;1;0
+66128;18791;1;158;70.0;110;70;1;1;0;0;1;0
+66130;21883;1;156;62.0;120;70;1;1;0;0;0;1
+66131;21732;2;160;60.0;130;90;1;1;0;0;0;1
+66132;22552;1;168;65.0;160;100;3;1;0;0;1;1
+66133;22085;2;170;71.0;120;90;1;1;0;0;1;1
+66134;21399;1;162;148.0;140;80;3;2;0;0;1;1
+66137;20296;1;165;83.0;120;80;3;1;0;0;1;1
+66138;18733;2;166;65.0;140;100;1;1;1;0;0;1
+66139;16018;1;169;76.0;120;60;1;1;0;0;0;0
+66140;21242;1;160;100.0;170;100;1;1;0;0;0;1
+66141;19010;1;158;48.0;90;60;1;1;1;0;1;0
+66142;21065;1;164;118.0;125;80;2;2;0;0;1;0
+66143;21634;1;180;56.0;120;60;1;1;0;0;1;0
+66146;19292;1;170;69.0;125;80;1;1;0;0;1;1
+66147;14742;2;169;61.0;130;80;1;1;0;0;0;0
+66149;20513;1;160;118.0;130;80;1;1;0;0;1;0
+66150;22821;2;164;41.0;110;70;2;1;0;0;1;0
+66152;16008;2;178;100.0;130;90;1;1;0;0;1;0
+66153;16632;1;156;66.0;110;70;1;1;0;0;1;0
+66158;22484;2;171;63.0;120;80;1;1;1;0;1;0
+66160;18205;1;164;120.0;130;100;2;1;0;0;0;0
+66161;21006;2;68;71.0;120;80;1;1;0;0;1;0
+66162;19736;1;165;66.0;110;70;1;1;0;0;1;0
+66163;21348;2;163;63.0;120;80;1;1;0;0;1;1
+66164;21049;1;154;59.0;140;90;2;2;0;0;1;1
+66165;18786;1;161;86.0;170;100;3;3;0;0;1;1
+66166;16060;2;162;73.0;110;80;1;1;0;0;1;0
+66168;18175;1;177;88.0;120;80;1;1;0;0;1;0
+66169;15974;1;163;117.0;130;90;3;1;0;0;1;1
+66170;21046;2;163;73.0;140;90;1;1;1;0;1;1
+66171;15149;2;175;96.0;125;100;1;2;0;0;1;1
+66172;20403;1;166;76.0;120;80;1;1;1;1;1;0
+66173;15600;1;169;67.0;120;70;1;1;0;0;0;0
+66174;19950;1;169;66.0;120;80;1;1;0;0;0;1
+66175;14595;2;176;70.0;120;820;1;1;0;0;0;0
+66176;15232;1;159;40.0;100;60;1;1;0;0;1;0
+66177;20641;2;176;77.0;130;90;1;1;1;1;1;0
+66178;19648;2;176;83.0;130;90;1;1;0;0;0;0
+66180;16278;1;165;70.0;120;80;1;1;0;0;1;1
+66182;15167;1;162;72.0;110;70;1;1;0;0;1;0
+66184;20367;1;182;89.0;120;80;1;1;0;0;1;1
+66185;18778;1;153;53.0;120;90;2;1;0;0;1;1
+66186;22649;1;151;56.0;150;90;1;1;0;0;1;1
+66187;19513;1;151;67.0;110;70;1;1;0;0;1;1
+66188;20472;1;158;68.0;120;80;2;1;0;0;1;1
+66190;14615;1;167;70.0;120;80;1;1;0;0;1;0
+66193;15449;1;160;50.0;100;60;2;1;0;0;1;0
+66194;15463;1;168;54.0;110;70;1;1;0;0;1;0
+66195;17486;2;160;93.0;120;80;1;1;0;0;1;0
+66197;21171;1;156;56.0;120;80;1;1;0;0;0;1
+66198;19860;2;170;74.0;150;90;1;1;0;0;0;1
+66202;21061;2;192;72.0;180;110;1;1;0;0;1;1
+66203;20303;2;175;95.0;210;90;3;3;0;0;1;1
+66204;19090;1;166;95.0;120;80;1;1;0;0;1;0
+66205;18425;1;162;60.0;110;70;1;1;0;0;0;0
+66206;19690;1;166;74.0;140;90;3;1;0;0;1;1
+66207;15401;2;177;92.0;140;80;2;1;0;0;1;1
+66208;20237;1;160;64.0;120;80;1;1;0;0;1;1
+66209;18726;1;173;82.0;120;80;1;1;0;0;1;0
+66210;15387;1;158;58.0;120;80;1;1;0;0;0;0
+66211;20680;1;160;58.0;120;80;1;1;0;0;1;0
+66212;20369;1;158;70.0;130;90;2;2;0;0;0;1
+66215;20368;1;156;71.0;140;90;1;1;0;0;0;1
+66216;21779;1;162;66.0;120;80;1;1;0;0;1;0
+66218;14411;1;170;90.0;110;70;1;1;0;0;0;0
+66219;14766;2;170;82.0;130;80;1;1;1;0;0;0
+66220;22020;2;173;105.0;110;70;1;1;0;0;1;1
+66222;17740;1;170;72.0;110;70;1;1;0;0;1;0
+66223;18153;1;159;67.0;110;80;1;1;0;0;0;0
+66225;18550;1;158;62.0;120;80;1;1;0;0;1;0
+66226;19828;1;158;73.0;130;80;1;1;0;0;1;1
+66227;18300;1;160;98.0;145;96;1;1;0;0;1;1
+66229;18329;1;158;65.0;140;90;1;1;0;0;1;1
+66230;17566;1;158;75.0;150;90;3;1;0;0;1;0
+66231;21820;2;165;67.0;140;90;2;1;0;0;1;0
+66232;21031;1;165;65.0;110;80;1;1;0;0;1;1
+66233;19120;1;141;56.0;130;80;1;1;0;0;1;0
+66234;15401;1;179;78.0;120;80;1;1;0;0;1;0
+66236;18167;2;166;91.0;140;90;3;3;1;1;1;1
+66237;19031;1;160;62.0;180;120;1;1;0;0;1;1
+66238;21423;1;159;68.0;140;70;1;1;0;0;1;1
+66239;18863;1;152;104.0;130;80;3;3;0;0;1;1
+66241;22003;1;164;68.0;130;90;1;1;0;0;1;1
+66242;16755;2;169;55.0;110;70;1;1;1;0;1;0
+66243;20587;1;162;72.0;110;70;3;3;0;0;1;0
+66245;19748;2;161;61.0;110;70;2;2;0;0;1;1
+66246;17307;1;186;70.0;150;100;2;2;0;0;0;1
+66247;18228;2;162;76.0;130;80;1;1;0;0;1;0
+66248;21946;1;154;83.0;150;90;3;1;0;0;1;1
+66249;17488;1;156;92.0;120;80;2;1;0;0;1;0
+66250;21783;2;174;86.0;120;80;1;1;0;0;0;1
+66251;21947;1;168;65.0;120;80;1;1;0;0;1;1
+66253;16657;1;172;110.0;130;100;3;1;0;0;1;1
+66254;20204;1;152;69.0;120;80;1;2;0;0;1;1
+66255;15760;2;181;85.0;130;80;2;1;0;0;0;1
+66256;20236;1;160;53.0;150;80;1;1;0;0;1;1
+66257;19784;2;159;59.0;130;90;1;1;0;0;1;0
+66258;14535;1;170;81.0;130;80;1;1;0;0;1;0
+66261;17456;2;179;93.0;120;80;1;1;0;0;1;1
+66262;14691;2;180;78.0;120;80;1;1;1;0;1;0
+66264;20470;1;159;86.0;110;80;1;1;0;0;1;1
+66265;21303;1;167;60.0;110;70;1;1;0;0;1;0
+66266;17358;2;178;78.0;120;80;1;1;0;0;1;1
+66267;21226;2;163;77.0;160;100;1;1;0;0;0;1
+66268;17564;2;162;96.0;120;89;1;2;0;0;0;1
+66270;19833;1;162;63.0;110;80;1;1;0;0;1;1
+66272;15266;2;187;102.0;130;80;1;1;0;0;1;0
+66277;20448;1;156;77.0;160;100;1;1;0;0;1;1
+66278;22792;1;153;54.0;160;90;1;2;0;0;1;1
+66279;21189;1;165;89.0;125;70;1;1;0;0;0;1
+66280;18902;1;163;67.0;90;65;1;1;0;0;1;0
+66281;16033;2;173;91.0;150;100;1;1;0;0;0;1
+66282;21738;2;158;75.0;120;80;1;1;0;0;1;0
+66283;14461;1;155;86.0;130;90;2;1;0;0;1;1
+66284;20619;1;158;70.0;140;90;3;3;0;0;0;1
+66285;14314;1;159;80.0;100;70;1;1;0;0;0;0
+66286;21696;1;160;65.0;130;90;3;1;0;0;1;1
+66287;16741;1;153;79.0;170;100;3;3;0;0;1;0
+66288;18091;2;163;89.0;160;110;2;1;0;0;1;1
+66289;16042;1;167;92.0;130;90;3;1;0;0;0;1
+66290;19733;2;170;84.0;140;79;2;1;1;0;0;1
+66291;22660;1;170;70.0;120;80;1;1;0;0;1;1
+66292;19816;1;164;59.0;110;70;1;1;0;0;0;0
+66294;19724;2;162;78.0;150;100;2;1;1;1;1;1
+66298;21177;2;165;69.0;150;1000;1;1;0;0;0;1
+66299;19540;1;159;71.0;110;70;1;1;0;0;1;1
+66300;21993;1;154;63.0;130;80;1;1;0;0;1;0
+66301;16068;1;160;90.0;143;86;1;1;0;0;1;1
+66302;14482;1;160;78.0;130;80;1;1;0;0;1;0
+66304;19935;1;167;73.0;120;80;1;1;0;0;0;0
+66305;15441;1;156;59.0;120;80;1;1;0;0;1;0
+66306;21123;2;180;79.0;120;80;1;1;0;0;0;1
+66308;17539;2;186;79.0;130;90;1;1;0;0;1;0
+66311;23347;1;151;81.0;180;1100;2;2;0;0;1;1
+66314;18971;1;168;74.0;140;90;1;1;0;0;0;1
+66316;23346;1;149;66.0;150;80;3;1;0;0;1;0
+66318;19749;1;155;69.0;120;80;1;1;0;0;1;0
+66319;15383;1;169;62.0;120;70;3;3;0;0;1;1
+66320;21783;1;151;58.0;150;90;1;1;0;0;1;1
+66321;20514;1;167;82.0;150;1000;2;1;0;0;1;1
+66322;17366;1;157;60.0;120;80;3;1;1;0;1;1
+66323;14382;1;157;62.0;110;80;1;1;0;0;1;0
+66324;23398;1;167;75.0;130;70;1;1;0;0;1;0
+66325;18237;2;169;78.0;140;80;2;1;0;0;0;1
+66326;17635;1;162;69.0;120;80;1;1;0;0;1;0
+66327;16092;2;165;69.0;110;70;2;1;0;0;1;0
+66328;21943;1;174;58.0;120;80;1;3;0;0;1;1
+66330;20228;1;158;54.0;120;80;1;1;0;0;1;1
+66332;17315;1;156;69.0;160;90;1;1;0;0;1;1
+66333;17628;2;162;78.0;140;90;1;1;0;0;1;0
+66334;17992;1;174;59.0;110;60;1;2;0;0;1;0
+66335;19855;2;165;65.0;120;80;1;1;0;0;1;1
+66336;18119;2;178;75.0;140;90;3;1;0;0;0;1
+66337;21419;1;164;78.0;140;80;2;3;0;0;0;1
+66338;19001;2;175;75.0;120;80;1;1;0;0;0;0
+66339;20343;2;169;68.0;140;90;2;1;0;0;1;1
+66341;18970;1;168;69.0;120;80;1;1;0;0;0;0
+66342;21782;1;149;75.0;130;80;1;2;0;0;0;1
+66344;20229;1;162;69.0;140;90;1;3;0;0;0;1
+66345;23442;1;160;85.0;110;80;1;3;0;0;1;1
+66346;23090;1;152;51.0;140;70;1;1;0;0;1;0
+66347;23381;1;168;80.0;155;100;2;1;0;0;1;0
+66348;18414;1;167;97.0;120;80;3;3;0;0;1;1
+66349;21197;2;166;85.0;120;80;1;1;0;0;1;1
+66350;18823;1;164;90.0;120;80;3;1;0;0;1;1
+66351;21104;1;160;91.0;120;80;2;1;0;0;1;0
+66352;23396;2;173;65.0;110;70;1;1;0;0;1;1
+66354;18951;1;171;69.0;120;80;2;3;0;0;1;0
+66355;19674;1;164;80.0;140;90;1;1;0;0;1;1
+66357;21333;1;160;100.0;160;100;3;1;0;0;1;0
+66358;18328;1;167;60.0;120;80;1;1;0;0;0;0
+66359;22058;2;169;73.0;120;80;1;1;1;0;1;1
+66360;21856;2;165;75.0;140;90;1;1;0;0;1;1
+66361;19595;1;158;93.0;110;70;3;1;0;0;1;1
+66362;22723;1;153;57.0;120;80;2;2;0;0;1;1
+66363;20569;1;161;71.0;120;70;1;1;0;0;1;1
+66364;21776;1;157;68.0;130;90;1;1;0;0;1;1
+66365;21224;1;157;67.0;140;90;2;1;0;0;1;1
+66371;20378;1;162;76.0;110;80;1;1;0;0;0;1
+66373;21275;1;152;73.0;120;80;1;1;0;1;1;0
+66374;20952;1;143;47.0;150;80;1;1;0;0;1;0
+66375;17590;2;169;80.0;120;80;1;1;0;0;1;0
+66376;19998;1;178;85.0;120;80;1;1;0;0;0;1
+66377;15253;1;169;65.0;120;80;1;1;0;0;1;0
+66378;15126;2;172;73.0;120;80;1;1;0;0;1;1
+66380;20603;1;158;61.0;120;80;1;1;0;0;0;1
+66382;20537;1;160;66.0;130;80;1;1;0;0;1;1
+66383;22537;2;160;60.0;140;90;1;1;0;0;1;1
+66384;18747;1;164;116.0;150;100;2;3;0;0;1;1
+66385;22201;2;168;89.0;120;80;1;1;0;0;1;1
+66386;22773;2;165;55.0;110;70;1;1;0;0;0;0
+66388;20425;1;156;70.0;140;90;1;1;0;0;1;1
+66389;19701;1;171;85.0;120;90;1;3;0;0;0;0
+66391;22572;1;163;93.0;110;80;1;1;0;0;1;1
+66392;22045;1;164;77.0;120;80;1;1;0;0;1;0
+66393;17746;2;158;56.0;110;70;1;1;0;0;1;0
+66395;21943;1;169;56.0;160;100;1;1;0;0;1;1
+66396;21866;1;168;82.0;140;80;2;1;0;0;1;0
+66397;20397;1;152;73.0;130;80;1;1;0;0;0;0
+66398;19488;1;162;65.0;160;90;2;1;0;0;0;0
+66399;22910;2;168;69.0;120;80;1;1;0;0;1;0
+66402;20490;1;154;85.0;140;90;1;3;0;0;1;0
+66403;18389;2;174;103.0;130;80;1;1;0;0;0;0
+66404;21822;2;185;100.0;150;90;1;1;0;0;1;1
+66405;18746;2;173;63.0;110;70;2;1;0;0;1;0
+66406;15914;1;160;61.0;110;70;1;2;0;0;1;0
+66408;15333;1;167;68.0;90;60;1;1;0;0;0;0
+66409;18236;1;169;72.0;110;80;1;1;0;0;1;0
+66410;22722;1;156;64.0;120;80;2;1;0;0;0;1
+66412;16610;1;165;65.0;120;80;1;1;0;0;0;0
+66413;20171;1;155;62.0;120;80;3;2;0;0;1;1
+66414;21858;2;160;73.0;155;100;1;2;0;0;1;1
+66415;14397;1;154;53.0;120;80;1;1;0;0;1;0
+66417;20274;2;170;80.0;150;90;1;1;1;0;0;1
+66418;18299;1;154;61.0;110;70;1;1;0;0;1;0
+66419;19260;1;153;64.0;120;80;1;3;0;0;1;0
+66420;19208;2;161;70.0;110;70;1;1;0;0;0;1
+66421;18268;2;177;66.0;150;90;2;1;0;1;1;1
+66422;23344;1;172;75.0;120;80;1;1;0;0;1;1
+66423;15215;2;178;92.0;90;100;1;1;1;0;1;0
+66424;19838;1;160;68.0;140;90;3;3;0;0;1;1
+66425;18392;2;165;75.0;130;90;1;1;0;0;1;0
+66426;14586;2;178;74.0;120;80;1;1;1;1;1;0
+66427;21689;2;177;95.0;110;70;3;1;0;0;1;1
+66428;19535;1;165;58.0;120;80;2;2;0;0;1;1
+66429;17590;1;166;80.0;140;80;2;1;0;0;1;1
+66430;17500;1;161;74.0;120;80;1;1;0;0;0;1
+66431;20980;1;165;98.0;110;70;2;1;0;0;1;0
+66432;23266;1;155;103.0;140;80;1;1;0;0;0;1
+66433;18867;1;162;50.0;140;80;1;1;0;0;1;1
+66434;19060;1;159;65.0;120;80;1;1;0;0;0;0
+66435;19543;1;152;57.0;120;70;2;1;0;0;1;0
+66437;19896;1;155;119.0;130;80;1;2;0;0;1;1
+66438;22418;1;152;75.0;140;100;1;1;0;0;1;0
+66439;21705;1;158;102.0;130;80;3;3;0;0;1;1
+66441;19787;2;172;90.0;120;80;1;1;0;0;1;0
+66442;16836;1;157;65.0;120;80;3;1;0;0;1;1
+66443;20592;1;164;97.0;140;90;3;3;0;0;1;0
+66444;21731;1;158;79.0;150;100;1;1;0;0;1;0
+66445;22606;1;156;86.0;140;90;1;1;0;0;1;1
+66446;19971;1;164;70.0;120;60;1;1;0;0;1;1
+66447;19086;2;187;99.0;120;80;1;1;0;0;1;0
+66448;18925;1;158;69.0;110;70;1;1;0;0;1;0
+66449;21638;1;152;54.0;140;80;1;1;0;0;0;1
+66450;14833;2;180;75.0;120;80;1;1;0;0;1;0
+66452;18304;2;169;89.0;100;80;1;1;1;0;1;0
+66455;20429;2;179;72.0;140;90;2;1;0;0;1;1
+66456;19201;1;160;63.0;140;90;3;1;0;0;0;1
+66457;17497;1;165;75.0;130;100;3;1;0;0;1;1
+66458;18371;2;172;104.0;156;96;1;1;0;0;0;1
+66459;18100;2;172;76.0;140;90;1;1;0;0;1;1
+66460;16814;1;163;52.0;110;70;1;1;0;0;1;0
+66462;18819;1;162;75.0;110;70;1;1;1;0;0;0
+66465;17386;1;167;73.0;150;90;2;1;0;0;1;1
+66466;18974;1;161;86.0;120;70;1;1;0;0;1;1
+66467;21277;1;156;66.0;150;70;1;1;0;0;1;1
+66468;21294;1;160;100.0;140;100;3;3;0;0;1;0
+66469;19220;1;168;70.0;140;90;1;3;0;0;0;1
+66472;20295;1;160;130.0;120;70;1;1;0;1;1;1
+66473;19959;1;165;65.0;120;80;1;1;0;0;1;0
+66474;21034;1;157;117.0;130;90;2;1;0;0;0;1
+66476;16007;2;170;68.0;120;70;1;1;1;1;1;0
+66478;19171;1;160;127.0;140;90;1;1;0;0;1;1
+66479;19522;1;153;59.0;160;110;3;1;0;1;1;1
+66480;20454;1;161;113.0;130;80;1;1;0;0;1;0
+66481;23551;2;172;62.0;120;80;1;1;0;0;0;1
+66482;22444;2;168;72.0;140;80;1;1;0;0;1;1
+66483;18117;2;168;67.0;110;80;3;3;0;0;1;0
+66484;20947;1;151;67.0;120;80;1;1;0;0;1;1
+66485;15950;2;170;98.0;120;90;1;1;0;0;1;0
+66486;20439;2;168;72.0;120;80;1;1;0;0;1;0
+66489;18260;1;165;62.0;130;80;1;1;0;0;1;0
+66490;18075;1;169;87.0;130;60;1;1;0;0;0;0
+66491;14503;1;165;63.0;140;80;1;1;0;0;1;0
+66492;21175;1;130;80.0;130;80;1;1;0;0;1;1
+66494;20453;1;160;158.0;150;90;1;1;0;0;1;1
+66496;14446;2;187;57.0;100;70;1;1;0;0;1;0
+66497;18883;1;164;62.0;120;80;1;1;0;0;1;0
+66498;18111;1;162;73.0;120;75;1;1;0;0;1;0
+66499;16598;2;163;82.0;160;1100;3;3;0;0;1;1
+66500;18675;1;156;76.0;140;90;1;1;0;0;1;1
+66501;19658;1;151;74.0;140;90;1;1;0;0;1;1
+66502;16046;2;165;60.0;120;80;1;1;0;0;1;0
+66504;19708;1;165;90.0;140;90;3;1;0;0;1;1
+66505;23361;1;150;63.0;160;100;2;2;0;0;1;1
+66508;19637;1;160;94.0;140;80;1;1;0;0;1;0
+66510;16079;2;175;81.0;120;80;1;1;1;0;1;0
+66511;21049;1;163;72.0;110;70;3;1;0;0;1;1
+66512;17734;2;178;80.0;120;80;2;3;0;0;1;1
+66514;17363;2;173;55.0;130;90;1;1;0;0;0;0
+66515;18248;2;172;98.0;112;72;1;1;0;1;1;0
+66518;15532;1;166;64.0;110;70;1;1;0;0;1;0
+66519;18128;2;166;70.0;130;90;2;1;0;0;1;1
+66520;18308;1;159;59.0;120;80;1;1;0;0;1;1
+66521;21289;1;159;70.0;130;80;3;1;0;0;1;0
+66522;18156;2;170;75.0;150;90;1;1;0;0;1;1
+66523;19639;2;170;81.0;140;80;2;1;0;0;0;1
+66525;18314;1;153;63.0;90;70;1;1;0;0;1;0
+66526;19536;2;171;94.0;120;80;1;1;0;0;1;1
+66528;23421;2;165;66.0;140;80;1;1;0;0;1;1
+66529;18698;1;156;71.0;140;90;2;1;0;0;1;0
+66530;21016;2;165;95.0;120;80;1;1;0;0;0;1
+66532;18354;1;169;80.0;125;80;2;1;0;0;1;1
+66533;18279;2;172;97.0;120;80;1;1;0;0;1;1
+66536;18301;2;172;64.0;130;80;1;1;1;0;1;0
+66537;20488;1;168;85.0;120;80;1;1;0;0;1;0
+66541;21128;1;173;69.0;110;70;1;1;0;0;1;0
+66543;16555;1;160;70.0;140;1000;1;1;0;0;0;1
+66544;22453;1;157;66.0;140;90;1;1;0;0;1;1
+66545;18834;1;170;86.0;140;80;1;1;0;0;1;1
+66548;16508;1;165;69.0;12;80;1;1;0;0;1;0
+66549;15915;1;153;78.0;120;80;2;2;0;0;1;0
+66550;18791;1;153;55.0;140;90;3;3;0;0;1;1
+66551;16648;1;158;52.0;110;70;1;1;0;0;1;0
+66552;15312;1;176;84.0;110;70;1;1;0;0;1;0
+66553;19023;1;160;90.5;180;120;1;1;0;0;1;1
+66554;20552;1;149;51.0;110;70;1;1;0;0;1;0
+66558;14392;1;157;78.0;120;80;3;3;0;0;0;1
+66559;21887;1;168;58.0;110;70;1;1;0;0;0;1
+66560;23322;1;166;100.0;130;80;1;1;0;0;1;1
+66561;18208;2;168;73.0;130;80;2;1;0;0;1;1
+66562;19776;2;168;66.0;120;80;1;1;0;0;1;1
+66564;17459;1;158;68.0;120;90;1;1;0;0;0;0
+66565;20548;2;161;78.0;140;90;1;1;0;0;0;0
+66566;18400;1;165;65.0;120;80;1;1;0;0;1;0
+66567;18251;1;157;49.0;110;70;1;1;0;0;1;0
+66568;20275;1;157;85.0;120;80;2;2;0;0;1;0
+66569;21826;1;160;60.0;140;100;2;1;0;0;1;0
+66570;18779;1;156;75.0;130;80;1;1;0;0;1;0
+66571;23646;2;160;59.0;-120;80;1;1;0;0;0;0
+66572;18998;1;158;69.0;120;70;1;1;0;0;1;0
+66573;22506;2;174;95.0;160;80;1;1;0;0;1;1
+66574;21644;1;144;52.0;130;80;1;1;0;0;1;1
+66575;17462;1;167;68.0;115;60;1;1;0;0;1;0
+66576;22580;1;160;70.0;130;90;1;1;0;0;1;1
+66577;22309;1;163;67.0;125;80;3;1;0;0;1;1
+66578;19735;1;162;70.0;110;70;1;1;0;0;0;0
+66579;18367;2;163;70.0;120;80;1;1;0;0;0;0
+66580;18741;1;162;90.0;145;90;1;1;0;0;1;1
+66581;16110;2;173;62.0;130;80;1;1;0;0;1;1
+66582;23157;1;161;79.0;150;80;3;3;0;0;1;1
+66585;23642;2;171;91.0;156;88;1;1;0;0;1;1
+66587;17661;1;158;57.0;110;60;2;1;0;0;0;0
+66592;21863;1;161;70.0;130;90;3;2;0;0;1;1
+66593;15950;1;170;70.0;120;80;1;1;0;0;1;0
+66594;23605;1;170;67.0;120;80;1;1;1;0;1;0
+66595;15925;1;162;50.0;120;80;1;1;0;0;0;0
+66596;17562;1;160;84.0;130;100;2;1;0;0;0;1
+66598;19568;1;166;51.0;120;90;2;2;0;0;1;1
+66599;18919;2;176;150.0;150;100;1;1;0;0;1;1
+66600;20395;2;166;74.0;160;100;1;1;0;0;1;1
+66601;16108;1;175;70.0;120;80;1;1;0;0;1;0
+66602;19557;1;151;60.0;110;60;1;1;0;0;1;0
+66603;21933;1;151;60.0;120;80;1;1;0;0;1;1
+66604;21973;1;163;75.0;120;80;1;1;0;0;1;0
+66608;15993;1;164;70.0;120;80;1;1;0;0;0;0
+66610;18807;1;168;65.0;120;80;1;1;0;0;1;0
+66611;20497;1;165;65.0;120;80;1;1;0;0;0;1
+66612;22017;1;145;76.0;160;80;1;1;0;0;1;0
+66613;21827;1;165;65.0;160;90;1;1;0;0;0;1
+66614;21643;1;151;59.0;120;80;1;1;0;0;1;0
+66615;15151;2;169;68.0;120;80;1;1;0;0;1;0
+66617;19635;2;170;65.0;120;80;1;1;0;0;1;1
+66618;23282;2;183;96.0;120;80;1;2;0;0;0;0
+66619;20287;2;168;59.0;120;80;1;1;0;0;1;0
+66620;18373;1;156;54.0;110;70;1;2;0;0;1;0
+66622;21231;1;160;114.6;100;80;3;2;0;0;0;0
+66623;18279;2;166;83.0;140;80;1;1;0;0;1;1
+66624;17546;1;159;109.0;100;60;2;2;1;0;0;1
+66625;15131;1;170;78.0;110;70;1;1;0;0;1;0
+66626;21864;1;157;73.0;130;80;1;1;0;0;1;1
+66628;18314;1;165;72.0;150;90;1;1;0;0;1;0
+66630;18944;2;162;75.0;100;80;1;1;0;0;1;0
+66631;23107;2;171;73.0;150;90;1;1;0;0;0;1
+66632;20388;1;155;56.0;130;90;1;1;0;0;0;1
+66633;18200;1;163;95.0;125;80;2;1;0;0;1;0
+66635;17313;1;166;83.0;110;70;1;1;0;0;1;0
+66636;23221;2;171;69.0;130;80;2;1;0;0;1;1
+66639;18185;1;155;83.0;220;120;1;1;0;0;0;0
+66641;19879;1;165;62.0;120;80;1;1;0;0;0;1
+66642;18839;2;170;82.0;120;70;1;1;0;0;1;0
+66645;21028;1;155;87.0;130;90;1;1;0;0;1;1
+66646;21879;1;161;75.0;130;80;1;1;0;0;1;1
+66648;18336;1;164;82.0;145;89;1;1;0;0;0;0
+66649;18153;1;160;68.0;140;100;2;1;0;0;1;0
+66651;23246;1;159;97.0;140;90;3;3;0;0;0;1
+66652;14555;1;169;79.0;110;70;1;1;0;0;1;0
+66653;23253;2;165;54.0;80;60;1;1;1;0;1;0
+66654;19720;1;160;80.0;140;90;1;1;0;0;1;1
+66655;17612;2;171;66.0;100;80;1;1;1;0;1;0
+66656;23397;1;170;90.0;140;90;3;3;0;0;0;1
+66657;22695;2;170;72.0;120;80;1;1;1;0;1;0
+66659;20569;2;175;72.0;120;80;1;3;0;0;1;0
+66660;23477;1;164;84.0;180;100;1;1;0;0;1;1
+66661;20679;1;150;72.0;140;80;1;2;0;0;1;1
+66662;22005;1;162;74.0;120;80;1;1;0;0;1;1
+66665;21854;2;167;83.0;120;80;3;3;0;0;0;1
+66666;14498;2;176;94.0;150;100;1;1;1;0;1;1
+66667;20252;2;161;62.0;140;90;3;3;0;0;1;1
+66668;21837;1;155;98.0;120;60;1;1;0;0;0;1
+66669;20423;2;168;67.0;140;90;1;1;0;0;0;1
+66670;23099;2;175;92.0;140;90;1;1;0;0;1;1
+66671;19666;2;182;83.0;120;80;1;1;1;0;1;0
+66672;20891;2;168;57.0;110;70;1;1;0;0;1;0
+66674;15224;1;165;56.0;90;60;1;1;0;0;1;0
+66675;18362;1;162;83.0;120;80;1;1;0;0;1;0
+66676;18749;1;161;70.0;120;80;2;1;0;0;1;0
+66678;17022;2;164;74.0;120;80;1;1;1;0;0;0
+66680;18961;2;167;65.0;120;80;1;1;0;0;1;1
+66684;21779;1;165;60.0;160;100;1;1;0;0;1;1
+66686;16169;1;161;85.0;150;100;1;1;0;0;1;1
+66689;20312;1;162;67.0;160;110;3;1;0;0;1;1
+66690;16053;2;164;61.0;130;80;1;1;0;0;0;1
+66691;22651;1;181;93.0;130;90;2;1;0;0;0;1
+66694;19592;1;157;71.0;110;80;1;1;0;0;1;0
+66695;17490;2;166;63.0;120;80;1;1;0;0;1;0
+66696;20572;1;170;58.0;120;80;1;1;0;0;1;1
+66697;22482;1;162;68.0;120;80;1;1;0;0;1;0
+66701;19059;2;178;85.0;120;80;1;1;0;0;0;1
+66704;18169;1;176;93.0;120;80;1;1;0;0;1;0
+66707;16814;2;169;72.0;110;80;1;1;1;0;1;1
+66710;20272;1;168;80.0;120;80;1;1;0;0;1;0
+66713;15171;2;172;91.0;120;80;1;1;0;0;1;1
+66714;20238;1;158;62.0;160;90;1;1;0;0;1;1
+66715;21842;1;158;78.0;120;80;1;1;0;0;1;0
+66717;22729;1;163;70.0;120;80;2;1;0;0;0;0
+66719;16164;1;163;76.0;190;100;3;1;0;0;1;1
+66720;22624;1;151;82.0;110;70;1;1;0;0;1;0
+66724;23315;1;163;83.0;170;90;1;1;0;0;1;1
+66725;22007;1;169;84.0;120;80;2;1;0;0;0;0
+66726;18205;1;165;65.0;100;80;1;1;0;0;1;0
+66727;21953;1;163;92.0;120;80;1;1;0;0;1;1
+66728;21770;1;156;64.0;140;80;2;1;0;0;1;1
+66729;20960;1;163;73.0;120;80;1;1;0;0;1;0
+66730;17594;2;172;59.0;120;80;2;1;0;1;1;0
+66731;19702;1;158;54.0;120;80;1;1;0;0;1;0
+66732;16053;2;167;82.0;120;80;1;1;0;1;1;1
+66733;23298;1;168;68.0;130;80;2;2;0;0;1;1
+66735;21255;1;163;60.0;130;60;3;1;0;0;1;1
+66737;20940;1;152;72.0;140;80;3;2;0;0;1;1
+66738;15938;1;171;63.0;120;80;1;1;0;0;1;0
+66742;16930;1;171;70.0;140;90;1;1;0;0;1;1
+66744;21665;1;166;105.0;130;80;2;2;0;0;0;0
+66745;20396;2;176;92.0;120;80;1;3;0;0;0;1
+66746;20991;2;168;79.0;150;90;1;1;1;0;0;1
+66747;23346;1;174;90.0;140;100;2;1;0;0;1;0
+66748;19084;2;170;79.0;120;70;1;1;1;0;1;0
+66749;20457;1;159;88.0;120;80;1;1;0;0;1;1
+66750;20419;1;155;75.0;120;80;1;1;0;0;1;1
+66751;15894;2;183;77.0;140;90;3;1;0;0;1;1
+66753;23374;1;162;66.0;130;100;1;1;0;0;1;1
+66754;21107;1;167;77.0;140;90;1;1;0;0;1;0
+66756;17580;2;120;80.0;130;80;1;1;0;0;0;1
+66761;14444;2;168;60.0;140;80;1;1;0;0;0;1
+66763;19476;1;165;65.0;120;80;1;1;0;0;1;1
+66764;21997;1;154;75.0;120;80;1;3;0;0;1;0
+66765;22543;1;156;75.0;120;80;1;1;0;0;1;1
+66766;19772;1;164;89.0;136;76;1;2;0;0;0;0
+66768;21159;1;153;49.0;120;80;1;1;0;0;0;1
+66770;14659;2;168;69.0;120;80;1;1;0;0;1;0
+66772;22036;1;165;81.0;130;80;1;1;0;0;0;0
+66773;21015;1;155;74.0;130;90;2;2;0;0;0;1
+66776;17601;1;169;75.0;100;60;1;1;0;0;1;0
+66778;17235;1;149;58.0;120;80;1;1;0;0;1;0
+66779;22325;1;148;72.0;140;80;1;3;0;0;1;1
+66781;18746;2;167;97.0;120;80;1;2;1;0;0;0
+66782;19090;2;168;76.0;120;80;1;1;1;0;1;0
+66783;20009;1;174;75.0;130;80;1;1;0;0;1;1
+66784;15818;1;150;85.0;120;80;1;1;0;0;1;1
+66785;18777;1;157;63.0;120;80;1;1;0;0;1;0
+66786;22598;2;170;109.0;130;70;1;1;0;0;1;1
+66787;21896;1;162;80.0;130;80;2;1;0;0;1;0
+66789;18655;1;155;54.5;100;65;1;1;0;0;1;0
+66790;21363;2;175;105.0;120;80;1;1;0;0;0;0
+66791;18144;1;171;83.0;120;80;1;1;0;0;1;0
+66792;16120;2;178;80.0;140;90;1;1;1;1;1;0
+66793;16737;2;170;57.0;110;80;1;1;1;0;0;0
+66794;22747;2;166;66.0;130;90;1;2;1;0;0;1
+66796;23115;2;160;71.0;140;80;1;1;0;0;1;1
+66797;20369;1;170;90.0;140;90;3;1;0;0;1;1
+66798;15407;1;163;60.0;110;80;1;1;0;0;1;0
+66799;23535;2;180;85.0;170;90;1;1;0;0;1;1
+66800;20855;1;155;99.0;120;80;1;1;0;0;0;1
+66801;21468;1;158;66.0;110;80;1;1;0;0;1;0
+66802;15472;1;166;85.0;120;79;1;1;0;0;1;0
+66803;19038;1;152;65.0;110;70;1;1;0;0;1;0
+66804;18528;2;175;84.0;150;100;2;1;0;0;0;1
+66805;21057;1;150;73.0;110;70;3;1;0;0;0;0
+66806;22164;1;157;92.0;150;90;1;2;0;0;1;1
+66807;21696;2;168;61.0;130;80;3;3;0;1;1;0
+66810;17278;2;178;70.0;115;80;1;2;0;0;1;1
+66811;22487;2;174;74.0;130;80;1;1;0;0;0;0
+66812;22753;1;157;57.0;140;90;3;3;0;0;1;0
+66813;21190;1;165;59.0;120;80;1;1;0;0;1;0
+66814;16086;2;165;62.0;110;70;1;1;1;0;1;0
+66815;23591;2;180;85.0;120;80;1;1;0;0;0;0
+66816;17037;1;174;71.0;100;70;1;1;0;0;1;0
+66817;16267;2;171;91.0;100;80;2;1;1;1;1;0
+66820;16554;2;162;66.0;160;80;1;1;0;0;1;1
+66821;22556;1;156;91.0;140;90;1;2;0;0;1;1
+66822;20153;1;162;88.0;140;100;2;1;0;0;1;1
+66823;18949;2;169;71.0;120;90;3;2;0;0;1;1
+66824;18218;1;152;70.0;150;90;1;1;0;0;0;1
+66825;17276;1;166;86.0;120;80;1;1;0;0;1;0
+66827;18862;1;160;63.0;90;60;1;1;0;0;1;0
+66828;19663;1;162;85.0;125;89;1;1;0;0;1;0
+66829;19589;2;173;70.0;120;80;3;3;1;0;1;0
+66830;16115;1;156;64.0;130;90;3;1;0;0;1;1
+66831;20381;1;170;66.0;140;90;1;1;0;0;1;1
+66832;16127;1;164;74.0;130;90;2;1;0;0;0;1
+66834;14539;2;160;58.0;120;90;1;1;0;0;1;0
+66836;18941;1;166;68.5;110;70;1;2;0;0;1;1
+66837;19197;2;170;67.0;120;80;1;1;1;1;1;1
+66844;20769;1;160;62.0;120;80;2;3;0;0;1;0
+66845;21667;2;173;92.0;120;80;1;1;0;0;1;0
+66846;18197;1;173;77.0;120;80;3;3;0;0;0;1
+66847;22355;1;167;60.0;130;80;1;1;0;0;0;1
+66848;15314;1;152;53.0;110;70;1;1;0;0;1;0
+66850;16919;2;168;72.0;120;70;1;1;0;0;1;0
+66851;20229;1;165;69.0;120;80;1;1;0;0;1;1
+66853;21727;1;160;70.0;150;100;1;1;0;0;0;1
+66854;21236;1;162;66.0;90;70;2;1;0;0;1;0
+66856;20455;1;165;66.0;12;80;1;1;0;0;1;0
+66857;18829;1;152;93.0;170;90;1;1;0;0;1;1
+66858;18901;1;167;72.0;120;80;1;1;0;0;1;0
+66859;23469;1;162;68.0;115;75;1;1;0;0;0;0
+66860;15306;1;164;59.0;120;80;1;1;0;0;1;0
+66861;18856;1;154;100.0;140;90;3;1;0;0;1;1
+66862;17623;2;170;80.0;110;70;1;1;0;0;0;0
+66863;19116;1;156;97.0;130;80;3;1;0;0;0;1
+66865;21775;2;180;72.0;180;100;1;1;0;0;1;1
+66867;16624;1;163;100.0;140;90;3;3;0;0;1;0
+66868;16113;1;164;61.0;120;80;1;1;0;0;0;0
+66870;20929;1;164;70.0;120;80;1;1;0;0;0;1
+66874;14421;1;167;97.0;140;90;1;1;0;0;0;0
+66875;17410;2;172;74.0;120;80;1;1;0;0;1;0
+66876;22740;2;168;72.0;120;80;1;1;0;0;0;1
+66877;17658;1;159;85.0;110;80;1;1;0;0;1;0
+66878;15321;2;178;92.0;150;90;1;1;1;0;1;1
+66879;18287;1;162;80.0;180;90;1;1;0;0;1;1
+66881;16592;1;159;88.0;110;80;1;1;0;0;1;0
+66883;18086;1;169;96.0;120;80;1;1;0;0;1;0
+66885;21131;1;156;70.0;140;90;1;1;0;0;1;0
+66886;18839;2;180;83.0;120;80;2;2;0;0;1;1
+66889;22044;2;166;68.0;150;60;1;1;0;0;1;0
+66890;21165;1;163;59.0;120;60;1;1;0;0;1;1
+66891;23217;1;157;81.0;130;90;2;2;0;0;0;1
+66892;20310;1;160;71.0;110;70;1;1;0;0;1;0
+66894;22595;1;156;66.0;130;90;1;1;0;0;1;0
+66895;15378;1;158;58.0;90;60;1;1;0;0;1;0
+66897;17488;1;158;61.0;120;70;1;1;0;0;1;1
+66900;23297;1;165;59.0;120;80;1;1;0;0;0;1
+66903;16709;1;152;86.0;120;80;2;2;0;0;0;0
+66905;18755;1;152;67.0;100;60;1;2;0;0;1;0
+66908;21208;1;158;94.0;130;80;1;1;0;0;1;0
+66910;21772;2;170;69.0;120;80;2;2;0;0;1;1
+66911;17988;1;152;69.0;120;80;3;1;0;0;1;1
+66914;21355;2;159;68.0;120;80;1;1;0;0;0;0
+66915;17523;1;158;62.0;150;90;2;1;0;0;1;1
+66916;19504;1;155;78.0;120;80;3;1;0;0;1;1
+66917;22476;1;160;84.0;130;80;1;1;0;0;1;0
+66919;21156;1;158;80.0;130;90;1;1;0;0;1;0
+66920;16851;1;148;50.0;140;100;1;1;0;0;1;1
+66921;18898;1;155;60.0;110;70;2;2;0;0;1;1
+66922;17660;1;163;74.0;150;80;2;2;0;0;1;1
+66923;19707;1;160;67.0;140;100;1;1;0;0;1;1
+66924;19050;2;168;70.0;160;90;3;1;0;0;1;1
+66925;18279;1;158;58.0;110;70;2;1;0;0;1;0
+66926;19043;1;168;65.0;120;70;1;1;0;0;1;0
+66928;19738;2;166;74.0;160;90;2;2;1;0;1;1
+66929;19562;1;163;81.0;120;80;1;1;0;0;1;1
+66930;22562;1;165;78.0;120;80;1;1;0;0;0;0
+66931;23151;1;155;67.0;120;80;1;1;0;0;1;1
+66932;19684;1;162;69.0;120;80;1;1;0;0;1;0
+66935;18973;1;166;66.0;120;80;1;1;0;0;0;0
+66936;21243;1;175;79.0;120;80;1;1;0;0;1;0
+66937;18236;2;175;85.0;120;80;3;1;0;1;1;1
+66939;20294;1;165;63.0;150;100;1;1;0;0;0;1
+66943;20310;2;168;71.0;140;90;3;1;1;0;1;0
+66944;19818;2;163;65.0;160;100;1;1;0;0;1;1
+66945;20322;1;153;63.0;100;60;1;1;0;0;0;0
+66946;21970;1;162;112.0;120;80;2;2;0;0;1;1
+66947;19872;1;162;56.0;120;80;1;1;0;0;1;0
+66948;20393;1;163;57.0;107;80;1;1;0;0;1;0
+66949;17574;1;163;123.0;160;80;2;1;0;0;1;1
+66951;20513;2;170;83.0;135;90;1;1;0;0;1;1
+66952;15148;2;168;54.0;110;79;1;1;0;0;0;0
+66953;22418;1;172;70.0;120;80;1;1;0;0;1;1
+66955;18982;1;170;65.0;140;90;2;1;0;0;1;1
+66957;21972;1;162;98.0;170;1000;1;2;0;1;1;1
+66958;16736;1;171;89.0;130;80;1;1;0;0;1;1
+66959;16948;1;163;63.0;120;80;1;1;0;0;1;0
+66960;15521;1;155;60.0;110;70;1;1;0;0;1;0
+66962;20960;1;160;78.0;130;80;2;2;0;0;1;1
+66964;18896;1;169;74.0;120;80;1;1;0;0;1;0
+66966;21925;1;158;65.0;110;80;1;1;0;0;1;0
+66968;22463;1;165;82.0;160;100;1;1;0;0;1;1
+66970;16942;1;169;73.0;145;90;2;1;0;0;1;1
+66972;18099;2;160;84.0;150;90;3;3;0;0;1;1
+66973;20458;1;165;80.0;180;90;1;1;0;0;1;1
+66974;19569;1;161;70.0;120;80;1;1;0;0;1;0
+66975;18890;1;155;72.0;120;80;1;1;0;0;1;0
+66976;16750;2;165;65.0;130;90;1;1;0;0;0;1
+66980;22737;2;160;84.0;150;90;1;1;0;0;1;1
+66981;16899;2;172;74.0;120;80;1;1;0;1;1;0
+66982;21794;2;186;100.0;140;90;1;1;0;0;1;0
+66984;19782;1;165;59.0;120;90;1;1;0;0;1;1
+66987;19669;1;163;54.0;120;80;3;2;0;0;1;1
+66990;22149;1;162;78.0;120;80;2;1;0;0;1;1
+66991;18927;1;148;62.0;130;110;2;2;1;0;1;1
+66992;20989;1;168;66.0;120;80;1;1;0;0;1;0
+66993;15478;1;156;74.0;130;90;1;1;0;0;0;1
+66994;14541;2;184;74.0;120;80;1;1;0;0;0;0
+66997;16845;1;168;72.0;110;80;2;1;0;0;1;0
+66998;16910;2;180;78.0;14020;90;1;1;0;0;1;1
+67000;18147;1;163;57.0;100;60;1;1;0;0;0;0
+67001;19609;1;163;55.0;120;80;2;2;0;0;1;1
+67003;15395;1;165;58.0;120;80;1;1;0;0;1;0
+67004;20219;1;164;100.0;160;90;2;2;0;0;1;1
+67005;22584;2;182;112.0;130;80;1;1;0;0;0;0
+67006;14683;1;164;68.0;120;80;1;1;0;0;1;0
+67007;18045;1;162;70.0;90;70;1;1;0;0;1;0
+67008;18796;2;157;68.0;150;90;1;1;0;0;0;0
+67010;21964;1;159;70.0;100;70;2;1;0;0;0;1
+67013;14398;1;164;90.0;140;100;2;1;0;0;1;1
+67014;19489;1;158;70.0;110;80;1;1;0;0;1;1
+67015;17635;2;167;69.0;120;70;1;1;1;0;1;0
+67016;19108;1;153;67.0;110;70;2;1;0;0;1;0
+67017;17612;2;159;72.0;110;60;1;1;0;0;1;0
+67019;22898;1;160;75.0;160;1000;1;1;0;0;1;1
+67020;18795;1;165;71.0;120;80;1;1;0;0;1;0
+67021;18158;1;164;70.0;90;60;1;1;0;0;1;1
+67022;21106;2;178;80.0;120;80;1;1;0;0;1;0
+67024;21252;2;174;60.0;120;80;1;1;0;0;1;0
+67025;16625;2;164;62.0;120;80;3;3;0;0;1;1
+67026;18855;1;160;62.0;110;70;1;1;0;0;1;0
+67032;18987;1;163;55.0;110;70;1;1;0;0;0;1
+67035;18897;2;174;104.0;110;90;1;1;0;0;0;1
+67038;17625;2;168;87.0;120;70;1;2;0;0;1;0
+67040;21161;1;173;74.0;110;70;1;1;0;0;1;0
+67041;23264;2;170;95.0;180;100;3;3;0;1;1;1
+67043;21216;1;160;59.0;110;70;1;1;0;0;1;0
+67044;22572;1;172;63.0;160;80;1;1;0;0;1;1
+67045;19648;2;169;65.0;120;80;1;1;0;0;1;0
+67046;23437;2;166;87.0;130;80;3;3;0;0;1;1
+67047;14410;2;165;72.0;120;80;1;1;0;0;1;0
+67048;15976;1;143;60.0;150;80;1;2;0;0;1;1
+67049;23324;1;169;69.0;130;80;1;1;0;0;1;1
+67052;19971;1;165;60.0;120;80;1;1;0;0;0;0
+67053;22616;2;169;68.0;120;80;3;3;0;0;1;1
+67054;22123;2;168;65.0;120;70;1;1;0;0;0;1
+67056;23198;1;166;87.0;140;90;3;1;0;0;1;1
+67058;19014;1;155;60.0;140;90;2;1;0;0;0;0
+67059;19037;2;166;90.0;140;80;1;1;0;0;1;1
+67061;23321;2;168;71.0;120;80;1;1;1;0;1;0
+67062;15265;1;168;65.0;110;70;1;1;0;0;1;1
+67063;16048;1;169;71.0;130;80;2;1;0;0;0;1
+67064;17587;2;174;61.0;120;80;1;1;0;0;0;0
+67065;17645;2;180;78.0;120;80;1;1;0;0;1;0
+67066;19033;1;167;60.0;120;80;1;1;0;0;0;0
+67067;20992;1;152;60.0;100;60;1;1;0;0;1;0
+67069;20482;2;158;75.0;150;90;1;1;0;0;1;1
+67070;21056;2;163;68.0;140;80;1;1;0;0;1;1
+67073;19067;1;161;88.0;130;80;3;1;0;1;1;1
+67074;19761;1;164;90.0;110;70;3;1;0;0;0;0
+67075;21887;2;176;80.0;120;80;1;1;0;0;1;1
+67079;19651;1;171;68.0;120;80;1;1;0;0;1;0
+67080;23251;2;176;85.0;120;80;1;1;0;0;1;1
+67081;22539;1;176;70.0;120;80;1;3;0;0;0;1
+67082;17482;1;161;53.0;120;80;1;1;0;0;0;0
+67083;18833;1;155;58.0;110;80;1;1;0;0;1;0
+67084;19575;2;176;89.0;120;80;3;2;0;0;1;1
+67087;21938;1;156;52.0;100;70;3;2;0;0;1;1
+67088;22657;1;158;57.0;120;80;1;1;0;0;1;0
+67089;20378;1;165;65.0;130;80;1;1;0;0;0;0
+67090;20444;2;168;74.0;120;80;1;1;0;0;1;0
+67094;21968;1;156;60.0;120;80;1;1;0;0;1;1
+67095;18803;1;150;78.0;120;80;1;2;0;0;1;0
+67096;15134;2;173;73.0;120;80;2;1;1;0;1;0
+67098;21063;1;165;80.0;130;90;3;1;0;0;1;1
+67099;18750;1;164;76.0;140;90;1;1;0;0;0;1
+67100;17610;1;156;65.0;150;100;3;1;0;0;1;1
+67101;18248;1;155;82.0;110;80;1;1;0;0;1;0
+67102;21750;2;163;70.0;170;100;1;1;0;1;1;1
+67103;23242;2;175;70.0;120;80;1;1;0;0;1;1
+67104;15288;2;157;60.0;120;80;1;1;1;1;1;0
+67106;21706;1;162;86.0;140;100;2;1;0;0;1;0
+67107;18740;2;164;80.0;110;70;2;1;1;0;1;1
+67109;19077;1;163;78.0;140;90;1;1;0;0;1;0
+67110;23154;2;176;80.0;120;80;1;1;0;0;1;0
+67111;22666;2;163;82.0;140;70;2;1;1;0;1;1
+67112;21351;1;165;59.0;120;80;1;3;0;0;1;1
+67113;19712;1;162;74.0;110;70;1;1;0;0;1;1
+67114;23476;1;158;100.0;140;80;2;1;0;0;1;1
+67115;16882;1;160;55.0;120;80;1;1;0;0;1;0
+67116;21082;1;150;45.0;110;70;2;1;0;0;1;0
+67117;18165;1;166;82.0;160;80;2;1;0;0;1;1
+67118;21050;1;169;75.0;120;80;1;1;0;0;1;0
+67119;16942;1;181;75.0;120;80;1;1;0;0;1;1
+67120;18365;2;168;60.0;120;70;1;1;1;1;1;0
+67121;20237;2;168;71.0;130;80;1;1;0;0;1;1
+67122;15243;2;170;70.0;165;80;1;1;0;0;1;1
+67123;22029;2;160;64.0;120;80;1;1;0;0;0;1
+67124;15933;1;158;67.0;120;80;1;1;0;0;1;0
+67126;20167;2;172;105.0;170;80;2;2;0;0;1;1
+67128;15173;1;157;60.0;110;70;1;1;0;0;1;0
+67130;18893;2;160;60.0;120;80;1;1;0;0;1;1
+67132;20518;1;164;67.0;120;80;1;1;0;0;0;0
+67133;19164;2;160;59.0;100;70;1;2;0;0;1;1
+67135;20501;2;178;71.0;120;70;1;1;1;1;1;0
+67136;21204;2;174;78.0;120;80;1;1;1;0;1;0
+67137;18004;1;160;60.0;120;80;1;1;0;0;1;0
+67138;20479;2;171;70.0;120;80;1;1;0;0;1;0
+67139;21929;2;170;70.0;110;70;1;1;0;0;1;1
+67140;22659;1;149;81.0;150;90;1;1;0;0;1;1
+67142;20542;2;166;76.0;170;80;1;1;0;0;1;1
+67143;19856;2;179;65.0;120;70;1;1;1;0;1;0
+67144;20891;2;165;79.0;120;80;1;3;0;0;1;1
+67145;19506;1;164;72.0;120;80;1;1;0;0;1;0
+67147;21710;2;155;72.0;140;90;2;1;1;0;1;1
+67149;23483;2;163;61.0;120;80;3;3;0;0;1;1
+67150;21348;2;174;81.0;120;80;1;1;0;0;1;0
+67151;21282;2;162;84.0;130;100;1;1;0;0;1;1
+67152;19130;2;165;85.0;140;80;1;1;0;0;1;1
+67153;17591;1;161;68.0;120;80;1;1;0;0;1;0
+67154;21226;1;156;59.0;150;80;1;1;0;0;0;1
+67155;21786;1;165;68.0;140;80;1;1;0;0;1;0
+67159;22037;2;179;83.0;130;80;2;2;0;0;1;1
+67160;18340;1;150;84.0;110;70;1;1;0;0;1;0
+67161;17433;1;172;68.0;110;70;1;1;1;0;1;0
+67163;20450;1;157;86.0;120;80;1;1;0;0;0;1
+67164;21178;1;159;97.0;110;70;1;1;0;0;1;1
+67166;21968;1;155;57.0;120;80;2;1;0;0;1;1
+67167;21953;2;169;75.0;120;80;1;1;0;0;0;0
+67168;16259;1;169;68.0;120;80;1;1;0;0;1;0
+67169;15916;1;165;62.0;120;80;2;3;0;0;1;0
+67170;21823;2;170;85.0;140;90;3;1;0;0;1;1
+67172;21693;1;151;62.0;120;80;1;1;0;0;1;1
+67173;21026;2;161;59.0;150;80;1;1;0;0;1;0
+67174;21343;1;157;92.0;150;89;3;1;1;0;1;1
+67175;19710;1;165;75.0;100;80;1;1;0;0;0;0
+67176;21130;1;156;98.0;130;70;1;1;0;0;0;0
+67178;22451;1;157;46.0;120;80;1;3;0;0;1;0
+67180;19204;2;165;68.0;90;60;1;1;1;0;1;0
+67181;19702;2;168;60.0;120;80;1;1;0;0;1;0
+67183;18900;1;160;92.0;160;100;3;2;0;0;1;0
+67184;17417;1;158;100.0;140;90;1;1;0;0;1;0
+67187;21371;1;154;60.0;120;60;1;1;0;0;1;0
+67188;19973;1;175;75.0;120;70;1;1;0;0;0;0
+67189;19671;2;172;91.0;120;80;1;2;0;0;1;0
+67190;19896;2;162;82.0;120;80;1;1;0;0;1;1
+67191;19626;2;168;73.0;130;90;1;1;0;0;0;1
+67192;19975;1;160;73.0;120;80;1;1;0;0;1;1
+67194;23206;2;176;91.0;130;80;3;2;0;0;1;1
+67195;20551;2;170;71.0;140;90;1;1;0;0;1;1
+67198;19026;2;185;103.0;140;90;3;1;0;0;1;1
+67199;15389;1;165;58.0;120;80;1;1;0;0;1;0
+67200;21803;1;166;57.0;100;60;1;1;0;0;1;0
+67201;17452;1;155;60.0;120;80;1;1;0;0;1;1
+67203;18729;1;154;58.0;120;80;1;1;0;0;0;1
+67204;21986;2;172;77.0;150;90;1;1;1;0;1;1
+67205;14665;2;178;83.0;110;70;1;1;0;1;1;1
+67206;17450;1;162;80.0;120;80;3;1;0;0;1;1
+67208;15429;2;169;91.0;140;90;2;1;1;1;0;1
+67209;22742;1;151;64.0;150;90;2;1;0;0;1;1
+67210;22567;2;170;88.0;110;70;1;1;0;0;1;0
+67211;15557;1;165;63.0;120;80;1;1;0;0;1;0
+67212;16813;1;163;55.0;120;80;1;1;0;0;1;1
+67213;16823;1;157;76.0;120;90;1;1;0;0;1;0
+67215;14451;1;160;68.0;120;80;1;1;0;0;1;0
+67216;20969;1;158;75.0;120;80;1;1;0;0;1;0
+67217;15225;2;170;70.0;120;80;1;1;0;0;1;0
+67218;19168;1;161;92.0;160;100;3;3;0;0;1;1
+67219;17467;2;170;100.0;140;90;1;1;0;0;1;1
+67220;17505;2;180;80.0;120;80;1;1;0;0;1;1
+67221;21273;1;157;68.0;110;80;1;1;0;0;1;0
+67223;14351;2;167;73.0;110;70;2;1;1;0;1;0
+67224;20394;2;175;81.0;140;80;3;3;1;1;1;1
+67225;20586;2;173;94.0;130;90;1;2;0;0;1;1
+67226;20464;1;165;85.0;120;80;1;1;0;0;1;0
+67227;17599;1;168;71.0;110;80;1;1;0;0;1;0
+67228;21231;2;184;99.0;130;90;3;2;0;1;1;1
+67229;20180;1;157;85.0;120;80;1;2;1;0;1;0
+67230;14584;1;168;56.0;120;80;1;1;0;0;1;0
+67231;14463;2;169;82.0;140;90;1;1;0;0;1;1
+67233;18330;1;157;109.0;130;79;1;1;0;0;0;0
+67236;22596;2;167;67.0;120;80;1;1;0;0;0;1
+67238;21946;2;176;79.0;180;90;2;2;0;0;1;1
+67239;20479;1;162;80.0;140;90;2;1;0;0;1;1
+67241;20362;2;164;84.0;140;90;1;3;0;0;1;0
+67242;18392;1;157;58.0;100;70;1;1;0;0;1;0
+67243;16670;1;150;75.0;120;80;1;1;0;0;1;0
+67244;19652;2;175;90.0;120;60;1;1;0;0;0;1
+67245;19926;2;172;92.0;130;80;1;1;0;0;1;1
+67246;20157;2;158;67.0;120;80;2;1;0;0;1;0
+67247;18508;1;165;65.0;130;80;1;2;0;0;0;1
+67249;19483;1;165;70.0;120;90;1;1;0;0;0;0
+67250;14697;1;152;60.0;110;70;2;1;0;0;1;1
+67251;18025;1;167;80.0;130;80;3;3;0;0;1;1
+67254;18368;1;165;80.0;140;90;1;1;0;0;1;1
+67255;20249;1;168;75.0;120;80;1;1;0;0;0;1
+67256;19706;1;160;63.0;100;60;1;1;0;0;1;0
+67257;19779;1;160;85.0;130;90;3;3;0;0;1;1
+67258;21298;1;168;105.0;120;90;1;1;0;0;1;0
+67259;19947;1;164;99.0;130;90;2;1;0;0;1;1
+67261;18075;1;160;66.0;120;80;1;1;0;0;1;0
+67262;14443;1;162;90.0;130;90;1;1;0;0;1;1
+67263;17506;1;162;76.0;130;80;1;1;0;0;0;1
+67265;15941;1;156;88.0;120;80;1;1;0;0;1;1
+67267;18076;2;172;95.0;180;100;3;3;1;1;0;1
+67268;14632;1;163;91.0;120;80;1;1;0;0;1;0
+67269;21123;1;154;57.0;130;80;1;2;0;0;1;0
+67270;18883;1;152;82.0;140;90;1;1;0;0;1;1
+67271;18288;2;174;65.0;120;80;1;1;0;0;1;0
+67272;18975;2;165;65.0;120;80;1;1;0;0;1;1
+67275;23191;2;176;87.0;180;90;2;1;0;0;1;1
+67278;17465;1;160;70.0;110;70;1;1;0;0;1;1
+67279;23088;2;168;80.0;140;90;2;1;0;0;1;1
+67282;16707;2;182;69.0;140;90;2;1;0;0;1;1
+67283;20953;1;149;64.0;140;1000;2;1;0;0;1;1
+67284;21094;1;166;64.0;120;80;1;1;0;0;1;0
+67285;19043;1;156;53.0;120;85;1;1;1;0;1;0
+67286;18307;1;160;44.0;110;70;1;1;0;1;1;0
+67287;19557;1;159;64.0;170;99;2;1;0;0;1;1
+67290;20172;1;159;48.0;110;80;1;1;0;0;1;0
+67291;19582;1;158;49.0;150;90;2;2;0;0;1;0
+67293;16866;2;165;66.0;120;80;2;2;0;0;1;0
+67294;15274;1;164;66.0;140;100;1;1;0;0;0;1
+67295;16578;1;156;79.0;130;90;1;1;0;0;1;0
+67299;21812;1;163;90.0;130;80;3;1;0;0;1;1
+67300;20665;1;160;60.0;120;80;1;1;0;0;1;0
+67303;21048;1;161;78.0;120;80;1;1;0;0;1;0
+67304;16129;2;160;70.0;120;70;1;1;1;0;1;0
+67308;21813;1;165;65.0;130;90;1;1;0;0;0;1
+67310;21912;2;179;78.0;160;90;3;1;1;0;1;1
+67312;19819;1;174;78.0;120;80;1;1;0;0;0;1
+67314;17001;1;157;58.0;125;70;1;1;0;0;1;1
+67315;18072;1;164;86.0;150;100;3;3;1;0;1;1
+67320;20456;1;165;63.0;130;90;1;1;0;0;0;0
+67322;23138;2;186;85.0;140;80;3;3;0;0;1;1
+67323;19633;1;162;83.0;120;70;1;1;0;0;1;0
+67324;19762;1;166;70.0;130;80;1;1;0;0;0;1
+67325;22051;1;164;64.0;160;90;1;1;0;0;0;1
+67326;15397;2;170;69.0;130;70;1;1;0;0;1;1
+67328;17769;2;170;70.0;140;90;3;3;0;0;1;1
+67329;19535;1;153;51.0;120;80;1;1;0;0;1;1
+67330;17290;1;160;63.0;120;80;1;3;0;0;1;0
+67333;18130;1;167;85.0;120;80;1;1;0;0;1;0
+67335;18311;1;160;68.0;130;90;2;1;0;0;1;0
+67336;21831;1;167;70.0;140;90;1;1;0;0;1;1
+67338;20410;1;152;57.0;90;60;2;1;0;0;1;1
+67339;22645;2;174;60.0;150;90;1;1;1;1;1;1
+67340;21199;1;152;44.0;140;80;1;1;0;0;1;1
+67341;19960;1;167;61.0;120;80;1;1;0;0;1;1
+67342;18163;1;150;54.0;110;70;1;1;0;0;1;0
+67345;23252;1;158;51.0;140;90;3;1;0;0;1;1
+67346;22042;2;174;60.0;100;60;2;1;0;0;1;0
+67347;19010;2;173;70.0;140;90;1;1;1;0;1;1
+67348;22066;2;168;94.0;150;90;2;1;0;1;1;1
+67352;21984;2;170;78.0;140;90;3;1;1;1;1;1
+67353;20310;1;164;64.0;140;80;3;3;0;0;1;1
+67357;21110;1;159;54.0;90;60;1;1;0;0;1;0
+67358;19826;1;158;58.0;120;80;2;1;0;0;1;0
+67359;21137;2;169;74.0;160;1100;1;1;0;0;0;1
+67360;18915;1;158;64.0;120;80;1;1;0;0;1;1
+67361;20263;1;174;82.0;120;80;1;1;0;0;1;0
+67362;19779;2;173;81.0;130;80;3;1;0;0;1;0
+67363;21826;1;152;82.0;120;80;1;3;0;0;0;1
+67365;16068;1;160;75.0;80;120;2;1;0;0;1;0
+67367;21055;1;170;85.0;130;80;1;1;0;0;1;1
+67370;16783;2;169;76.0;120;80;2;1;0;0;1;1
+67372;16072;2;164;84.0;130;87;1;1;0;1;1;0
+67374;14685;1;166;68.0;100;80;2;2;0;0;1;0
+67375;21102;1;158;89.0;110;70;3;1;0;0;1;0
+67376;19518;2;177;83.0;130;90;2;1;0;0;1;1
+67380;18130;1;158;60.0;110;70;1;1;0;0;1;0
+67381;14623;1;156;56.0;120;80;1;1;0;0;1;0
+67382;20735;2;170;65.0;140;90;1;1;0;0;1;1
+67385;21762;2;176;101.0;120;80;1;1;1;1;1;0
+67386;17492;2;175;80.0;120;70;1;1;0;0;1;0
+67387;21712;1;170;87.0;140;90;1;1;0;0;0;1
+67388;19503;1;158;59.0;100;70;1;1;0;0;1;0
+67392;14451;1;158;110.0;120;80;1;1;0;0;0;0
+67393;18860;1;174;73.0;120;80;1;1;0;0;1;0
+67395;14781;1;165;65.0;120;80;1;3;0;0;0;1
+67396;17612;1;161;76.0;130;70;1;1;0;0;1;0
+67397;14617;2;175;82.0;130;90;1;3;0;0;1;1
+67398;21903;1;155;62.0;120;80;1;1;0;0;1;0
+67400;18432;2;170;75.0;120;80;1;1;0;0;1;0
+67402;21014;1;156;85.0;110;70;3;3;0;0;1;0
+67403;20272;2;178;101.0;120;80;1;1;0;1;1;0
+67405;18021;1;156;58.0;110;70;2;1;0;0;1;0
+67406;21011;2;176;88.0;136;87;1;1;0;0;0;0
+67407;17608;1;165;76.0;140;90;3;3;0;0;1;0
+67408;16886;2;165;69.0;120;80;1;1;0;0;0;0
+67409;23614;2;164;65.0;180;120;1;1;0;0;1;1
+67410;18530;1;165;63.0;130;90;1;1;0;0;1;0
+67412;16528;2;170;69.0;120;80;1;1;0;0;1;0
+67413;21261;1;152;75.0;120;70;3;3;0;0;1;1
+67416;18953;1;164;93.0;135;80;1;1;0;0;1;1
+67417;21185;2;170;75.0;120;80;1;1;0;0;1;1
+67420;21739;1;165;60.0;110;70;3;3;0;0;1;0
+67421;21105;2;170;71.0;150;90;1;1;1;1;1;1
+67425;20270;1;150;60.0;140;90;1;1;0;0;1;1
+67426;18975;1;165;69.0;120;80;3;3;0;0;1;0
+67427;18236;1;165;72.0;170;100;1;2;0;0;1;1
+67430;22105;2;165;61.0;130;70;2;2;0;0;1;0
+67431;17521;1;160;74.0;90;60;1;1;1;0;0;0
+67432;21937;1;149;57.0;120;80;1;1;0;0;1;1
+67433;21002;1;164;84.0;140;90;2;1;0;0;1;1
+67434;16749;2;165;62.0;120;80;1;1;0;0;1;0
+67435;20448;1;164;80.0;110;70;1;1;0;0;0;0
+67437;21202;1;172;100.0;110;70;1;1;0;0;1;1
+67440;20508;2;166;66.0;130;80;3;3;0;1;0;1
+67441;21024;1;166;73.0;130;90;1;1;0;0;1;0
+67442;18364;1;166;71.0;120;80;1;1;0;0;1;1
+67444;16559;1;160;42.0;100;80;1;1;0;0;1;0
+67445;22678;2;168;53.0;110;70;2;1;1;0;1;0
+67446;18550;2;180;71.0;130;90;1;1;1;1;1;0
+67448;19052;1;164;66.0;110;70;1;1;0;0;1;1
+67453;22622;2;173;103.0;180;100;3;3;0;0;1;0
+67454;18872;1;163;63.0;120;80;3;3;0;0;0;1
+67455;20531;1;153;89.0;130;80;1;1;0;0;1;0
+67456;19496;1;160;70.0;120;80;1;1;0;0;1;0
+67457;15975;1;165;68.0;140;90;2;1;0;0;0;1
+67459;19089;1;174;84.0;130;80;1;1;0;0;1;1
+67460;21648;1;156;70.0;170;90;3;3;0;0;0;1
+67461;15834;1;152;64.0;130;90;1;1;0;0;1;1
+67462;20604;2;165;72.0;120;80;1;1;0;0;1;0
+67463;21450;1;168;72.0;120;90;1;1;0;0;1;0
+67466;18143;1;165;68.0;120;80;1;1;0;0;1;0
+67468;15134;2;168;71.0;110;70;1;1;0;0;1;0
+67469;15300;1;162;74.0;120;80;1;1;0;0;0;0
+67470;14494;1;167;52.0;110;70;2;2;0;0;1;0
+67472;16287;1;170;93.0;100;70;1;1;0;0;1;0
+67473;17468;2;175;85.0;100;70;2;3;0;0;1;0
+67474;21152;2;174;70.0;140;80;1;1;0;0;1;1
+67478;21792;1;159;70.0;190;100;3;1;0;0;1;1
+67479;20974;1;154;66.0;110;80;1;1;0;0;1;0
+67480;18031;1;158;77.0;120;80;1;1;0;1;1;0
+67481;21078;1;172;68.0;140;80;1;1;0;0;1;1
+67482;21109;1;156;71.0;140;90;2;2;0;0;0;1
+67483;21445;1;169;92.0;120;70;1;1;0;0;1;0
+67484;18332;1;155;85.0;140;90;2;2;0;0;1;1
+67486;21708;1;160;58.0;120;80;1;1;0;0;1;0
+67487;20540;1;150;58.0;120;80;1;1;0;0;1;0
+67488;19504;1;151;73.0;90;60;1;1;0;0;1;1
+67489;14771;2;176;83.0;110;80;1;1;0;0;1;0
+67491;15877;2;153;50.0;120;80;1;1;1;0;1;0
+67494;20561;1;170;85.0;130;80;1;1;0;0;0;1
+67495;17008;1;170;74.0;120;80;2;1;0;0;1;1
+67496;21738;1;158;63.0;120;80;1;1;0;0;1;1
+67497;20473;1;159;68.0;120;80;1;1;0;0;0;0
+67499;15114;1;157;71.0;120;80;1;1;0;0;1;0
+67501;21103;2;162;62.0;110;70;1;1;0;0;1;1
+67502;19731;1;160;65.0;14020;90;1;1;0;0;1;0
+67503;23255;2;176;88.0;120;80;2;1;0;0;1;0
+67504;16093;1;168;62.0;120;80;3;3;0;0;1;1
+67506;18416;1;168;65.0;110;70;1;1;0;0;1;0
+67507;22139;1;152;80.0;120;80;1;3;0;0;0;1
+67508;16932;1;165;62.0;110;60;1;1;0;0;1;1
+67510;16081;1;149;67.0;120;80;1;1;0;0;1;0
+67511;22643;2;162;65.0;110;70;1;1;0;0;1;0
+67512;23181;2;175;94.0;150;80;1;1;1;0;1;1
+67513;22616;1;170;69.0;140;80;1;1;0;0;1;1
+67514;16691;2;170;69.0;120;80;1;1;0;0;1;0
+67515;21357;2;168;89.0;170;110;1;1;0;0;1;1
+67516;17361;1;158;71.0;120;90;3;3;0;0;1;0
+67518;22145;1;154;94.0;120;70;3;3;0;0;1;0
+67519;22556;1;159;68.0;140;80;2;1;1;0;0;1
+67520;23312;1;164;84.0;140;90;1;1;0;0;1;1
+67521;22441;2;172;79.0;130;90;2;1;1;1;1;1
+67523;15316;1;163;100.0;135;85;1;1;0;0;1;0
+67526;22640;1;154;67.0;130;100;3;3;0;0;0;1
+67527;22525;1;155;67.0;120;80;3;1;0;0;1;0
+67528;18228;2;160;59.0;120;80;1;1;0;0;1;0
+67529;20583;1;165;102.0;150;90;2;1;0;0;1;1
+67530;18821;2;174;103.0;110;70;2;1;0;0;0;1
+67531;18154;2;168;64.0;120;80;1;1;0;0;1;0
+67532;19671;1;168;70.0;130;90;3;1;0;0;1;1
+67533;18860;2;165;62.0;120;80;1;1;1;0;1;0
+67536;19751;1;149;77.0;120;90;1;1;0;0;1;0
+67537;21790;2;175;120.0;135;83;1;1;0;0;1;1
+67538;23358;2;172;76.0;130;80;2;1;0;0;1;0
+67539;17536;2;171;74.0;125;80;1;1;0;0;1;1
+67540;19666;1;165;66.0;120;80;1;1;0;0;1;0
+67541;20593;1;174;65.0;120;80;1;1;0;0;1;0
+67542;22068;2;166;79.0;130;80;1;1;0;0;0;1
+67543;19664;1;159;78.0;150;1000;1;1;0;0;1;1
+67546;20504;1;152;68.0;100;69;1;1;0;0;0;0
+67547;22827;2;163;95.0;130;90;1;3;0;0;1;0
+67548;19038;2;169;70.0;110;70;1;1;0;0;1;0
+67549;21999;1;169;99.0;130;90;3;2;0;0;0;1
+67550;21876;2;176;92.0;130;80;2;1;0;0;1;1
+67551;14762;2;172;96.0;140;100;1;1;0;0;1;1
+67553;23352;1;153;84.0;130;80;1;1;0;0;1;0
+67555;15477;1;162;74.0;110;80;1;2;0;0;1;0
+67556;19940;1;157;97.0;120;80;1;1;0;0;0;0
+67557;19727;1;162;71.0;150;90;1;1;0;0;1;1
+67558;19216;1;165;68.0;110;70;1;1;0;0;1;1
+67559;21921;1;140;73.0;150;90;2;2;0;0;1;1
+67561;18018;1;141;52.0;140;90;2;1;0;0;1;1
+67564;23393;1;155;75.0;135;90;1;1;0;0;0;1
+67565;23527;1;165;60.0;120;60;1;1;0;0;1;0
+67566;20954;1;158;65.0;160;100;1;1;0;0;1;1
+67567;21174;1;168;62.0;130;79;1;1;0;0;1;1
+67568;21989;1;165;78.0;135;80;2;2;0;0;1;1
+67569;21794;1;156;83.0;160;90;3;3;0;0;0;0
+67570;18716;1;168;71.0;120;80;1;1;0;0;1;0
+67571;15416;1;168;55.0;120;70;1;1;0;0;1;0
+67572;20753;1;155;59.0;12;80;1;1;0;0;1;0
+67573;15813;1;170;72.0;120;80;1;1;0;0;1;0
+67574;21872;1;162;56.0;160;100;3;3;0;0;1;1
+67577;20919;1;166;86.0;125;85;3;1;0;0;1;1
+67579;19582;2;165;89.0;140;100;1;3;0;0;1;1
+67580;23354;1;168;76.0;170;100;1;1;0;0;1;1
+67582;18791;1;165;70.0;130;70;1;1;0;1;1;1
+67583;16889;2;168;70.0;120;80;1;1;0;0;1;1
+67584;18365;1;162;59.0;120;80;1;1;0;0;1;0
+67585;19046;1;168;82.0;140;100;1;1;0;0;1;1
+67586;21350;1;165;68.0;160;70;1;1;0;0;0;1
+67587;22623;1;165;81.0;130;70;1;1;0;0;1;1
+67589;18366;1;173;78.0;120;80;1;1;0;0;1;0
+67590;23289;1;157;54.0;120;80;1;1;0;0;1;1
+67592;18251;1;165;67.0;120;80;1;1;0;0;1;0
+67593;20327;1;159;62.0;130;80;1;1;0;0;1;0
+67595;15515;2;175;74.0;120;80;1;1;0;0;1;0
+67597;16130;1;164;63.0;120;80;1;1;0;0;1;0
+67599;17260;1;169;134.0;130;80;1;1;0;0;1;1
+67600;22560;1;164;69.0;130;80;1;1;0;0;1;0
+67601;15162;1;155;78.0;120;80;1;1;0;0;1;0
+67602;20535;2;177;91.0;150;90;1;1;1;1;1;1
+67606;19684;2;172;73.5;120;80;1;2;1;0;1;0
+67607;21327;2;169;79.0;170;80;1;1;0;0;1;0
+67608;21941;1;169;52.0;120;80;1;1;0;0;1;1
+67610;18105;2;174;72.0;120;70;1;1;0;0;1;0
+67611;22078;1;160;99.0;140;90;3;1;0;0;1;1
+67612;19002;2;170;84.0;120;80;1;1;0;0;1;0
+67614;15082;2;168;59.0;120;80;1;1;0;0;0;0
+67615;17668;2;168;72.0;110;60;3;1;0;0;1;1
+67616;19019;2;178;82.0;120;80;1;1;1;0;1;0
+67617;21876;1;154;80.0;130;90;2;1;0;0;1;1
+67618;18323;2;170;75.0;130;80;1;1;1;0;0;0
+67619;23408;1;156;90.0;150;80;1;2;0;0;1;1
+67620;21094;1;163;95.0;140;80;1;2;0;0;1;1
+67621;19811;1;162;79.0;130;90;1;1;0;0;1;0
+67622;18135;2;175;85.0;120;80;1;1;1;0;0;0
+67623;20435;2;172;84.0;115;80;1;1;0;1;1;0
+67624;22128;1;164;62.0;130;90;1;1;0;0;1;0
+67625;14720;1;169;62.0;120;80;1;1;0;0;1;0
+67626;18161;1;154;60.0;100;70;1;1;0;0;1;0
+67627;19089;1;165;62.0;120;80;1;1;0;0;1;1
+67629;19092;2;165;63.0;130;90;1;1;0;0;1;1
+67630;17236;1;158;63.0;150;90;1;1;0;0;1;1
+67631;23297;1;75;75.0;120;80;1;1;0;0;1;0
+67632;20545;1;176;74.0;120;80;1;1;0;0;0;1
+67633;20248;1;156;68.0;120;80;1;1;0;0;1;0
+67635;18855;1;165;90.0;130;90;1;1;0;0;0;1
+67638;19769;2;169;71.0;120;80;1;1;1;0;1;0
+67639;16125;1;159;63.0;120;80;1;1;0;0;1;1
+67640;19694;2;170;97.0;130;80;1;1;0;0;1;0
+67642;21139;1;158;91.0;150;90;3;2;1;0;1;1
+67645;15952;2;179;79.0;120;80;1;1;0;0;1;0
+67647;16014;2;168;74.0;120;80;1;1;0;0;1;0
+67648;23474;1;162;80.0;150;80;1;1;0;0;1;1
+67649;19657;1;157;68.0;120;80;1;1;0;0;0;0
+67650;19713;1;180;78.0;140;90;1;1;0;0;0;1
+67651;20337;1;160;70.0;130;80;1;2;0;0;0;0
+67652;19995;2;164;62.0;130;70;1;1;0;0;1;0
+67653;15955;2;170;72.0;120;80;1;1;1;0;0;0
+67654;19873;1;164;83.0;160;100;1;1;0;0;1;1
+67655;20331;1;159;94.0;120;80;2;1;0;0;1;1
+67656;23236;2;163;76.0;130;80;1;1;1;1;1;0
+67657;19462;1;160;100.0;120;80;1;1;0;0;1;1
+67659;23241;2;160;90.0;100;80;3;1;0;0;1;0
+67661;14369;1;168;61.0;100;80;1;1;0;0;1;0
+67663;19126;2;165;65.0;120;80;1;1;0;0;1;0
+67665;20286;2;178;82.0;120;80;1;1;0;0;1;0
+67668;22708;1;162;105.0;120;80;1;1;0;0;1;1
+67669;21862;1;164;71.0;140;90;1;1;0;0;0;1
+67671;17369;1;164;66.0;120;80;1;1;0;0;1;0
+67672;18344;1;169;138.0;140;90;1;1;0;0;1;1
+67673;19069;1;165;83.0;110;70;1;1;0;0;1;0
+67675;21149;1;160;60.0;120;80;1;1;0;0;1;1
+67676;17632;2;168;66.0;120;80;1;1;0;0;1;1
+67677;16708;2;176;76.0;120;80;1;1;0;0;1;0
+67678;22508;2;170;68.0;100;60;1;1;0;0;1;0
+67680;21850;1;158;63.0;120;80;1;1;0;0;0;1
+67681;23096;1;170;96.0;150;90;1;1;0;0;1;1
+67682;18249;2;163;85.0;160;100;3;3;1;0;1;1
+67683;15091;1;161;73.0;110;90;1;1;0;0;1;0
+67684;19736;2;178;74.0;120;80;1;1;0;0;1;0
+67685;21365;1;155;65.0;120;80;1;1;0;0;1;0
+67688;21920;2;165;55.0;120;80;1;1;0;0;1;1
+67689;14835;2;185;83.0;160;100;2;1;0;0;1;1
+67690;22541;1;165;73.0;140;90;3;2;0;0;1;1
+67692;15913;1;158;57.0;120;80;1;1;0;0;1;0
+67694;15122;1;162;65.0;120;80;1;1;0;0;0;1
+67695;23500;1;165;107.0;130;80;1;2;0;0;1;0
+67696;16949;2;167;88.0;120;80;3;1;0;0;1;0
+67697;19575;2;165;83.0;130;80;1;1;0;0;1;1
+67699;15344;1;156;60.0;110;70;1;1;0;0;1;0
+67700;18160;2;178;90.0;140;90;1;1;0;0;1;1
+67701;18093;2;178;75.0;120;80;1;1;0;0;1;1
+67702;22806;1;153;53.0;130;90;1;1;0;0;0;0
+67703;17476;1;167;72.0;150;90;1;1;0;0;1;1
+67705;18491;1;165;65.0;120;80;1;1;0;0;1;0
+67706;16041;1;153;63.0;100;80;2;1;0;0;1;0
+67707;23544;2;174;68.0;110;70;1;1;0;0;1;0
+67709;20898;1;174;78.0;80;60;1;1;0;0;0;0
+67712;21676;1;165;70.0;130;80;1;1;0;0;1;1
+67713;20267;1;163;63.0;120;80;1;1;0;0;1;0
+67714;14662;1;163;86.0;120;80;1;1;0;0;1;0
+67715;20974;2;166;75.0;90;60;1;1;0;0;1;0
+67716;17315;2;172;93.0;140;90;2;1;1;0;1;1
+67717;18022;1;174;84.0;100;60;1;1;0;0;1;1
+67718;23555;1;159;53.0;140;90;1;1;0;0;1;0
+67719;19072;1;164;82.0;130;80;1;1;0;0;1;0
+67720;19529;1;164;76.0;140;90;1;2;0;0;1;1
+67721;17518;2;170;70.0;120;80;1;1;0;0;1;1
+67722;19979;2;175;114.0;140;90;1;1;1;0;1;1
+67723;19045;1;178;85.0;120;80;1;1;0;0;0;1
+67724;19025;1;161;103.0;140;95;2;1;0;0;1;1
+67726;18316;1;173;72.0;160;100;1;1;0;0;1;1
+67727;18456;2;180;68.0;160;70;3;3;0;0;1;0
+67728;16742;1;157;75.0;100;80;1;1;0;0;1;0
+67730;22434;2;169;85.0;150;90;1;1;0;0;1;1
+67731;21086;1;164;61.0;100;70;2;1;0;0;1;0
+67732;20584;2;160;74.0;120;80;2;2;0;0;1;0
+67733;22675;2;170;70.0;140;90;3;1;0;0;1;1
+67734;21312;2;167;69.0;130;80;3;3;0;0;0;1
+67736;18255;2;166;65.0;120;80;3;3;0;0;1;0
+67738;19091;1;155;41.0;110;70;1;1;0;0;1;0
+67739;22464;1;156;74.0;160;90;1;2;0;0;1;1
+67740;20368;1;163;68.0;110;70;1;1;0;0;1;0
+67741;21826;2;170;79.0;140;90;3;3;1;0;1;1
+67742;20302;2;161;70.0;150;90;1;1;1;0;1;1
+67744;20282;1;165;65.0;135;80;3;1;0;0;1;1
+67745;23236;2;176;94.0;160;110;3;3;0;1;1;1
+67746;18160;1;161;68.0;120;70;1;1;0;0;1;0
+67747;19814;1;156;62.0;120;70;1;1;0;0;0;0
+67748;21958;1;156;52.0;130;80;1;1;0;0;0;0
+67749;14313;1;165;110.0;170;106;2;1;0;0;1;1
+67750;15464;1;162;68.0;110;80;1;1;0;0;1;0
+67752;20545;1;167;80.0;130;90;3;3;0;0;1;1
+67753;18148;2;176;107.0;160;80;2;2;0;1;1;1
+67754;23145;1;153;60.0;140;90;3;1;0;0;1;1
+67756;21312;1;168;72.0;150;90;1;2;0;0;0;1
+67757;17391;2;170;70.0;120;80;1;1;0;0;1;0
+67758;19990;2;169;80.0;110;70;1;1;0;0;1;1
+67759;15951;1;155;80.0;120;80;1;1;0;0;1;1
+67760;21138;1;154;80.0;160;90;1;1;0;0;1;1
+67762;22616;2;174;68.0;130;80;1;1;0;0;0;0
+67763;15983;2;173;74.0;110;80;3;1;0;0;0;1
+67764;20443;1;167;67.0;110;70;1;1;0;0;0;1
+67766;19105;2;165;65.0;120;80;1;1;0;0;1;0
+67767;21388;1;156;98.0;150;90;3;1;0;0;1;1
+67768;21937;1;158;63.0;120;80;1;1;0;0;1;0
+67771;16589;2;169;58.0;120;80;1;1;1;0;1;0
+67772;20623;1;165;63.0;120;80;1;1;0;0;1;0
+67773;18347;2;162;51.0;110;70;1;1;0;0;1;0
+67774;22485;1;156;81.0;100;60;1;1;0;0;1;1
+67775;19565;1;160;81.0;140;90;1;1;0;0;1;1
+67778;15106;1;168;118.0;130;80;1;1;0;0;1;0
+67779;22031;2;170;91.0;140;90;2;2;0;0;0;1
+67781;21201;1;160;86.0;140;70;1;1;0;0;1;0
+67782;18260;1;150;61.0;120;80;1;1;0;0;1;0
+67783;18265;1;160;67.0;120;70;2;2;0;0;1;0
+67786;23143;1;156;75.0;140;80;3;1;0;0;1;1
+67787;22622;1;159;58.0;120;80;2;1;0;0;1;1
+67788;19047;1;162;71.3;110;70;1;1;0;0;0;1
+67789;22726;1;164;89.0;120;80;1;3;0;0;1;0
+67790;18887;1;165;75.0;120;80;3;3;0;0;0;0
+67791;20522;1;167;78.0;120;80;1;1;0;0;1;0
+67792;15489;2;186;89.0;120;80;1;1;0;0;0;0
+67794;18225;1;160;67.0;110;90;1;1;1;1;1;0
+67796;16005;1;163;72.0;130;90;3;1;0;0;1;1
+67798;20720;1;158;70.0;120;80;1;1;0;0;1;1
+67801;18219;1;172;68.0;120;80;1;1;0;0;1;0
+67802;20330;2;163;69.0;120;80;2;1;0;0;1;0
+67803;19714;2;170;65.0;110;80;1;1;0;0;0;0
+67805;23416;1;162;71.0;130;80;1;1;0;0;1;0
+67807;17587;2;167;69.0;150;90;1;1;0;0;1;0
+67808;17319;1;159;67.0;120;80;1;1;0;0;1;1
+67810;17447;1;150;59.0;140;90;2;3;0;0;1;1
+67812;15332;2;170;60.0;110;70;2;2;1;0;1;0
+67813;19141;1;161;61.0;106;70;3;3;0;0;1;0
+67814;23162;1;159;64.0;14;100;1;1;0;0;1;1
+67816;18325;1;165;98.0;120;80;1;1;0;0;1;1
+67817;17657;1;170;80.0;130;80;1;1;0;0;0;1
+67818;19640;2;166;89.0;140;90;1;1;1;0;1;1
+67822;16000;1;170;80.0;130;90;3;1;0;0;1;1
+67823;19760;1;159;59.0;140;90;1;1;0;0;0;1
+67824;22418;1;146;53.0;114;75;1;1;0;0;1;1
+67825;22599;1;165;72.0;120;80;1;1;0;0;1;0
+67826;16725;1;150;69.0;120;70;1;1;0;1;1;0
+67827;19559;1;161;80.0;110;70;1;1;0;0;1;0
+67828;16045;1;152;76.0;110;80;1;1;0;0;1;1
+67829;19067;2;164;69.0;120;80;2;1;1;0;1;1
+67830;20305;1;150;84.0;120;80;1;1;0;0;0;1
+67831;17418;2;172;68.0;120;80;1;1;0;0;1;1
+67833;18897;1;164;65.0;120;80;1;1;0;0;1;0
+67835;19777;1;160;60.0;120;80;1;1;0;0;1;0
+67836;21243;2;176;90.0;140;90;3;1;0;0;1;1
+67837;21184;1;160;80.0;140;90;2;1;0;0;1;1
+67838;19092;1;172;79.0;120;80;1;1;0;0;1;0
+67839;17979;1;161;69.0;120;80;1;1;0;0;1;0
+67840;16882;2;164;86.0;140;90;1;1;0;0;1;1
+67841;20005;2;168;86.0;150;90;2;1;0;0;1;0
+67842;16803;1;167;58.0;120;80;1;1;0;0;0;0
+67844;14417;1;160;53.0;100;60;1;1;0;0;1;0
+67845;21793;1;150;90.0;150;90;2;1;0;0;1;0
+67846;20628;1;164;65.0;110;70;1;1;0;0;1;0
+67847;16094;1;151;79.0;110;70;1;1;0;0;1;0
+67848;17329;1;164;80.0;130;90;3;1;0;0;1;1
+67849;16794;1;171;80.0;120;80;2;1;0;0;0;1
+67850;23432;1;162;110.0;130;90;1;1;0;0;1;1
+67853;15126;1;152;44.0;100;60;1;1;0;0;1;0
+67854;17485;2;173;68.0;90;60;1;2;0;0;0;1
+67857;23329;1;163;110.0;140;90;1;1;0;0;0;1
+67858;20345;1;168;61.0;110;70;2;2;0;0;0;0
+67859;21698;1;154;98.0;150;95;1;1;0;0;1;1
+67860;15903;1;164;56.0;170;110;1;1;0;0;1;1
+67865;15341;2;182;93.0;150;100;1;1;0;0;1;1
+67866;21942;2;172;86.0;140;90;3;1;0;1;1;1
+67868;17481;2;164;82.0;110;60;2;1;1;0;1;0
+67869;15292;1;162;68.0;120;80;1;1;0;0;1;0
+67870;18784;2;167;70.0;150;100;1;1;0;0;1;1
+67871;18236;1;154;72.0;140;90;3;3;0;0;1;1
+67872;21318;1;158;74.0;120;80;1;1;0;1;1;1
+67873;22725;1;157;63.0;160;80;1;1;0;0;1;1
+67874;14769;2;169;76.0;110;80;1;1;0;0;1;0
+67875;21959;1;164;95.0;140;70;2;1;0;0;1;1
+67877;19057;1;157;89.0;180;120;3;2;0;0;1;0
+67878;15186;1;170;82.0;130;80;1;1;0;0;1;1
+67879;23246;2;164;84.0;130;80;1;1;0;0;1;1
+67880;23464;2;161;71.0;120;80;1;3;0;0;1;0
+67881;20453;1;170;65.0;110;70;1;1;0;0;1;1
+67882;17408;1;175;75.0;120;80;1;1;0;0;1;0
+67883;18717;1;154;65.0;140;90;3;1;0;0;0;1
+67884;20984;1;161;93.0;120;80;2;1;0;0;0;0
+67885;22848;1;159;73.0;160;1000;1;1;0;0;1;1
+67890;23443;2;166;71.0;120;80;1;1;0;0;1;1
+67891;18088;1;168;88.0;150;90;1;1;0;0;1;1
+67893;18429;1;164;87.0;160;100;1;1;0;0;1;1
+67894;15891;1;150;91.0;130;80;1;1;0;0;1;1
+67896;14495;1;153;57.0;120;70;1;1;0;0;1;0
+67898;16237;2;165;75.0;120;80;1;1;0;0;1;0
+67899;23444;1;151;61.0;150;90;1;1;0;0;0;1
+67900;18885;2;168;94.0;120;90;2;1;0;0;1;0
+67901;21040;1;145;60.0;120;80;1;1;0;0;1;1
+67902;17612;2;170;86.0;120;70;1;1;1;0;1;0
+67903;23452;1;164;88.0;120;80;1;1;0;0;1;0
+67904;14595;1;176;63.0;110;70;1;1;0;1;1;0
+67905;16856;1;155;69.0;140;90;1;2;0;0;0;1
+67906;16724;2;180;84.0;130;70;3;1;1;0;1;0
+67907;21321;1;154;76.0;100;60;3;1;0;0;0;0
+67908;21771;1;168;78.0;140;90;1;1;0;0;1;1
+67910;18765;1;167;93.0;140;90;1;1;0;1;0;1
+67911;18064;2;174;100.0;150;98;1;1;0;0;0;1
+67912;23446;1;152;45.0;110;70;2;1;0;0;1;0
+67913;23212;1;152;60.0;170;100;2;1;0;0;0;1
+67915;19573;1;166;78.0;130;80;1;1;0;0;1;1
+67916;21071;1;155;80.0;120;80;2;1;0;0;1;1
+67919;20617;1;160;55.0;120;80;1;1;0;0;1;1
+67920;18336;1;153;110.0;120;79;2;1;0;0;1;0
+67921;21262;1;158;79.0;125;80;1;1;0;0;1;0
+67922;22440;1;168;79.0;140;90;2;3;0;0;1;1
+67923;15956;2;167;46.0;110;70;1;1;0;0;0;0
+67924;20320;2;176;82.0;150;100;1;1;1;1;1;1
+67926;19119;2;164;72.0;170;100;3;3;1;1;1;1
+67927;19809;1;165;70.0;140;80;1;1;0;0;1;0
+67928;15309;1;155;88.0;100;60;2;1;0;1;1;1
+67929;20468;1;170;70.0;120;80;1;1;0;0;1;0
+67932;18753;1;165;65.0;160;90;2;1;0;0;1;1
+67934;21217;1;163;72.0;140;90;1;1;0;0;1;1
+67935;23160;1;158;83.0;130;90;3;1;0;1;1;1
+67936;22111;1;165;68.0;160;90;1;1;0;0;1;1
+67937;19740;1;159;68.0;120;80;1;1;0;0;1;0
+67938;14684;1;163;72.0;120;80;1;1;0;0;0;0
+67939;20438;1;162;60.0;150;100;1;1;0;0;0;1
+67940;19002;1;170;86.0;140;90;1;1;0;0;1;1
+67943;18780;1;151;69.0;100;70;1;1;0;0;1;0
+67946;18263;1;168;59.0;110;80;1;1;0;0;0;0
+67948;21053;1;161;71.0;130;90;3;1;0;0;1;1
+67949;18397;2;175;72.0;120;80;1;1;0;0;1;0
+67950;19278;1;165;63.0;110;70;1;1;0;0;1;0
+67951;21176;2;160;66.0;160;80;2;1;0;0;0;1
+67952;16946;1;160;60.0;140;90;1;1;0;0;1;1
+67954;18099;1;161;74.0;120;80;1;1;0;0;1;0
+67956;18931;2;176;98.0;130;90;1;2;0;0;1;1
+67957;18101;1;165;63.0;110;70;1;1;0;0;1;0
+67958;18890;1;158;71.0;100;70;1;1;0;0;1;0
+67959;21263;1;160;77.0;115;70;1;1;0;0;1;0
+67960;19722;1;158;59.0;140;90;1;1;0;0;1;1
+67961;20578;1;169;72.0;120;80;1;1;0;0;1;0
+67964;21169;1;160;67.0;120;80;1;1;0;0;1;0
+67966;23205;2;168;82.0;130;70;1;2;0;0;1;1
+67968;19501;2;170;74.0;110;70;1;1;0;0;0;0
+67970;22075;1;157;95.0;110;80;1;1;0;0;1;0
+67971;18253;1;153;88.0;120;80;1;2;0;0;1;0
+67972;21219;2;170;68.0;140;90;3;3;0;0;1;1
+67973;23445;1;168;65.0;130;80;1;1;0;0;1;1
+67974;14610;1;155;79.0;155;79;2;2;0;0;0;1
+67975;20494;2;168;90.0;160;100;1;1;0;0;1;1
+67976;21198;1;160;58.0;120;80;3;3;0;0;1;0
+67978;22004;1;160;94.0;130;80;1;1;0;0;1;0
+67979;21360;1;156;85.0;140;70;1;1;0;0;0;1
+67980;19101;2;176;76.0;120;80;1;1;0;0;1;1
+67981;15565;2;178;75.0;130;90;1;1;0;0;1;1
+67982;22028;2;182;74.0;110;70;1;1;0;1;1;0
+67984;21975;1;161;65.0;120;80;1;1;0;0;1;0
+67985;20299;1;158;87.0;110;70;1;1;0;0;1;0
+67988;18935;1;167;89.0;140;90;1;1;0;0;0;1
+67990;23300;2;170;65.0;90;140;1;1;0;0;1;1
+67991;14526;1;160;81.0;120;80;3;1;0;0;1;1
+67992;22685;2;178;79.0;120;80;1;1;0;0;1;1
+67996;22528;2;168;59.0;112;77;1;1;0;1;1;0
+67997;21896;2;165;65.0;120;80;1;1;0;0;1;1
+67998;14546;1;158;79.0;146;80;1;1;0;0;1;1
+67999;19877;2;172;95.0;130;80;2;1;0;0;1;1
+68000;18480;1;173;75.0;110;70;1;1;0;0;1;0
+68003;19772;1;162;94.0;110;80;2;3;0;0;1;0
+68004;22705;1;163;87.0;120;70;1;1;0;0;1;0
+68005;18501;2;178;76.0;180;80;2;1;0;0;0;1
+68006;21819;2;177;87.0;150;80;1;1;0;0;0;1
+68007;23240;1;149;72.0;130;80;3;3;0;0;1;1
+68008;21938;1;158;75.0;120;80;1;1;0;0;0;1
+68009;18738;1;164;74.0;120;80;1;1;0;0;1;0
+68010;18789;2;172;83.0;120;80;2;1;0;0;1;1
+68011;14464;1;169;77.0;120;80;2;1;0;0;1;1
+68012;14604;1;159;69.0;100;60;1;1;0;0;1;0
+68013;16569;1;152;74.0;120;80;1;1;0;0;1;1
+68014;21701;1;154;64.0;120;80;1;1;0;0;1;0
+68017;20426;1;158;56.0;110;80;1;1;0;0;1;1
+68018;18432;1;164;70.0;110;80;1;1;0;0;1;0
+68020;16586;1;165;47.0;120;80;1;1;0;0;1;0
+68021;18289;1;170;63.0;120;80;1;1;0;0;1;1
+68022;21113;1;156;83.0;120;80;1;1;0;0;1;1
+68023;21283;1;163;87.0;140;90;2;1;0;1;1;1
+68024;15170;1;162;91.0;140;90;2;1;0;0;1;1
+68025;19809;1;168;70.0;120;80;1;2;0;0;0;1
+68028;19882;1;161;85.0;100;80;1;1;0;0;1;1
+68029;20293;2;167;60.0;130;80;1;1;0;0;1;0
+68030;23443;1;161;63.0;130;80;3;3;0;0;1;1
+68031;18896;2;171;85.0;160;90;1;2;0;0;1;1
+68032;18136;1;166;76.0;110;70;1;1;0;0;1;0
+68034;18366;1;165;92.0;120;79;1;1;0;0;1;0
+68035;23173;1;159;45.0;140;90;3;3;0;0;1;1
+68036;20648;1;168;74.0;120;80;1;1;0;0;1;0
+68037;18992;1;145;65.0;110;80;1;1;0;0;1;0
+68038;19798;1;156;60.0;150;90;1;1;0;0;1;1
+68039;21288;1;150;50.0;120;70;1;1;0;0;1;0
+68040;17295;1;150;78.0;100;70;1;1;0;0;1;0
+68041;20931;1;160;82.0;140;90;1;1;0;0;1;1
+68044;16823;2;176;82.0;120;80;2;1;1;1;1;0
+68046;16676;1;163;65.0;120;80;1;1;0;0;1;0
+68047;20340;1;162;53.0;120;80;1;1;0;0;1;0
+68048;14655;2;177;75.0;120;80;1;1;1;1;1;0
+68049;19118;1;157;88.0;140;90;1;1;0;0;1;0
+68050;21598;2;174;59.0;160;100;2;3;0;0;1;1
+68051;19757;2;177;82.0;120;80;1;2;1;1;1;0
+68052;21813;1;160;78.0;140;90;1;1;0;0;1;1
+68055;22074;1;166;65.0;120;80;1;1;0;0;0;1
+68056;21073;1;165;64.0;140;80;1;1;0;0;1;1
+68057;21142;1;163;63.0;120;80;3;1;0;0;0;1
+68058;21775;1;155;64.0;115;75;2;2;0;0;1;0
+68059;17665;1;150;43.0;110;80;2;1;0;0;1;0
+68060;22785;1;167;53.0;120;80;2;1;0;0;1;1
+68061;15551;1;153;56.2;120;80;1;1;0;0;1;0
+68062;19721;1;165;65.0;120;80;1;1;0;0;0;0
+68063;21274;2;169;66.0;140;90;3;1;0;0;1;1
+68064;19584;1;162;58.0;90;60;1;1;0;0;0;0
+68065;20360;1;152;65.0;120;80;1;1;0;0;0;1
+68067;14690;1;167;56.0;110;70;1;1;0;0;1;0
+68068;15195;1;169;69.0;130;90;3;1;0;0;1;1
+68069;16686;2;172;79.0;180;100;1;1;0;0;1;1
+68070;18201;2;169;72.0;120;80;1;1;0;0;1;1
+68071;20286;1;153;98.0;140;90;3;1;0;0;1;1
+68072;17427;1;170;70.0;120;80;2;2;0;0;0;0
+68073;17456;2;174;100.0;160;95;2;1;0;0;1;1
+68074;17346;1;168;75.0;150;80;1;1;0;0;1;1
+68075;21070;1;157;64.0;120;80;1;1;0;0;1;0
+68077;16054;2;176;85.0;120;80;1;2;1;0;0;0
+68078;22616;1;156;69.0;120;80;1;1;0;0;1;1
+68079;17476;1;165;72.0;120;80;1;1;0;0;1;0
+68080;21692;2;169;107.0;128;81;1;1;0;0;0;0
+68082;23588;1;164;69.0;120;70;1;1;0;0;1;0
+68084;21099;2;175;68.0;120;80;1;1;0;0;1;0
+68085;17609;1;168;84.0;130;70;2;2;0;0;1;0
+68086;20409;1;162;78.0;130;80;1;1;0;0;0;0
+68087;20273;2;151;74.0;120;80;1;1;1;1;1;1
+68088;20571;1;156;88.0;120;80;1;1;0;0;0;0
+68089;19757;1;154;64.0;130;80;2;1;0;0;1;0
+68090;15226;1;166;66.0;120;80;3;1;0;0;0;1
+68091;19686;2;169;102.0;150;100;2;1;0;1;1;1
+68092;20309;1;167;66.0;120;80;1;1;0;0;1;0
+68093;21092;2;163;85.0;120;80;2;3;0;0;1;1
+68096;20442;2;184;96.0;12;80;1;1;0;0;1;1
+68098;21172;1;157;87.0;130;80;3;3;0;0;0;1
+68100;16838;2;173;84.0;120;70;1;1;0;0;1;0
+68101;20296;1;155;59.0;120;80;1;1;0;0;1;1
+68103;16792;2;172;100.0;120;80;1;1;1;0;1;0
+68104;22540;2;164;86.0;160;90;1;1;0;0;1;1
+68105;15955;2;173;85.0;130;80;1;1;0;1;1;0
+68107;22901;1;157;80.0;150;90;3;1;0;0;1;1
+68110;19258;1;160;69.0;140;90;1;1;0;0;1;1
+68113;21235;1;152;73.0;120;60;1;1;0;0;1;0
+68116;19003;1;166;80.0;160;1000;2;2;0;0;1;1
+68117;20248;1;151;78.0;120;90;3;3;0;0;1;1
+68118;22685;1;169;90.0;130;90;3;1;0;0;0;1
+68119;17255;1;152;48.0;140;100;2;1;0;0;1;1
+68120;19490;2;174;72.0;110;80;1;1;0;0;1;0
+68121;21742;1;156;100.0;140;10;1;1;0;0;1;0
+68122;21339;1;175;80.0;120;80;1;1;0;0;1;0
+68123;19130;1;156;82.0;120;80;1;1;0;0;1;1
+68128;21132;2;176;65.0;120;80;1;1;0;0;0;0
+68130;19699;1;156;58.0;120;80;3;1;0;0;1;1
+68131;22037;2;163;70.0;120;80;1;1;0;0;1;0
+68132;19202;1;157;65.0;140;90;3;1;0;0;0;1
+68133;18870;1;156;80.0;160;90;1;1;0;0;1;1
+68134;19640;2;180;72.0;130;80;1;1;0;0;1;1
+68135;23355;1;152;83.0;162;94;1;2;0;0;0;0
+68136;18131;1;160;89.0;140;90;1;1;0;0;1;1
+68138;20476;1;167;59.0;130;80;1;1;0;0;0;0
+68141;22869;1;150;80.0;140;90;3;1;0;0;1;1
+68142;19598;1;157;49.0;130;80;1;1;0;0;1;1
+68143;20536;2;176;128.0;120;80;3;3;0;0;1;0
+68146;23493;1;155;70.0;155;90;1;3;0;0;1;1
+68147;20677;2;170;71.0;120;90;1;1;1;1;1;1
+68148;23224;2;167;67.0;130;90;1;1;1;0;1;1
+68150;19746;2;168;67.0;110;92;1;1;0;0;1;0
+68151;17674;1;155;73.0;130;90;1;1;0;0;1;1
+68152;21863;2;167;98.0;150;100;3;3;1;0;1;1
+68154;20439;2;172;91.0;130;80;3;1;0;0;0;1
+68156;18979;1;165;65.0;120;80;1;1;0;0;0;0
+68157;15096;2;175;96.0;120;80;1;1;0;0;1;0
+68158;16022;2;174;81.0;120;80;1;1;0;0;1;0
+68159;17687;2;170;67.0;100;60;1;1;0;1;1;1
+68161;22740;1;162;84.0;150;89;1;1;0;0;1;1
+68162;15435;2;172;91.0;120;80;2;1;0;0;1;1
+68163;20585;1;165;97.0;140;80;1;1;0;0;1;1
+68164;19138;2;161;76.0;150;90;1;1;0;0;1;1
+68167;21013;1;158;90.0;140;90;3;1;0;0;1;1
+68168;18569;1;151;67.0;120;80;1;1;0;0;1;0
+68169;15230;1;158;88.0;130;90;3;1;0;0;1;1
+68170;21866;1;168;70.0;120;80;1;1;0;0;1;1
+68171;18401;1;151;42.0;110;70;2;1;0;0;1;1
+68172;19516;2;185;103.0;120;80;1;1;1;0;1;1
+68174;16915;2;164;65.0;120;80;1;1;0;0;1;0
+68175;21209;1;159;74.0;110;90;2;1;0;0;1;0
+68176;23468;2;167;95.0;150;1000;1;2;0;0;1;0
+68177;19888;2;169;69.0;120;80;1;1;0;0;1;1
+68179;16907;1;150;51.0;120;80;1;1;0;0;1;0
+68180;18355;1;160;50.0;100;70;1;1;0;0;0;0
+68181;18408;1;158;82.0;130;90;1;1;0;0;1;0
+68184;23505;1;156;80.0;130;80;1;1;0;0;1;1
+68185;22102;1;162;82.0;130;90;3;1;0;0;1;0
+68186;18320;1;158;52.0;90;60;2;1;0;0;1;0
+68189;16241;1;165;63.0;110;60;1;1;0;0;1;0
+68191;19710;1;162;70.0;130;80;1;1;0;0;1;0
+68192;23448;1;158;95.0;150;90;3;1;0;0;0;1
+68195;22375;2;170;105.0;140;80;1;1;0;0;1;1
+68196;18871;1;160;60.0;100;60;1;1;0;0;1;0
+68197;20409;1;167;63.0;120;80;1;1;0;0;1;1
+68201;14453;1;165;62.0;120;80;1;1;0;0;1;0
+68202;18390;1;168;64.0;130;60;2;1;0;0;1;0
+68203;20479;1;162;90.0;120;80;1;1;0;0;1;1
+68204;22459;2;170;68.0;110;70;1;3;0;0;1;1
+68205;22040;1;150;54.0;120;70;1;1;0;0;1;0
+68206;18236;1;158;58.0;100;80;1;1;0;0;1;0
+68207;15791;1;159;51.0;13;90;3;1;0;0;0;1
+68209;20298;1;157;67.0;155;95;1;1;0;0;1;1
+68210;19634;2;167;81.0;170;110;1;1;0;0;1;1
+68211;21511;2;170;75.0;130;80;1;1;0;0;0;0
+68212;21931;1;165;65.0;130;80;1;1;0;0;1;0
+68213;21229;1;165;65.0;120;80;1;1;0;0;0;0
+68216;21278;1;165;65.0;120;80;1;1;0;0;1;1
+68218;14709;2;167;79.0;120;80;2;1;1;0;0;0
+68219;18149;1;156;70.0;90;65;1;1;0;1;1;0
+68221;20527;1;155;82.0;130;90;1;1;0;0;1;1
+68222;16794;1;157;48.0;120;80;1;1;0;0;1;0
+68223;21802;2;176;69.0;90;60;1;1;1;1;1;0
+68224;18914;2;167;63.0;120;80;2;1;0;0;1;0
+68226;23067;1;176;64.0;130;80;2;1;0;0;0;0
+68228;16697;1;159;50.0;100;60;1;1;0;0;1;0
+68230;22674;2;160;59.0;160;100;1;1;0;0;0;1
+68231;21387;1;160;65.0;120;80;3;1;0;0;1;1
+68233;21128;2;166;50.0;120;80;1;1;0;0;1;1
+68235;20305;1;148;73.0;140;90;3;1;0;0;1;1
+68236;18211;1;162;70.0;110;70;1;1;0;0;1;1
+68239;20175;2;183;107.0;120;80;2;3;1;1;1;0
+68242;18122;2;175;80.0;120;80;1;1;0;0;1;0
+68243;21089;2;165;123.0;140;80;1;2;0;1;1;0
+68244;20544;1;154;74.0;160;80;1;1;0;0;1;0
+68246;19392;1;164;85.0;127;90;2;2;1;0;0;0
+68247;18802;2;173;76.0;120;80;2;1;1;1;1;0
+68251;21192;1;158;77.0;110;70;1;1;0;0;1;0
+68253;17601;2;168;67.0;120;80;1;3;1;1;1;0
+68255;21841;1;156;115.0;130;80;3;1;0;0;1;0
+68258;20193;1;156;75.0;120;80;1;1;0;0;1;0
+68260;14728;1;160;55.0;140;90;1;1;0;0;1;1
+68261;21859;1;158;56.0;160;90;3;3;0;0;0;1
+68266;19135;2;170;72.0;140;90;2;1;1;0;1;1
+68269;18154;1;155;56.0;130;80;1;1;0;0;1;0
+68270;17456;1;170;71.0;120;80;1;1;0;0;1;0
+68272;18058;2;173;80.0;160;110;1;1;1;0;1;1
+68273;15302;1;168;65.0;120;60;1;1;0;0;0;0
+68274;20288;2;176;71.0;130;90;1;3;0;0;1;1
+68275;17552;1;153;56.0;100;60;1;1;0;0;1;0
+68276;15344;2;170;72.0;120;80;1;1;1;1;1;0
+68277;22643;1;169;49.0;100;60;1;1;0;0;0;0
+68278;22361;1;155;78.0;120;80;2;3;0;0;1;0
+68280;21327;1;167;72.0;130;90;1;1;0;0;1;0
+68281;23063;1;155;69.0;160;90;3;1;0;0;1;1
+68283;14901;2;176;73.0;110;80;1;1;1;0;1;0
+68284;21835;1;165;83.0;130;80;3;1;0;0;1;1
+68286;14480;2;174;65.0;120;80;1;1;1;1;1;1
+68287;20514;1;162;89.0;130;80;2;2;0;0;1;1
+68288;20644;1;160;64.0;125;80;1;1;0;0;1;0
+68290;14682;1;150;97.0;120;80;3;1;0;0;0;1
+68291;22837;1;158;60.0;140;90;1;1;0;0;1;1
+68292;23167;1;156;66.0;150;100;2;3;0;0;1;0
+68295;21401;1;165;78.0;140;90;1;1;0;0;1;1
+68296;17419;1;162;76.0;120;80;2;1;0;0;1;0
+68298;18903;1;165;59.0;120;80;1;1;0;0;0;0
+68299;14709;1;163;86.0;120;80;1;1;0;0;1;0
+68300;20352;1;159;75.0;100;60;3;1;0;0;1;1
+68302;23251;1;164;77.0;125;80;2;3;0;0;1;0
+68303;23441;2;180;101.0;160;100;3;3;0;0;1;1
+68304;16071;1;160;55.0;90;60;1;1;0;0;1;0
+68306;20519;2;171;67.0;110;80;1;1;0;0;1;0
+68308;19576;2;176;97.0;160;100;2;2;0;0;1;1
+68309;18987;2;170;69.0;120;80;1;3;0;0;1;0
+68310;15767;2;165;70.0;140;90;1;1;0;0;1;0
+68311;19741;2;185;79.0;130;90;1;1;0;0;1;0
+68312;16547;1;161;93.0;130;80;1;1;0;0;1;1
+68313;16328;1;159;58.0;100;70;1;1;0;0;1;0
+68314;20252;1;166;82.0;130;90;1;1;0;0;1;1
+68315;20539;1;156;75.0;160;90;3;3;0;0;1;1
+68317;18057;2;173;73.0;90;60;1;1;1;0;0;0
+68319;20271;1;152;65.0;120;80;1;2;0;0;0;0
+68320;17460;1;162;72.0;120;70;1;1;0;0;1;0
+68323;18329;1;166;78.2;120;80;1;1;0;0;1;0
+68325;22105;1;158;62.0;130;80;1;1;0;0;1;1
+68326;22674;2;169;85.0;160;90;1;1;0;0;1;0
+68328;16163;1;152;53.0;110;70;1;1;0;0;0;0
+68331;19732;1;160;75.0;110;69;1;1;0;0;1;0
+68332;23396;1;156;65.0;160;90;1;2;0;0;1;1
+68333;19615;1;169;72.0;120;80;1;1;0;0;1;0
+68334;23201;1;165;68.0;120;80;1;1;0;0;1;1
+68335;16083;1;161;59.0;110;80;1;1;0;0;1;0
+68336;20400;1;168;71.0;120;80;1;1;0;0;0;0
+68337;23309;1;154;96.0;150;80;2;1;0;0;1;1
+68338;19122;1;163;68.0;130;80;1;1;0;0;1;1
+68339;20887;1;170;78.0;120;80;1;1;0;0;0;1
+68341;14668;1;155;66.0;130;80;1;1;0;0;1;0
+68342;22081;1;160;79.0;120;80;1;1;0;0;1;0
+68344;23239;2;176;92.0;130;80;1;1;0;0;1;1
+68345;21211;1;144;67.0;100;70;1;1;0;0;1;1
+68346;20570;1;160;60.0;130;80;1;1;0;0;0;0
+68347;19658;2;171;70.0;140;90;1;1;0;0;0;1
+68348;19746;2;180;66.0;120;80;1;1;0;0;1;1
+68349;19038;2;160;65.0;130;80;2;3;0;0;0;0
+68351;18796;1;152;66.0;130;90;1;1;0;0;0;1
+68352;21314;2;175;62.0;140;90;1;1;0;0;1;1
+68354;16830;1;165;60.0;120;80;1;1;0;0;1;0
+68355;19783;1;163;65.0;120;80;1;1;0;0;1;0
+68356;20282;1;156;60.0;160;100;1;1;0;0;1;1
+68357;22601;2;168;88.0;150;90;1;1;0;0;0;1
+68358;22652;1;170;60.0;140;80;1;3;0;0;1;1
+68359;18404;1;159;64.0;120;80;1;1;0;0;1;0
+68360;21022;1;169;88.0;150;90;2;1;0;0;1;1
+68363;19930;1;177;78.0;120;80;1;1;1;0;1;0
+68364;18936;1;165;67.0;120;80;1;1;0;0;1;1
+68365;16811;1;160;57.0;150;90;1;1;0;0;1;1
+68366;23536;1;172;73.0;110;70;1;1;0;0;0;0
+68367;16852;2;170;70.0;130;90;1;1;0;0;0;1
+68368;16099;2;175;78.0;110;80;1;1;0;0;0;0
+68369;20474;1;160;81.0;110;80;3;3;0;0;0;1
+68370;20717;1;173;78.0;125;80;1;1;1;0;1;0
+68371;23196;1;169;77.0;130;80;1;1;0;0;0;1
+68372;23209;1;165;97.0;120;80;1;1;0;0;0;1
+68373;21151;2;166;68.0;140;90;1;1;0;0;1;1
+68375;18906;1;160;62.0;120;80;1;1;0;0;1;1
+68376;19041;1;171;103.0;130;89;1;1;0;0;1;1
+68377;21067;2;183;89.0;120;80;1;1;0;0;1;0
+68378;22036;1;170;78.0;120;80;1;1;0;0;1;1
+68380;14574;1;157;63.0;120;80;1;3;0;0;1;0
+68381;21148;1;167;57.0;130;70;1;1;0;0;1;1
+68382;21755;2;172;100.0;120;80;1;1;0;0;1;1
+68383;19716;2;175;78.0;120;80;1;1;1;0;1;1
+68384;15906;2;176;79.0;120;80;1;1;1;0;1;0
+68385;22616;1;167;60.0;140;80;1;2;0;0;1;1
+68386;21154;2;154;56.0;110;80;1;1;0;0;1;0
+68390;23504;1;160;60.0;120;80;1;1;0;0;1;0
+68391;18051;2;172;96.0;210;120;1;1;0;0;0;1
+68392;17638;2;163;61.0;120;80;1;1;0;0;1;0
+68393;18192;1;160;60.0;120;80;1;1;0;0;1;1
+68394;21951;1;169;80.0;150;90;3;1;0;0;1;1
+68395;21243;1;154;81.0;130;100;1;1;0;0;1;1
+68396;21806;2;175;63.0;120;80;1;1;0;0;1;0
+68397;14467;1;150;79.0;140;100;1;2;0;0;0;1
+68398;22677;2;176;79.0;130;90;1;1;0;0;1;0
+68399;21160;1;162;86.0;140;90;1;1;0;0;0;1
+68400;14504;2;165;65.0;120;80;1;1;0;0;1;0
+68401;19456;2;174;79.0;120;80;1;1;0;0;1;0
+68402;17475;1;162;77.0;130;80;1;1;0;0;1;1
+68403;18409;2;158;56.0;110;80;1;1;0;0;0;0
+68404;21972;1;158;95.0;120;90;1;1;0;0;1;0
+68406;17764;1;168;66.0;170;90;1;1;0;0;1;1
+68409;19592;1;158;85.0;130;90;3;3;0;0;1;1
+68410;18900;1;157;68.0;110;70;1;1;0;0;0;0
+68411;19423;2;164;60.0;120;80;2;1;0;0;0;1
+68413;19690;1;165;63.0;120;80;1;1;0;0;1;0
+68414;15502;1;160;89.0;120;80;1;1;0;0;1;0
+68415;18269;1;152;70.0;130;95;1;1;0;0;1;0
+68416;21142;1;146;61.0;130;80;1;1;0;0;1;1
+68418;17983;1;180;75.0;110;70;1;1;0;0;1;1
+68420;21932;2;178;75.0;120;80;1;1;0;0;1;0
+68421;21837;1;165;70.0;120;70;1;1;0;0;1;0
+68423;14575;2;172;62.0;120;80;1;1;1;1;1;1
+68424;20440;2;186;95.0;130;90;1;1;0;0;1;1
+68425;21888;1;154;57.0;110;80;1;1;0;0;1;0
+68426;17471;1;162;61.0;120;80;1;1;0;0;1;0
+68427;21778;2;165;85.0;150;90;1;1;0;0;1;1
+68428;17542;2;176;90.0;160;100;2;2;0;0;1;1
+68430;21929;1;137;42.0;120;80;1;1;0;0;1;0
+68431;21144;2;178;69.0;130;70;1;1;1;1;1;1
+68432;23470;2;162;60.0;110;70;1;1;0;0;1;1
+68433;18373;1;150;51.0;90;60;1;1;0;0;1;0
+68434;15209;2;160;60.0;100;70;1;1;1;0;0;0
+68435;19601;1;161;78.0;140;90;1;1;0;0;1;1
+68436;14402;1;163;79.0;150;90;1;1;0;0;0;1
+68437;21999;1;180;91.0;90;80;3;3;0;1;1;0
+68439;22350;1;158;69.0;150;90;1;1;0;0;1;1
+68440;16069;1;156;68.0;110;70;1;1;0;0;1;0
+68441;15243;1;159;116.0;160;1000;3;3;0;0;1;1
+68442;21691;2;154;70.0;120;80;1;1;0;0;1;0
+68446;15145;2;173;91.0;140;80;2;1;0;0;1;0
+68447;17393;1;165;88.0;110;80;1;1;0;0;1;0
+68448;21979;2;170;55.0;140;80;1;1;0;0;1;0
+68449;19566;2;182;88.0;130;80;1;1;0;0;1;0
+68451;15161;2;163;75.0;110;70;1;1;0;0;1;1
+68452;19545;1;149;51.0;140;80;1;3;0;0;1;0
+68453;20398;2;168;72.0;120;80;2;1;0;0;0;0
+68455;19873;1;162;64.0;130;80;1;1;0;0;1;1
+68456;21037;2;160;72.0;120;70;1;1;0;0;0;0
+68457;20277;1;154;72.0;130;90;1;1;0;0;1;0
+68458;18230;1;150;47.0;100;70;2;2;0;1;1;0
+68459;19883;1;168;74.0;140;80;1;1;0;0;1;1
+68460;22025;1;150;60.0;130;90;1;1;0;0;1;1
+68462;17006;1;178;85.0;120;80;1;1;0;0;0;1
+68463;18280;1;166;69.0;120;80;2;1;0;0;0;1
+68464;20282;1;177;87.0;120;80;1;1;0;0;1;0
+68465;19727;2;173;87.0;140;90;1;1;0;0;1;1
+68468;16711;1;164;58.0;160;90;1;1;0;0;1;0
+68469;20554;1;158;110.0;150;90;1;1;0;0;1;1
+68470;18931;1;170;106.0;180;100;1;1;0;0;1;1
+68471;21061;1;159;69.0;110;70;1;1;0;0;1;0
+68472;21147;1;154;86.0;120;70;1;1;0;0;1;1
+68473;20445;1;163;68.0;120;80;1;1;0;0;1;0
+68474;19936;2;170;65.0;120;80;1;1;0;0;1;0
+68477;20615;2;187;84.0;130;80;1;1;0;0;1;0
+68478;18127;1;162;90.0;120;70;1;1;0;0;1;0
+68479;20465;2;162;68.0;150;90;1;1;0;0;1;1
+68480;18274;1;170;80.0;120;80;1;1;0;0;1;0
+68483;20464;1;149;59.0;110;70;3;3;0;0;0;0
+68484;16604;2;175;98.0;110;70;2;1;1;0;0;1
+68486;20702;1;159;75.0;110;70;1;1;0;0;1;0
+68487;14564;1;161;58.0;110;70;1;1;0;0;1;0
+68489;22563;1;167;86.0;120;80;2;1;0;0;0;1
+68490;19816;1;158;64.0;120;80;1;1;0;0;1;1
+68491;18319;1;150;86.0;130;80;1;1;0;0;1;1
+68492;17696;1;168;71.0;110;80;1;1;0;0;1;0
+68494;19710;1;160;70.0;120;70;1;1;0;0;0;0
+68498;21290;1;169;65.0;120;80;1;1;0;0;0;1
+68499;19855;1;152;87.0;120;80;1;1;0;0;1;1
+68500;22388;1;152;73.0;160;120;2;1;0;0;1;1
+68503;16709;1;158;84.0;121;70;2;1;0;0;1;1
+68504;18960;1;159;92.0;140;90;2;1;0;1;1;1
+68508;15360;2;167;57.0;120;80;1;1;1;0;1;0
+68509;20323;1;154;67.0;130;80;3;2;0;0;1;1
+68512;21482;1;165;78.0;120;80;1;1;0;0;0;1
+68513;15174;1;157;81.0;120;80;1;1;0;0;1;0
+68514;17700;1;156;64.0;120;80;1;1;0;0;1;0
+68515;20738;1;157;110.0;110;70;1;1;0;0;0;0
+68516;23467;1;158;78.0;120;80;3;3;0;0;1;1
+68517;19567;2;177;86.0;180;90;1;1;1;0;1;0
+68518;23424;1;155;76.0;120;80;1;1;0;0;1;0
+68519;15245;2;165;65.0;140;80;1;1;0;0;1;0
+68520;18978;1;175;75.0;120;80;1;1;0;0;1;0
+68521;18003;1;157;50.0;150;90;1;3;0;0;1;1
+68524;14614;1;163;96.0;160;1000;1;1;0;0;1;1
+68525;19091;1;168;82.0;120;80;1;1;0;0;1;0
+68526;20400;1;156;100.0;140;100;1;1;0;0;0;0
+68529;18998;1;161;72.0;140;90;2;1;1;0;1;1
+68531;19443;1;165;70.0;120;80;1;1;0;0;0;1
+68532;15113;2;180;105.0;130;90;1;1;1;0;1;0
+68533;20510;1;150;60.0;120;80;1;1;0;0;0;0
+68534;22056;1;162;86.0;150;90;1;1;0;0;1;0
+68535;15822;1;156;65.0;110;70;3;1;0;0;1;1
+68536;18908;1;159;62.0;110;80;1;3;0;0;1;1
+68537;16748;1;166;70.0;120;80;1;1;0;0;1;1
+68538;19924;1;169;68.0;120;80;1;1;0;0;1;0
+68539;21245;2;174;96.0;120;80;1;1;0;0;1;1
+68540;17308;2;165;90.0;120;80;1;1;0;0;1;0
+68541;19037;2;179;68.0;120;80;1;1;0;0;1;0
+68542;18308;1;165;71.0;110;70;1;1;0;0;1;1
+68543;18423;2;170;98.0;140;90;1;1;0;0;1;1
+68546;17281;1;158;74.0;120;80;1;1;0;0;1;0
+68547;15267;1;168;62.0;117;69;2;1;0;0;1;0
+68548;18906;2;170;70.0;120;80;1;1;1;0;1;1
+68549;22763;2;182;82.0;140;90;1;1;1;0;1;1
+68550;22866;1;172;72.0;140;70;3;3;0;0;1;1
+68554;19717;2;166;84.0;130;90;1;1;0;0;1;1
+68555;18926;1;160;79.0;100;60;1;1;0;0;1;1
+68560;16845;1;178;60.0;110;60;1;1;0;1;1;0
+68561;21157;1;158;63.0;120;80;1;1;0;0;1;0
+68565;21023;2;164;67.0;140;90;1;1;0;0;1;1
+68567;20578;1;168;62.0;120;80;1;1;0;0;1;1
+68568;18747;1;154;80.0;100;70;1;1;0;0;1;0
+68569;20601;1;165;69.0;120;80;1;1;0;0;1;1
+68570;19025;1;152;72.0;120;80;1;1;0;0;1;0
+68571;19791;1;169;66.0;120;80;3;3;0;0;0;0
+68572;21804;1;163;75.0;100;70;2;1;0;0;0;0
+68573;17310;2;168;58.0;140;90;2;1;0;0;0;1
+68574;16747;1;154;84.0;180;90;1;1;0;0;1;1
+68576;19600;2;184;119.0;120;80;1;2;1;0;0;1
+68578;20230;1;158;73.0;140;80;1;2;0;0;1;1
+68579;21901;1;154;66.0;150;90;1;1;0;0;1;1
+68580;21304;1;172;78.0;140;90;1;1;0;0;1;0
+68582;19652;1;160;62.0;120;80;1;1;0;0;1;0
+68583;16781;1;173;87.0;120;1000;1;1;0;0;1;0
+68585;16739;1;162;75.0;120;80;1;1;0;0;1;0
+68587;22459;1;165;65.0;130;90;1;2;0;0;1;1
+68588;19703;1;160;73.0;160;100;1;1;0;0;1;0
+68589;19035;2;182;112.0;150;100;2;1;0;0;1;0
+68590;17608;2;168;78.0;120;80;1;1;0;0;1;1
+68593;22062;1;150;70.0;140;90;1;1;0;0;1;1
+68596;14593;1;145;41.0;110;70;1;1;0;0;0;0
+68597;14608;1;160;59.0;120;80;1;3;0;0;1;0
+68599;22048;1;163;58.0;120;80;3;3;0;0;1;0
+68600;22496;1;164;77.0;120;80;3;1;0;0;1;1
+68601;19661;1;164;80.0;130;90;1;1;0;0;1;0
+68603;17393;1;159;68.0;120;80;1;1;0;0;1;0
+68604;18983;1;160;93.0;130;90;1;1;0;0;1;1
+68605;16638;1;150;70.0;120;80;1;1;0;0;1;1
+68608;18971;1;169;85.0;120;80;1;1;0;0;0;0
+68609;19155;1;170;69.0;120;80;1;1;0;0;1;0
+68611;15915;1;159;67.0;120;60;1;1;1;0;1;1
+68612;19012;1;160;84.0;121;0;1;1;0;0;0;1
+68613;17988;1;157;86.0;140;90;1;1;0;0;1;0
+68614;21912;1;167;65.0;110;70;1;1;0;0;0;1
+68617;20404;2;178;88.0;130;80;1;1;0;0;0;1
+68618;21123;1;165;65.0;120;79;2;1;0;0;0;1
+68624;23343;1;150;68.0;140;90;3;3;0;0;1;0
+68625;18747;2;172;82.0;140;90;2;3;0;0;1;1
+68627;15287;2;163;60.0;110;60;1;1;0;0;1;0
+68629;21746;1;161;80.0;140;100;3;3;0;0;1;1
+68630;15309;1;169;80.0;150;90;1;1;0;0;1;1
+68631;18063;1;158;75.0;110;70;2;1;0;1;0;0
+68633;18022;2;178;76.0;120;80;1;1;0;0;1;0
+68634;19192;1;156;75.0;110;80;1;1;0;0;1;0
+68636;20441;2;166;67.0;120;80;1;1;0;0;1;0
+68637;21102;2;172;75.0;120;80;3;1;0;0;1;1
+68639;23243;1;164;72.0;140;80;1;1;0;0;1;1
+68640;19800;1;172;75.0;130;90;1;1;0;0;1;1
+68641;18942;1;163;67.0;110;70;1;1;0;0;1;0
+68644;20569;1;165;70.0;120;80;1;1;0;0;1;0
+68648;19732;1;158;63.0;120;80;1;1;0;0;1;0
+68649;18236;1;170;87.0;120;60;3;3;0;0;1;1
+68652;17344;1;162;78.0;120;80;3;3;0;0;1;1
+68655;16785;1;168;60.0;120;60;1;1;0;0;1;0
+68656;18305;1;152;68.0;120;80;2;1;0;0;1;0
+68657;23178;1;176;71.0;120;80;1;1;0;0;1;0
+68658;20304;2;164;106.0;160;1100;2;1;0;0;1;1
+68660;18713;2;179;84.0;120;80;1;1;0;0;1;1
+68661;23401;1;164;70.0;140;90;1;1;0;0;1;1
+68663;21871;1;169;88.0;130;90;1;1;0;0;0;1
+68665;21177;2;168;77.0;110;70;1;1;0;0;1;0
+68666;20445;1;168;82.0;120;80;2;1;0;0;1;0
+68667;19255;1;143;33.0;100;60;1;1;0;0;1;0
+68668;15127;1;165;83.0;170;110;1;1;0;0;0;0
+68670;22220;1;153;61.0;140;80;2;1;0;0;1;1
+68671;22185;1;165;73.0;140;90;2;3;0;0;1;1
+68672;20565;2;159;52.0;100;70;1;1;1;0;1;0
+68674;21995;2;170;72.0;120;80;3;1;0;0;1;1
+68676;21254;2;174;79.0;140;90;2;1;0;0;1;1
+68677;23433;1;160;90.0;160;100;2;2;0;0;1;1
+68678;15283;2;185;80.0;120;80;1;1;0;0;1;1
+68679;20335;1;154;77.0;140;80;1;1;0;0;1;1
+68681;22641;2;163;70.0;120;80;1;1;0;0;1;1
+68684;20487;1;143;65.0;180;100;2;2;0;0;0;1
+68685;18988;1;170;68.0;120;80;1;1;0;0;1;0
+68686;19686;1;169;65.0;120;80;1;1;0;0;1;1
+68688;20169;1;155;65.0;150;100;3;1;0;0;1;1
+68689;19073;2;166;68.0;120;80;1;1;0;0;1;0
+68690;18295;2;171;92.0;110;70;1;3;1;0;1;0
+68691;17548;2;165;65.0;120;70;1;1;0;0;1;0
+68693;19132;1;164;68.0;130;90;1;1;0;0;1;0
+68694;18211;1;154;58.0;130;80;2;2;0;0;1;0
+68695;18919;1;160;59.0;120;90;1;1;0;0;1;0
+68696;21353;1;156;60.0;120;70;1;1;0;0;1;1
+68697;23511;1;180;80.0;120;70;1;1;0;0;0;1
+68698;14735;1;154;57.0;110;70;1;1;0;0;1;0
+68699;15921;1;165;64.0;140;90;1;1;0;0;1;1
+68700;16251;1;165;95.0;130;80;1;1;0;0;1;1
+68701;17384;2;171;72.0;130;100;1;1;0;0;1;1
+68703;21668;1;157;58.0;90;60;1;1;0;0;0;0
+68704;21113;2;178;88.0;160;100;2;2;1;0;1;1
+68706;18289;1;163;64.0;120;80;1;1;0;0;1;0
+68707;16916;2;158;60.0;120;60;2;1;0;0;1;0
+68708;22767;1;166;58.0;120;80;1;1;0;0;0;1
+68711;15159;1;167;102.0;140;80;1;1;0;0;1;1
+68712;23315;1;168;70.0;150;100;1;1;0;0;1;0
+68713;21128;1;154;103.0;150;100;1;3;0;0;1;1
+68714;23333;1;166;74.0;130;90;1;1;0;0;0;1
+68716;19071;1;164;67.0;120;80;1;1;0;0;1;0
+68720;20504;1;158;60.0;160;90;1;1;0;0;1;1
+68721;14555;2;170;75.0;120;80;1;1;0;0;1;0
+68723;23554;1;155;76.0;140;90;3;1;0;0;1;1
+68725;19560;1;156;58.0;120;80;1;1;0;0;0;0
+68726;22549;1;159;46.0;140;70;1;1;0;0;1;1
+68727;16035;2;170;69.0;120;80;1;1;0;0;1;0
+68728;21232;1;160;54.0;120;80;2;1;0;0;1;0
+68730;22552;1;168;65.0;135;80;3;1;0;0;1;1
+68734;21901;1;152;99.0;130;90;3;1;0;0;1;1
+68736;22531;1;157;75.0;120;90;1;1;0;0;1;1
+68737;19744;1;158;66.0;120;80;1;1;0;0;1;0
+68738;16847;1;161;86.0;140;90;3;1;0;0;1;1
+68739;18465;1;155;66.3;130;90;2;1;0;0;1;1
+68740;18502;2;171;70.0;170;90;1;1;1;1;1;1
+68741;23189;1;164;83.0;140;90;3;3;0;0;1;1
+68742;21891;1;155;48.0;110;80;1;1;0;0;1;0
+68743;21946;2;175;84.0;120;80;1;1;0;0;1;1
+68744;15893;2;180;81.0;120;80;1;1;1;1;1;0
+68745;22369;1;148;70.0;130;80;3;3;0;0;1;1
+68747;19567;2;170;62.0;120;80;1;1;1;0;1;0
+68748;22739;1;161;78.0;130;90;3;1;0;0;1;1
+68749;15311;1;158;65.0;120;80;1;1;0;0;0;0
+68750;17545;1;169;72.0;120;90;1;1;0;1;0;0
+68751;18397;1;157;79.0;145;90;2;1;0;0;1;1
+68752;19282;2;172;80.0;90;60;2;3;1;0;1;0
+68753;20923;1;162;89.0;180;100;3;3;0;0;1;1
+68754;22014;1;167;87.0;100;60;2;2;0;0;1;1
+68756;17704;2;166;70.0;120;60;1;1;1;1;0;0
+68758;21038;2;170;85.0;150;80;1;1;1;0;1;0
+68762;21265;2;163;68.0;130;68;1;1;0;0;1;1
+68763;19718;1;166;64.0;100;60;1;3;0;0;1;1
+68764;20337;1;170;75.0;110;70;2;1;0;0;1;0
+68765;18136;1;153;76.0;140;80;2;1;0;1;1;1
+68766;19707;1;161;78.0;120;80;1;1;1;1;1;1
+68767;21395;1;152;75.0;100;70;2;1;0;0;1;1
+68768;20494;1;156;71.0;130;90;2;1;0;0;0;0
+68769;17513;1;166;98.0;120;80;1;1;0;0;1;0
+68770;23398;1;157;97.0;180;90;3;3;0;0;1;1
+68771;23318;1;162;73.0;130;80;1;3;0;0;1;1
+68773;19460;1;154;58.0;130;80;1;1;0;0;1;1
+68774;19456;1;154;81.0;150;80;2;1;0;0;1;1
+68778;15948;1;163;82.0;120;80;1;1;0;0;1;0
+68779;16716;1;153;79.0;120;90;1;2;0;0;1;1
+68781;18329;1;158;73.0;110;80;1;1;0;0;1;0
+68785;15095;1;164;66.0;110;80;1;1;0;0;1;0
+68786;15324;2;176;76.0;120;80;1;1;0;0;0;0
+68789;18340;1;165;68.0;140;80;1;1;0;0;1;1
+68791;19862;2;175;93.0;120;80;1;1;0;0;1;1
+68794;19820;2;175;79.0;120;80;2;1;1;0;1;1
+68795;21992;1;166;92.0;130;80;1;1;0;0;1;0
+68796;18183;1;160;58.0;110;70;1;1;0;0;1;0
+68797;23620;1;165;80.0;120;80;1;1;0;0;0;1
+68798;21780;1;158;60.0;140;80;1;1;0;0;1;1
+68799;18294;1;170;65.0;110;70;1;1;0;0;1;0
+68800;19626;2;175;83.0;120;80;1;1;0;0;1;0
+68802;21384;1;154;76.0;170;120;1;1;0;0;1;1
+68803;19056;1;166;71.0;160;80;1;1;0;0;0;0
+68804;21901;1;162;69.0;140;90;1;1;0;0;0;1
+68805;18852;2;178;98.0;140;90;3;1;1;1;1;1
+68806;22124;1;168;75.0;150;90;1;1;0;0;1;1
+68807;14421;1;160;53.0;126;82;1;1;0;0;0;0
+68811;22812;1;156;80.0;110;80;1;2;0;0;1;1
+68812;18857;1;165;89.0;120;80;1;1;0;0;0;0
+68813;19212;1;165;63.0;120;80;1;1;0;0;1;0
+68814;22543;1;159;77.0;130;90;3;3;0;0;1;1
+68815;18928;1;160;70.0;110;70;1;1;0;0;1;0
+68817;19789;2;170;90.0;150;100;2;1;0;0;1;1
+68818;21189;2;169;76.0;120;80;1;1;0;0;0;0
+68819;20337;1;164;108.0;110;70;3;1;0;0;1;1
+68820;23321;1;156;60.0;140;80;1;2;0;0;1;1
+68821;22068;2;161;74.0;110;80;1;1;0;0;1;1
+68822;22402;1;166;76.0;166;76;1;1;0;0;1;1
+68823;20641;1;169;66.0;120;80;1;1;0;0;0;1
+68824;16090;2;179;68.0;110;70;1;1;0;0;1;0
+68825;19136;1;164;98.0;95;180;3;3;0;1;1;1
+68826;22604;2;160;61.0;130;80;1;1;0;0;1;0
+68827;19049;1;169;69.0;120;80;1;1;0;0;0;0
+68828;19848;1;165;67.0;110;70;1;1;0;0;1;0
+68831;19679;1;153;98.0;150;90;3;3;0;0;1;1
+68834;18958;1;164;64.0;120;79;1;1;0;0;1;0
+68835;23251;2;167;87.0;120;80;1;1;0;0;0;0
+68839;20519;1;143;65.0;130;90;1;1;0;0;1;1
+68840;20377;1;180;80.0;120;80;2;1;0;0;1;0
+68841;20528;1;157;90.0;130;70;1;1;0;1;0;1
+68842;20392;2;167;81.0;130;80;3;3;1;0;1;1
+68844;18215;1;160;60.0;120;60;1;1;0;0;1;0
+68845;15297;2;159;61.0;120;80;1;1;0;0;1;0
+68846;17354;1;175;85.0;120;80;1;3;0;0;1;0
+68847;19718;1;163;83.0;110;80;1;1;0;0;0;0
+68848;19512;1;160;85.0;110;70;1;1;0;0;0;1
+68849;19006;2;170;65.0;180;100;1;1;0;0;0;1
+68851;23199;2;168;95.0;120;80;1;1;0;0;0;0
+68853;19709;1;155;55.0;110;70;1;1;0;0;1;0
+68855;22146;1;160;63.0;140;90;1;1;0;0;0;1
+68856;21040;2;170;70.0;130;80;1;1;1;0;1;1
+68857;20928;1;160;77.0;130;80;1;1;0;0;1;0
+68858;15078;1;152;64.0;120;80;1;1;0;0;1;0
+68861;16043;1;165;54.0;100;70;1;1;0;0;1;0
+68862;19760;2;173;75.0;140;100;1;3;0;0;1;1
+68863;20391;1;166;85.0;120;60;2;2;0;0;1;1
+68864;19461;1;150;85.0;120;70;1;1;0;0;0;1
+68865;22032;1;165;62.0;120;80;1;1;0;0;1;0
+68866;18985;1;159;75.0;130;90;1;1;0;0;1;1
+68867;23493;2;165;70.0;140;80;1;3;0;0;1;1
+68868;20194;2;166;82.0;140;100;2;1;0;0;0;1
+68869;23286;2;180;87.0;130;80;1;1;0;0;1;1
+68871;18965;1;153;95.0;140;80;1;1;0;0;1;0
+68873;15823;2;173;93.0;120;80;1;1;0;0;0;0
+68874;17834;2;168;66.0;120;80;1;1;1;1;1;0
+68875;20457;2;171;65.0;90;60;1;1;0;0;1;0
+68876;18940;2;168;98.0;120;80;1;1;1;1;1;0
+68877;16182;1;165;94.0;110;70;2;1;0;0;0;0
+68878;17715;2;150;52.0;120;80;1;1;0;0;1;0
+68880;18355;2;176;86.0;130;1000;2;1;0;0;0;0
+68881;18137;2;170;68.0;120;80;1;1;0;0;1;1
+68882;18345;1;168;61.0;110;60;1;1;0;0;1;0
+68883;22672;1;160;73.0;140;90;2;2;0;0;1;1
+68887;15815;2;187;90.0;140;90;3;3;1;0;1;1
+68888;21947;1;160;96.0;149;74;2;1;0;1;1;0
+68890;18321;1;165;105.0;120;80;1;1;0;0;1;0
+68891;18234;2;178;77.0;110;80;1;1;0;0;1;0
+68893;20697;1;168;66.0;160;90;1;1;0;0;1;1
+68894;18766;1;158;82.0;150;90;1;3;0;0;1;1
+68896;18212;1;162;74.0;120;80;1;1;0;0;0;0
+68897;20333;2;171;79.0;160;90;3;1;0;0;1;1
+68898;17363;2;170;72.0;120;80;1;1;0;0;0;0
+68899;22742;1;168;90.0;140;100;1;1;0;0;1;1
+68901;22432;2;173;74.0;110;70;1;1;0;0;1;0
+68902;15114;1;161;50.0;110;70;3;1;0;0;1;0
+68903;18258;2;180;89.0;90;70;1;2;0;0;1;0
+68904;21886;1;159;93.0;120;80;3;2;0;0;1;0
+68905;20471;1;168;60.0;140;80;1;1;0;0;0;1
+68906;17970;1;159;76.0;130;90;2;2;0;0;1;1
+68907;18764;2;175;82.0;130;80;3;1;1;0;1;1
+68909;19861;2;178;75.0;120;70;1;1;0;0;1;1
+68911;20456;1;184;94.0;120;80;1;1;0;0;1;0
+68913;20216;2;168;117.0;130;70;1;1;0;0;1;1
+68914;23454;2;166;118.0;120;80;3;1;0;0;1;1
+68915;22430;1;153;51.0;140;80;3;3;0;0;1;1
+68917;16766;1;155;59.0;90;60;1;1;0;0;1;0
+68918;18458;1;162;65.0;120;79;1;1;0;0;0;0
+68919;20294;2;165;77.0;110;90;1;1;1;0;1;0
+68920;19899;1;165;65.0;120;80;1;1;0;0;1;1
+68921;18886;2;162;65.0;120;80;1;1;0;0;1;0
+68922;18429;2;169;78.0;120;80;1;1;0;0;0;0
+68923;22005;1;155;62.0;140;90;2;2;0;0;1;1
+68924;19050;2;170;70.0;120;80;1;1;0;0;1;0
+68925;19656;2;181;102.0;110;70;1;1;1;0;1;0
+68926;17588;1;165;63.0;120;80;1;1;0;0;1;0
+68927;14550;2;170;55.0;110;80;1;1;0;0;0;0
+68928;19733;1;162;60.0;120;80;1;1;0;0;1;0
+68930;17255;2;166;105.0;140;90;3;3;0;0;1;1
+68932;20482;2;169;64.0;120;80;1;1;0;0;1;0
+68933;16183;1;164;60.0;120;80;1;1;0;0;1;0
+68934;19589;2;170;85.0;130;90;2;1;0;0;1;1
+68935;22546;2;172;85.0;150;80;1;1;0;0;1;1
+68937;19928;1;166;60.0;120;80;1;2;0;0;0;1
+68938;21205;2;170;75.0;120;80;1;1;0;0;1;0
+68939;22012;1;160;61.0;130;80;3;1;0;0;1;1
+68941;14717;1;170;80.0;120;80;1;1;0;0;1;0
+68943;20436;1;152;50.0;120;70;2;1;0;0;1;0
+68944;18092;1;153;50.0;120;80;1;1;0;0;1;0
+68945;20722;1;163;72.0;120;80;1;1;0;0;0;1
+68946;18323;2;164;58.0;120;80;1;1;1;0;1;0
+68947;16481;1;164;67.0;110;70;2;1;0;0;1;0
+68948;19650;1;168;72.0;110;70;1;1;0;0;1;0
+68949;16530;2;180;90.0;110;70;1;3;0;0;1;0
+68951;15850;1;158;61.0;120;70;3;3;0;0;1;0
+68952;20326;1;148;50.0;135;80;1;1;0;0;1;1
+68953;20457;1;153;81.0;140;100;1;1;0;0;0;0
+68954;19294;2;168;72.0;120;80;1;3;0;0;0;0
+68955;16898;1;162;69.0;150;90;2;1;0;0;1;1
+68957;18276;1;162;67.0;130;90;1;1;0;0;1;0
+68959;18885;2;168;70.0;14;90;1;1;0;0;1;1
+68961;18882;1;165;70.0;150;100;1;1;0;0;1;0
+68962;21160;1;161;101.0;130;90;1;1;0;0;1;1
+68963;19757;1;169;80.0;110;80;1;1;0;0;1;1
+68964;16160;2;170;80.0;130;80;2;1;0;0;1;1
+68966;20558;1;158;84.0;120;80;1;1;0;0;0;0
+68967;19657;1;155;68.0;130;80;1;1;0;0;1;1
+68968;15125;2;174;84.0;120;80;1;1;0;0;0;1
+68969;21801;1;157;73.0;110;80;1;3;0;0;1;0
+68970;20542;1;162;71.0;140;90;1;1;0;0;1;1
+68972;16787;1;167;65.0;120;80;1;1;0;0;1;1
+68975;23216;2;160;70.0;120;80;1;1;0;0;0;1
+68976;14620;1;167;61.0;110;70;3;3;0;0;1;0
+68977;22819;1;169;65.0;110;80;1;1;0;0;1;1
+68978;18912;2;173;84.0;150;90;1;1;0;0;0;0
+68979;19696;1;160;64.0;120;80;1;1;0;0;1;0
+68983;22699;1;166;72.0;120;80;1;1;0;0;0;1
+68984;15146;1;156;107.0;130;90;3;1;0;0;1;0
+68985;16059;2;175;62.0;120;80;1;1;1;0;1;1
+68986;19849;1;167;78.0;125;80;1;1;0;0;1;1
+68987;17365;1;156;79.0;110;70;1;1;1;0;0;0
+68988;23390;2;156;70.0;120;80;1;1;0;0;1;0
+68989;19063;2;168;98.0;120;80;1;1;0;0;1;1
+68992;20445;1;160;83.0;140;90;3;3;0;0;1;0
+68993;20509;2;170;78.0;130;80;1;1;0;0;0;0
+68994;21016;1;169;75.0;160;80;1;1;0;0;0;1
+68995;22524;1;157;79.0;160;100;3;3;0;0;1;1
+68998;18284;1;162;92.0;180;110;1;1;0;0;1;0
+68999;15362;1;171;84.0;140;90;2;1;0;0;0;1
+69000;16570;1;157;97.0;150;90;3;1;0;1;1;1
+69001;19008;1;160;60.0;140;90;1;1;0;0;1;1
+69002;17096;2;167;49.0;100;70;1;1;0;0;1;0
+69003;16728;2;170;58.0;120;80;1;1;0;0;1;0
+69004;15160;2;176;65.0;120;80;1;1;0;0;1;0
+69006;21967;1;162;64.0;120;80;2;1;0;0;1;0
+69007;20433;1;163;75.0;140;90;1;1;0;0;1;0
+69008;19476;2;162;77.0;170;1000;1;1;0;0;1;1
+69009;21926;1;161;78.0;120;80;1;1;0;0;1;0
+69011;19911;1;156;71.0;110;70;1;1;0;0;1;0
+69012;23532;2;174;89.0;140;80;1;1;0;0;0;0
+69014;16845;2;156;62.0;115;70;1;1;0;0;1;0
+69016;19009;1;158;80.0;140;80;2;2;0;0;0;1
+69017;16168;2;173;69.0;140;90;1;1;0;0;1;1
+69020;19128;2;162;77.0;120;80;1;1;0;0;1;0
+69021;14539;2;183;80.0;100;80;1;1;1;0;1;0
+69022;22567;1;156;66.0;120;80;1;1;0;0;1;1
+69023;18438;2;181;92.0;130;80;1;1;0;0;1;1
+69024;23521;1;169;68.0;150;90;2;1;0;0;1;1
+69026;20155;1;159;77.0;140;64;1;1;0;0;1;0
+69027;22121;2;165;93.0;145;95;1;2;0;0;1;1
+69028;21770;1;168;78.0;120;80;1;1;0;0;1;1
+69029;21892;1;169;70.0;110;70;1;1;0;0;1;0
+69032;16698;2;178;80.0;140;80;1;1;0;0;1;1
+69033;20504;2;160;60.0;120;80;1;1;0;0;1;1
+69034;19011;2;170;87.0;130;90;1;1;0;0;0;1
+69036;18784;2;175;82.0;120;80;1;1;0;0;1;0
+69037;14450;2;165;65.0;120;80;1;1;0;0;0;0
+69038;18938;1;154;72.0;110;70;1;1;0;0;1;0
+69039;21235;1;175;70.0;120;80;1;1;0;0;0;0
+69040;22401;2;163;100.0;140;80;1;1;0;0;0;1
+69041;23217;1;168;66.0;120;80;1;1;0;0;1;1
+69042;20515;1;154;62.0;105;60;2;1;0;0;1;0
+69043;19493;1;169;71.0;120;80;1;1;0;0;1;0
+69044;18158;2;178;95.0;140;90;1;1;0;0;1;1
+69046;19105;1;165;65.0;150;80;1;1;0;0;1;1
+69049;19593;1;160;62.0;120;80;2;1;0;0;1;0
+69050;16041;1;165;60.0;120;80;1;1;0;0;1;0
+69051;17533;1;169;69.0;130;90;1;1;0;0;1;0
+69052;18350;1;158;83.0;120;80;2;1;0;0;0;0
+69053;22018;1;148;91.0;120;80;1;1;0;0;1;1
+69054;21806;2;170;96.0;110;70;3;3;1;0;1;0
+69055;22171;1;158;94.0;140;90;1;1;0;0;1;1
+69056;21156;1;156;64.0;110;70;3;3;0;0;0;1
+69057;18073;2;170;90.0;130;90;1;1;1;0;1;0
+69058;20221;2;158;62.0;120;80;1;1;1;1;1;1
+69059;19749;2;161;88.0;160;1000;1;1;0;0;1;0
+69060;21317;2;178;76.0;150;90;1;1;0;0;1;1
+69061;16633;1;167;75.0;150;80;1;1;0;0;1;1
+69062;20258;2;170;72.0;120;80;1;3;0;0;1;0
+69063;22908;2;161;64.0;110;80;3;1;0;0;1;0
+69064;15516;1;165;59.0;120;80;2;2;0;0;0;0
+69066;17674;2;163;68.0;160;100;2;1;0;0;1;1
+69067;22094;2;160;57.0;120;80;1;1;0;0;1;0
+69068;18142;2;175;70.0;140;90;1;1;0;0;0;1
+69071;23290;1;154;86.0;100;70;3;1;0;0;1;0
+69072;20192;1;165;65.0;120;80;1;3;0;0;1;1
+69073;19863;1;156;60.0;120;80;1;1;0;0;1;1
+69076;20300;2;176;98.0;140;90;2;3;0;1;1;1
+69077;16188;2;173;68.0;120;80;1;1;0;0;1;0
+69078;19716;1;179;99.0;120;80;1;1;0;0;1;0
+69080;21834;2;165;79.0;150;90;1;1;0;0;1;0
+69081;16890;1;156;77.0;125;80;1;1;0;0;1;1
+69082;14800;1;158;94.0;140;90;2;1;0;0;1;0
+69083;19762;1;169;59.0;110;80;1;1;0;0;1;0
+69085;18101;2;178;65.0;120;80;1;1;1;0;1;0
+69089;14397;1;160;64.0;12;80;1;1;0;0;1;0
+69090;23577;1;168;64.0;120;80;1;1;0;0;0;1
+69091;19692;2;170;84.0;140;70;2;1;0;0;1;1
+69092;14734;2;165;74.0;120;80;1;1;0;0;1;0
+69093;22512;1;158;79.0;120;80;1;1;0;0;0;1
+69094;20395;1;152;72.0;140;95;3;3;0;0;1;1
+69096;18218;2;172;83.0;120;80;3;3;0;1;1;0
+69097;18360;2;172;71.0;120;80;1;1;0;0;1;0
+69098;21876;1;170;85.0;160;90;1;1;0;0;1;1
+69099;17375;1;160;53.0;120;70;1;1;0;0;1;1
+69100;20437;1;163;85.0;120;70;1;1;0;0;1;0
+69102;21839;1;147;96.0;140;90;3;3;0;0;1;0
+69104;21780;1;162;60.0;130;80;2;1;0;0;1;0
+69106;16057;1;160;79.0;110;80;1;1;0;0;1;1
+69107;20870;1;159;79.0;150;100;1;1;0;0;1;1
+69108;23306;1;163;65.0;140;90;1;1;0;1;1;1
+69110;19138;2;169;66.0;120;80;1;1;0;0;1;0
+69112;21077;1;166;90.0;130;90;1;1;0;0;1;0
+69113;21933;2;170;68.0;120;80;1;1;0;0;1;0
+69114;21826;1;155;68.0;140;80;3;1;0;0;1;1
+69116;22683;1;160;75.0;110;80;1;1;0;0;1;0
+69117;17286;2;166;67.0;110;70;2;1;1;1;0;0
+69119;23320;1;150;83.0;160;100;1;1;0;0;1;1
+69120;14553;1;157;60.0;110;75;1;2;0;0;0;1
+69121;20266;1;151;50.0;150;90;1;1;0;0;1;1
+69122;15839;2;172;70.0;130;70;1;1;0;0;1;1
+69123;22655;2;173;76.0;120;80;1;1;0;0;0;1
+69124;15287;1;158;63.0;90;60;1;1;0;0;1;1
+69125;22220;1;159;74.0;140;90;1;1;0;0;1;1
+69127;19105;1;167;70.0;130;90;3;3;0;0;1;1
+69129;17617;2;169;68.0;120;70;1;1;0;0;1;1
+69130;20342;1;170;93.0;140;80;2;1;0;0;1;1
+69132;19446;2;171;104.0;130;90;2;1;1;1;1;1
+69133;21260;1;160;75.0;160;80;1;2;0;0;1;1
+69134;20995;1;179;66.0;120;80;2;1;0;0;0;1
+69135;23324;1;159;65.0;120;70;3;1;0;0;1;1
+69136;18291;1;158;66.0;140;80;1;2;0;0;0;1
+69137;19656;2;174;81.0;130;70;1;1;0;0;1;0
+69138;21942;2;167;67.0;110;80;1;1;1;1;1;0
+69139;18024;2;181;116.0;120;80;1;1;0;0;1;1
+69140;16102;1;159;96.0;170;110;1;1;0;0;1;1
+69141;23229;1;170;65.0;130;80;1;2;0;0;1;1
+69143;22460;1;160;114.0;120;80;1;1;0;0;1;1
+69146;19687;1;165;73.0;140;90;1;1;0;0;1;1
+69147;20594;1;159;64.0;100;70;2;3;0;0;1;0
+69149;20462;1;165;65.0;120;80;1;1;0;0;1;0
+69150;23215;2;160;78.0;140;80;3;1;0;0;1;1
+69152;16686;1;163;70.0;110;70;1;3;0;0;0;0
+69153;21680;1;169;65.0;120;80;1;1;0;0;0;1
+69155;20184;2;164;70.0;165;110;3;3;0;0;1;1
+69157;15906;1;164;66.0;125;80;1;1;0;0;1;0
+69160;17543;1;158;65.0;140;80;1;1;0;0;1;1
+69162;21257;1;160;65.0;110;70;1;1;0;0;1;1
+69163;19793;1;170;78.0;130;80;1;1;0;0;0;1
+69164;22438;1;157;67.0;150;90;3;3;0;0;0;1
+69166;23214;2;174;75.0;120;80;2;1;0;0;1;1
+69167;22382;1;160;65.0;170;100;1;1;0;0;1;1
+69168;20464;1;160;80.0;140;90;1;1;0;0;1;1
+69169;21437;2;166;75.0;120;80;1;1;0;0;1;1
+69172;19532;1;155;77.0;100;60;1;1;0;0;0;0
+69173;20223;2;176;89.0;130;80;1;3;0;0;1;0
+69177;21972;1;165;95.0;180;90;1;1;0;0;1;1
+69178;21189;1;153;78.0;120;80;1;1;0;0;1;1
+69180;22765;1;175;78.0;150;100;1;1;0;0;1;1
+69181;19844;1;175;75.0;110;70;1;1;0;0;1;0
+69182;16836;2;168;105.0;130;80;2;1;0;0;1;1
+69183;18069;2;175;75.0;120;80;1;1;0;0;1;0
+69184;19626;1;168;69.0;120;80;1;1;0;0;1;1
+69185;21145;1;168;79.0;120;70;1;1;0;0;1;1
+69189;19869;1;163;79.0;120;80;3;3;0;0;0;1
+69190;21099;1;166;95.0;130;90;1;1;0;0;1;1
+69194;14600;2;178;76.0;150;90;1;1;0;0;1;1
+69195;22816;2;180;74.0;110;60;2;1;0;0;1;1
+69197;16843;2;176;94.0;130;90;1;1;0;0;1;0
+69198;17462;1;162;82.0;110;70;2;2;0;0;1;0
+69200;20536;1;159;61.0;130;80;2;1;0;0;1;1
+69201;21881;1;152;84.0;160;110;3;3;0;0;0;1
+69203;18419;1;158;59.0;140;90;1;1;0;0;1;1
+69205;20413;1;164;68.0;150;90;1;1;0;0;1;1
+69209;15339;1;152;68.0;90;60;1;1;0;0;1;0
+69211;20621;2;186;86.0;120;80;1;1;0;0;1;1
+69212;19074;1;160;65.0;110;70;1;1;0;0;0;1
+69213;22708;2;171;80.0;150;90;1;1;0;0;0;1
+69214;16115;2;172;100.0;150;100;1;1;0;0;0;1
+69215;20425;2;170;76.0;120;80;1;1;0;0;1;0
+69216;20373;2;172;88.0;120;80;1;1;1;0;1;0
+69217;16091;1;165;55.0;120;80;1;1;0;0;1;0
+69218;20592;2;169;104.0;140;80;1;1;1;1;0;1
+69219;21116;2;168;78.0;120;80;1;2;0;0;1;0
+69221;22096;1;146;70.0;130;90;1;1;0;0;1;0
+69222;18907;1;164;95.0;150;100;1;1;0;0;1;1
+69223;19812;1;155;61.0;120;80;1;2;0;0;0;0
+69224;20323;2;161;83.0;155;90;1;1;0;0;1;1
+69225;16904;1;156;71.0;100;70;1;1;0;0;1;0
+69226;14915;1;163;70.0;120;80;1;1;0;0;1;0
+69227;22001;1;157;73.0;110;70;3;3;0;0;1;1
+69228;21739;2;166;59.0;120;80;1;1;1;0;1;0
+69229;15146;1;156;53.3;120;80;1;1;0;0;1;0
+69230;22692;2;186;80.0;120;80;1;1;0;0;1;0
+69231;14541;1;155;72.0;130;80;2;2;0;0;1;0
+69232;19744;1;152;40.0;130;70;1;1;0;1;0;0
+69234;20305;1;150;72.0;110;70;1;1;0;0;1;0
+69235;16031;2;162;79.0;120;80;2;1;0;0;1;0
+69236;15239;2;165;95.0;120;80;1;1;0;0;1;0
+69237;23249;1;163;63.0;140;90;1;1;0;0;1;0
+69238;21718;1;164;66.0;120;80;1;1;0;0;1;1
+69240;22638;1;153;73.0;150;90;1;1;0;0;1;1
+69242;21256;1;167;84.0;160;90;1;1;0;0;1;1
+69243;14729;2;168;65.0;120;80;1;1;0;0;1;0
+69246;15584;2;173;80.0;140;90;1;1;1;0;1;1
+69247;23459;1;163;63.0;120;80;1;1;0;0;1;0
+69249;20460;1;169;60.0;120;80;1;1;0;0;1;0
+69250;21965;1;170;65.0;120;80;3;3;0;0;1;0
+69251;21090;1;160;68.0;120;80;1;2;0;0;1;1
+69252;16108;2;175;74.0;120;80;1;1;1;1;1;0
+69253;19835;1;162;73.0;110;65;1;2;0;0;1;0
+69254;18270;2;178;79.0;120;70;1;1;0;0;1;1
+69255;19758;1;164;109.0;120;80;2;2;0;0;1;0
+69256;19529;1;158;65.0;130;80;3;1;0;0;1;1
+69257;17580;2;160;61.0;100;70;3;3;0;0;1;1
+69258;16880;1;165;69.0;120;60;1;3;0;0;1;0
+69259;20654;1;160;80.0;120;80;2;1;0;0;1;1
+69260;19909;1;158;71.0;130;80;3;1;0;0;1;1
+69261;21008;1;155;64.0;140;80;2;1;0;0;1;1
+69262;22323;1;164;77.0;125;80;2;1;0;0;1;1
+69264;19895;2;170;69.0;120;70;1;1;0;0;0;0
+69265;19654;1;165;93.0;115;80;1;1;0;0;1;0
+69266;16109;1;165;71.0;125;80;1;3;0;0;1;0
+69267;18391;1;177;98.0;140;90;2;3;0;1;1;1
+69268;15973;1;160;85.0;170;110;1;1;0;0;0;1
+69269;18813;2;180;81.0;120;80;1;1;0;1;1;0
+69270;21122;1;168;75.0;120;80;2;3;0;0;1;1
+69272;18447;1;160;78.0;120;80;1;1;0;0;1;1
+69273;19667;2;160;68.0;120;79;1;1;1;0;0;0
+69275;20406;1;170;80.0;120;80;1;1;0;0;1;1
+69276;20423;1;165;63.0;120;80;1;1;0;0;1;1
+69277;18764;1;176;112.0;160;90;1;1;0;0;1;1
+69278;20469;2;165;85.0;120;70;1;1;0;1;1;0
+69282;20594;1;170;68.0;100;80;1;1;0;0;0;0
+69283;22655;1;165;72.0;160;90;1;1;0;0;0;1
+69286;16180;1;170;85.0;120;80;1;1;1;0;1;0
+69288;16549;1;149;73.0;120;80;2;2;0;0;1;0
+69290;20236;1;154;69.0;130;90;1;1;0;0;1;1
+69291;20436;1;163;68.0;120;80;1;1;0;0;1;0
+69293;23390;1;162;58.0;120;80;1;1;0;0;1;0
+69294;22802;1;160;70.0;120;80;2;1;0;0;1;1
+69296;17563;2;178;71.0;110;80;1;1;0;0;1;0
+69298;18195;1;159;82.0;120;80;1;1;0;0;1;0
+69299;16483;1;152;75.0;140;90;1;1;0;0;1;1
+69300;21777;2;164;58.0;120;80;3;1;1;0;1;0
+69303;16244;1;174;64.0;120;80;3;1;0;0;1;0
+69304;17618;2;177;69.0;120;80;1;1;0;0;1;0
+69305;20353;1;167;82.0;120;80;1;2;0;0;1;1
+69306;18255;1;158;97.0;150;90;2;1;0;0;1;1
+69307;23385;1;155;70.0;120;80;3;1;0;0;1;1
+69310;14531;2;178;65.0;110;70;1;1;0;0;1;0
+69312;14828;1;153;70.0;140;100;3;3;0;0;1;1
+69313;14857;2;168;75.0;120;80;1;1;0;0;1;0
+69314;18977;1;155;70.0;130;90;3;1;0;0;1;0
+69318;21211;1;162;95.0;150;90;3;1;0;0;1;1
+69319;15985;1;168;62.0;120;80;1;1;0;0;1;0
+69320;23283;1;160;59.0;120;80;2;1;0;0;1;0
+69323;23160;2;176;98.0;130;80;1;1;0;0;1;1
+69324;19969;2;160;60.0;150;100;1;1;1;0;1;1
+69326;22117;2;168;66.0;160;90;3;1;1;0;1;1
+69327;19021;2;164;70.0;110;70;1;1;0;0;1;0
+69330;21732;1;157;58.0;134;70;1;1;0;0;1;1
+69331;16669;1;154;63.0;120;80;1;1;0;0;1;0
+69332;15276;1;163;52.0;100;70;1;1;0;0;1;0
+69333;15126;2;175;74.0;120;80;1;1;1;0;1;0
+69334;22567;1;165;85.0;130;90;1;1;0;0;1;0
+69335;18831;1;168;68.0;120;80;1;1;0;0;1;0
+69337;19498;1;163;106.0;120;80;1;1;0;0;0;1
+69338;16158;2;175;80.0;120;80;1;1;1;0;1;0
+69339;18282;1;168;59.0;110;70;1;1;0;0;1;1
+69340;22669;2;167;78.0;110;80;2;1;0;0;1;0
+69342;20573;1;173;76.0;140;90;1;1;0;0;1;1
+69343;18861;2;163;59.0;120;80;1;1;0;0;1;0
+69344;23656;2;165;70.0;120;80;2;1;1;0;0;1
+69346;18100;1;151;66.0;90;60;1;1;0;0;0;0
+69347;18832;1;164;80.0;140;80;3;1;0;0;1;1
+69348;19295;1;170;70.0;120;80;1;1;0;0;1;1
+69349;23234;1;150;70.0;140;90;3;3;0;0;1;1
+69351;21882;1;157;80.0;200;80;1;1;0;0;1;0
+69352;14596;1;166;75.0;120;80;1;1;0;0;1;0
+69353;20380;1;164;74.0;100;80;2;2;0;0;1;0
+69354;22045;1;160;60.0;120;80;1;1;0;0;1;1
+69356;21872;2;180;115.0;180;105;1;1;0;0;0;1
+69358;16638;1;158;48.0;100;70;1;1;0;0;0;0
+69360;21139;1;163;81.0;130;90;3;3;0;0;1;1
+69361;18290;2;156;75.0;130;80;1;1;0;0;1;1
+69362;21326;1;159;85.0;120;80;3;3;0;0;1;1
+69363;21371;1;159;65.0;120;80;1;1;0;0;1;0
+69365;20527;1;175;68.0;120;80;1;1;0;0;1;1
+69367;20449;2;170;94.0;140;80;3;1;0;0;1;1
+69368;19613;1;163;79.0;130;80;1;1;0;0;1;0
+69370;22515;2;178;79.0;160;100;2;2;0;0;1;1
+69371;18962;2;170;115.0;120;80;1;1;0;0;0;1
+69374;16172;2;167;62.0;160;100;1;1;1;0;1;1
+69376;20514;1;157;56.0;110;70;1;1;0;0;1;0
+69377;15406;1;159;70.0;120;80;1;1;0;0;1;0
+69378;20355;2;175;113.0;130;90;1;1;0;0;1;1
+69379;19578;2;160;67.0;140;90;1;1;0;0;1;1
+69380;14799;1;170;80.0;140;90;2;1;0;0;1;1
+69381;23206;2;171;81.0;110;70;1;1;0;0;1;0
+69382;23464;1;162;63.0;145;90;2;1;0;0;1;1
+69383;23349;2;170;69.0;130;90;1;1;0;0;1;1
+69384;16684;1;170;80.0;120;80;1;1;0;0;0;0
+69387;20516;1;165;83.0;115;80;1;3;0;0;0;1
+69388;19781;1;165;68.0;150;100;2;1;0;0;1;1
+69389;22387;1;162;66.0;120;90;1;1;0;0;1;0
+69390;18350;2;180;104.0;180;100;3;2;0;0;1;1
+69391;19795;2;165;82.0;150;90;1;1;0;0;1;1
+69392;15861;1;175;55.0;115;80;1;1;0;0;1;0
+69393;18974;1;168;70.0;120;80;2;1;0;0;1;0
+69396;18320;1;165;60.0;100;70;1;1;0;0;1;0
+69397;20647;2;168;77.0;150;110;1;1;0;0;1;1
+69398;16717;1;165;65.0;140;80;1;1;0;0;0;1
+69399;18119;2;162;55.0;130;80;1;1;0;0;1;0
+69401;14648;1;169;66.0;120;70;1;1;0;0;1;0
+69403;16881;2;166;86.0;130;80;1;2;0;0;1;0
+69405;18253;1;158;77.0;140;90;3;1;0;0;1;1
+69409;21265;1;158;75.0;120;80;1;1;0;0;1;0
+69410;19562;2;160;90.0;140;90;3;1;0;1;1;1
+69411;15861;2;168;60.0;120;80;1;1;0;0;1;1
+69412;21827;1;174;65.0;120;80;1;1;0;0;1;0
+69414;17452;2;170;86.0;140;80;1;1;0;0;0;0
+69415;21068;1;159;76.0;120;80;1;1;0;0;1;0
+69417;20452;1;144;36.0;100;70;1;1;0;0;1;0
+69419;18977;1;164;59.0;120;80;2;2;0;0;1;0
+69420;18294;1;162;75.0;100;70;1;1;0;0;1;0
+69422;18297;2;174;74.0;110;70;2;2;0;0;1;0
+69423;17460;2;175;69.0;150;90;1;1;0;0;0;1
+69426;18071;2;176;109.0;120;80;2;1;0;0;1;1
+69428;21011;2;162;55.0;140;80;1;1;0;0;1;0
+69429;20902;1;158;63.0;140;80;1;1;1;0;1;1
+69432;20586;1;165;67.0;120;80;1;1;0;0;1;1
+69433;21707;2;170;69.0;120;80;1;1;0;0;1;1
+69434;19150;1;163;72.0;120;60;1;1;0;0;1;0
+69435;16856;1;161;65.0;120;80;1;1;0;0;1;0
+69436;16062;1;164;71.0;90;60;3;1;0;0;1;1
+69437;20422;2;170;93.0;140;90;2;1;0;0;1;1
+69439;23306;2;171;86.0;140;90;1;1;0;0;1;1
+69440;16789;1;160;87.0;110;70;1;1;0;0;1;0
+69441;15277;1;158;73.0;100;70;1;2;0;0;1;0
+69442;15162;2;183;67.0;120;80;1;1;0;0;1;0
+69443;16933;1;159;61.0;120;80;1;1;0;0;0;0
+69444;15154;1;174;69.0;120;80;2;1;0;0;1;0
+69446;16076;1;162;64.0;110;70;1;1;0;0;1;0
+69448;17467;1;160;66.0;90;60;1;1;0;0;1;1
+69450;21234;2;180;70.0;120;80;1;1;0;0;1;1
+69451;19078;1;165;75.0;120;70;3;3;0;0;0;1
+69454;23458;1;160;72.0;120;60;1;3;0;0;0;0
+69455;18208;1;166;70.0;120;80;1;1;0;0;1;0
+69456;18340;2;176;88.0;120;80;1;1;1;1;1;0
+69459;18969;1;164;86.0;215;110;3;3;0;0;1;1
+69460;23156;1;155;65.0;150;1100;3;1;0;0;1;1
+69461;16790;2;168;90.0;120;80;1;1;0;0;1;1
+69462;19608;2;155;78.0;140;70;1;1;0;0;1;1
+69463;17691;1;167;65.0;120;80;1;2;0;0;1;1
+69464;21048;1;162;92.0;140;85;1;1;0;0;1;1
+69465;19655;1;158;87.0;160;100;3;1;0;0;1;1
+69467;14426;1;160;58.0;120;80;1;1;0;0;1;0
+69468;23656;2;160;60.0;120;80;1;1;0;0;1;0
+69469;18202;1;168;75.0;120;80;1;1;0;0;0;0
+69470;17361;1;167;93.0;125;83;1;1;0;0;0;0
+69473;20322;1;169;70.0;120;80;3;3;0;0;1;1
+69474;18728;1;164;101.0;150;1000;1;1;0;0;1;1
+69475;14488;2;165;67.0;120;70;1;1;0;0;1;0
+69477;20950;2;169;78.0;120;70;3;3;0;0;0;1
+69479;21226;1;158;82.0;120;80;1;1;0;0;1;0
+69480;19981;2;172;79.0;120;80;1;1;0;0;1;0
+69483;21366;2;171;89.0;140;80;1;1;0;0;1;1
+69486;23518;2;165;68.0;120;80;1;1;1;0;1;0
+69489;18255;1;158;74.0;100;70;1;1;0;0;1;0
+69490;15283;1;161;51.0;110;70;1;1;0;0;1;0
+69491;15325;1;170;79.0;140;90;1;1;0;1;1;1
+69492;21827;2;170;72.0;120;80;1;1;1;1;1;0
+69493;19443;1;168;60.0;120;80;1;1;1;0;1;0
+69494;18848;1;164;91.0;160;100;1;1;0;0;1;1
+69497;14750;2;168;72.0;120;80;1;3;0;0;1;0
+69500;17506;1;159;74.0;150;90;1;1;0;0;1;1
+69501;20904;1;165;78.0;150;100;2;1;0;0;0;1
+69502;23260;1;153;62.0;110;70;1;1;0;0;0;1
+69503;15853;1;152;55.0;100;60;1;1;0;0;1;0
+69505;17304;1;157;78.0;140;80;1;1;0;0;1;1
+69506;19630;1;155;57.0;120;80;3;3;0;0;1;1
+69508;19153;1;170;65.0;120;80;1;1;0;0;1;0
+69509;18855;1;170;60.0;110;70;1;1;0;0;1;0
+69510;21994;1;167;67.0;150;100;1;1;0;0;1;0
+69511;15364;1;162;64.0;120;80;2;1;0;0;1;1
+69512;15854;1;162;78.0;140;89;2;1;0;0;0;1
+69516;22793;1;165;60.0;110;70;1;1;0;0;1;0
+69517;14515;2;167;78.0;120;80;1;1;0;0;0;0
+69518;21033;1;150;83.0;160;100;1;1;0;0;1;1
+69519;16756;1;162;117.0;140;80;3;1;0;0;0;1
+69521;22708;1;151;68.0;130;80;1;1;0;0;1;1
+69524;18293;1;164;75.0;160;90;2;2;0;0;0;1
+69525;14614;1;160;71.0;130;100;1;1;0;0;1;1
+69526;20525;1;169;75.0;120;80;1;1;0;0;1;1
+69528;22819;1;150;78.0;130;80;1;1;0;0;1;1
+69529;19713;1;165;81.0;130;90;2;2;0;0;1;1
+69530;19088;1;164;79.0;120;80;1;1;0;0;1;0
+69531;20205;1;162;92.0;130;80;1;1;0;0;1;0
+69533;18824;2;170;70.0;120;70;1;1;0;0;1;1
+69534;19231;1;155;57.0;100;70;2;2;0;0;1;0
+69535;16222;1;169;65.0;120;80;1;1;0;0;1;1
+69536;16044;2;162;65.0;110;70;1;1;0;0;1;0
+69537;15221;1;164;76.0;130;90;1;1;0;0;1;0
+69538;20337;1;168;75.0;150;90;1;1;0;0;1;1
+69539;16057;2;166;57.0;110;80;2;1;1;0;1;0
+69541;21446;2;178;89.0;120;70;1;1;1;1;1;0
+69542;15949;1;162;70.0;120;80;1;1;0;0;1;0
+69543;20196;2;173;80.0;160;100;1;1;0;0;1;1
+69544;14660;1;151;48.0;120;80;1;1;0;0;1;0
+69547;18966;1;164;60.0;120;80;1;1;0;0;0;0
+69549;16019;1;167;67.0;120;80;1;1;0;0;1;0
+69550;19226;1;165;65.0;120;80;1;1;0;0;1;0
+69553;18805;1;164;71.0;120;80;1;1;0;0;1;0
+69555;19541;1;175;85.0;140;90;1;1;0;0;0;1
+69558;17480;2;166;81.0;120;80;3;1;1;0;1;1
+69559;23157;1;153;68.0;110;80;3;2;0;0;1;1
+69560;15472;2;170;65.0;120;80;1;1;0;0;1;0
+69561;23485;1;175;70.0;120;80;1;1;0;0;1;1
+69562;20258;2;173;55.0;120;80;1;1;0;0;1;1
+69563;19865;2;178;62.0;120;80;1;1;0;0;1;0
+69566;20606;1;161;83.0;150;90;1;1;0;0;1;1
+69567;15201;1;170;65.0;120;80;1;1;0;0;1;0
+69568;15219;2;168;72.0;120;80;1;1;0;0;1;0
+69572;22142;2;169;78.0;120;80;1;1;0;0;1;1
+69573;23137;1;148;56.0;140;80;3;3;0;0;1;1
+69574;21193;1;153;76.0;120;80;3;1;0;0;1;0
+69575;20492;2;167;78.0;120;80;1;1;0;0;1;1
+69577;22591;1;160;80.0;150;80;2;2;0;0;1;1
+69580;17387;1;151;72.0;130;80;2;2;0;0;0;1
+69581;19021;1;156;58.0;110;70;1;1;0;0;1;1
+69582;22612;1;173;74.0;140;80;1;1;0;0;1;1
+69585;15349;2;175;90.0;110;80;1;1;0;0;0;0
+69586;20963;1;163;79.0;120;80;1;1;0;0;1;0
+69587;15845;1;160;75.0;120;80;1;1;0;0;1;0
+69588;19045;2;168;52.0;110;70;1;1;0;0;1;0
+69590;21925;1;170;77.0;105;73;1;1;0;0;1;0
+69591;19822;2;167;89.0;120;80;1;1;1;0;1;0
+69592;15970;2;164;63.0;120;80;1;1;1;0;1;0
+69593;17460;1;155;50.0;110;70;1;1;0;0;1;0
+69594;20326;2;167;70.0;140;90;2;1;0;0;0;1
+69595;19979;2;169;68.0;110;70;1;1;0;0;1;0
+69597;17541;2;165;84.0;160;90;1;1;0;0;1;1
+69598;21048;2;162;87.0;120;80;1;1;1;0;1;0
+69599;18191;1;155;70.0;120;80;1;2;0;0;1;1
+69600;16847;2;172;102.0;130;90;3;3;0;0;1;0
+69602;18139;1;172;81.0;164;94;1;1;0;0;1;1
+69603;21226;2;178;80.0;140;90;3;3;0;0;1;1
+69606;23598;1;166;75.0;120;80;1;1;0;1;0;1
+69607;14438;1;160;62.0;120;80;1;1;0;0;1;0
+69608;22719;2;176;82.0;120;80;1;2;0;0;1;1
+69609;19058;1;170;73.0;130;80;3;3;0;0;1;0
+69610;21136;1;160;90.0;120;80;1;1;0;0;1;1
+69611;16024;1;158;50.0;90;60;1;1;0;0;1;0
+69614;23326;2;158;69.0;200;100;2;2;0;0;0;1
+69615;22736;2;167;65.0;140;90;1;1;0;0;0;0
+69616;22921;1;168;67.0;120;70;1;1;0;0;1;1
+69618;19690;1;152;64.0;130;100;3;3;0;0;1;1
+69619;18006;1;163;68.0;120;80;1;1;0;0;1;0
+69620;16192;1;166;75.0;110;60;2;1;0;0;1;1
+69621;16131;2;176;71.0;110;70;1;1;1;1;1;0
+69622;17597;2;160;64.0;100;70;1;1;1;1;1;0
+69623;22668;1;160;58.0;160;80;2;1;0;0;1;1
+69624;22753;1;155;55.0;140;90;1;1;0;0;1;1
+69625;19688;1;166;66.0;160;90;1;1;0;0;1;1
+69626;18170;1;155;64.0;130;90;1;1;0;0;1;0
+69627;19477;1;163;71.0;110;70;2;1;0;0;1;0
+69628;18371;1;160;100.0;140;90;1;1;0;0;1;1
+69629;18502;1;159;86.0;140;90;1;1;0;0;1;1
+69630;18935;1;163;82.0;110;70;1;1;0;0;1;0
+69631;17990;1;156;65.0;130;80;1;1;0;0;1;0
+69632;20000;1;154;99.0;150;80;1;1;1;0;1;1
+69634;21137;1;172;80.0;150;80;3;3;0;0;1;1
+69635;15246;2;169;71.0;120;80;1;1;1;0;1;0
+69636;19135;1;166;76.0;160;100;1;1;0;0;1;1
+69637;16013;2;176;63.0;100;80;1;3;0;0;1;0
+69638;17561;1;172;62.0;120;90;1;1;0;0;1;1
+69639;21631;1;166;85.0;122;81;1;2;0;0;0;0
+69642;19855;2;170;63.0;130;80;3;3;1;0;1;0
+69643;19517;1;165;71.0;150;1001;2;1;0;0;1;1
+69645;15420;1;154;58.0;110;70;2;1;0;0;0;0
+69646;23426;1;152;52.0;140;90;1;1;0;0;1;1
+69647;20585;1;160;67.0;110;60;1;1;0;0;1;0
+69649;18868;2;184;72.0;120;80;1;1;0;0;1;0
+69650;19685;1;165;59.0;120;80;2;1;0;0;1;0
+69651;19535;1;161;59.0;120;80;1;1;0;0;1;0
+69652;15044;2;170;67.0;110;70;1;1;0;0;1;0
+69653;19134;1;170;74.0;130;90;1;1;0;0;0;1
+69654;15857;2;170;67.0;120;80;1;1;0;0;0;0
+69655;19651;1;162;60.0;130;90;1;1;0;0;1;0
+69656;18396;2;165;62.0;120;80;1;1;1;1;1;0
+69657;18792;1;160;80.0;120;80;1;1;0;0;0;0
+69658;21014;1;158;85.0;140;90;1;2;0;0;0;1
+69659;14465;2;168;69.0;110;70;1;1;0;0;1;0
+69660;19054;1;174;79.0;120;80;1;1;0;0;1;1
+69661;20352;1;145;70.0;120;70;1;1;0;0;1;1
+69662;16964;1;170;69.0;120;80;1;1;0;0;0;0
+69663;17532;2;165;91.0;130;80;3;1;0;0;1;1
+69664;22005;2;165;62.0;120;80;1;1;0;0;0;1
+69665;19731;2;165;68.0;160;100;1;1;0;0;0;1
+69666;20890;2;176;63.0;120;80;2;1;0;0;1;1
+69667;18255;1;170;62.0;120;70;1;1;0;0;0;0
+69668;22601;1;169;72.0;140;80;3;1;0;0;1;0
+69670;22465;1;157;55.0;140;80;1;1;0;0;1;1
+69671;19813;1;162;73.0;150;90;1;1;0;0;1;1
+69672;21867;1;156;76.0;1400;90;1;1;0;0;1;1
+69673;15265;2;167;60.0;110;80;1;1;0;0;1;0
+69674;16619;1;153;99.0;140;1100;3;3;0;0;0;1
+69675;20671;2;173;90.0;130;70;1;1;0;0;1;0
+69678;20955;1;156;75.0;140;90;1;1;0;0;1;1
+69679;20691;1;169;72.0;120;80;1;1;0;0;1;0
+69681;20598;1;152;90.0;120;80;2;1;0;0;0;1
+69683;19580;2;167;80.0;130;90;2;1;0;0;1;0
+69684;18178;1;172;58.0;110;70;1;1;0;0;1;0
+69685;21099;1;152;101.0;130;80;2;2;0;0;0;0
+69687;22028;1;156;86.0;140;80;1;1;0;0;1;1
+69688;18361;2;165;64.0;120;80;1;1;0;0;1;0
+69690;22686;2;167;90.0;130;90;3;1;0;0;0;1
+69691;21051;2;175;84.0;120;80;1;1;0;0;1;0
+69692;22112;1;144;77.0;120;80;1;1;0;0;1;0
+69693;14875;1;174;65.0;120;80;1;1;0;0;1;0
+69694;21121;2;155;55.0;160;1000;1;1;0;0;1;1
+69696;18887;1;168;71.0;150;80;2;1;0;0;1;1
+69697;22500;1;175;80.0;120;80;1;1;0;0;1;1
+69698;19573;1;159;65.0;120;80;1;1;0;1;0;0
+69699;19576;2;160;73.0;170;100;3;2;0;1;1;1
+69700;16274;2;160;64.0;110;80;1;3;0;0;1;0
+69702;18532;1;167;71.0;120;90;3;3;0;0;1;1
+69704;19570;2;175;60.0;100;70;1;1;1;1;1;0
+69707;19662;1;168;84.0;120;80;2;1;0;0;1;0
+69708;21114;1;160;87.0;120;80;1;1;0;0;1;1
+69710;19605;1;156;65.0;120;80;1;1;0;0;1;0
+69711;21816;1;165;70.0;120;80;1;1;0;0;0;0
+69712;23241;2;178;100.0;180;120;2;2;0;0;1;1
+69713;22697;2;182;71.0;110;80;1;1;1;0;1;0
+69715;21108;1;168;65.0;140;100;1;1;0;0;0;0
+69716;19565;1;162;77.0;130;80;2;1;0;0;1;1
+69717;23254;2;157;80.0;120;80;1;1;0;0;1;1
+69718;16993;1;169;78.0;120;80;1;1;0;0;0;0
+69719;19952;1;159;58.0;120;80;2;2;0;0;1;1
+69720;19041;2;186;80.0;120;80;1;1;0;0;1;0
+69721;19931;1;168;64.0;140;90;3;3;0;0;1;1
+69723;18460;1;158;80.0;110;70;1;1;0;0;1;1
+69724;21717;1;154;91.0;120;80;1;1;0;0;1;1
+69725;18943;1;168;67.0;120;80;1;1;0;0;1;0
+69727;17421;1;157;74.0;120;80;1;2;0;0;1;1
+69728;17519;2;158;52.0;120;80;1;1;1;1;1;0
+69730;21292;2;165;65.0;110;70;1;1;0;0;1;1
+69731;16042;2;169;90.0;110;80;1;1;0;0;1;0
+69732;20014;2;174;86.0;85;130;3;1;0;0;1;1
+69734;18864;2;169;82.0;140;90;1;3;1;0;0;0
+69736;22572;1;165;75.0;140;90;1;1;0;0;0;0
+69738;18737;2;178;78.0;180;100;1;1;0;0;1;1
+69742;15283;2;152;53.0;120;80;1;1;0;0;1;0
+69743;15365;2;165;90.0;135;80;3;3;0;0;0;0
+69745;20357;1;167;95.0;140;90;1;2;0;1;1;0
+69746;19930;2;170;74.0;120;80;1;1;0;0;0;1
+69747;21233;2;175;94.0;130;80;1;1;0;0;1;0
+69748;18098;1;165;79.0;140;100;2;2;0;0;1;1
+69749;19827;1;162;88.0;144;91;1;1;0;0;1;0
+69756;23424;1;156;91.0;140;60;3;2;0;0;1;1
+69757;15575;1;152;60.0;11;80;1;1;0;0;1;0
+69758;19016;1;173;90.0;120;80;2;1;0;0;1;1
+69759;19837;1;149;45.0;160;80;1;1;0;0;0;1
+69761;18210;1;164;67.0;90;60;1;1;0;0;1;0
+69762;22407;2;178;78.0;150;90;3;1;0;0;1;1
+69763;19714;1;150;66.0;140;90;1;1;0;0;0;1
+69764;14390;1;165;74.0;145;90;2;1;0;0;1;1
+69765;19526;1;169;72.0;120;80;1;1;0;0;1;0
+69766;21219;1;155;117.0;140;90;1;3;0;0;1;0
+69768;18132;2;168;65.0;120;80;1;1;1;0;0;1
+69769;15950;1;159;69.0;90;60;1;1;0;0;0;0
+69770;19517;1;160;65.0;140;100;3;3;0;0;1;0
+69771;19110;1;160;77.0;120;70;1;1;0;0;0;0
+69772;18113;1;163;63.0;120;80;3;3;0;0;0;0
+69773;16154;1;163;61.0;110;80;1;1;0;0;1;0
+69774;22821;2;174;74.0;120;80;2;1;0;0;1;0
+69775;21365;2;167;82.0;150;90;1;2;0;0;1;1
+69776;21626;2;174;85.0;131;86;1;1;0;0;1;0
+69777;15301;2;172;69.0;130;70;1;1;0;0;1;0
+69779;20720;2;172;102.0;180;90;1;3;0;0;1;1
+69780;16912;2;163;63.0;120;80;3;1;0;0;0;1
+69781;22051;2;170;88.0;150;90;2;3;0;0;1;1
+69782;20458;2;170;68.0;100;70;1;1;0;0;1;0
+69783;16922;2;181;74.0;100;60;1;1;0;0;1;0
+69784;21226;1;157;62.0;110;70;1;1;0;0;1;1
+69785;18360;1;168;65.0;120;80;1;1;0;0;1;0
+69786;21953;1;169;71.0;120;80;1;1;0;0;1;1
+69787;21135;2;169;72.0;130;80;1;1;1;0;1;0
+69788;19670;1;162;81.0;130;95;3;1;0;0;1;0
+69789;21234;2;161;81.0;120;80;1;2;1;1;1;0
+69790;18159;2;162;70.0;12;70;1;1;0;0;1;0
+69791;18479;1;171;79.0;120;80;1;1;0;0;1;0
+69792;21841;1;170;68.0;140;80;1;1;0;0;1;1
+69794;19967;2;170;80.0;120;80;3;1;1;0;1;1
+69795;23244;1;153;74.0;170;90;2;1;0;0;1;1
+69796;21290;2;170;69.0;120;80;1;1;0;0;1;1
+69797;23407;1;158;76.0;150;1000;1;1;0;0;1;1
+69800;18235;2;160;120.0;130;70;1;1;1;0;1;1
+69802;20302;1;161;72.0;120;80;1;1;0;0;1;1
+69804;16703;1;160;60.0;120;80;1;1;0;0;1;0
+69806;16048;2;173;75.0;140;80;3;1;1;0;1;1
+69807;21354;1;154;41.0;130;80;1;1;0;0;1;1
+69808;17415;2;176;84.0;140;90;1;1;0;0;1;1
+69809;20272;1;157;90.0;140;90;1;1;0;0;1;1
+69810;19535;1;163;82.0;130;80;3;1;0;0;1;1
+69812;19831;1;170;73.0;120;80;1;1;0;0;1;0
+69813;16842;1;158;62.0;110;70;1;1;0;0;1;0
+69815;23225;1;159;62.0;120;80;1;1;0;0;0;1
+69816;22679;1;162;113.0;140;80;1;2;0;0;1;1
+69817;15414;1;156;62.0;140;90;1;1;0;0;1;1
+69819;21650;1;161;77.0;120;80;3;1;0;0;0;1
+69821;18535;2;164;60.0;90;140;1;1;0;0;1;1
+69822;21928;2;173;89.0;110;60;3;3;0;0;0;1
+69824;20233;1;165;90.0;140;90;3;2;0;0;0;1
+69825;20429;1;165;65.0;120;80;1;1;0;0;1;0
+69826;19978;2;176;80.0;130;80;1;1;0;0;1;1
+69827;22882;1;152;65.0;145;90;2;1;0;0;1;1
+69828;23311;1;169;110.0;120;80;1;1;0;0;0;1
+69830;21723;1;163;59.0;120;90;1;1;0;0;1;0
+69831;19472;2;150;83.0;130;80;1;1;0;0;0;1
+69832;21877;2;156;78.0;150;100;1;1;0;0;1;1
+69833;21902;1;170;69.0;130;80;1;1;0;0;1;0
+69837;19104;1;155;63.0;130;60;2;1;0;0;1;0
+69838;22446;1;164;80.0;150;90;1;1;0;0;1;1
+69839;20178;1;164;58.0;120;80;1;1;0;0;1;0
+69840;17585;1;169;72.0;100;80;1;3;0;0;1;0
+69842;21945;1;165;60.0;120;80;1;1;0;0;1;0
+69843;20326;1;157;99.0;120;80;1;1;0;0;1;0
+69844;20441;1;153;73.0;140;1000;1;1;0;0;1;1
+69845;16785;1;165;94.0;140;80;1;1;0;0;1;1
+69846;19840;1;185;56.0;120;80;1;1;0;0;1;0
+69848;17377;1;163;62.0;110;80;1;1;0;0;1;0
+69849;16719;1;149;68.0;125;90;1;1;0;0;1;0
+69850;18876;1;156;58.0;110;70;1;1;0;0;1;0
+69851;18902;1;160;82.0;100;70;1;1;0;0;1;0
+69854;22536;1;165;70.0;120;80;1;1;0;0;1;1
+69855;19839;1;168;68.0;120;80;1;1;0;0;1;0
+69857;22483;1;154;60.0;140;100;2;1;0;0;1;1
+69858;16257;1;171;64.0;120;80;1;1;0;0;1;0
+69859;18574;2;178;90.0;140;90;1;1;0;1;1;1
+69860;19527;1;151;75.0;160;1100;1;1;0;0;1;1
+69861;17580;1;171;111.0;120;80;1;1;0;0;1;0
+69862;17502;2;163;90.0;160;1000;1;1;0;0;1;1
+69863;18714;1;156;53.0;90;60;2;3;0;1;1;0
+69864;17494;1;158;63.0;120;80;1;1;0;0;1;1
+69866;21838;1;165;65.0;120;80;1;1;0;0;1;1
+69867;18085;2;168;70.0;140;90;1;1;0;0;1;0
+69868;21122;2;170;78.0;110;70;1;2;0;0;1;0
+69871;21071;2;169;58.0;120;80;2;1;0;0;1;1
+69874;19787;1;160;70.0;110;60;1;1;0;0;1;1
+69875;19052;2;170;80.0;170;120;1;1;0;0;0;1
+69876;20578;1;160;76.0;160;90;3;2;0;0;1;1
+69880;19102;1;158;49.0;90;60;2;1;0;0;0;1
+69881;16717;1;163;75.0;140;90;1;1;0;0;1;0
+69882;17368;1;158;62.0;120;80;1;1;0;0;1;1
+69884;20464;2;172;103.0;150;90;2;1;0;0;1;1
+69885;17850;1;171;70.0;130;80;1;1;0;0;1;1
+69886;16040;1;165;72.0;120;80;1;1;0;0;1;0
+69888;19154;2;168;70.0;110;60;1;1;1;0;1;0
+69891;14549;2;181;90.0;110;70;1;1;0;1;0;0
+69892;18845;1;168;62.0;110;80;1;1;0;0;1;0
+69894;17697;1;165;65.0;130;90;1;1;0;0;1;1
+69896;19117;1;158;61.0;110;70;2;1;0;0;1;0
+69897;21742;1;149;74.0;120;70;2;2;0;0;1;0
+69899;21089;1;159;59.0;110;70;1;1;0;0;1;0
+69900;21940;2;182;117.0;120;80;1;1;0;0;1;1
+69901;21910;1;168;71.0;120;80;1;1;0;0;0;1
+69903;23390;2;182;110.0;140;90;2;1;0;0;0;1
+69904;20281;1;168;112.0;140;1000;1;1;0;0;1;1
+69905;16914;1;160;68.0;110;80;1;1;0;0;1;0
+69907;22132;2;169;118.0;130;80;3;3;0;0;1;1
+69908;21919;1;148;95.0;140;90;2;2;0;0;1;1
+69910;19166;1;164;68.0;120;60;1;1;0;0;0;0
+69911;20179;1;171;74.0;120;80;1;1;0;0;1;0
+69912;15141;2;178;93.0;120;80;3;3;1;1;1;1
+69913;19569;1;153;68.0;120;80;1;1;0;0;1;0
+69914;23430;1;159;80.0;140;90;2;1;0;0;0;1
+69915;18303;1;162;68.0;120;80;1;1;0;0;0;0
+69918;18286;1;157;79.0;110;80;1;1;0;0;1;0
+69919;17444;1;163;73.0;120;80;2;2;0;0;0;0
+69920;20384;1;147;61.0;130;77;1;1;0;1;1;0
+69921;14557;2;178;87.0;110;70;2;1;1;0;1;1
+69922;20353;1;151;53.0;180;100;1;1;0;0;0;1
+69923;23111;1;161;86.0;126;96;3;3;0;0;0;1
+69924;23492;1;152;65.0;120;80;1;1;0;0;1;0
+69926;20524;1;170;70.0;120;80;1;1;0;0;1;0
+69927;16569;1;165;98.0;140;90;2;2;0;0;1;1
+69928;18147;2;170;75.0;110;70;2;1;0;0;1;0
+69929;19667;1;156;67.0;120;90;1;1;0;0;1;1
+69930;18955;1;165;65.0;130;80;3;3;0;0;1;0
+69931;15091;1;161;67.0;110;70;2;2;0;0;1;0
+69932;22567;2;164;67.0;140;90;1;1;1;0;1;0
+69933;18930;1;156;69.0;140;90;1;1;0;0;1;1
+69935;16475;1;159;79.0;160;90;1;1;0;0;1;1
+69937;21790;2;164;89.0;110;90;1;1;0;1;0;1
+69938;20381;1;170;70.0;140;90;1;1;0;0;1;1
+69940;17499;2;170;79.0;120;80;1;1;0;0;0;0
+69941;22529;2;167;69.0;120;80;1;1;0;0;1;0
+69942;19623;1;164;83.0;120;80;1;1;0;0;1;1
+69944;16125;1;170;100.0;110;70;1;1;0;0;1;0
+69945;21967;1;156;91.0;120;80;3;3;0;0;1;1
+69946;22606;1;162;98.0;170;100;3;1;1;0;1;1
+69947;19675;1;170;72.0;120;80;1;1;0;0;1;1
+69948;20310;1;158;62.0;120;70;1;1;0;0;1;1
+69950;18159;1;164;85.0;140;90;3;1;0;0;1;1
+69951;19934;1;165;65.0;100;60;1;1;0;0;0;0
+69952;21777;1;160;78.0;120;80;1;1;0;0;1;1
+69953;23522;1;164;80.0;140;80;2;2;0;0;1;1
+69954;21028;1;155;77.0;160;80;2;1;0;0;1;1
+69955;19749;1;165;60.0;120;80;1;1;0;0;1;0
+69956;16482;2;168;98.0;170;100;1;1;0;0;0;1
+69957;18307;2;173;89.0;160;100;1;1;0;0;1;1
+69958;21204;2;153;83.0;200;130;2;1;0;0;1;1
+69959;21861;1;156;66.0;138;83;1;3;1;0;1;0
+69960;20721;2;174;80.0;120;80;1;1;0;0;1;1
+69961;16674;1;168;92.0;130;90;1;1;0;0;1;1
+69962;19774;1;153;83.0;120;80;1;1;0;0;1;0
+69966;19576;1;151;57.0;120;80;3;1;0;0;1;1
+69967;14431;2;179;82.0;110;70;1;1;0;0;1;0
+69968;19044;1;165;65.0;120;80;1;1;0;0;1;0
+69970;19733;1;164;70.0;120;80;3;3;0;0;1;0
+69971;21859;2;167;83.0;160;90;1;1;0;0;1;1
+69972;15972;1;160;77.0;100;60;1;1;0;0;1;0
+69973;21227;2;174;84.0;160;100;2;2;1;0;1;0
+69975;20368;1;171;80.0;110;70;2;1;0;0;1;0
+69976;21921;2;171;78.0;140;80;3;2;1;1;1;1
+69977;23447;1;158;64.0;130;80;3;1;0;0;1;1
+69978;20352;1;168;62.0;120;80;1;1;0;0;0;0
+69979;18886;1;162;60.0;110;70;1;1;0;0;1;0
+69980;14682;1;168;68.0;130;80;1;1;1;0;1;1
+69981;22078;1;167;86.0;130;90;1;1;0;0;1;1
+69982;21296;2;180;79.0;125;80;1;1;0;0;1;0
+69983;19600;1;162;70.0;140;90;1;1;0;0;1;1
+69984;19889;1;169;71.0;120;80;1;1;0;0;0;0
+69985;15441;1;165;60.0;100;70;1;1;0;0;0;0
+69986;22080;1;180;90.0;150;100;1;1;0;0;1;1
+69987;20921;1;160;73.0;120;80;1;1;0;0;0;1
+69988;18910;1;164;82.0;110;70;1;1;0;0;1;0
+69989;22575;1;164;94.0;120;80;1;1;0;0;1;1
+69991;14838;1;171;79.0;120;80;1;1;0;0;0;0
+69992;19228;2;166;54.0;120;80;1;1;0;0;1;0
+69993;18365;2;182;91.0;110;80;1;3;0;0;0;0
+69996;20898;1;165;85.0;140;80;1;1;0;0;1;1
+69998;20369;1;165;60.0;140;80;1;1;0;0;1;1
+69999;22797;1;150;50.0;160;80;3;3;0;0;1;1
+70000;21147;2;176;75.0;140;90;1;2;0;0;1;1
+70001;20448;1;155;65.0;110;70;1;1;0;0;1;0
+70002;22535;1;164;64.0;130;90;3;1;0;0;1;1
+70004;21674;1;167;82.0;160;90;3;3;0;0;1;1
+70005;21352;1;149;43.0;150;90;1;1;0;0;1;1
+70006;14476;2;171;61.0;110;80;1;1;1;0;1;0
+70008;19771;2;166;87.0;110;70;1;2;0;0;1;1
+70010;18981;1;168;65.0;150;1100;1;1;0;0;0;1
+70011;19016;2;170;62.0;120;60;1;1;0;0;1;0
+70012;18882;2;170;74.0;130;90;1;1;0;0;1;0
+70013;19568;1;163;64.0;120;70;1;1;0;1;1;0
+70016;20432;1;160;70.0;120;70;1;1;0;0;1;1
+70017;18774;1;153;63.0;120;80;1;1;1;0;0;0
+70018;21752;1;144;63.0;180;1000;3;1;0;0;1;1
+70019;22102;1;152;51.0;110;70;1;1;0;0;1;1
+70021;15275;1;165;51.0;120;80;1;1;0;0;1;0
+70022;23144;1;170;95.0;130;80;1;3;0;0;1;1
+70023;17547;1;167;75.0;120;80;1;1;0;0;1;0
+70024;22131;1;151;67.0;110;70;1;1;0;0;1;1
+70025;21290;1;159;56.0;160;80;1;1;0;0;0;1
+70026;21357;2;160;60.0;120;80;1;1;0;0;1;0
+70027;18194;1;164;74.0;130;80;1;1;0;0;1;0
+70028;17709;2;173;76.0;120;80;1;2;0;0;1;0
+70029;19977;1;160;57.0;120;80;1;1;0;0;1;0
+70030;21953;2;155;64.0;140;90;1;1;0;0;1;1
+70031;21928;1;162;76.0;120;80;3;1;0;0;1;1
+70032;15460;2;170;86.0;120;80;1;1;0;0;0;1
+70034;15374;1;167;70.0;130;80;1;1;0;0;1;1
+70035;17500;2;173;66.0;100;70;1;1;1;0;1;1
+70036;18333;1;162;101.0;140;90;1;2;0;0;1;1
+70037;16104;1;156;51.0;120;80;1;1;0;0;1;0
+70038;17368;2;172;72.0;160;80;1;1;0;0;1;0
+70039;18694;1;167;63.0;120;90;3;2;0;0;1;1
+70040;19582;2;150;52.0;120;80;1;1;0;0;0;0
+70041;21033;1;170;65.0;110;90;1;1;0;0;1;0
+70042;22631;1;167;71.0;130;80;1;1;0;0;1;0
+70045;17438;2;168;78.0;140;90;3;1;0;0;1;1
+70047;18828;2;171;70.0;130;90;1;1;0;0;1;0
+70050;18745;1;160;94.0;170;90;1;1;0;0;1;1
+70053;23384;1;169;73.0;110;60;1;1;0;0;1;1
+70056;19593;1;170;92.0;120;80;1;1;0;0;1;0
+70057;20599;1;170;67.0;120;80;2;1;0;0;1;1
+70058;17349;1;160;61.0;110;70;2;1;0;0;1;0
+70059;22630;1;140;44.0;160;80;3;3;0;0;1;1
+70060;20443;1;156;74.0;140;80;2;1;0;0;0;1
+70061;22369;1;154;76.0;120;80;1;1;0;0;0;1
+70069;14557;2;159;60.0;100;70;1;1;1;1;1;0
+70070;20425;1;169;74.0;120;80;1;1;0;0;0;0
+70071;21775;2;168;78.0;120;80;1;3;1;0;1;1
+70074;16815;1;161;64.0;120;80;1;1;0;0;0;0
+70076;18214;1;167;77.0;110;70;1;1;0;0;1;0
+70078;18209;2;160;64.0;140;90;1;1;0;0;1;1
+70079;17385;1;157;70.0;120;70;2;1;0;0;1;1
+70080;15054;2;172;70.0;120;80;3;3;0;0;1;1
+70081;16102;1;178;80.0;120;80;1;1;0;0;0;1
+70083;19572;1;164;76.0;160;90;1;2;0;0;1;1
+70085;19101;2;166;65.0;120;70;1;1;0;0;1;0
+70086;20411;2;174;79.0;150;90;3;3;0;0;1;1
+70089;19703;2;167;71.0;150;100;2;2;0;0;1;1
+70090;17504;1;160;71.0;100;55;1;1;0;0;1;0
+70092;16326;1;155;57.0;140;90;1;1;0;0;1;1
+70094;21334;1;157;99.0;120;80;2;1;0;0;1;1
+70095;19621;1;160;58.0;110;70;1;1;0;0;1;0
+70096;19085;2;165;79.0;105;62;1;1;0;0;1;0
+70099;21289;2;175;78.0;120;80;1;1;0;0;1;1
+70100;22150;1;153;53.0;120;80;1;1;0;0;1;0
+70101;19439;2;168;65.0;120;80;1;1;0;0;1;0
+70102;21788;1;161;54.0;220;120;3;2;0;0;1;1
+70103;19595;2;174;61.0;100;80;1;1;0;0;0;0
+70104;14387;2;174;104.0;130;90;2;1;1;0;1;0
+70105;21937;1;160;78.0;130;80;1;1;0;0;1;1
+70108;18913;2;169;87.0;120;80;1;1;0;0;1;0
+70109;23350;2;174;95.0;120;80;1;1;0;0;1;0
+70110;16736;2;176;85.0;120;70;1;1;1;0;1;1
+70111;15158;2;172;70.0;120;80;1;1;0;0;1;1
+70112;17706;1;167;66.0;110;70;1;1;0;0;1;0
+70114;21927;1;174;69.0;120;80;1;1;0;0;1;0
+70115;15332;2;174;80.0;120;60;1;1;1;0;1;0
+70116;20442;1;160;62.0;120;80;1;1;0;0;1;0
+70117;21201;2;175;67.0;110;70;1;1;1;0;1;0
+70118;19201;1;169;82.0;120;80;3;3;0;0;1;0
+70119;21167;2;181;90.0;110;90;1;1;0;0;1;0
+70121;21922;1;162;78.0;150;100;1;1;0;0;1;1
+70122;14383;1;172;72.0;120;70;1;1;0;0;1;0
+70123;16862;1;153;64.0;150;90;1;1;0;0;1;0
+70125;23350;2;158;73.0;127;83;1;1;1;1;0;0
+70126;14746;1;164;58.0;130;80;1;1;1;0;1;1
+70128;19634;1;157;70.0;170;100;1;1;0;0;1;1
+70129;20517;1;168;84.0;120;80;1;1;0;0;1;0
+70131;16699;1;158;58.0;140;90;1;1;0;0;0;1
+70133;20989;1;158;73.0;140;90;2;1;0;0;1;1
+70134;19729;2;170;85.0;140;90;1;1;1;0;1;1
+70136;15112;1;169;74.0;120;70;1;1;0;0;1;0
+70138;22683;1;165;69.0;130;90;1;1;0;0;1;0
+70140;15932;2;165;70.0;150;80;2;1;0;0;1;0
+70141;18238;1;156;60.0;110;70;1;1;0;0;1;1
+70142;18911;2;162;66.0;120;80;1;1;0;0;1;0
+70143;21928;2;167;65.0;120;80;1;1;0;0;1;1
+70144;23422;1;174;78.0;120;80;1;1;0;0;0;0
+70146;22142;1;165;65.0;120;80;1;1;0;0;0;1
+70147;21026;2;157;68.0;130;90;1;1;0;0;1;1
+70148;21880;1;150;56.0;120;80;1;1;0;0;1;0
+70150;21811;1;167;75.0;120;80;2;2;0;0;1;0
+70152;23279;1;166;69.0;120;80;1;1;0;0;1;1
+70154;23573;1;163;72.0;140;90;1;1;0;0;1;1
+70156;15352;1;163;58.0;130;70;1;1;0;0;1;0
+70157;22551;1;158;45.0;110;70;1;1;0;0;0;0
+70158;23400;1;154;60.0;120;70;1;2;0;0;0;1
+70159;17591;2;165;60.0;130;80;1;1;0;0;0;0
+70160;18543;1;165;54.0;120;80;1;1;0;0;0;0
+70162;23245;1;153;91.0;170;90;3;3;0;0;1;1
+70163;22582;2;184;104.0;140;90;1;1;0;0;1;1
+70165;21764;1;156;67.0;124;84;1;1;0;0;0;0
+70167;19798;1;153;57.0;120;80;1;1;0;0;1;1
+70168;22874;2;170;69.0;160;80;1;1;0;0;1;1
+70169;17008;1;165;65.0;120;80;1;1;0;0;1;0
+70170;20912;1;165;80.0;140;90;3;3;0;0;1;1
+70171;19094;2;167;87.0;160;110;3;1;0;1;1;0
+70172;19507;1;167;64.0;90;60;1;1;0;0;1;0
+70174;14882;2;161;56.0;110;80;1;1;0;0;1;0
+70176;23402;1;148;60.0;150;90;1;3;0;0;0;1
+70177;14680;1;149;61.0;100;70;1;1;0;0;1;0
+70178;14504;2;170;79.0;90;60;1;1;1;1;1;0
+70179;21860;1;167;75.0;120;80;1;2;0;0;1;0
+70180;18109;1;156;81.0;100;70;1;1;0;0;1;0
+70183;22491;1;156;72.0;130;70;1;1;0;0;1;1
+70184;21035;2;174;90.0;155;100;1;1;0;1;1;1
+70185;18951;1;168;72.0;110;80;1;1;0;0;1;0
+70186;22029;2;160;78.0;150;90;3;1;0;0;1;1
+70187;15961;1;160;68.0;120;80;1;1;0;0;1;1
+70188;18053;1;156;83.0;140;110;2;1;0;0;1;1
+70190;14523;1;168;62.0;120;80;1;1;0;0;0;1
+70191;18958;2;165;61.0;120;80;1;1;0;0;1;1
+70192;16155;1;162;60.0;120;100;1;1;1;1;1;0
+70193;16770;1;165;60.0;90;50;1;1;0;0;1;0
+70194;21964;1;155;67.0;130;80;3;3;0;0;1;1
+70195;15338;1;165;68.0;130;80;1;1;0;0;1;0
+70197;19538;2;174;80.0;120;80;3;1;0;0;1;1
+70198;20443;1;160;70.0;160;90;1;1;0;0;1;1
+70199;15299;1;165;100.0;100;70;1;3;0;0;1;1
+70200;16856;1;159;62.0;120;80;1;1;0;0;1;0
+70201;16624;1;176;74.0;120;80;1;1;0;0;1;1
+70202;19800;1;165;57.0;100;70;1;1;0;0;1;0
+70206;23317;2;168;78.0;120;80;1;1;0;0;1;1
+70207;15274;1;164;58.0;120;80;1;1;0;0;0;0
+70208;17300;2;172;92.0;140;90;3;1;0;0;0;1
+70209;21348;1;168;106.0;130;90;1;1;0;0;0;1
+70210;20475;1;163;79.0;110;70;1;1;0;0;1;0
+70211;23210;1;156;49.0;110;70;2;1;0;0;1;0
+70219;23439;1;149;76.0;150;90;1;1;0;0;1;0
+70220;21889;2;164;97.0;120;80;1;1;0;0;1;0
+70221;18264;1;170;65.0;110;70;1;1;0;0;1;0
+70222;19623;2;174;168.0;125;90;2;1;0;1;1;0
+70223;23256;1;164;95.0;130;80;1;1;0;0;0;1
+70224;22512;2;172;80.0;120;80;1;1;0;0;1;1
+70226;20384;1;170;77.0;120;70;1;1;0;0;1;0
+70227;22500;1;160;82.0;160;80;2;1;0;0;0;1
+70229;19283;2;178;90.0;150;1100;1;1;1;1;1;1
+70230;20416;2;175;82.0;110;80;1;1;0;0;1;0
+70234;19510;1;160;83.0;120;80;1;1;0;0;1;0
+70235;20162;1;165;92.0;140;90;1;1;0;0;1;1
+70237;22769;2;174;103.0;150;80;3;3;1;0;1;1
+70239;22489;1;165;65.0;120;80;1;1;0;0;0;1
+70241;18088;2;178;79.0;120;80;1;1;0;0;1;0
+70242;14525;1;170;64.0;100;70;1;1;0;0;1;0
+70244;18785;2;184;87.0;11;60;1;1;1;0;1;1
+70245;16855;1;162;89.0;120;80;1;1;0;0;1;0
+70246;21288;2;168;85.0;120;80;1;1;0;0;1;1
+70247;19967;1;158;125.0;150;100;1;1;0;0;0;1
+70248;18343;1;161;70.0;160;100;1;1;0;0;0;1
+70249;18152;1;162;84.0;130;100;3;1;0;0;1;1
+70253;21039;1;158;53.0;150;100;1;1;0;0;1;1
+70254;23590;2;160;68.0;120;79;1;1;0;0;1;1
+70255;22330;1;157;97.0;110;70;1;1;0;0;1;1
+70256;18757;2;164;76.0;120;80;1;1;0;0;1;0
+70257;18338;1;157;47.0;120;90;1;2;0;0;1;0
+70258;15167;1;156;90.0;100;70;1;1;0;0;1;0
+70259;20155;1;172;77.0;120;80;1;1;0;0;1;1
+70260;18958;1;161;82.0;97;57;2;1;0;0;1;1
+70261;21058;2;166;56.0;120;80;3;1;0;0;1;1
+70262;18307;1;155;75.0;120;80;1;1;0;0;1;0
+70263;15871;1;163;77.0;200;1400;1;1;0;0;1;1
+70266;14471;1;170;95.0;110;70;1;1;0;0;0;0
+70267;20196;2;171;81.0;140;90;1;1;0;0;1;1
+70269;22032;1;167;71.0;110;80;1;1;0;0;1;0
+70271;16752;2;169;74.0;120;80;1;1;0;0;1;1
+70273;17374;1;168;65.0;120;80;1;1;0;0;1;0
+70274;15299;2;173;97.0;140;80;1;1;0;0;1;1
+70275;21970;1;165;94.0;110;70;1;1;0;0;1;1
+70276;16008;1;165;80.0;110;80;1;1;0;0;1;0
+70278;19033;1;168;75.0;90;60;1;1;0;0;1;0
+70281;22756;2;165;76.0;130;90;2;1;1;0;1;0
+70282;19408;2;161;82.0;120;80;2;1;1;1;1;1
+70283;19050;2;173;65.0;120;80;1;1;1;0;1;0
+70285;17484;2;180;86.0;140;90;1;1;0;0;0;1
+70287;16611;1;156;69.0;100;60;2;2;0;0;0;1
+70291;19743;1;163;65.0;120;80;1;1;0;0;1;1
+70292;21806;1;154;94.0;140;90;3;1;0;0;1;1
+70293;17511;1;161;60.0;120;80;1;1;0;0;1;0
+70297;19667;2;162;78.0;140;90;1;1;0;0;0;1
+70299;21819;1;168;60.0;140;70;1;1;0;0;0;1
+70300;21116;1;159;77.0;120;80;1;2;0;0;1;0
+70305;21988;2;177;80.0;130;80;1;2;0;0;1;1
+70309;16639;1;156;69.0;110;80;1;1;0;1;1;0
+70310;21224;1;158;69.0;140;80;1;1;0;0;1;1
+70311;15503;2;168;74.0;130;80;3;1;0;0;1;1
+70312;21175;2;162;79.0;140;90;1;2;0;0;1;1
+70314;14567;1;162;60.0;90;60;1;1;0;0;1;0
+70315;14521;1;151;61.0;140;100;3;1;1;0;1;1
+70317;20300;2;168;114.0;130;80;1;1;0;0;1;0
+70318;23427;2;179;80.0;120;80;2;1;0;0;1;1
+70319;21049;2;175;81.0;130;80;2;1;1;0;1;0
+70320;18046;1;165;65.0;110;70;1;1;0;0;0;0
+70321;21211;2;163;95.0;120;80;1;1;0;0;0;1
+70322;21404;1;175;73.0;120;70;1;1;0;0;1;0
+70323;18991;1;165;60.0;120;80;1;1;0;0;1;0
+70324;14539;1;170;80.0;140;90;2;1;0;0;1;1
+70327;19747;2;175;79.0;120;80;1;1;0;0;1;0
+70329;18894;1;159;82.0;122;80;1;1;0;0;1;0
+70330;22646;1;158;75.0;130;70;2;1;0;0;0;1
+70331;18442;1;171;76.0;120;80;1;1;0;0;1;0
+70332;21250;1;162;74.0;130;70;1;1;0;0;1;1
+70333;22030;2;149;65.0;140;90;1;1;0;0;1;1
+70334;19741;1;164;79.0;150;90;1;1;0;0;1;1
+70337;18887;2;164;65.0;120;80;1;1;0;0;0;0
+70338;21146;1;167;78.0;110;70;2;1;0;0;1;0
+70339;22461;1;155;94.0;140;90;1;1;0;0;1;1
+70340;18333;1;155;84.0;140;90;1;1;0;0;0;1
+70342;15971;1;165;60.0;120;80;1;1;0;0;1;0
+70346;23340;2;162;78.0;120;90;1;1;1;0;1;1
+70347;15323;2;175;86.0;140;80;1;1;0;0;1;0
+70348;20545;1;159;110.0;140;80;3;1;0;0;1;1
+70349;18049;2;179;80.0;140;90;3;1;0;0;1;0
+70352;14744;1;151;49.0;110;70;1;1;0;0;0;0
+70353;14494;1;158;85.0;130;90;1;1;0;0;0;1
+70354;21969;1;175;90.0;160;90;1;2;0;0;1;0
+70355;19743;1;163;79.0;140;90;3;1;0;0;1;1
+70356;20687;1;158;103.0;120;80;3;3;1;0;1;1
+70357;15289;1;154;82.0;120;70;1;1;0;0;0;0
+70359;18883;1;157;51.0;120;70;1;1;0;0;1;0
+70360;18341;1;165;65.0;120;80;1;1;0;0;0;0
+70361;23418;1;165;92.0;160;100;1;1;0;0;1;1
+70362;18946;2;170;78.0;140;90;1;1;0;0;1;1
+70363;23297;1;167;68.0;120;80;1;1;0;0;1;1
+70364;20230;2;178;82.0;110;70;2;2;1;0;1;0
+70366;20529;2;158;64.0;120;70;1;1;0;1;1;0
+70367;22108;1;154;55.0;130;80;1;1;0;0;0;0
+70369;18295;1;165;65.0;120;80;3;3;0;0;0;0
+70372;15236;2;173;127.0;120;90;3;1;0;0;0;1
+70373;20625;1;157;87.0;140;90;2;2;0;0;1;0
+70374;19040;1;160;60.0;110;80;1;1;0;0;1;0
+70375;19201;2;165;80.0;110;80;1;1;0;0;1;1
+70376;21192;1;164;59.0;105;76;1;1;0;0;1;1
+70377;14426;1;166;65.0;120;80;3;1;0;0;1;0
+70378;20338;1;149;66.0;120;80;2;1;0;0;1;0
+70380;19775;2;166;66.0;110;70;1;2;0;0;1;0
+70381;21830;2;170;70.0;120;80;1;1;0;0;1;1
+70383;17588;1;168;99.0;160;100;2;2;0;0;0;1
+70384;14697;1;147;64.0;110;70;1;3;0;0;1;0
+70385;19834;2;168;63.0;120;80;1;1;0;0;0;1
+70386;19054;1;159;61.0;120;70;1;1;0;0;1;0
+70389;20446;1;164;80.0;120;80;1;1;0;0;1;0
+70390;19581;2;174;69.0;180;90;1;2;1;0;1;1
+70392;21404;2;173;70.0;120;80;1;1;0;0;0;1
+70393;19576;2;169;64.0;130;80;1;1;0;0;1;0
+70394;16788;2;163;78.0;120;80;1;1;0;0;0;0
+70396;15524;1;158;64.0;120;80;1;1;0;0;1;0
+70400;22045;1;157;86.0;170;190;2;2;0;1;1;1
+70401;20394;2;165;68.0;120;80;1;1;0;0;1;1
+70402;22546;2;160;75.0;120;80;2;1;0;0;0;1
+70403;15516;2;170;68.0;140;80;2;1;0;0;1;1
+70407;21022;1;167;75.0;110;80;2;1;1;0;1;1
+70411;15306;1;154;58.0;120;80;1;1;0;0;1;0
+70413;21329;2;160;60.0;120;80;1;1;0;0;1;1
+70414;19673;1;170;75.0;120;80;1;1;0;0;1;1
+70415;17567;1;186;83.0;100;60;1;1;0;0;1;0
+70416;17274;2;182;130.0;130;90;1;1;0;0;0;1
+70417;18330;1;155;63.0;150;90;1;1;0;0;1;1
+70419;18754;1;165;90.0;120;80;1;1;0;0;1;0
+70420;23388;2;148;40.0;110;75;1;1;0;0;1;1
+70422;22589;1;164;77.0;120;80;1;2;0;0;1;0
+70423;17607;1;159;72.0;110;80;2;1;1;0;1;0
+70424;14573;1;168;58.0;90;60;1;1;0;0;1;0
+70427;16755;1;165;73.0;150;90;1;1;0;0;1;1
+70428;21764;1;139;66.0;120;80;2;1;0;0;1;1
+70430;17570;1;159;75.0;150;90;1;1;0;0;1;1
+70431;20499;2;177;81.0;100;90;3;1;0;0;1;0
+70432;18056;1;159;103.0;120;80;1;1;0;0;1;0
+70433;16814;2;164;59.0;120;90;1;1;0;0;1;0
+70434;23367;2;166;62.0;130;80;1;1;0;0;1;1
+70435;19034;1;151;76.0;120;60;1;1;0;0;1;1
+70436;19700;2;166;67.0;120;80;1;1;0;0;1;1
+70437;22483;1;160;86.0;150;90;1;1;0;0;1;1
+70438;22038;2;166;85.0;140;80;1;1;0;0;0;1
+70439;21756;2;174;83.0;180;90;1;1;0;0;0;1
+70442;18874;1;163;73.0;140;90;1;1;0;0;1;1
+70443;21632;1;161;85.0;130;80;3;1;0;1;0;1
+70444;20778;2;170;75.0;120;80;1;1;0;0;1;0
+70445;14692;1;165;63.0;120;80;1;1;0;0;1;0
+70446;22528;2;176;72.0;120;80;1;1;0;0;1;1
+70448;15882;1;165;102.0;180;1000;1;1;0;0;1;1
+70450;18827;1;150;51.0;100;70;2;1;0;0;1;0
+70452;16257;1;160;60.0;120;80;1;1;0;0;1;1
+70454;15202;1;152;68.0;100;50;1;1;0;0;1;0
+70455;18401;1;164;58.0;100;70;3;3;0;0;1;0
+70456;15377;2;178;61.0;100;60;1;1;0;0;1;0
+70457;22603;1;163;87.0;160;100;1;1;0;0;1;1
+70460;22042;1;159;112.0;130;90;3;3;0;0;0;1
+70461;22617;1;155;70.0;170;90;3;1;0;0;1;1
+70462;21849;1;167;76.0;120;80;1;3;0;0;1;1
+70463;16053;2;170;76.0;120;80;1;1;1;0;1;0
+70464;19015;2;166;79.0;160;1110;3;3;0;1;1;1
+70465;19098;1;162;69.0;120;80;1;1;0;0;1;0
+70467;19669;2;170;70.0;120;80;1;1;0;0;0;0
+70468;20967;1;155;88.0;130;80;1;1;0;0;1;1
+70469;14445;2;173;92.0;120;80;1;1;1;0;1;0
+70470;21359;2;178;77.0;120;80;1;2;0;0;1;0
+70471;22505;1;153;69.0;140;90;1;1;0;0;1;1
+70472;23214;2;180;109.0;160;100;1;2;0;0;1;1
+70473;21843;2;157;64.0;120;80;2;1;0;0;1;0
+70475;15533;1;164;66.0;120;70;1;1;0;0;1;0
+70476;22649;2;170;74.0;120;80;1;1;0;0;1;1
+70477;20582;1;157;63.0;140;90;1;1;0;0;1;1
+70478;21058;1;164;79.0;130;90;3;3;0;0;1;0
+70480;19009;1;169;100.0;110;80;2;1;0;0;1;1
+70482;18809;1;160;55.0;120;80;1;1;0;0;1;0
+70483;20441;1;162;59.0;160;100;2;1;0;0;1;1
+70484;16843;1;161;75.0;100;80;2;1;0;0;1;0
+70485;20419;2;160;77.0;110;80;3;1;0;0;1;1
+70487;22634;1;167;59.0;130;90;1;1;0;0;1;1
+70488;16806;1;171;70.0;120;60;1;1;0;0;1;0
+70489;16721;1;161;57.0;110;70;1;1;0;0;1;0
+70490;21784;2;177;88.0;130;90;1;1;0;0;0;1
+70492;23222;1;163;67.0;130;80;1;1;0;0;0;0
+70493;18367;1;160;57.0;120;80;1;1;0;0;1;0
+70494;20376;2;178;75.0;160;100;3;1;1;0;1;1
+70496;22384;2;168;66.0;140;90;2;1;0;0;0;1
+70498;22414;2;153;55.0;140;80;2;1;0;0;0;0
+70499;17652;1;172;98.0;155;95;1;1;0;0;1;1
+70501;21028;1;156;65.0;140;80;3;1;0;0;1;1
+70502;23464;2;175;69.0;130;70;1;1;0;0;1;0
+70504;23211;2;144;120.0;130;80;1;1;0;0;1;0
+70505;23123;1;159;73.0;130;90;2;1;0;0;0;1
+70506;15130;1;155;47.0;110;70;1;1;0;0;1;0
+70507;20365;1;164;69.0;110;60;1;1;0;0;1;0
+70508;15402;1;168;74.0;120;80;1;1;0;0;1;1
+70509;14469;1;157;56.0;115;70;1;1;0;0;1;0
+70510;16621;2;175;61.0;120;80;1;1;0;0;0;0
+70511;19103;2;173;70.0;130;80;1;1;0;0;0;1
+70512;21760;1;165;69.0;130;80;1;1;0;0;0;1
+70515;16820;1;164;95.0;120;80;2;1;0;0;0;0
+70516;19641;2;160;60.0;120;80;1;1;0;0;1;0
+70517;21942;1;160;70.0;130;80;1;1;0;0;1;0
+70518;23170;2;173;100.0;160;90;3;1;1;0;0;1
+70519;18318;1;160;70.0;130;90;3;1;0;0;0;1
+70523;22690;2;160;60.0;130;90;1;1;0;0;1;1
+70525;21059;2;178;90.0;110;60;1;1;0;0;1;0
+70526;16708;1;174;88.0;100;50;1;1;0;0;1;0
+70527;22123;2;173;68.0;140;70;1;3;0;0;1;1
+70528;19611;1;152;92.0;125;90;1;1;0;0;0;1
+70529;19642;1;149;75.0;100;80;1;1;0;0;1;0
+70530;17536;1;163;60.0;120;80;1;2;0;0;0;0
+70531;21281;2;170;68.0;120;80;3;3;0;0;1;1
+70532;19748;1;174;65.0;120;80;1;1;0;0;1;1
+70535;19326;2;178;75.0;140;90;1;1;0;0;1;1
+70538;23448;1;165;60.0;120;80;1;1;0;0;1;1
+70541;22504;1;148;59.0;120;80;1;1;0;0;1;1
+70542;18099;1;160;83.0;120;80;1;1;0;0;1;1
+70544;16858;1;180;72.0;120;80;1;1;0;0;0;0
+70545;22641;1;155;65.0;110;70;1;1;0;0;1;1
+70546;18873;1;153;75.0;130;70;1;1;0;0;1;1
+70547;18965;2;173;68.0;120;80;1;1;0;0;1;0
+70548;19093;2;174;81.0;120;70;1;1;0;0;1;0
+70549;14659;2;163;65.0;120;80;1;1;0;0;1;1
+70550;19097;1;165;75.0;135;99;2;1;0;0;0;1
+70552;18214;1;164;75.0;110;70;2;2;1;0;1;0
+70553;18855;1;167;96.0;140;90;1;1;0;0;1;1
+70554;17609;1;157;68.0;110;70;1;1;0;0;1;1
+70555;18126;1;169;67.0;130;80;1;1;0;0;1;0
+70556;22552;2;171;81.0;140;90;1;1;0;0;1;1
+70557;18319;2;173;89.0;150;1000;1;1;0;0;1;1
+70558;21142;1;169;73.0;140;90;1;1;0;0;1;1
+70559;20654;2;169;75.0;140;90;2;1;0;0;1;1
+70560;22590;1;168;77.0;130;70;1;1;0;0;0;1
+70561;14828;1;159;59.0;160;80;2;1;0;0;1;1
+70562;20980;2;178;75.0;120;80;2;1;0;0;1;1
+70564;21684;2;170;65.0;120;80;1;1;0;0;1;0
+70565;19567;1;165;60.0;100;60;1;2;0;0;1;0
+70566;23371;2;170;70.0;120;80;3;1;0;0;1;1
+70567;21198;1;160;65.0;130;80;1;1;0;0;1;1
+70568;19705;1;175;60.0;150;1000;2;1;0;0;1;1
+70569;20387;1;150;55.0;110;90;1;1;0;0;1;0
+70570;22094;2;178;93.0;130;90;2;1;0;0;1;0
+70571;16744;1;164;88.0;150;100;1;1;0;0;1;1
+70572;14620;2;169;67.0;110;70;1;1;0;0;1;0
+70574;21991;2;170;64.0;160;90;1;1;0;0;0;1
+70577;16676;1;168;58.0;120;80;1;1;0;0;1;0
+70578;17582;1;162;58.0;120;80;1;1;0;0;1;0
+70580;17592;1;168;70.0;140;90;1;1;0;0;0;1
+70581;19549;2;181;58.0;100;70;1;1;0;0;1;0
+70582;22021;2;166;68.0;120;80;1;1;0;0;1;1
+70583;23488;1;158;84.0;150;89;1;1;0;0;0;1
+70584;20950;1;147;78.0;140;80;1;1;0;0;1;0
+70585;16714;1;154;62.0;90;60;1;1;0;0;1;0
+70586;21431;1;158;58.0;120;80;1;1;0;0;1;0
+70592;19827;1;164;78.0;130;80;1;1;0;0;1;0
+70593;21105;1;165;86.0;120;80;2;1;0;0;1;1
+70594;16139;2;180;75.0;100;70;1;1;0;0;1;0
+70596;20045;1;165;68.0;120;80;3;3;0;0;1;0
+70597;17502;1;150;89.0;120;90;1;1;0;0;1;0
+70598;20360;1;165;66.0;120;80;1;3;0;0;1;0
+70599;21666;1;164;78.0;140;90;1;3;0;0;1;0
+70600;15338;2;170;82.0;110;70;1;1;0;0;0;0
+70601;22085;1;157;60.0;130;80;1;1;0;0;1;1
+70604;23416;1;160;97.0;180;1000;1;1;0;0;1;1
+70605;17600;1;159;74.0;120;80;1;1;0;0;1;0
+70607;18818;2;168;71.0;140;80;1;1;0;0;1;1
+70608;16381;2;167;73.0;130;90;1;1;0;0;1;0
+70609;16716;2;173;60.0;90;60;1;1;0;0;1;0
+70610;19532;1;154;64.0;140;100;2;1;0;0;1;1
+70611;18092;1;165;78.0;120;80;1;1;0;0;0;0
+70612;20478;2;177;98.0;130;70;1;1;1;0;1;1
+70613;17417;2;174;89.0;120;90;1;1;0;0;1;0
+70614;21034;1;159;83.0;120;80;2;1;0;0;1;0
+70616;22610;1;156;92.0;140;80;2;1;0;0;0;1
+70617;14585;1;170;65.0;90;60;1;1;0;0;1;0
+70618;20237;2;180;85.0;120;90;1;1;0;0;1;0
+70621;19567;1;155;67.0;110;80;1;1;0;0;0;1
+70622;19717;1;156;69.0;110;70;2;3;0;0;0;1
+70625;22005;1;159;100.0;120;80;1;2;0;0;1;0
+70626;21042;1;151;83.0;190;60;3;1;0;0;1;0
+70628;21828;1;159;82.0;120;80;1;1;0;0;1;0
+70629;18343;1;164;65.0;120;80;1;1;0;0;1;0
+70630;20634;1;159;67.0;140;90;1;1;0;0;1;1
+70631;20929;1;154;64.0;140;90;1;1;0;0;1;1
+70633;15032;2;175;83.0;110;80;1;1;0;0;1;0
+70635;22429;2;184;116.0;140;90;1;1;0;0;0;1
+70637;21222;2;170;73.0;150;90;1;1;0;0;1;1
+70638;22097;2;175;116.0;120;70;2;3;0;0;1;1
+70639;18981;1;161;75.0;120;80;1;1;0;0;0;0
+70640;23238;2;173;85.0;140;80;1;2;0;0;1;1
+70641;21964;2;166;70.0;120;90;1;1;1;0;1;0
+70643;22701;2;160;75.0;140;80;1;1;0;0;1;1
+70644;23407;2;176;84.0;120;80;1;1;0;0;1;0
+70647;16848;2;168;72.0;140;90;1;1;0;0;1;1
+70649;21096;1;163;59.0;120;80;1;1;0;0;1;1
+70651;18357;1;162;65.0;150;100;1;1;0;0;1;0
+70652;19759;2;168;95.0;120;80;1;2;0;0;1;0
+70654;19043;1;164;68.0;100;70;1;1;0;0;1;0
+70656;21199;1;168;89.0;130;80;1;1;0;0;1;0
+70657;19647;1;176;110.0;150;90;3;2;0;0;1;1
+70659;15999;1;166;62.0;120;80;1;1;0;0;0;0
+70660;16501;1;165;70.0;140;80;2;1;0;0;1;0
+70661;18175;1;163;83.0;120;80;1;1;0;0;1;1
+70662;23309;1;157;78.0;140;90;1;1;0;0;1;1
+70663;17529;1;160;75.0;110;60;1;1;0;0;1;0
+70665;21860;1;172;79.0;120;80;1;1;0;0;1;0
+70667;18031;1;170;69.0;120;60;1;1;0;0;1;0
+70668;19013;1;165;65.0;125;80;1;1;0;0;1;1
+70669;17918;1;160;88.0;100;70;1;1;0;0;1;0
+70670;18183;1;166;65.0;110;70;1;1;0;0;1;1
+70672;19025;1;165;74.0;110;70;1;1;0;0;0;1
+70674;15973;1;168;63.0;120;80;1;1;0;0;1;0
+70675;19053;1;152;49.0;170;90;1;1;0;0;1;1
+70676;17411;1;161;94.0;120;80;1;1;0;0;1;1
+70677;20921;1;148;75.0;130;80;3;1;0;0;1;1
+70679;20594;1;157;67.0;90;60;2;1;0;0;1;0
+70680;17496;2;178;84.0;190;60;1;1;0;0;1;1
+70683;23568;2;156;64.0;120;80;3;3;0;0;1;1
+70684;18185;1;168;69.0;120;80;1;1;0;0;1;1
+70685;20486;1;164;87.0;130;80;3;1;0;0;0;1
+70686;15231;1;159;60.0;90;70;1;1;0;0;0;0
+70687;17517;1;160;58.0;130;80;1;1;0;0;1;1
+70690;18846;1;155;56.0;120;80;1;1;0;0;1;0
+70691;22522;1;172;77.0;120;80;1;1;0;0;0;1
+70692;22923;2;160;60.0;120;80;1;1;0;0;0;0
+70694;19919;1;159;40.0;150;70;1;1;0;0;1;1
+70695;21954;1;155;98.0;120;80;1;1;0;0;1;1
+70696;23362;1;156;78.0;120;80;1;1;0;0;0;1
+70698;19722;1;162;62.0;120;80;1;1;0;0;1;0
+70700;17644;2;172;79.0;140;90;1;2;1;0;0;1
+70701;19634;1;170;80.0;110;70;1;1;0;0;1;0
+70703;20627;2;162;65.0;120;80;1;1;0;0;1;0
+70704;15151;1;168;75.0;110;70;1;1;0;0;1;0
+70705;18212;2;171;79.0;140;90;1;1;0;0;1;1
+70706;16735;1;169;65.0;120;80;1;1;0;0;1;0
+70707;21051;1;154;74.0;140;80;3;3;0;0;1;1
+70708;20330;1;162;67.0;200;140;1;3;0;0;1;1
+70709;15052;1;153;100.0;130;70;1;1;0;0;1;0
+70711;18963;1;156;60.0;140;90;1;1;0;0;1;1
+70712;19318;1;165;87.0;120;80;3;3;0;0;1;0
+70713;20366;1;177;69.0;110;80;1;1;0;0;1;0
+70714;18262;1;165;60.0;110;70;1;1;0;0;1;0
+70716;21159;1;163;59.0;130;70;1;1;0;0;0;0
+70718;15303;2;174;72.0;120;80;1;1;0;0;1;0
+70720;21770;1;164;82.0;140;80;1;1;0;0;1;1
+70722;18364;1;156;70.0;110;70;1;1;0;0;1;0
+70723;14552;1;171;67.0;110;70;1;1;0;0;1;0
+70724;18207;1;160;65.0;110;80;1;1;0;0;1;0
+70725;18367;1;170;57.0;120;80;1;1;0;0;0;0
+70729;23124;1;150;56.0;140;100;1;1;0;0;1;1
+70731;18499;2;180;75.0;110;70;1;1;0;0;1;0
+70732;23133;1;169;78.0;120;80;1;1;0;0;0;1
+70734;22577;2;168;56.0;140;90;1;2;0;0;1;1
+70735;18844;1;158;44.0;115;80;1;1;0;0;1;0
+70736;16811;1;160;70.0;150;100;3;1;0;0;1;1
+70737;23335;1;164;70.0;130;80;2;1;0;0;1;1
+70739;21229;1;168;88.0;140;90;3;1;0;0;1;0
+70740;16810;1;154;62.0;120;80;1;1;0;0;1;1
+70741;18220;1;155;79.0;120;80;1;1;0;0;1;1
+70742;20998;2;163;66.0;120;80;1;1;0;0;1;0
+70743;18330;1;162;65.0;120;80;1;1;0;0;1;0
+70746;15375;1;165;85.0;120;80;1;1;0;0;0;0
+70747;19576;1;160;64.0;130;90;1;1;0;0;1;1
+70749;16771;1;165;65.0;120;80;1;1;0;0;1;0
+70750;19198;1;160;65.0;110;80;2;1;0;0;1;0
+70751;20312;1;152;81.0;120;80;2;1;0;0;1;0
+70752;18838;1;163;73.0;150;90;1;1;0;0;1;1
+70753;14471;2;177;72.0;120;80;1;1;0;0;1;0
+70754;21414;1;160;56.0;120;70;1;1;0;0;0;1
+70756;18421;2;165;60.0;120;80;1;1;0;0;0;0
+70757;19529;1;169;72.0;130;90;1;1;0;0;1;0
+70758;19151;2;178;76.0;120;80;1;1;0;0;1;0
+70760;23358;1;170;65.0;120;90;1;1;0;0;1;1
+70761;17475;1;168;70.0;110;70;1;1;0;0;1;0
+70762;19561;2;164;78.0;120;80;1;1;0;0;1;0
+70763;18158;2;167;85.0;120;80;1;1;0;0;1;0
+70765;14673;2;164;72.0;100;70;1;1;0;0;1;0
+70767;19553;1;158;61.0;130;80;2;2;0;0;1;1
+70770;19560;1;156;101.0;150;100;2;1;0;0;1;0
+70771;21915;2;165;67.0;120;80;1;1;0;0;1;0
+70773;14437;1;157;89.0;120;80;1;1;0;0;1;1
+70775;15511;2;176;68.0;120;80;1;1;0;0;0;0
+70777;21020;1;158;68.0;120;80;1;1;0;0;1;1
+70778;16869;2;170;66.0;120;80;1;1;0;0;1;0
+70779;19625;2;170;100.0;150;100;3;1;0;0;1;1
+70780;20388;1;157;67.0;160;90;1;1;0;0;1;1
+70781;16798;2;155;54.0;120;80;1;1;0;0;1;0
+70785;16069;1;168;58.0;110;60;1;1;0;0;1;0
+70786;19860;1;163;65.0;110;70;2;1;0;0;0;1
+70787;22404;2;169;114.0;140;90;1;1;0;0;0;1
+70788;16703;2;169;68.0;120;80;1;1;0;0;1;0
+70790;15313;1;158;56.0;150;90;3;3;0;0;1;1
+70791;18767;1;170;77.0;120;90;1;1;0;0;1;0
+70792;22679;1;159;86.0;120;80;1;1;0;0;1;1
+70794;20404;1;162;71.0;140;80;1;1;0;0;0;0
+70795;14597;1;169;64.0;120;80;1;1;0;0;1;0
+70796;19661;1;156;59.0;120;80;1;1;0;0;1;0
+70798;18133;1;154;64.0;120;80;1;1;0;0;1;0
+70799;21072;2;181;89.0;120;80;1;1;0;0;1;1
+70800;19949;2;174;78.0;150;90;2;3;0;0;1;1
+70801;16185;1;156;72.0;120;80;1;1;0;0;1;1
+70802;20488;1;168;62.0;120;80;1;1;0;0;0;0
+70803;19795;1;163;81.0;130;70;2;1;0;0;1;1
+70805;15920;1;153;66.0;120;70;2;1;0;0;1;0
+70806;18426;2;165;65.0;120;80;1;1;0;0;1;0
+70807;21675;1;165;78.0;130;90;2;1;0;0;1;0
+70808;17997;1;156;56.0;110;70;1;1;0;0;1;0
+70809;14590;1;170;65.0;120;80;1;1;0;0;0;0
+70811;19843;1;157;58.0;120;80;1;1;0;0;1;0
+70812;14579;1;137;63.0;110;70;1;1;0;0;0;0
+70813;21955;2;170;71.0;120;70;1;1;0;0;1;0
+70815;21971;2;160;58.0;120;80;1;1;0;0;1;0
+70816;20532;1;153;60.0;120;80;3;3;0;0;1;0
+70818;19645;2;163;67.0;120;80;1;1;0;0;1;1
+70819;23441;2;165;60.0;120;80;1;1;0;0;1;1
+70820;14430;1;157;55.0;120;80;1;1;0;0;1;1
+70821;20555;1;162;83.0;120;80;1;3;0;0;1;1
+70822;21270;1;154;75.0;120;80;1;1;0;0;1;1
+70823;18832;1;160;76.0;100;80;1;1;0;0;1;0
+70824;14669;1;150;61.0;120;70;1;1;0;0;1;1
+70825;18977;2;170;73.0;130;80;1;1;0;0;0;0
+70826;21231;1;154;72.0;120;80;1;1;0;0;1;1
+70827;20489;1;154;58.0;110;70;1;1;0;0;1;0
+70831;18339;2;178;80.0;120;80;1;3;0;0;1;0
+70832;19715;2;168;76.0;120;80;1;1;1;1;0;0
+70833;15489;1;163;62.0;150;80;1;1;0;0;0;1
+70834;16098;1;170;59.0;140;90;2;1;0;0;1;1
+70835;21215;1;155;65.0;120;80;2;2;0;0;1;0
+70837;15466;1;172;75.0;100;70;1;1;0;0;0;0
+70838;21087;1;150;64.0;130;90;1;2;0;0;1;0
+70839;14628;1;174;96.0;140;100;2;2;0;0;1;1
+70840;20298;2;172;105.0;150;100;3;1;0;0;1;1
+70846;16736;1;158;69.0;120;80;1;2;0;0;1;0
+70847;19885;1;154;71.0;110;80;1;1;0;0;1;0
+70849;17024;1;165;65.0;140;100;2;1;0;0;1;0
+70850;20437;1;161;90.0;110;70;1;1;0;0;1;0
+70855;16541;1;156;77.0;110;70;1;1;0;0;1;1
+70856;19886;2;170;78.0;120;60;1;1;0;1;1;0
+70860;21841;2;162;70.0;140;80;2;2;0;0;1;0
+70862;22614;1;155;74.0;150;100;1;1;0;0;1;1
+70863;20337;1;164;76.0;140;90;3;3;0;0;1;1
+70864;18342;2;169;81.0;130;90;3;3;0;0;1;1
+70865;15231;1;173;70.0;120;70;1;1;0;0;1;0
+70866;18318;2;160;74.0;120;80;3;3;0;0;1;1
+70868;14626;2;174;87.0;172;80;1;1;0;0;1;1
+70869;21253;1;169;70.0;120;80;1;1;0;0;1;1
+70871;22573;1;156;69.0;140;80;1;1;0;0;0;1
+70872;21806;1;158;74.0;110;70;1;1;0;0;0;0
+70873;19923;1;157;71.0;120;90;1;1;0;1;1;0
+70874;16090;1;165;65.0;110;80;1;1;0;0;1;0
+70877;20306;2;178;76.0;140;90;2;1;1;0;1;1
+70878;14441;2;174;84.0;90;60;1;1;0;1;0;0
+70880;22613;2;185;92.0;130;80;1;1;1;0;1;0
+70881;18298;2;176;87.0;100;80;2;2;0;1;1;0
+70882;16959;1;159;63.0;140;90;1;1;0;0;1;1
+70883;18797;1;172;72.0;110;80;1;1;0;0;0;0
+70884;21926;1;158;92.0;120;80;1;1;0;0;1;0
+70885;22099;2;172;95.0;120;80;1;1;1;0;1;0
+70886;20591;1;160;58.0;120;80;1;1;0;0;1;1
+70887;21325;2;175;82.0;160;90;1;1;1;0;1;1
+70888;20380;2;169;77.0;130;90;1;1;0;0;1;0
+70891;18159;2;176;87.0;120;80;1;1;0;0;1;0
+70892;18172;1;165;72.0;120;80;1;1;0;0;1;0
+70893;19150;1;170;68.0;120;80;1;1;0;0;1;0
+70894;15368;1;170;49.0;90;60;1;1;0;0;1;0
+70895;19614;1;160;75.0;120;80;2;1;0;0;1;1
+70896;21769;1;158;87.0;150;100;3;3;0;1;1;1
+70897;18772;1;157;64.0;130;80;3;3;0;0;1;1
+70898;16828;1;154;80.0;120;80;2;1;0;0;1;1
+70899;21630;1;153;58.0;120;80;3;1;0;0;1;1
+70900;20756;2;178;68.0;140;1000;2;3;0;0;1;1
+70901;19090;1;170;75.0;120;60;1;1;0;0;1;0
+70902;21424;1;170;68.0;120;80;1;1;0;0;1;0
+70903;20208;1;163;107.0;120;80;3;3;0;0;0;1
+70904;22819;1;158;85.0;140;90;3;1;0;0;1;1
+70905;23559;1;151;65.0;110;70;2;2;0;0;0;1
+70909;18505;1;165;75.0;130;90;1;1;1;1;1;0
+70910;18749;2;156;70.0;140;90;2;1;0;0;1;1
+70911;19495;1;168;87.0;100;70;1;1;0;0;1;0
+70913;20263;2;171;89.0;130;90;2;1;0;0;1;1
+70914;18256;1;164;102.0;160;90;2;1;0;0;1;1
+70916;18990;1;154;70.0;120;80;2;2;0;0;1;0
+70917;21931;1;170;69.0;120;80;1;1;0;0;1;0
+70918;18164;1;157;70.0;130;79;1;1;0;0;0;0
+70920;16812;1;165;62.0;100;70;1;1;0;0;1;0
+70921;14364;1;161;78.0;120;80;1;1;0;0;0;1
+70922;18768;2;171;87.0;150;90;1;1;0;0;1;1
+70923;18950;2;170;110.0;140;80;1;3;0;0;1;0
+70924;21169;1;175;75.0;110;80;1;1;0;0;0;1
+70925;15981;1;155;88.0;120;60;1;1;0;0;0;0
+70926;20368;1;168;71.0;120;80;1;1;0;0;1;0
+70928;17726;2;180;102.0;130;60;1;1;1;0;1;0
+70929;15930;1;150;78.0;90;60;1;3;0;0;1;0
+70930;17435;1;161;82.0;120;80;1;1;0;0;1;0
+70931;19807;2;189;95.0;140;90;1;1;0;1;1;1
+70932;21618;1;160;80.0;120;80;1;1;0;0;1;0
+70933;18855;1;159;56.0;90;60;2;1;0;0;0;0
+70934;22505;1;153;55.0;170;90;1;1;0;0;1;1
+70936;18823;2;161;75.0;130;80;1;1;1;0;1;0
+70937;18253;1;156;60.0;120;80;1;1;0;0;1;0
+70938;19043;1;166;78.0;130;80;3;3;0;0;1;0
+70939;21156;2;170;80.0;150;100;2;1;0;0;1;1
+70940;20954;2;152;56.0;160;1000;1;1;0;0;1;1
+70941;19770;1;169;69.0;110;80;1;1;0;0;1;0
+70942;22126;1;167;59.0;120;80;1;1;0;0;1;0
+70943;21433;1;156;66.0;120;80;2;1;0;0;1;0
+70944;23414;1;140;72.0;154;88;2;2;0;0;1;1
+70945;20409;1;168;65.0;120;80;1;1;0;0;0;0
+70948;21936;2;169;74.0;120;70;1;1;0;1;1;0
+70950;23179;1;164;80.0;130;90;1;1;0;0;1;0
+70954;22376;1;156;114.0;140;80;1;1;0;0;1;1
+70955;19635;2;172;95.0;150;96;1;1;0;1;1;1
+70956;21076;1;152;70.0;120;80;1;1;0;0;1;0
+70960;18191;1;158;63.0;140;70;3;1;0;0;1;1
+70961;16160;2;178;75.0;120;70;1;1;0;0;1;0
+70962;23380;2;175;80.0;150;100;3;3;0;0;1;1
+70963;18057;2;165;62.0;120;80;1;1;0;0;1;0
+70964;21905;1;162;133.0;140;90;2;1;0;0;1;1
+70965;16742;2;158;74.0;120;80;1;1;0;0;1;0
+70966;19099;1;164;72.0;120;80;1;3;0;0;1;0
+70967;23441;2;176;80.0;130;80;3;2;0;0;1;0
+70968;14574;1;168;68.0;120;80;2;1;0;0;1;0
+70970;23343;1;159;75.0;110;70;1;1;0;0;1;0
+70971;21840;1;166;70.0;130;80;1;1;0;0;1;0
+70972;19857;1;160;80.0;140;90;3;1;0;0;1;1
+70973;19228;1;163;62.0;120;60;3;3;0;0;1;0
+70975;22003;1;158;66.5;140;90;2;1;0;0;1;1
+70976;21196;2;174;80.0;120;80;1;1;0;0;0;0
+70977;21882;2;173;84.0;140;100;3;1;0;0;1;0
+70979;20540;1;156;64.0;130;80;2;2;0;0;1;1
+70980;14590;2;166;73.0;120;80;1;1;1;1;1;0
+70981;22706;2;174;82.0;130;70;3;1;0;0;1;1
+70983;16801;2;167;65.0;110;70;1;3;0;0;1;0
+70985;21790;2;160;68.0;110;70;1;1;0;0;1;0
+70986;17327;2;168;85.0;120;80;1;1;0;0;0;1
+70987;20443;1;161;63.0;140;80;1;1;0;0;1;1
+70990;22642;1;172;82.0;120;80;1;1;0;0;1;0
+70991;15314;1;162;130.0;120;80;2;1;0;0;1;0
+70994;19109;2;169;74.0;120;80;1;1;0;0;1;1
+70996;17787;2;171;75.0;110;80;1;1;1;0;1;0
+70998;18449;1;161;69.0;120;80;1;1;0;0;1;0
+71001;18229;2;176;108.0;140;100;1;1;0;0;0;1
+71003;15942;1;168;69.0;100;80;1;1;0;0;1;0
+71004;19788;1;156;60.0;120;80;1;1;0;0;0;1
+71005;19527;1;156;60.0;110;60;1;1;0;0;1;0
+71007;16647;1;160;81.0;130;90;1;1;0;0;1;0
+71008;16321;2;165;75.0;130;80;1;1;1;1;1;1
+71009;23437;1;159;85.0;130;85;3;3;0;0;1;1
+71010;15195;2;178;75.0;120;75;1;1;1;0;1;0
+71012;23412;1;162;65.0;80;100;1;1;0;0;0;1
+71013;16122;1;162;91.0;120;80;1;1;0;0;1;0
+71014;19693;1;156;80.0;140;90;2;1;0;0;1;1
+71016;21668;1;163;88.0;140;90;1;1;0;0;1;0
+71017;19489;1;158;56.0;160;90;1;1;0;0;1;1
+71018;19721;1;158;130.0;140;1000;3;3;0;0;1;0
+71020;19835;1;174;66.0;120;80;1;1;0;0;1;0
+71023;23218;2;163;68.0;150;100;2;1;0;0;0;0
+71024;18354;1;167;110.0;120;80;1;1;0;0;1;0
+71025;22393;2;156;70.0;140;88;1;1;0;0;1;1
+71026;16669;1;158;60.0;120;80;1;1;0;0;1;1
+71028;16630;1;165;88.0;95;60;1;1;0;0;0;0
+71029;15888;1;169;102.0;150;80;1;3;0;0;1;1
+71031;18850;2;180;75.0;120;80;1;1;0;0;1;0
+71032;17608;1;157;59.0;120;80;1;1;0;0;0;0
+71033;19698;1;163;63.0;120;80;1;1;0;0;1;1
+71034;21321;2;182;89.0;120;80;1;1;1;0;1;0
+71035;20451;1;170;72.0;12;90;1;1;0;0;1;1
+71037;18210;1;161;84.0;120;80;1;1;0;0;1;0
+71038;14603;1;157;62.0;100;80;1;1;0;0;0;0
+71039;21023;2;168;95.0;140;90;1;1;0;1;1;1
+71040;21952;1;165;58.0;130;70;1;1;0;0;1;0
+71041;16909;2;174;70.0;120;70;1;1;0;0;1;1
+71042;14673;2;183;95.0;130;80;1;1;1;1;1;0
+71043;19681;2;171;76.0;110;70;1;2;0;0;1;1
+71044;18983;1;169;69.0;160;100;1;1;0;0;1;1
+71045;17289;1;150;76.0;110;70;1;1;0;0;0;0
+71046;18956;1;165;67.0;120;80;1;1;0;0;1;0
+71047;23481;1;156;105.0;140;90;3;1;0;0;1;1
+71049;20271;1;167;117.0;140;100;3;3;0;0;1;0
+71050;22026;1;159;74.0;120;80;1;1;0;0;1;0
+71052;16056;1;170;62.0;110;70;1;1;0;0;1;0
+71053;19905;2;160;52.0;120;80;1;1;0;0;0;0
+71054;17500;2;168;62.0;120;80;1;1;0;0;0;1
+71055;18218;2;162;70.0;120;80;3;3;0;0;0;0
+71056;18938;2;172;79.0;130;90;2;2;0;0;1;0
+71058;18312;2;173;92.0;140;90;2;3;0;0;1;1
+71061;21015;1;164;60.0;130;80;1;1;0;0;0;1
+71064;21157;1;160;60.0;122;80;1;1;0;0;0;0
+71065;20358;2;173;58.0;120;80;1;1;0;0;1;0
+71068;14584;2;171;87.0;180;90;1;1;0;0;0;1
+71069;21001;1;162;80.0;150;1000;1;1;0;0;1;1
+71070;22629;1;157;91.0;130;80;1;1;0;1;1;1
+71071;14713;1;157;59.0;120;80;1;1;0;0;1;0
+71072;14529;1;155;90.0;100;70;1;1;0;1;1;0
+71074;19070;2;170;55.0;120;80;1;1;0;0;1;0
+71076;18994;1;165;90.0;110;80;3;1;0;0;1;1
+71077;17442;1;164;65.0;120;80;1;1;0;0;1;0
+71078;18090;2;176;78.0;140;90;1;1;0;0;1;1
+71079;21072;1;155;83.0;160;80;1;2;0;0;1;1
+71081;21873;2;174;80.0;150;1000;2;1;0;0;1;1
+71082;21142;1;164;70.0;120;80;1;1;0;0;1;0
+71083;21378;1;168;65.0;120;80;1;1;0;0;1;1
+71084;15787;1;167;73.0;100;70;1;1;0;0;1;0
+71085;19976;1;162;91.0;120;80;2;1;0;0;1;0
+71086;19833;2;161;54.0;130;80;1;1;1;0;1;0
+71087;23492;2;159;61.0;130;90;1;1;1;0;0;1
+71088;16844;2;171;89.0;140;80;1;1;1;0;1;1
+71089;19707;1;160;72.0;120;80;1;1;0;0;0;1
+71090;23312;1;165;65.0;120;79;1;1;0;0;1;1
+71091;18829;1;165;72.0;140;100;2;1;0;0;1;1
+71093;21341;2;171;69.0;120;80;1;1;0;0;0;1
+71094;16216;1;158;55.0;90;60;1;1;0;0;1;0
+71096;19655;2;160;70.0;150;100;1;1;1;0;1;1
+71097;23426;1;144;79.0;150;90;1;2;0;0;1;1
+71098;23284;1;160;81.0;130;80;1;1;0;0;1;0
+71100;20614;1;163;80.0;130;80;1;1;0;0;1;1
+71101;18892;2;180;96.0;130;100;1;1;0;0;1;0
+71102;19801;1;159;60.0;140;80;2;1;0;0;1;1
+71103;20620;1;160;60.0;130;80;1;1;0;0;1;1
+71104;18144;2;168;59.0;120;80;1;1;0;0;1;0
+71105;19181;1;160;80.0;120;80;1;1;0;0;0;0
+71106;21454;1;150;53.0;140;80;1;1;0;0;1;1
+71107;16773;2;163;65.0;120;80;1;1;0;0;1;0
+71113;20917;1;164;57.0;110;80;1;1;0;0;0;0
+71115;18341;1;162;64.0;120;80;1;1;0;0;1;0
+71116;20461;1;164;81.0;120;80;2;2;0;0;1;1
+71119;18987;1;165;72.0;140;80;1;1;0;0;1;1
+71120;23228;2;168;80.0;150;80;2;1;0;0;1;1
+71121;21211;1;158;79.0;140;90;2;1;0;0;1;1
+71122;17415;1;167;76.0;150;80;1;1;1;0;1;1
+71123;21196;2;169;75.0;120;80;1;1;0;0;1;0
+71124;18052;1;158;80.0;120;80;2;2;0;0;1;1
+71125;21764;1;142;61.0;120;80;1;1;0;0;1;0
+71128;19111;1;157;93.0;120;80;1;1;0;0;1;0
+71129;23198;1;164;96.0;170;90;1;1;0;0;1;1
+71130;18177;1;159;87.0;110;70;1;1;0;0;1;1
+71132;18368;2;171;97.0;110;80;1;1;0;0;1;0
+71133;17415;2;174;69.0;120;80;1;1;0;0;1;0
+71134;23312;1;169;57.0;120;80;1;1;0;0;0;1
+71135;22637;2;172;96.0;160;90;3;2;0;0;1;1
+71137;18230;2;183;80.0;130;80;1;1;1;0;1;0
+71138;15251;1;148;64.0;130;80;1;1;0;0;1;0
+71139;16763;2;159;63.0;120;70;1;1;0;0;0;0
+71140;19532;1;152;60.0;100;60;1;1;0;0;0;0
+71141;15339;1;165;86.0;160;100;2;1;0;0;1;1
+71142;21929;2;171;85.0;125;80;1;1;1;0;1;1
+71143;21997;2;158;62.0;120;80;1;3;0;0;1;1
+71146;18057;1;164;64.0;110;75;1;2;0;0;1;0
+71147;19982;1;169;70.0;140;90;3;1;0;0;1;1
+71148;18044;2;173;85.0;120;80;1;1;1;0;1;1
+71149;20363;1;162;71.0;130;80;1;1;0;0;1;1
+71150;16146;1;163;67.0;120;80;1;1;0;0;1;0
+71151;22603;1;154;51.0;110;70;1;1;0;0;1;0
+71152;20485;2;170;71.0;120;80;2;1;0;0;1;1
+71155;15293;2;175;70.0;120;80;1;1;0;0;1;0
+71156;21817;1;153;48.0;150;90;1;1;0;0;1;1
+71157;18872;2;169;57.0;116;80;1;1;1;1;1;0
+71158;18856;2;160;60.0;120;80;1;1;0;0;1;1
+71160;21068;1;146;91.0;110;70;1;1;0;0;1;0
+71161;18494;2;170;75.0;120;80;1;1;0;0;1;0
+71163;16828;1;150;87.0;110;80;3;1;0;0;1;1
+71165;22524;1;149;54.0;120;80;1;1;0;0;1;0
+71167;20366;2;173;75.0;150;80;1;1;0;0;1;1
+71168;21942;2;173;83.0;120;80;2;1;1;1;1;1
+71169;16156;1;173;58.0;100;70;2;1;0;0;1;0
+71170;21873;2;168;84.0;120;80;1;1;0;0;1;0
+71171;19624;2;171;67.8;145;85;1;1;1;0;1;1
+71173;21765;1;153;82.0;113;90;2;1;0;1;0;1
+71174;19675;2;168;60.0;130;80;1;1;0;0;1;0
+71175;16759;2;172;105.0;160;90;1;1;0;0;1;1
+71176;19295;1;165;73.0;130;80;1;1;0;0;1;0
+71178;18291;2;170;68.0;130;90;1;1;0;0;1;1
+71180;21837;2;170;74.0;130;100;2;1;0;0;1;0
+71181;20583;2;163;62.0;140;80;1;1;1;1;1;1
+71182;21420;1;165;65.0;120;80;3;3;0;0;1;1
+71183;19185;1;166;65.0;140;80;1;1;0;0;1;1
+71184;20335;2;172;76.0;120;80;1;1;0;0;1;1
+71185;21198;1;168;66.0;120;80;1;1;0;1;1;0
+71186;21952;1;158;90.0;120;80;2;1;0;0;1;1
+71187;21922;2;170;95.0;150;90;1;1;0;0;0;1
+71188;20613;1;160;89.0;130;70;1;1;0;0;0;0
+71189;21142;1;165;60.0;120;80;1;1;0;0;1;0
+71192;23184;1;164;79.0;140;90;3;1;0;0;1;1
+71194;18932;1;160;60.0;120;70;1;1;0;0;0;1
+71196;22580;1;165;71.0;90;70;1;1;0;0;0;1
+71197;16271;2;174;70.0;110;70;1;1;1;0;1;0
+71199;21909;2;163;67.0;120;80;1;1;1;0;1;1
+71200;22615;1;164;81.0;130;89;1;1;0;0;1;0
+71201;20334;1;160;60.0;140;70;1;1;0;0;0;1
+71202;16585;2;182;90.0;135;85;1;1;1;0;0;1
+71204;19699;1;160;72.0;110;70;1;1;0;0;1;0
+71205;19068;1;161;75.0;110;80;2;3;0;0;1;0
+71206;20679;1;160;60.0;120;80;3;3;0;0;1;1
+71207;18760;1;157;93.0;130;70;1;1;0;0;1;0
+71208;19677;2;180;82.0;120;60;1;2;0;0;0;0
+71209;21275;1;161;71.0;120;80;1;1;0;0;1;0
+71210;17644;2;172;71.0;120;80;1;1;1;1;1;0
+71211;20435;1;152;76.0;110;70;3;2;0;0;1;1
+71212;22392;1;163;70.0;140;100;1;1;0;0;1;1
+71214;18161;2;186;90.0;80;120;1;1;0;0;1;0
+71215;18478;2;168;70.0;120;80;1;1;0;0;0;0
+71216;16014;2;167;75.0;120;80;1;1;0;1;1;0
+71220;18453;1;169;84.0;110;80;2;1;0;0;1;0
+71221;21233;2;180;94.0;160;53;1;1;1;1;1;1
+71222;22714;1;153;76.0;120;70;1;1;0;0;1;1
+71223;15378;2;161;76.0;110;80;2;1;0;0;1;1
+71224;20468;2;171;74.0;120;80;2;1;0;0;0;1
+71225;18880;1;166;70.0;110;70;1;1;0;0;0;0
+71227;16531;1;158;48.0;110;70;1;1;0;0;1;0
+71228;19651;2;176;118.0;170;120;1;1;0;0;0;1
+71229;21142;1;160;60.0;130;80;1;1;0;0;1;0
+71230;20267;1;168;74.0;120;80;1;1;0;0;1;0
+71231;18135;1;162;69.0;110;80;1;1;0;0;1;0
+71232;17503;2;170;85.0;150;100;3;1;0;0;1;1
+71233;15985;2;168;72.0;120;80;1;1;1;0;1;0
+71234;18380;1;169;67.9;120;70;2;1;0;0;1;0
+71235;22676;2;158;77.0;160;100;1;1;1;0;1;1
+71238;21812;1;163;99.0;150;100;3;3;1;0;1;1
+71239;19159;1;165;62.0;120;70;1;1;0;0;0;0
+71240;20407;1;168;65.0;120;80;1;1;0;0;0;1
+71242;22517;1;150;55.0;100;60;3;1;0;0;1;0
+71243;22672;1;148;77.0;160;90;2;1;0;0;1;1
+71244;22640;2;172;89.0;120;80;1;1;1;0;0;1
+71246;14434;2;175;90.0;110;70;1;1;0;0;1;0
+71247;20309;1;156;66.0;110;80;1;1;0;0;1;0
+71248;20655;1;160;85.0;120;90;2;1;0;0;0;0
+71249;20900;2;171;89.0;120;70;1;1;0;0;1;0
+71250;19589;2;175;72.0;120;80;1;1;0;0;1;0
+71252;16206;2;172;68.0;120;80;1;1;1;0;1;0
+71253;19750;1;163;60.0;120;80;1;1;0;0;1;0
+71256;23309;1;155;70.0;120;80;1;2;0;0;1;0
+71257;20463;1;165;65.0;120;80;1;1;0;0;1;1
+71258;16313;2;174;82.0;120;80;1;1;0;0;1;0
+71259;18302;1;160;66.0;120;80;1;1;0;0;0;0
+71260;16159;1;165;65.0;110;70;1;1;0;0;0;1
+71261;18269;1;165;65.0;120;80;1;1;0;0;1;0
+71263;22583;2;179;116.0;130;70;1;1;0;0;0;1
+71264;20269;1;155;65.0;120;80;1;1;0;0;1;0
+71265;19784;1;155;62.0;160;90;2;1;0;0;1;1
+71266;22088;1;156;76.0;120;80;1;3;0;0;1;1
+71267;16025;1;161;88.0;120;90;1;1;0;0;0;0
+71268;19557;1;160;78.0;130;90;3;3;0;0;1;1
+71270;19772;1;150;50.0;110;70;3;1;0;0;1;1
+71273;15796;1;172;98.0;120;80;1;1;0;0;1;0
+71274;18849;2;183;89.0;120;80;1;1;0;0;1;0
+71275;19502;1;177;83.0;150;90;2;2;1;1;0;1
+71276;16924;1;162;115.0;150;100;1;2;0;0;1;1
+71277;18222;1;165;63.0;90;60;1;1;0;0;1;0
+71278;21846;1;155;68.0;120;80;1;1;0;0;1;0
+71280;14645;1;164;73.0;120;80;2;2;0;0;1;0
+71281;22093;1;165;63.0;140;90;1;2;0;0;1;0
+71283;17489;2;169;72.0;130;80;1;1;0;1;1;1
+71285;22771;1;158;60.0;130;90;1;1;0;0;1;0
+71286;20552;2;168;83.0;120;70;1;2;0;0;1;0
+71287;21720;1;165;70.0;100;70;2;1;0;0;1;0
+71289;20222;1;159;77.0;130;80;1;1;0;0;0;1
+71290;22486;1;160;76.0;120;80;1;1;0;0;1;1
+71291;21345;1;162;59.0;120;80;1;3;0;0;1;1
+71292;18092;1;158;73.0;120;80;2;2;0;0;1;1
+71293;21758;2;164;84.0;120;80;1;1;0;0;1;0
+71294;19481;1;162;64.0;120;70;1;1;0;0;1;0
+71295;16071;2;171;80.0;140;80;1;2;1;0;1;1
+71296;22696;1;155;61.0;140;80;1;1;0;0;1;1
+71297;23109;2;179;79.0;160;90;3;1;0;1;1;0
+71298;18782;1;170;95.0;145;90;1;1;0;0;1;1
+71299;18944;1;156;62.0;140;90;1;1;0;0;1;1
+71300;20416;1;157;66.0;150;100;2;1;0;0;1;0
+71301;20526;1;162;60.0;120;90;1;1;0;0;1;1
+71302;21078;1;168;74.0;120;80;1;1;0;0;0;1
+71303;18893;2;170;85.0;130;80;1;1;0;0;1;1
+71304;21323;1;158;78.0;140;90;1;1;0;0;1;0
+71308;16127;2;168;72.0;120;80;1;2;1;0;1;0
+71309;17579;1;163;45.0;120;80;1;1;0;0;1;0
+71310;19808;1;152;78.0;150;90;3;1;0;0;0;1
+71311;17265;2;172;74.0;120;80;2;1;0;0;1;0
+71312;23191;2;175;81.0;90;60;1;1;1;0;1;0
+71313;22038;2;172;76.0;120;80;3;3;0;0;1;1
+71314;20552;1;165;71.0;120;80;1;1;0;0;1;0
+71316;18498;1;166;69.0;100;80;1;1;0;0;0;1
+71317;22047;1;165;65.0;120;79;1;2;0;0;0;1
+71318;18928;1;164;84.0;110;70;1;1;0;0;1;0
+71321;23227;2;166;62.0;120;80;1;1;0;0;0;0
+71322;18943;1;153;63.0;100;70;1;1;0;0;1;0
+71323;22360;2;170;80.0;130;80;2;1;0;0;1;1
+71324;20951;2;169;75.0;130;80;3;1;0;0;1;1
+71325;19026;1;170;71.0;140;90;1;1;0;0;1;1
+71326;20266;1;165;59.0;120;80;1;1;0;0;0;0
+71327;19486;1;158;74.0;121;80;1;2;0;0;0;0
+71330;19646;1;158;80.0;130;100;1;1;0;0;1;1
+71331;16038;1;158;59.0;120;80;2;1;0;0;1;0
+71333;18936;2;164;90.0;140;100;1;2;0;0;1;1
+71334;20395;1;160;66.0;110;70;2;1;0;0;1;0
+71335;18873;2;171;82.0;120;80;1;3;0;0;1;0
+71336;18855;1;158;95.0;160;1200;1;1;0;0;0;1
+71338;20993;1;164;76.0;140;90;1;1;0;0;0;1
+71340;14456;2;175;63.0;120;80;1;1;1;0;1;0
+71341;22608;1;166;89.0;140;90;1;3;0;0;1;1
+71345;17801;1;163;88.0;120;60;2;1;0;0;1;0
+71346;17382;1;155;63.0;180;100;1;1;0;0;1;1
+71347;20462;1;162;81.0;120;80;3;2;0;0;0;1
+71349;14735;1;166;69.0;130;90;3;3;0;0;1;1
+71350;22146;1;158;97.0;140;80;1;1;0;0;1;0
+71351;22707;2;170;90.0;120;80;1;1;0;0;1;0
+71353;20550;2;182;68.0;150;100;2;1;0;0;1;1
+71354;15148;1;158;64.0;150;80;1;2;0;0;1;0
+71355;19608;2;172;72.0;130;80;1;1;0;0;1;1
+71356;16760;2;170;68.0;120;80;1;1;0;0;1;0
+71358;17457;1;164;62.0;110;70;1;1;0;0;1;0
+71360;19794;2;163;80.0;130;70;1;1;0;0;0;1
+71361;20292;2;177;81.0;120;80;1;1;1;0;1;1
+71362;18378;1;160;56.0;120;70;1;1;0;0;0;0
+71366;20180;2;166;95.0;120;70;2;1;1;0;1;1
+71367;23519;1;159;69.0;120;80;1;1;0;0;1;0
+71369;18909;2;176;72.0;120;80;1;1;0;0;1;0
+71370;23278;1;145;68.0;130;90;2;1;0;0;1;1
+71371;21168;2;159;66.0;120;80;1;1;0;0;0;0
+71372;20379;1;165;82.0;130;70;1;1;0;0;1;1
+71373;19202;2;175;80.0;120;80;1;1;0;0;1;1
+71374;18072;1;164;70.7;100;70;1;1;0;0;1;0
+71376;23411;2;175;88.0;160;80;1;1;0;0;1;1
+71377;17494;1;155;55.0;120;80;1;1;0;0;0;0
+71379;18114;2;179;92.0;120;80;2;3;0;0;1;1
+71380;18982;1;173;52.0;120;80;1;1;0;0;1;0
+71381;17955;1;153;72.0;140;90;1;1;0;0;1;0
+71382;20350;1;164;60.0;105;80;2;2;0;0;1;0
+71383;20180;1;150;96.0;150;90;1;1;0;0;1;1
+71384;16924;2;170;70.0;140;90;1;3;0;0;1;1
+71385;21304;1;168;91.0;150;100;3;3;0;0;1;0
+71386;16740;2;170;75.0;120;80;2;1;0;0;1;1
+71387;20516;1;156;86.0;120;70;1;1;0;0;1;0
+71389;18114;1;168;50.0;111;71;2;1;0;0;1;0
+71391;16120;2;168;71.0;150;90;1;1;0;0;1;1
+71392;19742;1;156;54.0;120;70;1;1;0;0;0;0
+71394;18233;1;165;65.0;150;90;1;1;0;0;1;0
+71395;19948;1;165;59.0;120;80;1;1;0;0;1;0
+71398;23250;1;156;86.0;170;90;3;1;0;0;1;1
+71399;20269;2;167;99.0;140;90;3;1;0;0;1;1
+71400;22059;2;174;82.0;150;100;1;1;1;0;1;1
+71401;20558;1;162;56.0;110;80;1;1;0;0;1;0
+71402;23332;1;159;83.0;140;90;1;1;0;0;1;1
+71403;22545;1;174;64.0;110;80;3;1;0;0;1;1
+71404;23295;2;160;99.0;150;90;1;1;1;1;0;1
+71405;19691;2;162;69.0;130;80;1;1;1;0;0;1
+71406;21244;2;165;68.0;140;50;3;1;0;0;1;0
+71409;16931;1;162;82.0;160;90;1;1;0;0;1;0
+71410;15265;1;172;67.0;120;80;1;1;0;0;1;0
+71412;16737;1;160;51.0;100;60;1;1;0;0;0;0
+71413;19646;2;162;85.0;120;80;1;3;0;0;1;1
+71414;22727;2;155;55.0;120;70;1;1;0;0;1;0
+71415;18260;1;160;76.0;180;90;1;1;0;0;1;1
+71417;22041;1;167;78.0;13;80;1;1;0;0;1;0
+71419;19788;1;156;52.0;120;80;1;1;0;0;1;0
+71420;19728;1;165;65.0;120;80;3;3;0;0;0;0
+71421;17261;1;154;93.0;160;90;2;2;0;0;1;1
+71422;16704;2;158;58.0;130;70;1;1;0;0;0;0
+71424;22715;1;170;70.0;120;80;3;3;0;0;1;1
+71425;23194;1;160;134.0;130;80;3;3;0;0;1;1
+71430;18531;2;168;71.0;120;70;1;1;0;0;1;0
+71432;18808;1;165;65.0;120;90;2;1;0;0;1;0
+71433;17370;1;152;75.0;100;70;1;1;0;0;0;0
+71434;21773;1;156;58.0;150;100;1;1;0;0;1;0
+71435;20491;1;170;74.0;125;80;1;1;0;0;1;0
+71437;21339;1;150;65.0;130;80;1;1;0;0;1;0
+71438;18310;1;162;51.0;100;60;1;1;0;0;1;0
+71439;19931;2;169;66.0;120;80;1;1;0;0;1;0
+71441;20367;1;159;63.0;140;80;2;2;0;0;1;1
+71442;18331;1;163;64.0;120;80;1;1;0;0;1;0
+71443;19969;2;170;69.0;150;1000;1;1;0;0;1;1
+71445;17584;1;163;70.0;120;80;1;1;0;0;1;0
+71446;21998;1;158;62.0;120;80;1;1;0;0;1;0
+71447;21957;1;169;77.0;120;80;1;1;0;0;0;1
+71449;21798;1;152;60.0;130;65;1;1;0;0;0;1
+71451;16834;1;162;71.0;120;80;1;1;0;0;1;0
+71452;21367;1;164;73.0;110;70;2;1;0;1;1;0
+71454;22634;2;159;61.0;130;80;1;1;1;1;1;0
+71455;19716;2;169;64.0;120;70;1;1;0;0;0;1
+71457;14630;2;165;86.0;110;70;1;1;0;1;1;0
+71458;17582;2;176;73.0;120;80;2;3;1;0;0;1
+71459;18786;1;157;67.0;130;90;1;1;1;0;1;1
+71460;14595;2;180;75.0;110;80;1;1;0;0;1;0
+71461;19611;1;165;78.0;120;80;1;1;0;0;1;0
+71462;18352;2;176;85.0;150;90;1;1;0;0;1;1
+71463;18290;2;166;75.0;140;80;1;1;0;0;1;0
+71464;17525;1;162;100.0;140;90;1;1;0;0;1;1
+71465;17607;1;175;70.0;120;70;1;1;0;0;1;0
+71466;21715;2;170;70.0;120;80;1;1;0;0;1;0
+71467;18111;1;155;52.0;140;100;1;1;0;0;1;1
+71468;20190;1;157;64.0;120;80;3;1;0;0;1;1
+71469;20511;1;145;75.0;150;100;2;1;0;0;0;0
+71470;22521;1;163;145.0;120;80;1;1;0;0;0;1
+71471;15292;2;165;74.0;120;80;1;1;1;0;1;0
+71472;18977;1;160;60.0;130;90;3;1;0;0;1;0
+71473;16968;2;165;75.0;130;79;1;1;1;0;0;1
+71474;19741;1;163;84.0;130;70;1;1;0;0;1;0
+71476;15954;1;158;67.0;120;80;1;1;0;0;1;0
+71478;22707;1;155;49.0;140;90;1;3;0;0;0;1
+71480;14608;2;163;58.0;110;70;1;1;0;0;1;0
+71481;21177;2;170;69.0;150;80;1;3;0;0;1;1
+71485;18265;1;169;67.0;160;80;1;1;0;0;1;1
+71487;15790;1;162;62.0;120;80;1;2;0;0;1;0
+71488;21188;1;163;76.0;120;70;1;1;0;0;1;1
+71489;17511;2;165;65.0;140;90;1;1;0;0;1;1
+71490;20456;1;155;94.0;120;80;3;1;0;0;1;1
+71491;15994;1;158;66.0;160;90;1;1;0;0;0;1
+71492;17547;2;185;105.0;120;80;1;1;0;0;1;1
+71493;16092;1;160;58.0;120;80;1;1;0;1;1;0
+71494;21963;2;178;83.0;175;93;3;1;0;0;1;0
+71495;17703;2;164;61.0;110;70;1;1;0;0;1;0
+71496;17754;2;171;72.0;120;80;1;1;0;0;1;1
+71498;21384;1;161;86.0;110;70;2;1;0;0;1;0
+71499;23486;1;157;58.0;120;80;1;1;0;0;1;0
+71502;21849;1;149;74.0;140;90;2;1;0;0;1;1
+71503;22658;1;161;78.0;160;90;1;2;0;0;1;0
+71505;23506;1;165;65.0;120;70;1;1;0;0;1;1
+71506;21195;1;152;69.5;120;80;1;1;0;0;1;0
+71507;18227;1;162;84.0;130;90;3;3;0;0;1;1
+71508;19625;1;160;56.0;120;80;1;1;1;0;1;0
+71510;19003;2;168;65.0;120;80;1;1;0;0;1;0
+71511;19743;1;172;82.0;120;90;1;1;0;0;1;0
+71512;15220;2;170;72.0;100;70;1;1;0;0;1;0
+71513;14554;1;175;70.0;150;90;2;2;0;0;1;1
+71515;22693;1;160;90.0;140;90;2;3;0;0;1;0
+71516;16561;1;162;68.0;125;85;1;1;0;0;0;1
+71517;20954;1;158;69.0;120;60;1;1;0;0;1;0
+71518;19226;1;157;66.0;110;70;1;1;0;0;1;0
+71520;18219;1;156;75.0;120;80;1;1;0;0;1;1
+71522;18953;1;164;65.0;90;60;1;1;0;0;1;0
+71523;19446;2;172;71.0;110;80;2;2;0;1;1;0
+71524;19571;2;166;69.0;120;80;1;1;0;0;1;1
+71525;20598;2;162;56.0;110;80;1;1;0;0;1;0
+71526;22602;1;161;87.0;150;81;1;1;0;0;1;0
+71527;18056;2;167;67.0;140;90;1;1;1;1;1;0
+71528;17566;2;171;73.0;120;80;1;1;0;0;1;1
+71529;21703;2;173;74.0;120;80;1;3;0;0;1;0
+71531;15638;1;163;63.0;120;80;1;1;0;0;0;0
+71532;19492;1;152;90.0;140;90;3;1;0;0;1;1
+71533;21968;1;157;87.0;160;90;2;1;0;0;1;1
+71534;23308;2;167;52.0;120;80;1;1;0;0;1;1
+71535;18134;2;173;82.0;140;90;2;1;1;0;1;0
+71536;20457;2;169;77.0;140;90;1;1;0;0;1;1
+71537;21629;1;153;81.0;120;70;1;1;0;0;1;1
+71538;21112;1;153;75.0;120;80;1;1;0;0;1;0
+71539;21981;2;161;66.0;120;80;1;1;1;1;1;0
+71540;18197;1;152;58.0;130;80;3;1;0;0;1;1
+71541;23073;1;164;67.0;120;80;1;1;0;0;1;0
+71542;19730;2;178;77.0;120;80;1;1;0;0;1;0
+71544;16661;2;169;70.0;120;80;1;1;1;0;0;1
+71545;22670;2;181;80.0;120;80;1;1;0;0;1;1
+71546;23261;2;168;64.0;110;70;1;1;0;0;1;1
+71547;23422;1;113;73.0;120;80;1;1;0;0;0;0
+71548;20503;2;168;68.0;120;80;3;3;0;0;1;0
+71551;19800;1;157;62.0;140;100;1;1;0;0;1;1
+71552;19969;1;169;72.0;120;80;1;3;0;0;0;0
+71553;22109;1;146;57.0;130;82;1;1;0;0;1;0
+71555;21068;1;160;88.0;120;80;1;1;0;0;1;1
+71556;23340;1;164;70.0;120;80;1;1;0;0;1;0
+71557;22067;2;169;73.0;140;90;1;1;1;0;1;1
+71558;21879;1;149;64.0;110;59;3;3;0;0;0;1
+71559;23492;1;159;60.0;130;59;2;1;0;0;0;1
+71560;14658;1;156;55.0;120;80;1;1;0;0;1;0
+71561;21139;1;156;58.0;130;80;1;2;0;0;1;1
+71562;21221;2;166;78.0;140;90;2;2;0;0;1;0
+71563;18188;2;172;77.0;110;80;1;1;1;0;1;0
+71564;18847;1;174;58.0;120;80;1;3;0;0;1;0
+71565;19600;1;152;62.0;140;90;1;1;0;0;1;1
+71568;19473;2;165;45.0;120;80;1;1;1;0;1;0
+71569;21242;1;161;56.0;110;70;1;1;0;1;0;1
+71571;20173;1;153;67.0;140;100;2;1;0;0;1;1
+71573;19733;2;171;57.0;110;82;1;1;1;0;1;0
+71574;21658;1;170;85.0;140;90;3;1;0;0;1;1
+71575;16640;1;160;68.0;140;80;1;1;0;0;1;1
+71577;21097;2;166;69.0;130;90;1;1;0;0;1;0
+71578;22108;2;175;84.0;125;85;1;1;1;0;1;1
+71579;22207;2;170;70.0;120;80;1;1;0;0;1;0
+71580;18132;1;160;134.0;130;80;3;3;0;0;1;1
+71581;14657;2;175;71.0;110;80;1;1;0;0;1;0
+71583;19043;1;157;62.0;120;80;1;1;0;0;1;0
+71584;23244;2;175;103.0;160;100;2;2;0;0;1;1
+71587;14326;1;158;78.0;160;110;1;1;0;0;0;1
+71589;23321;2;174;80.0;120;88;1;1;0;0;1;0
+71590;18506;2;170;65.0;120;90;1;2;0;0;0;1
+71592;20482;1;156;70.0;110;80;1;1;0;0;1;0
+71595;22195;2;175;70.0;120;80;1;1;0;0;1;0
+71597;22498;1;159;96.0;130;90;2;1;0;0;1;1
+71600;19004;1;164;70.0;100;70;1;1;0;0;1;0
+71601;18055;1;150;82.0;200;110;3;3;0;0;1;1
+71602;14746;1;155;55.0;120;80;1;1;0;0;0;0
+71603;16109;2;170;78.0;120;80;1;1;0;0;1;0
+71604;20681;2;167;68.0;130;90;2;1;0;0;1;1
+71606;21763;1;161;85.0;110;70;3;3;0;0;1;0
+71608;21276;1;165;80.0;130;70;1;1;0;0;0;0
+71609;20395;1;150;60.0;150;90;1;1;0;0;1;1
+71610;23368;2;177;110.0;140;80;3;3;0;0;0;1
+71614;21095;1;169;68.0;110;60;1;1;0;0;1;0
+71615;15922;1;160;77.0;130;90;2;1;0;0;1;0
+71616;18206;1;168;89.0;120;80;1;1;0;0;1;0
+71617;21014;2;183;110.0;110;80;2;3;0;0;1;0
+71618;23146;1;148;62.0;150;110;3;1;0;0;1;1
+71619;16848;1;161;82.0;140;90;1;1;0;0;1;1
+71621;19772;1;160;60.0;140;90;1;1;0;0;1;1
+71624;19054;1;160;65.0;110;80;1;1;1;1;1;0
+71627;20573;1;155;55.0;125;80;1;1;0;0;0;0
+71628;14303;1;164;62.0;125;80;1;1;0;0;1;0
+71629;20456;1;151;59.0;170;100;1;2;0;0;1;1
+71630;21812;1;159;66.0;125;80;1;2;0;0;1;0
+71631;15187;1;164;82.0;120;80;2;2;0;0;1;0
+71632;20882;2;170;55.0;120;80;1;1;0;0;1;0
+71633;17523;1;160;52.0;100;70;1;1;0;0;1;0
+71636;18396;2;162;68.0;110;70;1;1;0;0;1;0
+71637;19288;1;170;65.0;110;80;1;1;0;0;1;0
+71638;18764;1;151;65.0;140;86;1;1;0;0;0;1
+71639;22744;1;150;54.0;120;85;1;1;0;0;1;1
+71640;19253;1;162;102.0;140;90;1;2;0;0;1;1
+71641;16096;2;178;80.0;120;80;1;1;0;0;1;1
+71642;22593;1;152;71.0;130;80;3;1;0;0;1;1
+71643;22619;1;158;64.0;130;100;2;1;0;0;1;1
+71646;19857;2;159;52.0;120;60;1;1;0;0;1;1
+71647;17296;2;174;81.0;130;90;2;1;0;0;1;1
+71648;22174;1;150;59.0;110;90;2;1;0;0;1;0
+71650;16183;1;154;71.0;140;90;1;1;0;0;1;1
+71651;18225;1;165;70.0;120;80;1;1;0;0;1;0
+71653;19578;2;172;70.0;160;1000;1;1;0;0;1;1
+71654;20687;1;159;75.0;120;80;2;2;0;0;1;0
+71655;17383;1;161;75.0;120;80;1;1;0;0;1;0
+71656;23224;1;156;90.0;120;60;1;1;0;0;0;0
+71657;16671;1;198;75.0;170;100;2;1;0;1;1;1
+71659;18032;1;176;87.0;140;80;1;1;0;0;1;1
+71660;21058;2;167;75.0;130;80;1;1;1;0;1;1
+71661;22920;1;158;64.0;120;80;1;1;0;0;0;0
+71662;18999;1;150;58.0;140;85;2;1;0;0;1;1
+71663;14623;2;170;65.0;120;80;1;1;1;0;1;0
+71664;17399;2;175;65.0;140;90;1;1;0;0;1;1
+71665;21940;1;150;48.0;140;90;1;1;0;0;1;1
+71666;20452;2;170;96.0;120;80;1;1;0;0;1;1
+71667;16775;1;155;69.0;100;70;2;1;0;0;0;0
+71668;20597;1;153;64.0;150;100;1;1;0;0;1;1
+71669;19074;2;165;78.0;160;90;1;1;0;0;0;1
+71670;20432;2;160;60.0;120;70;1;1;0;0;1;0
+71671;16007;2;180;78.0;150;90;1;1;0;0;1;1
+71674;22586;1;165;76.0;120;80;1;1;0;0;1;1
+71677;20442;1;170;70.0;150;1000;1;1;0;0;0;1
+71678;18043;1;159;78.0;140;90;2;1;0;0;1;1
+71680;22558;1;165;55.0;150;90;1;1;0;0;0;1
+71682;18884;2;186;65.0;110;80;1;1;0;0;1;0
+71683;15271;2;171;54.0;100;70;1;1;0;0;1;0
+71685;21678;1;156;100.0;180;110;1;2;0;0;1;1
+71686;20362;1;161;72.0;110;80;1;1;0;0;1;1
+71689;18333;1;165;65.0;140;80;1;1;0;0;1;0
+71690;20453;1;165;67.0;120;80;3;3;0;0;0;0
+71692;21978;2;163;76.0;180;100;1;1;0;0;0;1
+71694;21519;1;156;56.0;130;80;1;1;0;0;1;0
+71695;19635;2;171;89.0;140;900;1;1;0;0;0;1
+71696;17497;1;144;83.0;120;80;1;1;0;0;1;0
+71697;19724;2;156;66.0;120;80;1;1;1;0;1;0
+71699;21091;1;158;61.0;120;80;1;1;0;0;1;1
+71702;15928;1;174;62.0;120;80;1;1;0;0;1;1
+71703;23156;1;150;60.0;160;80;2;2;0;0;1;1
+71705;20420;1;162;56.0;120;80;2;2;0;0;1;1
+71709;15322;1;162;87.0;112;80;1;1;0;0;1;0
+71710;18051;1;157;73.0;150;90;3;3;0;0;1;1
+71711;15860;1;172;62.0;110;70;1;1;0;0;1;0
+71712;22444;2;164;92.0;150;100;1;1;0;0;1;1
+71715;21128;1;143;59.0;120;80;3;1;0;0;1;1
+71718;18828;1;160;63.0;130;80;3;1;0;0;1;1
+71719;18787;1;160;71.0;140;90;1;1;0;0;0;0
+71721;14573;2;171;70.0;110;70;1;3;0;0;0;0
+71722;20129;2;158;55.0;120;70;1;1;0;0;0;0
+71723;22454;1;160;62.0;155;90;3;3;0;0;1;1
+71724;15356;1;168;79.0;120;80;1;1;0;0;1;0
+71725;21398;1;156;79.0;140;90;1;1;0;0;1;1
+71726;14447;1;170;63.0;110;70;1;1;0;0;0;0
+71728;20348;1;162;45.0;100;70;1;1;0;0;0;0
+71729;19039;1;169;75.0;110;80;1;1;0;0;1;0
+71730;20477;1;160;80.0;140;80;1;1;0;0;1;1
+71731;14827;2;170;70.0;120;80;1;1;0;0;0;0
+71732;15996;1;163;69.0;120;80;1;1;0;0;1;1
+71733;23556;2;182;83.0;160;100;1;3;1;0;0;0
+71734;20317;1;168;72.0;130;90;1;1;0;0;1;1
+71735;19457;2;172;74.0;150;100;3;1;0;0;1;1
+71736;22393;2;170;96.0;140;120;1;1;0;0;1;0
+71737;16224;1;168;65.0;120;80;1;1;0;0;1;0
+71738;19578;1;164;76.0;120;80;1;1;0;0;1;1
+71740;14638;1;165;70.0;120;80;1;1;0;0;1;0
+71741;21719;1;164;81.0;170;100;1;1;0;0;1;1
+71742;22100;1;170;76.0;130;90;1;1;0;0;0;1
+71745;15446;1;165;71.0;120;80;1;1;0;0;1;0
+71746;18384;1;160;80.0;120;80;1;1;0;0;1;1
+71747;16940;1;157;60.0;120;80;3;1;0;0;1;1
+71748;15208;2;176;71.0;120;70;1;1;0;0;1;0
+71749;20565;1;164;86.0;150;80;3;3;0;0;1;1
+71750;19861;2;170;85.0;120;80;1;1;0;0;1;0
+71753;22607;1;170;70.0;130;90;3;1;0;0;1;1
+71754;16784;2;171;82.0;120;80;1;3;0;1;1;0
+71755;16651;1;158;71.0;110;80;1;1;0;0;1;0
+71757;19585;1;157;53.0;120;80;1;1;0;0;1;0
+71758;18222;1;157;75.0;100;70;1;1;0;0;1;0
+71759;20962;1;167;97.0;120;80;1;1;0;0;0;0
+71760;15868;2;163;56.0;110;70;1;1;1;1;1;0
+71762;18898;1;160;81.0;125;90;1;1;0;0;1;1
+71763;20532;1;171;109.0;130;90;1;1;0;0;1;1
+71767;20595;1;168;74.0;120;80;1;1;0;0;0;1
+71770;21953;1;151;61.0;120;80;1;2;0;0;0;0
+71772;18445;2;176;77.0;135;105;2;1;1;0;1;1
+71773;21047;2;170;72.0;130;90;1;1;0;0;1;1
+71774;18989;2;162;63.0;120;80;2;1;0;0;1;1
+71775;17372;1;160;78.0;150;100;1;1;0;0;1;0
+71777;17375;2;182;67.0;110;70;2;3;1;1;1;0
+71778;20575;1;170;71.0;120;80;3;1;0;0;0;1
+71779;19783;1;160;60.0;120;80;1;1;0;0;0;1
+71780;21113;1;161;70.0;140;90;1;3;0;0;1;1
+71781;22152;2;168;71.0;120;80;1;1;0;0;1;0
+71782;22664;1;158;77.0;130;90;1;1;0;0;0;1
+71783;20452;2;171;59.0;120;90;1;1;0;0;1;0
+71784;20478;1;162;76.0;110;70;1;1;0;1;1;1
+71785;18727;2;168;78.0;120;80;1;1;0;0;0;0
+71786;21240;2;168;63.0;120;70;1;1;0;0;1;1
+71788;21191;2;167;57.0;100;60;2;1;0;0;1;0
+71789;14551;1;158;68.0;100;60;1;1;0;0;0;0
+71791;17788;1;161;57.0;120;80;1;3;0;0;1;0
+71793;19804;2;163;56.0;130;70;2;1;0;0;0;1
+71794;16856;1;164;78.0;140;90;2;1;0;0;1;1
+71795;18213;1;163;97.0;140;80;3;3;0;0;1;1
+71796;21885;1;157;85.0;110;70;2;1;0;1;1;0
+71797;23194;1;160;64.0;140;90;3;2;0;0;1;1
+71800;20548;1;160;72.0;140;90;1;1;0;0;1;1
+71802;19864;1;167;55.0;120;70;1;1;1;1;1;1
+71803;19068;1;157;73.0;100;60;1;1;0;0;1;0
+71804;18195;1;160;57.0;100;60;1;1;0;0;1;0
+71806;21865;1;165;69.0;120;80;1;1;0;0;1;0
+71807;18236;1;151;50.0;140;90;2;1;0;0;1;1
+71808;18229;2;167;84.0;160;100;1;2;0;0;1;1
+71809;22475;2;158;67.0;140;90;1;1;0;0;1;1
+71810;19724;2;170;76.0;120;80;1;1;0;0;1;1
+71811;21874;2;167;68.0;130;90;1;1;0;0;0;1
+71814;21213;1;168;72.0;130;80;1;1;0;0;1;0
+71815;22235;1;163;63.0;120;80;3;3;0;0;1;0
+71817;19776;1;167;70.0;150;100;1;1;0;0;1;1
+71818;20468;2;165;61.0;150;90;1;1;0;0;1;1
+71820;19267;1;165;57.0;140;80;2;1;0;0;1;1
+71821;19828;1;162;65.0;140;90;1;1;0;0;1;1
+71822;21193;2;172;74.0;120;80;2;1;0;0;1;0
+71823;15908;2;175;67.0;120;80;1;1;0;0;1;0
+71825;18791;1;155;55.0;110;70;3;1;0;0;1;1
+71826;14587;1;167;67.0;150;100;1;1;0;0;0;1
+71827;23567;2;167;67.0;120;60;1;1;0;0;1;1
+71828;14773;2;170;61.0;120;80;1;1;0;0;1;0
+71829;18818;1;158;58.0;100;70;1;1;1;0;0;0
+71831;20310;1;170;65.0;110;70;1;1;0;0;1;0
+71832;23270;1;154;60.0;140;90;3;1;0;0;0;1
+71833;14432;2;185;74.0;120;80;1;1;0;0;1;0
+71840;21820;1;154;85.0;110;75;1;1;0;0;1;0
+71841;19672;1;156;76.0;140;80;1;1;0;0;1;1
+71842;19207;1;165;74.0;120;80;2;1;0;0;1;0
+71843;20430;1;162;70.0;120;80;1;1;0;0;1;1
+71845;15357;1;160;56.0;110;70;2;2;0;0;1;1
+71847;19023;2;181;75.0;160;110;1;1;0;0;0;1
+71848;20258;1;163;80.0;130;80;3;3;0;0;1;1
+71849;16792;2;168;68.0;120;80;1;1;0;0;1;0
+71851;18838;1;162;58.0;118;80;1;1;0;0;1;0
+71852;15118;1;154;106.0;130;70;1;3;0;0;1;0
+71853;19672;2;175;76.0;120;80;2;2;0;0;1;0
+71854;21737;1;160;58.0;120;80;1;1;0;0;1;0
+71855;21345;2;169;64.0;120;80;1;1;0;0;1;1
+71856;21168;2;171;80.0;140;100;1;1;0;0;1;1
+71857;21933;2;160;55.0;110;80;1;1;0;0;1;0
+71858;20667;2;173;81.0;120;80;1;1;0;0;1;1
+71859;17658;2;171;79.0;120;80;1;1;0;0;1;0
+71860;15992;1;152;80.0;110;70;1;1;0;0;1;0
+71861;21046;2;164;97.0;110;70;1;1;0;0;1;1
+71862;18387;1;165;75.0;120;80;1;1;0;0;1;0
+71863;14716;2;170;73.0;130;90;1;2;0;0;0;0
+71864;20512;2;170;95.0;110;60;3;3;0;0;1;1
+71865;19676;2;170;75.0;140;90;1;1;0;0;1;1
+71866;20368;1;157;84.0;150;90;1;1;0;0;1;1
+71867;21159;1;160;100.0;140;90;3;1;0;0;0;1
+71868;17481;2;171;73.0;120;80;1;2;0;0;1;1
+71869;22314;1;158;76.0;150;80;3;3;0;0;0;1
+71871;18689;1;155;72.0;170;100;2;2;0;0;1;1
+71872;19498;2;160;56.0;130;80;1;1;0;0;1;1
+71874;20216;1;158;67.0;120;80;1;1;0;0;1;0
+71875;20214;1;176;78.0;120;80;3;3;0;0;0;1
+71878;23361;2;174;68.0;150;75;2;3;0;0;1;1
+71879;23430;1;156;64.0;120;80;1;1;0;1;1;0
+71880;21762;1;150;62.0;120;80;1;1;0;0;1;0
+71881;19908;2;170;75.0;120;80;1;1;0;0;1;0
+71883;20186;2;171;78.0;120;80;1;1;1;0;1;1
+71884;18870;2;166;72.0;120;80;3;3;0;0;1;1
+71885;19755;1;149;81.0;180;90;1;1;0;0;1;1
+71886;21220;1;153;63.0;110;70;1;1;0;0;1;0
+71887;21253;1;165;56.0;130;80;3;3;0;0;1;1
+71888;21119;1;160;80.0;120;70;1;1;0;0;1;1
+71889;18809;2;170;85.0;150;90;1;1;1;1;1;1
+71890;19575;1;160;130.0;150;100;3;3;0;0;1;1
+71891;19000;1;165;65.0;120;90;2;2;0;0;1;0
+71892;21326;1;160;50.0;110;60;2;1;0;0;1;0
+71894;16768;1;167;80.0;140;90;1;1;0;0;1;1
+71895;21772;1;165;71.0;140;80;1;1;0;0;1;1
+71897;20526;1;162;68.0;120;80;1;1;0;0;1;1
+71898;21864;1;168;80.0;140;90;3;3;0;0;1;1
+71900;16723;2;169;81.0;110;80;2;1;0;0;1;0
+71901;22102;1;162;110.0;130;80;1;1;0;0;1;0
+71902;16027;2;172;71.0;150;90;1;1;1;0;0;1
+71904;19040;1;160;79.0;140;90;1;1;0;0;1;1
+71905;21326;1;165;65.0;130;90;1;2;0;0;1;1
+71907;17282;2;175;90.0;110;70;1;1;0;0;1;0
+71910;14726;2;172;70.0;110;70;2;1;0;0;1;0
+71911;18768;1;164;78.0;120;80;2;1;0;0;1;0
+71913;23414;1;155;106.0;120;80;3;1;0;0;1;1
+71914;22108;2;154;56.0;120;80;1;1;0;0;1;1
+71917;21708;2;172;80.0;140;90;3;1;0;1;1;0
+71918;21938;1;177;95.0;120;80;1;1;0;0;0;0
+71919;18777;2;158;62.0;190;100;3;2;0;0;1;1
+71920;18039;2;189;88.0;130;90;3;1;1;0;1;1
+71921;20976;1;164;62.0;120;80;1;1;0;0;1;1
+71922;20323;1;167;83.0;120;80;1;1;0;0;0;0
+71927;22821;1;149;68.0;130;90;1;1;0;0;1;1
+71929;18064;1;164;68.0;140;90;1;1;0;0;1;1
+71930;19084;1;160;110.0;130;90;3;1;0;1;1;1
+71933;16122;1;156;55.0;110;70;1;1;0;0;1;0
+71934;21373;1;162;49.0;90;60;2;1;0;0;1;0
+71935;14604;2;171;76.0;140;90;2;1;0;0;1;0
+71936;23288;1;175;65.0;110;70;1;1;0;0;1;0
+71939;19845;1;162;96.0;120;80;3;3;0;0;1;1
+71940;18314;1;170;62.0;100;70;1;1;0;0;1;0
+71941;14764;1;154;48.0;100;70;1;1;0;0;1;0
+71942;16762;1;161;67.0;140;90;1;1;0;0;0;1
+71945;15117;2;180;200.0;150;90;1;1;0;0;1;1
+71946;17495;1;170;80.0;120;80;1;1;0;1;1;0
+71948;19133;2;173;74.0;100;70;2;1;0;0;1;1
+71949;19562;1;171;69.0;100;60;1;1;0;0;1;0
+71950;21898;1;164;65.0;100;70;1;1;0;0;1;0
+71952;15454;2;175;68.0;120;80;1;1;0;0;0;1
+71953;15203;2;162;82.0;120;80;2;1;1;0;0;1
+71954;23296;2;169;78.0;120;80;1;3;0;0;1;0
+71955;19660;2;171;69.0;120;80;1;1;1;1;1;0
+71959;23179;2;186;80.0;130;90;2;3;0;0;1;0
+71960;23348;2;165;70.0;120;60;1;1;0;0;0;1
+71961;22478;1;155;53.0;130;80;1;1;0;0;1;0
+71962;18053;1;170;86.0;120;80;1;1;0;0;1;1
+71963;18290;1;160;70.0;120;80;2;1;0;0;1;0
+71964;19717;1;159;76.0;120;80;1;1;0;0;1;0
+71965;22602;1;169;65.0;100;60;1;1;0;0;1;1
+71967;23272;1;158;60.0;110;70;1;1;0;0;1;1
+71968;18272;1;158;58.0;110;70;1;2;0;0;0;1
+71969;21038;1;162;136.0;140;110;1;2;0;0;1;1
+71971;17493;2;169;74.0;120;80;1;1;0;0;1;1
+71973;18335;1;171;70.0;120;80;1;1;0;0;0;0
+71974;21400;2;171;89.0;130;90;1;1;0;1;1;0
+71975;18893;2;183;108.0;130;90;1;1;0;0;1;0
+71977;18255;2;168;70.0;140;90;2;1;1;1;1;0
+71978;16465;1;164;85.0;140;90;2;1;0;0;1;1
+71982;19716;1;154;65.0;120;80;1;1;0;0;1;0
+71983;21989;2;182;79.0;150;95;1;1;0;0;0;1
+71984;23190;1;152;72.0;140;60;1;3;0;0;1;1
+71986;22589;2;170;80.0;130;90;1;1;1;0;0;0
+71987;14609;1;176;82.0;120;80;1;1;0;0;0;0
+71988;15318;2;177;86.0;120;80;1;1;1;1;1;1
+71989;21808;1;166;63.0;120;80;1;1;0;0;1;0
+71991;21870;1;160;75.0;120;80;1;1;0;0;1;0
+71992;20454;2;170;77.0;120;30;1;1;0;0;1;0
+71993;18300;1;163;68.0;120;80;1;1;0;0;0;0
+71996;21888;1;154;73.0;140;80;2;2;0;0;0;0
+71997;22553;2;170;83.0;140;100;1;1;0;0;1;1
+71998;19780;1;169;66.0;120;80;1;1;0;0;0;0
+72000;22339;1;156;55.0;120;80;3;3;0;0;0;1
+72002;21135;1;170;80.0;120;80;1;1;0;0;1;1
+72003;21970;1;156;56.0;160;90;1;1;0;0;1;1
+72005;23079;1;152;60.0;120;80;1;1;0;0;1;1
+72006;20415;2;169;81.0;120;80;1;1;0;0;1;0
+72007;18440;1;160;67.0;120;70;1;1;0;0;0;0
+72008;20320;1;153;96.0;150;100;1;1;0;0;1;1
+72009;19641;2;177;78.0;120;80;1;1;0;0;1;0
+72010;17483;1;163;69.0;120;79;1;1;0;0;0;0
+72011;20245;1;162;74.0;110;90;1;1;0;0;1;0
+72015;21269;2;172;65.0;120;80;1;1;0;0;1;0
+72016;15339;2;170;70.0;120;70;1;1;1;0;1;0
+72018;23444;1;160;60.0;120;80;2;1;0;1;0;1
+72020;21168;1;159;69.0;110;70;3;1;1;0;1;1
+72021;15937;1;156;50.0;110;80;2;2;0;0;1;0
+72022;21198;1;158;59.0;100;70;1;1;0;0;0;0
+72023;22672;1;160;76.0;140;80;1;1;0;0;1;1
+72024;14296;2;171;141.0;100;70;1;1;1;1;1;0
+72025;22472;2;161;77.0;130;80;1;1;0;0;1;0
+72026;17662;2;176;112.0;130;90;3;1;0;0;1;1
+72027;18903;1;169;78.0;110;70;1;1;0;0;1;0
+72028;16062;2;163;62.0;120;80;1;1;0;0;0;0
+72029;17551;2;167;63.0;120;80;1;1;1;0;1;0
+72031;15335;1;173;79.0;140;90;1;1;0;0;1;1
+72032;16874;2;174;86.0;140;1000;2;1;0;1;1;1
+72033;21806;1;161;65.0;150;90;3;1;0;0;1;1
+72036;19915;1;160;62.0;120;80;1;3;0;0;1;1
+72038;16849;1;157;58.0;120;80;1;1;0;0;1;0
+72040;16006;1;170;81.0;120;85;3;1;0;0;1;1
+72041;20415;2;170;80.0;100;70;1;1;0;0;1;0
+72042;16856;2;172;87.0;110;80;1;1;0;0;1;0
+72043;23295;1;169;84.0;180;1100;1;1;0;0;1;1
+72045;19624;1;163;77.0;110;90;2;1;0;0;1;1
+72048;20864;2;172;92.0;120;80;1;1;0;0;1;1
+72050;20401;1;160;70.0;130;80;3;3;0;0;0;0
+72051;20369;1;161;67.0;120;80;3;1;0;1;1;0
+72053;18329;2;185;94.0;110;70;3;1;0;0;1;1
+72055;19654;1;153;60.0;140;1000;3;3;0;0;1;1
+72056;20242;1;160;120.0;150;60;1;1;0;0;1;1
+72060;21063;1;156;56.0;120;80;2;3;0;0;1;1
+72063;18276;2;179;67.0;120;80;2;1;0;0;1;0
+72067;22639;2;179;89.0;150;90;1;1;0;0;0;1
+72069;15840;2;165;80.0;140;90;1;1;0;0;0;0
+72070;22620;1;158;99.0;160;100;1;1;0;0;1;1
+72072;18865;2;170;84.0;140;90;1;1;0;0;0;1
+72073;18289;1;164;107.0;130;80;2;2;0;0;0;1
+72074;18878;1;153;62.0;100;60;1;1;0;0;1;0
+72075;15818;2;158;67.0;110;70;1;1;0;0;1;0
+72076;19818;2;175;84.0;120;80;1;1;1;0;1;0
+72077;20408;2;180;112.0;160;100;2;1;0;0;1;1
+72078;19761;1;151;66.0;160;80;1;1;0;0;1;1
+72079;19682;2;164;62.0;140;80;1;1;0;0;1;1
+72080;23362;2;172;80.0;120;80;1;3;0;0;0;0
+72082;18976;1;168;72.0;120;90;1;1;0;0;1;0
+72083;21742;1;162;73.0;120;80;3;1;0;0;1;1
+72084;19692;2;180;81.0;120;80;2;1;0;0;1;0
+72086;21974;2;175;85.0;120;80;1;1;0;0;1;0
+72087;23480;2;174;72.0;180;100;3;1;0;0;0;1
+72088;18371;1;162;57.0;103;67;2;1;0;0;1;0
+72093;20456;2;165;90.0;130;80;1;1;0;0;1;1
+72094;21361;2;175;111.0;130;80;2;1;0;0;1;1
+72096;19503;1;152;78.0;100;70;1;1;0;0;1;0
+72097;21991;1;160;74.0;130;90;3;3;0;0;1;0
+72100;17369;2;156;73.0;110;70;1;1;0;0;1;0
+72102;18838;1;160;71.0;160;100;2;2;0;0;1;1
+72103;16725;1;158;86.0;140;90;1;1;0;0;1;1
+72106;22580;1;167;77.0;160;80;1;1;0;0;1;1
+72107;15448;1;170;68.0;100;80;1;1;0;0;0;0
+72108;21961;1;157;52.0;120;80;1;1;0;0;1;0
+72110;14641;2;185;90.0;110;70;3;1;0;0;1;0
+72111;21707;2;167;85.0;120;80;2;2;0;0;1;0
+72113;21248;2;185;80.0;120;80;1;1;0;0;0;0
+72115;15981;1;154;64.0;110;80;1;2;0;0;0;0
+72116;19773;1;169;78.0;110;80;1;1;0;0;1;0
+72117;20454;2;170;70.0;90;60;1;2;0;0;0;0
+72118;15241;1;169;105.0;120;80;1;1;0;0;1;0
+72119;22553;1;152;106.0;140;90;3;1;0;0;1;1
+72121;21279;1;168;65.0;130;70;1;1;0;0;1;1
+72122;18750;2;170;74.0;140;90;3;2;1;0;1;1
+72123;17019;2;180;69.0;120;80;1;1;1;0;1;0
+72124;21911;1;163;68.0;120;80;1;1;0;0;1;1
+72125;21791;2;176;81.0;120;70;1;1;0;1;1;1
+72126;20441;1;169;65.0;120;80;1;1;0;0;1;1
+72127;16727;2;174;69.0;120;80;1;1;0;0;1;0
+72128;21094;2;165;76.0;140;100;1;1;1;0;1;0
+72129;19618;2;170;65.0;120;80;1;1;0;0;1;1
+72130;15965;1;158;81.0;110;70;1;1;0;0;1;0
+72131;15128;1;156;79.0;120;80;1;1;0;0;1;0
+72132;18352;1;158;43.0;100;70;1;1;0;0;1;0
+72135;19695;1;154;63.0;110;80;1;1;0;0;1;1
+72136;16535;2;181;89.0;120;80;1;1;1;0;1;0
+72137;18961;2;170;74.0;150;90;2;1;0;0;0;1
+72138;21911;1;156;55.0;110;90;1;1;0;0;1;0
+72142;19734;1;155;59.0;110;70;1;2;0;0;1;1
+72144;19710;1;167;66.0;110;70;1;1;0;0;1;0
+72145;16834;1;164;63.0;110;70;1;1;0;0;1;0
+72146;20451;1;161;53.0;100;60;2;2;0;0;1;0
+72147;21743;2;167;79.0;120;80;1;1;0;0;1;0
+72148;18763;2;168;65.0;140;80;1;1;0;0;1;0
+72149;19962;1;158;68.0;105;70;1;1;0;0;1;0
+72150;15437;2;165;61.0;120;80;1;1;0;1;1;1
+72151;18266;1;159;67.0;150;90;1;1;0;0;1;1
+72153;20320;1;160;66.0;120;80;1;1;0;0;1;0
+72154;14596;2;166;61.0;120;80;1;1;0;0;1;0
+72156;20328;1;170;69.0;110;80;1;3;0;0;1;0
+72157;23403;2;165;68.0;125;80;2;1;0;0;0;1
+72158;21693;1;161;53.0;130;90;1;1;0;0;1;1
+72160;20502;2;170;78.0;140;90;1;1;0;0;1;1
+72162;19180;1;158;81.0;140;90;3;1;0;1;1;1
+72165;15940;1;162;86.0;130;90;3;1;0;1;1;1
+72166;20385;2;162;85.0;130;80;1;1;0;0;1;1
+72167;18319;2;168;66.0;115;75;1;1;0;0;1;0
+72168;17294;2;164;73.0;120;80;1;1;0;0;1;0
+72169;18909;1;153;53.0;110;70;2;2;0;0;1;0
+72172;19758;1;164;86.0;110;70;1;1;0;0;1;0
+72173;18872;1;154;42.0;100;60;1;1;0;0;1;0
+72174;22564;2;175;74.0;120;80;1;1;0;0;1;0
+72175;19923;1;156;56.0;110;60;1;1;0;0;1;0
+72176;20935;1;158;61.0;120;80;1;1;1;0;0;0
+72177;18066;2;173;71.0;120;80;3;1;1;0;1;1
+72178;16015;1;161;85.0;140;90;1;1;0;0;1;1
+72179;14675;1;154;60.0;110;70;1;1;0;0;1;0
+72180;21929;1;179;77.0;120;80;1;1;0;0;1;1
+72181;14570;1;164;78.0;90;60;1;1;0;0;1;0
+72183;20627;2;173;76.0;120;80;1;1;0;0;1;1
+72184;19749;1;169;69.0;120;80;1;1;0;0;1;0
+72185;20652;1;164;95.0;120;80;1;1;0;0;1;0
+72186;21829;1;174;86.0;125;80;1;1;0;0;0;1
+72187;14704;1;176;114.0;120;80;1;3;0;0;1;0
+72188;21871;1;150;78.0;150;110;2;1;0;0;1;1
+72189;19051;1;154;63.0;150;90;2;1;0;0;1;1
+72191;20433;2;160;85.0;100;70;2;1;0;0;1;0
+72192;20311;2;174;82.0;130;90;1;1;0;0;0;0
+72195;18057;1;158;58.0;130;90;1;1;0;0;1;1
+72197;15220;2;176;74.0;120;80;1;1;0;0;1;0
+72198;22462;2;166;85.0;110;70;1;1;0;0;0;0
+72199;16884;1;160;59.0;120;80;2;1;0;0;1;0
+72201;22008;1;153;99.0;130;80;1;1;0;0;0;1
+72202;21082;2;173;100.0;150;90;3;3;0;0;1;1
+72204;20319;1;163;85.0;120;80;1;1;0;0;0;1
+72206;20368;1;156;70.0;110;70;1;1;0;0;1;0
+72208;21117;1;168;65.0;140;80;1;1;0;0;1;1
+72210;22019;1;160;74.0;130;80;3;1;0;0;1;1
+72212;21221;2;165;81.0;120;80;1;1;0;0;1;0
+72213;20504;1;163;97.0;120;80;3;3;0;0;0;1
+72214;21068;1;165;60.0;120;80;2;2;0;0;0;1
+72215;20501;1;168;80.0;125;70;1;1;0;0;1;1
+72216;20615;2;170;92.0;120;60;1;1;0;0;1;0
+72217;19585;1;163;68.0;100;70;1;3;0;0;1;0
+72218;21719;2;164;70.0;120;80;2;1;1;0;1;1
+72220;23361;1;159;58.0;120;80;1;1;0;0;0;0
+72222;17995;1;176;66.0;140;80;1;2;0;0;1;0
+72223;22590;1;160;62.0;150;90;1;1;0;0;1;1
+72224;20386;2;170;65.0;120;80;1;1;0;0;1;1
+72225;15385;1;165;60.0;100;60;1;1;0;0;1;0
+72226;23364;1;166;82.0;160;110;2;2;0;0;1;1
+72227;22334;1;155;79.0;120;70;3;2;0;0;1;1
+72228;18796;2;182;102.0;130;90;2;3;0;0;1;0
+72230;17585;1;147;83.0;120;80;1;1;0;0;0;0
+72231;17670;1;164;68.0;120;80;1;1;0;0;1;0
+72232;19450;1;158;83.0;120;80;1;1;0;0;0;1
+72233;19696;2;169;78.0;130;90;1;1;0;0;1;0
+72236;18392;1;152;67.0;120;80;1;1;0;0;1;0
+72237;18997;2;174;60.0;120;80;1;1;1;1;1;0
+72241;17538;2;170;70.0;120;80;1;1;0;0;1;0
+72242;18832;1;164;64.0;140;90;2;1;0;0;0;1
+72243;21863;1;120;80.0;120;80;1;1;0;0;1;1
+72245;20380;1;165;70.0;140;90;2;2;0;0;1;0
+72248;15116;2;155;52.0;140;90;2;1;1;0;1;0
+72251;18883;1;161;78.0;120;80;1;1;0;0;1;1
+72252;14618;2;165;60.0;120;80;1;1;0;0;1;0
+72253;15317;1;166;65.0;110;60;1;1;0;0;1;0
+72254;15145;2;160;70.0;120;80;1;1;0;0;1;0
+72255;20385;2;177;77.0;140;90;2;1;0;0;1;1
+72256;21816;1;173;118.0;180;90;2;2;0;0;1;1
+72257;19829;2;172;68.0;120;80;1;1;0;0;0;1
+72258;17594;1;149;59.0;110;80;1;1;0;0;1;0
+72260;20305;2;170;75.0;130;80;2;2;1;0;1;1
+72261;20487;1;156;71.0;140;90;1;2;0;0;1;0
+72262;18269;1;170;70.0;140;80;1;1;0;0;1;0
+72263;20935;1;157;67.0;140;80;1;1;0;0;1;0
+72264;14605;1;165;76.0;140;90;1;1;0;0;1;0
+72265;19712;1;156;87.0;120;80;1;1;0;0;1;0
+72266;23554;1;154;60.0;120;80;1;1;1;0;1;0
+72267;21163;1;159;98.0;120;80;1;1;0;0;1;0
+72268;21916;1;153;74.0;140;100;2;2;0;0;1;1
+72269;20730;1;165;65.0;120;80;1;1;0;0;0;0
+72270;21642;1;171;71.0;120;80;1;1;0;0;1;0
+72273;19068;2;165;99.0;120;90;2;1;0;1;1;1
+72274;21938;1;153;52.3;130;80;1;1;0;0;1;0
+72275;18888;1;160;89.0;120;80;1;1;0;0;1;0
+72277;21031;1;164;67.0;110;80;1;1;0;0;0;0
+72278;23509;1;162;84.0;130;80;3;2;0;0;1;1
+72279;19580;2;167;59.0;140;90;1;1;0;0;0;1
+72280;21139;2;178;67.0;190;100;2;1;0;0;1;1
+72281;19213;2;168;62.0;120;80;1;1;0;0;1;1
+72282;18128;1;159;74.0;140;90;3;1;0;0;1;0
+72283;19790;2;183;103.0;150;90;2;1;0;0;1;1
+72284;19642;1;158;61.0;124;86;1;1;0;0;1;1
+72285;19758;1;159;64.0;140;70;2;1;0;0;1;1
+72286;21213;1;157;70.0;110;70;1;1;0;0;1;0
+72287;23087;1;149;68.0;170;80;2;1;0;0;1;1
+72288;18322;2;171;94.0;130;90;3;1;0;1;0;1
+72289;18797;1;170;65.0;120;80;1;1;0;0;1;1
+72291;22009;1;152;40.0;90;60;1;1;0;0;1;0
+72292;15247;1;168;65.0;110;60;1;1;0;0;1;0
+72294;14766;1;167;65.0;140;100;2;2;0;0;1;1
+72295;16744;1;158;60.0;110;70;1;1;0;0;1;1
+72296;21923;1;164;86.0;125;65;2;2;0;0;0;0
+72297;15272;2;169;61.0;120;80;1;1;0;0;1;0
+72298;17499;2;170;72.0;220;100;1;1;0;0;1;1
+72299;22412;1;154;80.0;120;70;1;1;0;0;1;1
+72300;20462;1;157;70.0;120;80;1;1;0;0;1;0
+72302;19618;1;150;52.0;130;80;1;1;0;0;0;0
+72303;21330;1;171;104.0;110;70;1;2;0;0;1;1
+72305;21962;2;178;105.0;120;80;1;1;0;0;1;1
+72306;14731;1;175;70.0;120;80;1;1;0;0;1;0
+72307;17361;1;165;85.0;100;60;1;1;0;0;1;0
+72308;18219;2;176;84.0;140;90;1;1;0;0;1;1
+72309;18067;1;168;80.0;110;80;1;1;0;0;1;0
+72310;16014;1;155;66.0;120;80;1;1;0;0;1;1
+72312;20445;1;160;62.0;140;80;1;1;0;0;1;1
+72313;18773;1;160;70.0;130;90;3;3;0;0;1;0
+72315;21975;2;170;75.0;150;80;2;1;0;0;1;1
+72317;21221;2;169;76.0;120;80;1;1;0;0;1;0
+72320;22503;2;175;66.0;100;80;1;1;1;0;1;0
+72321;21318;1;162;70.0;140;90;1;1;0;0;1;1
+72322;15839;2;171;59.0;120;80;1;1;0;0;1;0
+72323;16721;1;170;68.0;120;80;1;1;0;0;1;0
+72325;20388;2;169;73.0;110;80;1;1;0;0;1;1
+72326;15921;1;165;70.0;110;80;1;1;0;0;0;0
+72327;20258;1;162;78.0;130;80;1;1;0;0;1;0
+72329;21276;2;169;70.0;140;100;1;1;0;0;1;1
+72330;19020;1;160;62.0;120;70;1;1;0;0;1;0
+72331;21773;2;170;84.0;120;80;1;1;0;0;0;1
+72332;21898;1;162;92.0;120;80;2;3;0;0;1;0
+72333;15327;1;164;63.0;110;70;1;1;0;0;0;0
+72334;19580;2;176;93.0;160;89;1;1;1;1;1;0
+72335;16117;1;165;60.0;120;80;1;1;0;0;1;0
+72336;14733;1;159;68.0;110;70;1;1;0;0;1;0
+72340;19748;1;160;58.0;100;70;1;1;0;0;0;0
+72341;15227;1;159;78.0;110;70;1;1;0;0;0;0
+72342;16007;1;150;58.0;100;80;1;1;0;0;0;0
+72346;21689;1;170;88.0;150;100;3;3;0;0;1;0
+72347;20535;1;155;91.0;160;100;1;1;0;0;0;0
+72348;19638;1;156;93.0;140;80;2;2;0;0;1;1
+72349;18304;2;176;99.0;120;80;1;1;0;0;1;1
+72350;23369;1;170;92.0;160;100;1;2;0;0;1;1
+72351;22713;1;158;72.0;160;89;1;1;0;0;1;1
+72354;20623;1;165;78.0;130;80;1;1;0;0;1;0
+72356;16820;1;156;64.0;110;70;1;1;0;0;1;0
+72357;18284;1;159;62.0;120;80;1;1;0;0;1;0
+72358;20432;2;175;84.0;140;90;1;3;0;0;1;1
+72360;20243;2;165;75.0;120;80;1;1;0;0;1;1
+72362;15413;1;149;104.0;130;80;1;1;0;0;1;0
+72363;22681;2;159;68.0;130;80;1;3;0;0;0;0
+72364;15116;1;163;67.0;120;70;3;1;0;0;1;1
+72365;19038;1;156;75.0;120;90;2;1;0;0;1;1
+72366;21249;2;157;78.0;120;80;1;1;0;0;1;0
+72367;15815;2;160;58.0;110;80;1;1;0;0;1;1
+72368;15217;2;175;68.0;130;90;1;1;0;0;1;0
+72369;21761;1;170;70.0;150;100;1;1;0;0;1;0
+72372;23408;1;157;82.0;140;80;3;1;0;0;1;1
+72373;23692;2;167;68.0;120;80;2;2;0;0;0;1
+72374;22471;1;157;60.0;120;80;1;1;0;0;1;0
+72375;19603;1;165;60.0;120;80;1;1;0;0;1;0
+72376;15404;1;155;60.0;110;70;1;1;0;0;0;0
+72377;22092;2;166;79.0;140;80;3;3;1;1;1;0
+72378;19041;1;161;105.0;120;80;1;1;0;0;1;1
+72379;23345;2;182;110.0;130;80;3;3;0;0;1;0
+72381;22051;1;168;65.0;160;100;1;1;0;0;1;1
+72382;19473;1;169;68.0;120;80;1;1;0;0;1;0
+72383;14681;1;168;57.0;120;80;1;1;0;0;0;0
+72386;19105;1;160;58.0;110;70;1;1;0;0;1;0
+72387;19692;1;162;100.0;120;80;1;1;0;0;1;0
+72388;22817;2;165;70.0;150;100;1;1;0;0;1;1
+72389;18837;1;171;65.0;140;80;3;3;0;0;1;1
+72390;21056;1;162;78.0;120;80;1;1;0;0;1;0
+72392;18380;1;145;75.0;110;70;2;1;0;0;1;1
+72394;17661;1;165;56.0;120;80;1;3;0;0;1;0
+72395;18417;1;169;67.0;140;90;2;1;0;0;0;1
+72396;20583;1;179;98.0;145;90;1;1;0;0;1;1
+72397;23200;1;155;70.0;120;80;1;1;0;0;1;0
+72398;18276;1;154;70.0;120;80;1;1;0;0;0;0
+72399;15988;1;160;70.0;100;80;1;1;0;0;1;0
+72401;22641;1;154;76.0;110;90;1;1;0;0;0;0
+72402;20498;1;155;68.0;120;80;3;1;0;0;1;1
+72403;19107;2;170;69.0;140;90;1;1;0;0;0;1
+72405;19617;1;170;68.0;120;80;1;1;0;0;1;0
+72406;19696;2;162;72.0;120;80;1;1;0;0;0;0
+72407;19888;1;174;72.0;130;80;1;1;0;0;1;0
+72408;21730;2;164;84.0;120;60;1;1;0;0;1;1
+72409;14545;2;178;90.0;130;70;1;1;0;0;1;1
+72410;16630;2;176;85.0;150;100;1;1;0;0;1;1
+72412;19720;1;163;65.0;120;80;1;1;0;0;1;0
+72413;17600;1;157;57.0;95;70;2;1;0;0;0;1
+72414;22171;1;156;61.0;120;80;1;1;0;0;1;0
+72416;16113;1;150;70.0;100;70;1;1;0;0;0;0
+72417;22349;1;161;64.0;100;60;1;1;0;0;1;0
+72419;16011;2;165;79.0;120;80;1;1;1;1;0;0
+72420;18187;1;157;44.0;120;80;1;1;0;0;1;1
+72421;20395;1;170;84.0;150;90;1;1;0;0;1;1
+72422;21914;2;168;68.0;160;100;1;1;0;0;0;1
+72423;20448;1;150;73.0;100;70;1;2;0;0;1;1
+72425;20495;1;153;67.0;160;100;2;1;0;0;1;1
+72427;19520;2;162;70.0;160;100;1;3;0;0;1;1
+72428;22791;1;157;68.0;130;80;1;2;0;0;1;1
+72429;20563;1;168;78.0;120;80;2;2;0;0;1;0
+72431;19692;1;169;58.0;120;69;1;1;0;0;1;0
+72432;18804;2;173;81.0;130;80;1;1;0;1;0;1
+72433;22131;1;160;100.0;160;90;1;1;0;0;1;0
+72435;22862;2;173;89.0;150;90;1;1;0;0;1;0
+72436;22878;2;175;75.0;120;80;1;1;0;0;1;0
+72437;22428;1;150;79.0;150;1000;3;3;0;0;1;1
+72438;21940;1;162;81.0;190;100;3;1;0;0;1;1
+72439;21973;1;168;76.0;120;80;1;1;0;0;1;1
+72440;22686;2;170;84.0;160;90;1;1;0;0;0;1
+72441;23320;1;157;71.0;130;70;1;2;0;0;1;0
+72442;18300;1;165;74.0;120;80;1;1;0;0;1;0
+72444;18166;1;166;78.0;140;90;3;1;0;0;1;1
+72445;19808;1;158;82.0;120;80;1;1;0;0;1;0
+72446;22084;1;160;105.0;170;100;2;1;0;0;1;1
+72447;17566;1;160;89.0;140;90;2;2;0;1;1;0
+72448;15576;2;170;90.0;120;70;1;1;0;0;1;0
+72449;21639;1;167;89.0;165;100;3;3;0;0;1;0
+72451;22837;1;158;66.0;150;90;1;1;0;0;0;1
+72453;23164;2;156;56.0;120;80;1;1;0;0;1;1
+72455;19538;2;174;70.0;120;80;1;2;0;0;1;0
+72456;21940;1;167;69.0;120;80;1;1;0;0;1;1
+72457;20307;1;178;75.0;110;70;1;1;0;0;1;1
+72460;21159;1;168;70.0;140;90;1;2;0;0;1;1
+72461;22062;1;161;85.0;120;90;1;1;0;0;1;1
+72462;23281;2;178;92.0;110;90;2;2;0;0;0;1
+72463;19054;1;162;96.0;150;100;3;3;0;0;0;1
+72468;21624;2;164;60.0;120;80;1;1;0;0;1;1
+72469;22863;2;174;76.0;110;70;1;1;0;0;1;1
+72472;19070;1;165;65.0;120;80;1;1;0;0;1;1
+72474;19646;1;157;76.0;100;60;1;1;0;0;1;0
+72476;14499;2;67;60.0;110;80;1;1;1;1;1;0
+72478;20973;1;161;90.0;160;100;1;1;0;0;1;1
+72479;23254;2;168;70.0;140;100;3;1;1;0;1;1
+72480;21835;1;163;51.0;120;80;1;1;0;0;1;0
+72481;18737;1;175;68.0;120;80;1;1;0;0;1;0
+72483;20729;1;161;70.0;120;80;1;2;0;0;1;0
+72484;15448;2;162;61.0;110;70;1;1;0;0;1;0
+72486;19839;1;165;66.0;150;90;1;1;0;0;1;1
+72487;21229;1;155;73.0;120;80;2;1;0;0;1;0
+72488;14338;1;166;59.0;100;60;1;1;0;0;1;0
+72489;21713;2;179;80.0;120;80;1;2;0;0;1;0
+72490;21898;2;170;95.0;110;70;3;3;0;0;0;1
+72491;23160;1;167;68.0;120;80;1;1;1;0;0;0
+72492;20494;1;156;77.0;150;80;1;1;0;0;1;1
+72495;20252;2;169;87.0;165;100;3;1;1;1;1;1
+72496;20427;2;169;97.0;110;70;2;2;0;1;1;0
+72497;21663;1;150;56.0;140;90;2;1;0;0;1;1
+72499;16608;1;159;77.0;110;70;2;2;0;0;1;0
+72500;15969;2;178;61.0;120;80;1;1;0;0;1;0
+72502;20950;2;166;88.0;160;80;2;1;0;1;1;1
+72503;16864;1;154;70.0;115;70;1;1;0;0;1;0
+72504;19678;1;169;80.0;120;80;1;1;1;0;1;0
+72505;16238;1;161;72.0;140;90;1;1;0;0;0;0
+72506;21974;2;158;85.0;120;80;1;1;0;0;0;0
+72507;17389;1;171;66.0;100;70;1;1;0;0;1;0
+72508;21226;2;170;78.0;110;70;1;1;0;0;1;0
+72509;15794;2;158;64.0;120;80;1;2;0;0;1;0
+72510;20501;1;167;78.0;130;80;3;3;0;0;1;1
+72511;18297;2;170;90.0;110;70;1;1;0;0;0;1
+72512;22557;2;171;66.0;150;90;2;1;0;0;1;1
+72514;23574;1;157;68.0;140;80;1;1;0;0;1;1
+72516;20341;2;171;72.0;160;90;1;1;0;0;0;1
+72517;18137;2;167;54.0;120;90;1;1;1;1;1;0
+72519;23313;1;171;80.0;140;80;1;1;0;0;0;1
+72520;14334;1;162;79.0;110;60;1;1;0;0;1;0
+72521;15942;2;174;80.0;130;100;1;1;1;0;1;1
+72522;16796;1;157;63.0;120;80;1;1;0;0;1;0
+72523;14536;1;160;86.0;110;70;1;1;0;0;0;0
+72524;17761;2;172;56.0;150;90;1;1;0;0;1;0
+72525;21880;2;168;99.0;130;80;2;2;1;1;1;0
+72526;19700;2;156;63.0;130;69;1;1;1;0;0;0
+72528;21069;1;159;80.0;110;70;1;1;0;0;0;1
+72530;15328;2;175;86.0;120;80;1;1;0;0;1;0
+72531;19205;2;175;82.4;130;90;2;1;1;1;1;1
+72532;19023;2;168;56.0;180;60;1;1;0;0;1;1
+72533;22597;1;165;42.0;90;60;1;1;0;0;1;0
+72535;23143;1;167;89.0;140;80;2;1;0;0;1;1
+72539;16918;2;164;66.0;1409;90;1;1;0;0;1;1
+72540;15385;2;171;75.0;120;80;1;1;1;0;1;0
+72541;15135;1;164;70.0;110;70;1;1;0;0;0;0
+72542;22472;1;156;56.0;140;90;1;1;0;0;1;1
+72543;14570;1;161;53.0;120;80;1;1;0;0;1;0
+72544;16781;1;158;71.0;140;90;1;1;0;0;0;1
+72545;20527;1;153;83.0;120;80;2;1;0;0;0;1
+72546;16139;1;156;88.0;110;80;1;1;0;0;0;0
+72547;18846;2;170;89.0;150;100;3;1;0;0;1;0
+72549;16622;1;156;57.0;110;70;1;1;0;0;1;0
+72551;21967;2;164;79.0;140;90;3;1;0;0;1;1
+72552;16188;2;166;66.0;150;90;1;1;0;0;1;1
+72553;18083;1;169;73.0;120;80;1;1;0;0;0;0
+72554;19552;1;160;71.0;130;85;1;1;0;0;1;0
+72555;20602;2;170;75.0;120;80;1;1;0;0;1;0
+72558;17334;1;154;64.0;100;80;1;1;0;0;1;0
+72559;14367;1;157;58.0;100;70;1;1;0;0;1;0
+72560;16819;2;166;68.0;140;90;1;1;0;0;1;1
+72561;21195;2;163;107.0;170;80;2;1;0;0;1;1
+72562;19756;1;161;75.0;130;90;1;1;1;0;1;1
+72563;18196;1;160;69.0;120;70;1;1;0;0;1;1
+72564;17390;2;187;70.0;120;80;2;1;1;0;1;1
+72565;21862;1;156;50.0;150;90;3;1;0;0;1;1
+72566;20358;1;162;98.0;120;80;1;1;0;0;1;1
+72567;16101;2;167;75.0;130;90;1;1;0;0;1;0
+72568;18892;2;164;86.0;140;90;1;1;1;0;1;1
+72570;21792;1;143;47.0;130;80;1;1;0;0;1;1
+72571;18865;2;170;99.0;120;80;1;1;0;0;1;1
+72572;21764;2;171;86.0;110;70;1;1;1;0;1;0
+72573;22089;1;170;95.0;130;90;1;1;0;1;1;0
+72574;22590;2;168;68.0;130;90;3;1;0;0;1;1
+72575;19652;1;167;68.0;110;70;1;1;0;0;1;0
+72576;18863;2;170;84.0;160;90;1;1;1;1;1;1
+72577;14449;2;179;80.0;110;80;1;1;1;0;1;0
+72580;19043;1;156;60.0;120;80;1;1;0;0;1;0
+72582;19886;2;165;65.0;146;80;1;1;0;0;0;1
+72583;22580;1;159;68.0;110;70;1;1;0;0;1;0
+72587;16147;2;168;78.0;100;70;1;1;0;0;1;0
+72588;19138;1;154;83.0;130;90;3;3;1;1;1;1
+72591;15178;1;167;67.0;130;90;3;1;0;0;1;1
+72592;22517;1;167;68.0;120;80;1;1;0;0;1;1
+72593;21097;2;176;91.0;120;80;1;1;0;0;1;0
+72594;19118;1;158;66.0;150;90;2;1;0;0;1;1
+72595;23264;1;164;77.0;130;80;3;1;0;0;1;1
+72596;14672;1;151;70.0;130;70;1;1;0;0;1;1
+72599;19810;1;162;68.0;130;80;3;3;1;0;0;1
+72600;21342;2;175;59.0;130;80;1;1;0;0;1;1
+72601;19540;2;164;72.0;140;90;1;1;0;0;1;0
+72602;20978;1;169;72.0;140;90;1;1;0;0;0;1
+72603;22659;1;149;69.0;120;80;2;2;0;0;1;1
+72604;17680;1;159;66.0;110;70;1;1;0;0;1;0
+72605;21270;1;153;74.0;120;70;2;2;0;0;1;0
+72608;19687;2;166;54.0;80;120;1;1;0;0;1;1
+72609;18256;1;160;60.0;120;80;1;1;0;0;1;1
+72610;16553;2;184;75.0;110;80;1;1;1;0;1;0
+72612;19804;1;160;72.0;120;90;2;1;0;0;1;1
+72613;20468;1;167;90.0;120;80;1;1;0;0;1;0
+72615;22780;2;180;75.0;120;80;1;1;0;0;0;1
+72616;21039;2;173;76.0;140;90;1;1;0;0;1;0
+72618;19504;1;165;68.0;120;80;2;1;0;0;1;1
+72619;19855;1;160;72.0;171;87;1;1;0;0;0;0
+72620;15231;2;160;50.0;110;70;1;1;0;0;1;0
+72621;17468;2;160;75.0;120;70;1;1;1;0;1;1
+72624;22763;1;154;85.0;130;100;3;3;0;0;1;1
+72625;21833;2;165;65.0;120;1000;1;1;0;0;0;0
+72626;20392;2;175;95.0;140;90;1;1;0;0;1;1
+72627;21109;1;167;52.0;120;80;1;3;0;0;1;0
+72628;21094;1;161;79.0;140;90;2;2;0;0;1;1
+72630;21123;1;146;63.0;140;90;3;3;0;0;1;0
+72631;22121;1;166;68.0;100;60;2;1;0;0;1;0
+72635;23223;1;159;70.0;140;80;2;1;0;0;1;1
+72636;21823;2;165;64.0;140;100;3;1;1;1;1;1
+72637;18131;1;156;105.0;140;80;1;1;0;0;1;1
+72638;22077;2;163;67.0;120;80;1;1;0;0;1;0
+72639;20949;2;156;56.0;130;80;3;1;0;0;0;1
+72640;18027;1;170;77.0;140;90;1;2;0;0;1;1
+72641;18275;1;157;86.0;100;60;1;1;0;0;1;0
+72642;18379;1;158;86.0;140;80;1;1;0;0;1;1
+72645;22578;2;169;75.0;130;80;3;1;0;0;1;1
+72646;19149;1;158;64.0;140;60;1;1;0;0;1;1
+72647;19655;1;159;71.0;100;70;1;1;0;0;1;0
+72648;21071;1;162;77.0;120;70;1;1;0;0;1;0
+72649;16707;2;169;74.0;140;90;1;1;0;0;1;0
+72650;16801;2;171;89.0;120;80;1;1;0;0;1;1
+72651;19761;2;166;82.0;160;100;2;2;0;0;1;1
+72652;18954;1;155;74.0;110;70;1;2;0;0;1;0
+72653;22831;1;170;79.0;120;80;1;1;0;0;1;0
+72654;21967;1;169;63.0;110;70;1;1;0;0;1;0
+72655;21139;2;172;74.0;140;90;3;3;0;0;1;1
+72656;17632;1;168;74.0;150;80;1;1;0;0;1;1
+72658;18849;1;160;48.0;110;70;1;1;0;0;1;0
+72659;19481;2;175;65.0;120;80;1;1;0;0;1;0
+72660;21064;2;169;59.0;150;90;1;1;0;0;1;0
+72662;16084;1;167;105.0;130;80;1;1;0;0;1;1
+72664;20522;1;165;63.0;130;80;1;1;0;0;1;0
+72666;14839;2;168;63.0;120;80;1;1;0;0;1;0
+72667;21613;1;168;113.0;140;90;3;2;1;1;0;1
+72668;17505;2;170;79.0;120;80;1;1;1;0;1;1
+72669;16066;1;162;71.0;115;70;2;1;0;0;1;0
+72671;22824;2;169;68.0;110;70;1;1;0;0;1;0
+72672;18964;1;156;54.0;120;80;1;1;0;0;1;0
+72674;19586;1;175;74.0;150;100;1;1;0;0;1;1
+72675;18193;1;160;100.0;140;84;3;1;0;0;1;1
+72676;15884;1;168;60.0;120;80;1;1;0;0;0;0
+72677;20409;1;151;60.0;130;100;2;1;0;0;0;0
+72678;20497;1;156;67.0;120;80;1;1;0;0;1;1
+72679;16134;1;162;87.0;120;70;1;1;0;0;1;0
+72683;19711;1;167;105.0;150;100;1;1;0;0;1;1
+72684;22146;1;144;62.0;120;80;1;1;0;0;0;0
+72685;21857;1;152;66.0;160;100;1;1;0;0;1;1
+72686;19237;2;168;72.0;125;85;1;1;0;0;1;0
+72688;18006;1;170;76.0;120;70;2;1;0;0;1;0
+72689;22086;1;160;55.0;120;80;1;1;0;0;0;0
+72690;15866;2;165;75.0;100;70;3;3;0;0;0;0
+72691;21178;1;162;109.0;140;90;3;2;0;0;1;1
+72692;18269;1;162;73.0;120;80;1;1;0;0;1;0
+72693;16705;1;155;61.0;90;60;1;1;0;0;1;0
+72694;16876;2;172;78.0;150;80;2;1;0;0;1;1
+72695;23364;2;180;70.0;110;70;3;1;0;0;1;1
+72696;14701;1;164;103.0;120;80;1;1;0;0;1;0
+72697;14688;1;162;64.0;150;90;1;1;0;0;1;1
+72698;18359;1;164;76.0;140;90;1;1;0;0;1;1
+72699;21847;1;153;73.0;130;80;3;3;0;0;1;1
+72700;23386;2;160;65.0;110;70;1;1;0;0;1;0
+72702;20497;1;168;68.0;150;110;2;1;0;0;0;1
+72703;17336;1;170;80.0;120;80;1;1;0;0;1;0
+72704;22548;2;168;68.0;150;100;1;1;1;1;1;1
+72705;18928;1;160;59.0;105;70;2;2;0;0;1;0
+72706;15159;2;165;69.0;140;100;1;1;0;0;1;1
+72708;18987;2;168;62.0;150;90;1;1;1;1;1;0
+72709;19105;2;160;79.0;120;80;1;1;1;1;1;0
+72711;17409;1;158;68.0;140;90;1;1;0;0;1;1
+72712;21662;2;179;91.0;130;90;2;1;0;0;0;1
+72713;19769;1;150;50.0;110;60;1;1;0;0;1;0
+72714;19620;1;165;62.0;120;80;1;1;0;0;1;0
+72715;21400;2;172;92.0;140;90;3;1;0;0;1;1
+72717;23348;2;160;66.0;120;80;1;1;0;0;1;1
+72718;18161;1;159;52.0;110;70;1;1;0;0;1;0
+72719;17563;1;173;96.0;130;90;2;3;0;0;1;0
+72720;16672;1;158;81.0;120;80;1;1;0;0;0;1
+72722;21178;1;164;70.0;120;80;1;1;0;0;1;1
+72723;18303;1;157;88.0;140;90;2;1;0;0;1;1
+72724;18467;2;162;62.0;170;90;2;1;0;0;1;1
+72726;21951;1;172;95.0;160;100;1;1;0;0;1;1
+72727;19066;1;153;97.0;130;80;1;1;0;0;1;1
+72728;20418;1;166;72.0;151;80;1;1;0;0;1;0
+72731;16202;2;169;69.0;120;80;1;1;0;0;0;1
+72732;21184;2;170;65.0;130;90;3;1;1;0;1;1
+72733;17484;1;169;81.0;120;80;1;1;0;0;1;0
+72734;21227;2;178;105.0;140;90;1;1;1;0;1;0
+72735;21812;1;162;82.0;120;70;1;1;0;0;1;1
+72739;21435;1;162;85.0;140;90;1;1;0;0;1;1
+72742;23356;1;172;65.0;120;70;1;1;0;0;1;1
+72743;18823;1;162;83.0;140;90;1;1;0;0;1;1
+72744;15152;1;156;65.0;150;90;1;1;0;0;1;1
+72746;14675;2;175;80.0;120;80;1;1;1;1;0;0
+72747;22504;1;168;68.0;130;90;1;1;0;0;1;1
+72748;22203;1;168;71.0;120;80;1;1;0;0;1;0
+72749;20383;2;179;82.0;120;80;1;1;1;0;1;0
+72750;18250;1;163;56.0;90;60;2;1;0;0;1;0
+72752;15215;1;156;60.0;120;80;1;1;0;0;0;0
+72753;22482;2;165;75.0;120;80;1;1;0;0;0;1
+72754;15228;2;175;69.0;120;80;1;1;0;0;1;0
+72755;17691;2;176;63.0;110;70;1;1;1;1;1;0
+72757;15504;1;164;91.0;120;80;1;1;0;0;1;1
+72758;15623;1;145;60.0;150;90;1;1;0;0;1;1
+72759;19685;2;171;74.0;120;80;1;1;0;0;1;1
+72761;20561;2;186;118.0;125;83;3;1;0;0;1;0
+72762;17354;2;168;69.0;110;80;1;1;0;0;0;0
+72764;18988;1;160;70.0;140;90;1;1;0;0;1;0
+72767;18834;1;171;83.0;110;70;1;1;0;0;1;1
+72768;16652;2;176;68.0;110;70;1;1;0;0;1;0
+72769;19016;1;162;62.0;130;80;1;1;0;0;1;1
+72770;22012;1;170;152.0;220;120;3;1;0;0;0;0
+72773;19605;1;145;101.0;140;100;1;1;0;0;0;0
+72774;21171;1;159;85.0;100;60;1;1;0;0;0;0
+72775;23437;1;155;80.0;140;90;3;1;0;0;0;1
+72776;21012;2;170;68.0;170;70;2;1;0;0;0;1
+72777;21864;1;157;59.0;110;80;1;1;0;0;1;0
+72778;21088;2;175;82.0;130;90;1;1;0;0;1;1
+72779;19135;1;156;52.0;120;80;1;1;0;0;1;0
+72780;18096;2;174;63.0;150;80;1;1;0;0;1;1
+72781;23311;1;170;79.0;120;80;3;1;0;0;1;1
+72782;23224;1;162;65.0;170;90;1;1;0;0;1;1
+72783;16599;2;181;97.0;100;80;1;1;0;0;1;0
+72784;17458;1;158;58.0;140;90;1;1;0;0;1;1
+72785;19615;1;163;90.0;110;80;1;1;0;0;1;1
+72786;18324;1;154;78.0;110;80;1;3;0;0;1;0
+72788;19597;2;168;71.0;120;80;1;1;0;1;0;1
+72789;21876;1;151;54.0;150;90;2;1;0;0;1;1
+72790;16118;2;178;92.0;120;80;1;1;0;0;1;0
+72791;21904;2;168;62.0;120;70;1;1;1;1;1;0
+72792;18298;2;171;75.0;120;60;1;1;0;0;1;0
+72793;18864;1;168;95.0;140;80;1;1;0;0;1;1
+72794;22605;2;173;65.0;100;70;2;1;0;0;1;0
+72795;20445;2;167;74.0;150;1000;3;1;0;0;1;1
+72796;18924;2;165;65.0;120;80;2;1;0;0;1;0
+72797;18266;1;161;68.0;120;80;1;1;0;0;1;0
+72798;19747;2;175;75.0;120;80;1;1;1;0;1;1
+72799;21072;1;151;67.0;120;80;2;1;0;0;1;1
+72800;17535;1;162;48.0;120;80;1;1;0;0;1;0
+72801;17561;2;172;83.0;110;70;1;1;0;0;1;0
+72802;18697;2;169;80.0;130;100;3;1;1;0;1;1
+72803;18963;1;165;65.0;120;80;1;1;0;0;1;0
+72804;18923;1;164;70.0;140;90;1;1;0;0;1;1
+72806;23401;1;158;95.0;130;80;2;1;0;0;0;0
+72808;17594;2;181;79.0;130;90;1;3;0;0;1;0
+72810;22036;1;141;44.0;140;90;3;1;0;0;1;1
+72811;21786;1;158;79.0;120;78;1;1;0;0;1;0
+72812;17347;2;176;113.0;130;80;2;2;0;1;1;0
+72813;21937;1;151;66.0;123;74;3;3;0;0;1;1
+72814;21170;1;164;69.0;120;80;1;1;0;0;1;1
+72815;23413;1;175;74.0;140;80;1;3;0;0;1;1
+72816;18946;2;169;65.0;140;90;1;1;0;0;1;1
+72817;21155;2;181;71.0;130;90;1;1;0;0;0;1
+72818;17490;2;176;69.0;130;90;1;1;0;0;0;1
+72819;22079;1;168;63.0;120;90;3;3;0;0;0;0
+72820;17497;1;163;66.0;100;70;2;1;0;0;0;0
+72822;18381;1;156;72.0;120;80;1;1;0;0;1;1
+72826;23091;1;155;52.0;100;60;1;1;0;0;1;0
+72827;19009;1;153;103.0;130;90;1;1;0;0;1;0
+72828;22131;1;160;75.0;150;90;1;1;0;0;1;1
+72829;16884;2;171;70.0;140;90;1;1;0;0;1;1
+72831;22505;2;177;73.0;120;80;1;1;0;0;1;1
+72832;21115;1;160;100.0;130;80;1;1;0;0;1;1
+72833;20640;1;163;95.0;160;100;3;3;0;0;0;0
+72834;18193;1;161;63.0;100;60;1;1;0;0;1;0
+72835;21256;1;162;63.4;130;80;1;1;0;0;1;0
+72837;22509;1;163;71.0;130;80;1;1;0;0;0;1
+72839;18964;1;162;79.0;120;80;2;1;0;0;1;1
+72841;21033;1;166;65.0;160;90;3;1;0;0;1;1
+72842;23497;1;178;82.0;120;80;1;1;0;0;0;1
+72843;21910;1;158;63.0;140;70;3;1;0;0;1;1
+72845;14616;1;155;59.0;110;80;2;1;1;0;0;0
+72848;19727;1;162;68.0;150;90;1;1;0;0;1;1
+72849;19257;2;170;82.0;120;80;1;1;0;0;0;0
+72850;19600;2;166;70.0;120;70;1;3;0;0;1;1
+72851;15798;1;168;93.0;12;80;1;1;0;0;1;1
+72852;15336;2;178;81.0;120;70;1;1;0;1;1;0
+72853;17619;2;170;82.0;160;100;2;1;0;0;0;1
+72855;20304;1;161;90.0;142;85;3;2;0;0;1;1
+72856;21273;2;171;82.0;130;90;1;1;0;0;1;1
+72857;23511;2;169;101.0;110;80;3;1;0;0;0;1
+72859;21926;1;168;68.0;140;90;1;1;0;0;1;1
+72860;17490;2;160;84.0;150;100;1;1;0;0;0;1
+72861;16914;1;175;67.0;120;80;2;2;0;0;1;0
+72862;20514;1;148;88.0;120;80;1;1;0;0;1;1
+72863;23550;1;156;80.0;130;80;1;1;0;0;1;0
+72864;17438;1;165;60.0;120;80;1;1;0;0;1;0
+72865;21041;1;160;72.0;120;80;1;1;0;0;1;0
+72866;20254;1;153;92.0;150;90;1;1;0;0;1;1
+72867;16049;2;180;79.0;120;80;1;1;0;0;1;0
+72870;19916;1;162;89.0;140;80;1;3;0;0;1;1
+72873;17632;2;178;125.0;130;80;1;3;1;0;1;0
+72876;20134;1;167;108.0;140;90;3;2;0;1;0;0
+72877;16280;1;169;74.0;120;60;1;1;0;0;1;0
+72878;21769;1;160;51.0;125;80;1;1;0;0;1;0
+72881;19695;1;142;65.0;160;80;1;1;0;0;0;1
+72882;19664;2;167;83.0;120;80;3;3;0;0;1;1
+72883;21281;1;165;75.0;140;90;2;1;0;0;1;1
+72884;20341;2;164;90.0;150;90;2;1;0;0;1;1
+72886;20329;2;163;83.0;130;80;3;1;0;0;1;1
+72887;14649;1;169;74.0;120;80;1;1;0;0;1;0
+72888;19001;2;165;71.2;120;80;1;1;1;1;0;0
+72889;22050;1;167;58.0;120;90;1;1;0;0;0;1
+72890;22649;2;162;86.0;140;100;3;3;0;0;1;1
+72891;15850;2;176;71.0;140;100;1;1;1;0;0;1
+72892;16108;2;182;87.0;130;90;1;1;0;0;1;0
+72893;18281;1;158;84.0;120;90;1;1;0;0;1;0
+72894;16732;1;168;85.0;100;60;2;1;0;0;1;0
+72895;20302;2;182;69.0;120;80;1;1;0;0;1;0
+72896;18089;1;155;75.0;130;80;1;1;0;0;1;0
+72898;16639;2;188;85.0;120;80;1;1;0;0;0;0
+72899;17769;1;167;70.0;150;90;2;1;0;0;1;1
+72901;19681;1;157;125.0;130;80;2;2;0;1;1;1
+72902;16117;1;150;52.0;110;70;1;1;0;0;0;0
+72903;21215;1;175;81.0;130;80;1;1;0;0;0;1
+72904;20459;1;165;73.0;100;70;1;1;0;0;1;0
+72905;19701;1;162;82.0;120;80;1;1;0;0;1;0
+72906;20317;2;174;80.0;120;80;1;1;1;0;1;0
+72907;20905;2;166;96.0;120;80;1;1;0;0;1;0
+72908;21089;1;158;73.0;140;90;2;1;0;0;1;1
+72909;14415;1;171;69.0;110;70;2;2;0;0;1;0
+72911;22508;2;164;71.0;110;80;3;3;0;0;1;1
+72912;21762;1;159;58.0;120;80;1;1;0;1;1;1
+72915;22632;1;154;76.0;120;80;1;1;0;0;1;1
+72916;19884;1;164;72.0;120;80;1;1;0;0;1;1
+72917;21743;2;174;79.0;130;90;1;2;1;0;1;0
+72918;14623;2;170;70.0;120;80;1;1;0;0;1;0
+72922;20667;1;158;52.0;120;80;1;1;0;0;1;0
+72923;23434;1;162;64.0;140;90;1;1;0;0;1;1
+72927;19729;1;165;58.0;120;80;1;1;0;1;1;0
+72928;16603;1;161;105.0;140;80;1;1;0;0;1;0
+72930;19641;1;156;54.0;140;90;1;1;0;0;1;1
+72932;18213;1;164;83.0;150;90;2;2;0;0;1;1
+72934;15405;2;170;68.0;110;60;1;1;0;0;1;0
+72935;18338;1;166;61.0;120;70;1;1;0;0;1;0
+72936;23395;2;175;77.0;130;80;1;1;1;1;1;0
+72937;23272;1;157;86.0;140;80;3;1;0;0;1;1
+72939;15999;1;169;90.0;150;80;1;1;0;0;1;1
+72941;16119;1;169;65.0;120;80;3;3;0;0;1;0
+72942;18226;2;165;68.0;120;80;1;1;0;0;1;0
+72943;18055;2;169;93.0;150;100;1;1;0;0;1;1
+72946;21696;1;156;62.0;100;90;1;1;0;0;1;1
+72947;23362;2;176;78.0;140;90;1;1;0;0;1;0
+72948;15942;2;176;58.0;110;70;1;1;1;0;1;1
+72950;18173;2;176;79.0;140;90;1;1;0;0;1;1
+72951;15132;1;161;53.0;120;80;2;1;0;0;0;1
+72952;23328;2;168;74.0;145;90;2;1;1;0;1;1
+72953;17364;1;150;69.0;170;100;2;1;0;0;1;1
+72957;19759;1;160;61.0;140;90;1;1;0;0;0;1
+72959;20400;1;175;65.0;120;80;1;1;0;0;1;1
+72960;20404;2;158;63.0;120;80;1;1;0;0;1;0
+72963;14713;1;168;69.0;140;100;3;3;0;0;1;0
+72964;21979;1;163;70.0;150;90;3;1;0;0;1;1
+72965;21845;1;150;79.0;150;40;2;1;0;0;1;1
+72966;19132;1;168;72.0;130;80;1;1;0;0;0;0
+72969;19620;1;173;75.0;100;60;1;1;0;0;1;0
+72970;21107;1;164;64.0;170;90;2;1;0;0;1;1
+72971;15370;2;178;78.0;110;70;1;1;0;0;1;0
+72972;21685;1;161;54.0;100;70;2;1;0;0;1;0
+72973;14821;1;178;85.0;120;80;1;1;0;0;0;0
+72974;17371;1;160;68.0;160;45;1;1;0;0;1;1
+72975;21213;1;165;107.0;180;115;3;3;0;0;0;1
+72977;18104;1;160;58.0;120;80;1;1;0;0;1;0
+72980;20479;2;167;84.0;160;90;1;1;0;0;1;1
+72981;21092;2;165;67.0;120;80;1;1;0;0;1;0
+72982;18278;2;175;84.0;120;80;1;1;0;0;1;0
+72984;19119;1;167;75.0;130;90;1;1;0;0;1;1
+72985;15773;1;151;67.0;120;80;1;1;0;0;1;1
+72986;23491;2;170;79.0;140;90;1;1;0;0;1;1
+72988;20422;2;178;75.0;120;70;1;1;0;0;1;0
+72990;22652;1;166;68.0;120;80;1;1;0;0;1;1
+72993;21912;1;170;82.0;140;80;1;3;0;0;1;0
+72994;18267;2;166;75.0;110;70;3;1;0;0;1;1
+72996;21958;2;176;97.0;140;80;3;2;0;0;1;1
+72997;17297;1;145;44.0;100;70;1;1;0;0;1;1
+72998;15501;2;155;58.0;140;90;2;1;0;0;1;1
+73000;14536;1;168;78.0;120;80;1;1;0;0;0;0
+73001;14769;1;160;66.0;120;80;1;1;0;0;0;0
+73002;15193;2;176;85.0;120;80;1;1;0;0;1;0
+73003;20229;1;173;80.0;110;70;3;1;0;0;1;1
+73004;20304;1;160;58.0;110;70;1;1;0;0;1;1
+73005;15514;2;167;68.0;120;80;1;1;0;0;1;0
+73006;14761;1;164;72.0;110;80;1;1;0;0;1;0
+73007;18925;1;167;91.0;120;80;1;1;0;0;1;0
+73008;20476;2;175;82.0;110;90;1;1;0;0;1;0
+73009;21450;1;158;74.0;130;80;3;1;0;0;1;1
+73010;21089;2;169;63.0;130;80;2;3;1;0;1;1
+73011;22217;1;152;64.0;110;55;1;1;0;0;1;0
+73014;22515;1;150;53.0;130;80;1;1;0;0;1;0
+73015;21139;1;167;75.0;130;80;2;2;0;0;0;1
+73017;20349;2;172;63.0;120;80;1;1;0;0;0;0
+73021;19908;1;157;63.0;100;70;1;1;0;0;1;0
+73023;19075;1;158;62.0;150;80;1;1;0;0;1;0
+73024;18716;1;169;85.0;120;80;1;1;0;0;1;1
+73025;23311;2;169;67.0;110;70;1;1;0;0;1;0
+73027;20473;2;170;79.0;120;80;1;1;0;0;0;0
+73028;19162;1;165;66.0;120;80;1;1;0;0;1;0
+73031;21980;1;164;58.0;110;70;1;1;0;0;0;1
+73032;17609;1;163;70.0;110;70;1;1;0;0;1;0
+73033;20423;1;164;90.0;150;80;1;1;0;0;1;0
+73038;15073;1;162;68.0;100;70;2;1;0;1;1;0
+73039;18930;1;168;68.0;120;80;1;1;0;0;1;1
+73041;21836;1;155;60.0;120;80;3;2;0;0;1;1
+73042;15512;1;162;59.0;120;80;1;1;0;0;1;0
+73045;20527;2;175;76.0;120;80;1;1;0;0;1;0
+73046;20265;1;163;80.0;110;80;1;1;0;0;1;1
+73047;20905;1;156;64.0;120;80;1;1;0;0;1;1
+73048;17423;1;154;50.0;110;60;1;1;0;0;1;0
+73050;18171;2;164;70.0;120;80;1;1;0;0;0;0
+73051;14308;1;170;82.0;120;80;3;3;0;0;1;1
+73052;22026;2;160;76.0;180;100;2;1;1;1;1;1
+73053;20694;1;170;70.0;120;80;1;1;0;0;1;0
+73054;19034;1;159;91.0;190;80;1;1;0;0;1;1
+73056;23430;1;163;64.0;110;70;3;1;0;0;1;1
+73058;23153;1;162;78.0;130;100;1;1;0;0;1;0
+73059;15613;1;175;70.0;140;90;1;1;0;0;1;1
+73060;22511;1;152;70.0;140;90;1;1;0;0;1;1
+73062;18988;1;151;52.0;130;80;1;1;0;0;1;0
+73063;16034;2;172;78.0;140;90;2;1;0;0;1;1
+73066;21934;1;158;69.0;120;80;2;1;0;0;1;0
+73067;15957;1;165;54.0;120;80;1;1;0;0;0;0
+73068;16095;1;152;75.0;140;1000;1;1;0;0;1;1
+73069;15174;1;166;86.0;130;90;1;1;0;0;1;0
+73070;16070;2;171;84.0;120;90;1;1;0;0;1;0
+73071;17391;1;155;73.0;120;90;3;1;0;0;1;0
+73072;22151;2;179;104.0;130;80;3;1;0;0;1;0
+73073;18384;1;178;81.0;120;70;1;1;0;0;1;0
+73075;23575;2;164;76.0;120;80;1;1;0;0;1;0
+73077;18951;1;170;78.0;140;100;1;1;0;0;1;1
+73078;19685;1;168;87.0;160;100;2;1;0;0;0;1
+73079;21061;1;154;90.0;120;80;1;1;0;0;1;1
+73081;19651;2;158;65.0;120;80;1;1;0;0;0;0
+73082;17452;1;162;67.0;130;80;1;1;0;0;1;1
+73083;21268;1;163;67.0;120;80;1;1;0;0;0;1
+73084;18875;2;171;90.0;125;85;1;3;1;0;0;0
+73085;23396;1;157;77.0;120;80;2;2;0;0;1;1
+73087;21178;1;165;55.0;140;90;3;3;0;0;1;1
+73088;23230;1;158;95.0;130;90;1;1;0;0;1;1
+73089;14562;2;174;110.0;120;80;2;1;0;0;1;0
+73092;19665;1;159;53.0;110;70;1;1;0;0;1;0
+73093;20314;1;163;85.0;120;80;2;1;0;0;1;1
+73094;20482;1;160;70.0;140;90;2;1;0;0;0;1
+73096;19716;2;168;69.0;120;80;1;1;1;0;1;0
+73097;14478;2;170;70.0;140;90;2;1;0;0;1;1
+73099;16836;2;175;71.0;130;100;1;1;0;0;1;0
+73100;20499;1;154;93.0;110;70;1;1;0;0;1;0
+73101;21196;1;150;54.0;120;80;1;1;0;0;1;0
+73103;18781;1;159;58.0;120;80;3;1;0;0;1;0
+73104;20428;1;170;70.0;120;70;1;1;0;0;1;0
+73105;22912;1;169;78.0;130;80;2;1;0;0;1;1
+73106;18440;1;168;101.0;140;90;1;1;0;0;1;1
+73107;20444;1;162;98.0;120;80;2;1;0;0;1;1
+73108;14618;1;167;60.0;110;80;1;1;0;0;1;0
+73109;20566;1;166;61.0;120;80;1;1;0;0;1;0
+73110;17672;2;169;69.0;120;80;1;1;0;0;1;0
+73114;21915;1;172;105.0;140;90;1;3;0;0;1;1
+73115;20238;2;166;68.0;120;80;3;1;1;0;1;0
+73116;21308;1;166;80.0;111;74;2;1;0;0;0;0
+73117;14805;1;159;81.0;130;100;1;1;0;0;0;0
+73118;15836;2;168;65.0;100;60;1;1;0;0;1;0
+73119;16686;2;166;65.0;120;80;1;1;0;0;1;1
+73120;19531;2;161;71.0;140;100;1;1;0;0;1;1
+73122;17503;1;167;61.0;110;80;1;1;0;0;1;0
+73123;16875;1;156;56.0;100;60;1;1;0;0;1;0
+73124;21816;2;163;57.0;130;70;1;2;0;1;0;0
+73127;20329;1;176;53.0;110;80;1;1;0;0;1;0
+73128;14496;2;177;89.0;180;1100;3;1;0;0;1;1
+73130;16700;1;152;52.0;100;70;1;1;0;0;1;0
+73131;19859;2;171;82.0;130;80;1;1;0;0;1;0
+73132;21739;1;151;63.0;130;90;1;2;0;0;1;0
+73133;14839;1;162;68.0;130;90;1;1;0;0;1;1
+73135;22622;1;150;71.0;130;80;1;1;0;0;1;0
+73136;19732;1;172;82.0;160;90;2;1;0;0;1;0
+73138;22417;1;161;116.0;130;80;1;1;0;0;1;0
+73139;16158;2;173;85.0;130;80;1;1;1;0;0;1
+73141;22030;1;154;79.0;130;80;3;1;0;0;1;0
+73142;20364;1;164;62.0;110;70;1;1;0;0;1;1
+73144;16253;1;165;66.0;120;80;1;1;0;0;1;1
+73145;18960;1;165;66.0;110;70;1;1;0;0;1;0
+73148;21289;1;170;77.0;140;90;1;1;0;0;1;1
+73149;16800;1;157;65.0;130;80;1;1;0;0;1;1
+73150;18912;2;168;100.0;150;80;1;1;0;0;1;1
+73151;21040;1;168;100.0;145;82;1;1;0;0;0;0
+73153;16855;2;167;86.0;110;70;1;1;0;0;1;0
+73154;21112;1;160;105.0;150;100;1;1;0;0;1;1
+73155;18998;2;179;100.0;140;100;1;1;0;0;0;1
+73156;21199;1;168;94.0;140;90;1;1;0;0;1;1
+73158;18993;1;163;68.0;120;80;1;1;0;0;1;0
+73159;15183;2;179;78.0;110;90;1;1;0;0;1;0
+73160;18853;1;160;81.0;100;60;1;1;0;0;1;0
+73161;16099;1;166;56.0;120;80;1;1;0;0;1;0
+73162;21315;1;165;65.0;120;80;1;1;0;0;1;0
+73163;15061;1;163;69.0;110;70;1;1;0;0;1;0
+73164;14659;2;162;69.0;110;70;1;1;1;0;1;0
+73165;20632;2;176;74.0;150;90;1;1;0;0;1;1
+73166;18320;2;185;75.0;120;70;1;1;0;0;1;1
+73168;21961;1;156;72.0;120;80;1;1;0;0;0;1
+73169;14353;1;150;85.0;140;90;1;1;0;0;1;0
+73170;21792;1;162;76.0;110;70;1;1;0;0;1;1
+73171;20463;1;165;74.0;110;70;2;1;0;0;1;0
+73172;18917;1;163;76.0;140;90;1;1;0;0;1;1
+73173;17593;1;176;75.0;120;80;1;1;0;0;1;0
+73174;18287;1;164;67.0;130;90;1;1;0;0;0;0
+73175;19797;1;157;90.0;150;89;1;1;0;0;0;1
+73177;20372;1;160;87.0;150;100;1;1;0;0;1;0
+73178;19723;1;157;82.0;150;90;3;3;0;0;1;1
+73180;17474;1;157;65.0;130;90;3;1;0;0;1;1
+73182;20433;1;164;100.0;140;80;1;1;0;0;1;0
+73183;15215;2;164;61.0;140;90;2;1;0;0;0;1
+73184;23222;1;168;78.0;110;80;3;1;0;0;1;1
+73185;21233;1;159;77.0;150;80;1;1;0;0;1;1
+73188;19886;1;158;55.0;130;90;1;1;0;0;1;0
+73190;19102;2;159;49.0;90;60;1;1;0;0;1;0
+73192;20641;2;169;71.0;120;90;1;1;1;0;1;0
+73194;20487;1;154;46.0;130;90;1;1;0;0;1;0
+73196;19129;1;154;106.0;140;90;1;1;0;0;0;1
+73197;16138;2;167;68.0;120;80;1;1;0;0;0;1
+73198;15259;2;180;90.0;120;70;2;1;0;0;1;0
+73199;20363;1;154;84.0;160;90;1;1;0;0;1;1
+73200;22623;2;172;82.0;158;90;1;1;0;0;1;1
+73201;21371;1;153;64.0;120;80;3;1;0;0;1;1
+73202;20520;1;169;74.0;140;100;1;1;0;0;1;1
+73204;21131;2;160;74.0;100;70;1;1;0;0;1;1
+73206;21871;1;150;65.0;126;80;1;1;0;0;1;1
+73207;20347;1;162;77.0;150;90;1;1;0;0;1;1
+73208;22603;2;163;64.0;150;100;1;1;0;0;1;1
+73209;22033;1;156;80.0;120;90;1;1;0;0;0;1
+73210;22781;2;172;109.0;170;100;1;1;1;1;1;1
+73211;14422;1;158;60.0;125;80;1;1;0;0;1;0
+73212;23233;1;158;54.0;140;90;3;1;0;0;1;1
+73213;19717;2;180;77.0;120;80;1;1;0;0;1;0
+73214;21187;1;153;72.0;150;90;1;1;0;0;1;1
+73215;19023;1;160;59.0;120;80;1;1;0;0;1;1
+73216;19158;2;165;100.0;140;90;1;1;1;0;1;1
+73219;18894;1;176;77.0;140;100;2;2;0;0;1;1
+73220;18142;1;156;55.0;160;100;1;1;0;0;1;1
+73222;21805;1;156;121.0;140;90;2;2;0;0;1;1
+73223;21836;1;155;62.0;130;80;1;1;0;0;1;0
+73224;16900;2;165;60.0;120;60;1;1;0;0;1;1
+73225;20376;2;182;125.0;180;100;2;2;0;0;1;1
+73226;14746;2;168;60.0;120;60;1;1;0;0;0;1
+73227;14507;1;165;48.0;120;80;1;1;0;0;1;0
+73228;18240;2;160;60.0;120;80;1;1;0;0;1;1
+73229;23193;1;178;79.0;120;100;3;1;0;0;1;1
+73230;21880;1;158;84.0;130;80;3;3;0;0;0;1
+73231;18265;1;166;72.0;120;80;2;1;0;0;1;1
+73232;15513;1;152;122.0;150;90;2;2;0;0;1;1
+73233;21970;2;175;84.0;106;69;1;1;1;0;1;0
+73234;18378;2;176;66.0;130;90;1;3;1;0;1;1
+73235;21939;1;160;85.0;150;90;2;1;0;0;1;1
+73236;23586;2;170;70.0;150;90;1;1;0;0;1;1
+73238;20461;1;166;72.0;120;80;3;1;0;0;0;1
+73239;20973;1;168;67.0;120;80;1;1;0;0;1;1
+73240;18228;1;171;64.0;120;80;1;1;0;0;1;0
+73241;19027;1;165;60.0;110;80;3;3;0;0;1;1
+73243;19614;1;168;83.0;140;80;1;1;0;0;1;1
+73247;17319;2;169;62.0;120;80;3;3;0;0;1;1
+73248;16161;1;171;93.0;130;80;2;1;0;0;1;0
+73249;17589;1;165;78.0;120;80;1;1;0;0;1;1
+73251;21766;2;175;84.0;130;80;1;1;0;0;0;1
+73252;14573;1;158;46.0;110;70;1;1;0;0;1;0
+73253;19631;2;174;150.0;150;1000;1;1;1;0;1;1
+73255;22470;1;154;97.0;140;80;1;1;0;0;0;0
+73256;19623;1;187;89.0;120;70;2;2;0;0;0;0
+73257;16762;2;166;88.0;110;70;1;1;0;0;1;0
+73258;21759;1;179;84.0;120;80;1;1;0;0;0;0
+73259;21846;2;175;63.0;130;80;1;1;0;0;0;0
+73260;16579;2;184;109.0;160;70;3;1;0;0;1;1
+73261;23186;1;162;78.0;140;90;1;1;0;0;1;1
+73262;16053;2;157;66.0;150;80;2;1;1;1;1;1
+73263;22639;1;160;75.0;120;80;3;3;0;0;1;1
+73264;21284;2;167;58.0;150;90;1;1;0;0;1;1
+73265;21224;1;152;85.0;120;80;1;1;0;0;1;0
+73267;21222;1;168;127.0;150;90;3;3;0;0;1;0
+73269;15442;2;177;86.0;150;100;1;1;0;0;1;1
+73272;20589;2;184;82.0;120;80;1;1;1;0;1;0
+73273;18129;2;160;70.0;120;80;1;1;0;0;1;0
+73274;14777;1;158;84.0;140;95;1;1;0;0;0;1
+73275;18855;1;164;102.0;140;90;2;1;0;0;0;1
+73276;21754;2;168;72.0;140;90;1;1;0;0;1;1
+73277;18230;1;158;60.0;160;95;1;1;0;0;1;1
+73279;21977;1;161;81.0;130;90;1;1;0;0;1;1
+73280;22742;1;164;107.0;120;80;3;3;0;0;1;0
+73282;19668;1;167;75.0;130;90;3;3;0;0;1;0
+73283;21880;1;157;79.0;110;80;3;2;0;0;1;1
+73284;22045;1;169;74.0;150;100;1;1;0;0;1;1
+73285;20479;2;174;75.0;130;70;1;1;0;0;0;0
+73286;19628;2;172;104.0;140;80;3;1;0;0;1;1
+73288;21937;1;164;65.0;110;80;1;1;0;0;1;1
+73290;19502;1;164;83.0;140;90;1;1;0;0;1;1
+73292;17438;2;180;95.0;100;70;2;1;0;1;0;1
+73293;18225;1;161;56.0;110;70;1;1;0;0;1;0
+73294;21944;1;155;56.0;110;70;1;1;0;0;1;0
+73295;20165;2;177;84.0;140;80;3;3;0;0;1;1
+73296;20535;1;169;66.0;120;80;1;1;0;0;1;1
+73297;20465;2;173;98.0;150;90;2;1;0;0;1;0
+73298;21972;1;161;73.0;110;70;2;1;0;0;1;1
+73299;18487;1;151;76.0;110;70;1;1;0;0;1;0
+73300;22689;2;162;95.0;130;80;1;2;0;0;1;0
+73302;15324;1;162;84.0;100;60;1;1;0;0;1;0
+73304;18085;2;174;79.0;120;80;1;1;0;0;1;0
+73305;23219;1;158;62.0;120;80;3;3;0;0;0;1
+73306;19318;1;160;65.0;120;80;1;1;0;0;1;0
+73307;23471;2;168;65.0;110;70;1;1;0;0;0;0
+73308;17676;1;160;60.0;120;80;1;1;0;0;1;1
+73309;18096;1;167;89.0;120;80;1;1;0;0;1;0
+73310;19437;1;171;86.0;120;80;1;1;0;0;1;0
+73311;21157;2;183;74.0;120;80;1;1;0;0;1;0
+73312;19559;1;170;70.0;120;80;1;1;0;0;1;0
+73313;19812;1;162;70.0;110;80;1;1;0;0;1;0
+73314;14671;1;162;131.0;120;70;1;1;0;0;1;1
+73315;18200;1;162;115.0;140;90;2;1;0;0;1;0
+73317;23209;1;165;75.0;120;90;1;1;0;0;0;0
+73318;21115;1;155;37.0;110;70;1;1;0;0;0;1
+73319;18198;1;169;65.0;110;70;1;1;0;0;1;0
+73320;15775;2;168;70.0;110;80;2;1;0;0;1;0
+73321;20753;1;168;72.0;120;80;3;3;0;0;1;0
+73322;20998;1;165;65.0;120;79;2;1;0;0;0;0
+73323;20710;1;168;97.0;120;70;2;2;0;0;0;1
+73324;15980;2;170;75.0;110;70;1;1;0;0;0;0
+73325;14565;2;171;70.0;120;80;1;1;0;0;0;0
+73327;22747;1;164;74.0;140;80;1;1;0;0;1;1
+73328;21985;1;165;100.0;140;90;1;1;0;0;1;1
+73329;21854;1;154;62.0;130;80;2;1;0;0;1;1
+73330;16540;1;150;46.0;120;90;1;1;0;0;1;0
+73331;22692;1;174;76.0;120;80;3;1;0;0;1;0
+73334;15972;2;175;110.0;140;90;3;3;1;0;1;1
+73336;22770;2;172;84.0;145;90;1;1;0;0;1;1
+73337;17291;1;167;63.0;140;80;1;1;0;0;1;1
+73338;19177;1;173;82.0;110;70;2;2;0;0;1;0
+73340;20242;1;154;78.0;120;80;1;1;0;0;1;1
+73343;19537;1;152;70.0;110;70;1;1;0;0;1;1
+73344;21149;1;157;59.0;120;70;1;1;0;0;1;0
+73345;22792;2;162;76.0;120;80;1;1;0;0;1;0
+73346;18291;2;160;65.0;140;90;1;1;0;0;1;1
+73349;15163;2;174;78.0;120;80;1;1;0;0;1;0
+73350;18379;1;162;66.0;120;80;2;2;0;0;1;0
+73352;20313;1;160;62.0;150;70;1;1;0;0;1;1
+73354;19482;1;165;65.0;120;80;2;1;0;0;0;1
+73355;19024;1;148;63.0;110;60;1;1;0;0;1;1
+73356;18784;2;168;65.0;11020;80;1;1;0;0;1;1
+73358;14544;1;166;73.0;110;70;3;3;0;0;1;0
+73359;23424;1;150;85.0;140;90;3;3;0;0;1;1
+73361;15886;2;176;89.0;120;80;2;1;0;0;1;0
+73362;18974;1;165;65.0;120;80;1;1;0;0;0;0
+73363;20956;1;165;71.0;160;90;1;2;0;0;1;1
+73364;17374;1;157;67.0;110;70;2;1;0;0;1;0
+73367;15136;1;163;77.0;130;80;1;1;0;0;1;0
+73369;16745;2;160;82.0;120;80;2;2;0;0;1;0
+73371;20517;1;164;65.0;120;80;1;1;0;0;1;1
+73373;22706;2;167;65.0;120;80;1;1;0;0;0;1
+73374;21949;1;165;75.0;120;80;1;1;0;0;1;1
+73376;22597;2;166;72.0;130;90;2;1;0;0;1;1
+73377;20982;1;150;51.0;130;70;1;1;0;0;0;1
+73378;21844;1;152;80.0;130;80;1;2;0;0;1;0
+73379;21858;1;158;67.0;130;80;3;3;1;0;1;0
+73380;19540;2;170;69.0;120;80;1;1;0;0;1;0
+73381;23266;1;157;86.0;160;90;3;2;0;0;1;0
+73382;16693;1;164;64.0;150;90;1;1;0;0;1;0
+73384;19469;1;167;94.0;110;80;2;2;0;0;1;0
+73385;23288;2;162;70.0;120;70;1;1;0;0;1;1
+73386;15432;2;70;69.0;120;80;1;1;0;0;0;0
+73387;23264;1;160;79.0;140;90;1;1;0;0;1;1
+73389;19840;2;180;74.0;120;80;1;1;0;0;1;1
+73391;18755;1;162;79.0;140;100;3;3;0;0;1;0
+73392;14626;1;158;54.0;100;70;1;1;0;0;1;0
+73394;19756;1;159;72.0;100;70;1;1;0;0;1;0
+73396;21050;1;168;68.0;140;90;1;1;0;0;1;1
+73397;21935;2;162;66.0;160;90;1;1;0;0;1;1
+73401;23498;1;156;60.0;120;80;1;1;0;0;1;1
+73402;15138;1;158;63.0;120;80;1;3;0;0;1;0
+73404;20265;2;168;90.0;160;100;1;1;0;0;1;1
+73409;16793;1;150;44.0;110;70;2;1;0;0;1;0
+73410;15081;1;162;75.0;110;70;1;1;1;1;1;0
+73413;19071;2;172;95.0;160;90;3;1;0;0;1;1
+73414;21274;1;158;97.0;150;100;3;2;0;0;0;1
+73415;19880;1;168;72.0;110;70;1;1;0;0;1;0
+73418;19001;1;165;80.0;130;110;1;1;0;0;1;1
+73422;21808;1;156;69.0;120;80;1;1;0;0;0;1
+73423;22500;1;163;129.0;170;90;3;3;0;0;0;1
+73424;19637;1;163;80.0;120;80;2;1;0;0;1;0
+73425;17448;1;160;105.0;185;100;2;3;0;0;1;1
+73427;23394;1;158;61.0;110;70;1;1;0;0;1;1
+73428;19806;2;174;86.0;120;80;1;1;0;0;1;0
+73429;16002;1;167;74.0;120;90;1;1;0;0;1;0
+73430;18199;1;161;76.0;120;80;1;1;0;0;1;0
+73432;21265;1;160;80.0;110;70;2;2;0;0;1;0
+73434;19125;1;156;62.0;140;90;1;1;0;0;1;0
+73435;18257;1;165;120.0;120;80;1;2;0;0;0;0
+73437;20665;1;170;70.0;120;70;1;1;0;0;1;0
+73438;21020;2;161;62.0;120;80;3;1;0;0;1;1
+73439;21983;1;171;79.0;100;60;2;2;0;0;1;1
+73440;16806;2;163;60.0;110;70;1;1;0;0;0;0
+73442;21833;2;167;65.0;120;80;1;1;0;0;1;0
+73443;21932;1;170;69.0;120;80;1;1;0;0;1;0
+73446;21663;1;158;80.0;140;100;3;3;0;0;1;0
+73447;22079;1;157;86.0;140;100;1;1;0;0;1;1
+73448;17662;1;156;52.0;90;60;2;1;0;0;1;0
+73449;18915;1;159;64.0;130;70;3;3;0;0;1;0
+73450;16092;1;151;65.0;120;70;2;1;0;1;1;0
+73451;21079;1;161;50.0;100;60;1;1;0;0;1;0
+73452;17485;1;160;60.0;110;70;1;1;0;0;1;0
+73453;19430;1;161;59.0;120;75;1;1;0;0;1;0
+73454;18300;1;165;63.0;110;80;1;1;0;0;1;1
+73455;16273;1;165;70.0;120;80;1;1;0;0;1;0
+73456;20424;2;169;83.0;180;100;1;1;1;0;1;1
+73457;20194;1;161;60.0;110;70;2;1;0;0;1;1
+73458;14812;2;171;69.0;110;75;1;1;0;0;1;0
+73460;20448;1;164;84.0;145;100;2;3;0;0;1;1
+73461;19737;1;166;80.0;120;80;2;1;0;0;1;1
+73462;18281;2;163;63.0;120;80;1;1;0;0;0;0
+73463;22428;1;165;85.0;120;80;1;1;0;0;1;1
+73466;21783;1;158;72.0;160;80;1;1;0;0;1;1
+73468;19777;1;164;68.0;120;80;1;2;0;0;1;1
+73469;18030;2;170;80.0;120;80;3;1;0;0;1;1
+73470;15951;2;183;108.0;120;70;2;2;0;0;1;0
+73471;23269;1;166;87.0;140;100;1;1;0;0;0;0
+73472;19455;1;160;58.0;120;80;1;1;0;0;0;1
+73473;14599;1;163;75.0;120;80;2;1;0;0;1;0
+73474;17522;1;168;89.0;140;90;3;3;0;0;1;1
+73475;17274;1;169;72.0;120;80;1;1;0;0;1;0
+73478;20438;2;170;94.0;160;100;3;2;0;0;0;1
+73479;23422;1;151;76.0;130;90;1;1;0;0;1;1
+73480;22080;1;159;87.0;130;80;1;1;0;0;1;1
+73482;18386;1;175;71.0;110;70;1;1;0;0;1;0
+73484;19609;2;168;72.0;150;80;1;1;0;0;1;1
+73485;15864;2;174;88.0;130;80;1;1;0;0;1;0
+73486;17371;2;173;92.0;140;1000;3;1;0;0;0;1
+73487;21213;2;176;82.0;120;80;1;1;0;0;0;0
+73490;17513;1;169;89.0;120;80;1;1;0;0;1;0
+73491;18856;1;164;95.0;120;90;1;1;0;0;1;0
+73492;14700;2;169;74.0;120;80;1;1;0;0;1;0
+73493;23343;1;165;85.0;150;90;1;1;0;0;1;1
+73494;22100;1;173;78.0;120;80;1;1;0;0;0;0
+73496;18845;1;169;69.0;120;80;1;1;0;0;0;0
+73498;22112;1;167;70.0;120;80;1;3;0;0;1;0
+73499;14519;2;163;67.0;110;60;1;1;0;0;1;0
+73500;14897;1;162;75.0;100;70;1;1;0;0;1;0
+73502;15404;1;174;77.0;120;80;1;1;0;0;1;0
+73503;18169;2;166;75.0;120;80;2;2;1;0;1;0
+73504;18212;1;166;72.0;120;80;1;1;0;0;0;0
+73505;19792;2;165;90.0;120;80;1;1;1;0;1;1
+73506;21836;1;158;79.0;120;80;2;1;0;0;1;1
+73507;18328;2;165;65.0;120;80;1;1;0;0;1;0
+73508;20914;1;171;53.0;110;70;1;1;0;0;1;0
+73510;16878;2;170;62.0;120;80;1;1;0;0;0;0
+73511;21989;1;151;38.0;120;80;1;1;0;1;0;0
+73512;22696;1;158;62.0;120;80;1;1;0;0;1;1
+73513;19549;1;172;90.0;120;80;1;1;0;0;0;1
+73516;16844;2;174;81.0;120;80;1;1;0;0;1;1
+73517;23119;1;155;69.0;120;80;2;1;0;0;1;1
+73518;20235;1;146;95.0;190;100;1;1;0;0;1;1
+73519;19849;2;168;74.0;150;90;1;1;1;0;1;1
+73520;19119;1;161;60.0;120;80;1;1;0;0;1;0
+73521;21032;1;174;69.0;120;80;1;1;0;0;1;1
+73522;21107;2;165;70.0;160;80;2;1;0;0;1;1
+73527;19698;1;165;80.0;200;1100;1;1;0;0;0;1
+73529;22755;2;175;75.0;130;90;1;1;0;0;1;0
+73530;20426;1;150;67.0;150;100;1;1;0;0;1;1
+73531;19819;1;162;59.0;120;80;1;1;0;0;1;0
+73532;16832;1;164;68.0;110;70;1;1;0;0;0;0
+73533;19827;1;157;75.0;120;80;1;1;0;0;0;1
+73534;21077;1;169;74.0;130;90;1;1;0;0;1;0
+73535;22686;1;154;62.0;140;80;1;1;0;0;1;1
+73536;20626;1;161;63.0;140;90;1;1;0;0;1;1
+73537;18270;1;156;60.0;120;80;1;1;0;0;1;0
+73538;18392;2;169;73.0;120;80;2;2;0;0;0;0
+73539;18440;2;166;77.0;140;90;1;3;0;0;1;1
+73540;21887;1;165;78.0;170;90;1;1;0;0;1;1
+73542;18272;1;163;102.0;130;90;1;1;0;0;1;0
+73544;19603;1;158;75.0;110;80;1;1;0;0;1;1
+73546;16701;1;160;77.0;170;80;2;1;0;0;1;0
+73547;17558;1;158;68.0;150;90;1;1;0;0;1;1
+73548;21984;2;178;85.0;140;90;1;1;0;0;1;1
+73549;15581;1;164;78.0;150;1000;1;1;0;0;1;1
+73553;21729;1;162;88.0;160;80;1;1;0;0;1;1
+73554;19087;1;156;61.0;110;70;2;2;0;0;1;1
+73555;22798;1;165;65.0;120;80;3;3;0;0;0;0
+73557;16170;2;159;68.0;120;80;3;1;1;1;1;1
+73558;18150;2;171;73.0;110;70;1;1;1;1;1;0
+73559;20628;2;170;88.0;120;80;1;1;0;0;1;0
+73560;22760;2;169;90.0;130;80;1;1;0;0;1;0
+73561;18313;2;172;68.0;120;80;1;1;0;0;1;0
+73563;15912;1;163;92.0;140;80;1;1;0;0;1;1
+73564;18246;2;170;78.0;120;80;1;1;0;0;1;0
+73565;16640;1;150;42.0;100;70;2;1;0;1;1;0
+73566;14781;1;165;88.0;120;80;2;1;0;0;1;0
+73567;14365;1;159;78.0;120;80;2;1;0;0;1;1
+73568;16548;2;176;70.0;120;70;1;1;0;0;1;0
+73569;21910;1;163;78.0;140;90;1;1;0;0;1;1
+73571;21003;1;153;68.0;160;90;1;1;0;0;0;1
+73572;21115;2;183;84.0;130;80;3;1;1;1;1;0
+73573;19866;2;182;97.0;130;80;1;1;0;0;0;0
+73574;19669;1;160;96.0;150;90;2;2;0;0;1;1
+73575;18108;1;163;70.0;120;80;1;1;0;0;1;0
+73577;21842;1;164;88.0;130;90;1;1;0;0;1;0
+73578;22806;1;168;130.0;140;100;2;1;0;0;1;1
+73579;20347;1;165;88.0;120;80;1;1;0;0;1;0
+73580;15930;1;163;64.0;100;70;1;2;0;0;1;0
+73581;19067;1;156;66.0;110;70;1;1;0;0;0;1
+73582;23652;2;167;72.0;150;100;2;1;0;0;1;1
+73583;20913;1;165;76.0;120;80;3;1;0;0;1;0
+73584;22694;2;160;60.0;170;100;1;1;0;0;0;1
+73585;17445;1;165;99.0;120;80;2;1;0;0;1;1
+73586;21166;1;165;65.0;120;80;1;1;0;0;1;0
+73589;18817;1;154;91.0;160;100;3;1;0;0;0;1
+73590;22691;1;157;51.0;170;90;1;1;0;0;1;1
+73592;18381;2;154;54.0;120;80;1;1;0;0;1;0
+73594;19801;2;169;69.0;120;80;1;1;0;0;1;1
+73595;21791;2;173;59.0;120;70;1;1;0;0;1;0
+73596;21167;1;155;61.0;140;90;2;1;0;0;1;1
+73598;16661;2;180;102.0;120;90;1;2;1;1;1;0
+73599;18000;1;159;62.0;115;70;1;1;0;0;1;0
+73602;21966;1;168;71.0;120;80;1;1;0;0;0;0
+73603;17351;1;155;55.0;110;90;1;1;0;0;1;0
+73604;18407;2;168;75.0;120;80;1;1;0;0;1;0
+73605;20384;1;167;99.0;125;78;3;1;0;0;1;1
+73607;15259;1;152;80.0;110;70;1;1;0;0;0;0
+73609;20414;1;165;90.0;190;110;1;1;0;0;1;1
+73610;21288;2;178;78.0;120;80;1;1;0;0;0;1
+73611;18919;1;160;74.0;110;70;2;2;0;0;1;0
+73613;21023;2;170;62.0;140;70;1;1;1;0;1;1
+73614;21126;2;174;70.0;140;90;1;1;0;0;1;0
+73616;17410;2;176;77.0;128;80;1;1;1;1;1;0
+73617;21886;1;156;95.0;130;80;1;1;0;0;1;1
+73618;14587;1;160;74.0;110;70;1;1;0;0;1;0
+73620;16128;1;169;86.0;160;90;1;1;0;0;1;1
+73624;22153;1;175;75.0;130;80;3;3;1;0;0;1
+73627;14533;2;160;59.0;110;70;1;1;0;0;1;0
+73628;21295;1;170;104.0;140;90;2;1;0;0;1;1
+73629;21197;1;160;60.0;120;80;1;1;0;0;1;1
+73630;18778;1;167;65.0;120;80;1;1;0;0;1;0
+73632;20575;1;162;64.0;120;80;1;1;0;0;1;0
+73634;21978;1;164;63.0;130;80;1;1;0;0;1;1
+73635;21248;1;160;83.0;120;80;1;1;0;0;1;1
+73638;21076;1;165;70.0;140;90;1;1;0;0;0;1
+73639;21872;1;175;65.0;140;90;1;1;0;0;1;1
+73642;22028;1;164;61.0;130;80;1;1;0;0;1;1
+73644;18307;2;172;76.0;120;80;1;1;0;0;1;1
+73645;14651;1;167;62.0;120;80;1;1;0;0;1;0
+73646;19686;1;174;90.0;170;100;2;1;0;0;0;1
+73647;23508;1;150;77.0;140;90;1;2;0;1;1;1
+73648;22837;2;165;88.0;160;80;2;1;0;0;0;1
+73651;19761;2;150;74.0;130;80;2;1;0;0;1;1
+73653;19877;1;168;65.0;120;80;1;1;0;0;1;0
+73655;18421;1;164;62.0;150;100;1;2;0;0;0;1
+73656;17567;1;156;63.0;120;70;1;1;0;0;1;0
+73657;21880;1;166;86.0;130;80;3;1;0;0;0;1
+73658;18131;1;160;60.0;100;60;2;1;0;0;1;0
+73659;21973;2;150;50.0;120;80;1;1;0;0;1;0
+73660;14769;1;169;69.0;120;80;1;1;0;0;1;0
+73662;19825;1;164;75.0;110;60;2;1;0;0;1;0
+73664;22441;2;160;54.0;85;70;1;1;1;1;1;0
+73665;20629;1;165;63.0;120;80;1;1;0;0;0;0
+73666;15367;1;158;52.0;100;80;1;1;0;0;0;0
+73667;18539;1;165;68.0;150;80;2;2;0;0;0;1
+73668;15249;1;170;70.0;120;80;1;1;0;0;1;0
+73669;20485;1;160;112.0;130;80;2;2;0;0;1;1
+73670;18935;1;167;72.0;100;70;2;2;0;0;1;0
+73671;19162;1;161;74.0;120;80;1;1;0;0;1;0
+73673;21975;2;174;75.0;120;80;1;1;0;0;1;1
+73674;15910;1;158;56.0;110;80;1;2;0;0;1;0
+73675;23119;1;161;68.0;120;80;1;1;0;0;1;1
+73676;21354;1;150;95.0;140;90;1;1;0;0;0;1
+73677;18910;1;162;80.0;120;79;1;1;0;0;1;0
+73678;17463;1;157;90.0;120;60;2;1;0;0;1;0
+73680;21363;1;154;63.0;140;90;1;1;0;0;0;1
+73681;14846;1;162;70.0;120;80;1;1;0;0;1;0
+73683;16647;1;164;72.0;120;80;1;1;0;0;1;0
+73684;19773;2;168;86.0;120;70;3;3;0;0;1;1
+73685;16121;2;182;64.0;120;80;2;1;0;0;1;0
+73686;22888;1;169;68.0;120;80;1;1;0;0;1;0
+73688;16046;1;160;53.0;120;80;1;1;0;0;1;0
+73689;19090;1;164;73.0;120;80;1;1;0;0;1;0
+73690;19703;1;162;80.0;160;100;1;1;1;1;1;1
+73692;20358;1;164;66.0;120;80;1;1;0;0;0;0
+73693;18115;1;159;69.0;120;80;1;1;0;0;1;0
+73694;20289;1;152;60.0;120;80;1;1;0;0;1;1
+73695;15972;2;180;108.0;130;90;1;1;1;1;0;0
+73696;19870;1;163;51.0;150;100;3;3;0;1;1;1
+73698;20302;2;178;104.0;140;90;3;1;1;1;0;1
+73699;21410;1;167;77.0;110;80;1;1;0;0;1;0
+73700;18294;2;176;87.0;110;70;1;2;0;0;1;0
+73701;19527;2;168;103.0;140;90;1;1;0;0;1;1
+73702;18094;2;173;69.0;120;90;1;1;1;1;0;1
+73703;16734;1;162;63.0;110;70;1;1;0;0;1;1
+73704;18206;1;156;70.0;120;80;3;1;0;0;1;1
+73705;23421;2;169;92.0;130;90;2;2;0;0;1;0
+73706;21896;1;155;61.0;140;80;1;1;0;0;1;1
+73707;18826;2;169;75.0;120;80;1;1;1;0;1;0
+73708;17562;2;174;100.0;125;80;1;1;1;0;1;0
+73711;18198;1;159;49.0;110;80;1;1;0;0;1;0
+73714;16154;1;162;104.0;120;80;1;1;0;0;1;1
+73715;21075;1;158;69.0;130;80;3;1;0;0;1;1
+73717;18128;2;164;52.0;100;80;1;1;1;1;1;0
+73718;23199;2;165;66.0;130;70;3;1;1;0;1;1
+73719;23574;1;159;63.0;120;80;1;1;0;0;1;1
+73721;21107;2;176;74.0;120;80;1;1;0;0;1;1
+73722;18815;1;160;113.0;120;80;1;1;0;0;1;0
+73723;18912;1;158;61.0;150;100;1;1;0;0;1;1
+73724;23467;2;167;67.0;130;90;3;1;0;0;0;1
+73725;16085;1;150;58.0;110;70;1;1;0;0;1;0
+73726;20386;1;165;82.0;140;90;3;3;0;0;1;1
+73727;20464;1;170;68.0;120;70;1;3;0;0;1;0
+73728;16112;2;167;59.0;120;80;1;1;0;0;1;0
+73729;14757;2;172;79.0;120;80;2;1;1;0;1;0
+73730;18919;2;175;69.0;140;80;1;1;0;0;1;0
+73731;17752;1;161;59.0;120;80;1;1;0;0;1;1
+73733;15928;1;170;70.0;120;90;1;1;0;0;1;0
+73734;16035;1;154;92.0;100;70;1;2;0;0;0;0
+73736;18232;1;155;67.0;110;65;3;3;0;0;1;0
+73737;23349;2;165;63.0;120;80;1;1;0;0;1;1
+73738;16936;1;172;70.0;140;1000;1;1;0;1;1;1
+73739;16552;2;171;80.0;120;80;1;1;1;0;1;1
+73742;16617;2;172;80.0;120;79;1;1;1;0;1;0
+73743;14442;1;156;72.0;140;100;1;1;0;0;0;0
+73744;23431;1;160;90.0;140;80;1;1;0;0;1;1
+73745;21404;1;165;70.0;120;80;1;1;0;0;0;0
+73746;20374;1;165;80.0;140;1000;1;1;0;0;1;1
+73747;19134;2;170;96.0;120;80;1;1;0;0;1;0
+73748;20376;1;166;105.0;110;70;2;1;0;0;1;0
+73749;19771;2;162;81.0;130;80;2;1;0;0;1;1
+73750;16070;1;162;58.0;110;70;1;1;0;0;1;1
+73751;23090;1;162;100.0;150;100;2;2;0;0;0;0
+73753;19102;1;163;61.0;120;70;2;1;0;0;1;0
+73754;23385;1;157;74.0;160;100;3;1;0;0;1;1
+73755;20454;1;170;86.0;150;1000;1;1;0;0;1;1
+73756;21377;2;170;65.0;120;80;1;1;0;0;1;0
+73757;16070;2;166;75.0;120;80;1;1;0;0;1;0
+73758;20373;1;161;74.0;120;70;2;2;0;0;0;0
+73759;20319;1;157;80.0;110;80;1;1;0;0;0;0
+73760;17525;1;168;86.0;110;60;1;1;0;0;0;0
+73762;18342;2;165;71.0;120;80;1;1;0;0;1;0
+73763;20377;1;159;68.0;120;80;3;3;0;0;0;1
+73764;18193;1;158;61.0;150;90;1;1;0;0;1;1
+73765;18934;1;160;99.0;130;80;1;1;0;0;1;1
+73766;18403;1;162;60.0;120;80;1;1;0;0;1;0
+73767;20346;1;177;75.0;150;1000;3;1;0;0;1;1
+73768;22766;1;171;79.0;120;80;1;1;0;0;0;1
+73769;21975;1;171;75.0;120;80;2;1;0;0;0;1
+73771;20488;2;168;74.0;120;80;1;1;0;0;0;1
+73772;15173;2;160;80.0;140;90;1;2;0;0;1;1
+73773;21073;1;169;66.0;150;80;3;1;0;0;1;1
+73775;17472;2;158;90.0;120;80;1;1;1;0;1;0
+73777;18300;1;155;70.0;100;70;1;3;0;0;1;0
+73778;23175;1;169;75.0;120;80;3;3;0;0;1;1
+73779;22498;2;176;90.0;140;90;3;1;0;0;0;1
+73780;21967;1;143;50.0;120;80;1;1;0;0;0;0
+73781;19879;2;165;98.0;145;90;1;1;0;0;1;1
+73783;16231;1;163;70.0;110;60;1;1;0;0;1;0
+73785;19702;2;165;62.0;120;80;1;1;0;0;1;1
+73786;23451;1;160;59.0;130;80;3;3;0;0;1;1
+73787;21198;2;176;92.0;130;90;1;1;0;1;1;0
+73788;18271;1;167;98.0;130;90;1;1;0;0;1;0
+73789;15099;2;166;106.0;180;90;2;1;0;0;1;1
+73790;16901;2;169;63.0;110;70;2;1;1;0;1;1
+73794;19733;1;158;72.0;120;80;1;1;0;0;1;0
+73796;21362;1;160;60.0;120;80;1;1;0;0;1;1
+73799;20272;1;161;75.0;120;80;1;1;0;0;1;1
+73800;15895;1;171;58.0;110;70;1;1;0;0;1;0
+73802;18220;1;176;92.0;160;100;3;2;0;0;1;0
+73804;23343;1;166;107.0;130;80;1;1;0;0;1;1
+73806;18707;1;165;92.0;150;80;1;1;0;0;1;1
+73807;16881;1;163;85.0;120;80;1;1;0;0;1;0
+73808;23297;2;178;79.0;160;100;3;1;1;1;1;1
+73810;22083;2;170;77.0;120;80;1;1;0;0;0;1
+73813;20933;1;169;100.0;130;80;1;3;0;0;1;0
+73814;18945;1;146;69.0;120;80;2;1;0;0;1;1
+73815;16634;1;166;100.0;110;70;1;1;0;0;1;1
+73816;20405;1;158;93.0;135;90;3;3;0;0;1;1
+73818;18404;1;159;77.0;160;100;1;1;0;0;1;1
+73819;21893;1;159;123.0;140;80;3;3;0;0;1;1
+73820;14879;2;168;75.0;120;80;1;1;0;0;1;0
+73822;15958;1;172;74.0;130;90;1;1;0;0;1;1
+73824;22901;1;154;58.0;120;80;1;1;0;0;1;1
+73825;21322;1;159;60.0;120;80;1;1;0;0;1;0
+73826;21872;2;173;77.0;110;80;1;1;1;0;1;0
+73827;21939;2;175;90.0;120;80;3;3;0;0;1;1
+73828;19910;1;161;72.0;120;80;1;1;0;0;1;1
+73829;18036;1;165;69.0;120;80;1;1;0;0;1;0
+73830;23319;1;168;54.0;120;80;1;1;0;0;1;0
+73832;20245;1;166;97.0;130;90;2;1;0;0;1;1
+73835;21990;1;156;67.0;110;70;1;1;0;0;0;0
+73836;18122;2;165;74.0;115;80;2;1;0;0;0;0
+73837;22003;1;160;60.0;150;100;3;1;0;0;0;1
+73838;19740;2;172;75.0;140;90;1;1;0;0;1;1
+73840;20312;2;165;73.0;160;80;2;1;0;0;1;1
+73842;18260;1;153;61.0;110;70;1;1;0;0;1;0
+73845;16906;1;176;50.0;120;70;1;1;0;0;1;1
+73847;18317;1;170;81.0;120;80;1;1;0;0;1;1
+73848;21786;1;171;81.0;120;80;1;1;0;0;1;0
+73849;14657;1;160;63.0;120;80;2;2;0;0;1;0
+73850;16950;2;170;78.0;120;80;1;1;1;1;1;0
+73851;19679;2;165;65.0;120;80;1;1;0;0;1;1
+73855;22189;1;160;79.0;110;70;1;3;0;0;0;1
+73856;21351;1;158;81.0;130;80;2;1;0;0;1;0
+73857;21956;1;160;67.0;130;80;1;1;0;0;1;0
+73858;18758;2;164;76.0;130;90;3;1;0;0;1;1
+73859;19795;2;168;75.0;130;90;2;1;0;1;1;1
+73860;17693;1;169;61.0;100;70;1;1;0;0;1;0
+73862;21957;2;170;78.0;120;70;1;1;0;0;1;0
+73864;23549;2;162;70.0;130;80;1;3;0;0;1;1
+73865;18108;1;160;90.0;140;80;1;1;0;0;1;1
+73866;19081;2;169;84.0;120;80;2;1;0;0;0;0
+73867;22611;1;156;58.0;120;80;1;1;0;0;1;1
+73868;22020;1;167;80.0;140;90;2;2;0;0;1;1
+73871;17738;2;170;83.0;110;70;1;1;0;0;0;0
+73873;18231;1;170;104.0;150;90;1;1;0;0;1;1
+73874;14726;1;157;48.0;100;70;1;1;0;0;1;0
+73876;21891;1;156;59.0;120;80;1;1;0;0;1;1
+73877;22703;2;169;72.0;200;140;1;1;1;1;1;0
+73879;15370;1;163;70.0;110;70;2;1;0;0;1;0
+73880;21173;2;182;90.0;120;80;1;1;0;0;1;1
+73881;16753;1;149;63.0;120;80;1;1;0;0;1;0
+73882;16675;1;172;82.0;120;80;1;1;0;0;0;0
+73883;19612;1;157;66.0;140;100;1;1;0;0;1;1
+73884;21934;1;159;56.0;100;80;1;1;0;0;0;0
+73885;19732;2;170;84.0;140;100;1;1;0;0;1;1
+73886;17587;1;168;62.0;120;80;3;2;0;0;1;1
+73887;22189;1;156;88.0;150;90;1;1;0;0;1;1
+73888;19468;1;156;66.0;150;90;2;1;0;0;1;1
+73889;23240;1;164;75.0;140;90;1;1;0;0;0;1
+73893;19080;1;185;90.0;110;80;1;1;0;0;1;1
+73894;19004;2;165;70.0;130;80;1;1;1;0;1;1
+73895;23309;1;165;67.0;120;80;2;1;0;0;1;0
+73897;22681;2;168;68.0;110;70;1;1;0;0;1;0
+73899;22678;2;165;66.0;110;80;1;1;0;0;1;0
+73900;18122;2;185;120.0;120;80;2;1;0;0;1;1
+73902;17584;2;171;80.0;120;80;1;1;0;0;1;0
+73903;20371;1;158;68.0;120;80;3;3;0;0;1;0
+73904;20449;1;165;86.0;120;80;1;1;0;0;1;0
+73905;18038;1;165;60.0;110;70;1;1;0;0;0;0
+73906;15732;1;156;67.0;120;70;1;1;0;0;1;0
+73907;15532;2;171;105.0;130;90;1;2;0;0;1;1
+73908;18072;2;174;70.0;120;80;1;1;1;0;1;0
+73909;19048;1;154;65.0;140;90;3;1;0;0;1;1
+73910;17578;2;159;62.0;110;70;1;1;0;0;1;0
+73911;18066;2;161;74.0;140;90;3;3;0;0;1;0
+73912;14845;2;165;65.0;120;80;1;1;0;0;0;0
+73914;19817;2;139;34.0;120;70;1;1;0;0;1;0
+73915;22585;2;180;86.0;120;70;3;3;1;1;1;1
+73916;21093;2;175;70.0;120;80;1;1;0;0;1;1
+73917;14647;2;172;75.0;160;105;1;1;0;0;1;1
+73919;23130;1;164;80.0;120;80;1;1;0;0;1;0
+73920;16152;1;158;61.0;110;70;2;1;0;1;1;0
+73921;19467;2;158;54.0;120;80;1;1;1;1;1;0
+73923;18793;2;170;80.0;120;80;1;1;0;0;1;0
+73924;19821;1;155;71.0;110;70;1;1;0;0;1;0
+73926;17390;2;173;83.0;110;80;1;1;0;0;1;1
+73928;21312;2;170;68.0;120;60;1;2;0;0;1;1
+73929;15294;1;162;59.0;110;80;1;1;0;0;1;0
+73932;21140;1;141;68.0;110;80;1;1;0;0;0;0
+73933;15287;1;173;65.0;100;60;1;1;0;0;1;0
+73934;18798;2;171;90.0;120;90;1;1;0;0;1;0
+73935;17762;2;171;73.0;120;80;1;1;0;0;1;0
+73936;17328;2;175;80.0;130;70;2;1;0;0;1;1
+73937;18164;1;178;63.0;120;75;2;1;0;1;1;0
+73939;16503;1;156;80.0;130;90;1;1;0;0;1;0
+73940;23086;1;154;60.0;140;90;1;1;0;0;1;0
+73941;22625;1;163;68.0;135;83;1;2;0;0;1;1
+73942;14766;2;174;83.0;120;80;1;1;0;0;1;0
+73944;22819;2;157;54.0;150;100;1;1;0;0;1;1
+73945;16813;1;165;63.0;110;70;1;1;0;0;0;0
+73946;18331;1;163;72.0;120;80;1;1;0;0;1;0
+73948;18285;2;178;78.0;140;90;3;3;1;0;1;0
+73949;21914;1;154;72.0;140;90;1;1;0;0;1;0
+73952;20561;1;156;52.0;110;80;3;3;0;0;1;1
+73953;18887;2;165;72.0;160;110;1;1;1;0;0;1
+73959;18196;1;162;51.0;100;60;1;1;0;0;1;0
+73961;19034;1;170;69.0;120;80;1;1;0;0;1;0
+73962;14744;2;172;92.0;140;90;2;3;0;0;1;1
+73964;21160;1;161;62.0;110;69;1;1;0;0;0;0
+73965;17708;2;166;77.0;120;70;1;1;0;0;1;1
+73966;21827;1;168;90.0;160;90;1;1;0;0;0;1
+73967;18907;2;175;78.0;120;80;1;2;0;1;1;0
+73969;14567;1;169;68.0;110;70;1;1;0;0;1;0
+73970;18850;1;173;74.0;130;80;1;1;0;0;0;1
+73972;18294;1;150;58.0;120;70;2;1;0;0;0;1
+73973;21408;1;165;55.0;120;80;1;1;0;0;1;1
+73975;21183;1;166;55.0;140;90;1;1;0;0;0;0
+73980;18330;1;159;85.0;120;80;1;1;0;0;1;0
+73981;20512;1;169;65.0;150;100;1;1;0;0;0;1
+73982;21454;2;170;78.0;130;70;2;2;0;0;1;1
+73983;19453;1;146;86.0;180;100;2;2;0;0;1;1
+73985;18820;2;163;52.0;150;90;1;1;0;0;1;0
+73986;17599;1;152;63.0;120;80;1;2;0;0;1;1
+73988;18337;2;174;78.0;100;70;1;1;0;1;1;1
+73989;18030;2;170;75.0;110;60;1;1;1;1;1;0
+73994;18860;1;164;84.0;120;80;1;1;0;0;1;1
+73995;21307;1;165;67.0;120;70;1;1;1;0;1;0
+73996;16974;1;166;68.0;120;80;2;2;0;0;1;0
+73997;21198;1;168;65.0;120;80;1;1;0;0;1;0
+73998;20574;1;157;57.0;130;80;3;3;0;0;1;1
+73999;23395;1;156;104.0;160;90;1;2;0;0;0;1
+74003;20268;1;148;56.0;125;80;1;1;0;0;1;0
+74005;16049;1;175;70.0;120;70;1;1;0;0;0;0
+74006;21923;2;174;75.0;120;80;1;1;1;0;1;0
+74007;18974;1;163;68.0;110;70;1;1;0;0;1;0
+74009;17618;1;152;71.0;120;80;1;1;0;0;0;0
+74011;19873;2;178;71.0;110;70;1;1;0;0;1;0
+74013;19822;1;157;75.0;140;100;1;1;0;0;1;1
+74014;21463;1;160;60.0;120;80;1;2;0;0;1;0
+74016;21356;1;155;90.0;120;80;1;1;0;0;1;0
+74018;19823;1;158;57.0;120;80;1;1;0;0;1;0
+74019;15437;1;151;74.0;115;80;1;1;0;0;1;0
+74020;14631;2;168;73.0;110;70;1;1;0;0;1;0
+74022;16797;1;170;75.0;120;80;1;1;0;0;1;0
+74023;17576;2;173;69.0;120;80;1;1;0;0;1;0
+74024;21885;2;170;70.0;120;80;1;1;0;0;1;1
+74025;19834;1;161;72.0;130;90;1;1;0;0;1;0
+74026;18955;2;176;95.0;125;80;1;2;0;0;1;0
+74028;23228;1;142;129.0;140;90;1;3;0;0;1;1
+74029;21844;1;156;77.0;120;80;1;1;0;0;1;1
+74030;20939;1;166;60.0;120;80;1;1;0;0;1;0
+74031;20619;2;170;81.0;110;70;1;1;1;1;0;1
+74032;23200;1;141;62.0;150;90;2;1;1;0;0;1
+74034;16790;2;178;91.0;140;80;1;1;0;0;0;0
+74035;20679;1;180;85.0;130;80;1;1;0;0;1;0
+74036;23245;1;161;63.0;120;80;1;1;0;0;1;0
+74038;21225;2;168;90.0;150;80;3;1;0;0;1;1
+74039;16122;2;168;61.0;140;90;1;1;0;0;1;1
+74040;22548;1;158;68.0;140;80;1;2;0;0;1;1
+74041;19189;1;159;64.0;140;90;1;1;0;0;1;1
+74042;18961;1;152;66.0;191;122;1;1;0;0;0;1
+74043;23523;1;158;60.0;160;90;1;1;0;0;1;1
+74045;23396;2;173;68.0;120;80;1;1;0;0;0;1
+74046;21923;1;163;61.0;120;80;1;1;0;0;1;0
+74047;19515;1;168;59.0;120;70;1;1;0;0;0;1
+74048;15348;2;184;78.0;120;80;1;1;0;0;1;0
+74049;20984;1;165;60.0;120;80;1;3;0;0;1;1
+74052;20635;1;157;108.0;130;90;2;2;0;0;1;0
+74053;20400;1;161;61.0;110;70;1;3;0;0;1;1
+74054;21075;1;151;41.0;130;80;1;1;0;0;0;1
+74055;15429;2;180;72.0;160;100;2;1;0;1;0;0
+74056;19154;2;168;92.0;140;90;3;3;0;1;0;0
+74057;18214;1;156;88.0;120;80;2;1;0;0;0;0
+74058;22780;1;165;80.0;130;80;3;3;0;0;0;1
+74059;19110;1;156;63.0;130;80;1;1;0;0;1;1
+74061;15226;1;178;95.0;120;80;1;1;0;0;0;0
+74064;21828;2;169;80.0;130;90;3;3;0;0;1;1
+74065;21100;1;173;56.0;102;66;3;1;0;0;1;0
+74066;15309;2;177;103.0;130;80;1;1;1;0;0;0
+74067;20494;2;166;70.0;120;70;1;2;1;0;1;0
+74068;18962;2;169;70.0;130;80;1;1;0;0;0;0
+74073;22481;2;169;71.0;120;70;1;1;0;0;0;1
+74075;20401;2;169;79.0;130;80;2;1;0;0;0;0
+74076;14375;2;175;69.0;130;80;1;1;0;1;1;1
+74077;18809;1;162;71.0;120;80;1;1;0;0;1;1
+74079;16176;1;160;58.0;140;90;1;1;0;0;1;1
+74080;18058;1;167;74.0;120;90;1;1;0;0;1;0
+74084;18678;1;160;86.0;120;80;1;1;0;0;0;0
+74087;22128;1;157;110.0;160;100;2;1;0;0;1;1
+74088;19013;1;160;64.0;120;80;1;1;0;0;0;1
+74089;19606;1;159;70.0;140;90;1;1;0;0;1;1
+74090;19036;1;168;70.0;120;70;1;1;0;0;1;0
+74091;14400;1;165;72.0;150;80;1;1;0;0;0;1
+74092;21663;1;168;95.0;150;100;2;1;0;0;1;1
+74093;21144;1;167;90.0;130;80;1;1;0;0;1;0
+74096;19180;1;153;68.0;120;80;1;1;1;0;1;0
+74097;19668;2;168;72.0;140;90;1;1;0;0;1;1
+74098;19049;1;155;67.0;110;70;1;1;0;0;1;1
+74100;19479;2;168;75.0;120;80;1;1;0;0;1;1
+74102;15176;1;164;61.0;120;80;2;1;0;0;1;0
+74103;20453;1;148;67.0;150;100;2;3;0;0;1;1
+74104;15948;1;165;95.0;110;70;1;1;0;0;1;1
+74105;17078;1;165;58.0;120;80;1;1;0;0;1;0
+74106;15383;1;156;46.0;110;70;1;1;0;0;1;1
+74107;20548;1;152;68.0;120;80;1;1;0;0;0;0
+74109;22003;1;160;70.0;130;80;1;1;0;0;1;0
+74110;21098;1;160;80.0;120;80;1;1;0;0;1;0
+74111;19605;1;160;73.0;130;60;1;1;0;0;1;0
+74113;21972;1;153;75.0;130;80;2;1;0;0;1;1
+74114;23430;1;163;70.0;160;100;1;1;0;0;1;1
+74116;14508;1;150;60.0;110;70;1;1;0;0;1;0
+74117;15340;1;167;58.0;120;80;1;1;0;0;0;0
+74119;21651;1;148;94.0;140;95;1;2;0;0;1;1
+74120;19630;1;157;60.0;120;80;1;1;0;0;1;0
+74125;21365;1;168;82.0;140;90;2;1;0;0;0;0
+74126;16285;1;162;60.0;120;80;1;1;0;0;1;0
+74127;16849;1;163;65.0;120;80;1;1;0;0;1;0
+74128;20555;1;158;87.0;125;80;1;1;0;0;1;1
+74129;21752;1;167;82.0;160;90;3;1;0;0;1;0
+74130;18866;1;168;65.0;110;70;1;1;0;0;1;0
+74133;21167;1;169;88.0;130;90;3;3;0;0;1;1
+74134;18812;1;168;85.0;120;79;1;1;0;0;1;0
+74137;15094;1;158;75.0;150;90;1;1;0;0;1;1
+74138;18016;2;180;93.0;120;80;1;2;0;0;1;1
+74140;18962;1;164;97.0;120;60;2;1;0;0;1;0
+74141;21817;1;156;63.0;120;80;1;1;0;0;1;0
+74142;17057;2;172;74.0;120;80;1;1;0;0;1;0
+74144;22550;2;165;60.0;130;90;1;1;0;0;1;1
+74145;17996;1;169;58.0;140;90;2;1;1;0;1;1
+74146;16679;2;175;82.0;150;90;1;1;0;0;1;1
+74149;20959;2;164;62.5;130;90;1;1;1;0;1;0
+74151;14632;1;162;82.0;110;80;1;1;0;0;1;0
+74152;16658;2;165;70.0;120;80;1;1;0;0;1;0
+74153;21099;1;151;83.0;120;80;1;1;0;0;1;0
+74155;19512;2;168;92.0;140;90;1;1;0;0;1;1
+74156;22120;1;178;81.0;120;70;1;1;0;0;1;0
+74157;16110;2;172;74.0;160;100;1;1;1;0;1;1
+74158;16174;1;165;62.0;90;60;3;1;0;0;0;0
+74160;19917;1;153;46.0;100;80;2;2;0;0;1;0
+74164;23452;2;175;102.0;120;80;2;2;0;0;1;1
+74165;19783;2;171;69.0;120;80;1;1;0;0;1;1
+74166;15196;1;165;81.0;130;90;1;1;0;1;1;0
+74168;22717;1;165;70.0;120;80;1;1;0;0;1;0
+74169;21786;1;170;78.0;130;80;3;3;0;0;1;1
+74173;21893;1;162;70.0;130;80;1;1;0;0;0;1
+74175;21083;1;160;61.0;140;80;2;2;0;0;0;1
+74176;16740;1;160;74.0;170;110;1;1;0;0;0;1
+74178;21131;1;155;75.0;140;90;3;1;0;0;0;1
+74179;19890;2;167;75.0;120;80;2;1;0;0;1;1
+74180;20233;1;160;62.0;140;90;1;1;0;0;1;1
+74181;22002;2;172;69.0;120;80;1;1;0;0;1;1
+74182;14660;1;172;72.0;100;60;1;1;0;0;1;0
+74183;23164;1;161;69.0;130;90;1;1;0;0;1;1
+74184;21048;1;157;52.0;120;80;1;1;0;0;0;0
+74185;22663;2;170;90.0;140;90;3;1;0;0;1;1
+74186;18465;2;176;59.0;120;80;1;2;0;0;1;0
+74188;20330;1;158;49.0;130;90;2;2;0;0;1;1
+74190;21877;1;168;68.0;130;80;3;3;0;0;1;1
+74191;18704;1;164;67.0;90;60;1;1;0;0;1;0
+74192;23229;1;164;104.0;160;100;1;3;0;0;1;0
+74193;18362;1;156;49.0;110;70;1;1;0;0;1;0
+74194;20280;1;163;65.0;120;80;1;1;0;0;1;0
+74195;18455;1;162;75.0;130;90;1;1;0;0;1;1
+74196;21785;1;156;74.0;110;80;1;1;0;0;1;0
+74197;22581;1;166;90.0;120;80;1;1;0;0;1;0
+74199;22662;2;169;80.0;140;90;2;1;0;0;1;1
+74200;18164;1;166;87.0;120;79;1;1;0;0;0;1
+74205;19898;2;169;65.0;120;80;1;1;0;0;1;0
+74206;19039;1;153;63.0;140;90;1;1;0;0;1;1
+74207;18890;1;154;77.0;120;80;1;1;0;0;0;0
+74209;14685;1;152;72.0;110;70;1;1;0;0;1;0
+74214;19554;2;170;71.0;130;80;3;1;1;0;1;1
+74215;21264;1;168;72.0;120;80;1;1;0;0;0;1
+74216;20693;2;165;68.0;120;90;1;2;0;0;1;1
+74217;19006;1;147;69.0;110;80;1;1;0;0;1;0
+74218;22627;1;155;65.0;180;100;2;1;0;1;1;1
+74219;22513;1;159;84.0;140;80;3;1;0;0;1;1
+74220;18230;1;154;62.0;100;70;3;1;0;0;0;0
+74221;17729;2;170;90.0;120;80;1;1;0;0;1;1
+74222;22766;2;168;70.0;120;80;3;1;0;0;1;1
+74224;18823;1;187;86.0;120;80;1;1;0;0;1;0
+74225;20610;1;162;61.0;140;90;2;2;0;0;1;1
+74226;21039;1;173;75.0;140;80;2;1;0;1;1;1
+74227;19599;1;155;61.0;130;90;1;1;0;0;1;0
+74229;21932;1;169;102.0;140;80;1;1;0;0;1;0
+74231;18163;2;165;59.0;120;80;3;3;0;0;1;0
+74232;19666;1;145;56.0;130;70;1;1;0;0;0;0
+74234;17423;1;161;85.0;120;80;1;1;0;0;1;0
+74236;23320;2;170;75.0;130;80;3;3;0;0;1;0
+74238;21102;2;180;105.0;170;90;2;2;1;0;0;1
+74239;22785;1;154;51.0;140;80;1;1;0;0;1;1
+74240;19122;1;152;68.0;110;80;1;1;0;0;1;1
+74243;21812;2;172;78.0;150;90;2;1;0;0;1;1
+74247;18906;2;175;88.0;140;90;1;1;1;0;1;1
+74248;20304;2;175;89.0;120;80;1;1;0;0;1;1
+74249;18924;1;156;56.0;90;60;1;1;0;0;1;0
+74250;18351;1;158;80.0;120;80;1;1;1;0;1;0
+74251;20310;2;167;83.0;170;110;1;3;0;0;1;1
+74253;14401;2;172;58.0;115;70;1;1;0;0;0;0
+74254;18842;1;160;65.0;120;80;1;1;0;0;1;0
+74256;17317;1;155;67.0;130;90;3;1;0;0;1;1
+74257;22155;1;164;68.0;120;80;1;1;0;0;1;1
+74259;18112;2;175;129.0;170;100;1;1;0;0;0;1
+74261;19683;1;175;65.0;120;80;1;1;1;0;0;0
+74263;19564;2;163;125.0;140;90;2;3;1;1;0;0
+74265;18876;2;156;69.0;140;80;1;1;0;0;1;1
+74266;20482;1;163;63.0;12;80;1;1;0;0;1;0
+74267;20345;2;170;81.0;120;80;1;1;0;0;1;0
+74268;21781;1;160;65.0;120;80;1;1;0;0;1;1
+74269;23340;1;163;75.0;120;80;1;1;0;0;1;1
+74270;16742;1;165;54.0;110;80;1;1;0;0;1;0
+74273;17408;1;158;64.0;120;80;1;1;0;0;1;0
+74274;20633;2;157;57.0;120;80;1;1;0;0;1;1
+74277;22029;1;157;75.0;140;90;1;1;0;0;1;1
+74278;16815;1;152;66.0;110;70;3;1;0;0;0;0
+74280;18304;1;164;68.0;140;90;3;1;0;0;1;1
+74281;20879;1;160;68.0;120;80;1;1;0;0;0;0
+74283;17366;1;160;74.0;160;100;1;1;0;0;1;1
+74285;16103;1;168;80.0;120;80;1;1;0;0;0;1
+74286;20930;1;154;98.0;140;80;2;2;0;0;0;1
+74288;21862;2;172;80.0;130;80;1;1;1;1;1;0
+74289;14644;1;158;52.0;110;70;1;1;0;0;1;0
+74291;15781;1;165;85.0;110;70;3;1;0;0;1;1
+74292;20234;1;167;93.0;130;80;3;1;0;0;1;1
+74293;22593;1;149;76.0;130;90;2;1;0;0;1;1
+74295;20436;1;166;88.0;120;80;1;1;0;0;1;0
+74296;20478;2;168;86.0;150;100;1;1;1;0;1;0
+74298;19721;2;172;76.0;120;80;1;3;0;0;0;0
+74299;16851;1;160;83.0;160;110;1;1;0;0;0;1
+74300;20457;2;164;68.0;130;80;1;1;0;0;1;1
+74301;20497;1;160;60.0;120;80;1;1;0;0;1;0
+74302;20478;1;175;80.0;120;80;1;3;0;0;1;0
+74303;15248;1;158;85.0;110;90;1;1;0;0;0;0
+74304;20522;2;176;80.0;160;80;1;1;0;0;1;1
+74305;19795;1;162;59.0;110;70;1;1;0;0;1;1
+74306;14633;2;163;90.0;140;90;2;1;0;0;1;1
+74307;19861;2;176;81.0;140;90;2;1;1;1;1;1
+74308;21746;1;161;84.0;130;90;3;1;0;0;1;1
+74310;16953;1;160;68.0;110;70;1;1;0;0;1;0
+74311;15788;1;165;70.0;150;100;1;1;0;0;1;0
+74315;19625;1;162;75.0;120;80;1;1;0;0;1;0
+74316;21116;2;168;70.0;125;80;1;1;0;0;1;1
+74317;20945;1;157;61.0;120;80;1;1;0;0;0;0
+74318;20678;2;165;55.0;130;90;1;1;0;0;0;0
+74319;18493;1;161;68.0;110;70;1;1;0;0;1;0
+74320;20572;1;167;89.0;170;100;1;1;0;0;1;1
+74321;16750;2;168;61.0;120;80;1;1;0;0;1;1
+74322;19698;1;148;60.0;120;80;1;1;0;0;1;0
+74323;16610;1;158;75.0;150;90;2;1;1;0;1;1
+74324;15116;1;166;99.0;120;80;2;1;0;0;1;1
+74325;17602;2;168;73.0;120;80;2;1;0;0;1;0
+74326;23460;1;152;66.0;120;80;1;1;0;0;1;1
+74327;21753;2;178;99.0;130;90;1;1;0;0;1;1
+74328;19612;1;168;65.0;130;80;1;2;0;0;1;0
+74330;15947;1;150;59.0;120;80;1;1;0;0;1;0
+74333;23372;1;162;72.0;130;80;3;3;0;0;1;1
+74334;15159;2;165;65.0;120;80;1;1;0;0;1;0
+74336;21812;1;164;78.0;150;90;1;2;0;0;1;1
+74337;23297;1;158;56.0;120;80;1;1;0;0;1;1
+74338;16492;2;171;70.0;120;80;1;1;0;0;1;0
+74339;15365;1;148;50.0;110;70;1;1;0;0;1;0
+74340;20211;2;174;80.0;150;100;1;1;0;0;1;0
+74345;17502;2;171;81.0;120;80;1;1;0;0;1;0
+74346;18856;2;166;68.0;120;80;2;1;1;0;1;1
+74347;22070;1;163;78.0;120;80;1;1;0;0;1;0
+74348;18150;2;165;63.0;110;70;1;2;1;0;1;0
+74349;17303;1;160;57.0;120;80;1;1;0;0;1;0
+74351;19794;1;169;72.0;120;80;1;1;0;0;1;1
+74352;16309;2;170;89.0;120;80;1;1;0;0;1;0
+74353;15228;2;168;63.0;120;80;1;1;0;0;1;0
+74359;19759;2;169;87.0;110;80;1;1;0;0;1;1
+74360;18898;1;169;80.0;150;85;3;1;0;1;1;1
+74361;22398;1;157;86.0;120;80;1;1;0;0;1;1
+74362;21852;1;162;56.0;110;80;1;1;0;0;1;0
+74363;20532;1;160;72.0;135;80;2;1;0;0;1;1
+74366;18842;2;168;80.0;120;80;1;1;0;0;1;1
+74368;15969;1;153;80.0;120;80;1;1;0;0;1;1
+74369;22438;2;172;67.0;124;81;1;1;0;1;1;0
+74370;19013;2;174;75.0;120;80;1;1;0;0;1;0
+74372;16895;1;163;88.0;130;90;2;2;0;0;1;0
+74373;18194;2;155;56.0;140;1000;1;1;0;0;1;1
+74374;15131;1;163;96.0;120;80;1;1;1;0;1;0
+74375;18226;2;160;100.0;140;100;1;1;0;0;1;1
+74377;19588;2;178;105.0;150;80;1;2;0;0;1;1
+74378;21124;1;160;80.0;120;60;3;3;0;0;0;1
+74379;17389;1;158;60.0;130;80;3;1;0;0;1;1
+74381;20542;2;166;50.0;140;90;1;1;0;0;1;1
+74382;22769;2;172;95.0;140;90;3;1;0;1;1;0
+74383;22000;1;168;65.0;120;80;1;1;0;0;1;0
+74387;19766;1;164;59.0;160;80;1;1;0;0;1;1
+74388;23607;1;180;80.0;120;80;1;1;0;0;1;1
+74389;19659;1;156;64.0;160;100;1;1;0;0;1;1
+74390;23274;2;178;76.0;120;70;1;1;0;0;1;0
+74392;23441;1;163;62.0;150;90;2;1;1;0;1;1
+74393;21198;2;174;73.0;130;90;1;1;0;0;1;1
+74394;15038;1;165;60.0;120;70;1;1;0;0;1;0
+74397;19034;1;160;59.0;140;90;1;1;0;0;1;1
+74398;14427;1;151;60.0;111;63;1;1;0;0;1;0
+74399;18426;2;169;89.0;112;80;1;2;0;0;1;0
+74400;23383;1;156;76.0;120;80;1;1;0;0;1;1
+74401;20277;1;165;60.0;120;80;1;1;0;0;1;1
+74402;20162;2;150;50.0;120;80;1;1;0;0;1;1
+74403;15576;1;165;55.0;110;70;1;1;1;0;1;0
+74405;17015;1;170;64.0;120;79;1;1;0;0;1;0
+74407;21047;2;160;55.0;160;55;1;1;0;0;1;1
+74409;16935;2;171;69.0;120;80;1;1;1;0;1;0
+74410;15075;2;180;109.0;120;70;2;2;1;1;1;0
+74411;20965;1;156;46.0;100;70;1;2;0;0;1;1
+74412;23139;1;166;86.0;150;90;3;3;0;0;1;1
+74413;20668;1;167;68.0;110;70;1;1;0;0;0;1
+74416;21336;2;170;90.0;150;90;2;1;0;0;0;1
+74417;15251;2;170;70.0;110;70;1;1;0;0;1;0
+74418;20323;2;175;59.0;140;90;3;3;1;1;0;1
+74419;19888;1;166;78.0;110;80;1;1;0;0;1;0
+74420;15360;2;168;85.0;160;90;2;1;1;1;1;1
+74421;23151;1;165;92.0;130;80;1;1;0;0;0;1
+74423;19129;1;150;73.0;180;110;2;1;0;0;1;1
+74424;19791;1;158;60.0;140;90;3;1;0;0;1;1
+74425;20573;1;178;85.0;120;80;1;1;0;0;0;1
+74426;16881;2;165;70.0;120;80;1;1;0;0;1;1
+74430;21180;2;178;95.0;120;80;1;1;0;0;1;0
+74431;19201;1;168;65.0;120;80;1;1;0;0;1;0
+74432;23329;1;151;71.0;140;80;1;1;0;0;1;1
+74433;21867;1;164;62.0;110;70;1;1;0;0;1;0
+74434;20194;1;169;69.0;130;80;1;1;0;0;1;0
+74435;16488;1;162;90.0;120;80;1;1;0;0;0;0
+74436;19821;2;175;77.0;140;90;1;1;0;0;1;1
+74438;16222;1;158;66.0;110;60;1;1;0;0;1;0
+74439;18944;1;155;114.0;120;80;1;1;0;0;0;1
+74440;23341;2;165;70.0;170;100;2;2;0;0;1;1
+74441;23347;2;169;75.0;160;90;1;1;0;0;0;1
+74442;18296;1;160;68.0;120;80;1;1;0;0;0;0
+74443;21919;1;164;64.0;120;70;1;1;0;0;0;0
+74444;14528;2;161;49.0;90;60;1;1;1;0;1;0
+74445;21966;2;168;80.0;130;90;1;1;0;0;1;1
+74447;19576;1;160;110.0;170;110;2;1;0;1;0;1
+74449;18939;1;160;70.0;120;80;1;1;0;0;0;0
+74450;21968;1;156;58.0;130;80;1;1;0;0;1;0
+74452;16126;2;176;94.0;110;85;2;2;0;0;1;1
+74454;22626;1;158;61.0;140;90;1;1;0;0;1;1
+74456;16666;1;167;64.0;120;79;1;1;0;0;0;0
+74457;20646;1;160;75.0;140;90;1;3;0;0;1;1
+74458;19756;1;158;50.0;100;70;1;1;0;0;1;0
+74459;15426;1;156;55.0;110;70;1;1;0;0;1;0
+74460;19469;2;174;118.0;120;80;1;2;1;1;1;1
+74461;18880;2;162;75.0;120;80;1;3;1;1;1;0
+74462;17354;2;176;81.0;130;90;1;1;0;0;1;0
+74464;21005;1;149;76.0;120;80;1;1;0;0;1;0
+74466;21364;1;165;63.0;120;60;1;3;0;0;1;0
+74467;21928;1;156;58.0;120;80;1;1;0;0;0;1
+74468;21699;1;149;59.0;130;80;1;1;0;0;1;1
+74469;16546;2;156;82.0;140;80;3;1;0;0;1;1
+74470;15222;1;144;46.0;110;70;1;1;0;0;1;0
+74471;18304;1;155;60.0;120;80;1;1;0;0;1;0
+74473;23401;1;153;82.0;140;90;3;1;0;0;1;1
+74474;21768;1;155;64.0;130;80;1;1;0;0;1;1
+74475;22541;1;146;84.0;120;90;1;1;0;0;1;1
+74477;18275;2;167;74.0;120;80;1;1;0;0;1;0
+74478;21741;2;175;71.0;120;60;1;1;0;0;1;0
+74479;18109;1;156;81.0;120;80;1;1;0;0;0;0
+74481;16052;1;168;87.0;130;90;2;1;0;0;1;1
+74483;21749;2;170;82.0;130;80;3;1;1;0;1;1
+74485;21094;1;160;78.0;120;80;2;2;0;0;1;0
+74486;20992;1;169;75.0;120;80;1;1;0;0;1;0
+74487;21188;2;178;95.0;120;80;1;1;0;0;1;0
+74488;23265;1;165;66.0;120;80;1;1;0;0;1;1
+74490;19714;1;167;55.0;160;1000;1;1;0;0;1;1
+74492;21317;1;151;92.0;140;80;1;1;0;0;1;1
+74494;19719;2;162;76.0;160;100;1;1;0;1;1;1
+74495;15291;2;174;82.0;120;90;3;3;0;0;1;0
+74496;21075;1;154;96.0;120;80;1;1;0;0;0;0
+74497;23201;1;157;79.0;160;90;3;3;0;0;1;1
+74498;17337;1;160;69.0;120;70;1;1;0;0;1;0
+74499;19752;1;158;52.0;110;70;1;1;0;0;1;0
+74500;19715;2;173;69.0;140;90;2;1;1;0;1;1
+74501;17729;1;168;80.0;140;90;2;1;0;0;0;1
+74502;21111;1;160;83.0;160;90;2;1;0;0;1;1
+74503;21186;1;167;78.0;130;80;1;1;0;0;1;0
+74504;22205;2;157;64.0;130;90;1;1;0;0;1;1
+74505;22193;1;151;80.0;140;100;1;1;0;0;0;1
+74506;23262;2;161;69.0;130;90;1;1;0;0;0;1
+74507;15905;2;170;80.0;110;70;1;1;0;0;1;0
+74509;18925;1;156;81.0;120;80;1;1;0;1;1;0
+74510;19101;1;154;70.0;140;90;1;1;0;0;1;1
+74511;19032;1;168;70.0;130;80;1;1;0;0;0;0
+74513;21938;1;152;62.0;130;85;2;1;0;0;1;0
+74514;23503;1;162;68.0;150;90;1;1;0;0;1;1
+74515;19744;1;151;60.0;140;90;1;2;0;1;1;0
+74518;15299;1;156;64.0;110;70;1;1;0;0;0;0
+74519;23397;1;154;65.0;120;80;1;1;0;0;1;0
+74520;20516;1;168;69.0;120;80;1;1;0;1;1;1
+74521;19816;1;163;92.0;150;110;1;1;0;0;1;1
+74522;23269;1;160;87.0;100;60;1;1;0;0;1;0
+74523;18409;2;177;80.0;100;60;1;1;0;0;1;0
+74524;18317;2;161;82.0;130;90;2;2;0;0;1;0
+74525;20393;2;165;52.0;120;80;1;3;1;0;1;0
+74527;21221;1;156;52.0;120;80;1;2;0;0;0;1
+74530;22493;2;161;89.0;145;90;3;3;1;0;1;1
+74531;21174;2;176;132.0;140;90;3;1;0;0;0;1
+74532;23114;1;160;76.0;140;90;3;1;0;0;1;0
+74536;21146;1;160;85.0;140;80;3;1;0;0;1;1
+74537;21058;1;162;91.0;110;80;1;1;0;0;1;0
+74540;22111;1;165;60.0;120;80;1;1;0;0;1;0
+74541;16688;1;160;72.0;150;100;1;1;0;0;1;1
+74542;21236;1;159;70.0;120;80;1;1;0;0;1;1
+74543;17585;1;156;74.0;120;80;1;1;0;0;1;0
+74544;18109;1;165;58.0;120;80;1;1;0;1;1;0
+74545;18410;2;176;72.0;120;80;1;1;0;0;1;0
+74546;16843;2;168;72.0;120;80;1;1;1;0;1;0
+74547;22064;1;156;123.0;140;80;1;1;0;0;1;0
+74549;16961;2;183;68.0;120;80;1;1;0;0;0;0
+74550;21869;1;162;89.0;120;80;1;1;0;0;1;0
+74551;15172;2;177;100.0;120;90;1;1;0;0;1;0
+74552;17396;2;165;63.0;120;80;1;1;0;0;1;1
+74554;16101;1;150;86.0;140;90;1;1;0;0;1;1
+74555;18736;2;165;74.0;120;60;1;1;0;0;0;0
+74557;20571;1;160;67.0;120;80;1;1;0;0;1;0
+74559;21826;2;166;68.0;140;90;3;2;0;0;1;1
+74560;15420;1;157;62.0;110;80;1;1;0;0;1;0
+74562;16090;2;170;64.0;140;90;1;1;0;0;1;0
+74567;20348;1;162;53.0;130;90;2;1;0;0;1;0
+74568;18842;2;176;72.0;100;69;1;1;0;0;1;0
+74569;21135;1;144;51.0;172;102;3;1;0;0;1;1
+74571;18938;2;165;59.0;110;70;1;1;1;0;1;0
+74572;15890;1;156;84.0;110;70;1;1;0;0;1;0
+74573;22457;1;156;68.0;140;90;1;1;0;0;1;0
+74574;21452;1;165;65.0;120;80;3;3;0;0;0;0
+74575;19780;1;152;58.0;110;80;1;1;0;0;1;0
+74577;21974;1;168;58.0;120;80;2;1;0;0;1;1
+74578;14489;1;162;67.0;110;60;1;1;0;0;0;0
+74580;15567;1;159;63.0;110;70;1;1;0;0;1;0
+74584;19021;1;172;92.0;140;90;1;2;0;0;1;1
+74586;21277;1;168;80.0;130;80;1;1;0;0;0;1
+74587;18313;1;168;91.0;140;90;2;3;0;0;1;1
+74588;22945;1;178;66.0;160;80;1;1;0;0;0;1
+74590;21214;1;166;87.0;110;60;1;1;0;0;1;0
+74592;21825;2;170;69.0;150;90;1;1;0;0;1;1
+74594;21960;1;157;73.0;120;80;1;1;0;0;1;1
+74595;17510;1;168;74.0;120;80;1;1;0;0;1;1
+74596;19663;2;180;90.0;120;80;2;1;0;0;0;0
+74599;18949;1;161;78.0;140;90;3;1;0;0;0;1
+74600;23259;1;160;98.0;160;100;3;1;0;0;1;1
+74601;20503;2;171;89.0;140;90;1;1;1;0;1;0
+74603;16857;2;161;84.0;150;100;1;1;0;0;1;1
+74606;19752;2;171;76.0;160;90;1;1;0;0;1;1
+74608;23324;2;169;99.0;170;90;1;1;0;0;1;1
+74609;21071;1;157;79.0;150;90;1;2;0;0;1;1
+74611;19844;2;168;78.0;130;80;1;1;0;0;1;1
+74612;18075;1;155;41.0;100;70;1;1;0;0;1;0
+74613;20286;2;178;90.0;140;90;1;1;0;0;1;1
+74614;23445;2;175;70.0;110;70;1;1;0;0;1;0
+74615;18147;2;160;69.0;135;95;2;1;1;0;0;1
+74616;20456;2;174;76.0;140;90;3;1;0;0;0;0
+74618;17025;1;169;69.0;120;80;1;1;0;0;1;1
+74619;18603;2;178;79.0;120;80;3;3;0;0;1;1
+74622;21886;1;160;60.0;120;80;1;1;0;0;1;0
+74623;17572;1;158;65.0;140;80;1;1;0;0;1;1
+74624;19432;1;157;60.0;120;80;1;1;0;0;1;0
+74625;17702;2;180;76.0;120;80;1;1;0;0;0;1
+74626;20660;1;164;67.0;120;80;1;1;0;0;1;0
+74627;14342;1;168;69.0;120;80;1;1;0;0;1;0
+74628;14727;1;167;91.0;110;90;1;2;0;0;1;0
+74629;17392;1;166;57.0;90;60;1;1;0;0;1;0
+74630;19475;1;169;68.0;120;80;1;1;0;0;0;0
+74631;19776;1;166;86.0;160;100;2;2;0;0;1;0
+74632;19839;2;165;62.0;120;80;1;2;0;0;1;0
+74633;15353;1;165;62.0;120;80;1;1;0;0;1;1
+74634;19967;1;152;43.0;130;80;1;3;0;0;1;0
+74635;18270;1;152;56.0;120;70;1;1;0;0;1;0
+74638;23213;2;178;106.0;150;90;3;3;0;0;1;1
+74639;18812;1;160;63.0;125;80;1;1;0;0;1;0
+74642;23513;1;163;58.0;120;80;1;1;0;0;1;1
+74643;21146;1;170;72.0;120;80;1;1;0;0;1;0
+74644;19012;1;160;65.0;110;80;1;1;0;0;1;0
+74645;20176;1;165;71.0;120;80;2;2;0;0;1;1
+74646;20189;1;161;88.0;120;80;1;1;0;0;1;0
+74647;20514;2;175;78.0;120;80;1;1;1;0;0;0
+74648;17336;2;165;69.0;160;100;1;1;1;1;1;1
+74649;14572;1;152;41.0;120;80;1;1;0;0;0;0
+74651;19659;1;164;68.0;140;90;1;1;0;0;1;1
+74652;19699;1;160;87.0;140;90;3;3;0;0;1;1
+74653;20275;1;158;82.0;120;80;1;1;0;0;1;1
+74654;21023;1;163;70.0;140;90;3;1;0;0;1;1
+74655;18125;2;165;87.0;140;90;2;2;1;1;1;1
+74656;21933;1;164;72.0;110;70;1;1;0;0;1;1
+74658;21275;2;167;63.0;130;90;1;1;0;0;1;1
+74660;20675;1;165;63.0;120;80;1;1;0;0;1;1
+74662;16819;2;183;70.0;130;80;1;1;1;0;1;0
+74664;19639;2;161;72.0;120;80;1;1;1;0;1;1
+74665;16108;1;160;65.0;110;70;1;1;0;0;1;1
+74666;18464;1;168;90.0;160;80;1;1;0;0;1;1
+74668;14536;1;167;93.0;140;100;2;2;0;0;1;1
+74669;16806;1;167;105.0;130;90;3;1;0;0;1;1
+74672;20528;1;165;72.0;120;80;1;1;0;0;0;0
+74674;15883;1;170;60.0;100;70;1;1;0;0;1;0
+74676;15323;1;148;60.0;110;80;1;1;0;0;1;0
+74677;18077;2;172;90.0;112;75;1;1;1;0;0;0
+74679;15146;2;181;86.0;120;80;1;1;1;1;1;0
+74680;19002;2;170;62.0;120;80;1;1;0;0;1;1
+74685;15411;1;157;57.0;100;70;1;1;0;0;1;0
+74686;19116;2;169;84.0;120;70;1;1;0;0;1;0
+74687;18694;1;152;62.0;120;80;2;1;0;0;1;0
+74688;20939;1;159;83.0;140;1008;1;1;0;0;1;1
+74689;20503;1;165;70.0;160;90;1;1;0;0;1;1
+74691;17538;2;169;71.0;160;100;1;1;1;1;1;1
+74692;21756;1;156;79.0;130;90;1;1;0;0;1;1
+74694;20347;1;168;71.0;120;80;1;1;0;0;1;0
+74695;22638;2;166;81.0;140;90;3;1;1;0;1;1
+74696;20377;1;165;44.0;120;80;1;1;0;0;1;0
+74697;22498;1;158;64.0;140;90;1;1;0;0;1;1
+74698;22565;1;160;76.0;110;80;1;1;0;0;1;1
+74700;14655;2;167;85.0;120;80;2;1;0;0;1;0
+74702;21351;2;159;56.0;130;70;1;3;0;0;1;0
+74703;18288;2;169;66.0;110;70;1;1;0;0;1;0
+74704;22737;1;146;55.0;130;80;1;1;1;0;1;0
+74705;21654;1;158;67.0;140;90;3;3;0;0;1;1
+74708;20440;1;159;66.0;120;70;1;1;0;0;0;0
+74709;20538;1;153;58.0;150;90;3;3;0;0;0;0
+74710;20603;1;155;75.0;140;90;3;3;0;0;0;1
+74711;22562;1;168;65.0;120;80;1;1;0;0;0;1
+74712;21812;1;160;87.0;120;80;1;1;0;0;1;1
+74714;21091;2;172;71.0;110;80;1;1;0;0;1;1
+74715;21931;1;164;66.0;110;70;1;1;0;0;1;0
+74716;17681;2;167;65.0;130;80;1;2;0;0;1;0
+74717;22553;2;174;75.0;120;80;1;1;0;0;1;0
+74718;20306;2;175;85.0;130;90;2;1;0;1;1;1
+74719;18971;1;164;69.0;120;80;2;2;0;0;1;0
+74720;21150;2;169;102.0;130;80;2;2;0;0;1;1
+74721;14587;1;167;75.0;110;80;1;1;0;0;1;0
+74723;19649;2;167;60.0;110;60;1;1;1;1;1;0
+74725;18176;1;162;65.0;120;80;1;1;0;0;1;0
+74726;19566;1;167;67.0;100;80;1;1;0;0;0;0
+74727;19633;1;159;71.0;140;75;1;1;0;0;1;0
+74728;17726;1;163;73.0;130;80;1;1;0;0;1;1
+74729;18356;1;161;68.0;120;80;1;1;0;0;1;0
+74730;23376;1;165;67.0;110;70;1;1;0;0;0;1
+74731;19002;1;163;56.0;120;80;3;1;0;0;1;0
+74732;20685;1;169;69.0;140;90;1;1;0;0;0;1
+74734;19066;1;168;80.0;110;70;1;1;0;0;1;0
+74735;17591;1;152;51.0;120;80;1;1;0;0;1;0
+74736;20326;1;163;66.0;120;80;1;1;0;0;1;0
+74737;21207;1;158;73.0;120;85;1;1;0;0;1;0
+74738;19831;1;154;65.0;90;60;1;1;0;0;1;0
+74739;19084;2;170;82.0;140;90;1;1;1;1;0;1
+74740;16042;1;155;85.0;130;80;2;3;0;0;1;1
+74741;20607;1;166;68.0;120;79;1;1;0;0;1;0
+74743;14514;1;168;80.0;100;70;1;2;0;0;0;0
+74744;15970;1;169;71.0;110;70;1;1;0;0;1;0
+74745;18781;1;157;89.0;124;84;1;1;0;0;1;0
+74746;20260;1;161;57.0;120;80;1;1;0;0;1;0
+74748;21121;1;163;92.0;120;80;2;2;0;0;0;0
+74750;22548;1;154;81.0;150;80;2;2;0;0;1;1
+74751;20579;1;170;72.0;125;90;1;1;0;0;1;1
+74752;18890;2;184;74.0;130;80;2;1;1;0;1;1
+74753;22828;2;173;70.0;120;80;1;1;0;0;1;1
+74754;22234;2;150;60.0;140;90;1;1;0;0;1;1
+74756;22136;2;175;65.0;140;90;2;1;0;0;0;0
+74757;22408;1;161;90.0;130;90;3;1;0;0;1;1
+74758;16961;2;165;69.0;130;90;1;1;0;0;1;1
+74759;14612;1;155;60.0;110;70;1;1;0;0;1;0
+74760;15302;2;184;70.0;120;80;2;1;0;0;1;0
+74761;21915;1;162;82.0;130;90;1;1;0;0;1;0
+74763;14391;1;151;62.0;110;70;1;1;0;0;1;0
+74764;19104;2;176;112.0;160;100;1;1;0;0;1;1
+74766;18324;1;157;60.0;100;60;1;1;0;0;1;0
+74767;15543;2;167;67.0;140;80;1;1;0;0;1;1
+74768;16057;2;165;66.0;100;80;1;1;0;0;1;0
+74774;21920;1;168;112.0;110;70;2;1;0;0;1;1
+74778;21073;2;164;73.0;120;80;1;1;0;0;1;1
+74780;21828;2;170;89.0;135;80;1;1;0;0;1;0
+74781;21279;2;164;72.0;120;80;1;1;0;0;1;1
+74786;14627;2;170;68.0;120;80;1;1;0;1;1;0
+74787;19838;1;165;69.0;150;100;1;1;0;0;1;1
+74788;20362;2;166;58.0;120;80;3;1;1;0;0;0
+74789;18458;1;163;76.0;120;79;1;1;0;0;0;0
+74790;14755;2;172;90.0;120;80;1;1;0;0;1;0
+74791;18022;2;181;91.0;110;80;1;1;0;0;0;0
+74792;19763;1;156;55.0;170;100;1;1;0;0;1;1
+74794;17517;2;163;78.0;120;80;1;1;0;0;1;0
+74796;16675;1;159;61.0;110;80;1;1;0;0;1;0
+74797;15911;1;172;71.0;130;70;1;1;0;0;1;1
+74799;15288;2;163;80.0;130;100;1;1;1;0;0;0
+74800;23400;1;164;99.0;120;80;1;1;0;0;1;0
+74802;14569;1;160;65.0;120;80;1;1;0;0;1;0
+74805;18232;1;160;61.0;100;60;1;1;0;0;1;0
+74807;20536;1;164;103.0;150;100;3;1;0;0;1;1
+74808;21866;2;163;75.0;110;70;2;1;1;0;1;1
+74811;16897;1;165;72.0;120;80;1;1;0;0;1;1
+74812;19017;1;169;82.0;120;80;1;1;0;0;1;0
+74814;20498;2;165;77.0;130;80;1;1;0;0;0;1
+74815;20507;1;157;104.0;130;90;1;1;0;0;1;1
+74817;16008;1;172;76.0;110;80;1;1;0;0;1;0
+74820;23118;1;163;100.0;130;70;3;1;0;0;1;1
+74821;20538;1;168;52.0;120;80;1;2;0;0;0;0
+74822;20571;1;168;60.0;90;60;1;1;0;0;1;0
+74823;17410;1;160;65.0;150;90;1;1;0;0;0;1
+74824;18928;1;161;60.0;120;80;1;3;0;0;1;0
+74825;19110;1;157;69.0;120;80;1;1;0;0;1;1
+74826;15378;1;168;66.0;90;60;1;1;0;0;1;0
+74828;21113;1;162;117.0;130;80;1;1;0;0;1;1
+74830;21024;2;171;65.0;120;80;1;1;0;0;1;0
+74831;17621;1;168;71.0;130;80;1;1;0;0;1;1
+74832;18409;1;162;68.0;120;80;1;1;0;0;1;0
+74833;21766;2;161;69.0;160;100;1;1;0;0;0;1
+74835;19021;1;167;67.0;120;80;2;2;0;0;0;1
+74836;19705;2;174;101.0;130;80;3;3;0;0;1;1
+74837;20471;1;167;86.0;190;100;2;1;0;0;0;1
+74838;23645;1;160;95.0;170;90;1;1;0;0;1;1
+74840;19638;1;150;53.0;140;80;1;1;0;0;1;1
+74842;18404;2;171;73.0;120;70;1;1;1;0;1;1
+74843;22830;1;152;75.0;140;90;1;1;0;0;1;1
+74844;16215;1;169;69.0;130;90;1;1;0;1;1;0
+74845;23339;1;156;81.0;140;100;1;3;0;0;1;1
+74847;21580;1;168;69.0;120;80;1;1;0;0;1;1
+74848;21676;1;176;96.0;140;90;1;1;0;0;0;0
+74849;18442;2;173;70.0;120;80;1;1;1;0;1;1
+74854;21669;1;159;119.0;150;90;1;2;1;0;1;1
+74856;23110;1;154;94.0;140;90;3;1;0;0;1;1
+74857;19639;2;157;62.0;140;90;1;1;1;0;1;1
+74858;18979;2;160;60.0;120;80;1;1;0;0;1;0
+74859;22004;2;170;85.0;150;90;3;3;0;0;1;1
+74860;19674;1;161;74.0;140;90;1;3;0;0;1;1
+74861;19652;1;160;111.0;160;120;2;1;0;1;1;1
+74862;23347;2;169;77.0;120;80;1;1;0;0;1;1
+74867;21993;1;158;66.0;110;80;1;1;0;0;1;0
+74868;19085;1;162;86.0;120;80;3;3;0;0;1;1
+74869;23322;1;156;54.0;120;80;1;1;0;0;1;1
+74870;17529;1;166;80.0;100;60;1;1;0;0;1;0
+74873;17692;2;170;78.0;120;80;1;1;0;0;0;0
+74874;18160;2;181;111.0;140;90;1;1;1;0;0;0
+74876;20479;2;152;61.0;120;80;2;2;0;1;1;0
+74877;15848;2;176;119.0;140;90;1;1;0;0;1;1
+74878;14789;1;170;74.0;110;80;1;1;0;0;1;0
+74879;21330;1;168;66.0;120;70;3;3;0;0;1;0
+74880;16200;1;167;65.0;150;90;2;1;0;0;1;1
+74881;15216;2;169;73.0;110;60;1;2;1;0;1;0
+74885;21706;1;152;82.0;130;80;2;1;0;0;1;1
+74886;18249;1;160;60.0;120;80;1;1;0;0;0;0
+74889;15957;1;168;69.0;100;60;1;1;0;0;1;0
+74890;20614;1;164;71.0;120;80;1;1;0;0;1;0
+74891;15144;2;174;76.0;110;70;1;1;1;1;1;0
+74892;21948;1;163;63.0;110;70;1;1;0;0;1;0
+74893;20418;1;160;78.0;150;100;2;1;0;0;1;1
+74894;19736;2;176;92.0;120;80;2;1;1;1;1;0
+74896;16797;1;158;81.0;110;70;1;1;0;0;1;1
+74897;20217;1;163;61.0;150;90;1;1;0;0;0;1
+74898;17439;1;153;94.0;100;70;1;1;0;0;0;0
+74899;19810;1;162;62.0;110;70;1;1;0;0;1;0
+74900;16734;1;169;89.0;160;100;1;1;0;0;1;1
+74902;18712;2;174;76.0;140;90;2;1;0;0;1;0
+74903;20364;2;169;76.0;140;90;1;2;0;0;1;1
+74904;18246;1;148;52.0;100;60;2;1;0;0;1;0
+74905;19539;1;162;56.0;120;80;1;1;0;0;1;1
+74907;18838;1;152;70.0;120;80;1;1;0;0;0;1
+74910;23319;1;168;58.0;120;80;1;1;0;0;1;1
+74911;16754;1;165;59.0;155;100;2;1;0;0;1;1
+74912;18875;2;161;72.0;140;90;1;1;0;0;1;1
+74913;18146;1;160;68.0;100;90;2;1;0;0;1;0
+74914;19204;1;160;78.0;128;83;1;1;0;0;0;0
+74917;23327;1;157;58.0;130;80;3;3;0;0;0;1
+74919;20445;1;160;89.0;150;90;2;2;0;0;1;1
+74920;14606;1;165;65.0;110;70;1;1;0;0;1;0
+74921;22674;1;154;100.0;120;80;3;1;0;0;1;1
+74923;23452;1;150;64.0;120;80;1;1;0;0;1;0
+74924;14487;1;164;64.0;110;70;1;1;0;0;1;0
+74925;21108;1;172;98.0;120;80;2;3;0;0;0;0
+74926;15496;2;178;85.0;140;90;2;1;0;0;0;1
+74929;22642;1;163;63.0;150;90;3;1;0;0;1;1
+74930;21061;1;154;52.0;120;80;3;1;0;0;1;1
+74932;23505;1;162;71.0;130;80;1;1;0;0;1;1
+74933;21275;1;165;63.0;140;80;1;1;0;0;0;1
+74934;17647;1;158;57.0;120;70;1;1;0;0;1;0
+74936;22174;1;165;65.0;120;79;1;1;0;0;0;1
+74938;19778;1;170;88.0;130;80;2;2;0;0;1;1
+74940;19622;1;158;82.0;133;82;3;2;0;0;1;0
+74942;22178;1;160;65.0;120;80;1;3;0;0;1;1
+74943;20561;1;170;78.0;110;70;1;3;0;0;1;0
+74944;19521;2;165;70.0;130;80;2;2;1;0;0;0
+74945;21851;1;150;62.0;150;100;2;1;0;0;1;1
+74948;18967;2;166;55.0;120;80;1;1;1;0;1;1
+74954;20396;1;157;90.0;140;90;1;1;0;0;1;1
+74955;15891;1;162;85.0;110;70;1;2;0;0;1;0
+74956;23304;1;158;68.0;120;80;1;1;0;0;0;0
+74957;18152;1;155;55.0;140;90;3;3;0;0;1;1
+74958;20484;1;160;66.0;120;80;1;1;0;0;1;0
+74960;20416;1;162;91.0;150;90;1;1;1;0;1;1
+74961;16128;2;173;58.0;110;70;1;1;0;0;1;0
+74962;19560;1;148;68.0;110;75;1;1;0;1;0;0
+74963;19612;2;172;85.0;120;80;1;1;0;0;1;0
+74964;18073;1;165;76.0;120;80;1;1;0;0;1;1
+74966;20332;1;159;84.0;160;80;1;1;0;0;1;0
+74969;21943;1;165;65.0;120;80;1;1;0;0;1;1
+74970;21292;1;156;69.0;120;80;1;1;0;0;1;1
+74971;19957;1;165;75.0;120;80;1;1;0;0;0;1
+74973;18815;1;155;56.0;115;70;1;1;0;0;1;0
+74974;21085;2;169;73.0;150;100;2;1;1;1;1;1
+74975;16561;2;171;68.0;130;80;1;1;1;0;1;1
+74976;19755;2;177;73.0;130;80;1;3;0;0;1;1
+74977;23264;2;166;72.0;170;110;2;1;0;0;0;1
+74980;19907;2;170;80.0;120;80;1;1;0;0;1;0
+74983;18956;1;164;84.0;150;90;2;1;0;0;1;1
+74986;19060;1;168;73.0;120;80;2;2;0;0;1;1
+74987;16125;2;177;127.0;120;80;1;2;0;0;1;1
+74988;19465;1;169;75.0;130;90;2;1;1;0;1;1
+74990;22692;1;165;101.0;150;80;3;1;0;0;1;1
+74991;16750;2;172;59.0;110;80;1;1;0;1;0;0
+74993;20237;2;168;59.0;120;80;1;1;0;0;1;0
+74994;16836;1;170;101.0;130;90;1;1;0;0;1;0
+74995;21130;1;154;67.0;130;80;2;1;1;0;1;0
+74996;19618;1;158;61.0;120;80;1;1;0;0;0;1
+74997;15417;1;156;78.0;120;70;1;1;0;1;1;0
+74998;19017;1;168;60.0;120;80;1;1;0;0;1;1
+74999;16747;2;168;75.0;120;70;3;3;0;0;1;0
+75000;21793;2;172;74.0;120;80;2;2;0;0;1;0
+75001;22659;2;172;80.0;150;90;2;1;0;0;1;1
+75002;14627;2;176;89.0;130;90;1;1;0;0;1;1
+75003;19591;1;165;65.0;120;80;1;1;0;0;1;1
+75004;18500;1;164;56.0;100;70;2;1;0;0;1;0
+75006;15155;2;173;72.0;120;80;1;1;0;0;1;0
+75007;21919;1;155;66.0;13;0;1;1;0;0;1;0
+75008;22550;1;156;106.0;120;70;1;1;0;0;1;1
+75009;20460;1;165;74.0;120;90;1;2;0;0;1;0
+75010;21146;1;170;125.0;140;90;3;1;0;0;1;1
+75012;17383;1;170;70.0;100;90;1;3;0;0;1;1
+75013;14596;1;159;58.0;120;80;1;1;0;0;1;0
+75015;14408;2;173;59.0;120;89;1;1;0;0;1;0
+75016;17421;2;177;58.0;100;70;1;1;1;1;0;0
+75018;19840;1;166;82.0;128;82;3;3;0;0;1;1
+75020;22787;1;158;62.0;140;90;1;1;0;0;0;1
+75021;23454;1;149;77.0;130;80;2;1;0;0;1;1
+75022;18247;1;150;80.0;150;90;1;1;0;0;1;1
+75023;14655;1;161;69.0;110;70;1;1;0;0;1;0
+75027;19052;1;158;90.0;180;100;3;1;0;0;1;1
+75028;21094;2;180;62.0;140;90;1;1;0;0;1;1
+75029;21992;1;162;65.0;120;80;1;1;0;0;1;0
+75030;20670;2;164;63.0;190;100;1;1;0;0;0;1
+75031;21882;1;155;65.0;110;80;3;1;0;0;1;1
+75032;21388;1;163;96.0;125;84;1;1;0;0;0;0
+75034;15912;1;175;64.0;120;80;1;1;0;0;1;1
+75035;21185;1;159;72.0;140;90;1;1;0;0;1;1
+75036;18318;1;162;97.0;160;100;1;1;0;0;1;1
+75037;15330;1;160;80.0;120;80;1;1;0;0;1;0
+75040;19797;1;168;80.0;100;80;1;1;0;0;0;0
+75041;19015;2;164;59.0;110;70;1;1;0;0;1;0
+75042;14693;2;165;59.0;120;80;1;1;0;0;1;0
+75043;21377;1;168;69.0;110;70;1;1;0;0;1;1
+75044;17568;2;170;74.0;120;80;1;1;0;0;1;0
+75045;19671;1;162;68.0;140;80;1;1;0;0;1;1
+75046;21041;1;165;65.0;120;70;1;1;0;0;1;1
+75047;21270;1;170;79.0;110;70;1;1;0;0;1;1
+75049;20985;2;167;103.0;160;100;3;2;0;0;1;1
+75051;20556;1;159;73.0;130;80;1;1;0;0;1;0
+75052;22703;1;175;87.0;120;80;1;1;0;0;0;1
+75053;19233;2;172;69.0;120;80;1;1;0;0;1;0
+75056;18404;1;152;83.0;160;80;2;2;0;0;1;1
+75058;18894;1;160;84.0;110;70;1;1;0;0;1;1
+75059;19159;2;165;65.0;140;89;1;2;0;0;1;0
+75060;22656;1;165;64.0;140;90;1;1;0;0;1;1
+75061;21959;2;177;118.0;170;100;1;1;0;0;1;1
+75063;16758;1;161;61.0;90;60;1;1;0;0;1;0
+75064;20409;1;162;61.0;120;80;1;1;0;0;1;1
+75066;16788;1;165;92.0;130;80;1;2;0;0;1;1
+75068;19846;1;165;69.0;120;80;2;1;0;0;0;1
+75070;16034;1;172;62.0;120;80;1;1;0;0;0;0
+75073;23624;2;168;69.0;120;80;1;1;0;1;1;1
+75074;23487;2;165;66.0;140;100;3;1;0;0;1;1
+75075;20176;1;168;80.0;120;80;1;1;0;0;0;0
+75077;18726;1;172;65.0;140;80;1;1;0;0;1;0
+75079;18323;2;175;66.0;120;70;1;1;0;0;1;1
+75080;18183;1;157;42.0;100;70;1;1;0;0;0;1
+75083;20936;2;170;70.0;140;90;3;1;0;0;1;1
+75085;20446;1;156;57.0;120;80;1;1;0;0;1;0
+75086;21208;2;153;70.0;160;100;1;1;0;0;1;1
+75087;16906;1;155;58.0;110;70;1;1;0;0;0;0
+75088;20337;1;161;120.0;160;90;1;1;0;0;1;1
+75089;23455;1;151;72.0;130;80;3;3;0;0;1;1
+75090;22686;2;163;67.0;130;80;1;1;0;0;1;1
+75091;22015;1;160;85.0;130;90;1;1;0;0;1;1
+75092;19911;1;168;75.0;120;80;2;2;0;0;0;0
+75093;17575;2;165;62.0;130;90;1;1;0;0;1;0
+75094;17564;2;175;55.0;130;80;1;1;0;0;1;0
+75095;18879;2;176;92.0;140;90;2;1;0;0;0;1
+75098;21254;2;164;58.0;120;80;1;1;0;0;1;0
+75099;16890;1;160;60.0;120;80;1;1;0;0;1;0
+75100;19564;1;158;69.0;120;80;1;1;0;0;0;0
+75101;21907;1;158;60.0;110;80;1;2;0;0;1;0
+75104;16170;1;178;76.0;140;80;1;1;0;0;1;1
+75106;21754;1;162;98.0;150;90;3;1;0;0;1;1
+75108;21246;2;169;86.0;150;90;1;2;0;0;1;1
+75110;20370;1;149;82.0;120;80;2;1;0;0;1;0
+75111;23459;1;158;60.0;140;90;1;1;0;0;1;1
+75112;22546;1;156;54.0;120;80;1;1;0;0;0;1
+75113;21826;1;160;70.0;130;80;1;1;0;0;1;1
+75117;19764;2;169;67.0;120;80;1;1;0;0;1;1
+75120;17584;1;162;66.0;120;70;1;1;0;0;1;1
+75121;19664;2;179;78.0;120;80;1;3;0;0;1;1
+75123;14603;2;169;70.0;120;80;1;1;0;0;1;0
+75124;21243;1;156;79.0;160;90;2;1;0;0;1;1
+75125;19517;2;165;65.0;140;90;1;1;0;0;1;1
+75127;20240;2;170;72.0;110;70;1;1;0;0;1;1
+75128;23353;1;159;86.0;130;85;3;1;0;0;1;1
+75130;21735;1;155;85.0;135;85;1;1;0;1;1;0
+75131;20326;1;168;81.0;120;80;2;1;0;0;1;0
+75133;16692;1;174;92.0;120;80;1;1;1;0;1;0
+75134;21225;2;160;60.0;120;80;1;1;0;0;1;0
+75138;18902;1;163;80.0;140;90;1;1;0;0;1;1
+75139;17303;1;156;58.0;120;80;1;1;0;0;1;1
+75140;16057;2;175;75.0;110;70;1;1;0;0;1;0
+75141;18197;1;164;92.0;120;80;1;1;0;0;1;0
+75144;15345;2;164;96.0;140;90;2;1;0;0;1;1
+75145;18148;1;153;56.0;120;80;1;2;0;0;1;0
+75147;21665;1;170;69.0;150;90;1;1;0;0;1;1
+75148;16129;1;178;71.0;140;90;1;1;0;0;1;1
+75150;17283;2;168;68.0;140;90;1;1;0;0;1;1
+75152;18981;1;164;81.0;120;80;1;1;0;0;0;0
+75154;19476;1;162;62.0;120;80;1;1;0;0;1;0
+75155;21789;2;170;57.0;120;80;1;1;1;1;0;1
+75157;15419;2;170;70.0;120;70;1;1;1;1;1;0
+75160;23424;1;168;85.0;130;80;2;3;0;0;1;1
+75161;23110;1;162;78.0;105;80;1;1;0;0;0;1
+75163;18816;2;160;64.0;120;80;1;1;0;0;0;1
+75164;21183;2;168;75.0;120;80;1;1;0;0;1;0
+75165;18889;1;165;90.0;160;90;3;1;0;0;0;1
+75167;19533;1;160;67.0;120;69;1;1;0;0;1;0
+75170;21766;2;177;120.0;170;90;3;3;0;0;1;1
+75171;15200;2;165;71.0;120;80;1;1;0;0;1;1
+75174;21710;2;162;73.0;130;80;1;1;0;0;0;1
+75176;14381;1;149;60.0;100;60;1;1;0;0;1;0
+75177;20510;1;160;54.0;110;70;1;1;0;0;1;0
+75178;18982;1;170;85.0;15;90;1;1;0;0;1;1
+75179;19101;1;168;68.0;120;80;1;1;0;0;1;0
+75180;21928;2;160;75.0;130;90;3;1;0;0;1;0
+75181;19695;2;165;65.0;120;80;1;2;0;0;1;0
+75182;21912;1;163;78.0;140;90;1;1;0;0;0;1
+75183;17311;2;183;79.0;130;80;1;1;0;0;1;1
+75185;22830;2;163;63.0;120;80;1;3;0;0;1;1
+75186;19669;1;152;67.0;120;80;1;1;0;0;0;0
+75188;18885;2;167;98.0;130;90;2;2;0;0;1;1
+75189;18355;1;164;69.0;120;80;3;3;0;0;1;0
+75190;14378;1;162;67.0;120;70;2;2;0;0;1;0
+75191;18255;1;162;85.0;140;90;1;1;0;0;0;1
+75192;19046;1;168;73.0;140;90;1;1;0;0;1;0
+75193;19642;1;160;125.0;120;90;1;2;0;0;0;0
+75195;16690;1;161;66.0;90;57;1;1;0;0;0;0
+75196;17406;1;152;73.0;150;90;3;3;0;0;1;1
+75197;19815;1;158;90.0;140;90;3;1;0;0;0;0
+75198;18419;1;165;70.0;130;80;1;1;0;0;1;0
+75199;19626;1;157;69.0;140;90;1;2;0;0;1;1
+75200;16175;2;175;98.0;130;80;1;1;1;0;1;0
+75201;22638;1;164;63.0;120;80;1;1;0;0;1;0
+75202;15402;1;170;89.0;140;100;2;1;0;0;0;1
+75203;23403;1;155;77.0;140;79;3;1;0;0;1;1
+75204;21945;2;167;86.0;110;80;1;1;1;0;1;1
+75205;15318;1;158;60.0;100;60;1;1;0;0;0;0
+75207;16068;1;165;65.0;120;80;1;1;0;0;1;0
+75208;20369;1;150;68.0;120;80;1;3;0;0;1;1
+75209;22666;1;169;65.0;140;80;1;3;0;0;1;0
+75210;17539;1;165;66.0;120;80;3;3;0;0;1;0
+75211;22782;2;156;60.0;120;80;1;1;0;0;1;1
+75212;23403;2;165;77.0;120;80;1;1;0;0;1;1
+75213;21058;2;168;95.0;130;80;3;1;0;0;0;1
+75214;21335;1;144;92.0;120;80;1;1;0;0;0;1
+75215;21254;1;163;68.0;120;80;1;1;0;0;0;1
+75216;17564;2;159;59.0;110;70;1;1;0;0;1;0
+75217;15939;2;178;87.0;150;90;3;1;1;1;1;1
+75218;18430;1;163;82.0;120;80;1;1;0;0;1;0
+75219;17438;1;148;52.0;120;80;1;1;0;0;1;0
+75221;18912;1;168;87.0;120;80;2;1;1;0;1;0
+75226;23316;1;163;106.0;120;80;1;1;0;0;1;1
+75227;16123;1;168;87.0;120;80;1;1;0;0;1;1
+75228;18166;2;185;103.0;140;90;1;2;0;0;1;1
+75232;22632;1;157;69.0;140;90;1;1;0;0;1;1
+75233;21651;1;158;76.0;160;100;3;1;0;0;1;1
+75234;21894;1;169;72.0;120;70;1;1;0;0;1;0
+75235;19500;1;160;60.0;120;80;2;1;0;0;1;0
+75237;14613;1;162;53.0;100;60;1;1;0;0;0;0
+75238;17242;2;174;85.0;120;80;1;1;0;0;1;0
+75239;18206;1;158;68.0;120;80;1;1;0;0;1;0
+75240;16340;1;168;72.0;120;80;1;1;0;0;1;0
+75241;23635;1;170;76.0;120;80;1;2;0;0;1;0
+75242;15209;2;166;70.0;130;70;1;1;0;0;1;1
+75243;19556;2;140;70.0;140;70;2;2;0;0;1;1
+75244;17467;1;158;83.0;150;90;2;1;0;0;1;1
+75245;19159;2;170;68.0;120;80;1;1;0;0;1;1
+75246;15361;2;168;53.0;120;70;1;1;1;1;1;0
+75247;17553;2;160;60.0;130;80;1;1;0;0;0;1
+75248;19665;2;164;68.0;130;85;1;1;0;0;1;1
+75249;18834;1;160;74.0;120;80;2;1;0;0;0;1
+75251;14760;1;164;65.0;110;80;1;1;0;0;1;1
+75252;21826;1;169;70.0;120;80;1;1;0;0;1;0
+75253;14554;2;176;76.0;120;80;1;1;0;0;1;0
+75254;21046;1;149;65.0;140;90;2;1;0;0;1;1
+75255;21939;1;159;53.0;130;80;1;1;0;0;0;0
+75256;20504;2;168;58.0;120;70;1;1;0;1;1;1
+75257;19674;1;155;64.0;100;60;1;1;0;1;0;0
+75260;17577;2;164;72.0;160;90;1;1;0;0;0;1
+75261;21908;1;158;82.0;160;90;1;1;0;0;1;1
+75262;18121;1;120;80.0;120;80;3;3;0;0;0;1
+75263;16102;1;175;100.0;150;80;2;2;0;0;1;1
+75266;16860;1;161;68.0;130;80;1;1;0;0;1;1
+75267;21038;1;159;95.0;130;80;3;3;0;0;1;1
+75268;20544;1;160;95.0;120;80;1;1;0;0;1;1
+75269;21131;1;160;90.0;140;90;3;3;0;0;1;1
+75272;15249;1;169;75.0;120;80;1;1;0;0;1;0
+75273;18066;1;167;56.0;150;100;1;1;0;1;1;1
+75275;21709;1;154;90.0;150;80;3;3;0;0;1;1
+75276;18320;2;171;71.0;130;80;1;1;0;0;0;0
+75277;21117;1;164;86.0;90;120;1;1;0;1;1;1
+75278;22813;1;158;88.0;130;80;1;1;0;0;1;0
+75279;19617;1;172;70.0;110;70;1;1;0;0;1;1
+75280;15137;1;164;75.0;110;70;1;1;0;0;1;0
+75281;21160;2;169;65.0;120;80;1;1;0;0;1;0
+75282;18840;1;155;78.0;120;80;3;1;0;0;1;1
+75285;21973;2;178;85.0;120;80;1;1;0;0;0;1
+75286;16707;1;165;88.0;140;80;1;1;0;0;1;1
+75287;19503;2;172;90.0;160;1100;1;1;0;0;1;1
+75288;15487;2;167;76.0;120;80;1;1;0;0;1;0
+75289;22662;1;155;68.0;130;70;3;1;0;0;1;1
+75290;18526;1;159;58.0;120;80;1;1;0;0;1;0
+75291;18381;1;160;63.0;130;80;1;1;0;0;1;1
+75292;14548;2;165;65.0;120;60;1;1;0;0;0;0
+75293;19198;1;165;84.0;101;74;1;1;0;0;1;0
+75297;19790;2;170;72.0;120;80;1;1;0;0;1;1
+75298;15331;2;173;61.0;120;80;1;1;0;0;1;0
+75299;21141;2;156;64.0;120;80;3;3;0;0;1;1
+75300;15467;1;171;69.0;110;70;1;1;0;0;1;0
+75302;18312;1;150;79.0;130;80;1;1;0;0;1;0
+75303;16773;1;159;49.0;140;80;1;1;0;0;1;1
+75304;15313;1;168;56.0;110;70;1;1;0;0;1;0
+75305;20713;2;173;83.0;125;80;1;1;0;0;1;0
+75307;19738;2;160;60.0;130;90;1;1;0;0;1;0
+75308;20179;1;155;54.0;90;60;2;1;0;0;1;0
+75309;19857;2;175;72.0;120;80;1;1;0;0;1;0
+75310;17629;1;163;90.0;120;80;1;1;0;0;0;0
+75312;19554;2;180;74.0;110;60;1;1;0;0;1;0
+75315;20373;1;163;95.0;160;100;1;1;0;0;1;1
+75316;18185;2;162;99.0;150;90;1;1;1;0;1;1
+75317;20304;1;168;100.0;140;70;1;1;0;0;1;1
+75318;21602;2;175;75.0;130;90;1;1;1;0;1;1
+75319;19465;1;157;62.0;114;73;3;1;0;0;1;1
+75320;21882;1;148;82.0;115;75;1;1;0;0;1;0
+75321;20360;1;152;66.0;110;79;1;1;0;0;1;0
+75322;16255;2;160;47.0;110;80;1;1;1;1;1;0
+75324;17499;2;177;120.0;130;90;2;1;0;0;1;1
+75325;21161;1;162;56.0;160;100;1;1;0;0;1;0
+75331;16141;1;168;74.0;120;80;1;1;0;0;1;0
+75332;21823;1;151;74.0;150;90;3;1;0;0;1;0
+75333;16874;2;171;97.0;120;80;1;2;0;0;0;0
+75334;23317;1;164;72.0;100;70;1;1;0;0;1;0
+75335;17300;1;160;64.0;110;70;1;1;0;0;1;1
+75336;19465;1;161;59.0;120;80;1;1;0;0;1;0
+75338;21002;2;149;60.0;140;90;1;1;0;0;1;0
+75339;19522;1;160;64.0;140;80;1;1;0;0;0;0
+75340;18308;1;165;68.0;120;80;1;1;0;0;1;0
+75341;22620;2;172;71.0;120;90;3;1;0;0;0;1
+75342;20954;1;161;60.0;180;90;3;2;0;0;1;1
+75343;21221;1;157;69.0;120;80;1;1;0;0;0;1
+75344;20552;2;184;92.0;135;80;2;2;1;1;1;0
+75345;18914;1;164;74.0;150;90;3;1;0;0;1;1
+75346;22712;2;174;121.0;140;80;3;3;0;0;1;1
+75348;20509;1;170;73.0;160;90;1;1;0;0;0;1
+75349;17507;2;171;71.0;190;90;3;3;0;0;1;1
+75350;16613;1;164;78.0;140;90;1;1;0;0;1;1
+75351;20283;2;172;76.0;140;90;1;1;0;0;1;1
+75356;20518;2;164;78.0;140;100;3;2;0;0;1;0
+75357;18782;1;162;77.0;130;80;1;1;0;0;1;1
+75358;14745;1;155;60.0;140;90;1;1;0;0;0;1
+75360;18270;1;167;73.0;130;80;1;1;0;0;0;0
+75361;14374;1;163;69.0;100;60;2;1;0;0;1;0
+75362;20507;2;165;63.0;120;80;1;1;1;0;1;0
+75363;21933;1;160;80.0;120;80;1;1;0;0;1;0
+75364;23200;1;163;66.0;120;80;2;1;0;0;1;1
+75365;20517;1;160;72.0;120;80;1;1;0;0;1;0
+75366;16751;1;159;63.0;140;1100;1;1;0;0;1;1
+75369;20909;1;162;67.0;100;60;3;1;0;0;1;0
+75370;19857;1;160;62.0;90;60;1;3;0;0;1;0
+75375;23134;2;162;76.0;110;70;1;3;0;0;0;0
+75376;21783;1;151;56.0;120;80;1;1;0;0;0;0
+75377;20163;2;165;83.0;180;100;1;1;1;1;0;1
+75382;20558;2;170;73.0;120;80;3;3;1;0;1;1
+75383;16637;1;154;63.0;110;60;1;1;0;0;1;0
+75384;15499;1;169;65.0;120;70;1;1;0;0;1;0
+75386;17635;2;170;77.0;120;80;1;1;0;0;1;0
+75387;22673;2;167;70.0;130;80;1;1;1;1;0;0
+75388;18531;1;148;84.0;160;1000;2;3;0;0;1;1
+75389;17573;1;170;80.0;150;80;2;2;0;0;0;0
+75390;16779;1;157;68.0;120;80;1;1;0;0;1;0
+75394;21910;2;167;73.0;120;70;1;3;0;0;1;0
+75396;17449;1;150;60.0;120;80;1;1;0;0;1;0
+75398;17701;2;178;80.0;110;70;1;1;1;0;1;0
+75399;17770;2;164;64.0;24;20;3;1;0;0;1;1
+75400;17442;1;178;88.0;110;70;1;1;0;0;1;1
+75401;16885;1;166;75.0;110;70;1;1;0;0;1;0
+75403;17292;1;162;86.0;130;90;1;1;0;0;0;1
+75404;22597;2;165;101.0;160;90;1;1;0;0;0;1
+75405;22653;1;166;70.0;90;60;1;3;0;0;0;0
+75406;14459;1;168;86.0;110;70;1;1;0;0;1;0
+75407;17459;2;176;72.0;150;80;3;1;0;0;1;1
+75408;14310;1;156;62.0;110;70;1;1;0;0;1;0
+75409;14625;2;174;69.0;120;80;1;1;0;0;1;0
+75411;17534;1;164;72.0;150;80;1;1;0;0;1;1
+75412;20443;2;170;71.0;120;90;1;1;0;1;1;1
+75413;23328;2;164;75.0;130;80;1;1;0;0;1;0
+75414;19837;1;169;68.0;120;80;1;1;0;0;1;0
+75415;22668;1;158;71.0;150;1000;2;2;0;0;1;0
+75416;19729;2;168;78.0;120;80;1;1;0;0;1;0
+75417;21176;2;171;74.0;140;80;1;1;0;0;1;1
+75419;18293;1;166;68.0;130;90;1;1;0;0;1;0
+75420;14755;1;159;62.0;120;80;1;1;0;0;1;0
+75422;21940;2;173;80.0;160;100;3;1;0;0;1;1
+75423;14556;1;161;63.0;120;80;1;1;0;0;0;0
+75425;19628;1;169;68.0;130;80;1;1;0;0;0;0
+75428;18392;1;168;70.0;110;70;1;1;0;0;1;0
+75429;19947;2;167;83.0;120;80;1;1;0;0;1;1
+75430;22811;2;180;89.0;120;80;3;3;0;0;0;0
+75431;22117;2;177;86.0;130;90;1;1;0;0;0;1
+75432;18378;2;176;77.0;120;80;1;1;0;0;1;0
+75433;21726;1;168;72.0;150;100;1;1;0;0;1;0
+75434;22652;1;165;69.0;120;80;1;1;0;0;0;1
+75435;16846;2;172;80.0;160;100;1;1;0;0;1;0
+75436;14580;1;146;55.0;90;60;2;1;0;0;1;0
+75439;19607;1;164;64.0;110;90;1;1;0;0;0;1
+75440;19670;1;161;65.0;110;70;1;1;0;0;1;0
+75441;16917;2;186;91.0;120;80;1;3;0;0;1;0
+75442;19083;1;148;60.0;110;90;1;1;0;0;0;0
+75443;19889;1;158;56.0;110;70;1;1;0;0;1;0
+75445;17299;1;162;53.0;90;60;1;1;0;0;1;0
+75446;20455;2;177;70.0;120;70;1;1;1;1;0;0
+75448;16612;2;169;75.0;150;100;1;1;0;0;1;0
+75449;19067;1;172;62.0;140;90;1;1;0;0;1;1
+75450;19569;1;162;106.0;140;90;2;1;0;0;1;1
+75451;21788;2;152;48.0;120;80;1;1;0;0;1;0
+75452;16811;2;175;76.0;145;80;1;1;0;0;1;1
+75453;20472;2;157;53.0;150;1000;1;1;0;0;1;1
+75454;17538;2;180;72.0;110;70;1;1;0;0;0;0
+75456;23201;1;162;65.0;130;70;1;1;0;0;1;1
+75457;18967;1;158;78.0;140;80;1;1;0;0;1;1
+75459;14544;2;180;106.0;130;90;1;1;1;0;1;0
+75460;17667;2;169;64.0;120;80;1;1;0;0;1;0
+75461;19652;1;160;58.0;160;100;3;1;0;0;1;1
+75467;21824;1;164;103.0;150;70;1;1;0;0;1;1
+75469;18255;1;159;65.0;130;80;1;1;0;0;0;0
+75470;21994;1;162;78.0;120;70;1;1;0;0;0;0
+75471;18885;1;161;53.0;120;80;1;1;0;0;1;0
+75473;23122;1;167;65.0;120;80;1;1;0;0;1;0
+75474;18145;1;165;65.0;120;80;3;3;0;0;1;1
+75475;21147;1;170;68.0;170;80;2;1;0;0;1;1
+75476;14486;1;160;60.0;110;70;1;1;0;0;1;0
+75477;19066;1;157;59.0;110;80;1;1;0;0;1;1
+75478;22788;1;164;86.0;130;80;3;3;0;0;1;1
+75479;19600;1;158;65.0;120;80;1;1;0;0;1;0
+75482;20401;1;164;70.0;125;6800;1;1;0;0;1;0
+75483;23218;2;165;60.0;130;80;1;1;0;0;1;1
+75484;20609;1;164;67.0;150;100;2;1;0;0;1;1
+75485;17233;1;155;73.0;120;80;3;1;0;0;1;1
+75486;15857;2;176;73.0;120;80;1;1;0;0;1;0
+75487;20348;1;170;74.0;120;80;1;1;0;0;1;0
+75488;22513;1;162;68.0;120;80;1;1;0;0;1;0
+75490;19615;2;171;78.0;120;80;1;1;0;0;0;0
+75491;20431;1;170;80.0;120;80;1;1;0;0;1;0
+75492;18416;1;165;65.0;120;80;1;1;0;0;1;0
+75493;20315;1;159;76.0;140;90;1;1;0;0;1;0
+75495;19877;2;170;68.0;120;80;1;1;0;0;1;0
+75496;22371;1;162;83.0;130;80;3;1;0;0;1;1
+75499;20344;1;156;58.0;120;80;1;1;0;0;0;1
+75500;22518;2;163;69.0;120;60;1;1;0;0;1;1
+75501;20510;1;155;55.0;130;90;2;1;0;0;1;1
+75503;19575;1;155;72.0;120;80;1;1;0;0;1;0
+75504;20397;2;170;78.0;130;90;2;1;0;0;1;1
+75505;20298;2;160;77.0;110;70;1;1;0;0;0;1
+75508;22594;1;154;84.0;110;70;1;1;0;0;1;1
+75509;19697;1;160;59.0;120;80;1;3;0;0;1;0
+75511;19493;1;159;74.0;150;90;1;1;0;0;1;1
+75512;20426;1;166;64.0;140;90;1;1;0;0;1;1
+75514;16173;2;173;72.0;120;70;1;2;0;0;1;0
+75515;20476;1;150;63.0;110;70;1;1;0;0;1;1
+75517;15345;2;170;72.0;120;90;1;1;0;0;1;1
+75518;16174;2;171;72.0;120;80;1;1;0;0;1;1
+75519;23417;1;162;110.0;140;90;3;2;0;0;1;1
+75520;19118;2;174;99.0;90;160;1;1;0;0;1;1
+75521;18378;2;178;76.0;120;80;1;3;0;0;1;0
+75522;15116;1;160;70.0;120;70;3;3;0;0;0;0
+75523;18894;1;168;75.0;120;80;1;1;1;0;0;1
+75524;19055;1;159;68.0;150;100;1;1;0;0;1;1
+75525;17539;2;173;77.0;120;80;1;1;0;0;1;0
+75527;22602;1;152;72.0;130;75;3;3;0;0;1;1
+75528;16875;2;170;68.0;120;80;1;1;0;0;1;0
+75529;15377;2;172;89.0;140;90;1;1;0;0;1;1
+75530;19758;1;164;100.0;120;80;1;1;0;0;1;1
+75531;22108;2;170;90.0;110;70;1;3;1;0;0;0
+75532;16825;1;156;55.0;100;70;2;1;0;0;1;0
+75533;18866;1;157;62.0;110;80;1;1;0;0;1;1
+75534;16081;1;165;70.0;150;100;1;1;0;0;1;1
+75535;17485;2;165;99.0;140;90;2;1;0;0;1;1
+75537;21149;2;165;65.0;150;90;1;1;0;0;0;1
+75538;20535;1;165;85.0;150;80;3;1;0;0;1;1
+75540;17613;1;176;107.0;160;100;1;1;0;0;0;0
+75541;19797;1;160;61.0;130;80;2;2;0;1;1;1
+75542;21902;1;158;63.0;110;70;1;1;0;0;1;1
+75543;14544;1;154;81.0;110;70;1;1;0;0;1;0
+75544;22666;2;178;83.0;150;90;2;2;0;1;1;1
+75546;21872;1;142;51.0;140;90;2;1;0;0;1;1
+75547;14659;1;165;65.0;120;80;1;1;0;0;0;0
+75548;19606;1;156;95.0;160;100;1;2;0;0;1;1
+75549;19826;1;168;67.0;110;70;1;1;0;0;1;0
+75551;21646;2;165;77.0;140;90;1;1;1;1;1;1
+75553;15950;1;165;90.0;120;80;1;1;0;0;1;0
+75554;18280;2;180;90.0;120;80;1;1;0;0;1;0
+75556;14703;2;165;65.0;120;80;1;1;0;0;0;1
+75558;21232;1;159;98.0;120;80;1;2;0;0;1;0
+75559;18923;2;186;99.0;130;90;3;1;0;0;1;1
+75561;19652;1;158;56.0;140;90;3;3;0;0;1;1
+75562;21176;1;160;71.0;140;80;1;1;0;0;1;1
+75565;21239;2;160;62.0;120;70;1;1;0;0;1;1
+75566;17731;1;166;89.0;120;80;1;1;0;0;1;1
+75567;19087;1;159;63.0;150;90;1;1;0;0;1;1
+75568;22026;2;167;80.0;160;110;2;1;0;0;1;1
+75570;19139;1;170;77.0;120;80;1;1;0;0;0;1
+75571;21129;1;158;112.0;150;100;2;1;0;0;1;1
+75572;22689;1;165;73.0;120;80;3;3;0;0;1;1
+75573;20319;1;165;60.0;120;80;1;1;0;0;1;1
+75574;20274;1;161;82.0;120;80;1;1;0;0;1;1
+75575;23533;2;171;65.0;120;80;1;1;0;0;1;0
+75576;18683;1;169;69.0;110;80;1;1;0;0;1;0
+75577;21918;1;176;70.0;120;80;1;1;0;0;0;1
+75578;18333;1;158;65.0;110;80;1;1;0;0;1;0
+75580;22059;1;156;41.0;120;80;1;1;0;0;1;1
+75582;19178;1;173;68.0;130;80;1;1;0;1;1;0
+75583;16154;1;166;60.0;120;80;1;1;0;0;1;0
+75584;20581;1;160;60.0;120;80;1;1;0;0;1;0
+75585;21858;1;164;123.0;180;100;2;2;0;0;0;1
+75588;20940;1;166;100.0;140;90;1;1;0;0;1;1
+75589;17535;2;185;113.0;120;80;3;1;0;0;1;1
+75591;15107;1;161;76.0;160;1000;1;1;0;0;1;1
+75592;18385;2;166;69.0;130;90;1;1;0;0;0;1
+75593;18350;1;158;68.0;120;80;1;1;0;0;0;0
+75595;18463;2;165;71.0;120;80;1;1;0;0;1;0
+75596;22831;2;168;63.0;120;80;1;1;0;0;0;0
+75597;14654;1;153;49.0;120;80;1;1;0;0;1;0
+75599;17482;2;172;76.0;110;70;1;1;0;1;1;1
+75601;18358;1;161;62.0;120;80;1;1;0;0;1;0
+75602;22448;1;144;63.0;140;90;1;1;0;0;1;1
+75603;16811;1;165;67.0;160;90;2;2;0;0;1;0
+75604;23531;1;170;65.0;110;80;1;1;0;0;1;1
+75605;18274;2;172;84.0;140;90;1;1;1;1;1;1
+75606;23479;1;150;52.0;120;80;1;1;0;0;1;1
+75608;15940;1;160;62.0;130;80;1;1;0;0;1;1
+75609;16616;1;175;70.0;140;1000;3;3;0;0;1;1
+75612;19777;1;159;72.0;130;80;1;1;0;0;1;0
+75615;22125;1;162;85.0;120;80;1;1;0;0;1;0
+75616;21087;1;166;108.0;130;90;1;1;0;0;1;1
+75617;21870;1;150;43.0;130;80;3;3;0;0;1;1
+75618;20601;1;178;75.0;120;80;1;1;0;0;1;1
+75620;20483;1;161;69.0;120;80;1;1;0;0;1;0
+75621;18975;1;172;70.0;120;90;3;3;0;0;1;1
+75622;18899;1;178;79.0;130;80;1;1;0;0;1;1
+75624;16058;2;169;58.0;130;90;1;1;0;0;1;1
+75625;20417;1;157;80.0;120;80;1;1;0;0;1;1
+75628;18787;1;155;56.0;110;80;1;1;0;0;1;0
+75629;20501;2;167;90.0;150;90;1;1;0;0;1;0
+75631;18039;2;172;88.0;120;80;1;1;0;0;1;0
+75633;21355;1;155;77.0;140;100;1;1;0;0;1;1
+75635;15219;1;160;76.0;105;70;1;1;0;0;1;0
+75636;17697;1;169;72.0;120;80;1;1;0;0;1;1
+75638;16697;2;178;84.0;140;90;1;1;1;0;0;1
+75639;20956;1;156;70.0;110;80;1;1;0;0;1;0
+75642;19849;1;155;91.0;130;80;1;1;0;0;0;1
+75643;21091;1;170;61.0;120;80;1;1;0;0;1;1
+75645;14688;1;165;78.0;120;70;1;1;0;0;1;0
+75647;14727;1;158;66.0;110;70;1;1;0;0;1;0
+75648;21589;2;172;88.0;130;90;1;2;0;0;0;0
+75651;19709;1;148;54.0;110;70;1;3;0;0;1;0
+75652;18046;1;163;63.0;120;80;1;1;0;0;1;0
+75653;22651;1;169;61.0;120;80;1;1;0;0;0;1
+75654;21096;2;163;76.0;160;100;2;1;0;0;0;1
+75657;18013;1;155;85.0;120;80;1;1;0;0;0;1
+75658;18154;1;161;57.0;90;60;1;1;0;0;1;0
+75659;16679;1;165;68.0;140;90;1;1;0;0;0;1
+75661;19445;2;179;112.0;130;80;3;1;0;0;1;1
+75663;18137;2;176;120.0;130;90;2;1;0;0;1;1
+75666;22451;1;155;70.0;120;80;3;1;0;0;0;1
+75669;16894;2;165;69.0;120;80;1;1;1;1;1;0
+75670;18296;1;157;49.0;120;80;1;1;0;0;0;1
+75671;21132;1;167;72.0;120;70;3;1;0;0;0;1
+75672;16695;2;155;78.0;120;80;1;1;1;0;1;0
+75673;14551;1;156;78.0;90;70;1;1;0;0;0;0
+75675;21976;1;159;60.0;120;80;1;1;0;0;1;0
+75676;21938;1;166;67.0;120;80;1;1;0;0;0;0
+75677;20300;1;171;53.0;150;80;3;1;0;0;1;1
+75678;18110;1;174;65.0;140;80;1;2;0;0;1;1
+75679;14714;1;164;60.0;120;80;1;1;0;0;1;0
+75680;21243;1;168;65.0;120;80;1;1;0;0;1;1
+75681;22525;1;152;69.0;140;90;1;1;0;0;1;1
+75682;22739;1;160;72.0;120;80;1;1;0;0;0;1
+75683;20966;1;161;62.0;100;70;1;1;0;0;1;0
+75684;16230;1;154;70.0;110;70;1;1;0;0;1;0
+75685;22562;1;154;59.0;150;90;1;1;0;0;1;1
+75687;17700;2;168;82.0;120;80;1;1;0;1;1;0
+75688;20915;1;168;82.0;110;80;2;1;0;1;1;0
+75689;14694;1;162;69.0;110;70;1;1;0;0;1;0
+75690;22597;1;170;90.0;150;90;1;1;1;0;1;0
+75696;23424;1;156;78.0;170;100;1;1;0;0;1;1
+75697;14565;1;167;65.0;120;80;1;1;0;0;1;0
+75698;19803;1;163;65.0;120;80;1;1;0;0;1;0
+75699;21152;2;171;76.0;143;91;1;1;0;1;1;1
+75700;21208;1;156;65.0;120;60;1;1;0;0;1;0
+75703;19024;2;170;68.0;130;90;1;1;0;0;0;0
+75704;19034;1;165;114.0;140;80;1;1;0;0;0;1
+75705;19022;2;163;61.0;130;80;1;1;0;0;1;1
+75706;19620;1;159;84.0;150;100;1;1;0;0;1;0
+75707;18978;1;158;85.0;130;90;1;1;0;0;1;1
+75708;17394;2;176;85.0;120;80;1;1;1;1;1;0
+75709;21296;1;163;73.0;140;90;3;3;0;0;1;1
+75711;21366;1;158;60.0;120;80;1;1;0;0;1;1
+75712;18111;1;166;79.0;120;80;1;1;0;0;1;0
+75713;16758;1;164;92.0;160;95;1;1;0;0;1;1
+75714;20267;2;176;96.0;130;80;2;1;0;0;1;0
+75716;22609;2;171;69.0;110;70;1;1;1;1;1;0
+75720;14581;1;157;57.0;120;80;1;1;0;0;1;0
+75721;18201;1;169;65.0;120;80;1;1;0;0;1;0
+75722;19685;2;169;75.0;120;80;1;1;0;1;1;1
+75723;22033;1;159;76.0;120;80;1;1;0;0;1;0
+75724;23490;1;160;74.0;130;90;3;3;0;0;1;1
+75727;22514;1;150;100.0;150;80;3;3;0;0;1;0
+75730;19944;1;160;96.0;140;80;3;2;0;0;1;1
+75731;14545;2;176;110.0;140;90;1;1;0;0;1;1
+75732;21358;2;165;71.0;130;70;1;3;0;0;1;0
+75733;21736;1;161;66.0;140;80;1;1;0;0;1;0
+75735;20359;2;172;74.0;140;90;1;1;0;0;1;1
+75737;23149;1;160;79.0;120;80;1;1;0;0;1;1
+75738;18960;2;175;75.0;120;70;1;1;0;0;1;0
+75739;22523;1;165;58.0;120;80;3;3;0;0;1;0
+75742;20371;2;170;65.0;130;80;1;1;0;0;1;0
+75743;21366;1;161;68.0;120;80;1;1;0;0;1;0
+75744;16832;1;164;104.0;140;90;1;1;0;0;1;1
+75745;18057;1;165;63.0;90;70;1;1;0;0;0;0
+75746;20573;2;165;69.0;110;80;1;1;0;0;1;0
+75747;18880;1;171;65.0;120;80;1;1;0;0;1;1
+75748;20690;1;164;71.0;120;80;1;1;0;0;1;0
+75749;21971;2;185;85.0;160;100;1;1;0;0;0;1
+75750;20694;2;186;81.0;130;80;3;3;0;0;0;0
+75751;21366;1;165;65.0;120;80;1;1;0;0;1;0
+75752;20260;1;166;92.0;170;1000;3;1;0;0;1;1
+75753;18985;2;165;65.0;130;80;1;1;0;0;1;0
+75755;15281;1;152;51.0;100;70;1;1;0;0;1;0
+75757;21739;2;180;80.0;120;80;1;1;0;0;1;0
+75758;22656;1;160;60.0;130;80;1;2;0;0;1;0
+75759;22527;1;153;74.0;140;80;1;1;0;0;1;1
+75760;21814;2;168;65.0;120;80;2;1;1;0;1;1
+75762;20522;1;170;95.0;150;110;2;1;0;0;1;1
+75763;19502;1;160;75.0;110;80;3;1;0;0;1;1
+75764;20362;1;160;67.0;160;90;1;1;0;0;1;1
+75765;19096;1;174;65.0;120;80;1;1;0;0;1;1
+75767;20359;1;157;86.0;120;80;2;1;0;0;1;0
+75768;21006;1;168;97.0;150;80;1;1;0;0;1;1
+75770;20439;1;154;81.0;130;90;2;1;0;0;1;0
+75771;22663;1;165;60.0;120;80;1;1;0;0;1;0
+75772;15269;2;157;77.0;120;80;1;1;1;1;0;0
+75773;22388;1;140;56.0;160;90;2;1;0;0;1;1
+75774;23382;1;162;89.0;130;80;1;1;0;0;1;1
+75776;14854;1;161;74.0;120;80;1;1;0;0;1;1
+75777;22361;2;168;75.0;160;1000;3;3;1;0;1;1
+75778;20424;1;164;64.0;130;80;3;1;0;0;1;1
+75780;21138;2;168;74.0;120;80;1;1;0;0;1;1
+75781;22687;1;162;72.0;130;70;2;3;0;0;1;0
+75783;20444;1;160;70.0;120;80;1;1;0;0;1;0
+75786;20566;2;166;72.0;110;70;1;1;0;0;1;0
+75787;20780;1;168;100.0;140;70;1;1;0;0;1;1
+75789;19025;1;160;78.0;130;80;1;1;0;0;1;1
+75791;20369;1;165;64.0;120;80;1;1;0;0;1;1
+75792;16699;2;173;65.0;160;100;1;1;0;0;1;1
+75794;18073;1;155;55.0;100;70;1;1;0;0;1;0
+75795;18979;1;150;60.0;160;90;1;1;0;0;1;1
+75796;22504;1;169;60.0;130;70;1;2;0;0;1;1
+75797;16598;2;169;86.0;140;96;1;2;0;0;1;1
+75798;22733;1;153;63.0;130;80;2;1;1;0;1;1
+75799;22893;1;164;75.0;120;80;1;1;0;0;1;0
+75800;23316;1;166;70.0;110;80;1;1;0;0;1;1
+75801;16302;2;159;61.0;125;86;1;1;0;0;1;0
+75802;19135;2;171;68.0;120;80;1;1;0;0;1;0
+75803;18014;2;182;81.0;120;70;1;3;1;1;1;0
+75804;18872;1;172;76.0;110;80;1;1;0;0;1;0
+75805;14614;1;157;81.0;120;80;1;1;0;0;1;0
+75807;21654;2;168;69.0;170;90;2;1;0;0;1;1
+75810;22513;2;163;62.0;112;73;1;1;0;0;1;1
+75811;21931;2;173;80.0;160;80;1;1;1;0;1;1
+75812;15376;2;176;84.0;110;90;1;1;0;0;0;0
+75813;20991;1;158;67.0;140;80;1;1;1;0;1;1
+75814;20973;1;165;61.0;120;80;1;1;0;0;1;0
+75815;14493;1;168;83.0;110;80;1;1;0;0;1;1
+75816;22701;1;166;70.0;120;80;3;2;0;0;1;1
+75817;21005;2;178;74.0;120;80;1;1;1;1;1;0
+75818;15382;2;178;65.0;100;70;1;1;0;0;1;0
+75820;22682;1;172;86.0;150;100;1;1;0;0;1;1
+75821;21322;1;164;67.0;110;70;1;1;0;0;1;0
+75823;23363;1;158;90.0;140;90;3;3;0;0;1;1
+75824;21211;1;160;60.0;130;80;1;2;0;0;1;0
+75825;18288;2;173;85.0;140;100;2;1;1;0;1;1
+75826;16217;2;150;65.0;100;70;1;1;0;0;1;0
+75827;16030;1;164;66.0;110;70;1;1;0;0;1;0
+75828;19076;2;168;73.0;150;90;3;2;0;0;1;1
+75829;21058;2;165;75.0;120;80;2;1;0;0;1;1
+75831;22907;1;165;96.0;150;90;3;1;0;0;0;0
+75832;19530;1;160;48.0;100;60;2;1;0;0;1;0
+75833;15222;2;170;76.0;110;80;1;1;0;0;0;0
+75834;21225;2;164;76.0;140;90;1;1;0;0;0;1
+75837;18464;1;160;65.0;130;80;1;1;0;0;0;1
+75839;22555;2;158;61.0;160;90;3;1;0;0;1;1
+75840;22741;1;165;74.0;130;80;1;1;0;0;1;1
+75842;22425;2;160;80.0;160;1000;3;2;0;0;1;1
+75844;21305;1;153;61.0;110;80;1;1;0;0;1;0
+75845;16660;1;160;55.0;100;70;1;1;0;0;0;0
+75847;22643;1;160;88.0;140;90;3;3;0;0;0;1
+75849;22617;1;166;98.0;120;80;1;1;0;0;1;1
+75855;21054;1;152;87.0;120;70;3;1;0;0;1;1
+75856;23660;1;166;66.0;120;80;1;1;0;0;0;0
+75857;21144;1;156;80.0;160;90;1;3;1;0;0;1
+75858;16677;1;150;72.0;100;70;1;1;0;0;1;0
+75861;20251;1;159;66.0;130;90;3;3;0;0;1;1
+75862;19032;2;159;68.0;120;80;1;1;0;0;1;0
+75863;21207;1;156;76.0;150;100;3;1;0;0;1;0
+75864;20941;1;160;70.0;120;80;1;1;0;0;0;0
+75865;16828;1;164;58.0;110;70;2;2;0;0;1;0
+75866;18053;1;165;133.0;130;100;3;3;0;1;1;1
+75868;21215;2;160;81.0;130;80;1;1;0;0;1;0
+75870;15199;1;164;64.0;115;80;1;1;0;0;1;0
+75871;21163;1;165;69.0;120;80;1;1;0;0;1;1
+75875;21052;1;160;60.0;120;80;1;1;0;0;1;1
+75878;22610;2;180;86.0;120;80;3;1;0;0;1;1
+75880;14570;1;170;76.0;140;90;1;1;0;0;1;1
+75881;19811;2;171;70.0;120;80;1;1;0;0;1;0
+75882;19054;1;158;65.0;120;80;1;1;0;0;0;0
+75883;22886;1;153;95.0;130;70;2;2;0;0;0;0
+75884;19076;2;166;81.0;166;80;1;1;0;0;1;0
+75886;21366;1;165;65.0;120;80;1;1;0;0;0;1
+75887;21995;2;165;64.0;120;80;1;1;0;0;1;0
+75888;18080;1;166;82.0;120;80;1;1;0;0;1;1
+75891;18278;2;170;84.0;120;80;1;1;1;0;1;0
+75892;19131;2;168;70.0;130;80;3;1;1;0;1;1
+75893;16675;2;185;75.0;110;70;1;1;0;0;1;1
+75894;22944;2;165;65.0;120;80;1;1;0;0;0;0
+75897;18984;2;168;67.0;140;80;1;1;1;0;1;1
+75898;19035;1;161;63.0;120;80;1;1;0;0;1;1
+75900;18776;2;168;76.0;120;80;1;1;0;0;1;0
+75901;20356;2;180;67.0;160;90;1;1;1;0;1;1
+75902;18213;1;170;70.0;120;80;1;1;0;0;1;0
+75903;21818;2;170;70.0;120;80;1;1;0;0;1;0
+75904;20543;1;166;78.0;120;80;1;1;0;0;1;1
+75905;22495;1;162;74.0;120;70;1;1;0;0;0;0
+75907;15341;1;158;52.0;120;80;1;1;0;0;1;1
+75908;17497;1;167;110.0;130;80;3;3;0;0;1;1
+75909;18440;1;150;68.0;110;70;1;1;0;0;1;0
+75910;18972;1;170;99.0;140;1000;2;1;0;0;0;1
+75913;16708;2;185;80.0;110;69;2;1;1;0;1;1
+75915;22009;1;165;63.0;120;80;1;1;0;0;1;0
+75916;18957;2;164;80.0;140;90;1;1;1;0;1;1
+75917;21243;2;177;95.0;120;80;3;1;0;0;1;1
+75918;19756;1;147;83.0;120;80;1;1;0;1;1;1
+75920;19672;2;176;92.0;160;90;1;1;0;0;1;1
+75921;21170;1;167;72.0;120;80;1;1;0;0;1;0
+75923;21107;1;153;47.0;110;80;1;1;0;0;0;1
+75924;18988;1;159;78.0;130;90;1;1;0;0;1;1
+75926;20348;1;153;62.0;120;80;3;1;0;0;1;1
+75927;20396;1;133;36.0;100;60;1;1;0;0;0;0
+75929;21068;2;167;75.0;140;80;1;1;0;0;1;1
+75936;20272;1;162;73.0;180;90;3;3;0;0;1;1
+75937;20691;2;162;64.0;128;85;1;1;0;0;1;1
+75938;19079;1;155;70.0;140;90;1;1;0;0;1;1
+75940;22000;1;168;66.0;140;80;1;1;0;0;1;1
+75942;22627;1;174;65.0;120;80;1;1;0;0;1;1
+75944;18760;2;184;82.0;120;80;1;1;0;0;1;1
+75945;21823;1;170;103.0;120;80;2;2;0;0;1;0
+75946;18951;1;158;58.0;140;90;1;2;0;0;1;1
+75947;22060;1;165;70.0;130;90;3;3;0;0;1;1
+75948;21117;2;172;70.0;120;80;1;1;1;0;0;0
+75949;21663;1;165;72.0;110;80;1;1;0;1;1;0
+75950;22074;1;165;68.0;120;80;1;1;0;0;1;1
+75953;18785;1;168;96.0;130;80;1;1;0;0;1;1
+75954;15503;1;165;65.0;120;80;1;1;0;0;0;0
+75956;18945;1;158;66.0;110;70;1;1;0;0;1;0
+75957;15836;1;168;75.0;120;80;1;1;0;0;1;0
+75959;21822;1;153;68.0;140;90;1;1;0;0;1;1
+75962;16150;1;164;75.0;150;1000;1;1;0;0;1;1
+75964;15388;1;152;74.0;120;80;1;1;0;0;1;0
+75966;19092;1;165;69.0;125;90;1;1;0;0;1;1
+75968;15206;1;162;72.0;120;70;1;3;0;0;1;0
+75969;21258;1;160;56.0;90;60;1;1;0;0;1;0
+75971;19095;2;170;68.0;130;80;1;1;0;0;0;1
+75973;23200;2;182;100.0;120;80;2;1;0;0;1;1
+75974;22022;1;168;82.0;120;80;1;1;0;0;0;0
+75975;18897;1;162;59.0;150;100;1;1;0;0;1;1
+75976;20317;1;156;73.0;130;97;1;1;0;0;0;1
+75977;15532;2;175;78.0;120;80;1;1;0;0;1;0
+75978;14633;1;156;52.0;120;80;1;1;0;0;1;0
+75981;22585;2;170;90.0;140;80;1;2;0;0;0;0
+75982;22734;2;169;75.0;120;80;1;1;1;0;1;0
+75984;21709;2;175;90.0;120;80;1;1;0;0;1;1
+75986;16802;2;166;67.0;110;80;1;1;0;0;0;0
+75987;16911;2;176;78.0;110;70;1;3;0;0;1;0
+75988;22698;1;165;55.0;110;70;1;1;0;0;1;1
+75989;17403;2;178;93.0;120;80;1;1;1;1;1;1
+75990;20488;1;157;70.0;140;90;3;1;0;0;1;1
+75991;23385;1;164;70.0;120;80;1;1;0;0;1;1
+75995;21799;1;156;68.0;120;80;1;1;0;0;1;1
+75996;19733;2;173;65.0;120;80;1;1;0;0;1;1
+75997;22574;1;145;55.0;130;80;1;1;0;0;0;1
+75998;14535;2;167;63.0;120;70;1;1;0;0;1;0
+76002;18219;1;165;48.0;110;70;1;1;1;0;1;0
+76003;22497;1;160;64.0;160;90;1;1;0;0;1;1
+76004;21747;1;156;87.0;110;80;1;1;0;0;0;0
+76007;22605;1;164;64.0;120;80;1;1;0;0;1;0
+76008;20377;2;175;122.0;120;80;2;1;0;0;1;1
+76009;19833;2;167;79.0;120;80;1;1;0;0;1;0
+76011;22670;1;165;72.0;150;80;1;1;0;0;0;0
+76012;19681;2;182;78.0;120;80;1;1;0;0;1;0
+76013;20705;1;166;88.0;120;80;2;1;0;0;1;0
+76014;22718;1;162;66.0;140;80;2;1;0;0;1;1
+76015;19006;1;168;72.0;120;70;1;1;0;0;1;1
+76016;15823;2;172;100.0;120;80;1;1;0;0;1;0
+76017;22869;1;158;75.0;120;80;3;1;0;0;0;1
+76019;18095;1;165;74.0;120;80;1;1;0;0;0;0
+76020;18810;1;170;90.0;150;90;3;2;0;0;1;0
+76022;18004;1;167;70.0;120;80;1;1;0;0;1;0
+76023;20432;2;179;82.0;120;80;1;1;1;0;1;1
+76024;23592;1;171;100.0;120;80;1;1;0;0;1;0
+76025;20485;2;175;103.0;150;110;1;1;1;0;1;1
+76031;16693;1;165;60.0;120;80;1;1;0;0;1;1
+76032;22722;2;166;59.0;120;80;2;1;0;1;1;0
+76035;19077;1;157;56.0;160;80;1;1;0;0;1;1
+76036;16025;1;156;72.0;120;70;1;1;1;0;1;0
+76038;22052;1;168;71.0;120;80;1;1;0;0;1;0
+76039;18142;1;164;66.0;120;80;1;1;0;0;1;0
+76040;17423;1;166;77.0;120;80;1;3;0;0;1;0
+76041;23436;1;158;130.0;170;80;1;1;0;0;1;1
+76043;19677;1;170;68.0;120;80;1;1;0;0;1;0
+76044;22040;1;163;66.0;110;80;1;1;0;0;1;0
+76045;21754;2;170;65.0;120;80;1;1;0;0;1;0
+76047;14534;1;169;98.0;150;100;2;2;0;0;1;0
+76048;18279;1;159;79.0;120;80;2;1;0;1;1;0
+76049;20422;1;172;70.0;120;80;1;1;0;0;1;1
+76051;22628;2;170;72.0;140;90;1;1;0;0;1;1
+76052;22835;1;162;74.0;130;80;1;2;0;0;1;0
+76053;21782;2;175;107.0;160;95;1;1;0;0;1;1
+76055;15979;2;176;92.0;120;80;1;1;0;0;1;0
+76056;20639;2;172;79.0;120;90;1;1;0;1;1;0
+76058;22585;1;170;89.0;120;80;1;1;1;0;1;0
+76059;20917;2;170;88.0;150;90;3;1;0;0;1;1
+76061;14496;2;174;64.0;110;80;1;1;0;0;1;0
+76062;16561;2;180;105.0;120;80;1;1;1;1;1;0
+76064;22561;1;157;78.0;140;90;3;1;1;0;0;1
+76066;20225;1;157;76.0;130;80;1;1;0;0;1;0
+76067;21162;2;171;69.0;120;80;1;1;0;0;1;0
+76068;16127;1;165;70.0;120;70;1;1;0;0;1;0
+76071;18751;1;160;75.0;120;80;1;1;0;0;1;0
+76072;19764;2;165;66.0;120;80;1;1;0;0;1;0
+76077;14567;1;152;41.0;90;60;1;1;0;0;1;0
+76078;21087;1;165;70.0;120;80;1;1;0;0;0;0
+76080;18027;1;153;63.0;110;80;1;1;0;0;1;0
+76082;14629;2;170;75.0;120;70;2;1;1;0;1;0
+76083;18239;1;168;70.0;120;90;1;1;0;0;1;1
+76084;21139;1;158;65.0;120;80;1;1;0;0;1;0
+76085;17360;1;160;68.0;120;70;1;1;0;0;0;0
+76086;23401;2;180;100.0;120;80;1;1;0;0;1;1
+76087;19934;1;166;57.0;110;70;1;1;0;0;0;0
+76089;21886;1;154;56.0;150;90;1;1;0;0;0;1
+76090;23340;2;173;94.0;150;90;2;2;0;1;1;1
+76091;14555;2;162;58.0;120;80;1;1;0;0;1;1
+76094;22688;1;157;64.0;140;90;1;2;0;1;1;0
+76095;21815;2;170;89.0;170;100;1;1;0;0;1;1
+76098;23211;1;160;80.0;130;90;3;1;0;0;1;1
+76099;20468;1;163;78.0;130;90;1;1;0;0;1;0
+76100;19750;2;176;76.0;100;80;2;1;1;0;1;0
+76103;18368;1;150;50.0;140;90;3;1;0;0;1;0
+76105;20343;1;158;81.0;140;90;3;1;0;0;1;1
+76106;21207;1;158;56.0;110;70;1;1;0;0;1;1
+76107;23294;1;153;66.0;120;80;3;2;0;0;1;1
+76108;20398;1;168;76.0;110;70;1;1;0;0;1;0
+76109;22583;2;176;86.0;135;80;1;1;0;0;1;1
+76110;23368;2;175;75.0;120;80;1;2;0;0;0;1
+76111;23328;2;167;67.0;120;80;1;1;0;0;1;0
+76112;19749;1;155;59.0;140;90;1;1;0;0;1;1
+76114;21209;1;155;95.0;130;90;1;1;0;0;1;0
+76115;14707;1;170;74.0;120;80;3;3;0;0;1;1
+76116;20541;2;67;80.0;120;80;1;1;0;0;0;1
+76117;23196;1;151;73.0;160;80;1;1;0;0;0;1
+76118;20524;1;152;59.0;113;75;1;1;0;0;1;0
+76123;16219;2;176;76.0;130;90;1;1;0;0;1;1
+76124;19576;1;172;84.0;120;80;1;1;0;0;1;0
+76126;17556;1;169;75.0;140;100;1;1;0;0;1;1
+76129;21861;2;171;69.0;140;90;1;1;1;0;1;0
+76130;18471;1;165;55.0;110;70;1;1;0;0;1;0
+76132;21268;2;177;100.0;150;80;1;1;1;0;1;1
+76133;18253;1;151;58.0;130;90;1;1;0;0;1;1
+76134;22558;2;170;68.0;120;80;1;1;0;0;1;1
+76136;21055;2;183;105.0;110;80;3;3;1;0;1;1
+76137;21748;2;161;68.0;130;90;1;1;0;0;1;0
+76139;21727;1;165;63.0;130;80;1;1;0;0;1;0
+76140;16590;1;157;47.0;100;60;1;1;0;0;1;0
+76141;16137;1;153;86.0;110;70;1;1;0;0;1;0
+76142;21830;1;150;63.0;120;80;1;1;0;0;0;1
+76144;14590;2;174;73.0;150;100;2;1;1;0;0;0
+76145;20240;2;174;115.0;100;70;1;1;0;0;1;1
+76146;19643;2;168;70.0;120;90;1;1;1;0;1;1
+76147;16608;1;159;73.0;110;80;1;1;0;0;1;0
+76148;18296;1;169;75.0;107;70;1;1;0;0;0;1
+76149;20479;2;185;110.0;150;90;2;2;1;1;1;1
+76150;18262;1;160;70.0;120;80;2;1;0;0;0;0
+76151;21295;2;165;68.0;120;80;1;1;0;0;1;0
+76152;16155;2;167;69.0;120;80;1;1;0;0;0;0
+76153;22583;2;169;74.0;140;1000;2;3;0;0;1;1
+76154;21129;1;150;88.0;120;80;1;2;0;0;1;1
+76155;21850;2;178;129.0;130;90;1;1;0;0;0;0
+76156;19000;1;164;65.0;140;90;2;1;0;0;1;1
+76158;22540;1;153;73.0;120;80;1;1;0;0;0;0
+76160;21236;2;164;64.0;130;70;2;1;0;0;1;1
+76161;23438;2;174;86.0;140;90;1;2;1;1;0;0
+76162;15324;2;171;107.0;130;79;1;1;0;0;1;1
+76163;16677;2;162;80.0;110;70;1;3;0;0;0;0
+76166;19824;1;170;65.0;120;80;1;1;0;0;0;0
+76167;21902;1;158;103.0;140;90;3;2;0;0;1;1
+76168;21196;1;172;74.0;120;80;1;3;0;0;1;0
+76170;17583;1;158;60.0;120;70;1;1;0;0;0;0
+76172;14471;1;158;50.0;90;60;1;1;0;0;1;0
+76174;21021;1;152;64.0;120;80;2;1;0;1;1;0
+76175;20319;1;143;65.0;130;80;2;1;0;0;1;1
+76177;16013;2;163;82.0;150;80;1;1;0;0;1;0
+76178;19572;1;161;75.0;110;80;2;1;0;0;1;0
+76179;18739;1;165;70.0;130;80;1;1;0;0;1;0
+76180;21130;1;169;52.0;90;60;2;2;0;0;1;0
+76181;16054;2;168;87.0;110;80;1;1;0;0;1;0
+76182;17003;1;166;71.0;100;70;1;1;0;0;1;1
+76184;20438;1;168;65.0;120;80;1;1;0;0;1;0
+76186;18864;1;161;85.0;130;80;3;1;0;1;1;1
+76187;22392;1;154;60.0;110;70;1;1;0;0;1;1
+76188;20586;1;164;60.0;120;80;1;1;0;0;0;0
+76189;20296;1;165;69.0;110;70;1;1;0;0;1;0
+76190;14420;2;156;56.0;140;90;1;1;0;0;1;1
+76191;17642;2;174;72.0;120;70;1;1;0;0;1;1
+76195;15220;1;160;70.0;160;100;1;1;0;0;1;1
+76197;19726;1;165;65.0;120;80;1;1;0;0;1;0
+76198;16239;1;162;67.0;110;80;1;1;0;0;1;1
+76199;18283;1;155;70.0;110;70;1;3;0;0;1;0
+76201;21754;2;170;65.0;120;80;2;1;0;0;0;0
+76202;22124;1;170;70.0;120;80;1;1;0;0;1;0
+76203;20224;1;168;87.0;120;80;1;1;0;0;1;0
+76205;14360;1;165;106.0;140;100;1;2;0;0;0;1
+76207;18837;2;165;65.0;120;80;3;3;0;0;0;0
+76208;23165;1;157;64.0;130;90;2;1;0;0;1;1
+76210;21168;1;163;79.0;130;80;1;1;0;0;1;1
+76211;16524;1;156;60.0;100;60;2;1;0;0;1;0
+76213;17967;1;160;78.0;160;100;1;1;0;0;1;0
+76214;17986;1;169;62.0;120;80;1;1;0;0;1;0
+76215;23387;2;177;96.0;140;90;1;1;0;0;1;1
+76216;21885;2;160;61.0;150;90;1;1;0;0;0;1
+76218;16027;1;166;75.0;100;60;1;1;0;0;1;0
+76219;19825;2;168;60.0;130;80;1;1;1;1;1;1
+76220;21757;1;167;81.0;110;80;1;1;0;0;1;0
+76221;15372;2;175;85.0;120;80;1;1;1;0;0;0
+76222;19697;2;166;76.0;150;100;3;1;0;0;1;1
+76223;21143;1;168;90.0;120;80;1;1;0;0;0;0
+76224;19606;1;166;67.0;120;80;1;1;0;0;1;0
+76225;22609;1;154;55.0;130;90;2;2;0;0;1;0
+76226;18344;1;168;68.0;120;80;1;1;0;0;0;0
+76228;22014;1;165;68.0;160;90;3;1;0;0;1;1
+76232;22522;2;174;96.0;130;80;1;1;0;0;0;1
+76233;15986;1;160;57.0;120;80;1;1;0;0;1;0
+76234;19686;2;180;70.0;150;1000;1;1;1;1;1;1
+76235;23288;2;170;100.0;130;70;1;2;0;0;1;1
+76236;18159;1;158;92.0;100;80;1;1;0;0;1;0
+76238;22423;1;164;80.0;120;70;1;1;0;0;1;1
+76239;20395;1;156;89.0;120;80;1;1;0;0;1;0
+76240;21160;1;161;64.0;120;80;1;1;0;0;1;0
+76241;21952;2;188;87.0;120;80;1;1;1;0;1;0
+76242;21780;1;146;58.0;120;70;2;1;0;0;1;1
+76243;17644;2;179;89.0;130;90;1;1;0;0;0;1
+76244;20403;2;162;75.0;140;70;2;1;0;1;1;1
+76245;23436;1;158;52.0;140;80;2;3;0;0;1;1
+76246;23420;1;165;55.0;120;80;1;1;0;0;1;0
+76247;14310;1;156;56.0;120;60;1;1;0;0;1;0
+76249;21887;2;185;91.0;150;90;3;1;0;0;1;1
+76250;21021;1;163;95.0;160;100;3;1;0;0;1;1
+76251;18214;2;168;74.0;130;90;1;1;0;0;1;0
+76252;14340;2;161;80.0;110;80;1;1;0;0;1;0
+76253;19016;1;157;76.0;110;70;1;1;0;0;1;0
+76254;15213;2;164;58.0;120;80;1;1;1;0;0;0
+76255;19595;1;170;80.0;120;80;1;1;0;0;1;0
+76257;19527;2;170;82.0;130;80;1;1;0;0;0;1
+76258;19616;2;177;100.0;140;80;3;1;1;0;0;1
+76259;17320;2;169;70.0;110;70;3;1;0;0;1;0
+76260;18953;1;175;69.0;130;80;1;1;0;0;1;1
+76263;22683;1;153;57.0;120;80;1;1;0;0;1;1
+76264;19543;1;150;77.0;140;90;1;1;0;0;1;1
+76265;18350;1;152;61.0;114;69;1;1;0;0;1;0
+76266;20506;1;159;78.0;140;90;1;1;0;0;1;0
+76267;14551;1;167;93.0;120;80;1;1;0;0;1;1
+76270;21991;2;165;91.0;120;80;1;1;0;0;0;0
+76272;20415;1;160;83.0;120;80;1;1;0;0;1;0
+76273;23199;2;164;79.0;160;100;2;1;0;0;1;0
+76274;23408;1;157;72.0;150;90;1;1;0;0;1;1
+76275;19442;1;162;52.0;120;80;1;1;0;0;1;0
+76277;19042;2;165;55.0;120;80;1;1;0;0;1;0
+76279;14663;2;175;71.0;120;80;2;1;0;0;1;0
+76280;20565;2;180;80.0;120;80;1;1;0;0;1;1
+76281;17531;1;165;58.0;110;70;1;1;0;0;1;0
+76285;21133;1;155;67.0;160;100;3;3;0;0;0;0
+76290;23550;1;159;63.0;120;80;1;1;0;0;1;0
+76291;22384;1;165;64.0;120;90;1;2;0;0;1;1
+76292;20314;1;158;65.0;150;90;1;1;0;0;1;0
+76293;22453;2;168;72.0;120;60;1;1;0;0;1;0
+76294;14476;2;170;74.0;110;60;1;1;0;0;1;0
+76295;19765;1;174;70.0;130;70;2;1;0;0;1;1
+76297;15350;1;150;55.0;110;70;1;1;0;0;1;0
+76300;23218;2;169;88.0;150;90;2;1;0;0;1;1
+76301;21371;2;167;68.0;140;1000;2;1;0;0;1;1
+76304;17528;1;168;60.0;120;80;1;1;0;0;1;0
+76305;16302;2;168;92.0;150;80;1;1;1;0;1;1
+76306;19131;1;158;84.0;150;90;1;1;0;0;1;1
+76307;23095;1;161;86.0;140;80;2;1;0;0;1;1
+76308;18407;1;162;62.0;110;70;1;1;0;0;1;0
+76309;18480;1;159;54.0;120;80;1;1;0;0;1;0
+76310;22493;1;164;65.0;120;80;3;3;0;0;0;1
+76311;20946;1;156;115.0;160;100;2;1;0;0;1;1
+76313;17377;1;168;61.0;120;80;1;1;0;0;0;0
+76315;18091;2;170;110.0;120;80;1;1;0;0;0;1
+76316;23308;1;158;85.0;170;1000;1;1;0;0;1;1
+76319;20927;1;168;78.0;120;80;1;1;1;1;1;0
+76320;22626;1;167;89.0;150;100;1;1;0;0;0;1
+76321;22557;1;178;80.0;120;80;1;1;0;0;1;1
+76322;16762;2;169;68.0;120;80;1;1;0;0;1;0
+76323;14479;2;172;92.0;120;70;1;1;0;0;1;0
+76324;22665;1;156;59.0;110;70;1;1;0;0;1;0
+76325;23348;1;162;60.0;130;90;1;3;0;0;1;1
+76326;21134;1;158;71.0;140;90;3;1;0;0;1;1
+76327;18112;1;165;66.0;120;60;1;1;0;0;1;0
+76328;20297;1;149;101.0;150;100;3;1;0;0;1;0
+76330;15439;2;178;86.0;130;70;1;3;0;1;0;0
+76331;23178;2;171;82.0;130;90;1;1;0;0;1;1
+76332;21330;2;160;72.0;120;80;1;1;0;0;1;0
+76334;18301;1;169;72.0;110;80;1;1;0;0;0;0
+76337;17287;1;166;78.0;120;80;1;1;0;0;1;0
+76340;15915;1;155;58.0;140;90;2;1;0;0;1;1
+76341;19860;2;174;89.0;120;80;2;1;1;0;0;1
+76343;19005;1;156;72.0;110;70;1;1;0;0;0;0
+76345;18285;1;165;103.0;120;80;1;1;0;0;0;1
+76346;19900;1;168;68.0;120;80;1;1;0;0;1;0
+76347;16568;1;158;60.0;140;80;1;1;0;0;1;1
+76348;21351;1;163;98.0;130;90;1;1;0;0;1;1
+76349;20359;1;165;78.0;130;90;2;1;0;0;1;0
+76350;18997;1;156;96.0;150;90;1;1;0;0;1;1
+76351;17668;2;167;65.0;120;80;1;1;0;0;1;0
+76352;20714;1;158;82.0;140;90;3;3;0;0;1;1
+76353;18192;2;168;84.0;130;90;2;1;0;0;0;1
+76354;17385;2;182;90.0;110;80;1;1;0;0;0;1
+76355;18184;1;157;56.0;140;80;1;1;0;0;1;1
+76356;19117;2;169;77.0;150;100;1;1;0;0;1;1
+76357;23193;2;152;80.0;90;60;2;1;0;0;1;0
+76358;22904;1;160;75.0;120;80;2;1;0;0;1;1
+76359;22601;1;174;69.0;120;60;1;1;0;0;1;1
+76360;16630;1;162;69.0;130;90;1;1;0;0;1;1
+76361;22561;2;170;70.0;110;70;1;1;1;0;1;1
+76363;14658;1;172;135.0;160;90;2;1;0;0;1;1
+76364;18410;1;162;70.0;110;70;1;1;0;0;1;0
+76365;22473;2;160;65.0;150;90;1;1;0;0;0;1
+76366;18060;1;151;85.0;130;80;1;1;0;0;1;0
+76367;21943;2;172;126.0;160;87;3;3;0;1;1;0
+76368;21268;1;162;64.0;120;80;1;1;0;0;0;0
+76370;17593;1;165;62.0;120;80;1;1;0;0;1;0
+76375;16661;2;180;91.0;140;90;3;3;0;0;1;1
+76377;21158;1;160;59.0;110;80;1;1;0;0;1;1
+76378;14577;2;178;80.0;120;80;1;1;1;0;1;0
+76379;16537;2;165;100.0;120;80;3;3;0;0;1;1
+76380;21100;1;166;92.0;130;80;1;1;0;0;1;1
+76381;23262;1;156;69.0;160;90;3;2;0;0;1;1
+76382;17603;1;159;70.0;120;70;1;1;0;0;0;0
+76383;21980;2;170;68.0;120;70;1;1;0;0;1;0
+76385;19680;2;180;79.0;140;90;1;1;0;0;0;1
+76386;21850;1;164;68.0;130;70;3;3;0;0;0;0
+76387;17615;1;168;75.0;140;80;1;1;0;0;1;1
+76389;20704;2;165;69.0;130;60;1;1;1;1;1;0
+76390;18816;2;182;97.0;110;80;1;1;0;0;1;1
+76392;23122;1;155;96.0;180;90;1;1;1;0;0;1
+76396;23234;1;150;54.0;120;80;1;3;0;0;1;0
+76397;19640;1;160;85.0;150;100;1;1;0;0;1;1
+76398;14480;1;159;63.0;120;80;1;1;0;0;1;0
+76400;21892;1;165;68.0;120;80;1;1;0;0;0;1
+76401;21815;1;171;86.0;130;70;3;3;0;0;1;1
+76402;14695;1;165;104.0;120;80;1;1;0;0;1;1
+76403;16760;2;170;78.0;130;80;1;1;1;1;1;0
+76404;19580;1;151;90.0;140;89;3;1;1;1;1;1
+76406;21975;1;155;76.0;120;80;1;1;0;0;1;0
+76407;20483;1;162;63.0;120;80;1;1;0;0;1;0
+76408;14637;1;173;53.0;130;70;1;2;0;0;0;0
+76409;23310;1;169;79.0;120;80;1;3;0;0;1;0
+76410;23194;1;153;69.0;120;70;3;1;0;0;1;1
+76411;14600;1;165;55.0;110;70;1;1;0;0;1;0
+76412;21295;1;164;83.0;120;80;1;1;0;0;1;0
+76413;22518;2;168;73.0;170;100;2;1;0;0;1;1
+76414;18756;1;167;79.0;130;100;3;3;0;0;1;1
+76415;17580;2;179;72.0;120;80;1;1;0;0;1;1
+76417;18067;1;170;65.0;120;80;1;1;0;0;1;1
+76418;20726;1;163;65.0;120;80;1;1;0;0;1;1
+76419;23436;1;165;89.0;130;90;3;1;0;0;1;1
+76420;20348;1;163;99.0;130;90;1;1;0;0;1;0
+76422;19629;1;161;54.0;110;70;1;1;0;0;0;0
+76423;23419;1;156;58.0;120;80;1;1;0;0;1;1
+76424;17075;1;169;71.0;120;80;1;1;0;0;1;1
+76425;15253;2;176;75.0;120;80;1;1;1;0;1;0
+76426;21242;2;163;61.0;110;60;2;1;0;0;1;0
+76427;20372;1;168;60.0;130;80;1;1;0;0;1;1
+76429;19473;1;165;90.0;130;90;3;1;0;0;0;1
+76430;23561;2;154;50.0;120;80;1;1;0;0;1;0
+76432;18108;1;167;67.0;110;70;1;1;0;0;1;0
+76433;20598;1;170;60.0;120;80;1;1;0;0;1;1
+76434;15381;1;165;65.0;100;70;1;1;0;1;1;0
+76438;23497;1;160;65.0;110;70;1;1;0;0;1;1
+76439;18340;1;159;65.0;120;80;1;1;0;0;1;0
+76440;17521;1;160;108.0;160;1000;1;1;0;0;1;1
+76441;21939;2;172;115.0;120;80;1;1;0;0;1;0
+76442;19615;2;179;62.0;120;80;1;1;0;0;1;1
+76443;21096;1;160;75.0;130;80;3;1;0;0;1;1
+76444;22065;1;160;58.0;120;80;1;1;0;0;1;0
+76445;18288;1;163;63.0;150;100;3;1;0;0;1;0
+76446;22402;1;162;67.0;140;90;1;2;0;0;1;1
+76447;21916;2;173;77.0;130;80;3;1;0;1;0;1
+76448;21156;1;168;97.0;150;100;1;1;0;0;1;1
+76450;20744;1;165;74.0;120;80;1;1;0;0;1;0
+76451;21860;1;168;75.0;140;90;1;1;0;0;1;1
+76452;17562;2;176;75.0;90;60;1;2;0;0;1;0
+76453;20457;1;162;79.0;120;80;1;1;0;0;1;0
+76454;18241;1;164;72.0;120;80;2;2;0;0;1;1
+76455;19063;2;170;80.0;140;80;1;2;0;0;1;0
+76459;22646;1;162;90.0;120;80;1;3;0;0;0;1
+76460;16030;2;172;84.0;120;80;1;1;1;1;0;0
+76461;20394;1;162;68.0;120;80;1;1;1;0;1;0
+76463;18135;1;161;55.0;110;70;1;1;0;0;1;0
+76464;18041;1;160;90.0;140;90;1;1;0;0;1;0
+76465;21718;2;173;46.0;80;60;1;1;0;0;0;0
+76466;19472;1;163;64.0;120;80;1;1;1;0;1;0
+76467;22666;2;160;77.0;130;90;1;1;0;0;1;1
+76468;19599;1;164;77.0;130;80;1;1;0;0;1;1
+76469;21867;2;174;70.0;120;80;1;1;0;0;1;1
+76470;16677;1;174;71.0;120;80;2;1;0;0;1;0
+76472;21891;1;176;67.0;110;70;1;1;0;0;0;0
+76473;23209;2;170;75.0;110;70;2;1;0;0;1;0
+76475;20315;1;160;75.0;120;80;1;1;0;0;1;0
+76476;19108;2;168;65.0;130;90;1;1;0;0;1;1
+76477;20319;1;165;59.0;120;80;1;1;0;0;0;0
+76478;19493;1;175;93.0;130;90;3;3;0;1;1;1
+76480;16724;1;152;78.0;145;80;1;1;0;1;1;1
+76481;19922;1;163;69.0;140;90;1;1;0;0;1;1
+76483;14625;1;159;84.0;100;70;1;1;0;0;1;0
+76485;20393;1;169;63.0;120;80;2;1;0;0;0;1
+76486;19758;2;170;82.0;130;90;3;1;1;0;1;0
+76487;21991;1;170;88.0;160;1000;1;1;0;0;1;1
+76489;16641;1;156;89.0;120;80;1;1;0;0;0;0
+76490;18198;2;172;84.0;120;80;1;3;0;0;1;0
+76492;21996;2;180;108.0;120;80;3;1;0;0;1;1
+76494;19789;2;166;70.0;160;90;1;1;1;1;0;1
+76496;22633;1;159;63.82;160;80;2;1;0;0;1;1
+76497;21218;1;158;62.0;120;80;1;1;0;0;1;0
+76498;16115;1;155;85.0;140;80;1;1;0;0;1;0
+76500;19834;1;158;66.0;120;80;1;1;0;0;0;0
+76501;18821;1;160;80.0;140;80;3;3;0;0;1;1
+76502;21909;1;164;76.0;130;90;2;1;0;0;1;1
+76503;18883;2;168;80.0;140;90;1;1;0;0;1;0
+76505;16536;2;166;80.0;110;70;3;1;0;0;1;0
+76506;15464;2;166;68.0;120;80;1;1;0;0;1;0
+76507;22041;2;168;83.0;160;90;1;1;0;0;1;1
+76508;21860;1;165;69.0;120;80;1;1;0;0;1;1
+76509;22539;2;172;68.0;120;80;1;1;0;0;1;0
+76510;21933;2;174;75.0;120;80;1;1;0;0;1;1
+76511;21255;1;151;97.0;140;90;1;1;0;0;0;1
+76512;20217;1;180;80.0;120;60;1;1;0;0;1;0
+76514;22815;1;158;53.0;100;80;1;1;0;0;0;1
+76516;18368;1;167;65.0;120;80;1;1;0;0;1;1
+76517;23629;1;152;78.0;140;90;1;1;0;0;1;1
+76518;22489;2;165;75.0;120;80;1;1;0;0;1;1
+76519;18743;1;155;55.0;110;70;1;1;0;0;1;1
+76520;18325;2;172;65.0;130;90;1;1;0;0;1;1
+76523;19580;1;148;56.0;100;80;2;1;0;0;1;0
+76524;18439;1;167;86.0;120;80;1;1;0;0;1;0
+76528;17597;1;160;59.0;110;70;1;1;0;0;1;0
+76531;19050;1;157;57.0;110;70;1;1;0;0;1;0
+76532;17491;1;156;60.0;140;90;3;1;0;0;1;0
+76533;21308;1;163;62.0;120;80;1;1;0;0;1;0
+76534;23535;2;175;105.0;150;90;1;1;0;0;0;1
+76535;18793;1;153;66.0;120;80;1;1;0;0;1;1
+76536;22458;1;156;87.0;160;90;3;3;0;0;1;1
+76537;17599;2;173;96.0;140;80;1;1;0;0;0;1
+76538;18287;2;156;56.0;120;80;1;1;0;0;0;0
+76542;18283;1;169;71.0;120;80;1;1;0;0;1;0
+76543;15069;1;157;72.0;120;80;1;1;0;0;0;0
+76544;21925;2;156;68.0;120;70;1;1;1;0;1;0
+76545;19928;2;178;80.0;130;80;1;1;1;1;1;0
+76548;22513;1;164;78.0;110;70;1;1;0;0;1;1
+76549;23353;1;157;84.0;160;100;3;1;0;0;1;0
+76550;14695;1;168;63.0;130;80;1;1;0;0;1;1
+76551;18068;2;176;81.0;140;80;1;1;0;0;0;1
+76552;23230;2;170;71.0;175;109;1;1;1;1;1;1
+76553;22396;1;165;73.0;120;80;1;1;0;0;0;1
+76556;19161;1;160;62.0;120;80;1;1;0;0;1;1
+76559;19589;1;160;75.0;110;70;1;1;0;0;1;1
+76561;22622;2;169;79.0;120;70;1;1;0;0;1;0
+76562;19751;2;172;120.0;160;120;3;2;0;0;1;1
+76563;21289;1;156;69.0;160;90;1;1;0;0;0;1
+76564;16023;1;174;65.0;120;80;1;1;0;0;1;0
+76565;19454;2;174;87.0;120;90;1;1;0;0;1;1
+76566;21915;1;155;106.0;140;90;1;1;0;0;1;1
+76568;16742;1;170;68.0;110;70;1;1;0;0;1;0
+76569;21857;1;158;62.0;110;70;3;1;0;0;1;1
+76572;19710;2;155;54.0;110;70;1;1;0;0;1;0
+76575;14553;1;161;59.0;90;60;1;1;0;0;1;0
+76576;21972;2;176;100.0;140;90;3;1;0;0;1;1
+76577;22585;1;157;75.0;170;100;3;2;0;0;0;1
+76578;19689;2;171;84.0;110;60;1;1;0;0;1;0
+76580;22437;1;162;71.0;120;70;3;1;0;0;1;1
+76582;18991;2;156;66.0;130;80;3;3;0;0;1;1
+76583;18992;1;152;60.0;120;80;1;1;0;0;1;0
+76584;21954;1;158;50.0;130;90;2;1;0;0;0;0
+76585;22563;1;154;63.0;120;80;3;1;0;0;1;1
+76586;17500;2;172;91.0;120;80;1;1;0;0;1;0
+76587;21688;1;155;51.0;140;90;1;1;0;0;0;1
+76590;21934;1;156;56.0;120;80;1;1;0;0;1;1
+76591;15076;1;147;71.0;110;80;1;1;0;0;0;0
+76592;18832;1;154;85.0;150;90;1;1;0;0;1;1
+76594;16030;1;158;60.0;160;90;2;1;0;0;0;1
+76595;14584;1;165;65.0;120;80;1;1;0;0;1;0
+76597;18217;2;175;95.0;140;90;3;3;0;0;0;1
+76598;23424;2;162;75.0;170;100;1;1;0;0;1;1
+76600;23430;1;148;74.0;150;90;3;3;0;0;1;1
+76602;23209;1;162;91.0;130;80;2;1;0;0;0;1
+76603;21267;1;161;62.0;120;80;2;2;0;0;1;0
+76604;19143;1;160;69.0;140;90;1;1;0;0;1;1
+76605;23419;2;172;66.0;110;70;1;1;0;0;1;0
+76607;20364;1;158;74.0;160;90;2;2;0;0;1;1
+76608;16042;1;165;67.0;120;80;1;1;0;0;1;0
+76609;14559;1;165;65.0;120;80;1;1;0;0;1;0
+76610;18321;2;165;80.0;100;80;1;1;1;0;1;0
+76613;18878;2;166;79.0;130;90;1;1;1;1;1;0
+76614;14370;1;152;72.0;110;70;1;1;0;0;1;0
+76615;23079;1;153;52.0;150;90;1;1;0;0;1;1
+76616;18460;1;158;51.0;115;70;1;1;0;0;0;0
+76617;20646;1;167;68.0;110;60;1;1;0;0;1;1
+76618;22605;2;167;82.0;120;80;1;1;0;0;1;1
+76619;20463;1;172;82.0;110;70;1;1;0;0;1;0
+76620;22516;1;165;65.0;120;80;1;1;0;0;1;0
+76621;21992;1;165;65.0;120;79;2;1;0;0;0;1
+76624;16008;2;165;65.0;150;90;3;1;0;0;1;1
+76625;21080;2;176;95.0;120;80;1;1;0;0;1;1
+76628;22032;1;155;65.0;120;80;1;1;0;0;1;1
+76629;23182;1;158;64.0;130;70;1;1;0;0;1;1
+76630;17363;1;168;60.0;110;70;1;1;0;0;1;0
+76631;16828;2;165;68.0;120;80;1;1;0;0;1;0
+76632;21090;1;156;72.0;140;90;3;2;0;0;1;1
+76633;17772;2;175;85.0;120;80;1;1;1;0;1;0
+76635;20951;1;158;71.0;130;90;1;1;0;0;1;0
+76636;19668;1;158;80.0;110;70;1;1;0;0;1;0
+76637;17593;1;160;84.0;100;70;2;1;0;0;1;0
+76639;19757;1;165;76.0;170;90;3;1;0;0;1;1
+76640;21790;1;161;90.0;130;70;3;1;0;0;0;1
+76642;16161;1;170;66.0;120;80;2;2;0;0;0;0
+76643;22920;2;180;80.0;130;80;1;1;0;0;0;1
+76644;20937;1;158;68.0;130;80;2;1;0;0;1;1
+76645;22637;2;156;51.0;100;60;2;1;0;0;1;1
+76646;19559;1;167;118.0;150;90;1;1;0;0;1;1
+76649;19706;1;168;61.0;140;80;1;1;0;0;1;1
+76651;15153;1;152;44.0;110;90;1;1;0;0;1;0
+76652;16233;2;169;70.0;110;80;1;1;0;0;1;0
+76654;15248;2;162;70.0;120;80;1;1;0;0;1;0
+76655;21174;2;170;85.0;120;80;3;1;0;0;1;1
+76656;23352;2;156;58.0;130;80;3;2;0;0;1;1
+76658;21974;2;170;81.0;130;80;1;1;0;0;1;0
+76659;21848;2;169;62.0;120;80;1;1;0;0;1;0
+76660;23298;1;168;68.0;150;100;1;1;0;0;0;1
+76662;21005;1;156;82.0;140;80;1;1;0;0;1;1
+76664;21237;1;170;82.0;120;80;1;1;0;0;0;1
+76665;16524;2;179;82.0;120;80;1;1;0;0;1;1
+76667;19736;1;155;86.0;130;80;2;1;0;0;1;0
+76668;15035;1;168;70.0;120;70;1;1;0;0;1;0
+76669;20415;2;154;53.0;110;70;1;1;0;0;0;0
+76670;19616;2;178;91.0;150;90;2;2;0;0;1;1
+76674;18228;1;169;62.0;120;80;1;1;0;0;1;0
+76676;18254;2;172;110.0;130;80;1;1;1;0;1;0
+76677;21092;1;155;84.0;135;90;2;1;0;0;1;0
+76678;18374;2;183;74.0;140;90;1;1;0;0;1;1
+76680;18467;2;168;72.0;150;100;3;3;0;0;1;0
+76681;20578;1;156;53.0;130;90;1;1;0;0;1;1
+76684;16871;2;174;82.0;120;80;1;1;0;0;1;0
+76685;22666;1;167;74.0;120;80;1;1;0;0;1;1
+76686;14757;1;169;62.0;110;70;2;1;0;0;1;0
+76687;22766;2;174;76.0;140;60;2;1;1;0;0;0
+76688;22354;2;171;78.0;140;90;1;1;0;0;0;1
+76689;21964;1;173;85.0;140;90;2;2;0;0;1;1
+76691;16629;2;173;88.0;170;110;1;1;0;1;0;1
+76692;18935;1;156;84.0;130;80;1;1;0;0;1;0
+76693;18209;1;168;65.0;140;80;1;1;0;0;1;1
+76695;21814;2;177;65.0;150;90;1;1;0;0;1;1
+76696;19490;1;147;89.0;140;100;1;1;0;0;1;1
+76697;21116;1;165;73.0;140;90;2;3;0;0;1;1
+76698;15053;2;175;67.0;120;80;1;1;0;0;1;0
+76699;19830;2;165;75.0;120;90;1;1;0;0;1;0
+76700;21001;1;145;61.0;145;95;3;3;0;1;1;1
+76702;15903;1;167;67.0;130;90;3;1;0;0;1;0
+76703;22332;1;160;84.0;120;80;1;1;0;0;0;1
+76704;17786;1;167;65.0;120;80;1;1;0;0;1;1
+76705;21272;1;162;65.0;120;80;1;1;0;0;1;0
+76706;23476;1;164;75.0;120;70;1;1;0;0;0;1
+76707;19718;1;160;110.0;200;100;1;1;0;0;0;1
+76708;23155;2;172;67.0;120;80;1;1;0;0;1;1
+76709;21722;1;155;83.0;160;90;3;1;0;0;0;1
+76711;19820;2;169;97.0;130;80;1;1;0;0;1;1
+76712;19960;1;150;55.0;120;80;1;1;0;0;0;0
+76713;14697;2;172;71.0;120;80;1;1;0;0;1;0
+76714;19556;1;166;85.0;120;80;3;3;0;0;1;1
+76716;21689;1;168;80.0;150;80;1;1;0;0;1;1
+76718;19790;1;163;67.0;100;70;1;1;0;0;0;1
+76719;16100;2;173;76.0;110;70;1;1;1;0;0;0
+76723;19532;1;150;50.0;110;70;1;1;0;0;1;1
+76725;21224;2;158;57.0;100;70;1;1;1;0;1;0
+76727;14854;1;155;51.0;90;60;1;1;0;0;1;0
+76728;22165;1;163;61.0;120;80;1;1;0;0;1;1
+76730;23103;1;160;82.0;140;100;3;1;0;0;1;1
+76732;21922;1;159;63.0;110;80;1;1;0;0;1;0
+76733;16123;1;166;62.0;130;80;1;1;0;0;1;0
+76734;20551;1;169;72.0;140;90;1;1;0;0;1;1
+76736;21777;1;150;79.0;140;80;1;1;0;0;1;1
+76737;17603;1;162;79.0;150;90;1;1;0;0;1;1
+76738;16815;2;170;51.0;90;70;1;1;0;0;1;0
+76739;20402;2;170;75.0;120;80;1;1;0;0;1;0
+76740;19655;1;168;63.0;120;80;1;1;0;0;1;0
+76742;14482;1;163;93.0;100;70;1;1;0;0;1;0
+76743;23428;2;168;74.0;140;90;2;1;0;1;1;0
+76744;19770;1;164;119.0;150;77;2;2;0;1;1;0
+76745;23094;1;162;75.0;120;80;2;3;0;0;1;1
+76746;16099;2;174;76.0;120;80;1;1;0;0;1;0
+76747;22683;2;181;80.0;120;80;3;1;1;1;1;0
+76748;23628;2;160;60.0;120;80;1;1;0;0;1;1
+76749;21808;1;156;75.0;120;80;1;1;0;0;1;0
+76750;22526;1;156;78.0;120;80;2;2;0;0;1;1
+76752;20526;1;168;78.0;120;80;1;2;0;0;1;1
+76756;21063;1;156;128.0;130;90;1;1;0;0;0;1
+76757;17614;2;179;65.0;120;80;1;1;0;0;1;0
+76758;22133;1;170;75.0;120;80;1;3;0;0;1;0
+76759;20307;1;158;65.0;120;90;1;1;0;0;1;0
+76760;21400;2;170;69.0;140;90;1;3;0;0;1;1
+76761;14287;2;165;85.0;140;80;1;1;0;0;1;1
+76762;21857;2;178;72.0;120;80;1;1;0;0;1;0
+76763;21083;1;161;50.0;100;80;1;1;0;0;0;0
+76764;18015;2;150;52.0;120;80;1;1;0;0;1;0
+76765;17595;1;157;68.0;150;90;1;1;0;0;1;1
+76766;20363;1;165;88.5;130;90;1;1;0;0;1;1
+76767;16542;1;153;58.0;120;80;1;1;0;0;1;0
+76770;15222;1;164;73.0;120;90;1;2;0;0;1;1
+76773;16026;1;160;64.0;110;70;1;1;0;0;1;0
+76774;22482;2;164;70.0;130;80;3;1;0;0;1;1
+76775;19655;2;173;75.0;130;90;1;1;1;1;1;0
+76776;18724;1;162;64.0;100;80;2;2;0;0;1;0
+76777;22476;2;163;80.0;120;80;1;1;1;0;1;1
+76778;18403;1;162;83.0;110;80;2;1;0;0;1;0
+76780;16568;1;163;78.0;120;80;1;1;0;0;1;1
+76781;14516;2;176;62.0;110;80;1;1;0;0;1;0
+76783;22631;2;164;93.0;135;80;2;1;0;0;0;1
+76785;22038;1;162;80.0;110;80;1;1;0;0;1;0
+76786;19585;1;158;60.0;110;70;1;1;0;0;1;0
+76787;22161;1;180;73.0;150;90;1;1;0;0;1;0
+76788;16632;1;158;60.0;123;80;1;1;0;0;1;0
+76789;16065;2;168;78.0;140;90;1;1;0;0;1;0
+76793;18811;2;175;73.0;120;80;1;1;0;0;1;1
+76794;23420;2;178;113.0;160;100;1;2;0;0;1;1
+76796;19619;1;170;76.0;110;70;1;1;0;0;0;0
+76798;18118;2;177;106.0;130;80;1;1;0;0;1;1
+76799;22505;2;174;74.0;120;80;3;3;0;0;1;1
+76800;22601;2;170;69.0;110;70;1;3;0;0;1;1
+76802;15209;1;151;54.0;110;70;1;1;0;0;0;0
+76803;18110;1;168;116.0;130;80;1;1;0;0;1;0
+76806;21190;1;154;57.0;130;80;3;1;0;0;1;1
+76807;18144;2;154;69.0;120;80;1;1;0;0;1;1
+76808;23390;2;168;71.0;160;90;1;1;0;0;1;1
+76810;16854;1;165;95.0;140;90;3;1;0;0;0;1
+76811;19755;1;165;72.0;140;80;2;1;0;0;1;1
+76812;21077;1;160;86.0;145;90;1;1;0;0;0;1
+76814;14715;1;168;71.0;120;80;1;1;0;0;1;0
+76815;21929;1;163;68.0;130;80;3;1;0;0;1;1
+76816;20386;1;165;70.0;135;90;3;3;0;0;1;1
+76817;23392;1;163;87.0;120;80;1;1;0;1;1;0
+76818;20232;1;161;88.0;110;70;3;3;1;0;1;1
+76819;19515;1;160;69.0;120;80;2;1;0;0;1;1
+76820;14470;1;160;58.0;110;80;3;3;0;0;1;0
+76822;21839;1;168;68.0;120;80;1;1;0;0;1;0
+76823;21862;2;170;81.0;130;80;1;1;0;0;1;1
+76824;22699;1;158;56.0;140;90;2;1;0;0;1;1
+76825;23365;1;179;86.0;140;90;1;1;0;0;1;1
+76826;19776;1;168;112.0;130;90;3;1;0;0;1;1
+76827;22496;1;157;78.0;120;80;1;1;0;0;1;1
+76828;15070;1;162;59.0;110;70;1;1;0;0;1;1
+76829;19794;1;169;72.0;110;70;1;1;0;0;1;0
+76830;19237;2;156;59.0;120;80;1;1;0;0;1;0
+76831;21333;1;165;77.0;120;80;1;1;0;0;1;0
+76833;18391;1;164;82.0;120;70;1;1;0;0;0;0
+76835;21114;1;167;62.0;140;80;3;1;0;1;1;1
+76836;15872;1;168;65.0;120;90;1;1;0;0;0;0
+76837;22465;2;178;80.0;140;90;1;1;0;0;1;1
+76838;20386;1;151;64.0;125;65;1;1;0;0;1;0
+76839;19609;1;170;68.0;120;80;1;1;0;0;1;0
+76841;22094;2;166;73.0;120;80;1;1;0;0;1;0
+76843;21384;1;174;74.0;120;80;1;1;0;0;1;0
+76844;23146;2;165;68.0;170;100;1;1;0;0;1;1
+76845;19419;2;173;70.0;130;80;1;1;0;0;1;0
+76848;23415;1;148;83.0;120;80;1;1;0;0;1;0
+76849;20312;2;170;78.0;150;100;1;1;0;0;1;1
+76850;19657;2;178;91.0;120;80;1;1;1;0;1;0
+76851;18163;1;160;89.9;120;80;1;1;0;0;1;0
+76852;18810;1;159;60.0;110;80;1;1;0;0;1;0
+76853;22502;1;164;86.0;130;90;1;1;0;0;1;1
+76854;21134;2;170;87.0;150;90;2;2;1;1;1;1
+76855;22710;2;178;70.0;110;80;2;1;0;0;1;0
+76856;16907;1;169;65.0;120;80;1;1;0;0;1;0
+76857;16624;1;158;85.0;120;80;1;1;0;0;1;0
+76859;21767;1;156;87.0;140;80;3;1;0;0;1;1
+76860;19721;2;173;72.0;110;70;1;1;0;0;1;0
+76862;22522;2;175;72.0;130;80;1;1;0;0;1;1
+76863;17567;1;163;79.0;120;80;1;1;0;0;1;1
+76865;18905;2;170;79.0;140;80;1;1;0;0;1;1
+76866;21173;1;168;78.0;120;80;1;1;0;0;1;0
+76868;21684;2;176;63.0;140;90;1;1;0;0;1;1
+76871;21201;2;169;104.0;140;80;1;2;0;0;0;0
+76872;16075;2;169;90.0;150;100;1;1;1;0;1;1
+76873;21268;2;178;102.0;140;90;2;2;0;0;1;1
+76875;20281;2;170;90.0;210;140;1;1;1;0;1;1
+76876;21285;1;158;56.0;140;70;2;1;0;0;1;1
+76877;19134;1;164;65.0;150;80;1;1;0;0;1;1
+76878;21712;2;182;91.0;140;90;2;1;1;0;1;1
+76879;19165;1;167;80.0;160;100;1;1;0;0;1;1
+76882;18243;1;167;63.0;140;80;1;1;0;0;1;0
+76883;15509;1;158;71.0;120;80;1;1;0;0;1;0
+76884;18996;1;160;74.0;145;100;1;1;1;0;1;1
+76885;18097;1;154;85.0;110;80;1;1;0;0;1;0
+76886;21955;1;174;65.0;90;60;2;1;0;0;1;0
+76888;19522;1;175;75.0;100;70;1;1;0;0;0;1
+76890;16748;1;166;78.0;110;80;1;1;0;0;1;0
+76892;22033;2;181;82.0;120;60;1;2;0;0;0;1
+76893;15803;2;159;84.0;120;80;1;3;0;0;1;1
+76895;22342;1;148;74.0;100;60;1;1;0;0;1;1
+76896;17630;1;165;67.0;110;70;1;1;0;0;1;0
+76898;16149;2;169;74.0;140;80;1;1;1;1;1;1
+76899;18482;2;168;76.0;120;80;1;1;0;0;1;0
+76900;15229;1;150;55.0;120;80;1;1;0;0;1;0
+76901;16814;1;163;54.0;110;80;2;1;0;0;1;0
+76902;23264;1;151;56.0;110;70;3;1;0;0;1;1
+76903;23397;1;155;53.0;150;70;2;2;0;0;1;1
+76904;18893;1;154;72.0;120;70;2;1;0;0;1;0
+76907;15330;2;167;78.0;130;70;1;1;0;1;0;0
+76908;15857;2;168;86.0;110;70;1;2;0;0;0;1
+76909;21264;2;163;57.0;120;70;1;1;0;0;0;1
+76914;21158;1;160;63.0;150;80;1;1;0;0;1;1
+76915;14372;2;176;100.0;127;86;1;1;0;0;0;0
+76916;22022;2;174;83.0;130;80;3;1;0;0;1;0
+76917;21738;2;162;62.0;100;60;3;1;0;0;0;1
+76918;14500;1;174;58.0;110;70;1;1;0;0;1;0
+76919;17445;1;165;78.0;110;70;1;1;0;0;0;0
+76920;17464;1;147;69.0;100;70;2;1;0;0;1;0
+76923;17743;1;160;61.0;120;80;1;1;0;0;0;0
+76924;23133;1;163;65.0;120;70;3;1;0;0;0;1
+76925;18883;1;158;72.0;150;100;1;1;0;0;1;1
+76926;15367;1;167;69.0;120;80;1;1;0;0;1;0
+76927;21100;1;160;52.0;140;80;1;1;0;0;1;1
+76928;20506;1;158;70.0;110;70;1;1;0;0;1;1
+76929;18225;1;168;89.0;120;70;1;1;0;0;1;0
+76930;20520;1;156;90.0;120;80;1;1;0;0;1;0
+76931;18807;1;148;65.0;170;90;3;1;0;0;1;1
+76932;18825;1;161;52.0;140;90;3;1;0;0;0;1
+76933;18048;1;162;70.0;120;80;1;1;0;0;1;0
+76937;21838;1;159;62.0;140;90;3;1;0;0;1;1
+76938;18969;1;167;54.0;110;70;1;1;0;0;1;0
+76939;20243;1;160;68.0;120;80;1;1;0;0;1;1
+76941;19763;1;150;50.0;120;80;1;1;0;0;1;0
+76943;20191;2;162;59.0;110;70;1;1;0;0;1;1
+76947;17445;1;168;69.0;120;80;3;1;0;0;1;1
+76949;22716;2;167;75.0;140;90;1;1;0;0;1;1
+76950;18467;2;174;61.0;115;80;1;1;0;0;1;0
+76952;21209;1;164;70.0;120;80;1;1;0;0;1;0
+76953;16740;1;168;97.0;120;90;1;1;0;0;1;1
+76954;19659;1;155;78.0;120;80;1;2;0;1;1;1
+76955;20670;1;165;65.0;150;80;1;1;0;0;1;1
+76956;22637;1;156;39.0;90;60;1;1;0;0;1;0
+76958;21950;1;174;72.0;120;80;1;1;0;0;1;0
+76960;18463;1;163;79.0;140;90;2;1;0;0;1;1
+76961;21760;1;163;73.0;110;80;1;1;0;0;1;0
+76962;19696;1;165;62.0;120;80;1;1;0;0;0;1
+76963;22085;1;150;70.0;120;80;1;1;0;0;1;0
+76966;18266;1;174;58.0;140;1000;1;1;0;0;1;1
+76967;19158;2;164;72.0;120;80;1;1;0;0;0;1
+76969;18073;1;164;67.0;120;80;1;3;0;0;1;0
+76970;17547;2;178;73.0;120;80;1;1;0;0;1;0
+76973;17505;2;168;86.0;130;90;1;1;0;0;1;0
+76974;14541;2;180;70.0;110;80;1;1;0;0;1;0
+76975;19734;1;165;66.0;120;80;1;1;0;0;0;0
+76976;18329;2;169;109.0;140;90;1;1;0;0;1;1
+76977;14412;2;179;67.0;110;70;1;1;0;0;1;1
+76978;18045;1;155;70.0;120;90;1;1;0;0;1;0
+76980;16617;2;163;87.0;120;80;2;1;1;0;1;0
+76981;18307;1;165;68.0;120;80;1;1;0;0;0;1
+76983;15053;1;167;57.0;100;60;2;1;0;0;1;0
+76984;23253;1;161;87.0;150;80;1;1;0;0;1;1
+76986;19699;2;171;72.0;120;80;1;1;0;0;1;1
+76987;20565;1;160;75.0;120;80;1;1;0;0;1;0
+76988;16721;2;175;74.0;150;100;1;1;0;1;0;1
+76989;19218;1;165;65.0;120;80;3;3;0;0;0;0
+76990;21247;2;147;69.0;120;80;1;1;0;0;1;0
+76993;17504;1;158;82.0;140;70;3;1;0;0;1;0
+76994;18249;1;165;63.0;120;80;1;1;0;0;1;0
+76995;21081;1;162;53.0;120;80;1;1;0;0;0;0
+76996;20517;1;159;69.0;120;80;1;1;0;0;1;1
+76997;23453;1;165;97.0;128;80;1;3;0;0;1;0
+76998;23387;1;156;85.0;160;90;3;3;0;0;1;1
+76999;18293;2;168;65.0;120;80;2;2;0;0;1;0
+77001;20369;2;165;85.0;110;70;1;1;1;0;1;0
+77002;19540;1;160;50.0;110;70;2;1;0;0;1;0
+77003;18079;1;157;65.0;130;80;2;1;0;0;1;1
+77004;18751;1;167;89.0;120;80;1;1;0;0;1;0
+77007;16624;2;172;72.0;120;80;1;1;0;0;1;0
+77010;18511;1;164;54.0;960;60;1;1;0;0;1;0
+77011;17550;2;163;66.0;120;80;1;1;0;0;0;0
+77012;16236;1;160;65.0;120;80;1;1;0;0;1;0
+77014;23582;2;167;83.0;141;77;1;1;0;0;1;1
+77015;15382;2;168;75.0;150;100;1;1;0;0;0;1
+77016;21790;1;156;64.0;130;90;1;1;0;0;1;0
+77017;19055;1;156;57.0;110;70;1;1;0;0;1;0
+77019;23463;1;165;65.0;120;80;1;1;0;0;1;1
+77021;22533;2;171;83.0;150;90;3;1;1;0;0;1
+77022;19628;1;170;74.0;110;70;1;1;0;0;1;1
+77023;20197;1;158;87.0;120;80;1;1;0;0;0;1
+77024;16832;1;164;94.0;90;60;1;1;0;0;1;0
+77025;15418;2;170;86.0;110;80;1;1;0;0;1;0
+77028;21923;1;155;78.0;130;80;1;1;0;0;1;0
+77029;19129;1;165;65.0;120;80;1;1;0;0;0;0
+77030;16776;1;164;65.0;120;70;1;1;0;0;1;0
+77033;16040;2;178;68.0;110;70;1;1;0;0;1;0
+77034;18175;2;168;65.0;140;90;1;2;0;0;1;1
+77035;23488;1;165;62.0;125;80;1;1;0;0;1;1
+77036;16525;2;178;70.0;110;80;1;2;1;0;1;0
+77037;18337;1;158;59.0;120;80;1;1;0;0;1;0
+77039;17500;1;145;51.0;120;80;1;1;0;0;1;0
+77040;20423;1;158;70.0;110;70;1;1;0;0;1;0
+77041;18286;1;160;62.0;100;70;2;2;0;0;1;0
+77042;18877;1;157;85.0;100;70;1;1;0;0;1;0
+77043;18864;1;156;92.0;110;80;1;1;0;0;1;1
+77044;16125;2;183;85.0;120;80;1;1;0;0;1;0
+77045;19772;1;164;69.0;120;80;1;1;0;0;1;0
+77046;22562;1;159;74.0;120;80;2;2;0;1;1;1
+77047;16564;2;176;79.0;120;80;1;1;0;0;1;0
+77048;19334;1;160;59.0;110;70;3;1;0;0;1;0
+77049;17299;1;161;70.0;110;80;1;1;0;0;1;0
+77050;17436;1;161;127.0;130;90;1;1;1;0;1;0
+77051;14634;1;162;79.0;110;70;1;1;0;0;1;0
+77053;14584;1;173;64.0;110;80;1;1;0;0;1;0
+77054;22564;1;134;37.0;180;90;1;1;0;0;1;0
+77056;23466;1;151;107.0;164;100;2;1;0;0;1;1
+77057;14626;1;169;78.0;110;80;1;1;0;0;1;0
+77059;20250;1;155;70.0;160;100;1;1;0;0;0;0
+77060;21301;2;158;58.0;120;80;1;1;0;0;0;0
+77063;22694;2;176;74.0;120;80;2;1;0;0;1;0
+77065;14427;1;171;71.0;110;70;1;1;0;0;1;0
+77066;21364;2;176;110.0;120;80;3;1;0;0;1;1
+77067;21068;1;168;75.0;120;80;1;1;0;0;1;0
+77069;15850;1;159;78.0;120;80;1;1;0;0;0;0
+77070;19205;2;182;80.0;140;90;1;1;0;0;0;1
+77071;19079;2;178;65.0;100;70;1;1;1;1;1;0
+77074;15478;1;168;48.0;110;70;1;1;0;0;1;0
+77076;22295;1;155;79.0;140;90;1;3;0;0;0;1
+77078;18118;2;180;85.0;130;80;1;1;0;0;0;1
+77079;19698;1;159;70.0;120;80;1;1;0;0;1;0
+77080;15176;2;152;92.0;100;70;1;3;0;0;0;0
+77082;19859;1;168;79.0;120;80;3;1;0;0;1;0
+77083;16043;1;163;64.0;130;90;1;1;0;0;1;1
+77085;19438;1;143;63.0;120;80;1;1;0;0;0;0
+77086;16819;2;165;78.0;140;90;1;1;0;0;0;1
+77087;15285;2;176;104.0;110;70;1;1;0;0;1;0
+77088;22522;2;171;84.0;140;90;1;2;0;0;0;1
+77090;15986;1;164;91.0;150;89;2;2;0;0;1;1
+77091;15899;2;176;86.0;110;70;1;1;0;0;1;0
+77092;18079;2;170;73.0;100;80;1;2;0;0;1;1
+77093;16893;2;175;75.0;130;90;1;1;0;0;1;1
+77094;20446;2;178;86.0;120;80;1;1;0;0;0;0
+77095;15878;1;172;88.0;14;90;1;1;0;0;1;1
+77097;17297;1;160;75.0;140;90;1;1;0;0;1;1
+77099;21875;2;171;74.0;120;80;1;1;0;0;0;1
+77100;19795;1;157;64.0;120;60;1;1;0;0;1;0
+77101;20677;1;164;97.0;140;90;3;3;0;0;1;1
+77104;19922;1;175;75.0;110;80;1;1;0;0;0;0
+77107;14465;2;184;131.0;140;90;2;1;0;0;1;1
+77108;19813;2;168;71.0;120;80;1;1;0;0;1;0
+77109;14609;1;165;62.0;140;80;1;1;0;0;1;1
+77110;16948;1;165;81.0;120;80;1;1;0;0;1;0
+77111;17656;2;170;84.0;140;90;2;3;1;0;0;1
+77112;18220;1;154;69.0;120;90;1;2;0;0;0;0
+77115;18393;1;161;73.0;110;80;2;1;0;0;0;1
+77116;15195;2;175;88.0;140;90;1;1;1;1;0;1
+77117;21685;1;168;67.0;130;90;1;1;0;0;1;1
+77118;16608;1;162;59.0;110;60;2;1;0;0;1;0
+77119;14718;1;167;69.0;120;80;2;1;0;0;0;1
+77120;15920;1;166;96.0;160;90;1;1;0;0;0;1
+77121;19469;2;165;65.0;120;80;1;1;0;0;1;0
+77122;21761;2;170;70.0;120;80;1;1;0;0;1;0
+77123;17636;1;168;108.0;120;80;1;1;0;0;1;1
+77124;20429;1;173;75.0;120;80;1;1;0;0;0;0
+77125;14554;1;157;63.0;100;70;1;1;0;0;1;0
+77126;21097;1;152;85.0;140;90;2;1;0;0;1;0
+77129;18358;2;163;66.0;140;90;1;1;1;0;1;1
+77130;21671;2;175;95.0;160;90;1;1;0;0;0;1
+77131;19120;1;166;65.0;120;80;3;1;0;0;0;1
+77133;19593;2;158;62.0;120;80;1;1;0;0;1;1
+77134;21925;2;170;75.0;160;90;1;1;0;0;0;1
+77135;15804;1;156;69.0;120;80;1;1;0;0;1;1
+77137;19621;1;166;84.0;140;90;1;1;0;0;0;1
+77138;23179;2;172;100.0;120;80;1;1;0;0;1;0
+77140;17220;1;158;62.0;150;1000;1;1;0;0;1;1
+77141;20424;2;162;72.0;120;80;2;1;1;0;1;1
+77143;18377;1;158;57.0;120;80;1;1;0;0;1;1
+77144;19702;1;159;75.0;160;90;1;1;0;0;1;0
+77146;21728;2;169;72.0;120;80;1;1;1;0;0;0
+77147;21273;2;166;65.0;140;90;1;1;0;0;1;1
+77148;19144;2;175;68.0;130;75;1;1;0;0;1;0
+77149;21313;1;168;86.0;120;80;2;2;0;0;1;0
+77150;21989;2;164;64.0;140;90;1;1;1;1;1;1
+77151;19843;1;168;75.0;130;85;1;2;0;0;1;1
+77153;21741;2;170;68.0;120;80;1;1;0;0;1;1
+77154;20557;1;168;71.0;120;80;3;1;0;0;1;1
+77155;18002;2;167;93.0;120;70;1;1;0;0;1;1
+77157;18749;2;166;77.0;110;70;1;1;1;1;0;0
+77158;17479;2;178;85.0;120;80;3;1;0;0;1;1
+77160;16298;2;163;63.0;110;70;1;1;0;0;1;0
+77162;22002;2;180;100.0;140;100;1;1;0;0;1;1
+77163;20390;1;163;110.0;130;90;1;1;0;0;1;0
+77164;21839;2;169;72.0;150;1000;1;1;0;0;1;1
+77166;18013;1;168;98.0;130;70;3;3;0;0;0;0
+77167;22726;2;164;49.0;140;90;2;1;1;0;1;1
+77168;14414;2;160;59.0;120;70;1;1;0;0;1;0
+77169;18124;2;172;70.0;140;100;1;1;1;0;1;1
+77170;23201;2;169;100.0;170;100;1;1;1;0;0;1
+77171;19146;1;162;71.0;110;70;1;1;0;0;1;0
+77172;22813;1;154;82.0;130;80;1;1;0;0;1;0
+77173;19551;1;160;58.0;120;80;1;1;0;0;1;0
+77174;14615;1;164;63.0;120;60;1;1;0;0;1;0
+77176;18258;2;175;89.0;120;80;1;1;0;0;1;1
+77177;22023;2;172;75.0;130;90;2;1;0;0;0;1
+77179;20370;1;181;81.0;120;80;1;1;0;0;1;0
+77180;20516;1;170;68.0;120;80;1;1;0;0;1;0
+77181;17352;1;162;56.0;150;100;2;1;0;0;1;1
+77182;20595;1;151;105.0;120;80;1;2;0;0;0;1
+77183;23484;1;164;73.0;120;70;1;1;0;0;0;1
+77185;18226;1;155;56.0;110;70;1;1;0;0;1;0
+77186;15984;1;162;72.0;120;80;1;1;0;0;1;0
+77187;22687;1;162;89.0;130;90;2;1;0;0;0;1
+77191;18844;1;155;74.0;160;90;3;2;0;0;0;0
+77193;15372;2;181;75.0;120;80;1;1;0;0;0;0
+77194;23232;1;158;74.0;140;90;3;1;0;0;1;1
+77195;16508;1;153;76.0;150;90;3;1;0;0;1;1
+77196;21124;2;170;96.0;140;100;1;1;0;0;1;1
+77197;18113;1;160;71.0;100;70;1;1;0;0;0;0
+77198;16739;1;162;70.0;110;70;1;1;0;0;1;0
+77199;23342;2;162;67.0;130;90;1;1;0;0;1;0
+77200;14319;2;158;60.0;120;80;1;1;0;0;1;0
+77202;20645;2;173;78.0;160;100;1;1;0;0;1;0
+77203;19064;1;148;99.0;130;80;1;1;0;0;1;1
+77204;16858;2;162;64.0;120;80;1;1;1;1;1;0
+77205;21138;2;172;69.0;130;90;1;1;0;0;1;1
+77206;23328;2;169;66.0;120;80;1;1;0;0;1;0
+77208;18993;2;164;92.0;160;1000;1;1;0;0;1;1
+77210;21350;1;160;58.0;120;80;1;1;0;0;1;1
+77211;15453;2;175;78.0;110;70;1;1;1;0;1;0
+77212;20399;1;150;62.0;120;80;1;1;0;0;1;1
+77213;14603;1;170;75.0;120;80;1;1;0;0;1;0
+77214;15926;2;178;102.0;140;90;1;1;1;1;1;1
+77215;18844;1;164;120.0;180;100;2;2;0;0;1;1
+77219;19089;1;159;57.0;120;80;1;1;0;0;1;0
+77220;15883;1;158;50.0;120;80;2;1;0;0;1;0
+77221;22664;1;160;54.0;120;80;3;1;0;0;1;1
+77222;21049;2;172;78.0;150;100;1;1;0;0;1;1
+77223;21826;1;156;60.0;120;80;1;1;0;0;1;1
+77224;21410;1;151;86.0;130;90;2;1;0;0;0;1
+77225;19711;1;161;89.0;120;80;1;1;0;0;1;0
+77227;21336;2;174;86.0;120;80;1;1;0;0;1;1
+77228;21899;2;165;55.0;90;60;1;2;1;0;1;0
+77230;15893;2;180;63.0;120;80;1;1;1;1;1;0
+77231;18349;2;169;87.0;140;90;1;1;0;0;1;0
+77232;20607;1;163;89.0;130;80;2;2;0;0;1;1
+77233;15315;2;175;90.0;150;100;1;1;0;1;1;0
+77235;23390;1;170;68.0;120;60;1;1;0;0;1;0
+77236;16748;1;170;69.0;120;80;1;1;0;0;0;0
+77238;17545;1;168;88.0;140;90;1;1;0;0;1;1
+77239;23445;2;165;78.0;120;79;1;1;0;0;0;1
+77240;20625;1;168;85.0;120;80;2;1;0;0;0;1
+77241;15384;2;185;107.0;160;100;2;2;0;0;1;1
+77242;22729;1;158;75.0;140;100;1;1;0;0;1;1
+77243;20450;2;163;103.0;120;80;1;1;0;0;1;0
+77244;21787;1;163;48.0;110;70;1;1;0;0;1;1
+77246;21299;1;157;98.0;180;120;1;1;0;0;1;1
+77247;23334;1;147;50.0;180;110;1;1;0;0;1;1
+77248;18032;1;156;69.0;150;90;1;1;0;0;1;1
+77249;19165;1;174;65.0;120;80;1;1;0;0;1;0
+77250;22720;2;174;84.0;160;90;2;1;0;1;0;0
+77251;18043;1;161;64.0;120;80;1;1;0;0;1;1
+77252;18101;1;152;93.0;110;70;1;1;0;0;1;0
+77253;20954;2;168;68.0;120;80;1;1;0;0;1;0
+77254;18228;1;155;92.0;140;80;3;2;0;0;1;1
+77255;21843;2;175;94.0;150;90;1;1;0;0;1;1
+77256;22516;1;158;76.0;130;80;1;3;0;0;1;1
+77257;23467;1;156;65.0;120;80;1;1;0;0;0;0
+77258;21440;2;153;46.0;110;70;1;1;0;0;1;0
+77260;23480;1;158;65.0;140;80;1;2;0;0;1;1
+77261;19869;1;162;74.0;120;80;1;1;0;0;1;0
+77262;19647;1;164;102.0;120;809;1;1;0;0;0;0
+77263;19127;1;152;84.0;140;80;1;1;0;0;1;1
+77264;15333;1;158;80.0;90;60;1;1;0;0;1;0
+77265;21205;1;160;60.0;110;70;1;1;0;0;0;0
+77266;22003;2;172;90.0;160;100;3;1;1;0;1;1
+77267;20506;1;170;69.0;120;80;1;1;0;0;1;0
+77268;20205;1;163;70.0;130;90;1;1;0;0;1;0
+77269;23257;1;152;74.0;150;90;1;3;0;0;1;1
+77270;14526;1;170;62.0;120;80;1;1;0;0;0;0
+77271;19818;2;174;83.0;160;100;1;1;0;0;1;1
+77273;23287;1;155;72.0;120;70;1;1;0;0;1;1
+77274;20425;2;176;85.0;120;90;1;3;1;0;1;1
+77275;18979;1;175;74.0;120;80;1;1;0;0;0;0
+77276;21649;1;168;84.0;180;90;1;1;1;0;0;1
+77277;21830;1;160;55.0;150;80;1;1;0;0;1;1
+77278;23226;1;156;70.0;130;80;1;1;0;0;1;1
+77279;18116;1;150;66.0;150;100;1;1;0;0;1;1
+77280;21868;1;165;120.0;130;90;1;1;0;0;1;1
+77281;16005;1;163;79.0;105;70;1;1;0;0;1;0
+77282;14670;1;165;65.0;120;80;1;1;0;0;0;0
+77285;19823;1;169;70.0;120;80;1;1;0;0;1;0
+77287;15374;2;166;65.0;110;80;1;1;0;0;1;0
+77288;19676;2;173;75.0;120;80;1;1;0;0;1;0
+77289;19604;1;160;60.0;120;80;1;1;0;0;1;0
+77290;23455;1;144;73.0;130;80;2;2;0;0;1;1
+77291;22645;1;165;70.0;120;80;1;2;0;0;1;1
+77293;20471;1;157;68.0;110;70;1;1;0;0;1;0
+77295;16654;2;169;70.0;120;70;1;1;0;0;1;0
+77297;19028;2;174;90.0;140;90;3;3;0;0;1;1
+77298;21742;1;166;65.0;150;90;3;1;0;0;1;1
+77299;21868;2;167;80.0;110;80;1;1;0;0;0;0
+77300;16698;2;158;46.0;100;70;1;1;0;1;1;0
+77301;21091;1;170;95.0;130;79;3;1;0;0;0;1
+77302;20480;1;163;70.0;160;100;1;1;0;0;1;1
+77303;19531;2;168;78.0;180;100;3;3;0;0;1;1
+77304;20958;1;160;74.0;140;90;3;3;0;0;1;1
+77305;19561;1;180;62.0;130;80;1;1;0;0;1;0
+77306;17395;1;174;74.0;120;90;1;1;0;0;1;0
+77307;21751;1;163;90.0;130;80;1;1;0;0;1;1
+77308;16069;1;166;67.0;110;80;1;1;1;0;1;0
+77309;23306;1;159;96.0;180;1100;3;3;0;0;1;1
+77311;15850;2;182;82.0;120;80;1;1;1;0;1;0
+77312;21726;1;160;85.0;150;90;1;1;0;0;1;1
+77313;15192;1;158;57.0;120;60;2;2;0;0;1;0
+77314;18253;1;148;51.0;120;80;1;1;0;0;1;0
+77316;17481;1;158;71.0;140;90;1;1;0;0;0;1
+77317;18894;2;171;83.0;120;60;1;1;0;0;1;1
+77318;16899;2;178;89.0;120;80;1;1;0;0;1;0
+77321;16794;2;172;91.0;130;90;1;1;0;0;1;1
+77322;18036;2;175;112.0;140;90;1;1;0;0;0;1
+77324;16638;2;156;85.0;13;90;1;1;0;0;1;1
+77325;18263;1;168;69.0;100;80;2;2;0;0;1;0
+77326;23423;2;157;56.0;120;80;1;1;1;0;1;0
+77327;21972;2;163;49.0;180;120;1;2;0;1;0;1
+77332;21892;2;177;78.0;120;80;1;1;0;0;0;1
+77334;21082;1;166;84.0;166;84;1;1;0;0;1;0
+77336;15314;2;175;79.0;110;70;1;1;0;0;1;0
+77337;16836;1;165;73.0;120;80;2;1;0;0;1;1
+77340;18452;1;173;94.0;180;120;1;1;0;0;1;1
+77341;21243;1;185;75.0;120;80;1;1;0;1;1;0
+77342;16698;2;162;69.0;130;80;1;1;0;0;1;0
+77343;22496;1;155;75.0;120;80;2;1;0;0;1;0
+77345;22894;1;178;70.0;130;80;1;1;0;0;0;0
+77346;15464;1;160;76.0;140;90;1;1;0;0;1;1
+77347;16094;1;156;75.0;100;70;1;2;0;0;1;0
+77348;21315;1;168;85.0;140;80;2;2;1;1;1;1
+77349;19697;1;166;74.0;110;70;3;3;0;0;1;1
+77350;18225;1;165;54.0;110;70;2;1;0;0;1;0
+77351;20492;2;164;84.0;120;70;3;3;0;0;1;1
+77352;21321;1;168;79.0;140;80;1;1;0;0;1;1
+77353;16572;2;178;79.0;130;90;3;1;0;0;1;0
+77354;20150;1;157;75.0;130;69;1;2;0;0;0;0
+77355;17990;1;160;63.0;125;80;1;1;0;0;0;1
+77357;21183;1;168;85.0;140;80;1;1;0;0;1;1
+77358;17562;1;170;66.0;100;70;1;1;0;0;1;0
+77359;18289;1;172;67.0;110;70;1;1;0;0;1;0
+77360;19491;1;151;64.0;130;80;1;1;0;0;1;1
+77361;18780;2;168;64.0;160;90;3;3;0;0;1;1
+77363;18772;1;168;70.0;120;80;1;1;0;0;1;0
+77365;16911;1;160;85.0;120;80;1;1;0;0;1;1
+77370;20492;2;165;65.0;100;80;1;1;0;0;1;0
+77371;17463;1;160;65.0;150;99;1;1;0;0;1;1
+77372;18943;2;171;60.0;120;80;1;1;1;0;1;0
+77373;18260;1;162;65.0;120;80;1;1;0;0;1;0
+77374;18818;1;164;86.0;160;110;2;1;0;0;1;1
+77375;22547;1;151;90.0;130;90;3;1;0;0;1;1
+77376;19663;2;165;60.0;110;80;1;1;0;0;1;0
+77377;16852;2;166;72.0;110;80;1;1;0;0;1;1
+77378;23506;1;168;95.0;130;85;3;3;0;0;1;1
+77379;17510;1;167;70.0;110;70;1;1;0;0;1;1
+77381;21668;1;158;79.0;140;90;1;2;0;0;1;1
+77382;18155;2;172;63.0;160;90;1;1;1;0;0;1
+77383;19697;1;162;56.0;120;80;1;1;0;0;1;0
+77384;18132;1;165;70.0;120;80;1;1;0;0;0;0
+77386;16791;2;168;100.0;130;90;1;2;0;0;1;0
+77387;18163;1;159;72.0;130;90;3;3;1;0;1;0
+77389;20297;1;158;70.0;120;70;1;1;0;0;1;1
+77390;18734;1;164;70.0;120;80;1;1;0;0;1;0
+77391;23381;1;162;70.0;120;80;3;1;0;0;1;1
+77392;18160;2;170;70.0;160;90;1;1;0;0;1;1
+77393;14600;1;165;69.0;120;79;1;1;0;0;1;0
+77395;22038;2;174;76.0;120;80;1;1;1;0;1;1
+77396;19592;1;166;68.0;120;70;1;1;0;0;1;0
+77397;21626;1;164;100.0;130;80;3;3;0;0;1;1
+77398;20353;2;167;150.0;170;100;2;2;0;0;1;1
+77400;21863;1;153;82.0;120;80;1;1;0;0;1;1
+77401;19011;1;169;68.0;120;80;1;2;0;0;0;0
+77408;21136;1;151;57.0;110;70;1;1;0;0;1;0
+77410;19759;1;167;89.0;120;80;1;1;0;0;0;1
+77411;15389;2;168;69.0;120;80;1;1;0;0;1;0
+77413;18334;1;155;61.0;100;70;3;3;0;0;1;0
+77415;21184;1;165;57.0;120;80;1;1;0;0;1;1
+77417;22715;1;165;65.0;100;70;1;1;0;0;0;0
+77421;21799;2;174;80.0;140;90;2;1;1;0;0;1
+77423;23294;1;163;90.0;140;80;3;1;0;0;1;1
+77424;17366;1;173;71.0;140;90;3;3;0;0;0;1
+77425;21416;2;198;110.0;140;80;2;3;0;0;1;1
+77426;21270;1;166;64.0;120;80;2;1;0;0;1;0
+77427;21328;2;170;100.0;120;80;1;1;1;0;1;1
+77428;17324;1;150;62.0;120;80;1;1;0;0;1;0
+77429;21727;1;168;60.0;130;80;1;1;0;0;1;0
+77432;21142;2;166;60.0;150;100;3;3;0;0;1;1
+77433;19486;1;164;72.0;120;80;1;1;0;0;1;0
+77435;15274;1;158;76.0;120;80;1;1;0;0;1;0
+77436;19908;1;146;40.0;100;60;1;1;0;0;0;0
+77439;18944;1;155;56.0;120;80;1;1;0;0;0;0
+77441;18326;1;163;73.0;140;90;2;1;0;0;0;1
+77443;18821;1;166;58.0;90;60;2;1;0;0;1;0
+77444;16679;2;175;114.0;140;80;2;1;0;0;0;1
+77446;22022;2;181;85.0;130;80;1;1;1;1;1;0
+77447;16777;2;180;115.0;210;110;2;1;1;0;1;1
+77450;14612;1;170;60.0;100;70;1;1;0;0;0;0
+77451;15049;1;168;72.0;120;80;1;1;0;0;1;0
+77452;23396;2;164;76.0;120;90;1;1;0;0;1;1
+77453;15529;1;163;73.0;110;70;1;1;0;0;1;1
+77455;19880;1;145;55.0;150;1000;1;2;0;0;1;1
+77456;18783;1;165;69.0;130;91;3;1;0;0;1;1
+77458;16116;1;160;94.0;130;80;1;1;0;0;1;0
+77459;21970;1;155;67.0;134;90;1;1;0;0;1;0
+77462;18249;2;164;75.0;140;90;1;1;0;0;1;0
+77463;23298;1;170;70.0;100;90;2;2;0;0;0;1
+77466;23331;1;156;61.0;140;90;3;3;0;0;1;1
+77467;15526;2;169;79.0;120;80;1;2;1;0;1;0
+77469;23421;1;164;58.0;120;80;1;1;0;0;1;1
+77470;22609;2;170;82.0;140;90;1;2;0;1;1;1
+77473;17563;1;165;63.0;120;80;1;1;0;0;1;0
+77476;21977;2;166;96.0;140;85;2;2;0;0;0;1
+77477;21213;1;160;72.0;130;80;1;1;0;0;1;0
+77480;17505;2;174;85.0;130;80;1;1;0;0;1;1
+77482;23368;1;165;60.0;110;80;1;1;0;0;0;1
+77483;23117;1;180;62.0;160;90;1;3;0;0;1;1
+77484;18096;1;165;93.0;130;90;2;1;0;0;0;1
+77486;20695;1;169;74.0;120;80;1;1;0;0;1;0
+77487;20174;1;159;63.0;120;90;1;1;0;0;0;0
+77488;17732;2;169;72.0;150;100;3;1;0;0;1;1
+77489;16743;2;165;60.0;130;90;1;1;1;0;1;0
+77490;20580;1;162;82.0;120;80;1;1;0;0;1;0
+77492;22155;1;166;72.1;130;90;2;1;0;0;1;1
+77493;19037;2;168;66.0;120;90;1;1;1;1;1;0
+77494;18135;2;159;88.0;130;90;1;1;1;1;1;1
+77495;15357;1;161;101.0;110;80;1;1;0;0;0;0
+77496;15084;1;164;53.0;90;60;2;1;0;0;1;0
+77497;23547;1;166;72.0;150;90;1;1;0;0;1;1
+77498;20272;1;160;58.0;120;80;1;1;0;0;1;0
+77499;21990;1;165;75.0;120;80;1;1;0;1;1;1
+77501;15273;2;164;59.0;120;80;1;1;1;0;1;0
+77502;18219;2;172;80.0;130;70;1;1;1;1;0;0
+77503;16017;2;170;75.0;120;80;1;1;0;0;1;1
+77508;21745;1;163;104.0;100;70;2;2;0;0;1;1
+77510;17655;1;167;90.0;150;90;3;2;0;0;1;1
+77513;22748;1;152;69.0;140;90;1;1;0;0;1;1
+77514;21226;1;172;73.0;120;80;1;1;0;0;1;0
+77516;19691;2;170;96.0;110;80;1;1;0;0;0;0
+77517;21073;2;160;70.0;120;80;2;1;0;0;0;0
+77519;18312;1;162;57.0;120;80;1;1;0;0;1;0
+77520;20319;1;165;75.0;100;65;1;1;0;0;1;1
+77521;21080;1;158;75.0;120;80;1;1;0;0;1;1
+77523;17655;1;174;69.0;110;70;1;1;0;0;1;1
+77524;20378;2;170;63.0;120;80;1;1;0;0;1;1
+77525;16645;1;158;60.0;140;100;2;1;0;0;1;1
+77527;20546;1;159;84.0;120;80;1;3;0;0;1;1
+77528;21990;1;162;71.0;120;80;1;1;0;0;1;0
+77530;21007;1;158;92.0;140;90;3;3;0;0;1;1
+77531;21000;1;165;78.0;140;90;2;2;0;0;0;1
+77532;23309;1;160;80.0;120;80;1;1;0;0;1;1
+77534;22603;1;149;69.0;140;90;1;1;0;0;1;1
+77536;21102;1;165;72.0;120;80;1;1;0;0;1;0
+77538;14546;1;160;55.0;120;80;1;1;0;0;1;0
+77540;17613;2;162;77.0;120;80;2;1;1;0;0;1
+77541;22661;1;160;68.0;110;80;1;1;0;0;1;0
+77542;18508;2;168;65.0;130;80;1;1;0;0;1;1
+77544;18971;1;177;84.0;130;80;1;1;0;0;0;0
+77545;21138;1;158;58.0;120;80;1;1;0;0;1;0
+77546;15911;2;178;73.0;120;80;1;1;0;0;1;0
+77547;20392;1;156;66.0;130;80;1;1;0;0;0;0
+77548;15194;1;160;64.0;140;90;1;1;0;0;1;1
+77549;18292;1;157;53.0;150;70;1;1;0;0;1;1
+77550;21868;1;154;52.0;120;80;1;1;0;0;1;0
+77551;15139;1;168;68.0;100;70;1;1;0;0;1;0
+77552;14663;2;170;84.0;130;90;1;1;0;0;1;1
+77553;20491;1;165;56.0;110;70;1;1;0;0;0;0
+77554;18203;1;156;53.0;130;80;2;1;0;0;1;0
+77555;18985;1;158;101.0;140;80;2;1;0;0;1;1
+77557;19053;1;164;70.0;120;80;1;1;0;0;1;1
+77559;17598;1;168;99.0;150;90;3;1;0;0;0;1
+77560;21334;1;155;71.0;130;90;1;1;0;0;1;1
+77561;18162;2;170;72.0;160;110;1;1;0;0;1;1
+77562;15250;2;168;83.0;150;1000;1;1;0;0;1;0
+77563;18970;1;171;75.0;100;70;1;1;0;0;1;0
+77564;20246;1;160;66.0;120;70;1;1;0;0;1;0
+77565;16304;1;169;68.0;120;90;3;3;0;0;1;1
+77566;22673;2;178;89.0;130;80;1;1;0;0;0;1
+77568;21302;1;157;55.0;120;80;1;1;0;0;1;0
+77569;21342;1;170;68.0;120;80;1;1;0;0;1;1
+77570;22509;1;144;52.0;140;90;1;1;0;0;1;1
+77571;16961;1;165;69.0;140;90;1;1;0;0;1;1
+77572;18992;1;154;95.0;100;70;1;1;0;0;1;0
+77575;17635;1;160;64.0;150;90;1;1;0;0;1;1
+77576;17431;1;152;85.0;100;60;1;1;0;0;1;0
+77577;20547;1;147;55.0;110;70;1;1;0;0;1;1
+77578;14554;1;160;60.0;110;70;2;1;0;0;1;0
+77581;23186;1;156;74.0;130;90;1;2;0;0;1;1
+77582;18180;1;163;70.0;120;80;2;1;0;0;1;1
+77583;18998;1;158;63.0;120;80;1;1;0;0;1;0
+77584;18384;1;159;60.0;120;80;1;1;0;0;1;0
+77586;18250;2;172;75.0;120;70;1;1;1;0;1;0
+77587;15897;1;163;66.0;120;80;1;1;0;0;1;0
+77588;15378;1;158;41.0;90;60;1;1;0;0;1;0
+77589;15455;1;153;50.0;90;60;1;1;0;0;0;0
+77590;20458;2;165;78.0;165;80;3;1;0;0;1;1
+77591;16622;2;165;68.0;150;80;1;1;0;0;1;0
+77592;19733;1;164;80.0;120;80;1;1;0;0;1;1
+77593;22677;1;180;62.0;100;80;1;1;0;0;1;1
+77596;18329;1;185;90.0;120;90;1;1;0;0;1;0
+77598;15395;2;174;77.0;130;80;1;1;0;0;0;1
+77600;16703;1;162;72.0;150;90;1;1;0;0;1;1
+77601;19026;1;165;72.0;120;90;1;1;0;0;0;0
+77603;15435;1;158;80.0;110;70;1;1;0;0;1;0
+77605;19070;2;165;57.0;120;80;1;1;0;0;1;0
+77606;23166;1;160;99.0;160;99;1;1;0;0;1;0
+77608;21160;1;160;83.0;140;80;1;1;0;0;0;0
+77609;17452;1;157;93.0;130;100;1;1;0;0;1;1
+77610;21278;1;160;63.0;130;80;1;1;0;0;1;1
+77611;17389;1;156;52.0;110;70;1;1;0;0;1;0
+77613;18447;2;174;90.0;110;70;1;1;0;0;1;0
+77614;20554;1;165;80.0;120;80;1;1;0;0;1;0
+77615;23211;1;149;60.0;140;90;1;2;0;0;0;1
+77619;21124;2;168;72.0;120;80;1;1;0;0;1;0
+77621;20522;1;170;74.0;110;70;1;1;0;0;1;1
+77622;19815;2;169;70.0;120;80;1;2;0;0;1;0
+77623;16046;1;166;90.0;90;60;1;1;0;0;1;0
+77627;20346;1;165;58.0;120;80;1;1;0;0;1;0
+77628;16757;2;160;60.0;120;80;1;1;1;0;1;0
+77629;17506;1;165;60.0;130;80;1;1;0;0;1;0
+77630;20308;2;164;86.0;180;1000;1;1;0;0;1;1
+77631;19674;2;156;76.0;120;80;1;1;0;0;1;0
+77632;19607;1;162;86.0;120;80;1;1;0;0;1;0
+77635;18931;1;162;70.0;120;80;1;1;0;0;1;0
+77638;18894;1;156;62.0;120;80;2;2;0;0;1;1
+77639;18292;2;163;70.0;160;100;3;3;0;0;1;0
+77642;20434;1;160;68.0;110;70;1;1;1;0;1;0
+77643;20612;1;155;65.0;120;80;1;2;0;0;0;0
+77644;17222;1;154;55.0;90;60;1;1;0;0;1;0
+77646;15127;1;181;81.0;130;90;1;1;0;0;1;0
+77649;23261;1;152;58.0;160;110;1;1;0;0;1;0
+77651;18038;1;159;56.0;120;80;1;1;0;0;1;0
+77652;19765;1;154;88.0;140;70;1;1;0;0;1;0
+77654;19550;1;170;69.0;120;70;2;1;0;0;1;0
+77658;21398;2;169;64.0;120;80;1;1;1;0;1;0
+77659;23413;1;153;70.0;140;80;3;1;0;0;1;1
+77663;18223;2;170;78.0;130;90;1;1;0;1;1;1
+77664;14683;2;180;80.0;120;80;1;1;0;0;1;0
+77665;23194;2;160;70.0;110;70;2;1;0;0;1;1
+77667;21600;1;146;89.0;180;1200;1;1;0;0;1;1
+77668;16373;1;156;59.0;70;110;1;1;0;1;1;0
+77670;18445;1;165;65.0;120;79;3;3;0;0;0;0
+77671;22462;1;155;88.0;140;90;1;1;0;0;1;1
+77672;22657;1;156;70.0;150;90;1;1;0;0;1;1
+77674;20514;2;175;68.0;120;70;1;1;0;0;1;0
+77675;21154;1;162;60.0;120;80;1;1;0;0;0;0
+77676;15945;1;167;78.0;130;80;1;1;0;0;1;1
+77678;19150;2;182;82.0;140;80;2;2;0;0;1;1
+77679;18232;2;170;72.0;120;80;1;3;0;0;1;0
+77680;18804;1;166;101.0;130;80;2;1;0;0;0;0
+77681;14518;1;166;87.0;130;80;1;1;0;0;1;0
+77682;16856;1;151;50.0;110;70;1;1;0;0;1;0
+77684;21105;1;165;70.0;130;80;1;1;0;0;1;0
+77685;18218;2;171;92.0;140;90;1;1;1;0;1;1
+77687;22117;2;165;63.0;150;110;1;1;0;0;1;1
+77688;23391;1;159;61.0;120;80;1;1;0;0;1;1
+77690;22752;2;157;62.0;140;90;3;1;0;1;1;1
+77691;23278;2;158;54.0;120;80;1;1;0;0;1;1
+77692;21275;2;162;56.0;110;70;1;1;0;0;1;0
+77693;18417;2;169;72.0;120;90;1;1;0;0;1;0
+77696;22069;1;160;76.0;110;80;1;1;0;0;1;1
+77699;21122;1;164;76.0;170;110;1;1;0;0;1;1
+77700;23230;1;157;75.0;120;80;1;1;0;0;0;1
+77701;22118;1;178;78.0;80;60;1;1;0;0;0;1
+77702;20334;1;160;75.0;120;80;1;1;0;0;1;0
+77706;14458;2;178;70.0;140;80;1;1;0;0;0;1
+77708;15868;1;155;65.0;120;80;1;1;0;1;1;1
+77710;15266;1;168;74.0;110;69;1;1;0;0;1;0
+77711;19853;1;169;74.0;110;80;1;1;0;0;1;1
+77713;22557;2;154;69.0;140;90;1;1;0;0;1;1
+77714;23424;1;155;92.0;125;80;1;1;0;0;0;0
+77715;19852;2;177;103.0;120;80;1;1;0;1;1;0
+77717;19526;1;169;102.0;150;100;2;2;0;0;1;1
+77718;16623;2;179;91.0;130;80;1;1;0;0;1;0
+77719;16067;1;160;104.0;110;70;1;1;0;0;1;0
+77721;14644;1;163;65.0;120;80;1;1;0;0;1;0
+77722;19647;1;146;76.0;160;90;1;1;0;0;1;1
+77723;19454;1;148;56.0;160;90;3;1;0;0;1;1
+77724;21144;2;176;80.0;130;80;1;1;0;0;0;0
+77727;23418;2;171;89.0;160;90;2;1;1;1;1;1
+77729;23397;1;162;66.0;130;80;1;1;0;0;1;1
+77730;15413;1;165;62.0;110;80;1;1;0;0;1;0
+77731;18392;1;160;106.4;130;90;1;1;0;1;1;1
+77735;17425;2;183;106.0;140;80;2;1;1;1;0;1
+77736;19935;2;178;78.0;120;80;1;1;0;0;1;0
+77739;19021;1;150;52.0;90;60;1;1;0;0;1;0
+77740;19547;1;164;68.0;120;80;1;1;0;0;1;0
+77741;21941;1;150;105.0;130;80;3;3;0;0;1;0
+77742;18985;1;158;91.0;100;70;2;3;0;0;1;1
+77743;20554;1;167;85.0;130;90;1;1;0;0;1;0
+77744;23190;1;150;71.0;120;80;1;1;0;0;1;1
+77745;17522;2;170;104.0;160;100;1;1;0;0;0;1
+77746;17493;1;152;95.0;190;1000;1;1;0;0;0;1
+77747;22560;1;139;58.0;160;90;1;1;0;0;1;1
+77748;18302;1;161;103.0;150;90;1;2;0;0;1;1
+77750;15421;1;152;88.0;130;80;1;3;0;0;1;1
+77754;23259;1;172;76.0;130;80;3;1;0;0;1;1
+77755;16875;1;163;78.0;120;80;1;1;0;0;1;0
+77758;19025;1;159;94.0;120;80;1;1;0;0;1;1
+77759;21174;1;156;101.0;170;110;1;1;0;0;0;1
+77762;20645;1;162;62.0;120;80;3;3;0;0;1;0
+77763;19698;2;167;70.0;120;80;1;1;0;0;1;0
+77764;14614;1;153;60.0;110;80;1;1;0;0;1;0
+77767;15146;1;156;55.0;140;70;1;1;0;0;1;1
+77768;22072;1;162;73.0;110;70;1;1;0;0;1;1
+77769;21814;1;168;84.0;140;90;3;1;0;0;0;1
+77770;21223;1;158;60.0;130;89;2;2;0;0;1;1
+77771;19662;1;154;72.0;120;80;1;1;0;0;1;1
+77772;20415;2;160;64.0;140;80;3;1;1;0;1;1
+77773;16157;1;154;52.0;100;60;2;1;0;0;1;0
+77774;17322;2;175;79.0;80;105;1;1;1;1;1;0
+77775;21902;1;165;74.0;120;80;1;1;0;0;1;1
+77777;15133;2;158;54.0;140;100;1;1;0;0;1;1
+77778;18319;2;165;69.0;180;110;3;1;1;0;1;1
+77779;18379;1;156;56.0;110;70;2;1;0;0;1;0
+77782;20435;2;166;76.0;130;80;3;1;1;0;1;1
+77783;18476;2;178;85.0;130;80;1;1;0;0;1;1
+77785;18385;1;156;79.0;120;80;1;1;0;0;1;1
+77786;16694;1;170;93.0;120;80;3;1;0;0;1;1
+77787;23535;1;169;101.0;150;90;2;1;0;0;1;1
+77788;16049;1;160;74.0;90;65;2;2;0;1;1;1
+77789;21404;1;160;60.0;120;80;3;3;0;0;1;1
+77791;17547;1;166;74.0;110;70;1;1;0;0;0;0
+77792;23159;2;164;72.0;150;90;2;3;0;1;1;1
+77795;18975;1;162;71.0;110;70;1;1;0;0;1;0
+77797;18500;1;160;69.0;120;80;2;1;0;0;1;0
+77798;22786;1;162;82.0;130;90;3;1;0;0;1;1
+77799;21278;1;165;64.0;120;80;1;1;0;0;1;0
+77800;15276;2;170;74.0;110;70;1;1;0;0;0;0
+77801;18072;1;160;87.0;100;70;1;1;0;0;1;0
+77804;14709;1;170;48.0;110;80;1;1;0;0;1;0
+77806;19120;1;160;62.0;130;80;1;1;0;0;1;1
+77811;22482;1;157;83.0;130;80;1;1;0;0;0;0
+77813;20573;1;165;64.0;120;80;1;1;0;0;1;0
+77814;20634;1;165;60.0;140;90;1;1;0;0;1;1
+77815;16609;1;160;69.0;120;90;1;1;0;0;1;0
+77816;23310;1;154;54.0;120;80;1;1;0;0;1;1
+77817;20445;1;168;72.0;130;90;3;3;0;0;1;1
+77818;20585;2;178;78.0;120;80;1;1;0;0;1;0
+77819;14824;1;154;55.0;100;70;1;1;0;0;1;0
+77820;19094;1;163;93.0;163;93;1;1;0;0;1;1
+77821;15326;2;182;93.0;150;100;1;1;1;0;1;1
+77822;16190;1;154;95.0;120;80;2;1;0;0;1;0
+77823;17319;2;167;61.0;120;80;1;2;0;0;0;1
+77824;14673;1;165;60.0;110;70;1;1;0;0;1;0
+77825;21069;1;161;95.0;110;70;1;2;0;0;0;1
+77826;18237;1;164;73.0;110;70;1;1;0;0;1;0
+77829;18320;2;167;54.0;130;80;1;1;0;0;1;0
+77830;20550;1;161;62.0;150;90;1;1;0;0;1;1
+77831;18976;1;157;76.0;130;80;1;1;0;0;1;0
+77832;22662;1;158;78.0;120;80;3;1;0;1;1;1
+77833;21042;1;174;80.0;110;70;1;3;0;0;1;0
+77835;16719;1;165;72.0;120;80;1;2;0;0;0;1
+77836;22706;1;165;65.0;100;60;1;1;0;0;1;1
+77837;22778;1;166;72.0;120;80;1;1;0;0;0;0
+77838;22657;2;175;74.0;130;90;1;1;0;0;1;0
+77839;17570;2;175;75.0;120;80;1;3;0;0;1;1
+77840;21891;2;170;81.0;130;90;1;1;0;0;1;1
+77841;18110;1;159;79.0;110;70;2;1;0;0;1;0
+77842;22478;2;180;100.0;150;100;3;1;0;0;0;1
+77843;19560;1;170;70.0;110;80;1;1;0;0;1;0
+77847;16124;1;165;76.0;120;80;1;3;0;0;1;1
+77848;15266;2;180;90.0;120;90;1;1;0;0;1;0
+77850;18921;2;161;59.0;140;80;1;1;0;0;1;1
+77852;14466;1;170;70.0;110;80;1;1;0;0;1;0
+77853;21640;1;154;88.0;130;80;3;1;0;0;1;1
+77854;21706;2;160;63.0;130;80;1;1;0;0;0;1
+77855;21869;1;166;58.0;110;80;1;1;0;0;1;0
+77856;22139;1;160;60.0;120;80;1;1;0;0;1;0
+77857;20241;2;180;75.0;130;100;1;3;0;0;0;1
+77859;15840;2;166;79.0;100;70;1;1;1;0;1;0
+77860;19804;2;162;64.0;140;90;2;3;0;0;1;1
+77861;19537;1;169;69.0;120;80;1;1;0;0;1;1
+77862;14490;1;172;132.0;145;80;1;1;0;0;1;1
+77866;21942;2;170;78.0;150;90;3;1;0;0;1;1
+77868;20580;2;173;55.0;160;90;1;1;1;0;1;1
+77870;16703;2;179;69.0;120;80;1;1;0;0;1;0
+77872;21157;1;165;53.0;120;80;1;1;0;0;0;1
+77873;17278;2;167;73.0;115;70;1;1;1;0;1;0
+77874;17482;1;168;67.0;140;90;1;1;0;0;1;0
+77875;21237;1;149;79.0;120;80;1;1;0;0;1;1
+77876;14649;1;170;60.0;110;70;1;1;1;0;1;0
+77877;16251;1;164;61.0;120;70;1;1;0;0;1;0
+77880;20522;2;166;74.0;120;90;1;3;1;1;1;1
+77881;16758;2;178;68.0;130;90;3;1;0;0;1;1
+77882;17583;1;162;71.0;120;80;2;1;0;0;0;1
+77883;19497;1;172;85.0;120;80;1;1;0;0;1;0
+77884;20954;1;170;68.0;120;70;1;1;0;0;1;0
+77885;23339;1;167;79.0;130;80;1;1;0;0;1;1
+77887;14564;2;164;72.0;120;80;1;1;0;0;1;1
+77888;16854;1;165;60.0;110;80;1;1;0;0;1;1
+77889;22674;1;172;75.0;130;90;1;1;0;0;1;1
+77890;20674;1;167;56.0;120;80;2;2;0;0;1;0
+77891;19765;2;159;78.0;120;80;1;1;0;0;0;1
+77893;19865;2;169;74.0;120;80;1;1;0;0;0;0
+77894;18950;1;163;72.0;90;60;1;1;0;0;1;0
+77895;16859;1;162;67.0;120;80;1;1;0;0;1;0
+77896;22013;1;174;68.0;120;70;1;1;0;0;1;1
+77899;23218;2;165;94.0;150;100;2;2;0;0;1;1
+77900;15482;1;154;65.0;110;80;1;1;0;0;1;0
+77902;19813;1;154;43.0;100;60;1;2;0;0;1;0
+77903;18181;2;160;61.0;120;60;1;1;1;0;0;0
+77904;15395;1;154;60.0;140;90;1;2;0;0;1;1
+77905;16135;1;162;102.0;120;80;1;1;0;0;1;0
+77906;18233;2;166;78.0;130;90;3;1;1;0;1;1
+77907;21196;2;161;64.0;100;70;1;1;1;0;1;0
+77908;21734;1;154;68.0;130;80;1;1;0;0;1;0
+77909;23228;1;158;107.0;120;80;1;1;0;0;0;1
+77912;17423;1;164;51.0;120;90;1;1;0;0;1;1
+77913;23358;2;173;76.0;180;100;1;1;0;0;0;1
+77916;20300;1;164;84.0;120;80;1;1;0;0;1;0
+77917;19479;1;171;80.0;110;60;2;1;0;0;1;0
+77918;21129;1;150;81.0;120;80;1;1;0;1;1;1
+77919;18392;1;167;110.0;120;80;1;1;0;0;1;0
+77920;18050;1;168;65.0;120;80;1;1;0;0;1;0
+77922;21776;2;171;65.0;140;90;1;1;0;0;1;1
+77925;18284;1;163;79.0;130;80;1;1;0;1;1;1
+77926;19923;1;150;54.0;110;70;2;1;0;0;1;0
+77927;20398;1;168;62.0;120;80;1;1;0;0;1;0
+77929;19126;2;160;68.0;130;90;1;1;0;0;1;1
+77932;22479;1;160;57.0;120;80;3;1;0;0;0;1
+77934;21207;2;174;70.0;120;80;1;1;0;0;1;0
+77937;17016;1;152;67.0;140;90;2;1;0;0;1;0
+77940;18985;1;163;78.0;120;80;1;1;0;0;1;1
+77941;16097;1;168;55.0;120;80;3;3;0;0;0;0
+77942;18054;2;165;74.0;110;70;1;1;0;0;1;0
+77945;16840;1;168;72.0;110;80;1;1;0;0;1;0
+77946;18046;2;175;78.0;120;80;1;1;0;0;1;1
+77947;23451;2;168;77.0;130;80;1;1;0;0;0;0
+77949;19145;2;175;96.0;150;80;2;1;0;0;1;1
+77950;17544;1;160;65.0;120;80;1;1;0;0;1;0
+77951;21914;1;158;110.0;150;90;1;1;0;0;0;1
+77952;19785;1;158;97.0;130;80;2;1;0;0;1;0
+77953;16122;2;178;74.0;120;80;2;1;0;0;1;1
+77954;15214;1;165;75.0;120;80;1;1;0;0;1;1
+77957;19526;1;165;81.0;110;80;1;1;0;0;1;0
+77961;16051;1;168;74.0;120;80;1;1;0;0;1;0
+77962;19864;1;161;108.0;110;80;1;1;0;0;1;1
+77963;17737;2;163;69.0;120;60;1;1;0;0;0;0
+77964;18045;1;153;52.0;90;60;1;1;0;0;0;0
+77965;16723;2;168;82.0;150;100;1;1;0;0;1;1
+77966;18193;2;161;73.0;140;80;1;1;0;0;1;0
+77968;20416;1;167;86.0;120;80;1;1;0;0;1;0
+77969;19888;2;170;75.0;180;100;3;2;0;0;1;1
+77970;15757;1;170;110.0;150;1000;3;2;0;0;1;1
+77974;18118;1;160;47.0;90;60;1;1;0;0;1;0
+77976;19645;1;160;84.0;160;80;2;1;0;0;1;1
+77977;21114;2;168;91.0;150;70;1;1;0;0;1;1
+77979;17994;1;158;62.0;140;70;1;1;0;0;1;0
+77980;19677;1;159;88.0;120;80;3;1;0;0;0;1
+77981;18392;1;156;63.0;120;80;1;1;0;0;1;0
+77982;17724;1;165;69.0;110;70;1;2;0;0;0;0
+77983;20351;1;161;69.0;140;80;1;1;0;0;1;1
+77984;18965;2;179;72.0;110;80;2;2;1;1;1;0
+77985;20616;2;169;65.0;120;80;1;1;0;0;0;1
+77986;19724;1;156;73.0;130;90;1;1;0;1;1;0
+77987;22526;1;170;80.0;130;80;1;1;0;0;0;1
+77989;20363;1;160;80.0;130;85;1;1;0;0;1;1
+77990;21433;1;152;56.0;110;80;1;1;0;0;1;0
+77991;15959;1;156;60.0;120;80;1;1;0;0;1;1
+77992;23296;1;164;84.0;150;60;1;1;0;0;1;1
+77994;22627;2;172;94.0;120;80;2;2;0;0;1;1
+77995;20510;1;161;48.0;120;70;2;1;0;0;1;1
+77996;20157;1;171;82.0;120;80;1;1;0;0;1;0
+77997;22699;2;175;82.0;120;70;2;3;0;0;1;0
+78000;16579;2;167;68.0;160;100;1;1;0;0;1;1
+78001;15416;2;170;72.0;120;80;1;1;0;0;0;0
+78003;21134;2;167;83.0;120;80;1;1;0;0;1;1
+78004;19816;1;161;50.0;100;70;1;3;0;0;1;0
+78005;20160;1;170;86.0;150;90;2;1;0;0;1;1
+78006;20496;1;169;68.0;130;90;1;1;0;0;1;1
+78007;15912;1;158;78.0;110;70;1;1;0;0;1;1
+78008;23484;2;156;70.0;120;80;2;1;0;1;1;0
+78010;18298;2;174;72.0;160;100;1;1;1;0;0;1
+78011;19699;1;167;58.0;110;70;2;1;0;0;1;0
+78012;20479;1;153;39.0;110;70;1;1;0;0;1;0
+78016;18955;1;165;70.0;120;80;2;1;0;0;1;1
+78017;18281;1;160;68.0;160;100;2;2;0;0;1;0
+78018;20423;2;160;58.0;120;80;1;1;0;0;1;0
+78019;22684;1;166;74.0;110;70;1;1;0;0;1;0
+78020;18309;1;163;108.0;150;90;1;1;0;0;1;1
+78022;18828;1;142;72.0;110;70;1;1;0;0;1;0
+78025;18244;2;170;85.0;170;80;3;1;0;0;0;1
+78026;14291;1;167;53.0;110;70;1;1;0;0;0;1
+78027;18960;1;161;60.0;160;80;1;1;0;0;1;1
+78029;22012;2;169;69.0;110;70;1;1;0;0;1;0
+78030;18878;2;164;64.5;150;90;2;1;0;0;1;1
+78031;17464;2;173;48.0;120;80;1;1;0;0;0;1
+78032;20385;1;158;74.0;150;90;1;1;0;0;1;1
+78033;17516;2;177;82.0;140;100;3;1;1;0;0;1
+78036;19874;2;172;85.0;130;90;1;1;1;0;1;0
+78038;18170;1;168;68.0;120;80;1;1;0;0;1;0
+78039;22775;1;163;83.0;140;90;1;1;0;0;1;0
+78040;19724;2;159;75.0;120;80;1;1;0;0;1;0
+78042;20539;1;160;60.0;120;80;3;3;0;0;1;0
+78043;17036;1;167;70.0;120;90;2;1;0;0;1;0
+78044;15932;1;158;60.0;120;80;1;1;0;0;1;0
+78048;20712;2;168;85.0;150;90;2;2;1;0;1;1
+78050;23304;2;176;95.0;120;80;1;1;0;0;1;1
+78051;23274;1;171;69.0;140;90;1;1;0;0;1;1
+78052;23433;2;171;114.0;140;90;1;1;0;0;1;1
+78053;22471;1;160;63.0;120;90;1;1;0;0;1;0
+78054;22140;2;160;46.0;120;80;1;1;1;0;1;0
+78058;19827;2;168;72.0;120;80;1;1;0;0;1;0
+78059;23284;1;158;91.0;130;89;3;3;0;0;1;1
+78060;23249;1;147;75.0;130;80;1;2;0;0;1;0
+78061;16063;2;163;61.0;120;80;1;1;0;0;1;0
+78062;18374;2;171;76.0;120;80;1;1;1;0;1;0
+78063;21180;1;171;77.0;140;80;1;1;0;0;1;1
+78064;18955;1;165;75.0;120;80;1;1;0;0;1;1
+78065;19932;1;164;92.0;120;80;1;2;0;0;1;1
+78066;23254;2;183;85.0;150;90;3;3;0;0;1;0
+78067;21633;2;168;52.0;120;80;3;1;0;0;1;1
+78069;22707;1;159;63.0;120;80;1;1;0;0;0;1
+78071;18248;2;168;66.0;140;80;1;1;0;0;0;1
+78072;18915;1;159;66.0;123;77;1;1;0;0;1;0
+78073;22658;1;156;74.0;140;90;1;1;0;0;0;1
+78074;19117;2;170;80.0;120;80;1;1;0;0;1;0
+78076;22354;1;164;95.0;130;90;3;3;0;0;1;1
+78077;21830;2;171;94.0;120;80;1;1;0;0;1;0
+78081;19983;1;174;96.0;120;70;1;1;0;0;1;0
+78083;15978;2;158;60.0;110;70;1;1;0;1;1;0
+78084;20478;1;160;60.0;120;80;1;1;0;0;1;1
+78085;22593;2;165;71.0;140;90;1;1;0;0;1;1
+78086;22018;1;155;72.0;130;90;2;1;0;0;1;1
+78087;18116;1;162;85.0;110;80;1;1;0;0;1;0
+78089;23192;1;164;63.0;140;80;1;2;0;0;1;1
+78090;14675;2;165;60.0;100;80;2;1;0;0;1;1
+78092;19934;1;149;90.0;160;100;1;1;0;0;0;1
+78093;18078;1;154;86.0;110;70;3;3;0;0;1;1
+78094;19629;1;178;98.0;120;80;1;1;0;0;1;0
+78095;22018;1;165;100.0;140;100;1;1;0;0;0;1
+78102;15067;1;150;68.0;150;90;1;1;0;0;0;1
+78103;20161;2;170;96.0;150;100;3;1;0;0;1;1
+78104;18689;1;164;85.0;120;80;1;1;0;0;1;0
+78105;18074;1;152;91.0;123;83;1;1;0;0;1;0
+78106;22596;2;168;75.0;150;90;1;1;0;0;0;0
+78108;20294;1;167;72.0;160;90;1;1;0;0;1;1
+78109;23522;2;163;65.0;120;80;1;1;0;0;1;1
+78112;16060;1;157;83.0;110;80;2;2;0;0;1;0
+78113;16710;1;170;68.0;120;80;1;1;0;0;1;0
+78114;15502;2;173;90.0;130;90;2;1;0;0;1;1
+78115;19519;2;177;72.0;120;80;2;1;1;1;1;1
+78116;15130;1;155;80.0;130;80;1;1;0;0;1;0
+78117;19094;1;165;70.0;180;100;3;1;0;0;1;1
+78118;22475;2;166;45.0;120;70;1;1;0;0;1;0
+78119;16150;1;148;73.0;120;80;1;1;0;0;1;0
+78120;20218;1;170;80.0;120;60;1;1;0;0;1;0
+78121;23411;1;152;53.0;140;90;3;1;0;0;1;1
+78123;15070;1;168;114.0;170;100;1;1;0;0;1;1
+78124;23412;1;179;58.0;130;80;1;1;0;0;1;1
+78126;20470;1;160;63.0;130;80;1;1;0;0;1;0
+78128;23417;2;165;66.0;150;90;1;1;0;0;0;1
+78129;16240;1;168;95.0;125;80;2;3;1;0;1;0
+78134;18709;2;169;71.0;130;80;3;1;0;0;1;1
+78136;19547;1;158;75.0;120;80;1;1;0;0;1;0
+78137;21681;1;153;118.0;170;120;3;1;0;0;1;0
+78140;14675;1;162;90.0;140;90;1;2;0;0;1;1
+78141;18941;1;164;69.0;130;90;1;2;0;0;0;1
+78142;19557;1;155;74.0;130;70;1;1;0;0;1;0
+78143;14562;1;171;84.0;90;60;2;1;0;1;1;0
+78144;22750;1;167;70.0;125;85;1;1;0;0;0;1
+78145;16095;2;174;84.0;110;70;1;1;0;0;1;0
+78146;18937;1;155;82.0;120;80;3;3;0;0;1;1
+78148;21010;1;158;90.0;150;1100;1;1;0;0;0;0
+78149;21152;2;171;115.0;140;90;1;2;0;0;1;1
+78150;21307;1;165;65.0;120;79;1;1;0;0;0;0
+78152;16722;2;178;70.0;130;80;1;1;0;0;1;0
+78153;23389;1;167;102.0;160;100;1;1;0;0;1;1
+78156;19108;2;175;68.0;140;80;1;1;0;0;1;1
+78158;19482;2;170;81.0;120;80;1;1;0;0;1;1
+78159;22566;2;177;160.0;170;110;3;3;0;0;1;1
+78160;15962;1;167;125.0;150;100;2;3;0;0;1;1
+78161;16000;1;159;66.0;100;70;1;2;0;0;1;0
+78162;20497;1;150;68.2;120;70;1;1;0;0;1;0
+78163;22505;2;168;89.0;130;80;3;3;0;0;1;1
+78164;18404;1;167;68.0;120;80;1;1;0;0;0;0
+78165;20505;1;160;50.0;110;70;1;1;0;0;1;0
+78168;19161;1;159;59.0;120;80;1;1;0;0;1;1
+78169;19766;2;171;87.0;120;80;1;1;0;0;1;1
+78171;16817;2;170;88.0;120;90;2;2;1;1;1;0
+78172;15957;1;164;97.0;100;70;1;1;0;0;1;0
+78173;16012;1;163;62.0;120;80;1;1;0;0;0;0
+78174;16835;2;169;67.0;160;90;1;1;0;0;1;1
+78175;15437;2;165;62.0;120;80;1;1;0;0;0;0
+78176;17738;1;170;60.0;120;80;1;1;0;0;1;0
+78177;21260;1;150;74.0;150;90;1;1;0;0;0;1
+78179;23204;2;160;89.0;150;90;1;1;0;0;1;1
+78180;22087;1;159;94.0;140;90;3;3;0;0;1;1
+78181;19720;2;167;69.0;120;80;1;1;0;0;1;0
+78184;18966;1;163;68.0;120;80;1;1;0;0;0;0
+78185;14515;2;163;62.0;90;60;1;1;0;0;0;1
+78187;19148;2;170;68.0;120;70;3;3;0;0;1;0
+78189;21098;1;165;105.0;120;80;1;1;0;0;1;1
+78190;19710;1;165;65.0;120;80;1;1;0;0;1;1
+78191;19652;2;162;85.0;120;80;2;1;0;1;0;1
+78194;22541;1;155;62.0;120;80;1;1;0;0;1;0
+78195;19957;2;176;72.0;120;80;1;1;0;0;1;0
+78196;21850;1;160;60.0;120;79;1;1;0;0;1;0
+78197;17574;2;159;63.0;120;80;1;1;0;0;0;0
+78199;17276;1;160;70.0;110;80;1;1;0;0;1;0
+78200;21942;1;155;97.0;140;90;1;1;0;0;1;1
+78203;18456;1;170;82.0;140;90;1;1;0;0;1;1
+78204;21373;1;151;65.0;140;80;2;2;0;0;1;0
+78205;20477;1;156;66.0;110;70;1;1;0;0;0;0
+78207;15481;2;160;61.0;110;70;1;1;0;0;1;0
+78208;20565;2;167;65.0;130;80;1;1;1;1;0;0
+78209;20151;1;158;60.0;120;80;2;2;0;0;1;1
+78210;21295;1;159;86.0;110;80;3;1;0;0;1;0
+78211;21241;2;165;88.0;130;80;1;1;0;0;1;0
+78212;17337;1;163;74.0;120;80;1;1;0;0;0;0
+78214;21154;1;158;92.0;140;90;1;1;0;0;0;1
+78215;20496;1;173;64.0;110;70;2;1;0;0;0;0
+78216;18042;2;163;92.0;160;1100;1;1;0;0;0;1
+78217;18473;1;161;63.0;120;80;1;1;0;0;1;0
+78219;18917;1;153;69.0;130;90;1;1;0;0;1;0
+78220;18175;1;158;68.0;130;80;1;1;0;0;1;0
+78221;18426;2;177;82.0;140;90;3;3;0;0;0;1
+78222;19531;2;172;100.0;150;90;3;1;0;0;1;1
+78224;22552;1;150;76.0;120;80;2;3;0;0;1;0
+78225;19443;2;171;81.0;130;80;1;1;0;0;1;0
+78226;19633;2;165;69.0;120;80;1;1;0;0;0;0
+78227;17113;2;166;56.0;150;100;2;1;1;1;1;1
+78230;19679;1;152;85.0;130;80;3;1;0;0;1;1
+78231;18103;1;170;70.0;120;80;1;1;0;0;1;0
+78232;19718;1;156;60.0;120;80;1;1;0;0;1;1
+78233;19654;1;155;88.0;120;70;1;1;0;0;1;1
+78234;19425;1;160;60.0;120;80;1;1;0;0;1;0
+78235;19528;1;170;65.0;160;100;2;2;0;0;1;1
+78236;20408;2;170;76.0;120;80;1;1;0;0;1;0
+78237;18957;2;168;99.0;120;70;1;1;0;0;1;0
+78239;21495;1;160;86.0;130;80;3;1;0;0;1;1
+78240;21914;2;172;90.0;120;80;1;1;0;0;1;0
+78241;18922;1;160;57.0;120;80;1;1;0;0;1;0
+78242;23359;1;154;79.0;110;80;1;2;0;0;1;0
+78244;16980;1;157;74.0;110;70;1;1;0;0;1;0
+78245;23587;2;155;70.0;130;80;2;2;1;0;1;1
+78247;14369;1;162;78.0;110;70;2;2;0;0;1;0
+78250;19938;2;172;75.0;120;80;2;1;0;0;1;1
+78252;22741;1;151;62.0;120;80;1;1;0;0;1;1
+78253;16920;1;160;75.0;130;70;1;1;0;0;0;0
+78254;15856;1;162;98.0;190;1000;1;1;0;0;1;1
+78255;21984;1;165;65.0;120;80;1;1;0;0;1;1
+78256;22245;1;160;60.0;120;80;3;3;0;0;1;1
+78258;15462;1;156;62.0;120;80;1;1;0;0;0;0
+78259;23298;1;143;84.0;140;90;3;1;0;0;1;0
+78260;23337;2;178;95.0;120;95;1;1;0;0;0;0
+78261;17705;1;159;91.0;140;80;3;3;0;0;1;1
+78262;19856;1;161;83.0;130;80;2;1;0;0;0;1
+78264;19088;1;153;85.0;100;70;2;1;0;0;0;1
+78265;18083;1;160;58.0;120;80;1;1;0;0;1;0
+78267;16729;2;174;81.0;140;90;1;1;1;0;1;1
+78268;15365;1;165;64.0;140;80;1;1;0;0;1;1
+78269;16839;1;172;86.0;120;80;1;1;0;0;0;1
+78270;18009;1;155;82.0;130;80;1;1;0;0;1;1
+78273;18978;2;170;78.0;130;80;3;1;0;0;1;1
+78274;18332;1;165;89.0;120;80;1;1;0;0;1;0
+78275;17510;2;172;70.0;120;70;1;1;0;0;1;1
+78276;20864;2;165;66.0;170;100;3;3;0;0;1;1
+78277;15301;1;160;70.0;120;80;1;1;1;1;1;0
+78278;21219;1;158;58.0;110;80;1;1;0;0;1;1
+78279;19760;2;172;94.0;120;80;1;1;1;0;1;0
+78280;17002;1;154;54.0;100;70;1;1;0;0;1;0
+78282;19039;1;159;57.0;150;80;1;1;0;0;1;1
+78283;22780;2;167;66.0;120;70;1;1;0;0;1;1
+78286;18194;1;166;78.0;120;80;1;1;0;0;0;0
+78287;23261;1;147;82.0;160;80;3;3;0;0;0;1
+78288;15808;2;174;86.0;120;80;1;1;1;1;1;0
+78289;22710;1;162;64.0;110;70;1;1;0;0;1;0
+78290;20450;2;160;75.0;120;80;1;1;1;0;1;0
+78291;23350;1;157;59.0;120;80;1;1;0;0;1;0
+78292;23293;1;162;79.0;110;70;3;1;0;0;1;1
+78293;18493;1;164;95.0;120;80;1;1;0;0;1;1
+78294;19272;1;154;58.0;140;90;1;1;0;0;1;1
+78295;19712;2;167;65.0;170;80;2;1;0;0;1;1
+78296;22886;2;167;95.0;140;90;2;2;0;0;0;0
+78297;21848;1;161;75.0;130;80;1;1;0;0;1;0
+78298;18129;2;174;78.0;110;80;1;1;0;0;1;1
+78300;19419;2;170;84.0;140;1000;1;1;0;0;1;1
+78302;23589;1;169;74.0;120;80;1;1;0;0;1;0
+78303;22682;1;155;60.0;150;1000;2;2;0;0;1;0
+78304;17499;2;175;70.0;140;90;1;1;1;0;1;0
+78305;18395;1;158;66.0;150;80;2;3;0;0;1;1
+78307;22711;1;150;100.0;120;89;3;1;0;0;1;1
+78309;21263;1;162;95.0;130;70;1;1;0;0;1;0
+78310;16946;1;160;59.0;160;80;1;1;0;0;1;1
+78311;17605;1;164;75.0;120;80;1;1;0;0;1;0
+78312;17590;2;165;60.0;120;70;1;1;0;0;1;0
+78317;18366;1;168;75.0;120;70;2;1;0;0;0;1
+78318;16025;2;172;71.0;120;80;3;3;0;0;1;1
+78322;18898;1;157;57.0;160;1000;2;2;0;0;1;1
+78325;19256;2;175;83.0;120;80;1;2;1;0;1;1
+78326;22656;1;165;66.0;130;80;3;1;0;0;1;1
+78327;20508;2;164;57.0;160;100;1;1;0;0;1;1
+78328;17468;1;161;87.0;120;80;1;1;1;0;1;0
+78330;14500;1;162;72.0;110;70;1;1;0;0;1;1
+78331;20503;1;168;72.0;150;1000;1;1;0;0;1;0
+78332;19684;2;170;70.0;120;79;1;1;1;1;1;1
+78333;19684;1;152;87.0;130;80;3;1;0;0;1;1
+78334;18210;2;171;71.0;130;80;1;1;1;0;1;0
+78335;20540;1;170;78.0;140;80;1;1;0;0;1;1
+78336;17623;2;168;73.0;140;70;1;1;0;0;1;1
+78337;17675;1;158;85.0;150;90;1;1;0;0;0;1
+78339;20558;1;163;102.0;130;70;1;1;0;0;0;1
+78340;19266;2;170;75.0;120;80;1;1;0;0;1;0
+78341;19305;1;169;65.0;120;80;1;1;0;0;1;0
+78342;18383;1;156;80.0;120;80;1;1;0;0;1;0
+78343;16672;1;154;65.0;140;100;1;1;0;0;0;0
+78345;18224;2;160;64.0;120;80;3;1;0;0;1;1
+78346;19861;2;174;84.0;125;80;1;1;0;0;1;0
+78347;17516;1;160;53.67;160;90;1;1;0;0;1;1
+78348;22673;1;140;41.0;130;90;1;1;0;0;1;0
+78349;21252;1;163;77.0;120;80;1;1;0;0;0;1
+78352;21254;1;155;85.0;150;100;3;1;0;0;1;1
+78353;15257;2;178;90.0;130;80;3;3;0;0;1;1
+78354;19521;2;167;81.0;120;90;1;1;0;0;1;1
+78355;18967;2;174;80.0;120;79;1;1;0;0;1;0
+78357;21397;1;165;60.0;120;80;1;1;0;0;1;0
+78358;19865;2;187;89.0;130;90;1;1;0;0;1;0
+78360;19787;2;175;81.0;120;80;1;1;0;0;0;0
+78362;21040;1;161;65.0;120;70;1;1;0;0;1;0
+78363;18463;2;174;74.0;120;80;1;1;0;0;1;0
+78364;19757;1;162;56.0;130;90;1;1;0;0;0;0
+78365;19642;1;160;100.0;140;90;1;1;0;0;0;0
+78366;20498;1;164;78.0;120;80;3;1;0;0;1;1
+78367;17315;2;175;63.0;120;80;1;1;0;0;0;1
+78368;16744;1;156;53.0;120;80;1;1;0;0;1;0
+78369;21888;2;174;96.0;140;90;3;2;0;0;1;0
+78370;20332;2;160;65.0;160;100;1;1;1;1;1;1
+78372;19298;2;169;74.0;150;60;1;1;0;0;1;1
+78375;14423;1;160;89.0;100;70;1;1;1;0;0;0
+78376;19095;1;155;65.0;110;80;1;1;0;0;1;1
+78377;21894;1;156;73.0;160;100;3;1;0;0;1;1
+78380;23206;2;168;75.0;110;80;1;1;0;0;1;1
+78381;16658;2;169;78.0;140;90;1;1;0;0;1;1
+78384;19687;1;153;67.0;140;100;3;1;0;0;1;0
+78385;22469;2;165;68.0;150;100;1;1;0;0;1;1
+78386;16059;1;161;59.0;110;70;1;1;0;0;1;0
+78387;20542;1;169;79.0;12;80;1;1;0;0;1;1
+78389;15525;1;165;70.0;120;80;1;1;0;0;1;0
+78390;22604;1;168;74.0;120;80;1;3;0;0;1;1
+78391;14731;1;177;86.0;120;80;1;1;0;0;0;0
+78392;18398;2;172;82.0;120;80;2;1;1;0;1;1
+78394;15359;1;161;107.0;150;100;1;1;0;0;1;1
+78396;16340;2;168;71.0;150;90;1;1;0;0;1;1
+78397;18950;2;167;117.0;140;90;1;3;0;0;1;1
+78398;20507;1;164;65.0;120;80;1;1;0;0;1;0
+78399;15912;1;169;69.0;150;90;2;1;0;0;1;1
+78400;16747;1;163;112.0;170;90;1;1;0;0;0;1
+78401;15078;2;163;65.0;120;80;1;1;0;0;1;0
+78402;22008;2;169;95.0;15;90;2;1;0;0;1;1
+78403;18358;1;167;72.0;120;70;1;1;0;0;1;0
+78406;15382;1;155;66.0;120;60;1;1;0;0;1;1
+78408;19685;1;158;60.0;130;70;1;1;0;0;1;0
+78409;21635;1;152;70.0;140;80;3;3;0;0;1;1
+78411;20624;2;170;69.0;120;80;1;1;0;0;0;0
+78412;21338;2;167;61.0;120;80;3;1;0;0;1;1
+78413;23586;2;170;74.0;140;90;1;1;1;1;0;1
+78414;22436;2;170;70.0;120;80;1;1;0;0;1;1
+78415;18984;1;160;73.0;110;80;2;1;0;0;1;0
+78416;15403;2;172;70.0;120;70;1;1;1;1;1;0
+78417;19737;1;158;57.0;130;80;1;1;0;0;0;1
+78420;18847;2;170;65.0;110;70;1;1;1;0;1;1
+78421;16536;1;155;76.0;140;90;3;3;0;0;1;1
+78422;17503;1;154;70.0;120;80;1;1;0;0;1;1
+78423;21023;1;162;69.0;130;80;1;1;0;0;1;1
+78424;19002;2;170;72.1;120;90;1;1;0;0;0;0
+78425;20179;1;167;94.0;120;70;1;1;0;0;1;1
+78426;23268;1;153;82.0;150;90;1;2;1;0;0;1
+78428;19910;1;154;71.0;140;90;2;2;0;0;0;1
+78429;21085;1;165;74.0;130;90;2;1;0;0;1;0
+78433;16781;2;161;63.0;100;70;1;1;1;0;1;0
+78434;22179;1;170;75.0;120;80;1;1;0;0;1;1
+78435;17420;2;172;95.0;130;90;1;1;0;0;0;1
+78436;21059;1;154;50.0;110;80;2;1;0;0;1;0
+78437;19029;1;150;50.0;110;70;1;2;0;0;1;0
+78438;16628;1;153;73.0;110;70;1;1;0;0;1;0
+78439;20409;1;143;54.0;120;60;1;1;0;0;1;0
+78440;19536;1;162;81.0;120;80;1;1;0;0;1;1
+78441;20588;1;165;55.0;90;60;2;2;0;0;1;0
+78442;19491;1;169;80.0;200;160;3;3;0;0;1;0
+78443;19818;2;178;96.0;110;70;1;1;0;1;1;0
+78444;20420;1;160;84.0;120;79;1;1;1;0;1;1
+78445;22383;1;164;70.0;150;100;1;1;0;0;1;1
+78446;19774;2;160;58.0;120;80;1;1;0;0;1;0
+78448;18754;2;170;99.0;130;70;1;1;0;0;1;1
+78449;20418;1;159;59.0;120;80;2;2;0;0;1;0
+78450;19796;1;162;117.0;150;90;1;1;0;0;1;1
+78451;20456;2;163;78.0;180;100;1;1;1;1;1;1
+78453;17012;1;160;60.0;120;80;1;1;0;0;0;0
+78454;17391;1;160;50.0;110;70;1;1;0;0;1;0
+78456;20982;1;157;70.0;150;90;1;1;0;0;1;0
+78457;19568;1;150;75.0;110;70;1;1;0;0;1;0
+78459;17017;2;163;63.0;150;90;1;1;0;0;1;1
+78460;23405;1;148;60.0;150;100;1;1;0;0;1;0
+78461;21116;1;160;78.0;140;90;3;1;0;0;1;0
+78462;23379;2;179;88.0;150;90;1;1;0;0;0;0
+78463;14535;2;170;70.0;120;80;1;1;0;0;1;0
+78465;19826;1;168;95.0;120;80;1;1;0;0;1;0
+78466;16900;1;162;56.0;120;80;3;3;0;0;1;0
+78468;21919;1;156;61.0;80;130;2;2;0;0;1;1
+78470;20385;1;151;66.0;160;1000;1;1;0;0;1;1
+78472;19162;1;158;52.0;120;80;1;1;0;0;1;0
+78473;19560;1;160;83.0;100;60;1;1;0;0;0;0
+78474;20942;1;162;90.0;110;70;1;1;0;0;1;0
+78478;19178;1;170;65.0;120;80;1;1;0;0;0;0
+78479;23239;2;169;64.0;120;80;1;1;0;0;0;1
+78480;17505;2;172;75.0;120;80;2;1;0;0;1;0
+78481;21807;1;152;71.0;140;70;3;3;0;0;1;0
+78482;16691;2;168;75.0;140;90;1;1;0;0;1;0
+78484;20930;2;170;70.0;200;100;1;1;1;1;1;1
+78485;17345;1;161;101.0;90;60;1;1;0;0;1;0
+78487;19767;2;170;87.0;130;80;1;1;0;0;1;1
+78489;19649;2;167;69.0;120;80;1;1;0;0;0;1
+78491;19105;1;156;88.0;130;80;1;1;0;0;1;0
+78493;18247;2;165;66.0;123;74;2;1;0;0;1;1
+78494;17973;1;167;79.0;130;90;1;1;0;0;0;0
+78495;21140;2;165;63.0;150;80;1;1;0;0;1;1
+78496;21973;2;170;85.0;120;80;1;1;0;0;1;1
+78497;18810;1;156;83.0;120;80;1;1;0;0;1;0
+78498;15856;1;162;76.0;140;90;3;1;0;0;1;1
+78499;21955;1;159;62.0;160;100;1;1;0;0;1;1
+78500;19016;1;165;65.0;150;100;1;1;0;0;1;1
+78501;20586;1;159;75.0;120;80;1;1;0;0;1;1
+78502;22156;2;176;66.0;130;80;2;1;0;0;1;0
+78503;16910;2;180;70.0;110;70;1;1;1;1;1;0
+78505;16801;1;156;62.0;110;80;1;1;0;0;1;0
+78506;21101;2;174;82.0;120;80;1;1;0;0;1;1
+78507;23408;2;159;65.0;160;100;2;3;0;0;1;1
+78508;21934;1;160;75.0;140;90;1;1;0;0;1;1
+78509;22656;2;170;61.0;140;90;1;1;1;0;1;1
+78510;22604;2;169;75.0;120;80;1;1;1;1;1;0
+78511;20370;1;166;86.0;120;80;1;3;0;1;1;0
+78515;20539;2;178;78.0;120;80;1;1;0;0;1;1
+78516;18924;2;170;77.0;110;70;1;1;0;0;1;1
+78517;22852;1;157;87.0;120;80;1;1;0;0;1;1
+78518;19605;1;150;70.0;80;69;1;1;0;0;1;0
+78521;17386;1;150;77.0;120;80;1;1;0;0;1;1
+78522;18803;1;150;60.0;130;90;1;1;0;1;1;1
+78525;15895;1;156;69.0;120;80;1;1;0;0;1;0
+78526;21171;1;165;58.0;12;80;1;1;0;0;1;0
+78527;18281;1;156;58.0;120;80;1;1;0;0;1;1
+78528;15261;1;155;96.0;120;80;3;1;0;0;1;1
+78529;19609;2;170;105.0;130;60;1;1;0;0;1;0
+78531;19040;1;158;88.0;120;70;3;1;0;0;0;0
+78532;14678;1;163;65.0;120;80;1;1;0;0;1;0
+78533;19008;2;170;74.0;120;80;1;1;1;0;0;0
+78534;14453;1;150;46.0;110;80;1;1;0;0;0;1
+78536;15232;1;175;69.0;140;90;2;1;0;0;1;1
+78537;21858;1;159;69.0;150;90;3;3;0;0;1;1
+78540;19563;1;156;91.0;140;90;2;1;0;0;1;1
+78543;20917;2;172;65.0;110;80;1;1;0;0;0;1
+78544;23358;1;154;70.0;110;70;1;1;0;0;1;0
+78545;20533;1;162;69.0;130;80;1;1;0;0;1;1
+78546;22383;1;158;70.0;130;80;3;1;0;0;1;1
+78548;17412;2;159;74.0;120;80;2;1;1;1;1;0
+78551;19664;1;161;71.0;140;90;2;2;0;0;0;1
+78552;21801;1;157;78.0;140;80;3;3;0;0;1;1
+78554;15228;1;160;90.0;140;90;1;1;0;0;1;0
+78555;19788;2;164;67.0;140;90;3;1;0;0;1;1
+78556;18715;2;169;100.0;160;90;1;1;1;0;0;1
+78559;18149;2;170;69.0;120;90;1;1;1;0;1;1
+78560;18188;1;167;54.0;110;70;2;1;0;0;1;0
+78561;21261;1;168;59.0;110;70;1;1;0;0;1;0
+78562;21183;1;160;82.0;140;90;1;1;0;0;1;1
+78563;22595;1;165;68.0;140;90;1;1;0;0;1;1
+78565;17652;1;159;101.0;110;70;1;2;0;1;0;1
+78566;17427;2;180;85.0;110;80;1;1;0;0;1;1
+78567;16125;1;161;59.0;110;70;1;1;0;0;1;0
+78568;21076;2;161;60.0;120;80;1;1;0;1;1;0
+78569;19522;2;170;74.0;140;90;1;1;0;0;0;1
+78570;16872;1;154;75.0;120;80;1;1;0;0;1;1
+78571;21787;2;180;98.0;140;90;3;3;0;0;1;1
+78573;18933;1;157;64.0;110;70;1;1;0;0;0;0
+78574;23318;2;178;92.0;150;90;1;1;0;0;1;0
+78575;21063;1;157;95.0;100;69;1;1;0;0;0;1
+78576;22654;1;162;68.0;140;90;2;1;0;0;1;0
+78577;15414;1;165;65.0;110;70;1;1;0;0;0;0
+78578;18248;2;170;73.0;120;80;2;1;1;1;1;0
+78580;19177;2;162;64.0;160;100;1;1;0;0;0;1
+78581;15497;2;168;75.0;120;80;1;1;1;0;1;1
+78583;21931;2;174;112.0;130;80;3;1;1;0;0;1
+78585;18936;2;169;90.0;140;90;1;1;1;0;1;1
+78586;19031;1;170;70.0;140;90;1;1;0;0;0;1
+78587;20393;1;161;65.0;120;70;1;1;0;0;0;1
+78588;22838;2;188;104.0;160;100;3;3;0;0;1;1
+78589;16747;2;171;83.0;120;80;1;1;0;0;1;0
+78590;22744;1;156;52.0;120;80;1;1;0;0;1;1
+78591;19728;1;159;52.0;120;80;1;1;0;0;0;0
+78593;20674;1;160;75.0;120;70;1;1;0;0;0;0
+78596;22020;1;169;65.0;120;90;1;1;0;0;1;0
+78597;18217;1;167;75.0;150;80;1;1;0;0;1;1
+78598;21786;2;160;71.0;130;60;1;1;0;0;0;1
+78599;19487;2;182;100.0;160;100;1;1;0;0;0;1
+78600;21860;2;167;55.0;100;60;1;1;0;0;1;0
+78601;21855;1;159;61.0;160;100;1;1;0;0;1;1
+78603;20639;2;178;81.0;120;80;1;1;1;0;1;0
+78604;20209;1;158;70.0;110;80;2;1;0;0;1;0
+78605;15069;1;154;98.0;110;80;1;1;0;0;1;0
+78606;21927;1;160;58.0;130;90;1;1;0;0;0;1
+78607;15166;1;158;62.0;120;80;1;1;0;0;1;1
+78609;20574;2;170;70.0;120;80;1;1;0;0;1;1
+78610;17457;2;177;64.0;120;80;1;1;1;0;1;0
+78611;19757;1;156;56.0;140;90;1;1;0;0;1;1
+78612;19600;1;154;72.0;124;72;2;1;0;1;1;0
+78613;20434;2;169;70.0;140;90;1;1;0;0;1;0
+78615;19126;1;166;100.0;160;60;1;2;0;0;0;1
+78617;22763;2;180;70.0;120;80;1;1;1;0;1;0
+78618;21147;2;172;106.0;120;80;1;1;0;0;0;1
+78619;18119;1;160;72.0;110;80;1;1;0;0;1;0
+78621;15963;1;169;62.0;120;80;1;1;0;0;1;1
+78622;16784;2;184;80.0;120;80;1;1;0;0;1;0
+78623;17542;2;170;70.0;120;80;1;1;0;0;0;0
+78624;21056;2;167;66.0;140;90;1;1;0;0;1;1
+78625;14746;1;170;72.0;120;80;1;1;0;0;1;0
+78626;16160;2;169;63.0;120;80;1;1;0;0;1;0
+78627;18100;1;175;65.0;120;80;1;1;0;0;1;0
+78628;21984;1;163;75.0;120;80;1;1;0;0;1;0
+78631;15233;1;169;90.0;120;70;1;1;0;0;1;0
+78632;15993;2;184;96.0;12;80;1;1;0;0;1;0
+78633;16630;1;165;75.0;100;60;1;1;0;0;1;0
+78635;21895;1;159;108.0;130;70;3;1;0;0;1;1
+78636;22686;2;161;64.0;110;70;3;3;1;0;1;1
+78637;22520;2;174;82.0;130;90;3;3;0;0;1;0
+78639;19804;2;167;79.0;140;90;1;1;0;0;1;1
+78640;15536;2;175;111.0;150;100;1;1;0;0;1;1
+78642;18951;1;152;56.0;160;70;1;1;0;0;1;1
+78644;21719;1;163;99.0;140;80;1;1;0;0;1;1
+78645;16572;1;156;80.0;120;80;1;1;0;0;1;0
+78649;17485;1;154;108.0;140;100;2;2;0;0;1;0
+78650;18977;2;169;97.0;140;80;1;1;1;0;0;1
+78653;22702;2;166;106.0;145;90;3;1;0;0;1;1
+78655;19498;2;165;100.0;150;1000;3;1;0;1;1;1
+78657;18163;1;164;72.0;120;90;1;1;0;0;1;0
+78658;20263;2;182;58.0;120;80;1;1;1;1;0;0
+78659;20753;1;165;64.0;130;70;1;1;0;0;1;1
+78660;19030;1;154;53.0;110;70;1;1;0;0;1;0
+78663;21893;2;170;77.0;160;100;3;1;1;1;1;1
+78664;23250;2;171;81.0;160;120;1;1;0;0;1;1
+78665;21332;1;152;80.0;140;100;1;1;0;0;1;1
+78668;19065;1;151;48.0;100;80;1;1;0;0;0;0
+78669;19522;1;191;78.0;120;70;1;1;0;0;1;0
+78670;20228;1;161;49.0;100;60;2;2;0;0;1;0
+78673;19711;1;164;84.0;140;90;1;2;1;1;1;1
+78674;21108;1;164;76.0;120;80;1;1;0;0;1;1
+78676;20952;1;165;66.0;120;80;1;1;0;0;1;0
+78677;23220;2;168;70.0;130;80;1;1;0;0;1;0
+78678;19592;1;169;73.0;170;80;3;3;0;0;1;1
+78679;16786;2;170;92.0;125;85;1;1;0;0;1;0
+78680;15574;2;186;89.0;120;80;1;1;0;0;1;0
+78682;21123;1;168;65.0;120;80;1;1;0;0;1;1
+78684;18224;1;164;87.0;140;90;1;1;0;0;1;1
+78686;15788;2;171;70.0;120;80;1;1;0;0;0;0
+78687;21900;1;156;68.0;130;70;1;1;0;0;0;0
+78689;20402;1;160;72.0;140;80;1;1;0;0;1;0
+78691;21878;1;160;96.0;140;90;3;3;0;0;1;1
+78692;14880;2;180;84.0;120;90;2;1;0;0;0;1
+78693;22562;2;164;60.0;190;80;3;3;0;0;1;0
+78696;16753;1;155;101.0;120;80;1;1;0;0;1;0
+78697;22680;1;155;55.0;130;80;2;1;0;0;1;1
+78698;19014;1;159;72.0;110;90;1;1;0;0;1;0
+78699;18778;1;158;75.0;160;90;1;1;0;0;0;0
+78701;17600;1;155;89.0;140;100;1;1;0;0;1;0
+78703;18204;1;152;52.0;140;90;3;1;0;0;1;1
+78704;17425;2;172;101.0;130;90;2;1;0;0;0;1
+78705;14700;1;159;85.0;120;80;1;1;0;0;1;0
+78707;19661;1;153;61.0;130;90;1;1;0;0;1;0
+78708;15142;1;165;65.0;120;80;1;1;0;0;1;1
+78709;20552;2;171;72.0;130;90;2;1;1;0;1;0
+78710;19653;1;152;72.0;150;1100;1;1;0;0;0;1
+78711;18855;2;178;135.0;170;100;3;3;1;0;1;1
+78713;16823;1;160;77.0;120;80;2;1;0;0;1;0
+78714;20407;1;158;50.0;100;80;1;1;0;0;1;0
+78715;23405;1;144;87.0;140;80;1;1;0;0;1;0
+78716;20502;1;154;77.0;120;80;1;1;0;0;1;0
+78718;15274;1;158;62.0;120;80;1;1;0;0;1;0
+78720;17588;1;158;68.0;120;70;1;1;0;0;1;0
+78724;20460;1;159;66.0;105;65;1;1;0;0;1;0
+78727;19056;2;181;83.0;130;80;1;1;0;0;1;0
+78728;18099;2;158;69.0;110;80;1;1;0;0;1;0
+78729;16644;1;172;72.0;120;80;1;1;0;0;1;1
+78731;19906;1;165;65.0;120;80;1;1;0;0;1;0
+78732;19750;1;166;62.0;120;80;1;1;0;0;1;1
+78733;17529;1;167;73.0;100;60;1;1;0;0;1;0
+78735;21163;1;168;83.0;130;70;1;1;0;0;1;0
+78736;21659;2;171;70.0;140;90;2;1;0;0;1;1
+78737;20323;2;161;69.0;140;90;2;1;0;0;1;0
+78738;22713;2;176;89.0;130;80;1;3;0;0;1;0
+78739;21146;1;161;92.0;120;80;2;1;0;0;1;0
+78740;23234;1;170;66.0;120;90;1;1;0;0;1;0
+78742;19964;2;174;65.0;120;80;1;1;0;0;1;1
+78743;17554;2;174;84.0;120;80;1;1;0;0;1;0
+78744;21760;1;158;78.0;160;80;1;2;0;0;1;1
+78745;17488;1;166;75.0;120;80;1;1;0;0;1;0
+78746;20648;2;183;80.0;140;80;1;1;0;0;1;1
+78748;15420;2;172;68.0;120;80;1;3;0;0;1;0
+78750;23299;1;164;68.0;120;80;2;3;0;0;1;0
+78751;15295;1;170;58.0;110;70;1;1;0;0;0;0
+78753;21088;1;166;65.0;100;60;2;1;0;0;1;0
+78756;20457;1;159;68.0;143;80;1;1;0;0;1;1
+78757;18080;1;163;71.0;130;90;1;1;0;0;0;1
+78758;22700;2;164;64.0;130;90;3;1;0;0;1;0
+78760;18264;1;158;86.0;140;90;1;1;0;0;1;1
+78763;22466;2;165;63.0;120;80;1;1;0;0;1;0
+78764;17695;1;162;64.0;110;70;1;1;0;0;1;0
+78765;23338;2;168;84.0;120;80;1;2;0;0;1;1
+78766;15546;1;169;65.0;110;70;1;1;0;0;1;0
+78768;14670;1;171;68.0;100;70;1;1;0;0;0;0
+78769;21135;1;152;60.0;130;80;3;3;0;0;1;1
+78770;22013;1;168;79.0;120;80;1;3;0;0;1;1
+78771;18142;1;155;75.0;120;80;1;1;0;0;1;0
+78772;20522;1;158;55.0;100;70;1;1;0;0;1;0
+78773;18784;1;164;79.0;130;70;2;1;0;0;1;1
+78774;15129;1;161;72.0;140;1000;2;1;1;0;1;1
+78776;21102;1;158;107.0;150;100;1;1;0;0;1;1
+78778;19709;2;172;107.0;120;80;1;1;0;0;1;0
+78779;15203;1;164;58.0;110;70;1;1;0;0;0;0
+78780;18418;1;168;69.0;190;90;2;2;0;0;1;0
+78781;16617;1;158;50.0;130;80;2;1;0;0;1;1
+78782;23143;2;168;85.0;120;80;1;1;0;0;1;1
+78783;19065;1;168;101.0;150;100;1;1;0;0;1;1
+78784;15966;1;172;62.0;120;80;1;1;0;0;1;1
+78785;20749;2;164;69.0;120;70;1;1;0;0;1;0
+78786;21162;1;161;83.0;110;70;1;1;0;0;1;0
+78788;15990;2;164;70.0;110;70;1;1;1;0;1;0
+78790;18950;1;150;72.0;140;90;3;3;0;0;1;1
+78792;21210;1;175;80.0;140;90;3;1;0;0;1;1
+78793;19989;1;175;65.0;120;70;2;1;0;0;1;0
+78794;21205;2;168;66.0;120;80;3;3;0;0;1;1
+78795;19597;1;154;58.0;120;80;2;1;0;0;1;0
+78799;17562;2;169;59.0;140;90;2;1;0;1;1;1
+78800;22716;2;165;65.0;120;80;1;1;0;0;1;0
+78802;18225;2;185;102.0;110;70;1;1;0;0;1;0
+78803;21814;1;162;67.0;140;90;2;2;0;0;1;1
+78804;20356;2;180;80.0;120;80;3;3;0;1;1;1
+78805;20516;1;154;49.0;140;90;1;1;0;0;1;1
+78806;23539;1;173;85.0;150;90;1;1;0;0;1;1
+78807;21300;1;161;78.0;140;90;3;3;0;0;1;1
+78809;16979;2;174;75.0;110;70;1;1;0;0;1;0
+78810;15975;1;152;48.0;90;60;1;1;0;0;1;0
+78811;21775;2;197;68.0;120;80;1;1;0;0;0;1
+78812;17396;1;154;56.0;120;80;3;1;0;0;1;1
+78813;22680;1;156;86.0;120;80;1;1;0;0;0;1
+78815;22641;1;162;85.0;120;80;3;3;0;0;1;0
+78816;18324;1;168;86.0;130;80;1;3;0;0;1;0
+78818;18134;1;165;70.0;120;80;1;1;0;0;1;0
+78820;20316;1;164;84.0;110;70;2;1;0;0;1;0
+78821;14475;1;161;82.0;110;70;1;1;0;0;1;0
+78822;14664;1;162;66.0;80;60;2;1;0;0;0;1
+78823;21087;1;154;72.0;80;120;1;1;0;0;1;1
+78824;14499;2;183;59.0;110;70;2;2;0;0;1;1
+78825;22066;2;171;79.0;120;80;1;1;0;1;1;0
+78826;22395;2;163;80.0;150;90;1;1;0;0;0;1
+78829;21748;1;162;84.0;110;70;3;3;0;0;1;1
+78830;23432;1;155;96.0;150;70;1;1;0;0;0;1
+78831;22809;1;157;62.0;140;90;1;1;0;0;1;1
+78832;15315;2;178;86.0;120;80;1;1;0;0;1;0
+78833;21993;1;159;76.0;150;90;3;3;0;0;1;1
+78836;21138;2;174;94.0;130;90;2;2;0;0;1;1
+78837;18964;1;158;56.0;120;80;1;1;0;0;1;0
+78840;16553;1;159;70.0;100;70;1;3;0;0;1;0
+78841;18151;2;165;59.0;120;80;1;1;0;0;0;0
+78842;21917;1;169;69.0;140;60;1;1;0;0;1;1
+78843;22032;1;162;70.0;140;90;2;1;0;0;1;1
+78844;18483;2;160;68.0;140;100;1;1;0;0;0;0
+78845;21790;2;168;80.0;160;100;3;1;1;0;1;0
+78847;16191;1;159;72.0;120;80;1;1;0;0;0;0
+78848;15266;1;168;56.0;110;80;1;1;0;0;1;1
+78849;19661;2;167;54.0;120;80;1;1;0;0;1;0
+78850;19921;1;170;63.0;100;80;1;1;0;0;1;0
+78851;20180;2;163;75.0;130;90;1;1;1;1;0;1
+78852;22725;2;172;76.0;120;80;1;1;0;0;0;0
+78854;16045;1;166;64.0;100;70;1;1;0;0;1;0
+78855;18955;2;166;77.0;120;80;1;1;0;0;1;1
+78856;16206;2;174;69.0;120;80;1;1;0;0;1;0
+78857;21892;1;151;64.0;140;80;1;1;0;0;1;1
+78858;21835;1;164;82.0;110;70;2;1;0;0;0;0
+78861;18441;1;160;65.0;120;80;2;1;0;0;0;1
+78862;19034;1;152;70.0;120;80;1;1;0;0;1;0
+78864;19637;1;164;68.0;120;80;1;1;0;0;0;0
+78866;21269;1;167;90.0;120;80;2;1;0;0;1;0
+78867;20427;2;164;72.0;130;90;2;1;0;0;1;0
+78869;23266;1;149;56.0;140;90;1;1;0;0;1;1
+78870;16803;1;154;68.0;100;70;1;1;0;0;1;0
+78873;20323;1;168;68.0;130;1900;1;1;0;0;1;0
+78874;15965;2;168;70.0;120;80;1;1;0;0;1;0
+78876;14775;2;164;60.0;140;90;1;1;0;0;1;1
+78879;19586;2;170;58.0;120;90;3;3;0;0;1;0
+78881;20710;2;180;85.0;130;80;1;1;0;0;1;1
+78884;18967;2;161;76.0;130;85;1;1;0;0;1;1
+78885;16091;1;168;98.0;140;90;1;1;0;0;1;1
+78886;21921;1;165;65.0;120;80;3;3;0;0;0;1
+78888;19540;1;161;102.0;140;90;1;1;0;0;1;1
+78890;19492;2;168;73.0;90;60;2;2;0;0;0;0
+78891;19630;1;165;78.0;130;80;2;1;0;0;1;0
+78892;15983;1;160;57.0;110;70;1;1;0;0;0;0
+78893;18347;1;167;69.0;120;80;3;1;0;0;1;1
+78896;20446;2;169;71.0;120;80;1;1;0;0;0;1
+78897;15938;1;160;75.0;120;80;1;1;0;0;1;0
+78898;18356;2;165;55.0;120;80;1;1;0;0;1;0
+78899;21685;2;170;65.0;120;80;1;1;0;0;1;0
+78900;19746;1;164;75.0;110;70;1;1;0;0;1;0
+78902;20478;2;172;82.0;140;90;1;2;0;0;1;1
+78904;14510;1;160;60.0;140;90;1;1;0;0;1;1
+78905;22369;1;148;55.0;100;160;3;3;0;0;1;1
+78909;16024;1;163;59.0;120;90;1;1;0;0;1;0
+78910;20239;1;160;73.0;110;70;1;1;0;0;1;0
+78911;15491;1;160;70.0;120;80;1;1;0;0;1;0
+78912;23390;1;158;82.0;135;90;1;1;0;0;1;1
+78913;23250;1;155;83.0;130;80;2;1;0;0;1;0
+78914;21249;1;162;66.0;120;80;1;1;0;0;1;0
+78916;21102;1;153;79.0;140;80;2;1;0;0;0;0
+78917;15491;1;161;74.0;110;70;1;1;0;0;1;0
+78918;19830;2;174;89.0;100;80;1;1;0;0;1;0
+78919;23531;1;155;70.0;140;90;2;1;0;0;1;1
+78920;15145;1;158;52.0;110;80;1;1;0;0;1;0
+78921;15911;2;172;69.0;140;80;1;3;1;0;1;0
+78922;23579;2;165;69.0;140;90;2;1;0;0;1;1
+78925;21883;2;171;73.0;120;80;1;1;0;0;1;0
+78926;16256;1;153;49.0;100;70;1;1;0;0;1;0
+78927;18198;1;167;66.0;110;70;1;1;0;0;1;0
+78928;20478;2;165;65.0;90;60;3;1;1;0;1;0
+78929;22713;1;156;66.0;119;74;1;1;0;0;0;1
+78930;17451;2;165;62.0;135;70;1;1;0;0;1;1
+78931;23421;2;174;90.0;120;80;3;1;0;0;0;1
+78932;18839;1;169;72.0;130;90;1;1;0;0;1;1
+78933;18131;1;165;72.0;120;80;1;1;0;0;1;0
+78934;21223;2;170;68.0;150;90;3;1;1;0;0;1
+78935;19788;2;163;68.0;140;80;2;1;0;0;1;1
+78936;23593;1;155;54.0;130;80;1;1;0;0;1;0
+78938;20330;1;160;71.0;120;60;1;1;0;0;1;1
+78939;22528;1;156;110.0;160;80;2;1;0;0;1;1
+78940;23562;1;147;39.0;120;80;1;1;0;0;1;1
+78942;18710;1;165;84.0;125;80;3;1;0;0;1;1
+78944;21179;2;178;107.0;150;90;3;1;0;0;1;1
+78945;20302;1;160;45.0;130;90;1;1;0;0;0;1
+78948;18857;1;165;73.0;120;80;1;1;0;0;1;0
+78952;20372;1;161;77.0;110;70;1;1;0;0;0;0
+78953;18223;2;171;87.0;111;76;2;1;1;0;1;0
+78954;19818;2;172;75.0;120;80;1;1;0;0;1;0
+78955;16165;1;165;65.0;120;80;1;1;0;0;0;1
+78957;23513;1;163;70.0;120;80;1;1;0;0;1;1
+78962;22548;2;170;72.0;130;80;1;3;0;0;1;1
+78964;18833;1;156;85.0;140;90;2;2;0;0;0;1
+78965;18953;1;162;67.0;100;60;2;1;0;0;1;1
+78966;23114;2;180;70.0;140;80;1;1;1;0;0;1
+78967;22462;1;148;57.0;120;80;1;1;0;0;1;1
+78968;16122;1;156;81.0;140;80;1;1;0;0;0;1
+78971;18140;1;166;66.0;120;80;1;1;0;0;1;0
+78972;21815;1;166;69.0;120;80;1;1;0;0;1;1
+78973;18256;2;165;69.0;120;80;1;1;1;0;1;0
+78974;19666;1;165;58.0;120;80;1;1;0;0;1;0
+78975;20179;2;164;92.0;140;100;1;1;0;0;0;0
+78976;15912;1;169;53.0;140;80;1;1;0;0;1;1
+78978;18273;1;159;50.0;120;79;1;1;0;0;1;0
+78979;18031;1;160;61.0;120;80;1;1;0;0;1;0
+78982;19494;2;168;80.0;140;90;1;1;1;0;1;1
+78983;22537;2;160;60.0;140;80;1;1;0;0;1;1
+78984;21866;1;160;66.0;110;80;1;1;0;0;1;0
+78985;15961;1;155;55.0;130;80;1;1;0;0;0;1
+78986;16616;2;165;90.0;110;90;1;1;0;0;1;0
+78988;18206;2;174;77.0;120;80;1;1;0;0;1;0
+78989;22765;2;170;68.0;120;80;1;1;1;1;1;0
+78990;19140;2;167;85.0;170;90;1;1;1;0;1;1
+78991;15253;1;156;61.0;130;90;1;1;0;0;1;1
+78993;22508;1;154;110.0;120;80;1;1;0;0;1;0
+78995;22702;2;161;53.0;140;100;1;1;0;0;1;1
+78996;18113;1;157;65.0;130;80;1;1;0;0;1;1
+78998;16844;2;170;77.0;120;80;2;2;0;0;1;0
+78999;18413;2;180;80.0;110;70;1;1;0;1;0;0
+79000;21226;1;156;81.0;120;90;1;1;0;0;0;1
+79001;20607;1;156;66.0;130;90;1;1;0;0;1;0
+79002;23464;1;147;76.0;140;90;1;2;0;0;0;0
+79003;16560;1;174;75.0;120;80;1;1;0;0;1;0
+79004;18944;1;160;75.0;120;80;1;1;0;0;0;1
+79005;14573;2;172;65.0;140;90;1;1;0;0;1;1
+79006;21049;1;169;62.0;120;80;1;3;0;0;1;0
+79009;18208;1;167;79.0;140;90;1;1;0;0;1;1
+79011;20457;2;171;64.0;120;80;1;1;1;0;1;0
+79013;21982;2;169;71.0;120;80;2;2;0;0;1;1
+79014;20376;2;125;49.0;110;70;1;1;0;0;1;0
+79016;20166;1;150;61.0;140;80;3;1;0;0;1;1
+79017;20317;2;169;89.0;120;80;1;1;0;0;1;0
+79018;22726;1;156;65.0;130;70;2;1;0;0;1;1
+79019;16722;2;168;75.0;150;1100;1;1;0;0;1;1
+79021;17562;2;172;62.0;120;79;2;1;0;0;1;0
+79022;14725;1;173;80.0;12;80;2;1;0;0;1;1
+79023;16503;1;174;109.0;160;90;1;1;0;0;0;1
+79024;22752;1;158;70.0;140;80;1;1;0;0;0;1
+79025;22505;2;169;65.0;120;80;3;3;0;0;1;1
+79026;18468;2;176;106.0;130;80;1;2;0;0;1;0
+79029;21927;1;166;105.0;140;80;3;1;0;0;1;0
+79032;20247;2;170;72.0;120;80;1;1;0;1;1;1
+79033;20976;1;162;57.0;130;90;2;2;0;0;1;1
+79034;18269;2;175;83.0;160;100;1;1;1;0;1;1
+79036;22488;1;160;82.0;140;60;1;1;0;0;0;0
+79037;21178;1;158;56.0;110;80;1;2;0;0;1;0
+79038;18968;1;152;83.0;95;135;3;3;1;1;1;1
+79039;18292;1;167;60.0;120;80;1;1;0;0;0;1
+79041;18841;1;164;89.0;120;80;3;1;0;0;1;1
+79042;19199;1;170;75.0;120;80;1;1;0;0;1;0
+79043;23107;2;182;78.0;160;90;3;2;1;0;1;1
+79045;21365;1;167;68.0;150;90;1;1;0;0;0;1
+79046;16109;1;163;65.0;120;80;1;1;0;0;1;1
+79047;18141;1;168;73.0;110;70;1;1;0;0;1;0
+79049;14811;1;165;81.0;80;60;1;1;0;0;0;0
+79051;22055;1;153;81.0;120;80;3;1;0;0;1;1
+79052;21444;1;152;95.0;120;70;1;1;0;0;1;0
+79054;20971;1;152;66.0;140;90;3;2;0;0;1;1
+79056;18938;2;175;65.0;140;100;2;2;0;0;0;0
+79057;23291;2;168;86.0;120;80;1;1;0;0;1;1
+79058;20754;2;169;68.0;120;80;1;1;0;0;1;1
+79060;21316;2;164;52.0;120;80;2;2;1;0;1;0
+79061;15394;2;175;90.0;130;80;1;1;1;0;1;0
+79062;20936;2;166;59.0;110;70;1;1;0;0;1;0
+79063;14588;1;161;87.0;130;90;1;1;0;0;1;0
+79064;18228;1;165;58.0;120;79;1;1;0;0;1;0
+79065;16949;2;165;74.0;120;80;1;1;0;0;1;0
+79066;16036;1;165;125.0;160;100;1;2;0;0;0;0
+79067;15146;1;156;80.0;125;80;1;1;0;0;1;0
+79068;15268;1;160;61.0;120;80;1;1;0;0;1;1
+79069;18037;1;159;55.0;110;70;1;1;0;0;1;0
+79071;18372;2;165;65.0;110;70;1;1;0;0;1;0
+79074;14608;2;178;79.0;120;80;1;1;1;0;0;1
+79076;18020;1;156;87.0;120;80;3;1;0;0;1;1
+79077;19035;2;169;70.0;120;80;1;1;0;0;1;0
+79081;21742;1;172;75.0;140;80;1;1;0;0;1;1
+79082;21237;1;158;72.0;130;80;1;1;0;0;1;1
+79083;20478;2;176;81.0;140;80;1;1;0;0;0;1
+79084;20513;1;168;68.0;120;80;1;1;0;0;1;0
+79085;18136;1;159;63.0;120;80;1;1;0;0;1;0
+79086;14590;1;172;81.0;100;60;1;1;0;0;1;0
+79087;16688;1;156;77.0;120;80;1;1;0;0;1;0
+79088;18268;1;157;92.0;120;80;1;1;0;0;1;0
+79092;18895;1;152;88.0;150;100;1;1;0;0;1;1
+79094;22738;2;168;67.0;150;90;1;1;0;0;1;1
+79095;21339;1;158;64.0;120;80;1;1;0;0;1;0
+79096;20714;2;159;65.0;120;80;1;1;0;0;1;0
+79099;16788;1;163;90.0;110;80;1;1;0;0;1;1
+79100;14776;1;164;68.0;120;80;1;1;0;0;0;0
+79101;22517;1;150;55.0;110;60;1;1;0;0;1;1
+79102;19830;1;156;81.0;130;80;3;1;0;0;1;1
+79104;19781;1;163;95.0;140;90;1;1;0;0;1;1
+79105;19749;1;161;57.0;120;80;1;1;0;0;1;0
+79106;18928;1;174;65.0;120;80;1;1;0;0;1;0
+79108;18827;1;162;69.0;130;70;1;1;0;0;1;0
+79110;20428;2;165;59.0;110;70;1;1;0;0;1;1
+79111;18727;2;170;82.0;140;90;1;1;0;0;1;1
+79112;20341;1;165;67.0;110;70;2;2;0;0;0;1
+79113;20952;1;172;77.0;140;90;3;1;0;0;1;1
+79114;15182;1;168;71.0;120;80;1;1;0;0;1;0
+79115;14336;1;165;61.0;90;60;1;1;0;0;1;0
+79116;18307;1;152;76.0;13010;80;2;2;0;0;1;1
+79117;15377;2;170;58.0;110;80;1;1;0;0;1;0
+79119;21080;1;159;53.0;130;80;3;1;0;0;1;1
+79120;20456;1;152;56.0;140;80;1;1;0;0;1;0
+79121;23327;2;163;80.0;140;100;3;3;0;0;1;1
+79122;21281;1;156;63.0;130;70;1;1;0;0;0;0
+79123;19570;1;156;100.0;120;80;1;1;0;0;1;1
+79124;18866;1;151;69.0;110;70;1;1;0;0;1;0
+79126;17300;1;160;65.0;120;80;2;1;0;0;1;0
+79127;14518;2;167;93.0;130;80;1;1;1;0;1;0
+79128;19629;1;155;58.0;120;80;1;1;0;0;1;0
+79129;22718;2;172;75.0;120;80;1;3;0;0;1;1
+79130;21740;1;161;71.0;145;90;2;1;0;0;1;1
+79132;18884;1;162;62.0;110;60;1;1;0;0;0;0
+79133;23430;2;161;64.0;150;90;1;1;0;0;1;0
+79135;18524;2;165;65.0;120;80;1;1;0;0;1;0
+79139;15443;1;162;99.0;120;80;2;1;0;0;0;0
+79140;21974;1;152;50.0;110;70;2;2;0;0;1;0
+79142;19783;2;164;80.0;120;80;2;2;0;1;1;0
+79143;23357;1;160;82.0;120;80;1;1;0;0;1;1
+79144;19045;2;178;65.0;120;80;1;1;0;0;0;1
+79146;22584;1;165;56.0;120;80;1;1;0;0;1;0
+79147;18115;1;163;63.0;120;80;1;2;0;0;1;0
+79149;17394;1;157;84.0;125;85;3;3;0;0;0;0
+79150;20484;2;170;60.0;120;70;1;1;1;1;1;0
+79151;21184;1;158;78.0;130;90;3;1;0;0;0;0
+79154;21305;2;162;62.0;130;80;1;1;0;0;1;0
+79156;18111;1;164;90.0;140;1000;3;1;0;0;1;1
+79157;19993;2;175;70.0;110;70;1;1;0;0;1;0
+79158;21224;2;178;95.0;150;90;1;1;0;0;1;1
+79160;21749;1;167;58.0;130;100;1;1;0;0;1;1
+79161;22767;1;165;65.0;120;80;1;1;0;0;0;1
+79163;18107;1;165;58.0;160;90;1;1;0;0;1;1
+79164;18397;2;170;68.0;180;100;2;1;0;0;1;1
+79165;21962;2;170;65.0;120;80;1;1;0;0;0;0
+79167;21843;2;170;82.0;120;90;2;1;0;0;1;0
+79169;16015;1;167;65.0;120;80;1;1;0;0;0;1
+79170;22463;1;160;64.0;120;80;1;1;0;0;1;1
+79171;20614;1;171;74.0;150;100;1;3;0;0;1;1
+79174;14621;2;169;81.0;160;100;1;1;0;0;1;1
+79177;19008;2;174;85.0;120;80;1;1;0;0;0;1
+79178;23129;2;176;77.0;130;80;2;1;1;0;1;1
+79179;18982;1;160;65.0;120;70;1;1;0;0;1;1
+79180;16118;1;165;72.0;140;80;1;2;0;0;1;1
+79182;14498;2;170;74.0;120;80;1;1;0;0;1;0
+79185;23416;1;167;66.0;140;90;1;1;0;0;1;1
+79186;18335;1;160;58.0;160;80;2;2;0;0;1;0
+79187;16129;2;158;56.0;120;80;1;1;0;0;1;1
+79188;20525;1;164;66.0;140;90;1;1;0;0;1;0
+79189;22737;2;168;90.0;120;80;1;1;0;0;1;1
+79191;21669;1;165;72.0;140;100;1;1;0;0;1;1
+79192;21376;2;163;70.0;120;60;1;1;0;0;1;1
+79193;20432;1;165;65.0;120;80;2;1;0;0;1;1
+79194;15263;1;154;113.0;120;90;1;1;0;0;1;1
+79195;18994;1;156;67.0;140;80;1;1;0;0;0;1
+79197;16960;2;186;95.0;120;80;1;1;0;0;1;0
+79198;14511;1;165;70.0;110;70;1;1;0;0;0;0
+79201;19978;1;160;83.0;190;120;2;1;0;0;1;0
+79202;21035;2;167;70.0;120;80;1;1;0;0;1;0
+79205;17793;1;160;72.0;120;70;1;1;0;0;1;0
+79206;19851;1;165;70.0;120;80;1;1;0;0;1;0
+79207;14573;2;179;80.0;140;90;3;3;0;0;1;1
+79211;21404;1;169;68.0;130;90;3;3;0;0;1;1
+79213;20413;1;175;68.0;120;80;1;1;0;0;1;0
+79214;23173;1;156;82.0;140;80;3;3;0;0;0;1
+79215;21180;2;158;63.0;120;80;1;1;0;0;1;1
+79216;20460;1;152;60.0;180;100;2;3;0;0;1;1
+79218;18771;2;165;60.0;120;80;1;1;0;0;1;1
+79219;20662;1;170;60.0;110;70;1;1;0;0;0;0
+79221;15453;1;164;62.0;120;80;1;1;0;0;0;0
+79223;14683;1;166;82.0;110;70;1;1;0;0;0;0
+79225;20608;1;158;98.0;120;80;1;1;0;0;1;1
+79226;18313;1;148;61.0;120;80;1;1;0;0;1;0
+79227;23318;1;164;97.0;140;100;2;2;0;0;0;0
+79229;23672;1;160;60.0;120;80;1;1;0;0;1;1
+79230;18944;2;174;100.0;120;80;1;1;0;0;0;0
+79234;20246;2;178;93.0;120;80;1;3;0;0;1;0
+79235;20327;2;185;86.0;140;100;3;1;0;0;0;0
+79236;22668;2;157;80.0;120;80;1;1;1;0;1;0
+79237;17352;2;170;65.0;130;90;1;1;0;0;1;1
+79238;16608;1;165;93.0;120;80;1;1;0;0;1;1
+79239;19063;2;170;69.0;110;70;1;1;0;0;1;1
+79240;23331;1;158;60.0;120;80;1;1;0;0;0;1
+79241;19707;1;152;72.0;120;80;3;3;0;0;1;0
+79242;23184;1;169;105.0;160;90;1;1;0;0;1;1
+79243;21751;1;155;80.0;120;80;1;1;0;0;1;1
+79244;21683;2;182;100.0;120;79;1;1;0;0;1;1
+79248;16785;1;155;66.0;180;100;1;1;0;0;1;1
+79250;17714;2;171;83.0;120;80;1;1;0;0;1;1
+79252;19841;1;164;88.0;120;80;1;1;0;0;1;0
+79255;18280;2;163;86.0;120;80;1;1;1;0;1;0
+79256;16875;1;165;68.0;120;80;1;1;0;0;1;0
+79260;21643;2;178;104.0;150;90;2;2;0;0;1;1
+79261;16676;2;166;67.0;120;80;1;1;0;0;1;1
+79262;17427;1;158;96.0;140;90;1;1;0;0;1;1
+79263;19145;2;160;60.0;120;80;1;1;0;0;1;0
+79264;15955;2;166;97.0;120;80;2;1;0;0;1;1
+79266;15161;1;159;70.0;130;70;1;1;0;0;1;0
+79270;17603;1;162;51.0;110;70;1;1;0;0;1;0
+79273;19762;1;164;68.0;130;80;1;1;0;0;1;1
+79274;21070;2;169;70.0;120;80;1;2;0;0;1;0
+79275;18284;1;155;63.0;110;80;1;2;0;1;1;0
+79276;16814;2;172;61.0;120;80;1;1;0;0;1;0
+79277;17783;1;156;55.0;120;70;1;1;0;0;0;0
+79278;21177;1;165;82.0;140;80;2;1;0;0;1;1
+79281;17237;1;158;72.0;140;80;1;3;0;0;1;0
+79282;22685;1;159;60.0;150;90;1;1;0;0;1;1
+79284;21893;2;173;65.0;120;80;1;1;0;0;1;0
+79285;23113;1;160;86.0;130;90;1;1;0;0;1;1
+79287;21096;1;151;65.0;100;80;1;1;0;0;1;0
+79288;15485;2;173;85.0;120;80;1;1;0;0;1;1
+79289;18195;1;163;98.0;110;70;1;1;0;0;1;0
+79290;16828;2;166;68.0;140;80;1;1;0;0;1;1
+79292;21156;1;166;67.0;125;80;1;1;0;0;1;0
+79293;16932;1;169;67.0;120;80;1;1;0;0;1;0
+79294;19762;1;168;70.0;110;80;1;1;1;0;1;0
+79296;21715;1;163;84.0;130;90;1;1;0;0;1;1
+79297;23214;2;173;85.0;150;100;1;1;0;0;1;1
+79298;21704;1;158;84.0;120;80;1;1;0;0;1;1
+79299;21188;2;160;70.0;140;90;1;1;0;0;1;1
+79301;21179;1;153;60.0;150;90;1;1;0;0;1;1
+79302;20399;1;153;63.0;130;80;1;1;0;0;1;0
+79303;22577;1;160;72.0;110;70;2;1;0;0;1;0
+79305;21900;1;168;68.0;150;90;1;1;0;0;1;1
+79306;18849;1;162;56.0;120;80;3;3;0;0;1;0
+79307;22921;2;158;79.0;150;100;1;1;0;0;1;1
+79308;23260;1;158;68.0;130;80;1;1;0;0;1;0
+79311;16159;2;157;58.0;110;70;1;1;0;0;1;0
+79312;23519;2;172;77.0;140;90;2;2;1;1;1;1
+79314;21264;2;165;81.0;130;90;1;2;0;0;1;0
+79315;17421;1;165;70.0;130;90;1;2;0;0;1;1
+79316;18896;1;156;63.0;120;80;1;1;0;0;1;1
+79318;23215;1;170;53.0;120;80;1;1;0;0;1;1
+79320;17622;2;174;70.0;110;80;1;1;1;0;1;1
+79321;21985;1;160;65.0;140;90;1;1;0;0;1;1
+79322;16846;2;175;80.0;120;80;1;1;0;0;1;1
+79323;23217;1;165;60.0;120;80;1;1;0;0;1;0
+79324;14333;1;165;133.0;180;100;3;3;0;0;0;1
+79325;18885;2;170;76.0;110;80;1;1;0;0;0;0
+79328;18198;1;160;76.0;110;70;1;1;0;0;1;1
+79329;23168;1;162;95.0;150;90;2;1;0;0;1;1
+79330;17255;1;159;100.0;120;80;2;1;0;0;0;1
+79331;22626;2;174;74.0;120;80;1;1;0;0;1;0
+79332;18868;2;170;80.0;130;90;3;1;1;0;1;1
+79334;20350;1;172;69.0;130;90;1;1;0;0;1;0
+79335;16578;1;150;52.0;120;80;1;1;0;0;1;0
+79337;14749;2;168;78.0;140;90;1;1;1;0;1;1
+79338;18984;2;178;88.0;140;100;1;1;0;0;1;1
+79340;20510;2;171;82.0;120;80;3;1;0;0;1;0
+79341;21393;2;176;69.0;140;80;1;1;0;1;0;1
+79342;21275;1;165;65.0;120;90;1;1;0;0;1;1
+79344;20715;1;161;91.0;140;90;1;1;0;0;1;1
+79345;16973;1;165;62.0;110;70;1;1;0;0;0;0
+79347;16057;1;162;60.0;100;60;1;1;0;0;1;0
+79348;19120;2;180;82.0;120;70;1;1;0;0;0;0
+79349;20441;1;157;81.0;140;80;1;1;0;0;1;1
+79350;21119;2;169;72.0;120;80;2;2;0;0;1;0
+79351;16799;1;160;60.0;130;90;1;1;0;0;0;0
+79352;22032;1;163;80.0;110;90;1;1;0;0;1;1
+79354;22682;1;143;67.0;120;60;2;1;0;0;1;1
+79356;23261;2;168;94.0;160;90;3;3;0;0;1;1
+79358;20569;1;161;71.0;130;80;1;1;0;0;1;0
+79361;19570;1;156;78.0;140;80;1;1;0;0;1;1
+79362;21133;1;160;80.0;120;90;1;1;0;0;1;1
+79363;22466;1;161;94.0;120;80;3;1;0;0;1;1
+79364;18287;1;174;130.0;120;80;1;1;0;0;1;0
+79365;21984;1;147;51.0;120;60;1;1;0;0;0;0
+79366;21070;1;160;68.0;140;90;1;1;0;0;1;1
+79367;19691;2;176;74.0;120;80;1;1;0;0;0;1
+79368;22187;1;167;56.0;120;80;3;3;0;0;1;1
+79369;17982;1;160;74.0;140;90;2;1;0;0;0;1
+79370;14665;2;163;69.0;100;70;1;1;1;0;1;0
+79372;21825;1;162;70.0;120;80;1;1;1;0;1;1
+79373;16121;1;156;65.0;110;70;1;1;0;0;1;1
+79374;16525;1;154;56.0;100;70;2;2;0;0;1;1
+79375;15095;1;163;65.0;150;50;1;2;0;0;1;0
+79376;19170;1;156;84.0;140;90;2;1;0;0;0;1
+79377;22430;1;158;93.0;120;80;1;1;0;0;1;1
+79378;19149;1;171;86.0;120;80;1;1;0;0;0;1
+79379;15323;1;154;90.0;110;70;1;1;0;0;1;0
+79381;22665;2;168;76.0;150;90;1;2;0;1;1;0
+79382;22376;2;165;73.0;150;80;1;1;0;0;0;1
+79385;18082;1;153;81.0;120;80;1;1;0;0;1;0
+79386;18954;1;167;72.0;130;80;1;1;0;0;0;1
+79391;14931;1;164;74.0;120;80;1;1;0;0;1;0
+79392;20546;2;168;92.0;150;100;2;1;1;0;1;1
+79393;21370;1;162;68.0;120;80;1;2;0;0;1;0
+79394;19773;1;169;75.0;150;90;1;2;0;0;1;1
+79397;21284;2;161;85.0;140;80;2;2;0;0;1;1
+79398;18190;1;160;100.0;140;80;3;3;0;0;1;0
+79399;19076;2;176;67.0;120;80;1;1;1;0;1;0
+79402;21796;1;168;126.0;120;80;2;2;0;0;0;1
+79403;15310;1;160;55.0;110;70;3;1;0;0;0;0
+79404;21361;1;162;90.0;140;90;2;1;0;0;0;1
+79405;16966;2;172;65.0;130;80;1;1;1;1;1;0
+79406;20936;1;150;72.0;160;90;2;2;0;0;1;1
+79408;23201;2;178;65.0;140;90;3;1;0;0;1;1
+79410;21866;2;174;88.0;120;80;3;3;0;0;1;1
+79411;20960;1;165;65.0;120;80;3;3;0;0;0;0
+79413;20257;2;168;80.0;140;90;1;1;0;0;1;1
+79414;21999;2;180;95.0;140;80;2;1;0;1;1;1
+79418;16130;1;152;51.0;120;80;1;1;0;0;1;0
+79421;21939;1;154;76.0;120;80;1;1;0;0;1;1
+79423;21658;1;155;56.0;120;70;1;1;0;0;1;1
+79427;18264;1;165;60.0;110;70;1;1;0;0;1;0
+79428;20494;1;165;73.0;130;90;2;1;0;0;0;1
+79431;15408;2;175;80.0;140;80;1;1;1;0;1;1
+79432;17537;1;166;89.0;100;70;2;1;0;0;1;0
+79434;22689;2;169;74.0;120;80;1;1;0;0;1;1
+79435;18784;1;158;60.0;130;80;1;1;0;0;1;0
+79436;19637;2;162;66.0;110;70;1;1;0;0;1;0
+79437;23255;1;152;63.0;130;80;1;1;0;0;0;1
+79438;14674;1;152;68.0;100;60;2;1;0;0;1;0
+79439;18312;1;153;53.0;150;103;1;1;0;0;1;1
+79441;17497;1;165;68.0;120;80;1;1;0;0;1;0
+79443;18848;2;178;73.0;120;80;1;1;0;0;1;0
+79444;19159;1;156;62.0;120;70;1;1;0;0;1;1
+79446;19240;1;182;81.0;110;70;1;1;0;0;1;1
+79450;18326;1;151;53.0;120;90;1;1;0;0;1;0
+79452;15906;2;182;70.0;120;69;1;1;0;0;1;0
+79453;20334;1;164;72.0;115;80;2;1;0;0;1;0
+79454;22374;1;156;76.0;190;100;1;1;0;0;1;0
+79456;16176;1;160;70.0;150;100;1;1;0;0;1;1
+79458;16196;1;171;67.0;110;70;1;1;0;0;1;0
+79459;21701;1;170;85.0;120;80;2;1;0;0;0;0
+79460;21045;1;158;71.0;120;80;1;1;0;0;0;0
+79462;17504;2;174;66.0;100;80;1;1;0;0;1;1
+79463;19905;1;166;64.0;120;80;1;1;0;0;0;0
+79464;20346;2;167;70.0;160;100;2;1;0;0;0;1
+79465;21182;1;174;76.0;140;90;3;3;0;0;1;1
+79466;22383;1;146;69.0;130;80;1;1;0;0;0;1
+79467;21768;1;166;102.0;130;80;3;1;0;0;1;0
+79468;16841;1;160;98.0;140;90;1;1;0;0;1;1
+79469;18287;1;162;67.0;120;70;1;1;0;0;1;0
+79472;18143;1;161;65.0;160;90;1;1;0;0;1;1
+79473;21167;1;160;58.0;120;80;1;1;0;0;1;1
+79474;23157;1;146;47.0;140;90;3;1;0;0;1;1
+79475;18728;1;170;87.0;120;80;1;1;0;0;1;1
+79477;23266;1;165;100.0;140;90;3;1;0;0;1;1
+79478;21920;2;157;81.0;110;70;1;1;0;0;1;0
+79480;23137;1;164;100.0;140;80;3;3;0;0;1;1
+79481;15900;1;170;82.0;120;80;2;1;0;0;1;1
+79483;23149;1;156;62.0;120;70;1;2;0;0;1;1
+79484;22161;1;153;60.0;140;80;3;1;0;0;1;1
+79486;23316;2;168;64.0;110;80;2;1;0;0;1;0
+79487;18071;1;168;102.0;120;80;1;1;0;0;1;1
+79488;19497;2;169;75.0;120;80;1;1;0;0;1;0
+79489;21287;2;174;69.0;120;80;3;3;0;0;0;1
+79490;18112;1;146;45.0;110;80;1;1;0;0;0;1
+79491;21980;2;168;57.0;110;70;1;1;0;0;1;1
+79492;19874;1;161;90.0;120;80;1;1;0;0;1;0
+79495;19614;1;162;71.0;140;90;1;1;0;0;1;1
+79498;19830;1;172;70.0;150;90;2;1;0;0;1;1
+79500;16547;2;167;93.0;140;100;2;1;0;0;0;1
+79501;19797;1;165;69.0;120;80;1;1;0;0;1;0
+79502;18340;1;157;54.0;120;70;1;1;0;0;1;0
+79505;20470;1;166;60.0;120;80;1;1;0;0;1;0
+79507;18966;1;150;60.0;120;80;1;1;0;0;0;0
+79508;19841;1;157;62.0;190;80;1;1;0;0;1;1
+79509;21810;1;169;70.0;130;70;1;1;1;0;0;1
+79511;19565;1;153;43.0;120;70;1;1;0;0;1;1
+79512;18151;1;163;74.0;120;79;1;1;1;0;1;0
+79513;20541;1;167;70.0;120;80;1;1;0;0;1;0
+79514;21308;1;156;68.0;130;80;3;3;0;0;1;1
+79515;19712;2;175;63.0;160;110;1;2;0;0;1;1
+79517;15808;1;172;105.0;140;80;1;1;0;1;1;1
+79518;19006;2;158;67.0;130;80;1;1;1;0;1;0
+79519;17493;2;180;79.0;130;70;1;1;0;0;1;0
+79520;20436;1;162;63.0;130;90;2;1;0;0;1;1
+79522;21915;2;160;69.0;150;80;1;1;0;0;1;1
+79523;22584;1;176;115.0;130;70;2;1;0;0;1;1
+79525;23313;2;171;68.0;180;100;1;1;0;0;1;1
+79526;21093;1;160;80.0;150;80;1;1;0;0;1;1
+79527;21153;1;158;60.0;140;90;1;1;0;0;1;1
+79528;15372;2;178;80.0;120;69;1;1;0;0;1;0
+79529;14816;2;176;68.0;120;79;1;1;0;0;1;0
+79530;23488;2;170;75.0;120;80;1;1;0;0;1;1
+79531;15254;2;155;55.0;120;80;1;1;0;0;1;0
+79533;19733;1;158;56.0;120;90;1;2;0;0;0;1
+79535;19791;2;162;78.0;140;90;2;1;1;0;1;1
+79537;19495;2;172;80.0;130;90;1;1;0;0;1;0
+79538;19576;1;169;67.0;150;90;1;1;0;0;1;1
+79540;18312;2;169;65.0;110;70;1;1;1;1;1;0
+79542;15982;2;180;81.0;110;70;1;1;1;0;1;0
+79543;17656;1;158;65.0;150;90;2;1;0;0;1;0
+79544;19589;1;152;66.0;140;90;3;3;0;0;1;0
+79546;15588;1;165;60.0;140;90;2;1;0;0;1;1
+79547;20471;1;161;77.0;120;80;1;1;0;0;1;0
+79548;17297;1;158;74.0;120;80;1;1;0;1;1;0
+79550;20667;1;170;76.0;130;90;1;1;0;0;1;1
+79551;17321;1;159;62.0;120;80;1;1;0;0;1;0
+79552;23284;1;157;74.0;150;90;2;1;0;0;1;1
+79553;21920;1;161;63.0;200;130;1;1;0;0;1;1
+79554;19619;1;172;87.0;130;80;1;1;0;0;1;0
+79555;21302;1;151;68.0;103;64;1;1;0;0;1;0
+79557;21842;1;165;89.0;140;90;1;1;0;0;1;1
+79558;18299;2;178;102.0;110;70;1;2;0;0;1;1
+79559;15277;1;160;68.0;125;80;3;1;0;0;1;1
+79560;18035;1;157;60.0;120;70;1;1;0;0;0;0
+79561;15398;2;175;75.0;120;80;1;1;0;0;1;0
+79563;21812;2;156;60.0;120;80;1;1;0;0;1;0
+79566;20333;2;167;90.0;140;90;1;1;0;0;0;0
+79567;15982;2;185;99.0;110;80;1;1;1;0;1;0
+79568;18118;1;158;79.0;120;80;1;1;0;0;0;1
+79569;19031;1;163;85.0;130;80;3;2;0;0;1;1
+79570;19060;2;165;68.0;120;80;1;1;0;0;1;0
+79571;21841;1;170;70.0;140;90;1;1;0;0;1;0
+79572;19798;1;147;83.0;130;90;1;1;0;0;1;0
+79573;21995;1;158;60.0;140;80;2;1;0;0;1;1
+79574;23381;2;160;57.0;150;70;1;1;0;0;1;1
+79577;16592;1;167;77.0;150;80;1;1;0;0;1;1
+79578;19575;1;155;70.0;140;80;1;1;0;0;0;1
+79580;21229;1;162;80.0;130;80;1;1;0;0;1;0
+79581;19406;1;154;97.0;130;80;1;1;0;0;1;1
+79582;21186;2;185;86.0;120;80;1;1;0;0;0;1
+79583;18992;1;158;52.0;140;90;1;1;0;0;1;1
+79584;17580;1;157;59.0;130;90;1;1;0;0;0;1
+79585;20009;1;154;56.0;120;80;1;1;0;0;1;1
+79587;21220;1;158;87.0;160;1000;3;1;0;0;1;1
+79588;19132;1;158;63.0;100;60;1;1;0;0;1;0
+79590;18185;2;170;54.0;120;70;1;1;0;0;1;0
+79593;19796;1;162;58.0;110;80;2;1;0;0;1;1
+79594;14842;1;165;83.0;100;60;1;1;0;0;0;0
+79595;14593;1;162;70.0;120;80;1;1;0;0;1;0
+79596;21728;2;170;80.0;120;80;1;1;0;0;1;0
+79598;14542;1;157;72.0;100;70;2;1;0;0;1;0
+79599;20389;1;163;65.0;120;70;1;1;0;0;0;1
+79600;22685;1;173;73.0;110;80;2;3;0;0;0;1
+79601;18792;2;171;68.0;150;90;1;1;0;0;1;1
+79604;20508;2;168;78.0;120;80;2;2;0;0;1;1
+79605;16997;1;168;75.0;120;70;1;1;1;0;1;0
+79606;19637;1;165;78.0;130;90;1;1;0;0;1;1
+79607;18357;1;164;63.0;120;80;2;2;0;0;1;1
+79608;14592;1;165;65.0;110;80;1;1;0;0;1;0
+79611;19097;2;176;107.0;130;90;1;1;0;0;1;1
+79612;19062;2;170;70.0;120;80;2;1;1;1;1;0
+79614;20476;1;154;87.0;130;90;2;1;0;0;1;1
+79615;14531;1;162;67.0;110;60;1;1;0;0;0;0
+79616;18089;2;164;68.0;144;92;1;1;0;0;1;1
+79617;18050;1;169;75.0;150;90;1;1;0;0;1;0
+79618;16829;2;171;93.0;150;90;1;1;1;0;1;1
+79619;21994;1;165;65.0;120;79;1;1;0;0;0;0
+79620;21692;1;155;63.0;150;90;1;1;0;0;1;0
+79621;21412;1;170;68.0;120;80;1;1;0;0;0;1
+79622;19048;1;168;65.0;120;80;1;1;0;0;1;0
+79623;18268;1;165;70.0;120;80;1;1;0;0;1;0
+79625;22215;2;161;68.0;150;90;1;1;0;0;1;1
+79626;21435;2;167;60.0;120;80;1;1;0;0;0;1
+79627;19768;1;151;95.0;160;90;3;3;0;0;1;1
+79628;19768;1;159;80.0;150;100;1;1;0;0;1;1
+79629;16111;2;172;93.0;110;70;2;1;1;1;0;0
+79630;22477;2;167;95.0;110;70;2;1;0;0;1;1
+79632;20511;2;167;90.0;140;90;1;3;0;0;0;1
+79633;16740;1;168;70.0;170;90;2;2;0;0;1;1
+79634;17457;1;156;57.0;160;85;1;1;0;0;1;1
+79635;18104;2;167;101.0;160;90;2;1;0;0;1;1
+79637;18829;1;167;88.0;127;87;2;2;0;0;1;0
+79638;20585;2;164;66.0;130;80;1;1;0;0;1;0
+79640;19131;2;162;56.0;120;80;3;3;0;0;1;1
+79642;17215;1;164;67.0;120;80;1;1;0;0;0;1
+79646;18365;1;158;79.0;120;80;1;1;0;0;1;0
+79647;20391;1;169;71.0;140;80;3;1;0;0;1;1
+79648;20324;1;165;65.0;120;80;3;3;0;0;1;0
+79650;16759;2;169;114.0;120;80;1;1;1;1;0;1
+79651;23355;1;159;59.0;140;80;1;1;0;0;1;1
+79652;22545;1;154;74.0;140;80;2;1;0;0;1;1
+79653;22714;2;167;79.0;130;90;2;2;0;0;1;1
+79654;15225;2;164;68.0;120;80;1;1;0;0;1;0
+79655;19080;2;181;103.0;120;80;1;1;1;0;0;1
+79656;22468;1;156;55.0;180;100;2;1;0;0;0;1
+79657;16801;1;181;91.0;130;80;1;1;0;0;1;1
+79658;18189;1;160;62.0;120;80;1;1;0;0;1;1
+79661;18244;1;150;92.0;140;90;2;2;0;0;0;1
+79662;16838;2;177;86.0;120;90;2;1;0;0;1;1
+79663;23395;1;165;82.0;130;80;1;1;0;0;1;0
+79664;18375;1;175;97.0;125;80;1;1;0;0;1;0
+79665;21898;2;183;81.0;140;90;3;1;1;1;0;1
+79666;21272;1;165;80.0;130;90;2;2;0;0;1;1
+79667;15442;2;170;101.0;140;90;1;1;0;0;1;1
+79668;19756;1;168;78.0;130;70;3;3;0;0;1;1
+79669;18386;2;174;114.0;120;80;3;1;1;1;1;1
+79670;21961;1;161;92.0;150;90;3;3;0;0;1;1
+79671;20971;1;157;68.0;140;90;1;1;0;0;1;1
+79673;18122;1;158;92.0;150;100;1;2;0;0;1;1
+79674;19085;1;163;80.0;120;80;1;1;0;0;1;0
+79675;21941;1;163;90.0;160;100;1;1;0;0;1;1
+79676;22590;1;152;70.0;170;110;2;2;0;0;0;1
+79678;18167;1;160;71.0;120;80;1;1;0;0;1;1
+79679;23182;1;161;105.0;13010;80;1;1;0;0;0;0
+79681;19837;1;164;73.0;120;80;1;1;0;0;1;0
+79682;22025;1;149;91.0;140;1000;2;2;0;0;0;1
+79683;21907;1;159;70.0;110;70;1;1;0;0;1;1
+79685;18831;1;167;81.0;150;100;1;1;0;0;1;1
+79686;23370;1;152;34.0;140;90;1;1;0;0;1;1
+79687;19079;1;163;69.0;120;80;1;1;0;0;1;1
+79690;18970;1;164;72.0;130;79;1;1;0;0;1;1
+79691;23345;2;158;56.0;120;80;1;1;0;0;1;0
+79692;19820;1;165;76.0;120;70;1;1;0;0;1;0
+79693;16992;1;171;80.0;120;80;1;1;0;0;1;0
+79694;19818;1;170;73.0;110;70;1;1;0;0;1;0
+79695;21114;1;150;70.0;140;80;1;1;0;1;1;1
+79696;22747;2;172;59.0;120;80;1;1;0;0;0;1
+79697;16571;2;174;93.0;120;70;1;1;0;0;1;0
+79698;17590;2;168;70.0;130;90;1;1;0;0;1;1
+79699;20339;1;168;70.0;125;80;1;1;0;0;1;0
+79700;20408;2;165;65.0;120;80;1;1;0;0;1;0
+79701;21868;2;175;93.0;110;70;1;1;0;0;1;1
+79702;18051;1;165;85.0;120;80;1;2;0;0;1;0
+79703;17384;1;157;86.0;140;80;1;1;0;0;1;0
+79705;18156;1;163;80.0;110;70;3;3;0;0;0;0
+79706;20357;1;168;82.0;140;100;1;1;0;0;1;1
+79707;14456;1;153;46.0;100;60;1;1;0;0;1;0
+79709;19579;2;169;66.0;120;80;1;1;1;1;1;0
+79710;21245;1;158;62.0;120;80;1;1;0;0;1;1
+79711;15039;1;160;51.0;110;80;1;1;0;0;1;0
+79712;18909;1;158;84.0;120;80;1;1;0;0;1;1
+79713;21151;1;160;51.0;120;80;2;1;0;0;1;0
+79714;22627;1;171;79.0;120;80;1;1;0;0;1;0
+79716;18697;1;162;85.0;120;70;3;1;0;0;1;1
+79717;15478;1;168;87.0;120;80;2;1;0;0;0;0
+79718;21215;1;156;70.0;120;80;1;1;0;0;1;0
+79719;22060;1;165;65.0;130;80;3;3;0;0;1;0
+79720;15340;2;169;60.0;110;70;1;1;0;0;1;0
+79721;19808;1;164;65.0;120;80;1;1;0;0;1;0
+79722;16698;1;153;85.0;160;1100;1;1;0;0;1;0
+79723;14541;1;164;59.0;120;80;1;1;0;0;0;0
+79725;17649;2;170;76.0;120;80;1;1;0;0;1;0
+79726;19060;2;175;94.0;130;90;1;1;0;0;1;0
+79728;18047;1;167;78.0;100;70;2;3;0;0;1;0
+79730;19458;1;159;50.0;110;70;1;1;0;0;1;0
+79731;21110;2;174;81.0;120;80;1;1;0;0;1;1
+79732;20660;1;156;60.0;120;80;1;2;0;0;1;0
+79733;21272;1;152;71.0;160;70;2;3;0;0;1;0
+79734;22003;1;167;56.0;110;80;1;1;0;0;1;1
+79736;16799;2;175;126.0;130;100;1;1;0;0;1;1
+79737;19625;1;158;77.0;140;80;1;1;0;0;1;0
+79738;20356;1;164;56.0;120;80;1;1;0;0;1;0
+79739;22502;1;156;67.0;90;60;1;1;0;0;1;1
+79740;20360;1;160;55.0;150;90;1;1;0;0;1;1
+79741;23493;1;170;81.0;130;90;1;1;0;0;1;1
+79743;22096;1;158;66.0;150;90;2;1;0;0;0;1
+79744;21009;1;158;115.0;150;80;1;3;0;0;0;1
+79745;18310;1;159;91.0;150;90;2;1;0;0;1;1
+79746;20904;1;159;83.0;110;70;1;1;0;0;1;0
+79747;21125;1;160;105.0;100;70;1;1;0;0;1;0
+79748;21243;1;158;68.0;130;90;1;1;0;0;0;1
+79749;10964;1;160;59.0;110;70;1;1;0;0;1;0
+79751;14784;1;163;73.0;120;80;1;1;0;0;1;0
+79752;18040;2;167;74.0;180;100;1;1;0;0;1;1
+79754;15161;1;158;43.0;130;80;1;1;0;0;1;1
+79755;18131;1;162;63.0;120;80;1;1;0;0;0;1
+79756;22306;2;170;76.0;120;80;2;1;1;0;1;1
+79758;18447;1;156;71.0;13;90;2;1;0;0;1;1
+79759;19769;1;150;100.0;120;80;3;2;0;0;1;1
+79760;19848;1;158;67.0;120;80;1;1;0;0;1;1
+79761;21140;1;169;68.0;120;80;1;3;0;0;1;0
+79765;23210;1;162;91.0;130;90;2;1;0;0;1;1
+79767;15509;2;175;71.0;100;70;1;1;0;0;1;0
+79771;21617;1;156;78.0;140;90;3;3;0;0;1;0
+79773;15474;1;159;65.0;110;70;1;1;0;0;1;0
+79774;14515;2;181;72.0;140;90;1;1;1;0;1;1
+79775;18829;1;165;81.0;90;70;1;1;0;0;1;0
+79776;15301;1;163;69.5;120;60;1;1;0;1;1;0
+79777;20347;1;160;73.0;120;80;1;1;0;0;0;0
+79778;22721;2;170;76.0;130;80;3;1;0;0;1;1
+79780;18361;1;185;85.0;130;90;1;1;0;0;1;1
+79781;16020;2;185;91.0;120;80;1;1;0;0;1;0
+79782;19554;1;160;87.0;140;100;1;1;0;0;1;1
+79784;18911;1;153;73.0;120;80;1;1;0;0;1;1
+79785;20535;1;165;75.0;135;90;1;1;0;0;1;0
+79786;22822;1;151;93.0;140;90;1;1;0;0;1;1
+79789;18199;2;167;55.0;130;90;2;1;0;0;1;1
+79791;21014;1;164;63.0;140;90;3;1;0;0;1;1
+79792;21290;2;178;90.0;210;110;2;1;0;0;1;0
+79793;15982;2;170;76.0;120;80;2;2;0;0;1;1
+79796;22124;2;169;68.0;120;80;1;1;0;0;0;0
+79798;14693;2;188;70.0;110;70;1;1;1;0;1;0
+79799;22662;1;160;75.0;130;80;3;1;0;0;0;1
+79800;21172;1;160;82.0;140;90;1;1;0;0;1;1
+79801;21077;2;153;57.0;130;80;1;1;0;0;1;0
+79802;22013;1;157;67.0;120;80;1;1;0;0;1;0
+79804;22818;1;159;65.0;120;80;1;1;0;0;1;0
+79805;18022;1;169;70.0;150;90;1;1;0;0;1;0
+79806;19819;1;193;67.0;110;60;1;1;0;0;1;0
+79809;18220;1;157;55.0;160;90;2;1;0;0;1;1
+79811;19599;1;153;81.0;160;90;1;1;1;0;1;1
+79812;19145;2;168;84.0;120;80;1;1;0;0;0;0
+79815;15903;1;154;58.0;145;90;1;2;0;0;1;1
+79816;16798;2;173;64.0;120;80;1;1;0;0;1;1
+79817;18749;1;172;70.0;125;80;1;1;0;0;1;1
+79819;21118;1;165;84.0;120;70;1;1;0;0;1;0
+79821;20399;1;155;81.0;170;110;1;1;0;0;1;1
+79825;21008;1;158;72.0;130;90;1;1;0;0;1;1
+79826;18200;1;153;79.0;140;80;1;1;0;0;1;1
+79828;19109;1;168;91.0;140;80;1;1;0;0;1;0
+79829;20387;1;155;84.0;110;80;1;1;0;0;1;0
+79830;20571;2;174;75.0;120;80;1;1;0;0;1;1
+79831;22131;2;166;80.0;120;80;3;3;0;0;1;1
+79832;14742;1;182;84.0;110;60;1;1;0;0;0;0
+79833;22743;1;161;79.0;140;90;2;1;0;0;1;0
+79834;23338;1;164;96.0;120;80;1;1;0;0;1;1
+79835;21220;1;162;68.0;110;90;1;1;0;0;1;0
+79837;20542;1;189;65.0;120;80;1;1;0;0;0;0
+79839;19583;1;157;102.0;140;100;1;1;0;0;1;0
+79841;15155;2;156;64.0;120;70;1;1;0;0;1;0
+79842;17494;1;172;64.0;120;80;1;1;0;0;1;0
+79844;21214;1;172;80.0;150;100;1;1;0;0;1;1
+79845;17558;2;170;81.0;120;80;2;2;0;0;1;1
+79846;15992;2;172;70.0;120;80;1;1;1;0;1;0
+79848;18094;1;160;60.0;120;80;1;1;0;0;0;0
+79849;21832;1;152;60.0;120;80;1;1;0;0;1;1
+79850;19017;1;170;78.0;120;80;2;2;0;0;0;1
+79851;18269;1;165;69.0;110;80;1;1;0;0;1;0
+79852;14354;1;165;74.0;110;70;1;1;0;0;1;0
+79853;15321;1;164;80.0;140;90;1;1;0;0;1;1
+79855;21894;1;148;68.0;140;90;2;1;0;0;1;1
+79856;22615;1;158;70.0;140;80;2;1;0;0;1;1
+79857;17594;1;153;65.0;150;1000;1;2;0;0;1;1
+79858;23333;1;168;60.0;160;100;1;1;0;0;1;1
+79859;18336;1;163;62.0;100;80;2;1;0;1;1;0
+79860;22044;1;164;66.0;120;79;1;1;0;0;1;0
+79861;18351;1;167;88.0;110;70;1;1;0;0;1;0
+79862;21121;2;165;72.0;130;80;1;1;0;1;0;1
+79864;21444;1;147;45.0;110;80;2;2;0;0;1;0
+79865;17694;2;174;83.0;120;80;1;1;0;0;1;1
+79866;21433;2;166;74.0;120;80;1;1;0;0;1;1
+79868;18359;1;170;68.0;140;90;1;1;0;0;0;1
+79869;19769;2;176;72.0;150;100;3;3;0;0;1;1
+79870;17528;2;172;79.0;120;80;1;1;1;1;1;0
+79872;17514;1;164;74.0;120;80;1;1;0;0;1;0
+79873;20573;2;165;74.0;120;80;1;1;1;0;1;0
+79874;23667;1;160;70.0;120;90;1;1;0;1;1;0
+79875;21081;1;165;60.0;140;80;1;1;0;0;1;1
+79876;19039;1;163;74.0;120;80;3;1;0;0;1;0
+79877;21871;2;163;100.0;140;90;1;1;0;0;1;1
+79878;21877;1;156;52.0;90;60;2;1;0;0;1;0
+79879;21276;1;165;81.0;120;80;1;1;0;0;1;1
+79881;19144;2;176;85.0;140;88;1;3;1;0;0;1
+79882;18286;1;148;49.0;100;60;1;1;0;0;1;0
+79884;21789;1;170;65.0;100;60;2;1;0;0;1;1
+79885;21224;2;165;82.0;155;100;2;1;0;0;1;1
+79886;21112;1;158;71.0;120;80;1;1;0;0;1;0
+79887;18185;1;180;70.0;150;100;1;1;0;0;1;1
+79888;22386;2;176;75.0;120;80;1;1;0;0;1;1
+79889;16569;1;167;72.0;140;80;1;1;0;0;1;1
+79890;18936;1;155;62.0;120;80;1;1;0;0;1;0
+79891;16133;1;160;57.0;110;70;1;1;0;0;1;0
+79893;21221;1;163;87.0;140;80;2;1;0;0;1;0
+79894;17267;2;180;78.0;120;80;1;1;0;0;1;0
+79895;21364;1;148;42.0;100;70;1;1;0;0;1;0
+79897;18280;1;156;86.0;120;80;1;1;0;0;1;0
+79898;21915;1;155;76.0;150;100;2;1;0;0;1;1
+79899;22568;2;165;63.0;140;90;1;1;0;0;1;0
+79900;22701;1;158;60.0;130;70;1;1;0;0;1;1
+79901;17316;1;153;67.0;100;60;1;1;0;0;1;0
+79903;21922;2;176;115.0;240;110;1;1;0;0;1;0
+79905;23195;1;154;81.0;160;90;1;1;0;0;1;1
+79907;20428;1;160;68.0;120;80;1;1;1;0;1;1
+79908;20344;1;167;68.0;120;80;1;1;0;0;1;1
+79910;21208;2;170;108.0;145;85;1;1;0;0;1;0
+79911;21793;1;163;68.0;120;80;1;1;0;0;1;0
+79912;21948;2;164;67.0;150;90;3;2;0;0;1;1
+79914;20401;2;174;74.0;170;70;2;2;0;0;1;1
+79917;21171;1;96;59.0;90;60;1;1;0;0;1;1
+79919;20463;2;173;78.0;120;80;1;1;0;0;1;1
+79920;22459;2;170;87.0;140;80;2;2;0;0;1;1
+79921;22055;1;155;70.0;170;80;2;2;0;0;1;1
+79922;18895;1;158;95.0;180;1000;2;1;0;0;1;1
+79923;18029;1;157;69.0;160;90;2;1;0;0;1;0
+79924;16579;1;156;65.0;110;80;1;1;0;0;1;0
+79925;15203;2;185;105.0;120;80;2;1;0;0;1;1
+79927;23387;2;179;63.0;120;70;1;1;0;0;1;1
+79930;20235;1;170;82.0;150;100;1;1;1;1;0;1
+79932;21783;2;165;91.0;140;80;1;1;0;0;0;0
+79935;23269;1;158;78.0;150;90;1;1;0;0;1;1
+79936;20395;2;174;84.0;140;90;3;1;0;0;1;1
+79938;20633;2;179;125.0;130;90;3;3;0;0;1;1
+79940;23505;1;154;58.0;150;80;3;1;0;0;1;1
+79941;16226;1;160;60.0;110;80;1;1;0;0;1;0
+79944;18324;1;168;53.0;140;80;2;1;0;0;1;0
+79947;20400;1;165;74.0;120;80;1;1;0;0;1;0
+79948;14703;1;168;68.0;120;80;1;1;0;0;0;0
+79950;19166;1;168;74.0;120;80;1;1;0;0;1;0
+79952;19903;2;180;65.0;120;60;1;1;0;0;1;0
+79953;19000;1;165;65.0;120;80;1;1;0;0;1;1
+79954;20424;1;148;60.0;120;70;3;1;0;1;1;0
+79955;19648;2;169;68.0;120;80;1;1;1;0;1;1
+79956;18493;1;163;59.0;110;70;1;1;0;0;1;1
+79958;21374;1;166;72.0;110;70;1;1;0;0;1;1
+79959;17342;1;156;53.0;110;70;2;1;0;0;1;0
+79963;19002;1;145;45.0;110;70;1;1;0;0;0;0
+79965;18250;1;170;90.0;110;70;1;1;0;0;0;0
+79966;20369;1;140;54.0;120;70;1;1;0;0;1;0
+79969;18960;1;152;57.0;130;80;2;1;0;1;0;0
+79971;16313;1;168;65.0;120;80;1;1;0;0;1;0
+79973;22462;2;168;75.0;120;80;2;1;0;0;1;0
+79975;23289;1;153;90.0;150;100;1;1;0;0;1;0
+79976;14893;1;160;60.0;140;80;1;1;0;0;0;1
+79980;18857;1;163;63.0;120;80;1;1;0;0;0;0
+79981;21843;1;171;68.0;120;80;1;1;0;0;1;0
+79982;19044;1;169;70.0;105;80;1;1;0;0;1;0
+79983;22679;1;154;55.0;140;80;1;1;0;0;1;1
+79984;18236;1;170;70.0;120;80;1;1;0;0;1;1
+79985;18271;2;174;72.0;140;100;1;1;0;1;1;1
+79986;21765;2;166;58.0;150;100;3;1;0;0;0;1
+79989;16674;2;174;80.0;130;90;1;1;1;0;1;0
+79990;21215;2;162;70.0;120;80;1;1;0;0;1;0
+79991;21372;1;150;66.0;110;80;2;1;0;0;1;0
+79992;15805;2;180;70.0;100;80;1;1;1;0;1;0
+79994;14435;1;161;65.0;120;80;1;1;0;0;1;0
+79995;18335;2;165;90.0;150;80;2;1;0;0;1;1
+79997;19186;2;165;94.0;140;80;1;1;1;0;1;1
+79999;20601;1;163;59.0;140;80;1;1;0;0;1;0
+80000;17051;2;175;82.0;200;110;1;1;1;0;1;1
+80001;23394;1;169;90.0;120;80;1;1;0;0;1;1
+80003;22463;1;162;112.0;120;80;3;3;0;0;1;0
+80004;21001;2;169;69.0;120;80;1;1;0;0;1;0
+80006;21783;1;169;63.0;130;80;3;1;1;0;1;0
+80007;21861;2;165;79.0;150;90;2;3;1;0;1;0
+80008;19257;1;168;73.0;110;70;1;1;0;0;1;0
+80009;22662;1;160;70.0;150;90;1;1;0;0;1;1
+80010;21918;2;152;73.0;140;90;1;1;0;0;1;1
+80011;22718;2;170;76.0;130;80;1;1;0;0;1;1
+80014;21073;1;176;72.0;130;90;1;1;0;0;0;1
+80015;22704;1;160;79.0;180;100;2;1;0;0;1;1
+80016;21776;1;153;49.0;110;70;1;2;0;0;1;0
+80017;17444;1;163;60.0;120;90;2;1;0;0;1;1
+80018;21812;1;168;83.0;120;80;1;1;0;0;1;1
+80019;18091;1;155;64.0;120;80;1;1;0;0;1;1
+80020;20497;2;168;91.0;180;110;1;1;0;0;1;0
+80023;14731;2;175;85.0;120;80;1;1;0;0;1;0
+80026;16037;1;153;54.0;90;60;1;1;0;0;1;0
+80027;18068;1;164;68.0;120;80;2;1;0;0;1;0
+80029;22697;1;153;75.0;120;80;1;1;0;0;1;0
+80030;20991;2;165;63.0;150;1000;1;1;0;0;1;0
+80031;22469;1;165;66.0;120;80;1;2;0;0;1;0
+80032;15401;1;165;57.0;120;70;1;1;0;0;1;0
+80034;18831;1;165;74.0;120;60;1;1;0;0;0;0
+80036;17295;2;166;72.0;120;80;1;1;0;0;1;0
+80038;20955;2;178;74.0;120;80;1;1;1;0;1;1
+80039;16936;2;170;68.0;120;80;1;1;0;0;0;1
+80040;21979;2;169;68.0;120;80;1;3;0;1;1;0
+80042;19142;2;160;65.0;150;90;2;2;0;0;0;1
+80044;20385;2;168;83.0;110;80;1;1;0;0;1;0
+80046;21421;1;156;56.0;110;70;1;1;0;0;1;1
+80047;18393;1;165;65.0;120;90;1;1;0;0;1;0
+80049;21235;1;169;58.0;120;80;1;1;0;0;1;0
+80050;17755;2;167;82.0;150;100;1;2;1;1;1;1
+80051;18127;1;153;90.0;110;70;1;1;0;0;1;0
+80053;18435;1;152;68.0;80;120;1;1;0;0;1;1
+80055;23441;1;160;67.0;130;90;1;1;0;0;1;1
+80058;20268;2;171;81.0;130;90;1;1;0;0;1;1
+80060;21845;1;165;94.0;180;100;1;1;0;0;1;1
+80061;14373;1;154;67.0;170;90;2;1;0;0;1;1
+80063;19686;1;172;90.0;190;1100;1;1;0;0;1;1
+80065;21189;1;158;61.0;170;1000;1;2;0;0;1;1
+80066;18442;1;158;62.0;120;90;1;1;0;0;1;0
+80068;16013;1;174;69.0;140;90;1;1;0;0;1;1
+80070;21854;1;165;56.0;110;70;1;1;0;1;1;0
+80072;21306;1;152;68.0;140;80;1;1;0;0;0;0
+80073;18174;1;159;83.0;140;90;1;1;0;0;1;0
+80074;19917;2;177;107.0;135;80;1;1;1;0;0;0
+80075;19664;1;150;90.0;120;70;1;1;0;0;1;0
+80078;21781;1;154;63.0;110;70;1;1;0;0;1;1
+80079;22687;1;140;90.0;120;80;1;1;0;0;0;0
+80080;19670;2;162;89.0;140;1100;3;1;0;0;0;0
+80082;18862;1;165;73.0;150;90;1;1;0;0;0;1
+80083;19880;1;164;62.0;110;70;1;1;0;0;1;0
+80084;22812;1;168;70.0;120;70;1;2;0;0;1;0
+80086;21078;1;168;65.0;120;80;1;1;0;0;1;0
+80087;22671;1;155;65.0;120;80;2;1;0;0;1;1
+80088;15959;2;166;85.0;130;90;3;1;0;0;1;1
+80089;22677;1;160;69.0;110;70;1;1;0;0;1;0
+80090;19576;1;168;63.0;110;60;1;1;1;0;1;0
+80091;20260;2;162;97.0;140;100;3;3;0;0;1;0
+80092;18220;2;168;61.0;120;80;1;1;0;0;1;1
+80094;22731;2;188;75.0;130;80;1;1;0;0;1;1
+80095;21118;2;168;80.0;150;90;1;1;0;0;1;0
+80096;22568;1;148;51.0;130;80;3;1;0;0;0;1
+80098;22393;1;159;78.0;110;80;1;1;0;0;1;1
+80099;19666;1;156;60.0;110;60;1;2;0;0;1;0
+80101;21983;2;173;90.0;150;90;1;1;0;0;1;1
+80102;16678;2;167;70.0;120;70;1;1;0;0;0;1
+80103;15437;1;165;45.0;140;80;1;1;0;0;1;1
+80105;21042;2;175;115.0;140;90;3;3;1;0;1;0
+80106;21815;1;164;84.0;140;90;1;1;0;0;1;1
+80107;14498;2;193;90.0;110;70;1;1;1;1;0;0
+80108;20377;2;163;77.0;160;1000;1;1;0;0;1;1
+80109;16248;2;163;60.0;110;70;1;1;0;0;1;0
+80112;22097;1;174;86.0;120;80;1;1;0;0;1;0
+80113;23181;2;174;92.0;140;90;1;1;0;0;1;1
+80114;21382;2;158;73.0;120;80;1;1;0;0;1;0
+80115;21748;1;156;80.0;150;80;1;1;0;0;0;1
+80117;18899;2;169;72.0;160;110;1;1;0;0;0;1
+80121;20516;1;149;55.0;140;100;1;1;0;0;1;1
+80122;16743;2;161;75.0;180;110;3;1;0;0;1;1
+80123;17416;2;171;75.0;140;90;1;3;0;0;1;1
+80125;20525;2;150;70.0;100;60;1;3;0;0;1;0
+80127;21173;2;182;93.0;160;90;3;1;0;0;1;1
+80128;20268;1;161;93.0;100;80;1;1;0;0;1;1
+80129;20469;1;170;72.0;120;80;2;1;0;0;0;1
+80130;17597;1;161;76.0;130;90;1;1;0;0;0;0
+80131;20175;1;165;79.0;140;90;1;1;0;0;1;1
+80132;17623;1;155;50.0;110;70;1;1;0;0;1;0
+80133;20960;1;164;77.0;120;80;1;1;0;0;1;1
+80134;16176;1;165;60.0;110;70;1;1;0;0;1;0
+80135;18733;2;169;87.0;110;70;1;1;0;0;0;1
+80137;19229;1;167;60.0;100;70;1;1;0;0;1;1
+80138;19934;2;162;70.0;120;80;1;1;0;0;0;1
+80139;21242;1;172;71.0;120;80;2;1;0;0;1;0
+80140;20492;1;162;89.0;160;90;1;1;0;0;1;1
+80141;16733;1;168;69.0;140;90;1;1;0;0;1;1
+80142;22092;2;178;70.0;130;80;1;1;0;0;0;1
+80143;19675;2;173;80.0;140;80;1;1;0;0;1;1
+80144;20345;1;160;89.0;160;90;2;1;0;0;1;0
+80146;19497;1;169;75.0;120;80;1;1;0;0;1;0
+80150;22365;2;161;77.0;160;90;1;1;0;0;1;1
+80151;20564;1;154;74.0;120;80;1;1;0;0;1;0
+80152;15526;2;170;171.0;120;80;1;1;0;0;1;1
+80153;14667;2;170;64.0;120;80;2;1;0;0;1;1
+80154;16822;1;161;72.0;120;90;1;1;0;0;1;0
+80156;19823;1;172;94.0;160;100;2;2;0;1;0;0
+80158;19882;2;166;84.0;130;80;3;1;0;0;1;0
+80159;17036;1;170;98.0;150;90;1;1;0;0;1;1
+80160;19021;1;160;80.0;180;80;1;1;0;0;1;1
+80162;19718;2;172;74.0;120;80;1;1;0;0;0;0
+80164;19456;1;165;71.0;110;80;2;2;0;0;1;1
+80165;15345;1;169;75.0;150;90;2;1;0;0;1;1
+80167;19244;2;169;72.0;130;90;1;1;0;0;1;0
+80168;18136;2;183;128.0;180;100;1;1;0;0;1;1
+80169;23239;2;173;90.0;120;80;1;1;0;0;1;1
+80170;14641;2;176;71.0;120;80;1;1;0;0;0;0
+80171;16808;1;175;88.0;120;80;2;1;0;1;1;0
+80172;17372;2;165;72.0;140;90;1;1;0;0;1;1
+80173;20885;1;165;65.0;140;80;1;1;0;0;1;1
+80174;16757;1;161;76.0;140;100;1;1;0;0;1;1
+80180;18302;1;156;63.0;160;80;1;1;0;0;1;1
+80181;19557;1;164;52.0;100;70;1;1;0;0;1;0
+80182;18915;1;183;113.0;120;80;3;3;0;0;1;0
+80184;18193;1;152;57.0;120;80;1;1;0;0;1;0
+80185;15288;1;163;81.0;120;70;1;1;0;0;1;0
+80186;22594;2;169;69.0;140;80;1;1;1;0;1;1
+80188;19616;2;164;96.0;120;80;1;1;0;0;1;0
+80189;18045;2;171;80.0;120;80;1;1;0;0;1;0
+80190;22668;2;172;68.0;160;90;1;1;1;0;1;0
+80191;15441;2;170;89.0;130;90;1;1;1;1;1;1
+80192;21764;1;153;97.0;130;70;2;2;0;0;1;1
+80193;15929;2;180;82.0;140;90;3;3;0;0;0;1
+80194;21061;1;164;62.0;120;80;1;1;0;0;0;0
+80196;16840;2;174;79.0;120;80;1;1;1;0;1;0
+80198;21888;1;160;58.0;100;60;3;3;0;0;1;0
+80199;20401;1;169;72.0;120;60;1;1;0;0;1;1
+80200;20270;1;173;65.0;120;80;1;1;0;0;0;0
+80202;18119;2;171;75.0;120;80;3;1;0;0;1;1
+80204;16603;1;161;64.0;110;70;1;1;0;0;1;0
+80205;17760;2;175;73.0;110;70;1;1;0;0;1;0
+80206;21774;1;156;65.0;120;80;1;1;0;0;0;0
+80207;21060;1;158;66.0;120;80;1;1;0;0;0;0
+80208;21302;1;158;85.0;120;80;1;1;0;0;1;0
+80210;20413;1;165;77.0;130;90;1;1;0;0;1;0
+80212;16103;2;160;80.0;100;80;1;1;0;0;0;0
+80213;18147;2;175;80.0;120;70;1;1;0;0;1;0
+80215;18211;2;165;102.0;120;80;1;1;0;0;1;1
+80216;23558;1;156;58.0;120;80;1;1;0;0;1;1
+80217;21202;1;163;67.0;100;70;1;1;0;0;1;0
+80218;18203;1;165;50.0;120;80;1;1;0;0;0;0
+80219;18403;1;156;60.0;120;80;1;1;0;0;1;0
+80220;15447;2;169;68.0;130;80;1;1;0;0;1;0
+80221;16624;1;161;71.0;110;80;1;1;0;0;1;0
+80223;15394;1;170;69.0;120;80;1;1;0;0;0;0
+80225;14516;1;161;63.0;150;100;1;1;0;0;1;1
+80229;18753;1;160;80.0;125;80;3;1;0;0;1;1
+80230;17282;1;165;75.0;120;90;1;1;0;1;0;0
+80231;17408;1;149;55.0;110;70;1;1;0;0;1;1
+80232;19811;2;160;58.0;120;80;1;1;0;0;1;0
+80233;18878;1;158;61.0;95;60;2;1;1;0;1;0
+80234;19603;2;164;66.0;120;80;1;1;0;0;1;0
+80235;16906;1;162;67.0;120;80;1;1;0;0;0;0
+80236;18141;1;168;69.0;120;80;1;1;0;0;1;0
+80237;21775;1;168;67.0;90;60;1;1;0;0;1;0
+80238;19493;1;165;62.0;140;90;1;1;0;0;1;1
+80240;20975;2;172;70.0;120;80;1;1;0;0;1;1
+80241;20416;1;164;60.0;140;90;1;3;0;0;1;1
+80242;18104;1;160;71.0;120;80;2;1;0;0;1;0
+80246;20445;1;176;105.0;140;80;1;1;0;0;1;1
+80248;17418;2;175;85.0;120;80;1;1;0;0;1;1
+80250;16178;1;157;77.0;110;70;1;1;0;0;1;0
+80252;20382;1;162;65.0;130;90;1;1;0;0;1;0
+80253;18329;1;160;63.0;130;80;1;1;0;0;0;0
+80254;21882;1;156;60.0;110;70;1;1;0;0;1;0
+80256;22461;1;160;73.0;120;80;2;1;0;0;0;1
+80257;18286;1;151;58.0;120;80;1;1;0;0;1;1
+80258;16836;2;163;60.0;110;80;1;1;1;0;1;0
+80259;20307;1;160;68.0;140;90;1;1;0;0;0;1
+80260;17574;2;168;78.0;130;80;2;1;0;0;0;1
+80263;20999;1;163;96.0;170;100;3;3;0;0;1;1
+80264;16199;1;162;73.0;110;70;2;1;0;0;1;0
+80265;19201;2;169;66.0;120;70;1;1;0;0;1;1
+80266;18988;2;172;74.0;140;80;1;1;0;0;1;0
+80267;17479;1;148;68.0;100;60;1;1;0;0;1;0
+80270;20999;2;174;75.0;160;90;1;1;0;0;1;1
+80271;21940;1;168;135.0;140;80;2;1;0;0;1;0
+80272;15316;1;156;56.0;110;70;1;1;0;0;1;0
+80273;19649;1;164;67.0;120;80;3;1;0;0;0;1
+80275;20414;1;153;60.0;140;90;1;1;0;0;1;1
+80277;19737;1;157;56.0;110;80;1;1;0;0;0;1
+80278;21091;1;162;56.0;100;60;2;1;0;0;1;0
+80281;19589;1;152;69.0;140;90;1;1;0;0;1;1
+80282;19815;1;164;54.0;110;80;1;1;0;0;1;0
+80283;18953;1;166;66.0;100;60;1;1;0;0;1;0
+80284;14371;2;165;72.0;100;80;3;3;0;0;1;0
+80285;15984;2;157;66.0;120;80;1;1;0;0;1;0
+80286;21204;1;159;75.0;150;90;1;1;0;0;0;1
+80287;19197;1;168;65.0;110;60;1;1;0;0;1;1
+80288;19500;2;166;80.0;140;100;3;1;0;0;1;1
+80290;17297;1;160;47.0;90;60;1;2;0;0;1;1
+80291;21765;1;164;58.0;140;90;3;3;0;0;1;1
+80293;16675;1;160;53.0;100;60;2;1;0;0;1;0
+80294;22349;2;156;67.0;150;1000;1;1;0;0;0;1
+80297;23507;2;167;70.0;140;80;3;3;0;0;1;1
+80298;18741;1;159;59.0;140;80;2;1;0;0;1;1
+80301;18875;2;166;69.0;150;90;2;1;0;0;1;1
+80304;18952;1;163;77.0;120;80;1;1;0;0;1;0
+80305;20295;2;174;112.0;140;90;1;1;0;0;1;1
+80306;20516;1;160;78.0;130;80;1;3;0;0;1;0
+80308;14607;2;175;75.0;120;80;1;1;0;0;1;0
+80312;19738;1;169;60.0;130;75;1;1;0;0;1;1
+80313;21943;1;160;82.0;110;70;1;1;0;0;1;0
+80315;16650;1;155;107.0;120;70;1;1;0;0;1;0
+80316;21197;2;170;66.0;120;80;1;1;0;0;1;0
+80317;23271;1;167;74.0;130;90;1;1;0;0;1;1
+80318;20268;2;173;92.0;120;80;3;1;0;0;1;0
+80319;19200;1;160;98.0;110;70;1;1;0;0;0;0
+80320;18899;1;158;63.0;120;80;2;2;0;1;1;0
+80321;23435;1;175;68.0;130;90;3;1;0;0;1;1
+80323;16143;2;178;67.0;130;90;1;1;1;0;1;0
+80326;17245;1;165;55.2;110;70;1;1;0;0;0;0
+80328;22560;2;173;85.0;180;100;1;1;0;0;0;1
+80335;21908;1;156;88.0;145;80;1;1;0;0;1;1
+80337;23356;1;153;59.0;120;80;1;1;0;0;0;0
+80338;23345;2;179;96.0;120;80;3;1;0;0;1;1
+80339;17350;1;154;65.0;100;60;1;1;0;0;1;0
+80340;20210;1;168;64.0;130;90;1;1;0;0;1;1
+80341;21283;1;157;71.0;120;80;2;1;0;0;1;0
+80343;21304;2;168;78.0;160;90;1;1;0;0;0;1
+80344;22844;1;170;76.0;125;90;1;2;0;0;0;1
+80345;21955;1;160;58.0;100;60;2;1;0;0;1;0
+80346;16749;1;177;68.0;110;65;3;2;0;0;1;0
+80348;17572;1;158;103.0;150;90;1;1;0;0;1;1
+80350;19719;1;164;74.0;120;80;1;1;0;0;1;0
+80351;20470;1;152;90.0;120;70;1;1;0;1;1;0
+80353;17465;2;175;95.0;140;90;1;1;0;0;1;1
+80355;14709;2;167;75.0;100;70;1;1;1;0;1;0
+80357;22011;1;172;88.0;140;80;1;1;1;0;0;1
+80360;18253;1;160;80.0;130;80;1;1;0;0;0;0
+80361;19795;1;158;101.0;130;80;1;1;0;0;1;0
+80363;17439;2;176;95.0;130;90;1;2;0;0;1;1
+80364;16020;1;162;74.0;110;70;1;1;0;0;1;0
+80366;20981;2;159;64.0;120;80;1;1;0;0;1;0
+80367;22825;2;170;69.0;140;90;3;3;0;0;1;1
+80368;21869;2;173;83.0;130;90;1;1;1;1;1;1
+80371;18302;1;155;92.0;140;90;3;1;0;0;1;1
+80373;19572;1;164;72.0;120;80;1;1;0;0;1;1
+80374;19783;1;157;95.0;100;50;1;1;0;0;0;0
+80375;18141;1;168;74.0;110;70;1;1;0;0;1;0
+80377;14462;1;160;58.0;120;80;1;1;0;0;1;0
+80378;16034;1;169;59.0;120;80;1;1;0;0;1;0
+80379;17526;2;171;95.0;110;70;1;1;0;0;1;1
+80380;20735;2;156;63.0;120;60;1;1;0;0;1;0
+80381;22611;1;157;75.0;130;80;1;1;0;0;1;1
+80386;23101;1;165;69.0;120;80;1;1;0;0;1;0
+80387;17382;2;171;75.0;140;90;1;1;1;0;1;1
+80388;22604;1;174;121.0;140;90;1;1;0;0;1;1
+80390;16671;1;158;56.0;120;80;1;1;0;1;1;0
+80391;18350;2;165;57.0;140;100;1;1;0;0;1;1
+80393;21007;1;165;70.0;120;80;1;1;0;0;1;0
+80395;15402;1;153;49.0;110;70;1;1;0;0;1;0
+80398;19105;1;160;65.0;110;70;1;1;0;0;1;1
+80399;18793;2;167;67.0;125;75;1;1;1;0;1;0
+80402;21341;1;165;66.0;100;75;2;1;0;1;1;0
+80403;15283;1;164;60.0;140;90;1;2;0;0;1;1
+80404;15294;2;172;102.0;140;90;3;3;0;1;1;0
+80405;14689;1;168;67.0;120;80;3;3;0;0;1;0
+80406;20411;1;168;86.0;120;80;1;1;0;0;1;0
+80407;18166;1;167;71.0;90;60;2;1;0;0;1;0
+80408;21867;1;148;65.0;140;90;1;1;0;0;1;1
+80409;20324;2;169;68.0;120;80;1;1;0;0;1;0
+80410;18452;2;168;69.0;140;90;1;1;1;0;1;1
+80413;23136;2;165;62.0;120;80;1;1;0;0;1;0
+80415;19286;1;153;85.0;130;80;1;1;0;0;1;0
+80416;21264;1;168;65.0;120;80;1;1;0;0;1;0
+80421;23211;1;167;118.0;130;80;2;2;0;0;1;1
+80423;17369;1;158;86.0;160;90;1;1;0;0;0;1
+80424;17533;2;167;78.0;120;60;1;1;1;1;1;0
+80425;19709;2;171;90.0;140;90;2;1;0;0;1;1
+80426;22606;1;149;40.0;140;90;1;1;1;0;0;1
+80427;16810;1;155;55.0;120;80;1;3;0;0;1;0
+80428;16720;2;173;74.0;140;80;2;1;0;0;0;1
+80429;16841;1;155;68.0;140;80;3;1;0;0;1;1
+80430;15346;1;165;75.0;190;100;1;1;0;0;0;1
+80431;17380;2;168;75.0;120;80;1;1;0;0;1;0
+80432;16599;1;165;71.0;120;80;1;1;0;0;1;0
+80433;23317;2;165;85.0;120;80;1;1;0;0;0;1
+80434;20241;1;162;62.0;100;60;1;1;0;0;1;1
+80435;21078;2;163;66.0;120;70;3;1;0;0;0;1
+80437;21021;1;145;56.0;150;80;2;1;0;0;1;0
+80438;20545;1;160;84.0;140;95;3;3;0;0;0;1
+80441;20493;1;166;68.0;120;80;1;1;0;0;1;0
+80442;19072;1;160;62.0;130;70;2;1;0;0;1;0
+80443;15251;1;150;94.0;110;70;1;1;0;0;1;0
+80444;22777;1;162;90.0;120;80;1;1;0;0;1;1
+80445;21829;2;169;73.0;130;80;1;1;0;0;1;0
+80446;18285;1;160;60.0;120;80;3;3;0;0;1;0
+80447;22640;1;145;73.0;140;80;3;1;0;0;0;0
+80448;21715;2;174;90.0;120;80;1;2;1;0;1;1
+80449;21702;1;150;63.0;130;90;1;1;0;0;1;1
+80451;23195;2;173;85.0;120;80;1;1;0;0;1;1
+80453;19025;1;158;80.0;150;90;2;3;0;0;1;1
+80454;15949;2;165;60.0;110;80;1;1;0;0;1;0
+80455;22623;2;169;72.0;120;90;1;1;0;0;1;0
+80456;21664;1;156;76.0;150;100;2;1;0;0;1;1
+80457;20382;1;156;60.0;120;80;3;3;0;0;1;1
+80459;21322;1;164;65.0;110;70;1;1;0;0;1;0
+80460;20567;2;162;67.0;120;80;1;1;0;0;1;1
+80461;19619;1;160;65.0;130;80;1;1;0;0;1;0
+80463;18223;1;159;73.0;110;80;1;1;0;0;1;0
+80464;20453;2;171;79.0;130;90;1;1;0;1;1;0
+80467;19298;2;159;66.0;120;80;1;1;0;0;1;0
+80468;15255;1;157;49.0;90;60;1;1;0;0;0;0
+80469;19935;1;165;89.0;120;80;1;1;0;0;1;0
+80470;17355;2;172;53.0;110;70;1;1;0;0;0;1
+80471;22545;1;160;70.0;120;80;2;3;0;0;1;0
+80473;20637;1;168;57.0;120;80;1;3;0;0;1;0
+80474;19701;1;175;73.0;140;90;1;1;0;0;0;0
+80475;19833;1;175;80.0;120;80;1;1;0;0;0;0
+80476;23207;1;154;69.0;120;90;1;1;0;0;1;0
+80477;16787;1;156;57.0;120;80;1;1;0;0;1;0
+80478;17501;1;157;50.0;130;80;3;1;0;0;1;1
+80479;19619;2;171;69.0;120;80;1;1;0;0;1;1
+80480;21789;1;157;83.0;160;100;3;3;0;0;1;1
+80481;21998;1;165;66.0;110;80;1;1;0;0;1;0
+80482;17315;2;187;85.0;120;79;1;1;0;0;1;1
+80483;20602;1;168;56.0;120;80;1;1;0;0;0;0
+80484;14608;1;156;61.0;120;80;1;1;0;0;1;0
+80487;15388;1;161;62.0;120;80;1;1;0;0;1;0
+80488;20669;1;157;58.0;120;80;1;1;0;0;1;0
+80491;20519;1;158;60.0;120;80;1;1;0;0;1;1
+80492;18766;1;154;50.0;90;60;1;1;0;0;1;0
+80493;14577;2;173;74.0;120;80;1;1;0;0;1;0
+80494;19716;2;175;99.0;110;70;1;1;0;0;0;0
+80495;14382;1;167;52.0;110;70;1;1;0;0;1;0
+80496;22709;2;162;58.0;140;100;2;1;1;0;1;1
+80500;18198;1;167;62.0;120;80;1;1;0;0;1;0
+80501;19902;2;176;84.0;120;80;2;2;1;1;1;0
+80502;19004;2;170;74.0;120;80;1;1;0;0;1;0
+80506;19890;1;165;73.0;120;80;1;1;0;0;1;0
+80507;17611;2;164;85.0;110;60;1;1;0;0;0;1
+80508;22582;1;152;96.0;120;70;3;2;0;0;1;1
+80510;20419;2;160;64.0;120;80;3;1;0;0;0;0
+80511;16629;1;167;86.0;110;80;1;1;1;1;1;0
+80512;17420;1;166;70.0;130;80;3;1;0;0;1;1
+80514;23175;1;160;53.0;140;100;1;1;0;0;1;1
+80515;21325;2;175;76.0;110;70;1;1;0;0;1;0
+80517;14614;1;160;60.0;120;80;1;1;0;0;1;0
+80520;23062;1;160;68.0;140;80;3;1;0;0;1;1
+80521;18057;2;171;73.0;160;80;3;1;0;0;1;1
+80522;21936;1;162;68.0;125;80;1;1;0;0;0;1
+80523;21392;1;164;160.0;130;90;2;2;0;0;1;1
+80524;23294;1;170;86.5;150;90;2;1;0;0;1;1
+80525;21092;1;155;59.0;120;80;1;1;0;0;1;0
+80526;20401;1;165;74.0;150;90;1;1;0;0;1;1
+80527;19917;2;171;102.0;140;90;2;2;0;0;0;1
+80528;20958;1;165;78.0;150;100;1;1;0;0;1;1
+80530;20417;1;165;60.0;140;90;1;1;0;0;1;0
+80531;22147;1;157;67.0;120;80;1;1;0;0;1;1
+80532;18958;1;162;67.0;110;70;1;1;0;0;1;0
+80536;22786;2;164;70.0;120;80;1;1;0;0;0;1
+80538;15100;1;159;86.0;140;70;1;1;0;0;1;1
+80539;21174;1;160;59.0;12;80;1;1;0;0;1;0
+80541;19140;1;165;90.0;120;80;1;1;0;0;1;0
+80542;19519;1;153;57.0;120;80;1;1;0;0;1;0
+80544;16162;1;166;65.0;120;80;1;1;0;0;1;0
+80546;16137;1;165;62.0;120;80;1;1;0;0;1;0
+80547;15373;1;164;105.0;130;80;2;2;0;0;1;0
+80548;15349;2;165;72.0;110;70;1;1;0;0;1;0
+80549;18936;1;174;69.0;120;80;1;1;0;0;1;0
+80551;21783;1;155;71.0;150;100;1;1;0;0;1;1
+80552;15378;2;172;60.0;120;60;1;1;1;1;1;0
+80553;19132;2;172;73.0;120;80;1;1;0;0;1;0
+80554;20999;1;150;54.0;120;80;1;1;0;0;1;1
+80555;21095;2;176;64.0;160;100;1;1;1;1;1;1
+80561;19541;1;169;88.0;120;80;1;1;0;0;1;1
+80563;15091;1;158;50.0;110;70;1;1;0;0;1;0
+80564;14634;2;165;70.0;110;80;1;1;0;0;0;0
+80565;14588;1;164;94.5;130;80;2;1;0;0;1;1
+80569;19103;1;165;65.0;120;80;3;3;0;0;0;1
+80571;21000;2;164;94.0;140;80;2;1;0;0;1;1
+80573;19620;2;174;84.0;150;80;1;1;1;0;0;1
+80574;21217;1;164;75.0;150;90;3;3;0;0;1;1
+80575;20551;1;168;67.0;110;70;1;1;0;0;1;1
+80576;20468;2;160;62.0;120;80;1;1;1;1;1;0
+80577;15075;2;173;80.0;100;70;2;2;0;0;1;0
+80578;23414;1;163;89.0;130;80;2;3;0;1;1;1
+80579;15983;2;174;89.0;120;90;1;1;1;1;0;0
+80580;23144;2;167;56.0;120;80;1;1;0;0;1;0
+80582;20562;1;172;70.0;130;90;1;1;0;0;1;1
+80583;15350;2;176;89.0;120;80;1;1;0;0;1;0
+80586;15273;2;174;68.2;120;80;1;1;1;0;1;0
+80591;21285;1;152;76.0;140;90;2;2;0;0;1;1
+80592;18169;1;158;74.0;130;90;1;1;0;1;1;1
+80593;14669;1;160;80.0;110;70;1;1;0;0;1;0
+80594;23286;2;170;70.0;140;80;1;1;0;0;1;1
+80595;16807;2;170;72.0;105;80;1;1;1;0;1;0
+80596;18063;2;168;68.0;130;80;1;1;0;0;1;0
+80597;21164;1;151;73.0;155;100;1;1;0;0;0;0
+80599;23575;2;171;63.0;110;70;1;1;0;0;1;0
+80600;18258;1;157;51.0;110;70;1;1;0;0;1;0
+80601;21158;1;160;82.0;120;80;3;3;0;0;1;0
+80602;21108;1;161;68.0;120;80;3;3;0;0;1;0
+80603;14470;1;185;74.0;120;80;1;1;0;0;0;0
+80605;18410;1;162;65.0;120;80;2;1;0;0;1;0
+80607;18236;2;178;85.0;120;70;1;1;0;0;1;1
+80608;20472;1;175;85.0;150;80;3;3;0;0;1;1
+80610;23611;1;156;106.0;140;90;3;1;0;0;0;1
+80612;18275;1;165;68.0;120;80;1;1;0;0;1;0
+80614;14691;2;178;76.0;120;80;1;1;1;0;1;0
+80615;15910;2;169;89.0;134;92;1;1;0;0;1;0
+80616;18998;2;172;91.0;130;80;3;3;1;0;1;1
+80617;20392;1;165;73.0;120;70;1;1;0;0;1;0
+80618;16011;2;170;70.0;130;90;1;1;0;0;1;1
+80624;23193;1;168;76.0;120;80;1;1;0;0;0;1
+80625;20406;2;166;89.0;135;80;1;1;1;1;0;1
+80626;21039;1;175;74.0;120;80;1;1;0;0;1;0
+80627;19732;2;165;65.0;140;80;1;1;0;0;0;1
+80628;20411;2;170;92.0;140;90;1;1;0;0;1;1
+80632;18931;1;160;90.0;130;90;1;1;0;0;1;1
+80634;21058;1;170;86.0;140;100;1;1;0;0;1;0
+80637;14419;1;164;80.0;130;88;1;1;0;1;1;0
+80638;23420;1;156;50.0;100;60;1;1;0;0;1;0
+80639;23308;2;162;68.0;160;100;1;1;1;0;1;1
+80640;18477;1;169;77.0;130;80;1;1;0;0;0;1
+80642;20434;2;176;87.0;140;90;1;1;0;0;1;1
+80643;17060;2;167;86.0;150;1001;2;1;0;0;1;1
+80646;22082;1;158;69.0;120;80;1;1;0;0;1;1
+80648;19656;2;156;59.0;100;70;1;1;0;0;1;0
+80649;16880;1;159;64.0;110;70;1;1;0;0;1;0
+80652;21765;1;167;73.0;110;80;1;1;0;0;1;1
+80653;22627;1;164;59.0;140;80;2;1;0;0;1;1
+80654;20901;1;164;79.0;130;90;3;1;0;0;1;1
+80656;22444;2;181;143.0;150;90;1;2;1;0;1;1
+80657;21810;1;176;78.0;140;90;3;1;0;0;1;1
+80658;23339;2;171;74.0;140;90;3;1;0;0;1;1
+80661;20330;1;162;61.0;120;80;1;1;0;0;1;1
+80662;22597;2;166;77.0;120;70;1;1;0;0;1;1
+80663;20950;1;150;64.0;120;80;1;1;0;0;1;0
+80664;22310;2;170;81.0;135;90;1;1;0;0;1;1
+80667;21161;2;166;78.0;120;80;1;1;1;1;1;0
+80670;16701;1;161;56.0;120;80;1;1;0;0;1;0
+80671;22679;2;170;69.0;120;80;1;1;0;0;0;1
+80672;22420;1;140;74.0;170;90;1;2;0;0;1;0
+80673;21666;2;171;120.0;190;100;2;2;0;0;1;1
+80674;18216;1;147;63.0;120;80;2;2;0;0;1;0
+80675;21844;1;170;78.0;150;1000;3;1;0;0;1;1
+80676;15908;2;172;86.0;130;80;1;1;0;0;1;0
+80677;19894;2;178;113.0;130;80;1;1;0;0;0;0
+80678;19741;1;159;84.0;140;90;1;1;0;0;1;0
+80680;18164;2;177;98.0;135;90;3;1;0;1;1;1
+80682;20391;2;178;78.0;150;90;1;1;0;0;1;1
+80683;21772;1;158;84.0;140;90;3;3;0;0;1;1
+80684;20591;1;168;67.0;120;80;1;1;0;0;1;0
+80685;18214;2;173;100.0;120;100;2;2;1;0;1;0
+80686;20471;1;158;97.0;140;80;3;1;0;0;1;1
+80687;21232;1;162;81.0;140;80;3;3;0;0;0;1
+80688;15409;2;162;74.0;110;70;2;2;0;0;1;0
+80689;17372;2;160;62.0;120;80;3;1;0;1;1;1
+80690;18967;1;165;74.0;160;90;1;1;0;0;1;1
+80691;18900;1;165;65.0;120;80;1;1;0;1;1;1
+80692;19699;2;165;75.0;120;80;1;1;0;0;1;0
+80693;18089;1;156;68.0;140;90;1;1;0;0;1;1
+80694;20479;1;153;63.0;120;80;1;1;0;0;1;1
+80696;22390;1;156;73.0;120;70;1;1;0;0;1;0
+80697;20503;1;165;63.0;120;80;1;1;0;0;1;0
+80698;14337;1;164;97.0;120;80;1;1;0;0;1;0
+80700;18469;2;180;80.0;120;70;1;1;0;0;1;0
+80702;21296;2;174;69.0;120;80;1;1;0;0;1;1
+80704;21983;2;170;87.0;130;90;1;1;0;0;1;0
+80705;14738;2;170;68.0;120;80;1;3;1;0;0;0
+80707;17355;2;173;72.0;110;70;1;1;0;0;1;0
+80708;23092;1;162;96.0;140;90;1;1;0;0;1;1
+80713;16738;2;168;67.0;110;70;1;1;0;0;1;0
+80714;23473;2;168;74.0;130;700;1;1;1;1;1;0
+80716;22724;1;165;66.0;130;90;1;1;0;0;1;1
+80718;22738;1;148;80.0;140;100;1;1;0;0;1;1
+80719;21071;1;165;65.0;140;90;1;2;0;0;0;0
+80722;20426;1;156;68.0;120;80;1;1;0;0;1;1
+80724;18385;1;175;68.0;120;80;1;1;0;0;1;0
+80725;17295;1;158;65.0;160;100;2;2;0;0;1;1
+80726;18381;1;157;90.0;135;90;1;1;0;0;1;0
+80727;18000;1;169;68.0;120;80;1;1;0;0;0;1
+80728;18309;1;152;50.0;120;80;1;1;0;0;0;1
+80729;22694;2;170;86.0;140;80;1;1;0;0;1;1
+80730;19633;1;154;64.0;120;80;1;1;0;0;0;0
+80731;22002;1;144;61.0;120;80;1;1;1;0;1;1
+80734;23310;2;168;60.0;140;90;1;1;0;0;1;1
+80736;16822;1;160;63.0;110;70;1;1;0;0;0;0
+80737;17123;1;169;58.0;120;70;1;1;0;0;1;0
+80738;20893;2;174;103.0;150;100;1;2;1;1;1;1
+80739;22536;2;172;105.0;120;70;1;1;0;0;1;1
+80740;21867;1;158;65.0;120;80;3;3;0;0;1;1
+80741;15290;2;176;74.0;110;80;1;1;0;0;1;0
+80742;23050;1;160;75.0;150;80;1;1;0;0;1;1
+80743;21235;1;161;105.0;148;84;1;1;0;0;1;0
+80744;21820;2;166;57.0;120;80;1;1;0;0;0;1
+80747;19950;1;160;61.0;120;80;1;1;0;0;1;0
+80748;20428;1;160;66.0;120;80;1;1;0;0;0;0
+80749;18537;2;169;90.0;120;80;1;1;0;0;1;0
+80751;15471;2;170;74.0;130;90;1;1;0;0;1;0
+80754;20319;2;175;85.0;130;80;3;3;0;0;1;1
+80755;18755;2;170;82.0;120;80;1;1;0;0;1;0
+80757;17592;1;162;104.0;150;90;1;2;0;0;1;1
+80758;21907;2;170;83.0;120;80;3;1;0;0;1;1
+80760;14799;1;167;60.0;120;80;1;1;0;0;1;0
+80761;19671;1;165;70.0;180;120;2;2;0;0;1;1
+80762;21129;1;154;71.0;150;80;1;1;0;0;0;1
+80764;19699;2;168;76.0;120;85;3;1;0;0;1;1
+80765;19867;1;172;89.0;130;90;1;1;0;0;1;1
+80767;20391;2;160;84.0;120;80;1;1;1;0;1;0
+80769;22523;1;162;82.0;160;100;3;1;0;0;1;1
+80771;18271;2;167;67.0;120;90;1;1;0;0;1;1
+80773;20657;1;163;66.0;150;90;3;1;0;0;1;1
+80774;17601;1;169;89.0;120;80;2;1;0;0;1;1
+80776;17567;1;170;98.0;140;79;2;1;0;0;0;1
+80778;16194;1;173;89.0;130;90;2;1;0;0;0;1
+80780;19680;2;170;74.0;130;80;1;1;0;0;1;1
+80781;16824;2;170;70.0;120;80;1;1;0;0;1;0
+80782;18156;1;160;60.0;120;60;1;1;0;0;1;0
+80783;21726;1;168;85.0;110;80;1;1;0;0;1;1
+80784;21099;2;177;59.0;120;80;1;1;0;0;1;0
+80785;18250;1;158;57.0;110;70;1;1;0;0;1;0
+80786;19751;1;156;72.0;130;90;3;1;0;0;1;1
+80787;19089;1;165;70.0;120;80;1;1;0;0;1;0
+80788;15824;1;163;87.0;110;70;1;1;0;0;1;0
+80793;15099;2;165;63.0;120;80;1;1;1;0;1;0
+80795;19527;1;164;58.0;140;100;3;1;0;1;1;0
+80796;19727;2;170;76.0;130;90;1;2;1;0;1;0
+80797;20871;1;155;72.0;120;80;1;1;0;0;1;0
+80799;18403;2;168;82.0;120;80;1;1;1;0;1;0
+80802;19556;1;169;78.0;120;70;2;2;0;0;0;1
+80803;20387;2;175;68.0;120;60;1;1;0;0;1;0
+80807;19507;2;176;130.0;120;80;1;3;0;0;1;1
+80808;20521;1;157;59.0;140;90;1;1;0;0;1;1
+80809;21981;2;164;59.0;110;70;1;1;1;0;1;0
+80810;15251;1;158;71.0;100;60;2;2;0;0;1;0
+80811;21164;1;161;73.0;130;90;3;1;0;0;1;1
+80814;20450;1;152;46.0;100;60;1;1;0;0;1;0
+80815;17734;2;168;72.0;120;80;1;1;1;1;1;0
+80816;21055;2;168;73.0;120;80;1;1;0;0;1;0
+80817;18160;2;159;78.0;120;80;3;3;0;0;1;0
+80818;21832;1;164;90.0;120;80;1;1;0;0;1;0
+80819;14626;1;166;67.0;120;80;1;1;0;0;1;0
+80820;20917;1;170;68.0;120;80;1;1;0;0;1;0
+80823;21719;2;175;74.0;100;70;1;1;1;1;1;0
+80825;23095;1;154;68.0;100;70;1;1;0;0;0;1
+80826;15931;2;172;70.0;120;80;1;1;0;0;1;0
+80827;17718;1;167;68.0;120;80;1;1;0;0;1;0
+80828;16218;1;154;64.0;90;60;1;1;0;0;1;0
+80829;21815;2;172;76.0;110;70;1;1;1;0;1;1
+80830;18980;1;154;74.0;140;90;3;1;0;0;1;1
+80832;17474;1;170;88.0;120;80;1;1;0;0;1;0
+80835;21195;2;170;84.0;140;90;3;1;0;0;1;1
+80836;19133;2;180;100.0;100;70;1;1;0;0;1;0
+80837;22690;1;156;50.0;120;80;1;1;0;0;0;1
+80840;17012;1;156;54.0;120;60;1;1;0;0;1;1
+80841;16010;2;177;85.0;140;89;2;1;0;0;0;1
+80845;20542;1;169;80.0;140;80;1;1;0;0;1;0
+80846;16531;2;172;69.0;120;80;1;1;0;0;1;0
+80848;20597;2;190;90.0;17;80;1;1;0;0;1;1
+80850;14522;2;170;69.0;120;80;1;1;0;0;0;0
+80852;16675;1;164;81.0;120;80;1;1;0;0;1;0
+80853;22667;2;168;76.0;140;100;3;3;0;0;1;1
+80854;22752;2;175;72.0;110;70;3;1;1;0;1;0
+80855;18142;1;154;59.0;120;80;1;1;0;0;1;1
+80856;18212;1;157;61.0;120;80;1;1;0;0;1;0
+80858;19518;2;164;101.0;140;90;2;1;0;0;1;1
+80859;17535;2;165;65.0;120;80;1;1;0;0;1;0
+80861;15159;2;164;65.0;110;70;1;1;0;0;1;0
+80863;19510;1;151;80.0;140;90;1;1;0;0;1;0
+80865;20490;1;158;78.0;120;80;1;1;0;0;1;0
+80868;19185;1;165;65.0;120;80;3;3;0;0;0;1
+80869;16568;2;168;82.0;145;100;2;1;1;1;0;0
+80873;21144;1;158;60.0;120;80;1;1;0;0;1;0
+80875;19466;1;156;85.0;140;100;1;2;0;0;1;1
+80877;16006;2;188;108.0;140;100;1;1;0;1;1;1
+80878;22557;2;170;63.0;120;90;2;2;0;0;0;1
+80881;20884;2;165;65.0;120;80;1;1;0;0;1;0
+80882;22612;1;162;96.0;120;100;3;2;0;0;0;1
+80884;21942;2;162;76.0;110;70;3;1;0;0;1;1
+80885;15219;1;151;73.0;110;70;1;1;0;0;1;0
+80886;18867;1;168;110.0;160;1000;1;1;1;0;1;0
+80887;21770;2;178;85.0;160;90;2;2;0;0;1;1
+80888;17461;2;167;66.0;110;70;1;1;1;1;0;0
+80890;20326;1;170;80.0;120;70;1;1;0;0;1;1
+80891;21793;1;159;67.0;120;80;1;1;0;0;1;1
+80893;16794;2;167;74.0;120;70;1;1;0;0;1;0
+80894;21170;1;164;83.0;150;90;1;1;0;0;1;1
+80895;16068;2;163;72.0;120;80;1;1;0;0;1;0
+80896;20446;2;163;86.0;130;80;1;1;0;0;0;1
+80899;22447;2;164;82.0;180;99;3;3;0;0;1;1
+80900;15243;1;155;97.0;100;70;1;2;0;0;1;0
+80902;18311;2;170;68.0;90;60;1;1;0;0;1;0
+80903;19012;1;120;80.0;110;70;2;1;0;0;0;0
+80904;18322;1;163;65.0;120;70;1;1;0;0;1;0
+80906;22430;1;152;90.0;150;80;2;1;0;0;1;1
+80907;21861;1;162;74.0;120;80;1;1;0;0;0;1
+80910;18184;1;162;66.0;170;90;1;1;0;0;0;1
+80911;20532;1;168;60.0;120;90;1;1;0;0;1;0
+80912;19725;1;162;66.0;120;80;1;1;0;0;1;1
+80913;20340;1;158;56.0;109;70;1;1;0;0;1;0
+80914;16174;1;169;89.0;160;80;1;1;0;0;1;1
+80915;21385;2;172;65.0;120;80;2;1;1;0;1;0
+80917;18427;1;155;68.0;120;80;2;2;0;0;0;0
+80918;14655;1;155;52.0;120;80;1;1;0;0;1;0
+80919;22620;1;165;69.0;140;90;1;1;0;0;1;1
+80920;19736;1;167;79.0;140;100;1;1;0;0;0;1
+80921;17435;1;151;91.0;130;80;2;2;0;0;1;1
+80922;18308;1;152;65.0;112;76;1;1;0;0;0;0
+80924;14672;1;158;53.0;120;80;1;1;1;0;1;0
+80926;14823;2;175;65.0;110;70;1;1;0;0;1;0
+80927;17398;1;167;65.0;110;80;1;1;0;0;1;0
+80928;19872;1;158;62.0;125;80;1;3;0;0;1;0
+80929;21280;1;171;68.0;120;80;1;1;0;0;1;0
+80930;19661;1;172;79.0;90;70;1;1;0;0;1;1
+80931;20217;2;177;93.0;110;70;1;1;0;0;1;0
+80932;20426;2;186;90.0;130;90;1;1;0;0;1;1
+80933;18529;1;178;85.0;120;80;1;1;0;0;0;0
+80934;21938;1;158;67.0;130;70;1;1;0;0;1;0
+80937;20654;1;160;65.0;120;80;1;1;0;0;1;0
+80940;19070;1;157;65.0;120;80;1;1;0;0;1;1
+80941;20302;1;160;75.0;110;70;1;1;0;0;1;1
+80944;16871;2;154;53.0;170;80;2;1;0;1;1;0
+80945;16778;2;172;84.0;127;73;2;1;0;0;1;0
+80946;16718;1;160;72.0;180;120;1;3;0;0;1;1
+80947;18250;1;165;70.0;120;80;1;1;0;0;1;0
+80949;15084;1;161;82.0;120;80;1;1;0;0;1;0
+80950;18934;1;178;85.0;140;90;1;1;0;0;0;0
+80951;17974;2;175;88.0;120;80;2;1;1;0;1;1
+80952;17318;1;156;63.0;120;80;1;1;0;0;0;0
+80953;21285;2;180;79.0;120;80;1;3;0;0;1;0
+80954;15300;2;160;62.0;140;90;1;1;0;0;1;1
+80955;15070;1;168;65.0;120;60;1;1;0;0;1;0
+80957;15400;2;158;60.0;120;80;1;1;0;0;0;0
+80959;21868;1;165;78.0;120;80;3;1;0;0;1;1
+80960;22671;2;165;78.0;160;90;3;1;0;0;1;1
+80961;21226;2;170;50.0;160;100;1;1;1;0;1;1
+80962;21781;1;165;63.0;130;80;3;1;0;0;1;1
+80963;21217;2;173;73.0;110;70;1;1;0;0;1;1
+80964;21327;1;176;76.0;120;60;3;3;0;0;1;0
+80965;23450;2;176;118.0;120;80;1;1;0;0;1;1
+80966;21885;2;169;65.0;140;90;1;1;0;0;1;1
+80967;17555;2;170;65.0;120;80;1;1;0;0;1;0
+80970;18421;1;156;65.0;120;90;1;1;0;0;1;0
+80972;22608;1;168;70.0;110;70;1;3;0;0;1;0
+80973;18325;2;167;85.0;130;80;2;1;1;1;1;1
+80974;19064;2;173;73.0;100;70;1;1;0;0;0;0
+80976;21821;1;170;93.0;130;80;1;2;0;0;1;0
+80978;23197;2;182;115.0;180;110;1;1;0;0;0;1
+80979;17348;2;168;68.0;120;80;1;1;0;0;0;0
+80980;18465;1;171;63.0;120;80;1;1;0;0;1;0
+80982;19105;2;173;74.0;120;90;3;1;0;0;1;0
+80983;20542;1;161;80.0;120;70;1;1;0;0;1;0
+80984;18920;1;165;84.0;120;80;1;1;0;0;1;0
+80985;14634;1;160;75.0;140;90;1;1;0;0;1;1
+80987;18186;1;152;41.0;120;80;1;1;0;0;1;0
+80988;17417;1;169;78.0;130;80;1;1;0;0;1;1
+80989;21895;1;170;70.0;130;80;3;1;0;0;1;0
+80991;16171;1;159;93.0;130;90;1;1;0;0;1;0
+80992;23491;2;180;110.0;130;90;1;1;0;0;1;1
+80993;18800;1;161;58.0;110;60;1;1;0;0;0;0
+80994;15974;1;165;66.0;110;70;2;2;0;0;1;1
+80995;18220;1;163;54.0;130;80;1;2;0;0;1;0
+80996;21155;2;165;69.0;120;80;1;1;0;0;1;0
+80997;14548;1;160;64.0;110;70;1;1;0;0;1;0
+80998;23311;1;166;78.0;140;90;1;3;0;0;1;1
+81001;20396;1;170;86.0;120;80;1;3;0;0;1;1
+81002;20287;1;162;71.0;150;100;1;1;0;0;1;1
+81004;17978;1;155;98.0;120;80;1;1;0;0;1;0
+81005;21661;1;152;53.0;120;80;1;1;0;0;1;0
+81007;20387;1;165;90.0;130;90;3;3;0;0;1;1
+81008;22494;1;155;81.0;160;100;2;1;0;0;1;0
+81010;15228;1;159;60.0;120;80;1;1;0;0;1;0
+81011;20442;2;171;85.0;180;90;1;1;0;0;1;1
+81012;19842;1;160;60.0;120;80;3;3;0;0;1;1
+81015;21914;2;153;86.0;120;80;1;1;0;0;0;1
+81016;19871;1;154;54.0;120;80;1;1;0;0;1;0
+81017;16039;2;174;82.0;120;80;1;1;0;0;0;1
+81019;21752;1;164;67.0;160;90;2;1;0;0;1;0
+81021;23385;2;162;69.0;150;90;1;2;0;0;1;1
+81022;23484;1;156;81.0;130;80;1;1;0;0;1;0
+81023;18215;1;165;66.0;110;80;1;1;0;0;0;0
+81025;18827;2;180;103.0;120;80;1;1;0;0;0;1
+81026;20698;2;166;71.0;120;80;1;1;0;0;1;1
+81027;23190;2;160;103.0;130;90;3;3;0;0;1;1
+81029;18878;1;168;67.0;130;80;1;1;0;0;1;1
+81030;21906;1;152;126.0;140;90;3;3;0;0;1;1
+81033;19751;2;168;75.0;130;80;1;1;0;0;1;0
+81035;21281;2;173;86.0;120;70;1;1;0;0;1;0
+81036;21697;2;182;74.0;120;80;1;1;1;0;1;0
+81039;18072;1;156;80.0;130;80;3;3;0;0;1;1
+81040;19691;2;166;80.0;120;80;1;1;0;0;1;0
+81041;21034;1;158;92.0;140;90;2;1;0;0;0;1
+81042;21672;1;168;68.0;120;80;3;1;0;0;1;0
+81043;23262;1;158;68.0;130;80;3;1;0;0;1;0
+81044;18066;1;150;98.0;130;90;1;1;0;0;1;1
+81046;20418;1;162;80.0;120;80;1;1;0;0;0;0
+81047;19616;1;165;62.0;120;80;1;1;0;0;1;0
+81048;18920;1;163;84.0;140;80;1;1;0;0;1;1
+81049;20508;2;163;63.0;120;80;1;1;0;0;1;0
+81050;18894;1;160;76.0;105;70;1;1;0;0;1;0
+81051;18341;1;160;80.0;10;80;1;1;0;0;1;1
+81052;16075;2;188;101.0;130;80;1;1;0;0;1;0
+81053;18310;2;180;85.0;90;60;1;1;0;0;0;1
+81054;18960;1;157;53.0;120;70;1;1;0;0;1;0
+81055;16794;2;176;73.0;120;80;1;1;0;0;1;0
+81057;18382;1;155;49.0;110;70;2;1;0;0;1;1
+81058;18034;1;152;56.0;100;60;1;3;0;0;1;1
+81060;19850;2;165;67.0;130;70;1;1;1;0;1;0
+81061;19950;2;170;70.0;120;80;1;1;0;0;1;0
+81062;19724;1;146;48.0;110;70;1;1;0;0;1;0
+81063;16909;2;168;76.0;140;90;1;1;0;0;1;1
+81064;21322;1;168;78.0;120;80;1;1;0;0;1;0
+81066;18114;2;178;91.0;140;90;1;1;0;0;1;1
+81068;18894;2;165;80.0;120;80;1;1;0;0;1;1
+81069;23395;2;167;88.0;140;80;1;1;0;0;0;1
+81071;18731;2;166;77.0;120;80;1;1;0;0;1;0
+81072;20449;1;162;65.0;120;80;1;1;0;0;1;0
+81074;20503;1;160;70.0;140;80;3;1;0;0;1;1
+81076;21709;1;150;78.0;150;100;2;1;0;0;1;1
+81077;21753;1;159;59.0;120;80;1;1;0;0;1;0
+81078;22685;1;164;84.0;120;80;2;2;0;0;1;0
+81079;19793;1;155;60.0;110;70;1;1;0;0;1;0
+81080;17711;1;167;68.0;110;80;1;1;0;0;0;0
+81081;22923;2;166;72.0;110;90;2;1;1;0;1;1
+81082;22367;1;158;72.0;120;70;2;1;0;0;1;0
+81084;16708;2;174;80.0;130;80;2;1;0;1;1;0
+81085;21031;1;168;71.0;120;60;1;1;0;0;0;1
+81088;20431;2;171;78.0;150;100;2;1;1;0;1;1
+81093;16079;1;162;62.0;120;80;2;1;0;0;0;0
+81094;23372;1;152;63.0;170;70;3;3;0;0;0;1
+81095;22786;1;160;99.0;171;115;2;2;0;0;1;1
+81096;23356;2;173;90.0;140;80;1;3;0;0;1;0
+81097;15928;1;164;59.0;120;80;1;1;0;0;1;0
+81098;19660;2;170;80.0;150;90;1;1;0;0;1;1
+81099;19213;2;158;68.0;170;100;3;1;0;1;1;1
+81101;20423;1;164;89.0;150;90;1;1;0;0;1;1
+81102;22707;2;181;93.0;120;80;1;1;0;0;1;0
+81104;21696;1;157;65.0;120;80;3;3;0;0;0;1
+81105;19644;1;163;65.0;160;90;2;2;0;0;1;1
+81106;20929;1;157;77.0;160;100;3;1;0;0;1;1
+81108;18234;1;152;76.0;140;80;1;1;0;0;0;1
+81110;17940;2;162;56.0;120;80;1;1;0;0;1;0
+81111;19540;1;167;67.0;130;90;3;1;0;0;1;1
+81112;16234;2;178;96.0;120;80;1;1;0;0;1;0
+81116;23313;2;172;84.0;180;100;1;1;1;0;1;0
+81118;19127;1;170;65.0;120;80;1;1;0;0;1;0
+81119;19933;2;168;65.0;120;70;2;1;0;0;1;0
+81120;16854;1;166;90.0;120;80;2;1;0;0;1;1
+81121;22699;2;165;74.0;14;80;2;2;0;0;1;1
+81122;20802;1;144;50.0;110;60;1;1;0;0;1;0
+81123;22110;1;160;83.0;150;110;1;1;0;1;1;1
+81124;19792;1;160;60.0;140;90;1;1;0;0;1;1
+81125;17596;1;159;78.0;130;90;3;3;0;0;1;1
+81126;21105;2;170;66.0;130;80;1;1;0;0;1;0
+81127;16466;1;156;85.0;140;100;1;1;0;0;1;1
+81130;22661;1;160;85.0;140;90;1;1;0;0;1;1
+81131;22539;1;158;75.0;120;80;1;1;0;0;0;1
+81132;14533;1;170;75.0;120;80;1;1;0;0;1;0
+81133;19489;2;154;62.7;140;100;3;1;1;0;1;1
+81134;19883;1;156;67.0;120;80;1;1;0;0;1;0
+81136;21739;1;171;69.0;120;80;2;2;0;0;0;0
+81137;21266;2;166;76.0;130;80;1;1;0;0;1;1
+81138;19662;1;160;51.0;100;70;1;1;0;0;0;0
+81139;17429;1;152;62.0;120;80;1;1;0;0;0;0
+81140;18323;1;172;78.0;130;80;1;1;0;0;1;1
+81141;23251;1;160;98.0;150;100;2;1;0;1;1;1
+81142;18027;1;156;60.0;120;80;1;1;0;0;1;1
+81143;18105;2;169;73.0;120;80;1;1;0;0;0;0
+81145;15206;2;173;100.0;140;100;1;1;1;0;0;1
+81146;16158;2;166;56.0;120;80;1;1;0;0;1;0
+81148;16684;1;165;65.0;120;80;1;1;0;0;0;0
+81149;16809;1;162;62.0;110;70;1;1;0;0;1;0
+81150;20999;1;161;70.0;130;80;1;1;0;0;1;1
+81153;15351;2;160;50.0;120;80;1;1;0;0;1;0
+81154;19633;1;148;48.0;110;70;1;1;0;0;1;0
+81155;20348;1;161;61.0;130;90;1;1;0;0;1;0
+81157;20399;1;156;57.0;120;80;1;1;0;0;1;0
+81159;22164;1;156;70.0;120;80;1;1;0;0;1;1
+81161;21302;1;160;75.0;110;70;1;1;0;0;1;0
+81162;18840;1;164;64.0;120;80;1;1;0;0;1;0
+81163;19165;2;163;90.0;120;80;1;1;0;0;1;0
+81164;18869;2;168;87.0;120;80;1;1;0;0;1;1
+81165;19068;2;166;75.0;130;80;1;1;0;0;0;0
+81167;14697;1;163;93.0;140;90;2;2;0;0;1;1
+81169;21692;1;176;53.0;120;80;1;1;0;0;1;0
+81170;19704;2;165;60.0;140;90;1;1;0;0;0;0
+81171;23435;2;162;66.0;150;80;1;1;0;0;1;1
+81172;15234;1;157;73.0;140;90;3;1;0;0;0;1
+81173;19120;1;173;70.0;110;70;1;1;0;0;1;0
+81175;22549;1;166;125.0;180;110;2;2;0;0;1;1
+81176;20416;2;120;80.0;120;80;3;3;0;0;0;1
+81177;18155;1;162;56.0;120;80;1;1;0;0;1;0
+81180;21929;1;160;85.0;150;100;2;1;0;0;1;1
+81181;21253;2;163;71.0;120;80;1;1;1;1;1;1
+81184;15136;2;172;75.0;120;80;1;2;0;0;1;0
+81185;18987;2;165;70.0;140;100;1;1;0;0;0;1
+81188;21292;2;172;63.0;120;80;3;3;0;0;1;0
+81189;20323;1;165;74.0;120;80;2;2;0;0;0;0
+81191;18053;1;163;50.0;90;60;2;1;0;0;1;0
+81192;21469;1;170;90.0;150;100;1;2;0;0;1;1
+81193;16592;1;157;74.0;110;70;1;1;1;0;0;0
+81194;22017;1;150;63.0;110;70;1;1;0;0;1;0
+81195;18108;1;155;57.0;110;70;1;1;0;0;1;0
+81196;21253;1;176;89.0;120;80;1;1;0;0;1;0
+81197;20532;1;151;63.0;160;90;2;1;0;0;1;1
+81198;21026;1;162;60.0;120;80;1;1;0;0;1;0
+81199;16881;1;155;56.0;130;80;1;1;0;0;1;1
+81200;16913;2;175;77.0;120;80;1;1;0;0;1;0
+81203;17546;2;169;72.0;125;70;1;1;1;0;0;0
+81205;21362;1;161;61.0;140;90;2;1;0;0;1;1
+81206;19733;1;160;77.0;110;80;2;1;0;0;1;0
+81207;15327;1;160;58.0;110;70;1;1;0;0;1;0
+81210;18955;1;165;84.0;140;90;3;2;0;0;1;1
+81212;18404;1;166;66.0;120;80;1;1;0;0;1;0
+81213;18493;1;162;73.0;110;80;2;1;0;0;0;1
+81214;15956;1;156;70.0;120;80;1;1;0;0;1;0
+81216;18135;1;168;105.0;160;1100;1;1;0;0;1;1
+81217;23290;2;169;70.0;130;100;3;3;0;0;1;0
+81218;23110;2;169;94.0;140;90;3;3;0;0;1;1
+81219;20380;1;166;84.0;110;75;1;1;0;0;1;0
+81220;15354;1;173;86.0;110;70;1;1;0;0;1;0
+81221;18837;1;168;66.0;110;80;1;1;0;0;1;0
+81224;22436;1;170;70.0;120;80;1;1;0;0;1;1
+81225;20667;1;165;59.0;120;89;1;1;0;0;1;0
+81226;14733;2;152;54.0;120;80;1;1;0;0;1;0
+81227;19520;1;162;85.0;140;80;2;1;0;0;1;1
+81228;18905;1;160;109.0;120;80;3;3;0;0;0;1
+81229;18893;2;168;65.0;110;70;1;1;1;0;0;0
+81230;21123;1;145;66.0;120;90;1;1;0;0;1;1
+81232;20293;1;162;70.0;110;70;1;1;0;0;1;0
+81233;19100;2;165;48.0;120;80;1;1;1;0;1;0
+81234;20383;2;170;76.0;120;80;3;3;0;0;1;1
+81235;23420;1;165;62.0;120;80;1;1;0;0;1;1
+81236;20229;1;169;80.0;140;80;2;1;0;0;1;1
+81237;19706;2;170;80.0;140;80;1;1;0;0;1;1
+81238;15455;1;168;75.0;120;60;1;1;0;0;1;0
+81239;16259;1;168;70.0;120;80;1;1;0;0;1;1
+81240;18980;1;152;37.0;90;50;1;1;0;0;1;0
+81241;14644;1;165;65.0;120;80;1;1;0;0;0;0
+81242;18889;2;172;76.0;120;80;1;1;0;0;1;0
+81243;19562;2;167;65.0;110;70;2;1;0;0;0;0
+81244;22011;2;176;89.0;120;90;1;1;1;0;1;0
+81248;20392;1;156;88.0;110;70;2;1;0;0;1;1
+81249;20360;2;171;82.0;120;80;1;1;0;0;1;0
+81250;18267;1;163;98.0;130;80;2;1;0;0;0;1
+81252;17631;2;169;118.0;110;80;2;3;1;0;0;0
+81253;21182;1;162;73.0;120;80;1;1;0;0;1;0
+81254;21394;2;165;58.0;130;80;3;1;0;0;0;1
+81256;19751;1;120;78.0;120;80;1;1;0;0;1;0
+81257;23343;2;168;63.0;140;90;1;1;0;0;1;1
+81260;18336;1;155;76.0;70;15;1;1;0;1;1;1
+81261;18410;1;172;75.0;100;70;2;2;0;0;1;0
+81262;22715;1;169;63.0;140;90;1;1;0;0;1;0
+81264;22740;1;170;80.0;120;80;1;1;0;0;1;1
+81269;18355;2;175;90.0;170;115;3;2;0;0;1;1
+81270;19799;1;156;75.0;140;80;1;2;0;0;1;1
+81271;16758;2;174;65.0;100;90;1;1;0;0;1;1
+81274;23590;1;160;69.0;140;90;3;3;0;0;1;1
+81276;21759;1;160;65.0;120;80;1;1;0;0;1;1
+81277;14519;2;170;79.0;110;80;1;1;0;0;1;0
+81279;20218;1;172;105.0;120;80;1;1;0;0;1;0
+81283;20622;2;178;78.0;130;90;1;1;0;0;1;1
+81285;19492;1;163;105.0;140;90;3;3;0;0;1;1
+81286;20349;2;174;82.0;120;80;3;1;1;0;1;1
+81287;21071;1;145;68.0;140;80;1;1;0;0;0;0
+81288;23271;2;169;82.0;120;80;1;1;0;0;0;0
+81290;15156;1;156;68.0;150;80;1;1;0;0;0;0
+81291;21117;1;170;53.0;120;70;1;1;0;0;1;0
+81292;22797;2;170;83.0;120;80;1;1;0;0;0;1
+81294;20257;2;165;67.0;120;80;1;1;0;0;1;0
+81295;22019;1;154;53.0;110;70;1;1;0;0;1;0
+81296;21207;1;154;82.0;130;100;3;1;0;0;1;1
+81297;19522;1;162;65.0;130;90;1;2;0;0;1;1
+81298;15268;1;164;70.0;120;0;1;1;0;0;1;0
+81300;21755;1;170;65.0;120;80;1;1;0;0;1;0
+81301;14890;1;165;71.0;120;80;3;3;0;0;1;0
+81302;20227;1;166;71.0;120;70;1;1;0;0;1;1
+81303;22446;1;155;85.0;130;80;3;3;0;0;1;1
+81304;17420;1;169;102.0;150;100;2;1;0;0;0;1
+81305;19871;1;132;55.0;120;80;2;1;0;0;1;0
+81307;18464;1;165;78.0;120;80;1;1;0;0;1;1
+81308;18881;1;156;61.0;110;80;1;1;0;0;0;0
+81311;20689;2;168;72.0;120;80;1;1;0;0;1;0
+81313;21973;1;151;78.0;110;80;3;3;0;0;1;1
+81314;18316;1;152;95.0;120;80;1;2;0;0;1;0
+81315;18191;1;163;73.0;130;100;2;1;0;0;1;0
+81317;21397;1;157;66.0;140;100;1;1;0;0;1;0
+81318;21123;2;162;74.0;150;80;1;1;0;0;0;1
+81320;20568;1;155;73.0;120;80;1;1;0;0;1;0
+81321;22414;2;163;87.0;185;92;1;1;1;1;1;1
+81322;14506;1;161;74.0;90;60;1;1;0;0;1;0
+81323;17225;2;170;95.0;130;80;3;1;0;0;0;1
+81325;18968;1;155;65.0;150;90;2;2;0;0;1;1
+81326;18989;1;176;87.0;160;90;1;1;0;0;1;0
+81328;19645;1;159;80.0;90;60;1;1;0;0;1;0
+81330;20553;2;177;102.0;140;90;1;1;0;0;0;1
+81331;19048;2;164;65.0;120;80;1;1;0;0;1;1
+81332;16737;1;162;80.5;170;100;1;1;0;0;1;1
+81333;18459;1;161;61.0;140;90;3;3;0;0;0;0
+81334;23289;2;173;75.0;120;80;1;3;0;0;1;1
+81335;17348;1;162;60.0;140;90;1;1;0;0;1;1
+81336;21852;2;165;80.0;100;60;1;1;1;0;1;1
+81337;21208;1;174;72.0;140;80;1;1;0;0;0;1
+81338;23037;2;182;75.0;150;90;3;1;0;0;1;1
+81339;21015;1;148;74.0;130;70;1;1;0;0;1;1
+81340;17501;1;161;121.0;110;70;1;1;0;0;1;1
+81341;20490;1;167;74.0;160;90;3;1;0;0;0;1
+81342;21052;2;178;69.0;110;70;1;1;0;0;1;0
+81344;15137;1;162;72.0;117;70;1;2;0;0;0;0
+81345;17332;1;160;77.0;140;80;2;1;0;0;0;0
+81346;18769;1;164;73.0;130;90;3;1;0;0;1;1
+81347;23286;1;164;65.0;120;80;1;1;0;0;0;0
+81349;21871;1;169;90.0;130;90;1;1;0;0;1;0
+81350;20393;2;158;79.0;150;110;1;1;0;0;1;0
+81351;18900;1;160;63.0;130;90;3;3;0;0;1;1
+81352;20543;1;160;60.0;110;80;2;2;0;0;1;0
+81355;21227;1;153;77.0;160;90;2;2;0;0;0;1
+81356;15347;1;167;65.0;120;70;1;1;0;0;1;0
+81357;18871;1;162;72.0;120;80;1;1;0;0;1;1
+81358;21120;2;165;69.0;120;80;1;1;0;0;1;1
+81361;15300;2;170;78.0;120;80;1;1;1;0;0;0
+81362;16814;2;160;60.0;120;80;1;1;0;0;1;0
+81363;19549;1;148;64.0;130;80;1;1;0;0;1;1
+81364;16001;2;156;80.0;115;80;1;1;0;0;1;0
+81366;19744;2;174;65.0;120;80;1;1;0;0;1;0
+81367;20338;2;170;70.0;120;80;1;1;0;0;1;0
+81370;23339;2;160;68.0;140;90;1;1;0;0;0;0
+81372;19752;1;159;61.0;140;100;1;1;0;0;1;1
+81373;19763;1;157;88.0;135;86;3;1;0;0;1;1
+81374;21998;1;170;70.0;140;90;1;1;0;0;1;1
+81375;21105;2;166;81.0;110;80;2;1;0;0;1;1
+81376;18339;1;160;58.0;120;80;1;1;0;0;1;1
+81377;21687;1;158;102.0;150;79;2;3;0;0;0;1
+81378;22649;1;158;117.0;160;110;2;1;0;0;1;1
+81379;19161;1;162;71.3;110;70;1;1;0;0;0;0
+81380;14641;1;167;84.0;160;90;1;1;0;0;1;1
+81381;14396;1;165;80.0;90;60;1;1;0;0;1;0
+81382;20591;1;155;60.0;130;80;1;2;0;0;1;0
+81383;18345;1;167;73.0;100;70;2;1;0;0;0;0
+81384;23352;1;158;93.0;160;90;1;1;0;0;0;0
+81385;16221;1;155;66.0;150;70;1;1;0;0;1;1
+81387;19509;1;174;85.0;120;90;1;1;0;0;0;0
+81389;19677;1;168;68.0;120;90;1;1;0;0;1;1
+81390;14689;2;171;93.0;120;80;1;1;1;0;1;0
+81392;21204;1;165;73.0;120;80;1;1;0;0;1;0
+81394;20447;1;170;80.0;140;80;1;1;0;0;1;1
+81395;19895;2;171;102.0;160;80;1;1;0;0;1;1
+81396;19961;1;153;80.0;90;60;1;1;0;0;1;0
+81400;18129;1;160;65.0;110;70;1;1;0;0;1;0
+81401;18951;1;148;50.0;120;80;1;1;0;0;1;0
+81402;22397;2;164;67.0;150;90;1;1;1;1;1;1
+81404;19007;1;156;71.0;120;80;1;1;0;0;1;0
+81407;18200;2;158;56.0;120;80;1;1;0;0;0;0
+81408;20339;1;165;86.0;130;90;1;3;0;0;1;1
+81411;20955;1;164;72.0;120;80;3;1;0;0;1;1
+81412;18350;1;158;54.0;110;70;1;1;0;0;1;0
+81414;18945;1;157;73.0;120;70;1;1;0;0;0;0
+81415;23370;2;179;79.0;130;80;1;1;0;1;1;1
+81416;18239;1;149;67.0;130;90;1;1;0;0;1;1
+81417;18486;2;157;69.0;110;70;1;1;1;1;1;0
+81418;21241;2;165;66.0;130;80;1;1;1;1;1;0
+81419;19647;1;158;72.0;120;80;1;1;0;0;1;1
+81420;21983;1;167;82.0;150;80;2;2;0;0;1;1
+81421;19557;1;158;64.0;130;80;1;3;0;0;1;0
+81422;21132;2;164;76.0;164;100;3;1;0;0;1;0
+81423;14694;1;176;74.0;120;80;2;1;0;0;0;0
+81424;20254;2;174;64.0;120;80;1;1;0;0;0;1
+81425;20572;1;168;72.0;120;80;1;1;0;0;1;1
+81428;23311;1;153;67.0;140;80;3;2;0;0;1;0
+81429;19702;1;159;61.0;115;70;1;1;0;0;0;0
+81430;15990;2;170;78.0;140;100;1;3;0;0;1;1
+81431;20549;1;160;58.0;160;90;1;1;0;0;1;1
+81432;15848;1;165;62.0;110;80;1;1;0;0;0;0
+81433;20275;1;156;73.0;120;80;2;1;0;0;1;0
+81434;16669;1;158;74.0;125;90;3;2;0;0;0;1
+81435;21777;1;153;90.0;160;100;3;3;0;0;0;1
+81437;15285;1;168;73.0;110;70;1;2;0;0;0;0
+81438;21200;2;174;67.0;120;80;1;1;0;0;1;1
+81439;16640;1;165;67.0;100;60;1;1;0;0;1;0
+81440;18959;1;157;58.0;150;90;1;1;0;0;1;1
+81442;17595;1;158;76.0;100;80;1;1;0;0;1;0
+81443;15559;2;170;68.0;110;70;1;1;0;0;1;0
+81444;15288;1;161;47.0;110;70;1;1;1;1;1;0
+81446;19143;1;165;80.0;120;90;2;2;0;0;0;1
+81447;20930;1;167;67.0;130;90;1;1;0;0;0;1
+81448;15929;1;170;69.0;110;70;1;1;0;0;1;0
+81449;21056;1;155;69.0;160;110;2;1;0;0;1;1
+81450;23342;2;172;89.0;130;70;1;1;0;0;0;0
+81451;14325;2;170;60.0;120;80;1;1;0;0;1;0
+81452;20916;1;155;70.0;130;80;3;1;0;1;1;1
+81453;19635;1;162;95.0;120;70;1;1;0;0;0;0
+81456;14515;1;157;54.0;90;60;1;1;0;0;0;0
+81457;17370;1;158;52.0;120;80;1;1;0;0;1;0
+81460;16679;2;168;84.0;130;60;1;1;0;0;0;1
+81461;22607;2;168;86.0;114;82;1;1;0;0;0;0
+81462;23402;1;162;72.0;140;90;2;1;0;0;1;1
+81463;19084;2;177;89.0;120;90;1;1;1;1;1;1
+81464;17744;1;170;70.0;180;90;1;1;0;0;1;1
+81465;19506;1;160;73.0;120;80;1;1;0;0;1;1
+81466;16961;1;165;78.0;120;70;2;1;0;0;0;0
+81468;16832;1;166;82.0;110;70;1;1;0;0;1;0
+81469;22040;2;168;58.0;120;80;1;1;0;0;0;1
+81471;18919;2;164;68.0;130;70;1;1;0;0;1;0
+81473;18205;1;159;58.0;120;80;1;1;0;0;1;0
+81475;16168;1;137;74.0;120;80;1;1;0;0;0;1
+81476;21339;2;157;78.0;120;80;3;3;0;0;0;0
+81478;18211;2;170;75.0;120;80;1;1;1;1;1;0
+81479;17346;1;163;72.0;140;120;2;2;0;0;1;1
+81481;18131;2;162;78.0;120;80;1;1;0;0;1;1
+81484;21076;1;166;89.0;150;90;1;1;0;0;1;1
+81485;22495;1;156;81.0;180;80;1;1;0;0;0;0
+81488;23422;1;175;85.0;120;80;1;3;0;0;0;1
+81489;20457;1;165;63.0;120;80;1;1;0;0;0;0
+81490;20356;1;157;88.0;120;70;1;2;0;0;1;1
+81491;15489;1;165;65.0;110;70;1;1;0;0;1;0
+81492;16851;2;172;81.0;120;90;1;1;0;0;1;0
+81493;21689;1;156;53.0;120;80;1;1;0;0;1;0
+81494;21642;1;167;71.0;120;70;1;1;0;0;1;0
+81495;17361;1;158;63.0;120;70;1;1;0;0;0;0
+81498;20530;2;183;92.0;120;80;1;1;0;0;1;1
+81499;15383;2;179;75.0;120;80;1;1;0;0;1;0
+81500;19327;1;170;68.0;110;70;1;1;0;0;1;0
+81502;21207;2;163;72.0;130;80;1;1;0;0;0;1
+81503;14593;1;149;47.0;100;60;2;1;0;0;1;0
+81504;21279;1;158;55.0;150;90;1;1;0;0;1;1
+81507;16032;1;168;70.0;127;80;1;1;0;0;1;1
+81508;15162;1;169;72.0;120;80;1;1;0;0;1;0
+81510;20333;1;155;105.0;130;80;1;1;0;0;0;0
+81511;21866;2;166;79.0;140;80;1;1;0;0;1;1
+81512;14770;2;165;60.0;120;80;1;1;0;0;1;0
+81514;19750;2;171;70.0;120;80;2;2;0;0;1;0
+81515;16804;2;166;85.0;150;1101;1;1;0;0;1;1
+81516;19714;1;161;94.0;105;70;1;1;0;0;1;1
+81518;17564;2;173;93.0;120;70;1;1;0;0;1;0
+81520;21964;1;157;88.0;150;90;1;1;0;0;1;1
+81521;21701;1;160;70.0;140;100;1;2;0;0;1;1
+81523;16771;2;175;66.0;100;70;1;1;0;0;1;0
+81524;15021;2;169;66.0;120;78;1;1;0;0;1;0
+81526;17381;2;176;76.0;120;80;1;1;0;0;1;0
+81530;21737;1;163;81.0;120;79;3;3;0;0;1;1
+81531;22795;2;176;93.0;160;100;1;1;0;0;1;1
+81532;17451;1;168;58.0;130;90;1;1;0;0;1;0
+81533;16773;1;160;67.0;110;70;1;1;0;0;1;0
+81535;18134;1;151;68.0;140;1000;2;2;0;0;1;1
+81538;18308;1;174;72.0;130;70;1;1;0;0;1;1
+81540;19591;1;170;97.0;153;90;1;1;0;0;1;0
+81541;19271;1;165;60.0;140;90;1;2;0;0;0;0
+81543;19144;2;165;57.0;90;60;1;3;0;0;1;0
+81544;15444;2;180;75.0;120;85;1;1;1;0;1;0
+81545;18838;1;165;71.0;150;90;2;1;0;0;1;1
+81548;23148;1;160;95.0;130;80;3;1;0;0;1;1
+81550;22119;1;169;58.0;120;80;1;1;0;0;1;0
+81551;23345;2;162;84.0;140;100;1;1;0;0;1;1
+81554;18258;1;149;55.0;110;80;1;1;0;0;1;0
+81556;16800;1;167;70.0;110;80;1;1;0;0;1;0
+81557;18812;1;166;80.0;130;90;1;1;0;0;1;1
+81558;18682;1;155;103.0;120;80;3;3;0;0;1;0
+81559;19132;1;165;57.0;100;70;1;1;0;0;0;0
+81560;19713;1;162;60.0;150;90;1;1;0;0;1;1
+81564;17625;2;174;70.0;120;80;1;1;0;0;1;0
+81565;22626;1;163;78.0;150;90;1;1;0;0;1;1
+81566;23466;1;153;77.0;120;80;1;1;0;1;1;0
+81567;20326;1;155;50.0;120;80;2;1;0;0;1;0
+81568;19532;2;171;74.0;110;70;1;1;0;0;1;0
+81570;22087;1;172;84.0;120;80;1;1;0;0;1;1
+81571;23517;1;158;70.0;120;80;1;1;0;0;1;1
+81572;18393;2;166;65.0;110;70;1;1;0;0;1;0
+81574;20420;2;175;64.0;140;110;1;1;1;0;1;1
+81575;22480;1;149;83.0;140;80;2;1;0;0;1;0
+81576;21144;1;155;92.0;140;100;2;2;0;0;1;1
+81577;20491;1;170;75.0;120;80;1;1;0;0;1;1
+81580;23121;1;160;92.0;150;80;3;3;0;0;1;0
+81582;18873;2;169;89.0;150;100;3;1;1;0;0;1
+81583;18252;2;168;65.0;120;80;1;1;0;0;0;0
+81584;16767;2;168;87.0;120;80;1;1;0;0;1;0
+81585;19826;1;162;90.0;140;90;1;1;0;0;1;1
+81586;22502;2;170;94.0;160;100;3;1;0;0;1;0
+81590;18170;2;175;89.0;120;80;1;1;0;0;1;0
+81591;18258;1;160;69.0;120;80;1;1;0;0;1;0
+81592;23113;1;160;75.0;120;80;1;1;0;0;1;0
+81593;18916;1;168;80.0;120;80;1;1;0;0;1;1
+81595;21872;1;170;81.0;120;80;1;1;0;0;1;0
+81596;23591;1;165;70.0;120;80;1;1;0;0;1;0
+81597;21160;2;180;100.0;130;80;1;1;0;0;1;1
+81598;22421;1;150;49.0;140;90;2;1;0;0;1;1
+81599;18279;1;167;59.0;100;60;1;1;0;0;1;0
+81600;16755;1;170;70.0;120;60;3;1;0;0;1;0
+81601;14642;1;170;80.0;110;70;1;1;0;0;1;0
+81602;14717;1;165;56.0;110;70;1;1;0;0;1;0
+81603;21643;2;164;61.0;120;70;2;1;1;0;0;1
+81604;19931;1;147;73.0;140;90;1;1;0;0;1;1
+81605;20533;1;165;72.0;140;90;1;1;0;0;1;1
+81606;19071;1;160;78.0;130;80;1;1;0;0;1;1
+81607;16015;1;158;76.0;120;80;1;1;0;0;1;1
+81608;20918;1;160;55.0;130;80;1;1;0;0;0;0
+81610;19170;1;167;95.0;130;80;1;1;0;0;1;0
+81611;20231;1;150;58.0;140;90;1;1;0;0;1;1
+81613;17491;2;183;89.0;150;80;1;1;0;0;1;0
+81614;14314;2;166;64.0;120;80;3;3;0;0;1;0
+81615;16135;1;161;81.0;140;100;1;1;0;0;1;1
+81618;15370;1;160;55.0;120;80;1;1;0;0;1;0
+81619;21846;1;154;69.0;130;90;1;1;0;0;1;0
+81620;16825;2;165;65.0;120;80;1;1;0;0;1;0
+81622;16822;2;168;73.0;150;80;3;1;1;1;1;1
+81623;22633;2;179;81.0;150;1000;1;1;1;1;1;1
+81624;18281;2;181;91.0;119;74;2;1;0;0;1;0
+81625;14626;1;161;62.0;120;79;1;1;0;0;0;0
+81628;15869;2;180;78.0;120;80;1;1;0;0;1;0
+81634;16839;1;168;70.0;110;60;2;2;0;0;0;0
+81635;19880;1;163;57.0;135;97;1;1;0;0;0;0
+81636;18897;2;167;85.0;140;90;1;1;0;0;1;1
+81640;18792;2;167;78.0;150;110;2;1;0;0;1;1
+81641;23495;1;149;55.0;120;70;3;1;0;0;1;1
+81642;18512;1;165;65.0;120;70;2;1;0;0;0;0
+81643;23713;2;175;75.0;120;80;1;1;0;0;1;1
+81644;20577;2;165;59.0;130;80;1;1;0;0;0;0
+81645;18853;1;148;44.0;120;80;1;1;0;0;1;0
+81647;18284;1;163;56.0;90;60;1;1;0;0;1;0
+81649;23150;1;168;86.0;120;80;1;3;0;0;1;1
+81650;21839;2;166;72.0;150;80;1;1;0;0;1;1
+81652;18448;1;158;59.0;150;90;1;1;0;0;1;1
+81653;23203;1;168;76.0;130;90;1;1;0;0;1;1
+81654;21094;1;168;62.0;120;80;1;1;0;0;1;0
+81655;18396;1;170;69.0;120;80;1;1;0;0;1;1
+81657;23483;1;165;74.0;140;80;2;1;0;0;1;1
+81658;23420;2;167;90.0;130;80;1;3;0;0;1;1
+81661;23200;1;160;60.0;150;90;1;1;0;0;1;1
+81664;16815;1;180;80.0;130;80;1;1;1;0;1;0
+81665;19974;1;156;66.0;110;80;1;1;0;0;1;1
+81667;23438;1;157;79.0;140;100;2;2;0;0;1;1
+81668;19065;1;156;51.0;120;80;1;1;0;0;1;1
+81669;16695;2;165;65.0;120;80;1;1;0;0;1;1
+81670;17313;2;178;80.0;120;80;1;1;0;0;1;0
+81671;18995;1;157;80.0;140;100;1;3;0;0;0;1
+81672;21251;1;160;60.0;120;80;1;1;0;0;0;1
+81673;17465;2;169;75.0;141;90;1;1;0;0;1;1
+81675;16066;1;170;96.0;140;90;3;1;0;0;1;1
+81676;18928;1;166;95.0;140;80;1;1;0;0;1;1
+81677;20662;2;165;72.0;110;70;3;1;0;0;0;1
+81679;15438;1;180;98.0;120;80;1;1;0;0;1;0
+81680;21021;1;167;81.0;140;90;3;3;0;0;0;1
+81681;19782;2;160;72.0;120;70;1;1;1;0;1;0
+81682;18282;2;161;71.0;150;90;1;1;1;0;1;1
+81683;19097;1;161;70.0;140;910;3;1;0;0;1;1
+81684;15327;1;171;85.0;120;80;1;1;0;0;1;1
+81685;22773;2;175;86.0;150;90;1;1;0;0;1;1
+81686;17556;1;172;74.0;120;80;1;1;0;0;1;1
+81687;18294;1;170;70.0;130;70;1;1;0;0;1;1
+81688;14609;1;159;60.0;100;60;1;1;0;0;0;0
+81689;14673;2;167;83.0;120;80;2;2;1;0;1;0
+81690;14768;1;153;53.5;110;80;1;1;0;0;1;1
+81692;20338;1;150;74.0;110;70;1;1;0;0;1;0
+81693;22092;1;148;62.0;120;80;1;1;0;0;0;0
+81694;23166;2;169;79.0;170;100;1;1;0;1;0;1
+81695;17440;1;154;66.0;140;80;1;1;0;0;1;0
+81696;21935;1;153;64.0;130;80;2;1;0;0;1;1
+81697;14582;1;165;68.0;110;80;1;1;0;1;1;0
+81698;16843;1;159;98.0;150;90;1;1;0;0;1;1
+81699;18196;1;156;67.0;130;70;1;1;0;0;1;0
+81700;17331;2;184;83.0;80;60;1;1;0;0;1;0
+81702;23295;2;170;72.0;120;80;1;1;0;0;0;1
+81703;15964;1;167;68.0;160;110;1;1;0;0;1;1
+81704;21842;2;168;85.0;140;100;3;3;0;0;1;1
+81705;21218;2;171;74.0;130;90;1;1;0;0;0;1
+81708;19042;1;164;84.0;130;80;1;1;0;0;1;1
+81709;16633;1;168;65.0;120;80;1;1;0;0;1;0
+81710;20509;2;169;74.0;130;84;1;1;0;0;1;0
+81712;21754;2;161;76.0;140;80;2;1;0;1;1;1
+81715;17605;2;172;78.0;160;100;2;1;0;0;1;1
+81716;14785;1;170;65.0;110;80;1;1;0;0;1;0
+81717;16033;2;170;72.0;130;80;1;1;0;0;1;0
+81718;21113;1;159;70.0;140;80;1;1;0;0;1;0
+81719;22420;1;165;65.0;120;80;3;3;0;0;1;1
+81720;23235;2;173;81.0;120;80;1;1;0;0;1;0
+81722;22178;1;157;85.0;150;90;1;1;0;0;0;1
+81723;20449;2;176;100.0;130;90;3;1;0;0;0;0
+81724;23287;2;169;97.0;110;80;2;1;0;0;0;0
+81725;15169;1;158;60.0;140;90;1;1;0;0;1;1
+81726;18474;2;179;85.0;120;80;1;1;1;0;1;0
+81727;15169;1;156;53.0;90;60;1;1;0;0;1;1
+81728;23139;1;176;53.0;120;80;1;1;0;0;1;1
+81729;21843;1;163;85.0;130;80;1;1;0;0;1;0
+81730;14869;1;149;56.0;120;80;1;1;0;0;0;0
+81731;16742;2;175;75.0;120;80;1;1;0;0;1;0
+81732;19221;1;157;66.0;120;70;1;1;0;0;1;0
+81733;21986;2;163;68.0;140;90;3;1;0;0;1;1
+81734;18040;2;168;92.0;160;100;3;3;1;0;0;1
+81735;19003;2;167;69.0;110;60;1;1;0;0;0;0
+81738;17402;2;174;75.0;120;80;1;1;0;0;0;1
+81739;18082;1;162;60.0;120;70;1;1;0;0;1;0
+81740;18181;1;155;84.0;150;100;1;1;0;0;0;1
+81742;14507;1;164;78.0;110;80;2;1;0;0;1;1
+81743;18826;2;169;79.0;140;100;1;1;1;1;0;1
+81744;16034;1;164;55.0;130;80;1;1;0;0;1;0
+81747;15392;1;160;62.0;120;80;1;1;0;0;1;0
+81748;18995;1;165;66.0;120;70;1;1;0;0;1;0
+81749;15075;1;164;122.0;100;70;1;1;0;0;0;0
+81750;15838;1;170;70.0;120;80;1;1;0;0;1;0
+81751;19566;2;170;76.0;120;80;1;1;1;0;1;0
+81752;21718;1;158;85.0;130;80;1;1;0;0;1;0
+81753;18059;1;157;66.0;110;70;1;1;0;0;1;0
+81754;17566;1;149;55.0;100;80;1;1;0;0;1;0
+81756;17376;2;167;54.0;120;70;1;1;1;0;0;0
+81757;20382;1;156;80.0;120;70;1;1;0;0;1;0
+81758;18912;2;168;71.0;130;90;2;2;0;0;1;1
+81759;21907;2;175;65.0;120;80;1;1;1;1;0;0
+81760;21071;1;160;70.0;130;90;1;1;0;0;1;1
+81761;19004;1;156;86.0;130;90;3;3;0;0;1;1
+81762;18217;2;175;78.0;140;80;2;1;1;0;1;1
+81763;16199;2;160;60.0;120;80;1;1;0;0;1;0
+81764;18851;2;175;74.0;120;90;1;1;1;0;0;0
+81765;19782;2;168;80.0;140;90;3;1;0;0;1;1
+81767;23459;2;170;109.5;130;80;1;1;0;0;1;1
+81768;20478;2;164;85.0;120;80;1;3;0;0;1;1
+81769;21948;2;166;73.0;1300;90;1;1;0;1;1;0
+81770;17657;1;160;56.0;120;70;2;1;0;0;1;0
+81771;19865;1;165;64.0;130;80;1;1;0;0;1;0
+81772;16770;2;178;100.0;160;90;1;2;1;1;1;1
+81775;18077;2;174;78.0;120;70;1;1;0;0;1;0
+81776;18866;1;156;57.0;120;80;2;1;0;0;1;0
+81778;21391;1;164;78.0;110;70;1;1;0;0;1;0
+81781;23277;1;153;82.0;120;80;1;1;0;0;0;0
+81782;21182;1;164;77.0;130;80;1;1;0;0;1;1
+81783;15364;1;155;58.0;110;80;1;1;0;0;1;0
+81787;18037;2;183;105.0;130;80;1;1;0;1;1;1
+81788;22506;2;178;83.0;130;80;1;1;0;0;1;1
+81789;19561;2;182;82.0;120;80;1;1;0;0;1;1
+81790;15831;2;160;60.0;130;80;1;1;0;0;0;0
+81792;20608;1;170;71.0;140;90;1;1;0;0;1;1
+81793;16642;1;162;58.0;120;80;1;1;0;0;1;0
+81794;22754;1;161;68.0;160;90;1;1;0;0;1;1
+81795;21250;2;171;68.0;120;80;1;1;0;0;1;0
+81798;20973;2;170;68.0;160;80;1;1;1;0;1;1
+81799;18265;2;176;68.0;120;80;1;1;1;1;1;0
+81800;21332;1;156;52.0;140;100;2;1;0;0;1;1
+81802;15639;2;167;62.0;120;70;1;1;1;1;1;0
+81803;14495;2;162;70.0;160;90;1;1;0;0;1;1
+81804;15149;1;168;61.0;120;90;1;1;0;0;1;0
+81805;19437;1;159;88.0;140;80;2;1;0;0;1;0
+81807;16572;1;176;83.0;140;90;3;3;1;0;1;1
+81808;21905;1;154;72.0;140;80;1;2;0;0;1;1
+81810;17664;1;169;85.0;120;80;1;1;0;0;1;0
+81811;20370;2;167;74.0;140;90;3;1;1;0;1;1
+81813;18250;2;161;68.0;120;80;2;1;0;0;1;0
+81814;17519;1;165;90.0;120;80;2;1;0;0;1;0
+81815;16930;2;178;78.0;120;80;1;1;1;1;1;0
+81816;23325;1;166;91.0;130;80;3;1;0;0;0;1
+81817;20233;1;158;68.0;110;80;1;1;0;0;1;1
+81818;19747;1;155;92.0;130;70;1;1;0;0;1;1
+81819;23234;1;147;74.0;180;110;2;2;0;0;1;1
+81821;20592;1;168;68.0;130;80;1;1;0;0;1;0
+81823;20523;1;177;91.0;140;90;1;1;0;0;1;1
+81824;18191;1;159;67.0;110;80;1;1;0;0;0;0
+81826;19655;1;148;100.0;140;100;2;3;0;0;1;1
+81827;18185;2;173;100.0;80;60;1;1;0;0;1;0
+81829;17559;1;160;59.0;110;70;1;1;0;0;1;0
+81831;16894;2;170;66.0;120;80;1;1;1;0;1;0
+81833;21957;1;165;67.0;120;80;1;1;0;0;1;1
+81834;20978;1;156;82.0;153;91;3;2;0;0;1;1
+81835;16961;1;167;68.0;120;80;1;1;0;0;1;0
+81836;21981;1;152;83.0;120;100;2;1;0;0;0;0
+81837;21262;1;168;100.0;140;80;1;1;0;0;1;1
+81838;18391;1;162;69.0;90;70;1;1;0;0;1;0
+81839;21862;1;156;58.0;100;70;1;1;0;0;0;1
+81840;18877;1;151;55.0;100;80;1;1;0;0;1;0
+81841;18036;1;162;85.0;120;80;1;1;0;0;1;1
+81842;21857;1;162;62.0;140;80;3;2;0;0;1;1
+81843;18428;1;154;58.0;130;80;1;1;0;0;1;0
+81844;20500;1;169;74.0;120;80;1;1;0;0;0;1
+81845;23226;1;165;65.0;120;80;1;1;0;0;1;0
+81848;16636;1;162;60.0;110;60;2;1;0;0;1;1
+81850;22703;2;173;66.0;130;80;1;1;0;0;1;0
+81851;21991;1;153;60.0;120;80;3;3;0;0;1;0
+81853;15999;1;156;82.0;110;70;1;1;0;0;0;1
+81854;17590;1;163;88.0;160;90;2;2;0;0;1;1
+81855;20263;1;152;66.0;130;80;1;1;0;0;1;0
+81856;15926;1;160;89.0;130;90;1;2;0;0;1;1
+81857;21748;1;149;74.0;110;70;1;1;0;0;1;0
+81858;19699;1;160;90.0;140;80;3;1;0;0;0;1
+81859;23300;1;162;76.0;130;80;1;1;0;0;1;0
+81861;20979;1;158;67.0;130;90;1;1;0;0;0;0
+81862;22644;2;175;85.0;120;80;1;3;0;0;1;1
+81863;16578;2;162;56.0;120;80;1;1;0;0;1;1
+81864;14757;2;166;85.0;140;80;3;1;0;0;1;1
+81865;17243;1;175;73.0;140;90;3;1;0;0;1;1
+81866;20575;1;168;70.0;120;90;1;1;0;0;1;0
+81868;14810;1;158;65.0;140;90;1;1;0;0;0;1
+81869;21940;1;152;66.0;80;60;1;2;0;0;1;0
+81870;22397;2;175;92.0;160;100;1;1;0;0;1;1
+81872;21815;1;157;90.0;130;90;3;3;0;0;1;1
+81873;21315;1;160;93.0;120;80;1;2;0;0;1;1
+81875;16596;1;165;70.0;140;100;1;1;0;0;1;1
+81878;19708;2;120;90.0;120;90;1;1;1;1;1;0
+81879;15874;1;150;48.0;100;60;1;1;0;0;1;0
+81881;20423;1;170;74.0;110;55;1;1;0;0;1;1
+81885;19079;1;168;86.0;130;80;3;1;0;0;1;1
+81886;14624;1;148;71.0;110;80;2;1;0;0;1;0
+81888;19863;2;167;67.0;110;70;1;1;0;0;1;0
+81889;19974;1;166;68.0;140;90;3;1;0;0;1;1
+81891;18887;1;167;65.0;120;80;1;1;0;0;1;1
+81892;19509;1;147;73.0;120;80;2;2;0;0;0;1
+81893;23227;1;152;78.0;140;80;1;1;0;0;0;1
+81894;21130;1;160;55.0;140;70;1;1;0;0;0;1
+81895;18282;1;170;68.0;120;80;1;1;0;0;1;0
+81896;23135;1;172;86.0;150;1000;1;1;0;0;1;1
+81897;18931;1;150;61.0;150;100;1;1;0;0;0;1
+81898;21277;1;167;58.0;120;80;1;1;0;0;0;1
+81899;18291;2;174;94.0;140;80;3;3;0;0;1;0
+81900;23389;2;165;77.0;120;1000;1;1;0;0;0;1
+81901;19818;2;166;56.0;150;1000;3;2;1;0;1;0
+81902;23216;1;163;74.0;120;80;3;1;0;0;0;1
+81904;18031;1;169;86.0;110;70;1;1;0;1;0;0
+81905;21129;2;177;76.0;120;70;1;1;0;0;1;0
+81907;18927;2;165;64.0;140;90;1;1;0;0;0;1
+81908;23284;1;172;74.0;130;80;3;1;0;0;1;1
+81909;21827;2;173;83.0;130;80;1;1;0;1;1;1
+81910;18196;2;164;63.0;110;80;1;1;1;0;1;1
+81911;18911;2;168;68.0;120;80;1;1;0;0;1;1
+81914;21837;1;167;74.0;120;80;1;1;0;0;1;1
+81915;22479;1;166;75.0;130;90;2;1;0;0;1;0
+81916;22744;1;160;84.0;150;90;1;1;0;0;1;1
+81918;21758;1;165;81.0;120;80;1;1;0;0;1;0
+81919;18294;1;161;90.0;170;1000;3;1;0;0;1;1
+81922;14635;1;165;65.0;120;80;1;1;0;0;1;0
+81923;23273;2;172;99.0;150;90;1;1;0;0;1;1
+81924;21738;1;154;79.0;150;100;2;2;0;0;1;0
+81925;15157;1;160;85.0;110;70;1;1;0;0;0;1
+81927;21913;1;155;74.0;120;80;1;1;0;0;1;0
+81928;19865;1;159;86.0;150;90;1;2;0;0;1;1
+81929;23437;1;162;72.0;160;90;1;1;0;0;1;1
+81930;22506;1;155;84.0;120;80;1;1;0;0;1;1
+81931;23337;1;155;80.0;160;100;1;1;0;0;1;1
+81932;17454;1;160;54.0;110;75;1;1;0;0;1;0
+81934;23509;1;152;72.0;130;70;1;1;0;0;1;1
+81936;22056;2;178;80.0;140;80;1;1;0;0;1;1
+81937;15301;2;174;96.0;150;90;1;2;0;1;1;1
+81939;23362;1;154;80.0;140;90;3;3;0;0;0;1
+81940;22340;2;164;64.0;120;80;1;1;0;0;1;0
+81942;16024;2;167;98.0;120;80;2;1;0;0;1;0
+81943;14589;2;178;89.0;120;80;1;1;1;1;1;0
+81945;22754;1;164;74.0;150;90;1;1;0;0;1;1
+81946;17705;2;175;80.0;150;90;1;1;0;0;1;1
+81947;18091;2;157;62.0;150;90;1;1;0;0;1;1
+81951;21257;2;168;82.0;110;80;1;1;0;0;1;0
+81952;20446;2;170;88.0;120;80;1;1;0;0;1;1
+81953;18857;1;160;78.0;120;80;1;1;0;0;1;0
+81954;22721;2;149;83.0;130;90;1;1;0;0;0;0
+81956;17434;1;167;103.0;180;100;2;2;0;0;1;1
+81957;19556;2;169;90.0;120;79;1;2;0;0;0;1
+81958;16631;1;158;89.0;130;80;1;1;0;0;1;0
+81959;19727;2;180;76.0;120;90;1;1;0;0;1;1
+81961;19125;1;168;63.0;120;80;1;1;0;0;0;0
+81962;18384;1;163;72.0;120;70;1;1;0;0;0;1
+81967;21124;1;160;65.0;160;90;1;1;0;0;1;1
+81968;21192;2;168;68.0;120;80;3;3;0;0;1;1
+81969;22681;1;160;60.0;140;80;1;1;0;0;0;1
+81970;14608;1;166;72.0;120;80;1;1;0;0;1;1
+81972;14587;1;159;75.0;130;80;1;1;0;0;0;1
+81973;15088;2;187;93.0;130;90;2;1;0;0;1;1
+81974;21615;1;156;94.0;170;80;1;1;0;0;1;1
+81976;20284;2;165;78.0;100;60;1;1;1;0;1;0
+81978;14328;2;180;75.0;120;80;1;1;0;0;0;0
+81979;22522;2;160;75.0;120;70;1;1;0;0;1;1
+81980;20250;1;166;88.0;160;100;1;1;0;0;1;1
+81984;16948;1;150;55.0;100;70;1;1;0;0;1;0
+81985;15196;2;180;78.0;120;80;1;1;0;0;1;0
+81986;14526;1;164;58.0;120;60;1;1;0;0;1;0
+81987;18886;2;170;68.0;90;60;1;1;0;0;1;0
+81988;18176;2;165;82.0;140;90;1;1;1;1;1;1
+81989;19677;1;166;62.0;120;80;1;1;0;0;1;0
+81990;19693;2;173;78.0;130;90;1;1;0;0;1;0
+81993;21093;2;165;66.0;120;80;1;1;0;0;0;0
+81994;20506;2;170;73.0;130;90;3;1;0;1;1;0
+81995;20432;2;163;70.0;140;90;3;1;0;0;0;1
+81996;20438;1;160;58.0;120;80;1;1;0;0;1;0
+81997;18842;2;165;62.0;140;90;1;1;0;0;1;0
+81998;22579;1;156;68.0;120;80;1;1;0;0;1;1
+81999;23090;2;173;79.0;110;70;3;3;0;0;1;1
+82001;16958;1;149;67.0;90;70;1;1;0;0;1;0
+82005;19685;1;172;76.0;140;100;2;1;0;0;1;1
+82006;17549;2;171;72.0;120;80;1;1;0;0;1;1
+82007;21690;1;166;90.0;140;90;3;1;0;0;1;0
+82008;23150;2;151;62.0;150;1000;1;1;0;0;1;1
+82009;22767;2;169;67.0;120;80;1;1;0;0;1;0
+82010;15056;2;175;119.0;130;80;3;3;0;0;0;1
+82011;17566;1;154;57.0;90;50;1;1;0;0;1;1
+82012;20342;1;160;65.0;130;90;1;1;0;0;1;0
+82013;18279;1;161;60.0;110;70;2;1;0;0;1;0
+82014;16101;1;159;64.0;110;60;1;1;0;0;1;0
+82015;18712;1;166;68.0;120;80;2;1;0;0;1;0
+82018;19541;1;164;88.0;120;80;1;1;0;0;1;0
+82019;22661;1;174;65.0;120;80;1;1;0;0;1;1
+82021;19875;1;165;76.0;120;80;1;1;0;1;0;0
+82022;19818;1;171;68.0;120;80;1;1;0;0;0;0
+82023;22376;2;172;125.0;120;80;3;1;0;0;1;1
+82024;20431;1;169;71.0;120;80;1;1;0;0;1;0
+82025;18184;2;164;62.0;130;80;1;1;0;0;0;1
+82026;19585;1;164;63.0;120;80;1;1;0;0;1;0
+82027;23273;2;164;101.0;150;90;3;1;0;0;0;0
+82030;19106;2;177;78.0;138;74;2;3;0;0;1;1
+82031;21845;1;174;88.0;140;80;2;3;0;0;0;0
+82034;18315;1;163;55.0;130;90;2;1;0;0;1;1
+82035;20884;2;170;58.0;120;80;1;1;0;0;1;1
+82036;20419;2;176;106.0;110;80;3;1;0;1;1;1
+82038;22841;1;160;71.0;140;90;1;3;0;0;1;0
+82040;23602;2;170;100.0;17;90;2;1;0;0;0;1
+82041;18948;1;168;70.0;110;70;1;1;0;0;0;0
+82042;14519;1;154;74.0;130;100;1;1;0;0;1;0
+82043;23446;1;158;99.0;160;100;1;1;0;0;1;1
+82044;23437;1;148;62.0;150;80;3;1;0;0;1;1
+82046;19727;1;165;62.0;120;80;1;1;0;0;0;0
+82047;22705;2;164;59.0;130;79;1;1;0;0;0;0
+82048;19972;2;165;112.0;150;90;2;1;0;0;1;1
+82049;15231;1;160;52.0;100;80;1;1;0;0;1;0
+82050;22687;1;156;80.0;120;80;3;3;0;0;1;1
+82051;17538;1;157;71.0;110;70;3;3;0;0;1;1
+82052;23214;1;171;89.0;140;80;2;2;0;0;0;1
+82053;23309;1;165;65.0;120;80;1;1;0;0;1;0
+82054;21996;1;156;65.0;120;80;3;2;0;0;0;0
+82056;22713;1;152;74.0;140;90;1;2;0;0;1;1
+82058;21150;1;155;76.0;130;80;3;3;0;0;1;1
+82060;17407;1;147;58.0;90;60;1;1;0;0;1;0
+82061;21987;1;157;54.0;120;80;2;1;0;0;1;0
+82063;21922;1;168;78.0;120;80;1;1;0;0;1;1
+82064;19223;2;160;67.0;120;80;2;1;0;0;1;1
+82067;23404;2;166;98.0;100;60;1;1;0;0;1;1
+82068;17600;1;164;75.0;150;100;1;1;0;0;1;0
+82069;21787;1;170;80.0;140;80;1;1;0;0;1;1
+82071;22076;1;160;58.0;120;80;1;1;0;0;0;1
+82072;21211;1;158;54.0;140;80;3;1;0;0;1;1
+82073;21154;1;165;83.0;150;80;1;1;0;0;1;1
+82074;20618;1;161;66.0;130;90;1;1;0;0;1;0
+82075;18826;2;170;75.0;120;80;1;1;1;0;1;0
+82076;20467;1;159;76.0;120;80;1;1;0;0;1;0
+82077;19840;1;158;73.0;130;70;1;1;0;0;1;1
+82078;19710;1;170;70.0;120;80;1;1;0;0;0;0
+82080;22444;1;160;67.0;166;126;1;1;0;0;1;0
+82081;15252;2;170;65.0;110;69;1;1;0;0;1;0
+82083;22196;2;166;70.0;120;80;1;1;0;0;1;0
+82085;14628;1;164;57.0;120;90;1;1;0;0;1;0
+82087;20641;1;165;60.0;120;80;1;1;0;0;1;1
+82089;16902;2;163;63.0;120;80;1;1;0;0;1;0
+82090;20343;1;164;102.0;120;80;1;1;0;0;0;1
+82092;18253;1;160;58.0;120;80;1;1;0;0;1;0
+82094;21972;1;158;85.0;145;100;2;1;0;0;1;1
+82095;15344;2;176;100.0;140;80;1;1;1;1;1;1
+82096;22595;1;146;66.0;140;80;3;1;0;0;1;0
+82097;19026;1;160;78.0;140;90;1;1;0;0;1;1
+82098;15326;2;168;79.0;120;80;1;1;0;0;1;1
+82099;21322;2;165;62.0;120;80;1;1;0;0;0;1
+82101;19624;2;180;86.0;140;90;1;1;0;0;0;0
+82104;19005;2;169;75.0;120;80;1;1;0;0;1;0
+82105;18824;2;198;78.0;120;80;1;1;1;0;1;1
+82106;21947;1;170;89.0;140;100;1;1;0;0;1;0
+82107;16771;2;170;74.0;120;80;1;1;0;0;1;0
+82108;22076;1;165;70.0;120;80;1;1;0;0;1;0
+82110;20587;1;165;65.0;120;70;1;1;0;0;1;0
+82111;16793;1;162;62.0;140;95;1;1;0;0;1;1
+82112;19935;1;157;60.0;120;80;1;1;0;0;1;1
+82113;20479;2;177;94.0;120;80;1;1;0;0;1;0
+82114;21066;1;165;67.0;110;80;1;1;0;0;1;0
+82115;16968;1;175;65.0;120;70;1;1;0;0;1;0
+82116;19056;2;180;79.0;130;90;3;2;1;1;1;0
+82117;21269;2;158;66.0;120;80;1;1;0;0;1;0
+82118;23619;1;169;62.0;140;90;2;2;1;1;0;1
+82120;19001;1;162;92.0;140;90;1;1;0;0;1;0
+82121;23242;1;159;92.0;170;1000;1;1;0;0;1;1
+82123;15976;2;173;60.0;90;60;2;1;0;0;0;0
+82124;20213;1;163;81.0;100;60;1;1;0;0;0;1
+82127;15129;1;161;62.0;90;60;1;1;0;0;1;0
+82130;21692;1;160;95.0;130;80;1;1;0;0;0;0
+82131;19063;1;155;61.0;120;80;1;1;0;0;1;0
+82135;22391;1;154;84.0;130;90;2;1;0;0;0;1
+82136;22068;2;168;80.0;160;100;2;2;0;0;1;1
+82137;18950;1;166;81.0;120;80;1;1;0;0;0;0
+82138;19554;2;162;63.0;110;70;1;2;1;0;1;0
+82139;18167;2;160;60.0;120;80;1;1;0;0;1;1
+82140;20977;1;158;83.0;130;100;1;1;0;0;1;0
+82141;21007;2;160;84.0;160;100;3;3;1;1;1;1
+82143;22619;1;170;85.0;120;80;1;1;0;0;1;1
+82144;20453;1;166;108.0;140;90;1;1;0;0;1;1
+82145;20651;1;167;69.0;120;80;2;2;0;0;1;1
+82146;20412;1;162;65.0;120;80;1;1;0;0;1;0
+82150;20328;1;162;55.0;120;80;1;1;0;0;1;0
+82151;18402;2;179;119.0;130;90;1;1;0;0;1;1
+82152;19251;1;173;86.0;120;1000;1;1;0;0;1;0
+82154;19079;2;167;82.0;110;80;1;1;0;0;0;0
+82155;15906;1;168;75.0;100;60;1;1;0;0;1;0
+82156;21137;2;160;60.0;120;80;1;1;0;0;0;0
+82158;16994;1;171;69.0;120;80;1;1;0;0;1;1
+82160;23267;2;167;62.0;110;70;1;1;0;0;1;1
+82161;20273;1;164;90.0;140;90;3;1;0;0;1;1
+82162;22582;2;174;82.0;120;70;1;1;0;0;0;1
+82164;21123;1;156;77.0;150;100;3;3;0;0;1;1
+82165;19858;2;176;93.0;140;90;2;1;0;1;1;1
+82166;18821;2;171;61.0;140;90;1;1;1;0;1;1
+82167;21780;1;162;64.0;120;80;1;1;0;0;1;1
+82168;19969;2;187;95.0;120;70;1;1;0;0;1;0
+82169;19111;1;152;76.0;120;80;3;3;0;0;1;1
+82170;15933;1;163;80.0;100;70;1;1;0;0;1;0
+82171;21814;1;167;75.0;130;70;1;1;0;0;1;0
+82172;23090;2;170;70.0;120;80;1;1;0;0;1;1
+82173;20312;1;159;99.0;150;90;3;3;0;0;1;1
+82174;21977;2;150;75.0;150;90;1;1;0;0;1;1
+82175;21827;1;158;76.0;120;80;1;1;0;0;0;0
+82176;16269;1;170;90.0;130;90;1;1;0;0;1;1
+82177;22413;1;174;86.0;120;80;1;1;0;0;1;0
+82180;18974;2;178;75.0;120;80;1;1;0;0;1;0
+82183;17553;1;165;65.0;120;80;1;1;0;1;1;1
+82185;20218;2;180;85.0;110;70;1;1;0;1;1;0
+82187;19285;1;170;78.0;140;90;1;1;0;0;1;1
+82189;23332;1;164;81.0;130;80;3;3;0;0;1;1
+82193;18009;1;148;59.0;120;80;1;1;0;0;1;0
+82194;18325;2;168;87.0;120;80;2;1;0;0;1;1
+82195;18421;1;163;63.0;120;80;1;1;0;0;1;0
+82196;14730;1;168;67.0;120;70;1;2;0;0;1;0
+82197;16674;2;175;72.0;160;100;1;1;0;0;1;1
+82198;21228;2;162;66.0;120;80;1;1;0;0;1;0
+82200;19554;2;168;63.0;120;80;1;1;0;0;0;0
+82201;22488;1;146;77.0;140;70;1;1;0;0;1;0
+82202;15282;2;180;74.0;120;80;1;1;0;0;0;0
+82203;20270;1;150;59.0;140;90;3;1;0;0;0;0
+82204;16041;1;156;113.0;160;90;1;2;0;0;1;0
+82206;22040;2;176;87.0;150;100;2;1;0;0;1;1
+82207;18901;2;181;81.0;110;70;1;1;1;0;1;0
+82208;19092;1;159;69.0;120;80;3;3;0;0;0;1
+82210;19582;1;162;64.0;130;90;1;1;0;0;1;0
+82212;14575;2;175;65.0;120;80;1;2;0;0;1;0
+82215;22085;1;168;75.0;140;90;1;1;0;0;1;1
+82216;21462;1;162;86.0;130;80;3;1;0;0;1;1
+82217;21267;2;165;74.0;110;70;2;1;1;0;1;0
+82218;21886;1;170;68.0;120;80;1;1;0;0;1;1
+82220;21698;1;168;70.0;160;100;2;1;0;0;1;1
+82224;16891;1;150;64.0;150;100;1;1;0;0;1;1
+82228;21808;1;161;60.0;140;90;2;1;0;0;0;1
+82229;18501;1;156;58.0;100;80;1;1;0;0;1;0
+82230;17952;1;152;65.0;160;100;2;1;0;1;0;1
+82231;20329;1;162;59.0;100;80;1;1;0;0;0;1
+82232;20334;1;148;60.0;110;80;3;1;0;0;1;1
+82233;17508;1;151;58.0;120;80;1;1;0;0;1;0
+82234;18310;1;169;69.0;120;80;1;1;0;0;1;0
+82235;22708;1;160;67.0;140;90;1;1;0;0;1;1
+82236;19862;1;158;96.0;180;120;3;1;0;0;1;1
+82237;22449;1;163;90.0;140;90;2;3;0;0;1;0
+82240;15895;2;177;93.0;140;80;2;3;0;0;1;1
+82242;14691;2;166;93.0;150;90;1;2;0;0;1;1
+82245;21415;2;160;68.0;120;80;1;1;0;0;1;1
+82246;22175;1;157;50.0;150;100;1;2;0;0;1;1
+82247;14785;1;164;64.0;120;80;3;3;0;0;1;0
+82248;21791;1;157;84.0;120;80;2;1;0;0;1;0
+82249;15509;2;160;60.0;120;80;1;1;0;0;0;1
+82251;21712;2;167;55.0;170;100;1;1;0;0;1;1
+82252;15111;1;160;68.0;120;80;1;1;0;0;1;0
+82253;20260;1;162;81.0;120;70;1;1;0;0;1;1
+82254;20216;1;162;52.0;150;100;1;1;0;0;1;0
+82255;15153;1;155;90.0;120;80;1;1;0;0;1;0
+82256;20921;2;154;52.0;120;80;1;1;0;0;1;0
+82257;19677;1;160;70.0;140;80;1;1;0;0;1;1
+82258;23391;1;155;70.0;120;80;1;1;0;0;1;1
+82259;18243;1;150;72.0;100;60;1;1;0;0;1;0
+82263;23338;1;146;81.0;140;90;1;1;0;0;0;1
+82264;17599;1;154;48.0;110;80;1;1;0;0;0;1
+82266;21172;1;158;90.0;150;90;3;1;0;0;1;1
+82267;22471;1;156;82.0;120;80;3;1;0;0;1;1
+82269;20627;1;157;76.0;180;20;1;1;0;0;1;1
+82270;14815;1;155;56.0;110;80;1;1;0;0;1;0
+82271;16685;1;160;60.0;120;80;1;1;0;0;1;1
+82272;16868;1;155;100.0;130;80;1;1;0;0;1;1
+82274;14542;2;175;100.0;140;90;1;1;0;0;1;1
+82275;19877;1;173;84.0;120;80;1;1;0;0;0;0
+82276;19763;1;163;61.0;120;80;1;1;0;0;1;0
+82277;23430;1;158;71.0;140;90;3;1;0;0;1;1
+82278;23340;1;156;79.0;100;70;3;1;0;0;1;1
+82280;20722;2;162;56.0;120;80;2;1;1;1;1;0
+82282;21735;1;176;98.0;160;100;3;3;0;0;1;1
+82283;18160;1;173;83.0;110;60;1;1;0;0;1;1
+82286;19060;1;168;68.0;120;80;1;1;0;0;0;1
+82287;19429;1;168;62.0;140;90;1;1;0;0;0;0
+82288;20936;2;171;93.0;120;80;1;1;1;1;1;1
+82289;19002;2;171;89.0;120;80;1;2;0;0;1;0
+82291;20217;1;167;65.0;120;70;1;1;0;0;1;1
+82292;23286;2;167;73.0;120;80;1;1;0;0;1;1
+82293;20625;2;183;74.0;110;70;1;1;0;0;1;1
+82294;23584;2;176;74.0;120;80;1;1;1;0;1;0
+82295;17370;1;153;83.0;140;100;2;1;0;0;1;1
+82296;14743;2;175;50.0;120;80;1;1;1;0;1;0
+82297;15352;2;168;66.0;150;100;2;1;0;0;1;1
+82298;19832;2;162;68.0;110;60;2;1;1;0;1;0
+82299;17741;1;163;63.0;120;80;1;1;0;0;0;0
+82300;22247;2;163;70.0;120;80;1;1;0;1;0;0
+82301;18106;2;150;52.0;120;80;1;1;1;0;0;0
+82304;19637;1;160;100.0;140;90;2;1;0;0;1;1
+82305;16810;1;168;69.0;120;80;1;1;0;0;1;1
+82307;22416;2;178;69.0;120;80;1;1;1;1;1;1
+82308;20398;1;155;61.5;140;80;2;1;0;1;1;1
+82309;22550;2;168;74.0;120;70;1;1;0;0;1;1
+82311;19004;1;163;60.0;100;90;1;1;0;0;1;0
+82316;16691;2;164;98.0;130;70;2;1;0;0;0;1
+82318;21018;2;164;66.0;120;80;1;1;0;0;0;0
+82320;22505;1;153;56.0;110;70;1;1;0;0;1;0
+82321;21161;1;168;72.0;130;80;1;1;0;0;1;0
+82322;19718;2;167;67.0;120;70;1;1;0;0;1;0
+82323;21975;1;161;83.0;160;90;2;2;0;1;0;1
+82324;17607;2;152;50.0;140;100;1;1;0;0;1;1
+82325;15803;1;168;65.0;140;1110;1;1;0;0;0;1
+82328;22662;1;161;63.0;120;80;1;1;0;0;1;0
+82329;16111;2;165;75.0;120;80;3;1;1;0;1;1
+82331;18142;1;165;80.0;120;80;1;1;0;0;1;1
+82333;14525;1;169;73.0;100;70;1;1;0;0;0;0
+82336;22897;2;174;122.0;130;70;1;1;0;0;0;1
+82337;19643;1;158;98.0;150;100;1;1;0;0;1;1
+82338;20318;1;162;87.0;100;60;1;1;0;0;0;0
+82340;23375;1;159;60.0;140;90;1;3;0;0;1;1
+82341;23480;1;168;68.0;110;70;1;1;0;0;1;1
+82342;20988;2;162;59.0;100;60;1;1;1;0;0;0
+82343;20302;1;158;46.0;134;90;2;1;0;0;1;0
+82345;23408;1;164;82.0;120;80;3;1;0;0;1;1
+82346;18944;1;160;60.0;100;70;1;1;0;0;1;0
+82348;20687;2;163;79.0;120;80;1;2;0;0;1;0
+82349;18079;1;158;85.0;130;90;1;1;0;0;1;0
+82350;19060;1;166;73.0;140;80;1;1;0;0;1;1
+82351;22425;2;171;103.0;130;90;1;1;0;0;1;1
+82352;21080;1;155;53.0;140;100;2;2;0;0;1;1
+82353;15477;2;168;65.0;120;80;1;1;0;0;1;0
+82354;21858;2;173;97.0;120;80;1;1;0;0;1;0
+82355;18840;2;167;70.0;90;70;1;1;0;0;1;0
+82356;18924;1;170;105.0;130;90;1;1;0;0;1;1
+82357;16739;2;178;75.0;120;80;1;1;0;0;1;0
+82358;20660;1;156;60.0;120;80;1;1;0;0;1;1
+82359;20388;1;160;66.0;130;90;1;1;0;0;1;1
+82361;23244;1;164;78.0;140;90;2;1;0;0;0;1
+82362;15999;2;176;94.0;140;90;1;1;0;0;1;1
+82363;18161;1;167;74.0;130;80;1;1;0;0;1;1
+82365;23269;2;160;58.0;180;100;1;1;0;0;1;1
+82368;21235;1;157;93.0;140;100;3;3;0;0;1;1
+82370;23553;1;160;69.0;100;70;1;1;0;0;1;0
+82371;22679;2;165;80.5;130;90;1;1;1;0;1;0
+82373;15170;1;160;92.0;130;80;1;2;0;0;1;1
+82374;23465;1;159;79.0;120;80;1;1;0;0;1;0
+82375;21395;1;154;56.0;110;70;1;1;0;0;0;1
+82376;21218;1;164;68.0;120;80;1;1;0;0;1;0
+82377;20339;1;155;69.0;150;100;1;1;0;0;1;0
+82380;23414;1;154;115.0;150;90;2;1;0;0;1;1
+82382;20927;1;154;83.0;120;80;1;1;0;0;0;1
+82383;14676;1;154;75.0;100;70;3;1;0;0;1;0
+82384;18902;1;156;54.0;120;80;1;1;0;0;1;1
+82386;20643;2;168;64.0;100;70;1;1;1;1;1;0
+82387;23406;1;150;71.0;140;100;1;1;0;0;0;1
+82388;20625;1;150;70.0;160;100;2;2;0;0;1;1
+82389;21869;1;174;70.0;120;80;1;1;0;0;1;0
+82390;21756;2;165;75.0;160;100;3;1;0;0;1;1
+82391;19679;2;160;60.0;120;80;1;1;0;0;1;0
+82394;23351;1;164;71.0;150;60;3;1;0;0;1;1
+82395;23090;2;160;73.0;160;100;2;1;0;0;1;0
+82396;21045;2;174;85.0;140;90;2;1;0;0;1;1
+82397;23402;1;155;80.0;130;80;1;1;0;0;0;1
+82399;18968;2;185;63.0;120;70;1;1;0;0;1;0
+82400;14874;2;164;65.0;110;80;1;1;0;0;1;0
+82401;21686;2;161;60.0;120;80;2;1;1;0;1;0
+82403;22208;1;158;63.0;120;60;3;3;0;0;1;0
+82405;15070;1;168;64.0;110;70;1;1;0;0;1;0
+82407;17492;1;158;70.0;110;80;1;1;1;1;0;0
+82408;19143;1;168;68.0;140;60;1;1;0;0;0;1
+82409;17437;1;162;75.0;120;80;1;1;0;0;1;1
+82410;18997;1;148;58.0;150;90;1;1;0;0;1;1
+82411;15561;2;178;119.0;130;80;1;1;0;0;1;1
+82412;21907;1;152;67.0;160;90;3;1;0;0;1;1
+82413;23324;2;170;71.0;120;80;1;1;0;0;1;0
+82415;18177;1;155;71.0;110;70;2;2;0;0;1;0
+82416;22075;2;165;62.0;120;90;1;1;0;0;1;0
+82418;16769;2;177;72.0;110;60;2;2;1;0;1;1
+82419;18396;1;157;48.0;110;70;1;1;0;0;1;0
+82422;16569;1;160;70.0;110;70;1;1;0;0;1;0
+82423;19743;1;165;63.0;120;80;1;1;0;0;1;1
+82424;20081;1;170;75.0;150;90;2;1;0;0;1;1
+82425;18234;1;158;85.0;140;100;1;1;0;0;1;1
+82426;18043;1;162;87.0;120;80;1;1;0;0;1;1
+82427;18064;2;169;76.0;140;90;1;2;0;0;1;0
+82428;22510;1;165;93.0;140;90;3;1;0;0;1;1
+82429;15428;1;159;56.0;120;87;1;1;0;0;1;0
+82431;21321;1;170;66.0;120;80;1;1;0;0;1;1
+82432;19861;1;168;71.0;120;80;1;1;0;0;1;0
+82433;19652;1;174;87.0;120;80;1;1;0;0;1;0
+82434;16007;1;165;62.0;110;70;1;1;0;0;1;0
+82436;15177;1;170;67.0;90;70;1;1;0;0;0;0
+82439;20313;1;169;68.0;120;80;1;1;0;0;1;1
+82440;19102;2;168;70.0;140;90;1;1;0;0;0;1
+82441;20367;2;180;93.0;125;76;2;2;0;0;0;0
+82442;16797;2;165;65.0;110;70;1;1;0;1;1;0
+82443;23399;2;169;67.0;120;80;1;1;0;0;1;1
+82444;20577;1;166;69.0;120;80;1;1;0;0;1;0
+82446;17726;1;178;86.0;110;70;1;1;0;0;0;1
+82447;15196;2;165;55.0;110;70;1;1;0;0;0;1
+82448;20519;1;157;60.0;140;90;3;1;0;0;1;1
+82449;20439;2;157;77.0;110;70;1;1;1;1;0;0
+82450;21764;2;170;68.0;120;80;1;1;0;0;1;0
+82451;15498;1;171;73.0;100;80;1;3;0;0;1;0
+82452;19928;2;173;69.0;130;90;1;1;1;0;1;0
+82455;19625;2;167;63.0;110;80;3;1;0;0;1;0
+82456;20368;1;161;82.0;120;80;1;1;1;0;0;0
+82457;18421;1;165;75.0;120;80;3;1;0;0;1;1
+82458;19780;1;165;67.0;120;80;1;1;0;0;1;0
+82459;18887;1;155;100.0;140;90;2;3;0;0;1;1
+82460;21062;2;156;63.0;120;80;1;1;0;0;1;0
+82461;21113;2;170;70.0;120;80;3;3;0;0;1;0
+82462;18030;1;166;84.0;110;80;1;1;0;0;1;0
+82463;19114;2;172;79.0;120;90;1;1;0;0;1;0
+82464;21774;1;157;72.0;130;80;1;1;0;0;1;0
+82465;22860;2;164;71.0;130;90;1;1;0;0;1;0
+82466;15785;1;168;110.0;12;80;1;1;0;1;1;0
+82467;15879;1;163;70.0;120;80;1;1;0;0;0;0
+82468;19816;2;165;105.0;160;100;1;1;0;0;1;1
+82469;20564;1;167;74.0;130;70;3;3;0;0;0;1
+82471;20452;1;165;64.0;110;70;1;1;0;0;1;0
+82472;19192;2;178;75.0;100;70;1;1;0;0;1;1
+82473;22525;1;152;83.0;130;90;3;3;0;0;1;1
+82474;18834;1;159;68.0;120;80;1;1;0;0;0;0
+82475;15237;1;175;88.0;120;80;2;1;0;0;1;0
+82476;19852;2;177;102.0;130;80;3;1;0;0;0;1
+82477;20179;1;165;74.0;100;70;1;1;0;0;1;1
+82478;21865;1;160;70.0;160;90;1;1;0;0;1;1
+82480;15276;2;174;64.0;90;60;1;1;0;0;1;0
+82481;15481;1;160;65.0;150;90;1;1;0;0;1;1
+82482;18793;2;169;72.0;120;80;1;1;0;0;1;1
+82484;21768;2;167;67.0;140;90;1;1;0;0;0;1
+82486;16057;1;153;69.0;110;70;1;1;0;0;1;0
+82488;16161;1;171;73.0;110;90;2;1;0;0;1;0
+82490;22754;1;165;66.0;140;90;1;1;0;0;1;1
+82491;23449;2;164;68.0;120;80;1;1;0;0;1;0
+82492;19095;2;165;65.0;120;80;1;1;1;0;1;0
+82494;18440;1;164;67.0;120;80;1;1;0;0;1;0
+82495;17360;1;165;64.0;110;80;1;1;0;0;1;0
+82496;23213;1;164;76.0;160;100;1;1;0;0;0;0
+82497;19642;2;182;94.0;120;80;1;1;0;0;1;1
+82499;21654;2;168;86.0;130;90;3;3;1;0;0;1
+82500;17542;1;164;59.0;120;90;1;1;0;0;1;0
+82501;19627;2;162;79.0;150;90;1;1;0;0;1;1
+82502;17601;1;169;64.0;120;80;1;1;0;0;0;0
+82503;19035;1;152;82.0;140;100;1;1;0;0;1;1
+82504;19683;2;179;84.0;170;110;1;1;0;0;1;1
+82505;19782;1;163;77.0;120;80;1;1;0;0;1;0
+82506;20366;1;166;66.0;120;80;1;1;0;0;1;0
+82509;18844;1;152;71.0;110;70;1;1;0;0;1;0
+82510;19567;1;168;92.0;150;80;2;1;0;0;1;1
+82511;22625;1;172;85.0;120;80;1;1;0;0;1;0
+82512;18196;1;170;102.0;125;90;2;1;0;0;1;1
+82515;22555;1;169;62.0;120;80;1;1;0;0;1;0
+82518;21044;1;147;64.0;110;80;1;1;0;0;1;0
+82521;18315;1;168;70.0;110;70;1;1;0;0;1;0
+82522;15493;2;167;62.0;120;80;2;1;0;0;1;0
+82524;18149;1;165;60.0;130;80;1;2;0;0;0;1
+82525;18962;2;165;90.0;160;90;2;2;0;0;1;1
+82526;15356;1;156;82.0;160;90;1;1;0;0;1;1
+82527;18113;2;165;62.0;130;80;1;1;0;0;0;0
+82528;18252;1;160;60.0;120;80;1;1;0;0;1;1
+82529;18148;2;187;97.0;120;80;2;1;0;0;0;1
+82530;16929;1;170;70.0;120;80;1;1;0;0;1;0
+82532;21918;1;164;57.0;164;74;1;1;0;0;1;0
+82535;20006;1;168;65.0;120;90;1;1;0;0;1;1
+82536;15047;1;174;89.0;120;80;1;1;0;0;1;0
+82537;20519;1;163;74.0;120;80;1;1;0;0;1;1
+82538;22165;1;163;106.0;160;100;2;1;0;0;0;1
+82539;18686;2;165;80.0;110;70;2;1;0;1;0;0
+82540;20519;2;164;95.0;120;80;1;1;0;0;1;1
+82542;21965;2;169;79.0;130;80;1;1;0;0;1;0
+82543;21829;1;160;89.0;120;80;1;2;0;0;1;0
+82548;22621;2;172;70.0;160;90;3;1;1;1;1;1
+82549;20330;2;167;86.0;150;100;1;3;0;0;0;0
+82550;16027;2;173;110.0;120;80;1;1;0;0;0;0
+82551;15821;1;160;58.0;110;70;1;1;0;0;1;0
+82552;21668;1;158;91.0;130;80;2;1;0;0;1;0
+82553;14833;1;160;55.0;120;80;1;1;0;0;0;0
+82555;21964;1;165;70.0;120;70;1;1;0;0;1;0
+82556;17629;2;163;79.0;110;80;1;1;0;0;1;1
+82557;19764;1;165;96.0;130;90;1;1;0;1;1;1
+82560;21303;1;161;67.0;110;80;1;1;0;0;1;0
+82562;23675;1;165;65.0;130;80;1;1;0;0;1;1
+82563;19840;1;159;51.0;150;1000;3;1;0;0;1;0
+82564;19220;1;165;105.0;120;90;3;1;0;1;1;1
+82565;16760;1;159;64.0;120;80;1;1;0;0;1;0
+82566;19708;1;152;70.0;100;90;1;1;0;0;1;1
+82567;18804;2;165;10.0;180;1100;2;2;0;0;1;1
+82568;19499;1;164;64.0;120;70;1;1;0;0;1;0
+82570;18820;2;165;70.0;110;70;1;1;0;0;1;1
+82572;21897;2;168;85.0;120;80;1;1;0;0;1;1
+82573;14634;1;185;80.0;120;80;1;1;1;0;1;0
+82574;19500;1;161;64.0;120;70;2;1;0;0;1;0
+82575;18413;1;164;52.0;150;80;1;1;0;0;1;1
+82578;18996;1;174;84.0;150;80;1;1;0;0;1;1
+82580;17562;1;166;72.0;120;80;1;1;0;0;1;0
+82583;17067;1;168;70.0;120;80;1;1;0;0;0;1
+82584;15535;2;174;70.0;120;80;1;1;0;0;1;0
+82586;21971;2;164;63.0;140;90;1;1;0;0;1;1
+82587;17607;1;163;98.0;125;80;1;1;0;0;1;0
+82588;14467;2;171;68.0;100;70;1;1;0;0;1;0
+82590;14683;1;155;74.0;90;60;2;1;0;0;1;1
+82591;18495;1;156;52.0;120;80;1;1;0;0;1;0
+82593;19750;1;165;85.0;120;80;1;1;0;0;1;1
+82594;15167;1;169;74.0;120;80;1;1;0;0;1;0
+82595;19615;1;162;92.0;140;90;1;1;0;0;1;1
+82596;20575;2;164;52.0;110;70;1;1;0;0;0;0
+82597;20422;2;167;91.0;120;80;1;1;0;0;1;0
+82599;19059;1;172;68.0;120;80;1;1;0;0;1;1
+82601;18091;2;166;81.0;130;80;2;1;1;0;1;1
+82603;22035;1;159;79.0;130;80;1;1;0;0;1;0
+82604;22504;1;158;78.0;120;80;1;1;0;0;0;1
+82606;23270;1;155;58.0;120;80;1;1;0;0;1;1
+82607;22215;1;170;68.0;120;80;1;1;0;0;1;0
+82608;22463;1;168;86.0;120;70;2;1;0;0;1;0
+82609;22457;1;148;70.0;120;80;1;1;0;0;1;1
+82610;22396;1;148;54.0;150;100;1;1;0;0;1;1
+82611;19806;1;169;70.0;130;80;1;1;0;0;0;1
+82612;21865;2;168;99.0;140;90;1;1;0;0;0;1
+82613;20487;1;165;89.0;120;80;1;1;0;0;1;1
+82614;21189;2;170;73.0;130;80;3;3;1;0;1;0
+82617;17546;1;165;70.0;100;60;1;1;0;0;1;0
+82618;14480;1;167;80.0;110;70;1;1;0;0;1;0
+82619;23248;1;164;80.0;121;81;3;1;0;0;1;1
+82622;15289;1;158;58.0;120;90;1;1;0;0;0;0
+82624;16740;2;173;94.0;140;80;2;1;1;0;1;1
+82625;18313;2;186;68.0;90;70;1;1;0;0;1;0
+82627;18248;1;165;64.0;100;70;2;1;0;0;1;0
+82628;20635;1;169;73.0;110;70;1;1;0;0;0;1
+82631;14872;1;170;56.0;110;79;1;1;0;0;1;0
+82634;19648;1;172;56.0;120;80;1;1;0;0;1;0
+82637;21694;1;156;71.0;149;97;1;1;0;0;0;0
+82638;19820;2;168;60.0;120;80;1;1;0;0;1;0
+82639;17586;2;183;113.0;140;90;2;2;0;0;1;1
+82640;14904;1;167;67.0;130;80;1;1;0;0;0;0
+82641;21075;1;159;79.0;110;70;1;1;0;0;1;0
+82642;18920;1;158;65.0;120;80;1;1;0;1;1;0
+82644;15806;2;167;77.0;120;80;1;1;0;0;1;1
+82646;16154;1;165;56.0;10;60;1;1;0;0;1;0
+82647;22119;1;147;54.0;130;70;1;1;0;0;0;0
+82648;16815;1;158;60.0;120;80;2;1;0;0;1;1
+82650;22519;1;158;89.0;150;90;3;1;0;0;1;1
+82651;18349;1;160;60.0;120;80;1;1;0;0;1;0
+82653;23133;1;161;72.0;120;80;1;1;0;0;1;1
+82654;18351;1;155;60.0;110;70;2;2;0;0;0;0
+82657;22004;1;156;72.0;140;60;3;3;0;0;1;0
+82658;23242;1;165;64.0;140;90;1;1;0;0;1;1
+82660;23264;1;153;63.0;1110;80;1;1;0;0;0;1
+82661;15980;2;165;64.0;120;80;1;1;0;0;1;1
+82662;21177;1;162;66.0;130;90;2;1;0;0;0;1
+82663;18169;2;164;60.0;120;80;1;1;1;0;0;0
+82664;19135;2;170;69.0;130;90;2;2;0;0;0;1
+82665;20722;2;184;106.0;120;80;1;3;0;1;1;0
+82667;21397;2;170;82.0;120;80;1;1;0;0;1;0
+82668;18999;1;163;78.0;150;100;1;2;0;0;0;1
+82670;21973;1;167;83.0;12;80;1;2;0;0;0;0
+82671;18951;1;167;103.0;130;80;1;1;0;0;1;0
+82672;15304;1;158;70.0;130;80;1;1;0;0;1;1
+82673;17351;1;164;100.0;130;90;1;1;0;0;1;1
+82674;14549;1;174;115.0;130;70;1;3;1;1;1;0
+82675;18160;1;159;73.0;110;70;2;2;0;0;1;1
+82676;22678;2;168;69.0;120;80;1;1;0;0;1;1
+82679;18927;2;175;70.0;145;90;1;1;0;0;1;1
+82682;20610;2;180;70.0;130;80;1;1;0;0;0;0
+82683;19939;1;165;66.0;12;80;1;1;0;0;1;0
+82684;15216;1;158;56.0;140;90;2;1;0;0;1;1
+82685;23353;1;168;79.0;150;90;1;1;0;0;1;1
+82686;22716;2;162;50.0;100;60;1;1;0;0;1;0
+82687;18736;2;180;89.0;130;90;2;1;0;0;1;0
+82689;21018;1;150;50.0;120;79;1;1;0;0;1;0
+82691;22746;1;171;69.0;110;90;1;2;0;0;1;1
+82693;21733;1;160;60.0;150;1000;1;1;0;0;1;1
+82695;17041;1;169;69.0;120;70;1;1;0;0;1;0
+82696;21195;1;168;66.0;120;80;1;1;0;0;0;1
+82697;20405;2;187;125.0;145;100;2;2;0;0;1;1
+82698;18955;1;165;75.0;120;80;1;1;0;0;1;1
+82701;19548;1;155;60.0;110;70;1;1;0;0;1;0
+82704;17628;1;163;65.0;120;80;1;1;0;0;1;0
+82705;22552;1;168;65.0;140;90;1;1;0;0;1;1
+82706;19086;1;160;68.0;120;80;1;1;0;0;1;0
+82708;21188;1;164;67.0;140;90;2;1;0;0;1;1
+82710;14429;1;165;76.0;110;70;1;1;0;0;1;0
+82711;20963;1;164;68.0;120;80;1;1;0;0;1;0
+82712;17281;1;163;68.0;120;80;1;1;0;0;1;0
+82713;19719;1;168;68.0;110;70;1;1;0;0;1;0
+82714;20629;2;170;68.0;130;80;1;1;0;0;1;1
+82715;21187;2;168;79.0;140;80;1;1;0;0;1;1
+82719;23269;1;162;58.0;120;80;1;1;0;0;1;1
+82720;21137;1;168;65.0;120;80;1;1;0;0;1;0
+82724;19684;1;160;67.0;140;90;3;3;0;0;1;1
+82725;15403;1;167;68.0;120;80;1;1;0;0;0;0
+82726;21859;2;170;78.0;120;80;1;1;0;0;0;1
+82727;23432;2;176;74.0;140;90;1;1;0;0;1;1
+82728;20611;1;156;72.0;150;90;1;1;0;0;1;1
+82729;20627;2;120;80.0;120;80;1;1;0;0;0;1
+82730;20537;2;173;108.0;140;90;3;1;0;0;1;1
+82731;18886;2;170;94.0;140;90;2;2;0;0;0;1
+82732;19596;1;170;80.0;210;110;1;1;0;0;0;1
+82733;18003;1;168;78.0;120;80;1;1;0;0;1;0
+82734;19607;2;169;98.0;120;80;1;1;1;0;1;0
+82735;19630;2;161;75.0;130;90;1;1;0;0;0;1
+82736;21814;2;169;60.0;120;80;1;1;1;0;1;0
+82738;21075;1;160;54.0;90;58;1;1;0;0;1;0
+82739;17548;1;159;68.0;120;80;1;1;0;0;1;0
+82740;22639;1;165;84.0;110;70;3;1;0;0;1;1
+82741;15476;2;191;112.0;120;80;2;1;1;0;1;1
+82742;19050;2;176;82.0;140;100;1;1;0;0;1;1
+82743;20480;1;148;54.0;130;80;1;1;0;0;1;1
+82744;20302;1;168;65.0;130;80;1;1;0;0;1;1
+82745;21931;1;164;131.0;130;80;1;1;0;0;1;0
+82746;14646;2;164;65.0;120;70;1;1;0;0;1;0
+82747;14463;1;157;52.0;110;70;2;2;0;0;1;0
+82748;22476;1;167;70.0;120;80;1;2;0;0;1;0
+82749;19032;1;165;86.0;140;90;3;3;0;0;1;0
+82750;15268;2;174;86.0;120;80;1;1;0;0;1;0
+82751;21170;2;176;93.0;130;80;1;1;0;0;1;1
+82752;20981;2;167;86.0;145;90;1;1;0;0;1;0
+82754;21037;1;178;84.0;140;90;1;1;0;0;1;0
+82755;17674;2;169;66.0;110;70;1;1;1;0;1;0
+82756;21862;1;170;75.0;130;90;3;3;0;0;1;0
+82757;19869;2;170;94.0;120;80;3;1;0;0;1;0
+82760;21194;2;168;88.0;150;100;3;3;0;0;1;1
+82761;20719;1;155;69.0;110;70;1;1;0;0;0;0
+82762;16845;1;164;65.0;170;80;2;1;0;0;1;1
+82763;18904;2;172;85.0;120;80;1;1;0;0;1;1
+82764;22636;1;165;88.0;120;80;1;1;0;0;1;1
+82765;18389;1;155;58.0;100;70;2;2;0;0;1;0
+82766;20945;1;156;69.0;120;80;1;1;0;0;1;1
+82767;23291;2;164;78.0;130;80;1;1;0;0;1;0
+82768;20239;1;169;68.0;120;80;1;1;0;0;1;0
+82769;18035;1;165;72.0;110;70;1;1;0;0;1;0
+82770;21204;2;165;86.0;140;100;1;1;0;0;1;0
+82771;17557;2;162;65.0;110;70;1;1;0;0;1;0
+82772;14331;1;163;72.0;110;70;1;1;0;0;1;0
+82773;21441;2;179;76.0;150;80;2;2;0;0;1;1
+82774;21877;1;156;69.0;120;80;1;1;0;0;1;1
+82775;17395;1;167;77.0;130;80;1;1;0;0;1;1
+82778;16061;1;150;80.0;130;80;1;1;0;0;1;1
+82779;19401;1;160;55.0;110;90;1;1;0;0;1;1
+82780;18910;2;175;65.0;150;80;1;1;0;0;1;1
+82781;16667;1;157;58.0;100;80;1;1;0;0;0;0
+82782;18042;2;168;69.0;120;80;1;1;0;0;1;1
+82783;21236;1;170;82.0;80;60;1;1;0;0;1;0
+82786;20305;1;169;73.0;150;90;2;1;0;1;1;1
+82787;23367;2;168;74.0;120;70;1;1;0;0;1;1
+82788;21973;2;156;56.0;120;80;1;1;0;0;1;1
+82790;18786;2;170;84.0;180;100;3;3;0;1;0;1
+82791;14681;1;153;66.0;100;80;1;1;0;0;0;0
+82793;14367;1;164;57.0;120;80;1;1;0;0;1;1
+82794;21924;1;161;46.0;120;80;1;1;0;0;1;0
+82796;14698;1;157;53.0;100;70;1;1;0;0;1;0
+82798;23152;1;164;74.0;120;80;1;1;0;0;1;1
+82799;21891;1;162;100.0;130;90;2;1;0;0;1;0
+82800;17982;1;153;61.0;90;60;1;2;0;0;1;1
+82801;23346;1;170;67.0;130;80;1;1;0;0;0;1
+82802;16220;2;174;81.0;160;90;3;1;0;0;1;1
+82804;18818;2;168;78.0;140;80;3;3;0;0;1;1
+82805;14306;1;180;80.0;120;80;1;1;0;0;1;0
+82806;18007;2;171;69.0;120;80;1;1;0;0;1;0
+82807;18262;1;160;67.0;90;60;1;1;0;1;1;1
+82808;18113;1;164;60.0;120;80;1;1;0;0;1;0
+82810;20202;1;169;67.0;110;80;1;1;0;0;1;0
+82811;16774;1;160;72.0;150;1000;1;1;0;0;1;1
+82813;19646;1;159;76.0;100;70;1;1;0;0;1;0
+82814;14485;1;160;90.0;110;70;1;1;0;0;0;0
+82816;23289;1;150;50.0;160;90;3;1;0;1;1;1
+82817;15227;1;165;62.0;120;80;1;1;0;0;1;0
+82819;19695;1;166;69.0;110;60;1;1;0;0;1;0
+82820;21133;1;170;65.0;120;60;1;1;0;0;1;1
+82821;21089;2;164;72.0;130;80;1;1;0;0;1;0
+82824;18917;1;161;98.0;140;90;1;1;0;0;1;1
+82827;20938;1;156;57.0;120;80;1;1;0;0;1;0
+82828;20293;2;173;83.0;150;80;1;1;0;0;1;1
+82829;21117;1;158;59.0;120;80;1;1;0;0;0;1
+82830;22115;2;169;67.0;120;80;1;1;0;0;1;0
+82831;19539;1;183;68.0;140;80;1;1;0;0;1;1
+82832;21659;1;150;70.0;120;80;2;3;0;0;1;0
+82833;20509;1;170;83.0;120;90;2;2;0;0;1;1
+82834;21132;2;181;82.0;120;80;1;1;0;0;1;0
+82836;21044;2;173;77.0;120;80;1;1;1;1;1;0
+82837;14355;1;160;68.0;120;60;1;1;0;0;0;0
+82838;17477;1;165;74.0;150;70;2;1;0;0;1;1
+82839;20895;1;169;109.0;150;100;1;2;0;0;1;1
+82840;16831;1;165;54.0;120;70;1;1;0;0;1;0
+82841;23225;1;174;80.0;140;90;1;3;0;0;1;1
+82843;20405;1;167;59.0;120;80;1;1;0;0;1;0
+82844;20411;2;169;77.0;120;80;1;1;1;0;1;0
+82845;16777;2;170;75.0;120;80;1;1;1;0;1;0
+82846;17541;1;155;62.0;140;90;2;1;0;0;0;1
+82847;19787;2;160;50.0;110;60;1;1;0;0;1;0
+82850;23501;2;170;70.0;120;70;1;1;0;0;1;1
+82852;20258;1;155;82.0;140;90;3;3;0;0;1;1
+82854;19809;1;156;53.0;120;70;1;1;0;0;1;0
+82855;21882;1;162;80.0;120;80;3;1;0;0;0;1
+82856;17585;1;160;55.0;130;80;1;1;0;0;1;1
+82858;22525;1;157;102.0;120;80;1;1;0;0;1;1
+82859;23425;2;173;83.0;130;90;1;1;0;0;0;0
+82860;21214;1;170;70.0;120;80;1;1;0;0;1;1
+82861;19521;1;153;52.0;100;70;1;1;0;0;1;1
+82862;22714;2;169;77.0;120;80;1;1;0;0;1;1
+82863;22504;1;164;69.0;140;100;1;1;0;0;1;1
+82864;23397;1;144;50.0;140;80;3;1;0;0;1;0
+82865;20980;1;150;83.0;110;70;2;1;0;0;1;1
+82866;20490;1;170;65.0;130;80;3;3;0;0;0;0
+82867;16865;2;176;80.0;120;80;1;1;0;0;1;0
+82868;18948;1;156;62.0;100;80;1;1;0;0;1;0
+82869;19481;2;178;82.0;190;90;2;1;1;1;1;1
+82870;15360;2;164;94.0;120;80;2;1;1;0;0;0
+82871;22465;1;158;63.0;120;80;1;1;0;0;1;1
+82874;18040;1;153;74.0;135;80;2;3;0;0;0;1
+82875;21410;1;168;68.0;150;70;1;1;0;0;1;1
+82876;17749;2;176;93.0;120;80;2;1;0;0;1;1
+82877;17285;2;183;99.0;120;80;1;1;0;0;1;1
+82879;18377;1;174;71.0;120;80;1;1;0;0;1;1
+82880;18172;1;175;91.0;140;90;1;1;0;0;1;1
+82881;18912;1;158;78.0;120;80;1;1;0;0;1;1
+82882;19905;1;160;65.0;130;80;1;1;0;0;0;1
+82884;23211;1;155;60.0;130;90;1;1;0;0;1;1
+82885;18992;1;164;72.0;120;70;1;3;0;0;0;0
+82886;18981;1;169;68.0;120;80;1;1;0;0;1;1
+82887;16959;1;150;66.0;120;80;1;1;0;0;1;0
+82888;21894;1;164;75.0;140;90;1;1;0;0;1;0
+82889;16897;1;175;89.0;120;80;2;2;0;0;1;0
+82890;21194;1;148;69.0;125;80;1;1;0;0;1;1
+82891;16616;1;163;65.0;120;80;1;1;0;0;1;0
+82892;20488;1;163;68.0;140;90;1;1;0;0;1;1
+82893;17354;2;178;97.0;160;100;2;1;0;0;0;1
+82894;21083;1;165;76.0;180;110;3;3;0;0;1;0
+82895;21493;1;165;79.0;140;90;1;1;0;0;1;1
+82896;19587;2;175;90.0;120;80;1;1;1;1;0;1
+82898;22726;1;168;68.0;120;80;1;1;0;0;1;0
+82899;15366;1;168;69.0;130;80;1;1;0;0;1;1
+82901;19782;2;168;73.0;130;90;1;1;0;0;0;1
+82902;18873;2;168;71.0;140;90;1;1;0;0;1;1
+82903;18365;1;158;66.0;110;70;1;1;0;0;1;0
+82905;20982;1;160;66.0;120;60;1;1;0;0;1;1
+82910;22038;1;161;65.0;120;80;1;1;0;0;1;0
+82911;18930;1;157;76.0;120;80;2;2;0;0;0;0
+82912;19616;1;157;59.0;110;70;2;1;0;0;0;0
+82913;19205;1;162;64.0;110;70;1;1;0;0;1;0
+82915;16717;1;162;74.0;100;70;1;1;0;0;1;1
+82916;19439;1;155;64.0;120;80;2;2;0;0;0;0
+82917;16554;2;170;75.0;140;90;1;1;0;0;1;1
+82918;18546;2;162;67.0;120;80;1;1;0;0;1;0
+82923;22032;1;162;59.0;110;70;3;1;0;0;1;1
+82924;16003;2;175;83.0;110;80;1;1;0;0;0;0
+82925;15799;2;176;77.0;120;80;3;3;0;0;1;0
+82927;22748;1;155;58.0;120;80;2;1;0;0;1;1
+82929;14464;2;161;74.0;140;80;1;1;0;0;0;1
+82930;17457;2;180;70.0;170;120;1;1;0;0;1;0
+82931;17329;2;165;68.0;120;80;1;1;0;0;1;0
+82933;14621;1;169;87.0;120;80;1;1;0;0;1;0
+82935;18252;1;153;66.0;110;70;1;1;0;0;1;0
+82936;20969;1;164;80.0;125;80;3;1;0;0;1;1
+82937;19729;2;173;102.0;130;90;3;3;0;0;1;1
+82940;19838;1;165;59.0;120;80;3;3;0;0;0;0
+82941;22040;2;177;86.0;130;90;1;1;1;0;1;0
+82944;15877;1;151;68.0;110;70;1;1;0;0;1;0
+82945;18472;1;164;55.0;120;80;3;3;0;0;1;0
+82946;14458;1;168;73.0;110;70;1;1;0;0;1;0
+82947;22373;1;154;68.0;100;70;2;2;0;0;1;1
+82949;19519;1;160;62.0;140;100;1;1;0;0;1;0
+82950;15890;1;162;60.0;120;80;1;1;0;0;0;0
+82951;19010;1;160;81.0;110;70;1;1;0;0;1;1
+82952;22599;1;145;75.0;170;80;3;1;0;0;1;0
+82953;19736;2;159;63.0;140;80;1;1;0;0;0;1
+82957;21979;1;159;70.0;120;80;1;3;0;0;1;0
+82958;19562;1;169;65.0;120;80;1;1;0;0;1;0
+82959;20536;1;161;92.0;100;90;1;1;0;0;1;1
+82960;19732;2;179;95.0;120;80;1;1;0;0;1;1
+82961;17611;1;165;69.0;110;70;1;1;0;0;0;0
+82962;14721;2;167;65.0;120;80;1;1;0;0;1;0
+82965;21742;1;165;65.0;120;80;1;1;0;0;1;1
+82966;22579;2;185;85.0;120;80;1;1;0;0;0;1
+82967;17488;1;165;66.0;110;80;1;1;0;0;1;1
+82968;19815;1;160;71.0;125;80;2;1;0;0;1;0
+82969;20657;1;165;49.0;110;70;1;3;0;0;1;0
+82973;20478;2;172;80.0;120;80;2;1;0;0;0;0
+82976;17620;2;170;78.0;120;90;1;1;0;0;0;0
+82977;20565;1;170;80.0;140;85;3;2;0;0;1;0
+82978;22227;2;168;65.0;110;80;1;1;0;0;0;1
+82980;22134;2;160;79.0;120;80;1;1;0;0;1;0
+82983;22520;1;168;90.0;140;90;1;1;0;0;1;1
+82984;19022;1;160;60.0;140;100;2;1;0;0;1;1
+82985;22629;1;169;83.0;150;90;1;1;0;0;1;1
+82987;20266;2;168;75.0;110;70;1;1;0;0;0;0
+82989;22182;2;172;75.0;155;90;1;1;0;0;1;1
+82993;18913;1;159;86.0;130;80;1;1;0;0;1;0
+82994;18978;1;161;65.0;130;80;3;1;0;0;1;1
+82995;21908;2;173;86.0;140;90;1;1;0;0;1;1
+82996;21122;2;166;66.0;120;80;3;1;0;0;1;1
+82997;23463;1;154;75.0;160;90;2;1;0;0;1;1
+82998;19057;1;162;65.0;120;80;1;1;0;0;1;0
+82999;19558;1;164;102.0;100;80;1;1;0;0;1;0
+83001;16726;1;163;70.0;130;80;1;1;0;0;0;1
+83002;20435;1;167;69.0;130;90;1;1;0;0;1;1
+83003;17381;2;166;63.0;120;80;1;1;0;0;1;0
+83004;19799;2;169;63.0;120;80;1;1;0;0;1;0
+83005;19186;1;162;76.0;130;80;1;3;0;0;1;0
+83006;19920;1;165;60.0;120;80;1;1;0;0;1;1
+83008;15332;2;165;67.0;120;80;1;1;0;0;1;1
+83009;16734;2;176;84.0;120;80;1;1;1;0;1;0
+83012;20362;1;164;86.0;160;90;1;1;0;0;1;1
+83013;15997;1;163;56.0;110;70;1;1;0;0;1;0
+83015;19072;1;173;76.0;120;80;2;2;0;0;0;1
+83016;20731;1;168;60.0;120;80;1;1;0;0;1;0
+83017;16275;2;172;86.0;120;80;1;1;0;0;1;0
+83018;22133;1;158;75.0;150;100;1;1;0;0;1;0
+83019;21190;2;170;76.0;130;80;3;3;0;0;1;1
+83021;19714;1;167;82.0;120;80;1;1;0;0;1;0
+83023;15241;1;167;63.0;120;80;1;1;0;0;1;0
+83024;20197;1;159;68.0;110;70;3;1;0;0;1;0
+83025;20188;2;180;104.0;130;90;1;1;0;0;1;0
+83028;19567;1;153;85.0;120;80;2;2;0;0;0;0
+83030;22478;1;156;98.0;140;100;3;3;0;0;1;1
+83033;14450;1;162;76.0;140;80;3;3;0;0;1;1
+83034;17581;2;164;72.0;120;80;1;1;0;0;1;0
+83035;19002;1;158;59.0;80;60;1;1;0;0;1;0
+83036;21874;1;159;78.0;160;90;3;3;0;0;1;1
+83037;22640;1;165;90.0;160;100;1;1;0;0;1;1
+83038;20410;1;172;74.0;160;100;1;1;0;0;0;1
+83039;20317;1;159;61.0;115;80;1;1;0;0;1;0
+83040;21168;1;162;69.0;120;80;2;1;0;0;1;0
+83041;18918;1;163;78.0;120;80;1;3;0;1;1;1
+83042;21262;1;158;50.0;130;80;2;1;0;0;0;1
+83044;17565;1;161;73.0;130;90;2;1;0;0;1;0
+83045;16896;1;152;88.0;120;80;1;1;0;0;1;0
+83046;22676;1;162;95.0;130;80;1;2;0;0;1;1
+83047;16778;1;156;90.0;100;70;1;1;0;0;1;0
+83048;22544;1;169;35.0;140;90;2;1;0;0;1;1
+83049;22804;2;160;60.0;120;80;1;1;1;0;0;0
+83050;21929;2;170;65.0;110;70;3;3;0;0;0;1
+83051;21114;1;165;79.0;140;90;1;1;0;0;1;0
+83052;20197;1;154;50.0;130;90;3;3;0;0;0;1
+83053;23410;1;162;58.0;120;80;2;3;0;0;1;0
+83054;21622;1;155;55.0;130;80;1;1;0;0;1;0
+83055;16192;1;156;57.0;110;80;1;1;0;0;0;0
+83058;22506;1;165;80.0;120;80;1;1;0;0;1;1
+83060;16675;2;176;72.0;125;90;1;1;0;0;1;1
+83062;22599;2;169;67.0;130;90;3;3;1;0;1;1
+83063;22428;1;162;65.0;130;90;1;1;0;0;1;1
+83066;21306;1;164;60.0;120;80;1;1;0;0;1;0
+83067;16566;1;170;70.0;140;90;1;1;0;0;1;1
+83068;20152;2;179;97.0;130;80;2;1;0;0;1;1
+83069;20983;2;158;53.0;120;80;1;1;1;0;1;1
+83070;19650;1;163;75.0;200;1200;2;2;0;0;1;1
+83071;14417;2;167;66.0;120;80;1;1;0;0;1;0
+83072;20644;1;160;80.0;140;90;2;1;0;0;0;1
+83073;20544;1;170;74.0;120;80;1;1;0;0;1;0
+83074;20496;1;165;60.0;120;80;3;3;0;0;1;0
+83075;19778;1;165;65.0;140;90;1;1;0;0;0;1
+83076;20327;1;168;64.0;120;80;1;1;0;0;1;0
+83077;14482;1;156;81.0;90;60;1;1;0;0;1;0
+83079;17318;2;170;98.0;160;90;1;1;0;0;1;1
+83080;15163;1;161;78.0;110;70;1;1;0;0;1;1
+83081;17414;1;160;60.0;120;70;1;1;0;0;1;0
+83082;23205;1;156;60.0;180;90;1;1;0;0;1;1
+83083;21703;2;173;83.0;140;80;2;1;0;0;1;1
+83084;14717;1;170;68.0;120;70;1;2;0;0;0;0
+83092;21093;2;158;62.0;120;80;1;1;0;0;1;0
+83093;16180;2;171;69.0;120;80;2;1;0;0;0;0
+83094;15289;1;168;70.0;120;70;2;1;0;0;0;1
+83098;20617;2;165;63.0;140;90;2;1;0;0;0;1
+83099;15904;1;156;56.0;120;80;1;1;0;0;1;0
+83100;17599;1;159;70.0;120;80;1;1;0;0;1;1
+83102;22004;1;160;60.0;120;80;1;1;0;0;1;1
+83103;20444;2;172;78.0;120;80;3;1;0;0;1;0
+83104;15370;1;153;54.0;120;80;1;1;0;0;1;0
+83105;20348;2;170;77.0;120;80;1;1;0;0;1;1
+83106;16739;2;169;68.0;120;80;1;1;0;0;0;1
+83109;19602;1;162;61.0;120;80;1;1;0;0;0;0
+83110;16104;1;160;54.0;110;70;1;1;0;0;0;0
+83111;17652;1;163;96.0;160;90;1;1;0;0;1;1
+83112;21709;1;160;90.0;150;1000;2;1;0;0;0;1
+83113;18219;2;162;81.0;120;80;1;1;1;0;1;0
+83115;21725;1;155;57.0;130;90;1;1;0;0;1;1
+83116;15869;2;164;60.0;110;70;1;1;0;0;0;0
+83117;16718;2;173;92.0;140;100;2;2;1;1;0;0
+83118;15894;2;180;105.0;130;90;2;3;0;0;1;0
+83119;16666;1;159;70.0;120;80;1;1;0;0;1;0
+83120;17681;1;168;65.0;120;80;1;1;0;0;1;1
+83122;14446;1;155;68.0;140;80;3;1;0;0;0;0
+83123;15232;2;170;66.0;130;80;1;1;0;0;1;1
+83124;14689;1;168;63.0;120;60;1;1;0;0;1;0
+83129;16722;2;178;76.0;110;70;1;2;0;0;1;0
+83131;22496;1;152;84.0;140;80;1;1;0;0;1;1
+83132;22544;1;147;60.0;140;60;1;1;0;0;1;1
+83133;18917;1;178;85.0;120;80;1;1;0;0;0;0
+83134;19060;1;153;63.0;110;60;2;2;0;0;1;0
+83135;16534;2;176;85.0;150;80;3;3;0;0;1;1
+83136;19023;2;171;70.0;150;70;1;1;0;0;1;1
+83137;21890;2;162;59.0;130;70;1;1;0;0;1;1
+83138;21020;1;155;76.0;110;70;1;3;0;1;1;0
+83139;21274;2;168;68.0;120;70;1;1;0;0;1;1
+83140;21771;2;162;65.0;120;90;1;1;1;1;1;0
+83142;22398;1;160;70.0;110;80;1;1;0;0;1;0
+83143;21937;1;175;100.0;130;80;1;1;0;0;1;0
+83144;19540;1;165;69.0;120;90;1;1;0;0;1;1
+83146;14523;2;162;74.0;160;80;2;1;0;0;1;1
+83147;18911;1;162;68.0;120;80;1;1;0;0;1;0
+83148;14755;1;168;65.0;120;80;1;1;0;0;1;1
+83150;21042;1;172;69.0;150;90;1;1;0;0;0;1
+83151;18081;1;157;70.0;140;80;1;1;0;0;1;1
+83152;19875;1;170;80.0;120;80;1;1;0;0;1;1
+83153;19945;2;169;70.0;120;80;1;1;0;0;1;0
+83154;18904;1;160;83.0;120;80;1;1;0;0;1;1
+83155;20439;1;150;72.0;130;80;1;1;0;0;1;0
+83157;16873;1;153;76.0;120;80;1;1;0;0;1;0
+83159;20420;1;156;62.0;120;80;1;1;0;0;0;1
+83160;21266;1;165;64.0;90;60;1;1;0;0;0;0
+83161;23341;1;169;66.0;120;80;1;1;0;0;1;0
+83162;18845;2;170;79.0;120;80;1;1;0;0;1;0
+83163;15204;1;168;65.0;100;60;1;1;0;0;1;0
+83165;23355;1;156;54.0;120;80;2;1;0;0;1;1
+83166;23340;2;178;86.0;130;70;1;1;0;0;1;1
+83167;19238;1;176;80.0;120;80;1;1;0;0;1;1
+83168;19688;1;164;63.0;130;80;1;1;0;0;1;1
+83169;18166;1;168;66.0;120;80;1;1;0;0;1;0
+83171;21227;1;154;85.0;100;60;3;3;0;0;1;0
+83175;20747;2;165;65.0;110;70;1;1;0;0;1;0
+83176;17444;1;162;77.0;110;80;1;1;0;0;1;0
+83177;18327;2;175;70.0;140;80;1;1;0;0;1;0
+83179;20426;2;160;62.0;120;80;1;1;1;1;1;0
+83183;15530;1;156;44.0;90;60;1;1;0;0;1;0
+83184;22470;2;178;85.0;170;100;1;1;0;0;0;1
+83185;18224;2;179;112.0;140;90;3;3;0;0;1;0
+83186;18433;1;158;59.0;90;70;1;1;0;0;1;0
+83187;16910;2;178;71.0;90;70;1;1;1;0;1;0
+83189;22522;1;149;89.0;130;90;1;1;0;0;0;1
+83190;21003;2;172;65.0;120;80;1;1;0;0;1;1
+83191;18361;1;160;80.0;120;90;1;1;0;0;1;1
+83192;18834;2;168;69.0;120;80;2;1;0;0;1;0
+83194;21338;1;169;74.0;120;70;1;1;0;0;1;1
+83195;18197;1;158;65.0;100;70;1;1;0;0;1;0
+83196;21043;2;168;86.0;120;80;1;1;0;0;1;0
+83197;15199;2;175;127.0;120;80;1;1;1;0;1;0
+83200;14513;2;175;75.0;110;70;2;1;0;0;1;1
+83201;19861;1;175;68.0;130;80;1;1;0;0;1;0
+83202;23183;2;173;115.0;130;80;1;1;0;0;1;1
+83204;20376;2;156;62.0;130;70;1;1;1;0;1;0
+83205;20322;1;158;58.0;150;100;1;1;0;0;0;1
+83206;19159;1;168;62.0;120;80;1;1;0;0;0;0
+83208;21968;2;170;90.0;140;90;1;1;0;0;1;1
+83210;21647;2;166;68.0;110;80;1;1;0;0;1;0
+83211;22072;1;174;63.0;120;80;1;1;0;0;0;1
+83212;19978;1;165;69.0;150;90;2;3;0;0;0;1
+83213;21101;2;168;72.0;120;80;1;1;0;0;0;1
+83214;16725;1;154;59.0;130;80;1;1;0;0;1;0
+83215;18386;1;162;98.0;120;80;2;2;0;0;1;1
+83217;16129;1;173;58.0;100;70;1;2;0;0;1;0
+83221;17605;2;184;89.0;120;80;1;1;1;0;1;0
+83222;20681;1;168;85.0;110;70;1;1;0;0;1;0
+83225;21941;1;156;70.0;130;90;1;1;0;0;1;1
+83226;20290;1;159;76.0;100;70;1;1;0;0;0;0
+83227;20924;1;160;82.0;120;90;1;3;0;0;0;1
+83228;21677;1;160;90.0;140;90;2;1;1;0;1;1
+83230;19673;1;168;70.0;100;70;2;1;0;0;0;1
+83233;16118;2;169;95.0;120;80;1;1;0;0;1;0
+83234;21159;1;158;82.0;120;80;3;3;0;0;1;1
+83236;20994;1;150;75.0;130;90;1;1;0;0;1;1
+83240;21922;1;164;87.0;120;80;2;1;1;0;1;1
+83241;18717;1;170;82.0;130;80;2;1;0;0;1;0
+83243;18331;1;169;73.0;130;80;1;1;0;0;1;1
+83244;19609;1;166;62.0;195;60;2;1;0;0;1;1
+83246;18168;1;170;65.0;120;80;1;1;0;0;1;0
+83249;19647;1;153;50.0;120;80;1;1;0;0;1;1
+83251;22039;2;156;59.0;110;65;1;1;0;0;1;0
+83253;17329;1;156;74.0;130;90;1;1;0;0;1;0
+83255;18961;2;176;85.0;140;90;1;1;0;0;1;0
+83256;18379;1;150;48.0;120;70;1;1;0;0;1;0
+83257;19689;1;160;88.0;110;80;1;1;0;0;1;0
+83260;18856;1;156;67.5;100;60;1;1;0;0;1;0
+83261;14717;1;165;80.0;120;80;1;1;0;0;1;0
+83263;15916;1;160;112.0;120;80;1;1;0;0;0;1
+83264;22422;1;161;74.0;148;90;3;1;0;0;1;1
+83265;22495;1;160;45.0;110;80;1;1;0;0;0;1
+83266;20425;1;159;65.0;100;80;2;1;0;0;1;0
+83268;20604;2;185;65.0;120;80;1;1;1;0;0;1
+83269;14758;1;166;78.0;120;85;1;1;0;0;1;0
+83270;23652;1;169;66.0;160;1000;1;2;0;0;1;1
+83272;14549;2;175;75.0;110;70;1;1;0;0;0;0
+83273;19843;1;154;80.0;130;80;1;1;0;0;0;1
+83274;20147;1;163;63.0;120;80;1;1;0;0;0;0
+83275;19613;1;160;66.0;110;70;1;1;0;0;1;1
+83277;19901;1;167;71.0;120;80;1;1;0;0;1;1
+83279;20423;1;156;58.0;150;90;1;1;0;0;1;1
+83281;21790;1;152;63.0;120;80;1;1;0;0;0;1
+83282;19937;1;152;53.0;110;80;1;2;0;0;1;0
+83283;23481;1;170;66.0;150;100;1;1;0;0;1;1
+83284;16955;2;172;90.0;140;100;1;1;0;0;1;1
+83287;21352;2;168;65.0;120;70;1;1;0;0;1;1
+83288;21237;1;150;92.0;140;90;2;1;0;0;1;0
+83289;20458;1;170;75.0;120;80;1;1;0;0;1;0
+83290;23422;1;158;62.0;120;80;1;1;0;0;1;0
+83291;19064;2;162;64.0;140;90;1;1;0;0;1;1
+83292;22627;1;169;73.0;120;80;1;1;0;0;1;0
+83293;14496;1;160;75.0;110;80;1;2;0;0;1;0
+83294;15020;1;167;69.0;120;80;1;1;0;0;1;0
+83295;22509;1;154;68.0;140;90;1;1;0;0;1;1
+83296;18967;2;160;60.0;120;80;1;1;0;0;1;0
+83298;21649;1;168;82.0;130;80;2;1;0;0;1;1
+83300;18838;1;168;123.0;140;90;1;1;0;0;0;0
+83301;19651;2;162;75.0;150;90;2;1;1;1;1;1
+83302;19161;1;161;95.0;140;80;1;1;0;0;1;0
+83303;20347;2;169;72.0;150;100;2;1;0;0;1;1
+83305;19673;1;147;45.0;120;90;1;1;0;0;1;0
+83306;14438;1;157;63.0;100;60;1;1;0;0;1;0
+83307;21695;2;170;98.0;140;100;1;2;0;0;1;1
+83308;16738;2;160;55.0;110;70;1;1;0;0;1;1
+83309;21841;1;160;65.0;120;80;1;1;0;0;1;1
+83310;18187;1;162;63.0;100;70;1;1;0;0;0;0
+83311;21907;2;182;110.0;110;90;1;1;0;0;1;1
+83313;20258;2;168;55.0;120;80;1;1;0;0;0;1
+83314;20962;1;168;65.0;120;80;1;1;0;0;1;1
+83315;20997;2;155;64.0;120;80;3;3;0;0;1;1
+83316;15098;1;151;83.0;110;70;1;1;0;0;1;0
+83319;17456;1;158;67.0;150;90;2;2;0;0;0;1
+83321;21777;1;163;67.0;110;80;1;1;0;0;1;0
+83322;18809;1;163;70.0;110;70;2;2;0;0;1;0
+83323;17666;1;160;65.0;110;80;1;1;0;0;0;0
+83324;18195;1;163;54.0;120;70;1;1;0;1;0;0
+83325;19768;2;162;70.0;120;70;1;1;0;0;1;0
+83326;20974;1;155;102.0;160;90;3;3;0;0;0;1
+83327;18995;2;162;83.0;120;80;1;1;0;0;0;1
+83329;21109;2;157;60.0;180;100;2;1;0;0;1;1
+83332;23194;1;157;84.0;120;80;1;1;0;0;1;1
+83333;18448;1;162;73.0;110;70;1;1;0;0;1;0
+83336;21089;2;171;74.0;140;90;1;1;1;0;1;0
+83339;21956;2;172;68.0;110;70;3;3;0;0;1;0
+83340;20730;1;166;85.0;150;90;3;3;0;0;1;1
+83341;22908;1;165;85.0;130;80;1;1;0;0;1;1
+83342;22029;1;161;59.0;120;80;1;1;0;0;0;1
+83343;22037;2;177;89.0;130;60;1;2;1;0;1;0
+83345;21262;1;177;74.0;120;60;1;1;0;0;1;0
+83346;14592;2;169;67.0;120;80;2;2;0;0;1;0
+83347;19752;1;165;65.0;120;80;1;1;0;0;1;1
+83349;19098;1;162;76.0;120;80;1;1;0;0;1;0
+83350;19764;1;168;63.0;120;80;1;1;0;0;1;0
+83352;21170;1;163;82.0;140;100;1;1;0;0;1;1
+83353;21703;1;157;86.0;130;80;3;1;0;0;1;1
+83354;14592;1;164;83.0;128;70;1;1;1;0;1;0
+83355;19697;2;168;67.0;110;80;1;2;0;0;1;0
+83356;15947;1;160;135.0;120;80;2;1;0;0;1;0
+83358;22397;1;155;94.0;130;80;3;3;0;0;1;1
+83359;20383;2;160;60.0;120;80;1;1;0;0;1;0
+83360;22533;2;172;93.0;130;100;1;1;0;0;1;0
+83362;22714;2;170;81.0;120;80;1;1;1;0;1;1
+83364;17478;2;175;98.0;120;80;2;1;0;1;1;0
+83365;23102;1;177;81.0;140;80;3;3;0;0;1;1
+83366;21109;2;168;73.0;120;80;1;1;0;0;1;1
+83367;19597;2;166;121.0;160;90;1;1;0;0;1;1
+83368;18959;2;165;67.0;110;70;1;1;0;0;1;0
+83369;17084;2;156;60.0;120;90;1;1;1;0;1;1
+83372;16926;1;161;83.0;160;100;1;1;0;0;1;1
+83373;16122;2;175;77.0;110;70;1;1;0;0;0;0
+83374;19617;1;161;72.0;120;90;2;1;1;0;1;0
+83375;14435;1;160;72.0;110;70;1;1;0;0;1;0
+83376;18974;1;151;56.0;120;80;1;1;0;0;1;0
+83378;18236;2;170;89.0;120;80;1;1;0;0;1;0
+83379;21968;1;154;56.0;120;80;1;1;0;0;0;0
+83380;19108;2;178;109.0;170;90;1;1;1;0;1;1
+83381;22411;2;159;70.0;120;80;1;1;0;0;1;1
+83383;21458;2;170;57.0;120;80;1;3;0;0;1;0
+83386;18889;2;180;100.0;145;90;3;1;0;0;1;1
+83387;19201;1;158;71.0;140;70;1;1;0;0;1;1
+83388;18241;2;177;85.0;120;80;1;3;0;0;1;0
+83389;21319;2;174;71.0;120;80;1;1;0;0;1;1
+83390;22527;2;176;76.0;120;80;1;1;0;0;1;0
+83391;22101;1;165;86.0;170;90;1;1;0;0;0;1
+83392;16061;1;160;43.0;100;70;1;1;0;0;1;0
+83393;18374;1;167;58.0;120;80;1;1;0;0;1;0
+83394;15252;1;149;65.0;120;80;1;1;0;0;0;0
+83395;15281;2;180;75.0;140;1000;1;1;0;0;1;1
+83396;21779;1;148;73.0;125;75;3;1;0;0;1;0
+83397;22434;1;160;59.0;130;90;2;1;0;0;1;0
+83399;16059;1;158;73.0;140;90;1;1;0;0;1;1
+83400;21061;2;164;84.0;130;80;1;3;0;0;1;0
+83401;20361;2;165;74.0;150;90;1;1;0;0;1;1
+83402;15287;1;169;65.0;110;70;1;1;0;0;1;0
+83404;21194;1;155;59.0;100;80;2;1;0;0;1;0
+83405;22409;1;154;70.0;150;1000;3;1;0;0;1;1
+83406;23390;2;170;85.0;110;70;1;2;0;0;1;0
+83408;19694;1;152;82.0;130;100;1;1;0;0;0;0
+83411;21921;2;165;90.0;150;90;1;1;0;0;1;0
+83412;20304;2;178;79.0;120;80;1;1;1;0;1;0
+83413;22581;1;169;77.0;140;90;3;3;0;0;1;1
+83414;15334;2;177;83.0;120;80;1;1;0;1;1;0
+83416;17437;1;166;73.0;120;80;1;1;0;0;1;0
+83417;19667;1;156;65.0;140;80;3;1;0;0;1;1
+83418;16850;2;177;79.0;110;70;1;1;0;0;1;0
+83420;16799;2;178;80.0;110;70;1;1;1;0;1;0
+83421;14614;1;175;71.0;120;80;1;1;0;0;1;0
+83422;17316;1;165;52.0;120;80;1;1;0;0;1;0
+83423;17388;2;163;71.0;120;80;1;1;0;0;1;0
+83424;16266;1;169;71.0;120;80;2;1;1;0;1;0
+83425;19786;1;170;69.0;130;90;2;2;0;0;1;1
+83426;14417;1;159;72.0;120;80;1;1;0;0;0;0
+83428;20579;2;163;70.0;120;80;1;1;0;0;0;0
+83429;15322;2;168;72.0;110;70;1;1;0;0;1;0
+83433;18874;1;160;60.0;120;80;1;1;0;0;1;0
+83434;19054;1;165;88.0;120;80;1;1;0;0;1;1
+83435;20564;1;150;61.0;120;80;1;1;0;0;1;0
+83436;18907;2;170;65.0;110;70;1;1;0;0;0;0
+83437;21686;1;168;85.0;110;70;1;1;0;0;0;0
+83438;22668;2;177;83.0;140;90;3;1;1;0;0;1
+83441;22007;1;162;60.0;135;70;1;1;0;0;1;0
+83442;19838;2;188;69.0;110;70;1;1;0;0;1;1
+83444;21921;1;156;61.0;120;80;1;1;0;1;1;0
+83445;21682;1;154;52.0;140;90;2;3;0;0;1;1
+83446;22516;1;162;68.0;130;90;1;1;0;0;1;1
+83448;22203;1;165;63.0;110;70;1;1;0;0;1;0
+83449;15261;1;153;40.0;110;80;1;1;0;0;1;0
+83454;22466;1;163;88.0;140;90;3;1;0;0;1;1
+83455;18896;1;151;58.0;90;70;1;1;0;0;1;1
+83456;19049;1;149;81.0;140;80;1;1;0;0;1;1
+83460;22440;2;186;104.0;140;90;3;1;0;0;1;1
+83461;16089;1;170;65.0;120;90;1;1;0;0;1;0
+83462;14530;2;178;170.0;150;105;1;1;1;0;1;1
+83463;17216;1;169;69.0;120;80;1;1;0;0;1;0
+83464;22566;1;154;97.0;160;100;3;1;0;0;1;1
+83465;20634;2;169;72.0;130;80;1;1;0;0;1;1
+83469;21798;1;175;72.0;140;90;1;1;0;0;1;1
+83470;18311;2;179;65.0;120;80;2;2;0;0;1;0
+83473;14390;2;162;75.0;120;80;1;1;1;0;0;0
+83475;15221;1;158;48.0;110;70;1;1;0;0;1;0
+83476;23449;2;165;87.0;120;80;1;1;0;0;1;1
+83477;19785;2;164;83.0;160;80;1;1;1;0;0;1
+83478;20365;2;165;66.0;120;80;1;1;0;0;1;1
+83479;14430;2;170;72.0;120;80;1;1;0;0;1;0
+83481;16202;2;167;62.0;120;80;1;1;0;0;1;1
+83482;18857;1;156;59.0;110;70;2;1;0;0;1;0
+83484;18890;2;170;74.0;140;80;1;1;1;0;1;1
+83486;21954;1;151;68.0;120;80;1;1;0;0;1;1
+83487;21121;1;170;60.0;140;80;1;1;0;0;0;1
+83489;20340;1;158;62.0;120;80;1;1;0;0;1;0
+83490;17454;1;153;71.0;90;60;1;1;0;0;1;0
+83492;15490;1;168;71.0;115;70;2;1;0;0;0;1
+83493;18105;1;150;105.0;170;100;3;1;0;0;1;0
+83494;19797;1;160;58.0;110;70;1;1;0;0;0;0
+83495;20421;1;148;85.0;130;80;1;1;0;0;1;0
+83499;21098;1;166;62.0;130;80;1;2;0;0;1;1
+83500;16830;1;168;71.0;110;70;1;1;0;0;1;1
+83501;19694;2;160;78.0;120;80;1;1;0;0;1;0
+83502;18064;1;163;63.0;120;80;1;1;0;0;1;1
+83504;18481;1;160;80.0;120;70;1;1;0;0;1;0
+83506;15434;1;168;70.0;110;70;1;1;0;0;0;0
+83507;21233;1;172;72.0;120;80;1;1;0;0;0;0
+83508;23126;1;156;68.0;120;80;3;1;0;0;1;1
+83509;21015;1;178;88.0;120;60;1;1;0;0;1;1
+83510;19929;1;166;70.0;120;80;2;2;0;0;0;0
+83511;18106;1;165;72.0;120;80;1;1;0;0;0;0
+83512;22492;1;170;82.0;150;90;2;2;0;0;1;1
+83513;18285;1;186;80.0;100;60;1;1;0;0;1;1
+83514;18428;1;169;71.0;110;70;1;1;0;0;1;0
+83515;22482;1;174;72.0;110;80;1;1;0;0;1;1
+83516;21017;1;168;76.0;120;90;1;1;0;0;1;0
+83518;16060;1;165;60.0;110;70;1;1;0;0;0;0
+83519;16686;1;153;76.0;110;70;1;1;0;0;1;0
+83520;18861;1;154;60.0;120;80;3;1;0;0;0;1
+83521;19806;1;154;78.0;120;80;1;1;0;0;1;1
+83522;15894;1;170;92.0;180;110;3;1;1;0;0;1
+83523;19108;1;164;72.0;150;80;2;1;0;0;1;1
+83524;18884;2;171;71.0;110;70;1;1;1;0;1;0
+83525;16559;1;163;70.0;125;69;1;1;0;0;1;1
+83528;16824;2;176;127.0;130;90;2;2;1;1;1;1
+83530;19827;1;169;76.0;150;90;1;1;0;0;1;1
+83531;22718;1;165;66.0;130;80;1;1;0;0;1;0
+83532;20217;2;170;86.0;140;90;1;1;0;0;1;1
+83533;15124;2;162;78.0;120;80;1;1;0;0;1;0
+83534;17465;2;167;80.0;140;90;1;2;1;0;1;1
+83535;19176;2;174;75.0;120;90;1;1;0;0;1;0
+83536;18908;1;163;67.0;90;60;1;1;0;0;1;0
+83538;23415;2;167;78.0;130;80;2;1;0;0;1;0
+83539;17630;2;175;97.0;120;90;1;1;0;0;1;1
+83541;16690;2;166;60.0;160;110;1;1;0;0;1;1
+83542;22124;1;165;70.0;100;80;3;3;0;0;1;0
+83543;17232;2;174;80.0;160;80;1;1;0;0;0;1
+83544;22549;2;163;82.0;130;90;1;1;0;0;1;1
+83545;20636;1;151;60.0;100;80;1;1;0;0;0;0
+83548;22673;2;168;75.0;120;80;1;1;0;0;0;1
+83550;23270;1;156;68.0;150;100;1;1;0;0;1;1
+83551;15991;1;165;67.0;120;80;1;2;0;0;0;0
+83552;21391;1;165;82.0;110;70;3;3;0;0;1;1
+83553;22088;2;174;95.0;130;90;1;2;0;0;1;1
+83554;18159;2;175;72.0;120;70;1;1;1;0;1;0
+83560;23372;2;157;62.0;170;100;1;1;1;0;1;1
+83561;17423;1;149;64.0;140;90;3;1;0;0;1;0
+83562;19966;1;159;75.0;125;80;1;1;0;0;1;0
+83563;19166;2;175;81.0;120;80;1;3;0;1;1;1
+83564;21856;1;168;69.0;120;80;1;1;0;0;1;1
+83565;20282;1;168;65.0;120;80;1;1;0;0;0;0
+83566;23162;2;162;71.0;160;100;1;1;1;0;1;1
+83568;15348;1;158;40.0;110;70;1;1;0;0;1;0
+83569;18937;1;158;70.0;130;90;1;1;0;0;1;0
+83570;20358;1;169;65.0;120;80;1;1;0;0;0;1
+83574;19555;1;160;90.0;120;80;1;1;0;0;1;0
+83576;18184;1;174;65.0;120;80;1;1;0;0;1;1
+83577;20386;1;159;62.0;120;70;1;1;0;0;1;0
+83579;21170;1;158;64.0;120;80;1;1;0;0;1;1
+83581;23129;2;172;80.0;160;100;2;2;0;0;1;1
+83584;23450;2;170;50.0;130;70;2;1;1;0;1;1
+83585;17993;2;172;72.0;110;80;1;1;1;0;1;0
+83587;21178;1;156;73.0;120;80;3;1;0;0;1;1
+83588;23413;2;170;68.0;120;80;2;1;0;0;1;1
+83589;21482;1;167;69.0;140;90;3;3;0;0;0;0
+83590;16225;2;159;54.0;110;70;1;1;0;0;1;1
+83591;23238;2;166;96.0;150;90;1;1;0;0;0;1
+83593;18977;2;170;76.0;140;90;3;1;0;0;1;0
+83594;16600;1;171;66.0;120;80;1;1;0;0;1;1
+83597;23639;2;172;85.0;120;80;1;3;0;0;1;0
+83598;20208;1;142;54.0;120;80;2;1;0;0;1;1
+83602;18982;2;167;72.0;140;90;1;1;0;0;1;1
+83603;23225;1;152;47.0;90;60;1;1;0;0;1;0
+83604;23361;2;172;75.0;120;80;1;1;0;0;1;1
+83605;22435;2;171;89.0;120;80;1;1;1;0;1;1
+83606;18050;2;175;63.0;110;70;1;1;0;0;1;0
+83608;18947;1;167;65.0;110;80;3;1;0;0;1;1
+83610;21659;1;159;90.0;120;80;1;1;0;0;1;1
+83611;20459;1;147;66.0;140;80;2;1;0;0;1;1
+83612;15409;1;165;78.0;140;90;1;1;0;0;1;1
+83613;16971;1;171;56.0;120;80;1;1;0;0;1;0
+83615;16076;1;159;78.0;120;80;2;1;0;0;1;0
+83616;21870;1;156;90.0;130;90;3;1;0;0;1;0
+83617;21911;1;170;74.0;130;90;1;1;0;0;1;1
+83618;20902;1;154;75.0;130;80;3;1;0;0;1;1
+83619;22397;1;158;94.0;130;80;1;1;0;0;1;1
+83621;21157;1;152;72.0;120;80;1;1;0;0;1;0
+83623;15122;1;167;69.0;110;80;1;1;0;0;1;0
+83624;20356;1;158;72.0;150;90;1;1;0;0;1;0
+83625;18443;1;152;88.0;130;90;1;1;0;0;0;1
+83627;15333;1;168;50.0;100;60;2;1;0;0;0;0
+83629;21843;2;158;58.0;170;100;1;1;0;0;1;1
+83630;18223;2;178;73.0;110;70;1;1;0;0;1;0
+83633;20374;2;173;79.0;150;100;3;1;1;0;1;1
+83635;19673;1;157;75.0;120;80;1;1;0;0;1;0
+83636;16263;1;158;68.0;120;70;1;1;0;0;1;0
+83637;16928;2;180;84.0;160;85;1;1;0;0;1;1
+83638;18189;2;175;105.0;120;80;1;2;0;0;0;0
+83639;15977;2;166;73.0;120;80;1;1;0;0;1;0
+83640;17421;2;165;72.0;120;80;1;1;0;0;1;0
+83641;22185;2;169;74.0;120;70;1;1;0;0;1;1
+83643;19676;1;158;78.0;110;70;1;1;0;0;1;0
+83644;23297;2;158;58.0;90;60;1;1;0;0;1;0
+83650;15386;1;166;75.0;100;70;1;1;0;0;1;0
+83651;20277;1;163;60.0;120;80;1;1;0;0;0;0
+83652;22780;1;164;74.0;168;87;2;1;0;0;1;1
+83656;21991;1;163;70.0;130;80;2;2;0;0;0;1
+83658;15113;2;178;76.0;120;80;1;1;0;0;0;1
+83659;19888;1;154;72.0;160;90;2;1;0;0;1;1
+83660;18804;1;170;59.0;110;70;1;1;0;0;1;0
+83661;22080;1;161;74.0;110;70;2;2;1;0;1;0
+83662;19682;1;156;58.0;90;60;1;1;0;0;1;0
+83663;16249;1;153;58.0;120;80;1;1;0;0;1;0
+83664;18382;1;169;62.0;120;80;1;1;0;0;1;1
+83665;22606;2;155;80.0;130;70;2;2;0;0;1;1
+83666;18996;1;161;75.0;140;90;1;1;0;0;1;1
+83667;15300;2;176;78.0;120;80;1;1;0;0;1;0
+83668;18294;2;172;78.0;120;80;1;1;0;0;1;0
+83669;17563;2;180;80.0;150;80;1;1;0;0;0;1
+83670;22551;1;158;68.0;120;80;1;1;0;0;1;0
+83672;18360;2;171;105.0;160;100;2;2;0;0;1;1
+83673;20919;1;159;73.0;120;80;2;1;0;0;1;1
+83674;18885;2;169;75.0;150;90;1;1;0;0;1;1
+83675;15979;2;176;95.0;120;80;1;2;0;0;1;1
+83677;18915;1;166;74.0;110;70;1;1;0;0;1;1
+83678;14637;1;162;59.0;110;70;1;1;0;0;1;0
+83679;17387;1;163;86.0;130;110;1;1;0;0;1;0
+83683;20362;2;162;72.0;120;80;3;1;1;0;1;0
+83684;23420;1;157;56.0;160;80;1;1;0;0;1;1
+83686;17519;1;150;50.0;140;90;1;1;0;0;1;1
+83688;18429;2;172;92.0;120;80;1;1;1;0;0;0
+83689;17046;1;168;74.0;120;80;1;2;0;0;1;0
+83690;18871;2;180;82.0;110;70;1;1;0;0;0;0
+83691;22615;1;168;67.0;150;100;2;1;0;0;1;1
+83693;18334;1;168;69.0;120;80;1;1;0;0;1;0
+83694;23526;1;174;65.0;120;80;2;2;0;0;1;0
+83696;19786;1;165;70.0;130;80;1;1;0;0;0;0
+83697;20024;1;168;68.0;120;80;1;1;0;0;1;0
+83699;17581;2;177;112.0;110;70;2;1;0;0;1;1
+83700;23421;1;158;66.0;130;80;1;1;0;0;1;1
+83702;15250;2;167;74.0;120;80;1;1;0;0;1;0
+83703;22361;1;156;83.0;147;77;3;3;0;0;1;1
+83705;19886;1;163;59.0;120;80;1;2;0;0;1;0
+83706;18173;2;169;69.0;150;100;2;1;1;0;0;1
+83707;21064;1;165;73.0;140;90;1;1;0;0;1;1
+83709;16123;1;159;73.0;150;90;1;1;0;0;1;1
+83710;18382;2;177;78.0;140;80;3;3;0;0;1;1
+83711;20454;1;167;69.0;120;80;1;1;0;0;1;1
+83712;19536;1;170;127.0;120;80;1;1;0;0;1;0
+83713;15270;1;163;68.0;120;70;1;1;0;0;0;0
+83714;21102;1;156;55.0;180;1100;1;1;0;0;1;1
+83715;21065;1;167;68.0;120;80;1;1;0;0;1;0
+83716;18111;1;165;60.0;130;80;1;1;0;0;1;1
+83717;20459;1;164;78.0;120;80;1;1;0;0;1;0
+83718;18246;2;168;90.0;120;80;1;1;0;0;1;0
+83721;22031;1;159;59.0;140;90;1;2;0;0;1;1
+83722;21299;2;157;69.0;110;80;3;3;1;0;1;0
+83723;19686;2;178;89.0;130;80;1;3;0;0;1;0
+83725;19028;1;151;78.0;140;80;1;1;0;0;1;1
+83726;21871;1;159;87.0;160;1100;1;1;0;0;1;0
+83728;21075;1;162;94.0;100;70;3;3;0;0;1;1
+83730;21945;1;168;68.0;120;80;1;1;0;0;1;0
+83732;20887;1;171;87.0;140;80;2;1;0;0;1;0
+83733;20432;1;152;47.0;120;80;1;1;0;0;1;1
+83734;23436;1;158;76.0;120;80;1;1;0;0;1;1
+83735;23281;2;158;65.0;120;80;1;3;1;0;1;0
+83736;21985;1;167;90.0;100;79;1;1;0;0;1;0
+83737;18915;1;159;65.0;120;70;1;1;0;0;1;0
+83738;20292;1;159;58.0;150;90;3;3;0;0;1;1
+83739;18451;1;169;78.0;110;80;1;1;0;0;1;0
+83740;22596;2;162;65.0;110;70;1;1;1;1;1;1
+83741;22797;1;169;81.0;120;80;1;1;0;0;1;1
+83742;16147;2;168;90.0;160;90;1;1;0;0;1;1
+83745;21186;1;163;75.0;120;80;2;1;0;0;1;1
+83746;21130;1;153;63.0;110;70;2;1;0;0;1;1
+83747;21660;2;167;82.0;130;90;1;1;0;0;1;1
+83751;15963;2;167;77.0;110;70;1;2;0;0;0;0
+83754;14712;2;163;77.0;120;70;1;1;0;0;1;0
+83755;17321;2;165;65.0;110;70;1;2;0;0;1;0
+83756;15384;2;172;70.0;130;90;1;1;0;1;1;1
+83758;23171;1;164;80.0;140;90;3;3;0;0;1;1
+83761;18503;2;175;72.0;140;90;1;1;0;0;0;1
+83762;20442;1;153;75.0;130;90;2;1;0;0;0;1
+83763;22089;1;163;59.0;120;80;1;3;0;0;1;0
+83764;21775;1;165;78.0;130;80;1;1;0;0;1;1
+83765;14495;2;178;90.0;120;90;3;3;0;0;0;0
+83766;22703;2;174;80.0;140;100;3;1;1;0;1;1
+83767;18848;1;165;65.0;120;80;1;1;0;0;1;0
+83768;20584;1;154;65.0;120;80;1;1;0;0;1;1
+83769;21920;2;184;84.0;140;90;1;1;1;1;1;1
+83771;17627;1;167;68.0;120;80;1;1;0;0;1;0
+83772;21909;1;175;120.0;130;90;3;1;0;0;1;1
+83774;22506;1;162;95.0;130;80;2;1;0;0;0;1
+83776;18287;1;160;90.0;110;70;1;1;0;0;1;0
+83777;23409;1;159;84.0;170;90;3;3;0;0;0;0
+83778;15323;2;165;70.0;120;80;1;1;0;0;1;0
+83781;15506;2;162;62.0;120;70;1;1;0;0;1;0
+83782;22014;1;152;54.0;190;90;1;2;0;0;1;1
+83783;20392;1;154;55.0;120;75;1;1;0;0;1;0
+83784;21801;1;156;84.0;100;80;3;1;0;0;1;1
+83785;20410;1;162;69.0;140;90;2;1;0;0;1;1
+83786;21749;2;164;82.0;120;70;3;3;0;0;0;1
+83787;23435;1;168;64.0;140;90;2;1;0;0;1;1
+83791;19658;1;164;64.0;140;90;2;1;0;0;0;0
+83792;21340;2;171;66.0;120;80;1;1;0;0;1;1
+83793;21047;1;155;60.0;100;85;2;1;0;0;1;0
+83794;16085;2;188;90.0;110;70;1;1;1;0;1;0
+83795;16701;1;156;55.0;110;70;1;1;0;0;1;0
+83796;19515;1;170;100.0;160;90;1;1;0;0;1;0
+83797;20435;1;158;75.0;130;75;1;1;0;0;1;0
+83800;18909;1;165;68.0;120;80;1;1;0;0;1;1
+83801;21786;1;154;50.0;110;70;1;1;0;0;1;1
+83802;15050;2;170;74.0;123;80;1;1;0;0;1;1
+83803;21213;1;165;66.0;120;80;1;1;0;0;1;1
+83804;15390;1;170;73.0;120;80;1;1;0;0;1;0
+83805;16816;2;168;68.0;120;70;1;1;0;0;1;0
+83807;22380;2;176;79.0;130;80;1;1;0;0;1;1
+83808;22015;1;158;78.0;130;80;3;1;0;0;0;1
+83810;23302;2;173;78.0;110;70;3;1;0;0;1;1
+83812;19858;1;165;68.0;120;80;1;1;0;0;1;0
+83813;20558;2;168;74.0;120;80;1;1;0;0;1;1
+83815;21345;1;160;90.0;110;80;1;1;0;0;1;0
+83816;21882;1;158;83.0;120;80;1;1;0;0;1;1
+83817;14526;1;168;61.0;110;70;1;1;0;0;1;0
+83818;15975;2;171;72.0;130;90;1;3;1;0;1;0
+83819;20373;1;162;94.0;130;90;2;1;0;0;0;1
+83820;18354;1;157;76.0;145;92;2;2;0;1;1;1
+83821;22127;1;156;84.0;120;80;1;1;0;0;1;1
+83824;20424;1;178;88.0;120;80;1;1;0;0;1;0
+83826;21168;1;159;108.0;130;80;2;2;0;0;1;0
+83828;23215;1;163;88.0;140;80;2;1;0;0;1;1
+83831;14710;2;170;85.0;130;70;1;2;0;0;0;0
+83833;16287;1;168;98.0;120;80;1;1;0;0;1;0
+83836;20419;1;174;65.0;120;80;2;2;0;0;1;1
+83837;23103;1;164;82.0;130;80;1;1;0;0;0;0
+83838;18811;1;158;64.0;120;80;1;1;0;0;0;0
+83839;23331;1;152;74.0;120;80;3;3;0;0;0;0
+83840;22466;1;160;66.0;120;80;1;1;0;0;1;0
+83841;15826;1;165;61.0;150;80;2;1;1;0;1;1
+83844;15377;2;172;72.0;115;70;3;3;1;0;1;0
+83845;19706;1;162;95.0;130;80;1;1;0;0;1;0
+83846;20682;2;165;63.0;110;70;1;1;0;0;1;0
+83847;21051;1;165;113.0;140;90;2;1;1;0;1;1
+83848;19004;1;163;84.0;140;100;1;1;0;0;1;1
+83849;14334;1;162;61.0;110;80;2;2;0;0;1;0
+83850;17736;2;173;78.0;120;80;1;1;0;0;0;1
+83854;18253;2;173;68.0;120;80;1;1;0;0;1;1
+83855;20433;1;166;76.0;110;70;1;1;0;0;1;0
+83859;21806;1;163;131.0;150;100;1;1;0;0;1;1
+83860;18981;1;160;90.0;130;80;1;1;0;0;1;0
+83861;18117;1;153;70.0;120;80;1;1;0;0;0;1
+83862;20318;1;157;69.0;140;90;1;1;0;0;1;1
+83864;19790;2;167;62.0;140;90;1;1;0;0;1;1
+83865;17524;2;162;90.0;150;100;3;1;0;0;1;0
+83868;22673;1;165;76.0;120;80;1;1;0;0;0;1
+83869;19764;2;174;66.0;110;70;1;1;0;0;1;0
+83870;16861;2;172;83.0;120;70;1;1;0;0;1;0
+83871;19704;1;156;59.0;150;1100;1;1;0;0;1;1
+83872;20248;1;153;58.0;130;90;1;1;0;0;1;0
+83873;16169;1;163;62.0;100;60;1;1;0;0;0;0
+83876;17788;2;169;58.0;110;70;2;2;0;0;0;0
+83877;20453;1;167;92.0;120;80;1;1;0;0;1;1
+83879;23280;1;154;58.0;140;90;1;1;0;0;1;1
+83880;19687;1;168;75.0;120;80;1;1;0;0;1;0
+83881;20981;1;149;78.0;120;80;2;1;0;0;1;1
+83882;17316;1;160;66.0;120;70;2;1;0;0;1;1
+83884;18268;2;172;79.0;130;100;3;1;1;1;1;1
+83885;22047;1;170;84.0;120;80;3;3;0;0;1;1
+83887;22672;2;170;90.0;180;90;1;1;1;0;1;1
+83889;21395;1;159;58.0;120;80;1;1;0;0;1;0
+83890;23318;1;164;75.0;120;70;1;1;0;0;1;0
+83891;19824;1;157;73.0;130;90;1;1;0;0;1;1
+83893;23353;2;170;87.0;120;80;1;1;1;0;0;1
+83896;15403;1;169;70.0;120;80;2;1;0;0;1;0
+83898;19850;2;173;58.0;120;80;1;1;0;0;1;0
+83899;19813;1;162;67.0;120;80;1;3;0;0;1;0
+83900;23170;1;167;68.0;130;90;1;1;0;0;0;1
+83901;21385;1;160;52.0;100;60;1;1;0;0;1;0
+83902;20398;1;163;95.0;140;90;2;2;0;0;0;1
+83903;18231;2;169;80.0;120;80;1;1;0;0;1;0
+83904;21010;2;168;110.0;150;90;3;1;0;0;1;1
+83905;18108;1;160;64.0;120;80;1;1;0;0;1;0
+83907;19691;2;170;80.0;130;90;3;1;0;0;1;0
+83909;21877;2;158;62.0;140;90;1;1;0;0;1;0
+83910;20455;1;149;50.0;90;60;1;1;0;0;1;0
+83911;21983;2;152;52.0;150;1000;3;2;0;0;1;1
+83915;23354;2;175;80.0;130;80;2;1;0;0;0;1
+83916;21177;2;175;108.0;120;80;1;1;0;0;0;1
+83918;19796;1;160;64.0;120;80;1;1;0;0;1;1
+83919;23258;2;161;58.0;120;80;1;1;0;0;0;0
+83921;17726;1;169;70.0;120;80;1;1;0;0;1;0
+83922;23173;2;170;68.0;140;90;1;1;0;0;0;1
+83923;16225;2;170;79.0;130;90;1;1;1;0;0;1
+83925;21946;2;158;52.0;150;90;2;2;1;0;1;1
+83929;15348;1;160;70.0;120;80;1;1;0;0;1;0
+83930;21803;2;175;56.0;120;80;2;1;0;0;1;0
+83931;20429;2;152;52.0;90;60;3;1;0;1;1;0
+83932;21924;1;170;170.0;120;80;1;1;0;0;1;1
+83933;21877;1;159;95.0;130;80;3;3;0;0;1;0
+83936;14490;2;175;63.0;110;70;1;1;1;1;1;0
+83937;23279;2;165;71.0;130;80;1;2;0;0;1;0
+83939;19956;1;159;62.0;120;80;1;1;0;0;1;0
+83940;17555;1;153;56.0;120;80;1;1;0;0;0;0
+83942;21951;1;157;88.0;130;90;3;1;0;0;1;1
+83944;19830;1;169;67.0;120;80;1;1;0;0;1;0
+83945;19839;1;158;70.0;130;100;1;1;0;0;1;1
+83946;18859;1;159;68.0;130;80;1;2;0;0;1;0
+83950;22421;2;165;79.0;140;90;2;3;0;0;1;0
+83952;16785;1;164;70.0;120;80;1;1;0;0;1;1
+83953;18222;1;164;80.0;120;90;3;1;0;0;1;1
+83954;16130;1;157;90.0;120;70;2;1;0;0;1;1
+83955;21720;1;165;90.0;120;80;1;1;0;0;0;0
+83956;21120;1;168;78.0;140;90;1;1;0;0;1;1
+83957;20374;1;155;101.0;150;100;1;1;0;0;1;1
+83958;20248;2;173;70.0;120;90;3;1;1;0;1;1
+83960;16685;1;160;50.0;120;70;1;1;0;0;1;1
+83961;18881;1;160;84.0;150;90;1;1;0;0;1;1
+83962;22653;1;166;66.0;120;80;1;1;0;0;1;1
+83963;23397;1;155;71.0;130;80;1;2;0;0;1;0
+83965;20958;1;165;65.0;120;70;1;1;0;0;1;0
+83966;23244;1;168;76.0;120;80;3;1;0;0;1;1
+83967;21278;1;166;69.0;120;80;1;1;0;0;1;0
+83968;18922;1;168;65.0;120;80;1;1;0;0;1;1
+83969;16966;2;170;67.0;110;70;1;1;0;0;1;0
+83971;16090;1;165;70.0;130;90;2;1;0;0;1;1
+83973;19541;1;155;55.0;100;60;1;1;0;0;1;0
+83974;19689;1;157;60.0;130;90;3;3;0;0;1;1
+83975;19111;1;160;79.0;120;90;2;1;0;0;0;0
+83979;20265;1;170;85.0;140;80;2;1;0;0;0;1
+83980;17287;2;169;133.0;160;90;1;1;0;1;1;1
+83981;20260;1;165;65.0;120;80;1;1;0;0;1;0
+83982;15571;1;165;65.0;140;90;2;3;0;0;1;1
+83983;15172;2;174;106.0;150;90;3;1;1;0;1;1
+83985;21024;1;164;61.0;120;80;2;1;0;0;1;1
+83987;21973;1;160;73.0;110;70;1;1;0;0;1;0
+83990;15191;1;164;68.0;120;80;1;1;0;0;1;0
+83992;19739;1;169;70.0;120;70;1;1;0;0;1;0
+83993;21860;2;172;87.0;120;79;1;1;0;0;1;1
+83995;22064;1;165;73.0;130;80;1;1;0;0;1;1
+83996;18283;1;165;66.0;120;80;1;1;0;0;0;0
+83998;20451;1;164;52.0;120;80;1;1;0;0;1;1
+83999;22716;1;161;89.0;120;90;1;1;0;0;1;1
+84003;19078;1;160;60.0;150;90;3;1;0;0;1;0
+84004;22570;1;160;53.0;120;80;1;1;0;0;1;1
+84005;21919;1;164;69.0;120;80;1;1;0;0;0;1
+84006;16229;2;175;95.0;130;90;1;1;1;1;1;0
+84008;18704;2;172;80.0;160;90;1;1;1;0;1;1
+84009;19636;1;165;65.0;120;80;2;1;0;0;0;0
+84010;20869;1;163;63.0;120;60;1;1;0;0;1;0
+84011;14607;1;160;87.0;120;80;1;1;0;0;1;0
+84012;19678;2;167;75.0;110;70;1;2;0;0;1;0
+84013;19136;1;168;80.0;120;80;1;1;0;0;1;1
+84014;19596;1;162;90.0;120;80;1;1;0;0;1;1
+84015;18389;2;167;70.0;145;90;2;1;0;0;1;1
+84017;23326;2;178;110.0;150;80;3;3;1;0;0;1
+84018;21315;1;163;79.0;140;90;1;1;0;0;1;1
+84019;16634;1;160;66.0;110;70;2;1;0;0;1;0
+84021;14680;2;100;60.0;100;60;1;1;0;0;1;0
+84023;20622;2;168;74.0;140;90;1;1;0;0;1;0
+84024;19451;1;156;69.0;120;80;1;1;0;0;1;1
+84025;16812;1;158;61.0;110;70;2;1;0;0;0;0
+84026;20442;1;178;87.0;120;80;1;1;0;0;0;0
+84027;23357;2;180;80.0;150;80;2;1;0;0;1;1
+84028;18925;2;168;65.0;120;80;1;1;1;1;1;0
+84030;19008;2;165;55.0;120;80;3;1;0;0;1;0
+84031;14508;1;153;74.0;140;90;1;1;0;0;1;0
+84032;22413;1;165;75.0;120;70;2;1;0;0;1;0
+84034;16691;1;157;54.0;110;70;1;1;0;0;1;0
+84035;22587;1;154;75.0;150;70;2;2;0;0;1;1
+84037;17637;2;170;103.0;120;80;1;1;1;0;1;1
+84040;15219;1;164;68.0;90;60;1;1;0;0;1;0
+84042;21749;1;162;62.0;120;80;1;1;0;0;1;1
+84044;19456;2;173;111.0;160;90;2;2;0;0;1;0
+84048;19055;1;160;72.0;120;80;1;1;0;0;1;1
+84049;20487;1;165;65.0;120;80;1;1;0;0;0;0
+84051;19845;2;170;87.0;150;90;1;2;0;0;0;0
+84052;19199;1;165;76.0;120;80;1;1;0;0;1;0
+84054;22664;2;159;68.0;110;80;1;1;0;0;1;1
+84055;14670;1;164;60.0;110;80;2;1;0;0;1;0
+84057;19086;2;175;95.0;120;80;1;2;1;1;1;0
+84058;21927;2;172;72.0;150;1100;1;1;0;0;1;0
+84059;18084;1;155;54.0;120;80;1;1;0;0;1;0
+84061;21180;2;168;83.0;170;100;2;2;0;0;1;0
+84062;23501;2;163;57.0;110;70;3;1;0;0;0;1
+84063;18939;1;145;68.0;140;100;1;1;0;0;0;1
+84064;21841;1;167;60.0;130;70;2;1;0;0;1;0
+84065;22696;2;164;84.0;120;80;3;3;0;0;1;1
+84066;15325;1;167;66.0;110;60;1;1;0;0;1;1
+84068;18262;1;158;68.0;140;90;1;1;0;0;0;1
+84069;18359;2;182;86.0;140;100;1;2;1;0;1;1
+84073;23583;1;165;69.0;130;80;1;1;0;0;1;1
+84074;20428;1;151;83.0;160;90;1;1;0;0;1;1
+84075;23293;1;159;92.0;140;80;3;3;0;0;1;1
+84076;22350;2;180;87.0;120;80;2;2;0;0;1;1
+84079;15464;1;166;69.0;120;80;1;1;0;0;1;0
+84080;18187;1;162;70.0;120;90;1;1;0;0;0;0
+84081;18931;2;183;85.0;110;80;1;1;0;0;1;0
+84083;23171;1;157;78.0;170;130;1;1;0;0;1;1
+84084;18329;2;165;65.0;140;100;2;2;0;0;1;1
+84086;20535;2;169;80.0;150;80;1;1;1;0;0;1
+84087;17465;1;178;85.0;140;90;2;1;0;0;0;1
+84088;19755;2;170;71.0;120;80;1;1;0;0;1;0
+84089;22552;1;156;76.0;120;80;3;1;0;1;1;1
+84090;20395;1;162;76.0;110;70;1;3;0;0;1;1
+84091;20933;2;170;68.0;130;80;3;1;0;0;1;1
+84092;22536;2;168;112.0;120;80;1;1;0;0;1;1
+84093;17292;2;164;79.0;130;90;3;1;1;0;1;1
+84094;21382;1;164;75.0;120;80;2;2;0;0;1;0
+84098;19761;1;167;65.0;116;60;1;1;0;0;1;0
+84099;20296;2;172;74.0;140;90;3;1;1;1;1;1
+84101;15172;1;160;65.0;120;70;1;1;0;0;1;0
+84102;22793;2;165;70.0;120;80;1;1;0;0;1;1
+84103;16922;1;152;64.0;120;80;1;1;0;0;1;0
+84105;18986;1;160;89.0;120;80;3;3;0;0;1;1
+84107;23323;1;162;65.0;110;70;3;1;0;0;1;0
+84110;18244;1;162;73.0;130;80;1;1;0;0;1;1
+84111;21411;1;160;60.0;120;80;3;3;0;0;1;1
+84116;23252;2;178;96.0;120;70;1;1;1;1;1;0
+84117;22721;1;155;60.0;140;90;3;1;0;0;0;1
+84118;21088;2;167;77.0;110;70;1;1;0;0;1;0
+84119;18064;2;175;78.0;130;85;3;1;0;0;0;1
+84120;15135;2;170;85.0;120;80;1;1;1;0;1;0
+84121;18788;2;175;76.0;120;80;1;1;0;0;1;0
+84123;20388;1;165;68.0;120;80;1;1;0;0;0;0
+84126;19935;1;158;70.0;120;80;1;1;0;0;1;1
+84127;21164;2;160;58.0;120;80;2;1;0;0;1;0
+84128;21003;1;164;52.0;95;60;1;1;0;0;0;0
+84129;19065;2;170;77.0;110;90;1;1;0;0;0;0
+84130;20519;2;172;74.0;120;80;3;1;0;0;1;1
+84131;20148;1;157;67.0;110;90;1;1;0;0;1;0
+84132;18409;1;167;70.0;140;80;2;2;0;0;1;1
+84133;21829;2;158;55.0;128;80;1;1;0;0;1;0
+84135;16696;1;160;55.0;120;80;1;2;0;0;1;0
+84136;23495;1;162;51.0;120;70;1;1;0;0;1;1
+84137;22688;2;160;62.0;140;80;1;1;0;0;1;1
+84141;19956;2;171;80.0;140;90;3;1;1;0;1;1
+84143;21021;1;156;82.0;120;80;1;1;0;0;1;1
+84145;18099;2;172;75.0;110;70;1;1;1;0;1;0
+84146;22039;1;163;80.0;160;90;1;1;0;0;1;1
+84148;21040;1;156;89.0;120;80;2;2;0;0;1;1
+84149;19136;1;156;83.0;140;90;1;1;0;0;1;1
+84150;21278;1;160;58.0;150;1000;1;1;0;0;0;1
+84151;21173;2;172;70.0;120;80;1;1;0;0;1;0
+84152;19440;2;164;76.0;120;80;2;1;0;0;1;0
+84153;22644;1;158;80.0;100;70;1;1;0;0;1;1
+84155;14571;1;156;69.0;120;80;1;1;0;0;1;0
+84156;16941;1;164;65.0;110;60;1;1;0;0;1;0
+84158;20491;2;178;100.0;130;90;1;1;0;0;1;1
+84160;23184;1;164;68.0;130;90;3;1;0;0;1;1
+84161;20426;2;170;94.0;120;80;3;3;0;0;1;1
+84162;16868;1;157;60.0;120;80;1;1;0;0;1;0
+84164;18316;2;179;86.0;120;80;1;1;1;0;1;1
+84165;20275;1;166;61.0;110;70;1;1;0;0;1;0
+84166;18315;1;170;94.0;120;80;1;1;0;0;1;0
+84167;22345;2;170;70.0;120;80;1;1;0;0;0;1
+84168;23210;1;161;123.0;160;90;2;2;0;0;1;0
+84169;20491;1;168;97.0;160;100;3;2;0;0;1;1
+84170;23119;1;165;68.0;140;90;1;1;0;0;1;1
+84173;23258;2;176;110.0;160;100;3;3;0;0;1;0
+84175;15245;2;168;62.0;140;90;1;1;0;0;1;0
+84177;21290;1;169;63.0;120;80;1;1;0;0;0;0
+84178;18328;2;165;75.0;140;90;1;1;1;0;0;1
+84179;21997;1;150;55.0;110;70;2;2;0;0;0;0
+84180;20384;1;157;57.0;150;80;3;1;0;0;1;1
+84181;18196;1;152;57.0;120;80;2;2;0;0;1;0
+84182;23175;2;157;89.0;130;80;2;1;0;0;0;1
+84183;23372;1;160;65.0;130;80;2;1;0;0;1;0
+84185;14642;1;150;46.0;120;80;1;1;0;0;1;0
+84186;23337;2;170;87.0;130;80;1;1;0;0;1;1
+84188;21032;1;174;68.0;120;80;1;1;0;0;1;0
+84189;20987;1;156;111.0;150;100;3;3;0;0;1;1
+84190;18332;1;156;54.0;110;80;3;3;0;0;1;0
+84191;16010;2;177;141.0;160;110;2;2;1;1;1;0
+84193;21991;1;160;42.0;110;70;1;1;0;0;1;1
+84195;21466;1;162;59.0;120;80;1;1;0;0;0;1
+84196;16107;2;180;86.0;120;80;2;1;1;0;1;1
+84197;15890;2;172;102.0;140;90;2;2;0;0;1;1
+84199;22413;1;152;75.0;130;90;2;2;0;0;1;0
+84200;18326;1;165;75.0;130;80;1;1;0;0;1;0
+84202;23555;1;168;65.0;150;80;1;1;0;0;1;1
+84203;20304;1;158;84.0;130;80;1;1;0;0;1;0
+84204;21006;2;155;44.0;90;60;1;1;0;1;1;0
+84205;17043;1;152;55.0;120;80;1;1;0;0;1;0
+84206;17715;2;168;60.0;120;80;2;1;0;0;0;1
+84207;22824;2;170;73.0;120;80;1;1;0;0;1;1
+84209;20555;1;166;80.0;140;100;2;2;0;0;1;1
+84210;21776;1;155;56.0;120;80;1;1;0;0;1;1
+84212;21993;2;165;60.0;120;80;1;3;0;0;0;1
+84213;15905;1;164;70.0;140;90;2;1;0;0;1;0
+84214;21240;1;163;80.0;130;90;1;1;0;0;1;1
+84215;19080;1;167;86.0;110;80;2;2;0;0;1;0
+84219;19908;1;171;66.0;130;80;3;1;0;0;0;0
+84220;18252;1;153;74.0;120;80;1;1;0;0;1;0
+84224;15360;2;164;64.0;120;80;1;1;1;0;1;0
+84225;19543;2;168;68.0;155;75;1;1;0;0;1;1
+84227;16759;1;155;82.0;160;90;2;2;0;0;0;1
+84229;21014;1;152;70.5;130;90;1;1;0;0;0;0
+84233;19628;1;158;44.0;90;60;1;1;0;0;1;0
+84234;16187;1;145;72.0;130;100;3;1;0;0;1;1
+84236;19197;1;158;62.0;120;80;1;1;0;0;1;0
+84237;21992;2;169;68.0;140;90;1;1;1;0;0;1
+84239;21319;2;176;90.0;130;70;2;1;0;0;0;0
+84242;16344;2;156;69.0;120;80;1;1;0;0;1;0
+84243;16021;1;165;59.0;115;80;2;1;0;0;1;0
+84244;23459;1;162;72.0;170;100;1;1;0;1;1;1
+84245;19499;1;165;76.0;110;70;1;1;0;0;0;0
+84247;16934;2;180;78.0;120;80;1;1;0;0;1;0
+84248;23530;2;164;63.0;120;80;3;3;0;0;0;0
+84249;16778;1;162;82.0;120;80;1;1;0;0;1;1
+84250;19109;2;170;71.0;120;80;1;1;0;0;1;0
+84252;20412;1;161;60.0;120;80;1;1;0;0;1;1
+84253;19165;1;159;56.0;140;80;1;1;0;0;1;1
+84255;21242;2;170;70.0;120;80;1;1;0;0;1;1
+84256;22031;1;168;65.0;120;70;1;1;0;0;1;0
+84257;21856;1;170;75.0;120;70;1;1;0;0;1;0
+84258;19488;1;165;88.0;140;90;2;1;0;0;0;0
+84259;19110;2;162;72.0;170;1000;3;3;1;0;1;1
+84260;16835;2;181;121.0;130;90;1;1;0;0;1;1
+84262;22573;2;176;85.0;120;80;2;2;1;1;1;1
+84263;18857;2;171;83.0;120;80;2;1;1;1;1;1
+84264;16121;2;175;80.0;160;90;1;1;0;1;1;1
+84265;17657;1;155;59.0;110;70;1;1;0;0;1;0
+84266;14569;1;170;70.0;120;80;1;1;0;0;1;0
+84267;21892;1;165;75.0;140;90;1;1;0;0;1;1
+84268;18884;2;164;52.0;90;60;1;1;1;0;1;1
+84269;20496;2;164;85.0;130;80;1;1;1;0;1;0
+84270;22069;1;160;85.0;110;80;2;1;0;0;0;0
+84272;19131;1;169;65.0;90;60;1;1;0;0;1;0
+84275;21249;1;162;68.0;140;80;3;1;0;0;1;1
+84276;20286;1;160;80.0;125;80;2;1;0;0;1;1
+84278;19118;1;165;65.0;120;80;1;3;0;0;0;0
+84280;14490;1;172;57.0;110;60;1;1;0;0;1;0
+84282;21100;1;158;82.0;110;70;2;1;0;0;1;0
+84283;14608;1;160;58.0;80;50;2;1;0;0;1;0
+84285;20669;1;168;80.0;120;80;1;1;0;0;1;0
+84286;23187;2;160;69.0;130;80;3;3;0;0;1;0
+84289;16951;1;164;58.0;110;70;1;1;0;0;1;0
+84292;20344;1;157;80.0;130;80;3;1;0;0;1;0
+84293;21696;1;156;62.5;110;80;2;1;0;0;0;1
+84294;16107;2;170;75.0;110;70;1;1;0;0;1;1
+84295;17541;2;160;61.0;130;70;1;1;1;0;1;0
+84296;15444;1;157;70.0;100;80;1;1;0;0;1;1
+84299;18032;2;171;70.0;120;80;1;1;1;1;1;0
+84300;18456;1;155;81.0;110;80;3;1;0;0;1;1
+84302;16820;1;160;60.0;150;1000;1;1;0;0;1;1
+84303;19763;1;166;68.0;120;70;1;1;0;0;1;0
+84304;18829;1;158;116.0;160;90;1;1;0;0;0;1
+84305;17428;1;159;71.0;110;70;2;2;0;0;1;1
+84307;18817;2;178;110.0;120;90;1;1;1;0;1;0
+84311;18366;1;163;65.0;140;90;2;1;0;0;1;1
+84312;15171;1;159;57.0;120;80;1;1;0;0;1;0
+84314;21247;2;169;75.0;120;80;1;1;0;0;1;0
+84315;21070;1;160;60.0;110;70;1;1;0;0;1;0
+84317;16678;1;160;70.0;113;64;2;2;0;0;1;0
+84318;15829;2;174;80.0;120;80;2;1;0;0;1;0
+84319;18331;2;162;60.0;150;80;1;1;0;0;1;0
+84320;20364;1;165;80.0;120;80;1;1;0;0;1;0
+84323;17065;2;160;69.0;120;80;1;1;0;0;1;1
+84324;18934;2;164;75.0;140;100;1;3;0;0;0;1
+84326;21322;1;162;65.0;150;90;1;1;0;0;1;1
+84327;20526;1;156;68.0;120;60;1;1;0;0;1;0
+84329;18035;2;180;75.0;120;79;2;1;0;0;1;1
+84330;22025;1;170;65.0;120;80;1;1;0;0;1;1
+84331;20492;2;168;79.0;110;80;1;1;0;0;1;0
+84332;21790;1;160;72.0;120;80;1;1;0;0;1;0
+84333;21046;2;169;73.0;140;90;1;1;1;0;1;1
+84336;14477;2;168;73.0;120;80;1;1;1;0;0;0
+84337;21833;1;172;78.0;120;80;1;1;0;0;1;0
+84338;21078;1;170;65.0;120;80;1;1;0;0;1;1
+84339;18313;2;178;76.0;120;80;1;3;0;0;1;1
+84345;14349;2;168;68.0;120;79;1;1;0;0;1;0
+84346;17482;2;170;85.0;160;1000;1;1;1;1;1;1
+84347;23626;2;180;80.0;150;90;1;1;0;0;1;1
+84348;20421;1;170;69.0;120;80;1;1;0;0;1;0
+84349;18256;1;160;80.0;120;80;1;3;0;0;1;0
+84350;19707;2;169;88.0;120;80;1;1;1;0;0;0
+84352;23414;1;164;72.0;130;70;1;1;0;0;1;1
+84353;19592;1;160;64.0;120;80;1;1;0;0;1;1
+84354;21740;1;162;62.0;120;80;3;3;0;0;1;0
+84358;20325;1;156;75.0;130;85;2;2;0;0;1;0
+84359;16567;1;155;52.0;120;80;1;1;0;0;1;0
+84360;18455;1;148;65.0;120;80;1;1;0;0;1;0
+84361;18912;2;168;75.0;120;80;1;1;1;0;1;0
+84363;21185;2;166;64.0;130;90;1;1;0;0;1;1
+84364;21222;2;172;72.0;150;90;1;1;0;0;1;1
+84367;20206;2;162;69.0;160;90;2;2;0;1;1;1
+84368;23496;2;164;72.0;120;80;1;1;0;0;1;0
+84369;16935;1;164;52.0;90;60;1;1;1;0;1;0
+84371;21099;2;170;85.0;120;80;3;1;0;0;1;1
+84372;20460;1;160;68.0;120;80;1;2;0;0;1;1
+84373;18200;1;156;65.0;120;70;2;1;0;0;0;0
+84374;18153;1;162;70.0;90;60;1;1;0;0;1;0
+84376;16547;1;160;46.0;140;70;1;1;0;0;1;0
+84379;18333;1;161;79.0;120;70;1;1;0;0;1;0
+84382;18298;1;182;65.0;120;80;1;1;0;0;0;1
+84385;21273;1;163;88.0;160;100;1;1;0;0;1;1
+84388;19900;2;160;62.0;140;90;1;1;0;0;0;0
+84389;22776;1;150;54.0;160;90;2;2;0;0;1;1
+84391;22774;1;155;74.0;113;65;3;3;0;0;1;1
+84392;19560;1;160;58.0;130;90;1;1;0;0;1;1
+84393;20183;2;177;89.0;160;90;2;1;0;0;1;1
+84394;23155;1;152;44.0;90;60;1;1;0;0;1;0
+84395;21931;1;160;103.0;140;90;1;1;0;0;1;1
+84396;15053;2;177;93.0;150;90;1;2;1;0;0;1
+84398;14693;1;167;75.0;120;80;1;1;0;0;0;0
+84399;15134;1;152;84.0;160;80;1;2;0;0;1;1
+84400;22030;1;168;71.0;140;80;1;1;0;0;1;1
+84401;19707;1;165;69.0;120;80;1;1;0;0;1;0
+84402;23108;2;163;67.0;130;70;1;1;0;0;0;1
+84405;15810;1;153;60.0;110;69;1;1;0;0;1;0
+84406;20494;1;158;65.0;130;80;1;1;0;0;1;0
+84407;21907;1;156;54.0;150;80;1;1;0;0;1;0
+84408;19667;2;172;86.0;130;80;2;2;0;0;1;0
+84411;22508;2;173;67.0;150;100;1;1;1;0;1;1
+84412;21022;2;154;49.0;140;80;3;1;1;1;1;0
+84413;15270;2;172;82.0;150;90;2;2;0;0;1;1
+84414;15470;2;164;66.0;120;80;1;1;1;0;1;0
+84419;18031;1;149;55.0;110;70;1;1;0;0;1;0
+84420;23413;1;160;52.0;160;60;1;1;0;0;1;1
+84421;21247;1;146;63.0;130;80;1;1;0;0;1;0
+84422;15397;2;172;74.0;120;80;2;1;0;0;1;0
+84425;23388;2;169;71.0;110;80;1;1;0;0;1;1
+84426;18371;1;167;72.0;110;85;1;1;0;0;0;0
+84428;23422;2;161;71.0;120;90;1;1;1;0;1;1
+84432;19494;1;160;60.0;120;80;1;1;0;0;1;0
+84433;22038;2;152;50.0;110;80;1;1;0;0;1;0
+84434;14717;1;172;51.0;100;70;1;1;0;0;1;0
+84435;20424;1;166;62.0;130;90;1;1;0;0;0;0
+84437;23379;1;165;60.0;120;90;1;2;0;0;1;0
+84438;21503;2;169;65.0;120;85;2;3;0;0;1;1
+84439;23422;1;156;56.0;120;80;1;1;0;0;0;1
+84441;18264;2;185;89.0;171;90;1;1;0;0;1;1
+84442;22631;1;160;84.0;150;90;1;1;0;0;1;1
+84443;19651;2;174;89.0;130;80;1;1;0;0;0;0
+84445;21233;1;162;93.0;160;100;1;1;0;0;1;1
+84446;19730;1;162;62.0;140;80;2;2;0;0;1;1
+84447;20678;1;168;112.0;160;90;3;3;0;1;1;1
+84448;19039;2;168;59.0;120;80;1;1;0;0;1;0
+84449;20371;1;164;74.0;120;70;1;1;0;0;1;0
+84450;23486;1;157;65.0;130;90;3;3;0;0;1;0
+84452;18060;2;174;78.0;130;70;1;1;1;1;1;0
+84454;18293;2;175;85.0;130;90;1;1;0;0;1;1
+84455;16948;2;178;68.0;120;80;1;1;0;0;0;0
+84456;22626;2;169;62.0;120;80;1;1;0;0;1;1
+84457;21739;1;164;100.0;140;1000;2;1;0;0;1;0
+84458;18275;1;165;62.0;120;80;1;1;0;0;1;0
+84460;15926;1;154;81.0;120;80;1;1;0;0;1;0
+84461;21063;1;158;78.0;130;90;1;1;0;0;1;1
+84464;18313;1;157;59.0;120;80;1;1;0;0;1;0
+84466;20326;1;152;75.0;140;100;2;3;0;0;0;1
+84467;19789;1;168;65.0;90;60;2;1;0;0;1;0
+84469;20534;1;170;68.0;120;80;1;1;0;0;1;0
+84476;20209;1;164;76.0;120;80;1;1;1;1;0;1
+84477;21975;2;168;84.0;110;72;1;1;0;0;1;0
+84478;23328;1;166;77.0;120;70;1;1;0;0;1;1
+84480;15996;2;167;91.0;150;90;1;1;0;0;1;1
+84481;16697;1;175;83.0;120;80;1;1;1;0;1;1
+84482;17563;2;168;68.0;140;90;1;1;0;0;1;1
+84483;21920;1;166;73.0;150;80;3;3;0;0;1;1
+84485;19624;2;160;68.0;140;90;1;1;1;1;1;1
+84487;19066;1;158;92.0;140;90;3;1;0;0;0;0
+84488;21680;1;159;60.0;140;90;3;3;0;0;1;1
+84489;18932;1;163;65.0;140;80;1;1;0;0;0;1
+84490;19716;1;162;61.0;120;70;2;1;0;0;1;0
+84491;20564;1;160;70.0;120;80;1;1;0;0;1;0
+84493;16959;1;169;65.0;120;80;1;1;0;0;0;0
+84494;14608;2;180;90.0;120;80;1;1;0;0;1;0
+84495;16013;2;168;62.0;110;70;1;1;0;0;1;0
+84499;18940;2;173;70.0;130;70;1;1;0;0;1;0
+84500;21219;2;163;63.0;120;80;1;1;0;0;0;1
+84502;15858;1;158;64.0;90;60;1;1;0;0;1;0
+84503;18327;2;170;60.0;120;80;1;1;0;0;1;1
+84504;19794;2;162;65.0;130;80;1;1;0;0;0;1
+84505;21196;1;161;64.0;110;70;3;1;1;0;0;1
+84507;21464;1;177;69.0;120;80;1;1;0;0;0;1
+84509;22768;1;158;56.0;110;70;1;1;0;0;1;1
+84511;22461;2;172;74.0;120;80;1;1;0;0;1;1
+84512;21096;2;170;95.0;140;90;1;1;0;0;1;1
+84515;19537;1;150;73.0;140;80;1;1;0;0;1;0
+84516;19746;1;170;68.0;128;80;1;1;0;0;0;0
+84518;15969;1;170;65.0;120;80;1;2;0;0;1;0
+84520;21183;1;157;80.0;120;80;1;1;0;0;1;0
+84521;15987;1;170;70.0;120;80;1;1;0;0;1;0
+84522;17014;2;180;79.0;160;80;2;1;0;0;0;1
+84523;15213;1;156;70.0;100;70;1;1;0;0;1;0
+84524;22737;2;163;79.0;190;100;3;3;0;0;1;1
+84525;22009;1;159;63.0;90;60;1;1;0;0;1;0
+84526;23328;1;155;59.0;110;70;2;2;0;0;0;1
+84527;18300;1;163;52.0;100;70;1;1;0;0;1;0
+84529;21843;1;155;54.0;190;120;2;1;0;0;1;1
+84532;23359;1;149;64.0;150;100;3;1;0;0;0;1
+84533;19570;1;161;76.0;120;80;1;1;0;0;1;0
+84534;15269;2;170;70.0;120;79;2;3;0;0;0;0
+84535;20463;2;177;99.0;140;90;2;1;0;0;1;1
+84537;23381;2;172;74.0;110;60;3;1;0;0;1;1
+84539;16172;1;160;55.0;110;70;1;1;0;0;0;0
+84540;19808;1;163;60.0;120;70;1;1;0;0;1;1
+84541;17331;1;170;109.0;180;100;1;1;1;0;1;1
+84542;19592;2;162;52.0;115;80;1;1;1;0;0;0
+84548;21153;1;148;79.0;140;80;2;2;0;0;1;1
+84549;19677;2;174;80.0;150;80;1;1;0;0;1;1
+84550;19076;1;155;47.0;140;90;3;3;0;0;1;1
+84551;17579;1;162;55.0;120;70;1;1;0;0;1;0
+84552;16084;1;158;102.0;130;90;3;1;1;0;1;0
+84553;20966;1;155;56.0;140;80;1;1;0;0;1;1
+84554;19641;1;169;75.0;120;80;1;1;0;0;0;1
+84556;15349;2;170;70.0;130;90;1;1;0;0;1;1
+84559;17628;2;181;88.0;140;90;1;1;0;0;0;1
+84560;21104;2;180;81.0;120;80;1;1;0;0;1;1
+84561;22561;2;169;84.0;190;1000;3;3;0;0;0;0
+84562;19783;2;173;78.0;120;80;1;1;1;0;1;0
+84563;14398;2;172;80.0;120;80;1;1;0;1;1;0
+84564;21304;1;154;50.0;120;80;1;1;0;0;1;0
+84565;18161;2;171;85.0;130;90;1;1;1;0;1;0
+84566;21718;2;171;78.0;120;80;1;1;0;0;1;0
+84567;18882;1;156;70.0;110;80;1;1;0;0;1;1
+84569;22042;1;156;81.0;200;100;2;2;0;0;1;1
+84570;20480;1;150;56.0;120;80;1;1;0;0;1;1
+84571;21052;2;166;65.0;120;70;1;1;0;0;1;0
+84572;16720;1;153;53.0;100;60;1;1;0;0;1;0
+84573;18006;2;174;85.0;120;80;1;1;0;0;1;0
+84574;16761;1;164;68.0;110;70;1;1;0;0;1;1
+84575;18836;1;148;62.0;120;70;1;1;0;0;1;0
+84576;20373;1;166;87.0;130;80;1;1;0;0;1;1
+84577;17458;1;170;90.0;120;80;3;3;0;0;1;1
+84579;18860;1;165;78.0;110;80;1;1;0;0;0;0
+84580;21776;1;159;59.0;120;80;1;1;0;0;1;0
+84581;15457;2;179;125.0;150;100;2;2;0;0;1;1
+84583;22792;1;154;58.0;120;80;1;1;0;0;1;0
+84586;20195;2;159;94.0;130;80;1;1;0;0;1;1
+84589;17420;1;163;84.0;120;80;1;1;0;0;0;0
+84591;20359;1;159;64.0;100;60;1;1;0;0;1;0
+84592;21993;2;158;70.0;130;70;3;1;1;0;1;0
+84593;18981;2;172;98.0;120;80;1;1;0;0;0;1
+84596;19854;1;164;85.0;130;80;2;1;0;0;0;1
+84598;23476;2;167;85.0;120;80;1;1;1;0;1;0
+84599;14468;1;158;54.0;110;70;1;1;0;0;0;0
+84600;22418;2;172;78.0;130;90;1;1;0;0;1;1
+84601;23325;1;164;62.0;140;90;1;1;0;0;1;1
+84603;20357;1;166;62.0;120;80;1;1;0;0;1;1
+84604;19018;2;176;100.0;210;1140;1;1;0;0;1;1
+84606;18231;1;170;104.0;100;70;1;2;0;1;1;0
+84608;16751;1;163;83.0;150;90;1;1;0;0;1;1
+84609;14368;1;157;57.0;110;70;1;1;0;0;1;0
+84610;18166;1;147;63.0;120;80;1;1;0;0;1;1
+84611;21309;2;171;78.0;120;80;1;1;1;0;1;0
+84612;23339;1;162;114.0;170;90;2;1;0;0;1;1
+84613;15972;2;175;93.0;120;80;2;1;1;0;0;0
+84614;16170;1;170;68.0;120;70;1;1;0;0;1;0
+84615;18788;1;157;81.0;180;110;1;1;0;0;0;1
+84616;19674;2;171;69.0;120;80;1;1;0;0;1;1
+84617;21353;2;166;73.0;150;90;1;1;0;0;0;1
+84619;19689;1;165;65.0;120;80;1;1;0;0;0;0
+84620;15409;1;161;91.0;120;80;1;1;0;0;1;0
+84621;15285;1;189;63.0;120;80;1;1;0;0;0;1
+84622;18999;2;164;83.0;140;100;3;1;0;0;1;1
+84624;16057;2;170;73.0;120;70;1;1;0;0;1;0
+84628;16232;1;159;68.0;110;70;1;1;0;0;1;0
+84630;15153;1;153;51.0;150;100;2;1;0;0;1;1
+84631;19845;1;169;84.0;130;80;1;1;0;0;1;0
+84633;23231;1;151;81.0;120;80;1;1;0;0;1;1
+84634;19789;1;153;58.0;120;70;2;1;0;0;1;0
+84635;19537;2;168;79.0;120;80;1;1;0;0;1;0
+84638;16119;2;168;75.0;160;1100;1;1;0;0;1;1
+84639;14450;1;158;78.0;110;70;1;1;0;0;1;0
+84641;21758;2;172;83.0;140;90;1;1;0;0;1;1
+84643;14636;1;158;62.0;110;70;1;1;0;0;1;0
+84644;23294;1;164;66.0;120;80;1;1;0;0;1;1
+84645;21826;1;151;51.0;130;80;1;1;0;0;0;1
+84646;20432;1;156;63.0;90;60;2;2;0;0;1;1
+84648;14840;2;163;69.0;115;65;1;1;0;0;1;0
+84649;20408;2;162;56.0;150;100;2;1;0;0;1;1
+84650;22699;2;168;80.0;80;140;3;3;0;0;1;1
+84652;20372;2;171;85.0;120;80;1;1;0;1;1;0
+84653;19747;2;169;70.0;160;80;1;1;0;0;1;1
+84655;20995;1;155;78.0;120;80;1;1;0;0;1;0
+84656;17485;1;155;53.0;110;70;1;1;0;0;0;1
+84658;21216;1;162;70.0;120;90;1;1;0;0;1;0
+84659;20508;1;154;96.0;120;70;1;1;1;0;0;0
+84660;18873;1;165;65.0;120;80;1;1;0;0;1;0
+84661;21855;1;165;70.0;120;80;1;1;0;0;1;0
+84662;18320;1;163;69.0;110;90;1;2;0;0;0;1
+84663;23546;2;180;89.0;120;80;1;1;0;0;1;0
+84664;19276;1;178;68.0;140;90;1;1;0;0;1;1
+84667;21916;2;171;83.0;160;100;1;2;0;0;1;1
+84668;18076;1;162;80.0;120;80;2;1;0;0;1;0
+84669;19616;2;160;83.0;120;80;3;2;1;1;0;1
+84672;22027;1;159;62.0;120;80;1;3;0;0;1;0
+84673;16852;2;167;65.0;120;70;1;1;0;0;1;0
+84674;15156;2;175;90.0;120;80;2;2;0;0;1;0
+84675;20974;1;154;57.0;130;90;2;1;0;0;0;0
+84676;21151;1;158;83.0;130;80;2;1;0;0;1;0
+84677;22549;1;149;49.0;160;90;3;3;0;0;1;0
+84678;16611;1;173;69.0;120;80;1;1;0;0;1;0
+84679;23463;2;173;75.0;140;80;1;1;0;0;1;1
+84680;20561;1;166;78.0;120;80;1;1;0;0;0;0
+84682;21997;2;175;106.0;130;90;1;1;0;0;0;1
+84683;20384;2;168;79.0;120;80;1;1;1;0;1;1
+84685;19635;1;174;86.0;120;60;1;1;0;0;1;0
+84687;15189;1;158;55.0;110;70;1;1;0;0;1;0
+84688;18859;1;160;59.0;120;80;3;1;0;0;1;1
+84690;16131;2;170;70.0;120;70;1;1;0;0;0;0
+84692;22021;1;159;57.0;120;80;1;1;0;0;1;1
+84693;20458;1;156;55.0;110;70;1;1;0;0;1;0
+84695;21944;2;170;90.0;110;80;2;2;0;0;0;1
+84696;20405;2;166;66.0;90;70;1;1;0;0;1;1
+84697;23275;1;164;86.0;140;80;1;1;0;0;1;1
+84699;16081;2;171;90.0;130;70;1;1;1;0;1;0
+84701;19786;2;172;70.0;120;79;1;1;1;1;1;0
+84702;17004;2;180;75.0;120;80;1;1;0;0;1;0
+84703;15998;2;167;73.0;140;90;3;3;0;0;1;1
+84704;19735;2;165;83.0;130;80;1;1;0;0;1;0
+84705;17444;2;168;63.0;110;70;1;1;0;0;1;0
+84706;16810;1;157;76.0;110;80;1;1;0;0;1;0
+84709;15259;1;154;57.0;110;80;1;1;0;0;1;0
+84713;16611;2;178;82.0;170;100;1;1;0;0;1;1
+84714;20319;1;162;80.0;160;100;3;3;0;0;1;1
+84715;19013;1;156;116.0;160;100;1;2;0;0;0;1
+84716;16752;2;167;65.0;130;70;1;1;1;0;1;0
+84717;22837;1;164;56.0;130;80;1;1;0;0;1;1
+84719;20967;2;175;75.0;120;80;1;1;0;0;1;1
+84720;20949;1;168;65.0;140;90;2;1;0;0;1;1
+84721;18929;1;170;68.0;120;80;1;1;0;0;1;0
+84722;20211;1;157;94.0;160;90;1;1;0;0;1;1
+84724;18924;1;174;64.0;100;60;1;1;0;0;0;0
+84725;21906;1;152;50.0;110;80;1;1;0;0;1;0
+84726;21933;1;172;93.0;120;80;1;1;0;0;1;0
+84727;16033;2;174;68.0;130;80;3;3;0;0;1;1
+84731;18310;1;156;67.0;140;80;1;1;0;0;1;1
+84733;20957;1;152;56.0;120;80;1;1;0;0;1;0
+84734;19428;1;158;69.0;100;60;1;1;0;0;1;0
+84736;14746;1;160;55.0;120;80;1;1;0;0;1;0
+84737;21678;1;166;90.0;140;90;1;1;0;0;0;1
+84739;23276;1;160;64.0;140;90;1;1;0;0;1;1
+84740;23110;1;159;81.0;140;90;3;3;0;1;1;1
+84741;18264;1;170;110.0;110;70;2;3;0;0;1;1
+84742;21178;1;161;76.0;140;90;3;3;0;0;1;1
+84743;16673;2;179;87.0;120;80;1;1;0;0;1;1
+84744;19862;2;172;76.0;120;80;1;1;0;0;1;0
+84745;21876;2;176;100.0;200;100;1;1;0;0;1;1
+84746;18571;2;173;70.0;130;90;2;3;0;1;1;0
+84747;20474;2;172;102.0;110;80;1;1;0;0;1;1
+84749;18182;2;170;60.0;120;80;1;1;0;0;0;0
+84750;18309;1;165;64.0;120;80;1;1;0;0;0;0
+84751;18334;2;167;94.0;120;80;1;1;0;0;1;0
+84752;21095;1;150;74.0;120;80;1;1;0;0;1;1
+84755;21200;1;161;71.0;140;90;1;1;0;0;1;0
+84756;20445;2;175;96.0;180;100;1;3;0;0;1;0
+84757;23395;2;184;90.0;120;80;3;1;1;0;1;1
+84758;22533;1;150;79.0;120;80;1;1;0;0;1;0
+84759;21140;1;163;68.0;110;80;1;1;0;0;1;0
+84762;19099;2;178;80.0;120;80;1;1;0;0;1;0
+84763;20351;2;167;87.0;120;80;1;1;0;0;1;1
+84764;19123;1;163;87.0;140;90;1;1;0;0;1;1
+84766;16755;2;156;56.0;120;80;1;1;0;0;0;0
+84767;17535;1;168;65.0;120;80;1;1;0;0;1;0
+84768;19145;1;165;74.0;110;70;1;1;0;0;1;0
+84770;21234;1;170;70.0;130;90;3;3;0;0;1;1
+84771;18085;1;167;84.0;110;70;1;1;0;1;0;1
+84773;16911;1;163;51.0;100;80;1;1;0;0;1;0
+84774;19143;2;169;68.0;110;70;1;1;0;0;1;0
+84776;20221;2;192;92.0;120;80;1;1;0;0;0;1
+84777;21035;2;173;90.0;120;80;3;1;1;0;1;1
+84778;21918;2;165;70.0;110;80;1;1;0;0;0;1
+84779;15002;1;163;61.0;120;70;1;1;0;0;0;0
+84780;21310;2;170;105.0;120;80;1;1;1;0;1;0
+84781;20639;2;172;69.0;110;80;1;1;1;0;1;0
+84782;15279;1;168;70.0;120;80;1;1;0;0;1;0
+84784;20610;1;160;110.0;170;100;1;2;0;0;0;1
+84786;15455;1;163;57.0;110;70;1;1;0;0;0;1
+84787;17491;1;162;106.0;150;90;1;1;0;0;0;1
+84788;22854;1;159;85.0;120;80;1;1;0;0;1;1
+84789;18211;1;154;81.0;110;60;1;1;0;0;1;0
+84790;17507;2;167;78.0;120;80;1;1;0;0;1;0
+84793;15464;2;172;70.0;120;90;1;3;1;0;1;1
+84794;23500;2;179;82.0;170;100;1;1;0;0;1;1
+84795;15444;1;166;66.0;120;80;2;2;0;0;1;0
+84796;21147;1;165;60.0;140;90;1;1;0;0;0;1
+84797;18923;2;160;80.0;130;90;1;1;1;0;1;1
+84798;17543;1;174;69.0;110;70;1;1;0;0;1;0
+84800;18418;1;157;71.0;130;80;3;3;0;0;0;0
+84802;18436;1;155;91.0;120;80;1;1;0;0;1;0
+84804;23325;1;165;56.0;120;79;1;1;0;0;1;1
+84806;17420;1;149;85.0;100;70;1;1;0;0;1;0
+84807;18986;1;166;68.0;120;80;1;1;0;0;1;0
+84808;19669;1;157;71.0;105;70;3;2;0;0;1;1
+84809;18099;2;189;128.0;130;80;1;1;0;0;1;1
+84810;22633;1;149;63.0;120;80;1;1;0;0;1;1
+84811;16111;2;170;78.0;120;80;1;1;0;0;1;0
+84812;18360;1;165;65.0;120;80;1;1;0;0;1;0
+84814;18804;2;170;79.0;120;80;2;2;0;0;1;0
+84815;19609;1;160;62.0;120;80;1;1;0;0;1;1
+84816;15819;2;160;72.0;110;70;1;1;0;0;1;0
+84817;21850;1;156;61.0;100;70;1;1;0;0;1;0
+84818;21682;1;172;100.0;120;80;1;2;0;0;1;1
+84819;23242;2;167;83.0;120;80;1;1;0;0;0;1
+84821;18235;1;161;68.4;110;60;2;1;0;0;1;0
+84822;23421;1;155;57.0;140;90;3;1;0;0;1;1
+84824;20491;2;164;104.0;150;1100;1;1;0;0;1;1
+84825;16086;1;160;48.0;90;70;1;1;0;0;1;0
+84826;20501;2;160;51.0;140;90;1;1;0;0;1;1
+84828;15126;2;180;85.0;160;90;1;2;0;0;1;1
+84830;20989;2;172;72.0;140;80;3;1;0;0;1;1
+84832;17399;2;173;104.0;120;80;1;2;0;0;0;1
+84834;19767;2;168;75.0;120;80;1;1;0;0;1;0
+84836;14569;2;175;103.0;140;90;1;1;0;0;0;1
+84838;16805;2;172;72.0;130;80;1;1;0;0;0;0
+84839;18949;1;157;66.0;100;70;1;1;0;0;1;1
+84840;19712;2;173;82.1;110;80;1;1;0;0;1;0
+84841;17711;2;170;76.0;110;70;1;1;0;0;0;0
+84842;22497;2;163;76.0;140;90;1;1;0;0;1;0
+84843;17354;2;170;68.0;120;80;1;1;0;0;1;0
+84844;19554;1;151;67.0;130;70;3;3;0;0;1;1
+84846;14718;1;160;63.0;110;70;1;1;0;0;0;1
+84847;21215;1;152;98.0;150;90;2;1;0;0;1;1
+84848;21905;1;162;70.0;120;80;1;1;0;0;1;1
+84849;21678;2;170;82.0;130;90;1;1;0;0;1;0
+84851;23386;2;162;84.0;160;90;1;1;0;0;1;0
+84852;19540;1;164;83.0;120;80;1;1;0;0;1;0
+84853;20192;1;158;77.0;100;70;1;1;0;0;1;0
+84854;15406;1;163;61.0;140;90;1;1;0;0;1;1
+84857;17632;1;152;80.0;140;90;2;1;0;0;1;1
+84860;23353;1;158;89.0;176;1211;3;2;0;1;1;1
+84863;17976;2;176;90.0;120;80;1;1;0;0;1;0
+84864;20561;1;175;70.0;140;90;3;3;0;0;1;1
+84865;18932;2;164;65.0;120;80;1;1;1;1;1;0
+84866;20393;1;142;63.0;130;90;1;1;0;0;1;1
+84869;21153;1;144;67.0;100;70;1;1;0;0;1;1
+84871;19744;2;184;103.0;140;80;2;2;1;0;1;0
+84872;21854;1;150;82.0;120;80;3;1;0;0;1;1
+84873;15138;1;167;64.0;110;80;2;1;0;0;0;1
+84874;16000;1;162;79.0;110;80;1;1;0;0;1;0
+84875;19926;1;145;85.0;140;80;2;1;0;0;0;1
+84876;21908;1;167;70.0;130;80;2;1;0;0;1;0
+84878;16286;2;171;68.0;120;80;3;3;0;0;0;0
+84879;18362;1;170;79.0;120;70;1;1;0;0;1;0
+84880;18008;1;161;80.0;130;60;1;1;0;0;1;0
+84881;18377;2;170;67.0;120;80;2;2;0;0;1;0
+84883;19245;2;170;65.0;160;1000;1;1;0;0;0;1
+84884;21833;1;167;75.0;120;80;1;1;0;0;1;0
+84885;21055;2;170;69.0;120;80;1;2;0;0;1;0
+84886;20611;1;167;74.0;150;80;1;1;0;0;0;1
+84887;14582;1;133;70.0;160;90;1;1;0;0;0;0
+84888;21253;1;146;47.0;130;80;1;2;0;0;0;1
+84889;16020;2;166;90.0;160;80;1;1;0;0;1;1
+84891;18844;2;167;61.0;120;80;2;1;0;0;0;0
+84892;23441;2;130;60.0;140;60;1;1;0;0;1;0
+84894;23434;1;159;69.0;153;82;3;2;0;0;1;1
+84895;14578;1;163;51.0;90;60;1;2;0;0;1;0
+84896;16877;2;165;65.0;120;80;1;1;1;1;1;0
+84897;21224;2;150;50.0;120;80;1;1;0;0;1;0
+84898;18841;2;163;104.0;120;80;3;3;0;0;1;1
+84900;15403;2;170;82.0;120;80;1;1;0;0;0;0
+84901;18885;1;167;72.0;120;80;1;1;0;0;1;1
+84902;16826;2;178;81.0;120;80;1;1;0;0;1;0
+84903;16130;1;156;60.0;110;70;1;1;0;0;1;1
+84904;15545;1;155;79.0;140;90;1;1;0;0;1;1
+84907;19100;1;157;60.0;110;70;1;1;0;0;1;0
+84908;22816;2;178;76.0;160;90;1;1;0;0;1;0
+84910;20351;1;168;84.0;130;100;1;1;0;0;1;0
+84911;18198;2;170;110.0;110;80;1;1;0;0;0;0
+84912;16181;1;165;63.0;120;80;3;1;0;0;0;1
+84913;14438;1;177;62.0;130;80;1;1;0;0;0;0
+84914;22770;2;163;97.0;160;90;1;1;0;0;1;1
+84916;22711;1;159;82.0;130;80;2;2;0;0;1;1
+84917;18923;1;165;70.0;110;70;3;3;0;0;1;1
+84919;15896;1;165;59.0;110;70;1;1;0;0;1;0
+84920;21757;1;168;74.0;130;90;1;1;0;0;1;1
+84921;21279;1;156;80.0;140;90;1;1;0;0;1;1
+84922;19059;1;169;56.0;110;80;1;1;0;0;1;0
+84924;15839;1;165;61.0;110;70;1;1;0;0;1;0
+84925;22714;1;165;104.0;140;85;3;3;0;0;1;1
+84926;22015;1;162;80.0;120;80;1;1;0;0;1;0
+84927;19809;1;169;60.0;120;70;1;1;0;0;1;1
+84928;18184;1;167;82.0;120;80;1;1;0;0;1;1
+84931;16767;1;160;57.0;120;80;1;1;0;0;1;0
+84932;20392;1;152;72.0;104;70;2;1;0;1;1;1
+84934;20452;1;162;76.0;120;80;1;1;0;0;1;1
+84935;19077;2;169;76.0;110;70;2;3;0;0;1;1
+84936;20219;1;158;53.0;100;70;1;1;0;0;1;0
+84939;21962;2;176;96.0;140;90;3;3;0;0;1;1
+84941;21205;2;183;97.0;140;90;1;1;0;0;1;1
+84944;18102;1;165;78.0;120;80;1;1;0;0;1;0
+84945;22458;2;174;87.0;120;80;3;3;0;0;1;1
+84946;19859;1;168;58.0;120;70;3;3;0;0;0;0
+84947;19763;2;178;87.0;140;90;3;1;0;0;1;0
+84949;23315;2;169;78.0;130;80;1;1;0;0;1;1
+84950;21119;1;158;60.0;140;90;1;1;0;0;1;0
+84951;20332;1;168;67.0;100;70;3;1;0;0;1;0
+84952;19073;1;165;65.0;150;90;1;1;0;0;1;0
+84953;18874;1;159;92.0;120;80;1;1;0;0;1;0
+84955;18915;1;154;105.0;160;100;3;3;0;0;1;1
+84956;21306;1;160;58.0;130;90;1;1;0;0;0;1
+84957;17638;2;169;71.0;110;70;1;1;0;0;1;0
+84958;21869;1;157;89.0;120;80;3;3;0;0;1;1
+84959;15315;1;156;61.0;110;70;1;1;0;0;1;1
+84960;19481;2;167;89.0;140;90;2;1;1;0;1;1
+84961;19816;2;170;98.0;120;80;1;1;0;0;0;1
+84962;21155;1;164;75.0;160;80;2;1;0;1;0;0
+84963;20992;1;150;65.0;120;80;1;3;0;0;1;0
+84964;20432;1;156;44.0;110;70;2;1;0;0;1;0
+84965;18011;2;176;76.0;110;90;2;1;1;1;1;0
+84966;18058;2;180;102.0;140;80;2;1;0;0;1;1
+84967;18903;1;157;90.0;135;80;1;1;0;0;1;0
+84968;22755;2;172;74.0;120;80;1;1;0;0;1;1
+84969;19064;1;150;58.0;110;70;2;1;0;0;1;1
+84970;22434;2;167;68.0;120;79;1;1;0;0;1;1
+84971;21004;1;158;65.0;120;80;1;1;0;0;0;0
+84972;19912;2;159;66.0;120;80;1;1;0;0;0;1
+84974;15460;1;160;53.0;90;60;1;1;0;0;1;0
+84975;20882;2;168;82.0;150;90;1;1;0;0;1;0
+84976;18189;2;187;83.0;110;70;1;1;0;0;0;0
+84978;22419;2;165;67.0;120;80;2;1;0;0;1;1
+84983;15224;1;166;77.0;110;70;1;1;0;0;1;0
+84984;19722;1;167;89.0;140;90;1;1;0;0;1;1
+84985;21161;1;155;71.0;130;90;1;1;0;1;0;0
+84986;20162;1;164;62.0;130;90;1;1;0;0;1;0
+84987;18121;1;168;79.0;150;90;1;1;0;0;1;1
+84989;19896;1;168;69.0;120;80;1;1;0;0;1;1
+84990;14693;1;167;72.0;170;110;1;2;0;0;0;1
+84991;21665;1;148;84.0;130;80;1;1;0;0;0;1
+84992;22640;1;152;64.0;120;80;1;1;0;0;1;1
+84995;18906;2;162;78.0;150;100;1;1;0;0;1;1
+84996;22632;1;159;56.0;130;90;3;3;0;0;1;1
+84997;22722;1;158;63.0;100;60;1;3;0;0;1;1
+84998;14528;1;164;63.0;100;80;1;1;0;0;1;0
+85003;20129;1;152;66.0;185;100;3;1;0;0;1;0
+85004;18882;2;174;80.0;120;80;1;1;0;0;1;1
+85005;15175;1;178;145.0;160;100;3;3;0;1;1;1
+85006;20413;1;161;70.0;140;80;1;3;0;0;1;0
+85007;20527;2;168;46.0;120;80;1;1;0;0;0;0
+85008;17536;2;176;82.0;130;90;1;1;1;0;1;0
+85009;18788;2;165;76.0;130;80;3;3;0;0;1;1
+85010;18209;2;180;80.0;140;90;1;1;0;0;1;1
+85011;17998;2;163;69.0;120;90;2;1;0;0;0;0
+85012;21816;1;156;70.0;120;80;1;1;0;0;1;0
+85013;19727;1;156;99.0;130;80;1;1;0;0;0;1
+85016;22106;1;155;88.0;130;80;1;1;0;0;1;0
+85017;17991;1;161;66.0;120;80;1;1;0;0;1;1
+85019;14664;2;168;70.0;120;80;1;1;0;0;1;1
+85020;20315;1;166;68.0;120;80;1;1;0;0;1;1
+85021;15934;2;170;90.0;160;90;1;1;0;0;1;1
+85022;16018;2;175;96.0;120;80;1;1;0;0;1;0
+85023;21197;1;168;72.0;120;70;1;1;0;0;0;1
+85026;23316;1;165;85.0;170;80;1;1;0;0;1;1
+85027;20478;2;156;67.0;120;80;1;1;0;0;1;0
+85028;21912;1;165;92.0;150;90;3;3;0;1;1;1
+85029;18780;1;156;92.0;160;90;3;1;0;0;0;0
+85030;20502;1;165;82.0;110;80;3;1;0;0;1;1
+85031;18082;1;155;57.8;110;70;1;1;1;1;1;0
+85032;14834;1;162;80.0;120;80;1;1;1;1;1;0
+85033;14333;2;174;72.0;110;70;1;1;0;0;1;0
+85034;14697;1;150;75.0;120;80;1;1;0;0;1;0
+85035;22829;1;160;68.0;130;100;1;1;0;0;1;1
+85036;21439;1;173;69.0;120;80;1;1;0;0;1;0
+85037;21144;1;175;75.0;120;80;1;1;0;0;1;0
+85039;18821;1;158;93.0;130;69;1;1;0;0;1;0
+85041;19535;1;172;97.0;140;100;1;1;0;0;1;1
+85042;22627;1;151;46.0;120;80;1;1;0;0;1;1
+85043;19046;1;169;72.0;150;90;1;1;1;1;1;1
+85046;18405;1;152;60.0;120;70;2;1;0;0;1;0
+85047;20466;1;160;51.0;130;80;3;1;0;0;1;1
+85048;18469;1;156;76.0;120;80;1;1;0;0;1;0
+85049;19091;2;169;70.0;130;90;1;1;0;0;1;1
+85050;15969;1;164;65.0;120;80;1;1;0;1;1;0
+85051;22035;1;190;60.0;140;80;1;1;0;0;0;0
+85052;20618;2;170;73.0;120;80;1;1;0;0;0;0
+85054;23369;1;154;69.0;150;100;2;1;1;0;1;1
+85055;17467;1;150;72.0;150;90;1;1;0;0;1;1
+85058;18329;1;163;86.0;120;85;2;1;0;0;0;0
+85059;19587;1;158;54.0;160;100;1;1;0;0;1;1
+85060;15371;1;165;65.0;140;90;1;2;0;0;1;1
+85061;17436;2;171;115.0;130;90;2;2;1;1;1;0
+85064;21030;1;160;86.0;120;80;3;1;0;0;1;1
+85066;19529;2;172;64.0;193;90;1;1;0;0;0;1
+85068;21189;1;147;56.0;115;75;1;1;0;0;1;1
+85069;22537;1;167;70.0;110;80;1;1;0;0;1;0
+85071;22812;1;151;75.0;180;80;2;2;0;0;1;0
+85072;23542;1;157;69.0;180;100;3;1;0;0;1;0
+85074;21198;1;160;60.0;120;80;1;1;0;0;1;0
+85075;15789;2;174;132.0;150;100;3;1;0;0;1;1
+85076;14333;2;175;102.0;120;80;1;1;0;0;1;0
+85079;15293;2;168;72.0;120;80;1;1;0;0;1;0
+85081;21062;1;156;110.0;180;100;1;1;0;0;0;1
+85082;19605;2;180;80.0;140;90;1;2;0;0;1;1
+85086;18057;1;150;60.0;120;80;1;1;0;0;0;0
+85087;14608;1;168;70.0;100;70;1;1;0;0;1;0
+85088;21271;1;165;56.0;120;80;1;3;0;0;1;1
+85089;18210;1;157;76.0;160;100;1;1;0;0;1;1
+85090;21711;2;165;86.0;130;80;1;1;0;0;1;1
+85091;20294;1;158;65.0;150;80;3;3;0;0;1;1
+85092;16173;2;168;65.0;125;90;1;1;0;0;1;1
+85094;16017;2;165;56.0;120;80;1;1;0;0;0;0
+85095;23383;1;145;58.0;140;90;3;1;0;0;1;1
+85096;17271;2;165;85.0;140;90;1;1;0;0;1;1
+85099;20643;2;166;75.0;140;90;1;1;0;0;1;1
+85101;20270;2;174;58.0;120;80;1;1;0;0;1;0
+85102;18164;2;175;83.0;120;80;1;1;0;1;1;0
+85103;19078;1;165;52.0;100;70;1;1;0;0;1;0
+85105;21137;2;166;65.0;110;70;1;1;0;0;1;0
+85106;16078;1;160;79.0;100;70;2;1;0;0;1;1
+85107;21814;1;160;63.0;120;80;1;2;0;0;0;0
+85108;19833;1;170;71.0;120;80;1;1;0;0;1;0
+85109;22562;1;158;47.0;110;60;1;1;0;0;1;0
+85111;21339;1;165;60.0;110;60;1;1;0;0;1;0
+85114;18179;1;169;91.0;145;90;1;1;0;0;1;1
+85115;19902;2;173;85.0;120;80;1;1;0;0;1;1
+85119;19090;2;170;89.0;120;80;1;1;0;0;1;0
+85120;22409;1;160;104.0;155;95;1;1;0;0;1;1
+85122;19819;1;140;80.0;140;80;1;1;0;0;1;1
+85123;20549;1;163;80.0;140;90;1;1;0;0;1;0
+85125;19953;1;164;99.0;140;90;1;1;0;0;1;1
+85126;16046;1;163;65.0;110;70;1;1;0;0;1;0
+85127;20306;1;162;58.0;120;80;1;1;0;0;0;1
+85128;17643;1;104;165.0;120;80;1;1;0;0;1;0
+85129;14860;1;156;57.0;120;80;1;1;0;0;0;0
+85130;19822;2;176;97.0;150;90;1;1;0;0;1;1
+85131;21662;1;160;80.0;140;80;1;3;0;1;1;1
+85132;18799;1;159;71.0;120;80;1;1;0;0;1;0
+85135;20355;1;160;76.0;130;90;3;3;0;0;1;0
+85136;19734;1;168;133.0;165;1000;3;3;1;0;0;1
+85140;19808;1;160;85.0;120;80;1;1;0;0;1;0
+85141;17449;2;160;58.0;120;80;1;1;0;0;1;1
+85142;23338;1;170;74.0;120;80;1;1;0;0;1;1
+85143;18211;1;165;70.0;120;80;1;1;0;0;1;0
+85144;22529;1;164;110.0;168;120;2;2;0;0;1;1
+85145;17315;1;162;78.0;160;1100;3;1;0;0;1;1
+85146;23259;1;164;84.0;140;100;2;1;0;0;1;1
+85147;15093;1;165;65.0;120;80;1;1;0;0;0;0
+85149;21182;1;156;56.0;125;70;1;1;0;0;1;1
+85150;20360;1;155;82.0;120;80;2;1;0;0;1;0
+85151;18831;1;158;80.0;170;100;1;1;0;0;1;1
+85152;19900;1;166;60.0;100;70;2;2;0;0;0;0
+85153;18902;1;173;78.0;120;80;2;1;0;0;1;0
+85154;19654;1;162;42.0;120;80;1;1;0;0;0;0
+85155;19767;1;164;89.0;110;70;1;1;0;0;1;0
+85157;22698;1;157;57.0;110;70;1;1;0;0;1;0
+85158;16665;1;160;78.0;140;90;1;1;0;0;1;1
+85159;19593;2;172;70.0;120;80;1;1;1;0;1;0
+85160;18130;1;162;60.0;120;80;2;1;0;0;1;1
+85161;23500;2;165;75.0;110;70;1;1;0;0;0;1
+85165;15220;1;162;56.0;90;60;1;1;0;0;1;0
+85167;21756;1;162;56.0;140;80;1;1;0;0;1;1
+85168;15994;1;158;70.0;120;80;1;1;0;0;1;0
+85169;18313;2;170;93.0;120;80;1;1;0;0;1;1
+85170;20422;1;160;100.0;120;80;1;1;0;0;1;1
+85171;17028;1;156;53.0;120;80;1;1;0;0;1;0
+85172;18919;1;161;64.0;170;100;2;1;0;0;1;1
+85174;20493;1;162;85.0;120;80;1;1;0;0;0;0
+85175;22644;1;162;92.0;130;90;1;1;0;0;1;1
+85177;16213;1;153;63.0;120;80;1;1;0;0;1;0
+85178;15865;1;173;73.0;130;80;1;1;0;0;1;1
+85179;14761;1;174;68.0;110;70;1;1;0;0;0;0
+85181;15998;1;170;70.0;120;80;1;1;0;0;1;1
+85182;14574;1;146;50.0;120;80;1;1;0;0;1;0
+85183;20487;1;162;89.0;130;100;1;1;0;1;1;0
+85184;20303;1;160;89.0;160;100;1;1;0;0;1;1
+85185;16135;2;172;94.0;120;80;1;1;0;0;1;1
+85186;21690;1;152;67.0;150;100;1;1;0;0;1;1
+85187;16889;1;163;82.0;150;1100;1;1;0;0;0;1
+85190;22792;2;165;65.0;120;80;1;1;0;0;1;0
+85191;14611;1;154;73.0;100;70;1;1;0;0;1;0
+85192;16644;1;162;65.0;120;80;1;1;0;0;1;0
+85194;22741;2;174;72.0;120;80;1;2;0;0;1;0
+85195;21313;1;165;82.0;140;90;3;1;0;0;1;1
+85196;19610;2;169;70.0;120;80;1;1;0;0;1;1
+85197;20367;2;170;100.0;160;1000;2;2;0;0;1;1
+85198;18170;1;163;86.0;120;80;2;1;0;0;1;0
+85199;20512;1;153;69.0;110;70;1;1;0;0;1;0
+85200;21190;1;158;90.0;120;80;2;3;0;0;1;0
+85201;21867;1;157;71.0;135;85;3;1;0;0;1;1
+85202;20468;1;168;81.0;130;90;2;1;0;0;0;1
+85203;16701;2;162;92.0;150;90;1;3;0;0;0;1
+85204;14642;2;173;104.0;120;80;1;1;0;0;1;0
+85205;23275;1;161;93.0;140;80;1;1;0;0;1;0
+85206;18015;2;175;68.0;120;80;1;1;1;0;0;0
+85207;22633;1;167;85.0;140;90;3;1;0;0;1;1
+85208;19875;1;160;58.0;120;80;2;1;0;0;1;1
+85210;21795;1;157;71.0;120;70;1;1;0;0;1;0
+85211;21283;1;165;75.0;140;80;2;3;0;0;1;0
+85212;20328;1;163;69.0;120;80;1;1;0;0;1;0
+85213;17402;2;178;80.0;120;80;1;1;0;0;1;0
+85216;21732;1;151;44.0;120;80;1;2;0;0;1;0
+85219;22752;2;184;69.0;110;70;1;1;0;0;1;0
+85220;14480;2;166;68.0;130;90;1;1;0;0;1;0
+85221;21070;1;164;64.0;120;80;1;1;0;0;1;0
+85223;23569;2;160;79.0;120;80;1;1;0;0;0;1
+85225;15333;1;165;70.0;110;70;1;1;0;0;0;0
+85228;20664;2;175;70.0;120;80;1;1;0;0;1;1
+85229;18223;2;179;69.0;120;80;1;1;0;0;1;1
+85231;18490;2;181;78.0;120;70;1;1;0;0;1;0
+85232;18529;1;173;67.0;120;90;1;1;0;0;1;0
+85235;18945;1;159;70.0;150;90;1;1;0;0;1;1
+85236;20658;1;165;75.0;120;80;1;1;0;0;1;0
+85237;16621;1;163;105.0;120;90;1;1;0;0;1;0
+85238;15962;1;153;62.0;100;60;2;2;0;0;1;0
+85240;21420;1;146;60.0;100;69;1;1;0;0;1;0
+85241;17474;1;156;93.0;130;1000;1;1;0;0;1;1
+85242;21859;2;167;72.0;120;80;1;1;0;1;1;1
+85246;20592;1;159;65.0;130;80;1;1;0;0;1;1
+85247;22646;2;167;65.0;160;90;1;1;0;0;1;1
+85249;19153;2;172;83.0;120;80;1;1;0;0;1;0
+85250;20465;2;174;90.0;120;80;2;1;0;0;1;1
+85252;21871;2;161;68.0;110;70;1;1;0;0;1;1
+85253;19014;1;186;90.0;140;90;1;1;0;0;0;1
+85255;21880;2;165;60.0;140;100;1;2;0;0;1;1
+85256;16170;2;176;80.0;110;70;1;1;0;0;1;0
+85257;22567;1;156;69.0;130;80;3;1;0;1;1;0
+85258;21663;2;178;109.0;110;70;2;1;1;1;1;0
+85259;19683;2;165;60.0;150;90;1;1;0;0;0;1
+85260;18958;1;155;99.0;130;80;3;3;0;0;1;1
+85261;18206;1;150;46.0;130;90;2;1;0;0;0;0
+85262;21049;1;170;105.0;160;80;2;2;0;0;1;1
+85263;18986;1;168;65.0;120;80;1;1;0;0;1;0
+85266;17455;2;179;78.0;120;80;1;1;0;0;1;0
+85267;17214;2;165;54.0;140;90;1;1;0;0;1;1
+85271;18279;2;182;94.0;110;70;1;1;0;0;1;0
+85273;15976;1;150;54.0;90;60;1;1;0;0;1;0
+85276;22045;1;165;103.0;120;80;1;1;0;0;1;1
+85278;18419;1;160;79.0;170;80;1;1;0;0;1;0
+85279;19042;2;170;89.0;140;90;1;1;0;0;1;1
+85285;21088;1;164;63.0;110;70;1;1;0;0;0;1
+85287;15865;1;162;65.0;160;100;1;1;0;0;1;1
+85288;19990;1;168;76.0;120;80;1;1;0;0;1;0
+85290;23361;1;170;67.0;140;90;2;1;0;0;1;1
+85291;18445;1;168;72.0;125;75;1;1;0;0;0;0
+85293;22498;1;167;101.0;120;80;1;1;0;0;1;1
+85294;16970;2;110;68.0;110;70;2;1;0;0;1;0
+85295;23377;2;162;65.0;120;80;3;2;0;0;1;1
+85296;17473;1;168;64.0;100;80;1;1;0;1;1;0
+85297;15641;1;165;63.0;120;80;1;1;0;0;1;0
+85300;20367;1;165;85.0;150;100;1;1;0;0;1;1
+85302;17518;2;165;62.0;110;70;1;1;0;0;1;1
+85304;23229;1;153;76.0;130;90;2;2;0;0;1;0
+85305;23657;2;174;70.0;120;80;1;1;0;0;1;1
+85308;21888;1;156;101.0;120;80;3;1;1;0;1;1
+85309;20508;2;163;63.0;140;80;3;3;0;0;1;0
+85310;20198;2;172;68.0;110;70;1;1;1;1;1;0
+85311;16781;1;160;61.0;110;70;1;1;0;0;1;0
+85312;22074;2;169;76.0;120;80;1;1;0;0;1;1
+85313;18486;1;162;63.0;120;80;1;1;0;0;1;0
+85314;21762;1;156;79.0;110;70;1;1;0;0;1;1
+85315;21477;1;163;71.0;120;79;3;3;0;0;0;1
+85316;17251;1;165;64.0;120;80;3;1;0;0;1;1
+85317;18831;1;152;57.0;140;80;3;1;0;0;1;0
+85319;16912;2;175;79.0;120;80;1;1;0;0;1;0
+85320;19222;1;161;84.0;130;80;1;1;0;0;1;0
+85321;20412;2;163;65.0;110;70;1;1;0;0;1;0
+85324;21992;2;175;72.0;120;80;1;1;1;0;1;0
+85325;21217;1;168;68.0;120;70;3;3;0;0;0;0
+85326;16840;1;154;51.0;110;70;1;1;0;0;1;0
+85327;20748;1;151;66.0;120;80;1;1;1;1;0;0
+85329;19576;1;155;68.0;100;60;1;1;0;0;1;0
+85330;18304;2;178;70.0;110;70;1;1;0;0;0;1
+85331;19026;2;159;76.0;120;80;1;1;0;0;1;1
+85332;18140;1;160;69.0;150;90;2;1;0;0;1;1
+85333;21831;2;178;85.0;130;80;1;1;0;0;0;0
+85336;19688;2;182;80.0;120;80;1;1;1;1;1;0
+85337;19438;2;170;85.0;160;110;3;2;1;0;1;1
+85339;16803;1;160;73.0;90;60;1;1;0;0;1;0
+85340;15925;1;154;57.0;110;70;1;1;0;0;0;0
+85341;19259;1;159;71.0;110;70;1;1;0;0;1;0
+85342;21659;1;167;103.0;110;80;2;1;0;0;1;0
+85343;20196;1;158;69.0;120;80;1;1;0;0;1;0
+85344;19077;1;158;65.0;110;70;1;1;0;0;1;0
+85345;22680;2;170;81.0;120;80;2;1;1;0;1;1
+85346;18118;2;170;69.0;140;70;1;1;0;0;1;1
+85347;16246;2;183;79.0;120;70;2;1;0;1;1;1
+85349;20425;2;160;68.0;130;80;1;1;0;0;1;1
+85356;17545;1;172;69.0;120;80;1;1;0;0;1;0
+85357;15130;2;181;126.0;140;90;1;1;1;1;1;1
+85358;19696;2;172;79.0;130;60;1;1;0;0;1;1
+85359;20377;2;174;90.0;150;80;1;1;0;0;1;1
+85360;23673;2;170;68.0;110;80;2;2;0;0;0;1
+85361;18213;2;185;133.0;160;90;2;1;0;0;1;1
+85362;21943;1;165;80.0;160;90;1;1;0;0;1;1
+85363;17533;2;179;90.0;160;90;1;1;1;0;1;1
+85366;19230;1;171;68.0;140;90;2;1;0;0;1;1
+85367;18093;1;153;70.0;120;80;1;1;0;0;1;0
+85368;15488;2;171;71.0;105;70;1;1;0;1;1;0
+85371;23211;1;158;56.0;130;90;1;1;0;0;1;1
+85372;19921;2;180;84.0;150;80;1;2;0;0;1;1
+85373;17282;1;156;72.0;120;80;1;1;0;0;1;0
+85374;20332;2;162;49.0;110;70;3;3;0;0;1;1
+85375;20364;2;169;59.0;120;80;1;1;0;0;1;0
+85376;21948;2;170;68.0;110;70;1;1;0;0;1;0
+85377;17461;1;168;81.0;120;80;1;1;0;0;0;0
+85378;21655;1;165;75.0;140;80;2;1;0;0;1;1
+85380;14386;1;160;72.0;110;60;1;1;0;0;1;0
+85381;19800;1;156;78.0;110;80;1;1;0;0;1;1
+85382;16302;2;170;85.0;120;80;1;1;0;0;1;0
+85383;18165;1;166;78.0;120;80;1;2;0;0;1;0
+85384;20887;1;170;72.0;120;80;2;1;0;0;1;0
+85387;23424;1;155;69.0;150;80;1;1;0;0;1;1
+85389;20425;2;167;70.0;160;100;1;1;1;0;1;1
+85390;18843;2;165;67.0;120;80;1;1;0;0;1;0
+85391;19942;2;168;68.0;110;70;1;1;0;0;1;1
+85393;21041;1;155;66.0;140;80;3;1;0;0;1;1
+85394;16278;1;170;75.0;140;90;2;3;0;0;1;1
+85396;14696;2;180;130.0;170;100;1;1;0;0;1;1
+85397;19542;1;155;77.0;120;90;1;1;0;0;1;1
+85399;22533;2;164;80.0;150;100;3;2;0;0;1;1
+85401;20190;1;162;66.0;120;80;1;1;0;0;1;1
+85403;19215;1;165;65.0;120;70;1;1;0;0;1;0
+85405;19034;1;162;83.0;140;90;3;1;0;0;1;0
+85406;20935;2;174;84.0;120;80;1;1;0;0;1;1
+85408;20612;1;167;65.0;120;80;1;1;0;0;1;1
+85413;20665;2;168;50.0;150;80;1;1;0;0;1;1
+85414;15168;1;167;69.0;120;80;1;1;0;0;1;0
+85415;18243;2;167;72.0;120;80;1;1;0;0;1;0
+85416;15955;1;170;73.0;120;80;1;1;0;0;0;0
+85418;18317;2;160;60.0;110;70;1;1;0;0;1;0
+85419;21689;1;155;67.0;150;1000;3;1;0;0;1;1
+85420;17531;2;165;70.0;120;80;1;1;1;1;1;0
+85422;19640;1;160;74.0;120;80;2;1;0;0;1;1
+85423;19074;2;171;89.0;180;1200;3;1;0;0;1;1
+85424;16782;1;162;60.0;120;80;1;1;0;0;0;0
+85429;18145;1;165;66.0;140;90;1;1;0;0;0;1
+85430;22031;2;163;67.0;140;90;1;1;0;0;1;1
+85432;16639;1;157;76.0;90;60;1;1;0;0;1;0
+85433;22008;1;168;71.0;120;80;1;1;0;0;0;0
+85436;19702;1;158;81.0;120;80;1;1;0;0;0;1
+85437;22440;2;165;85.0;130;80;1;1;0;0;1;1
+85439;19631;2;165;50.0;120;80;1;1;0;0;1;1
+85440;20554;1;150;120.0;150;100;3;3;0;0;1;1
+85441;14655;2;178;80.0;120;80;1;1;0;0;1;0
+85442;21239;1;165;79.0;120;80;1;1;0;0;1;0
+85443;21187;1;160;67.0;190;110;3;1;0;0;1;1
+85444;19776;1;160;87.0;125;80;2;1;0;0;0;0
+85445;22725;2;176;82.0;160;90;3;3;0;0;1;1
+85446;21940;1;166;92.0;140;90;3;1;0;0;1;0
+85448;16722;1;156;100.0;120;80;1;2;0;0;0;0
+85449;18485;1;170;80.0;120;80;1;1;0;0;1;1
+85450;21164;1;145;48.0;120;80;1;3;0;0;1;0
+85452;17407;2;168;63.0;120;80;1;1;0;0;0;0
+85453;14555;1;159;78.0;110;80;1;1;0;0;0;0
+85454;20561;1;170;80.0;110;70;1;1;0;0;1;1
+85455;22701;2;175;82.0;120;80;1;1;1;1;1;1
+85456;15886;1;155;60.0;130;80;1;1;0;0;1;1
+85457;17053;1;165;92.0;120;80;1;3;0;0;1;1
+85458;19711;1;166;70.0;140;90;1;1;0;0;1;1
+85460;20443;1;158;70.0;140;70;3;3;0;0;1;1
+85461;16783;1;165;67.0;120;80;1;1;0;0;1;1
+85463;18998;1;140;77.0;140;90;1;1;0;0;1;1
+85464;18941;1;169;72.0;120;80;3;3;0;0;0;1
+85465;22021;1;165;65.0;120;80;1;1;0;0;1;1
+85466;18716;1;159;85.0;120;80;2;1;0;0;0;1
+85467;18940;2;176;67.0;130;90;1;1;1;1;1;0
+85469;20052;2;163;67.0;120;80;3;3;0;0;1;1
+85470;23285;1;155;60.0;130;80;3;1;0;0;0;1
+85471;17417;1;166;81.0;150;100;2;1;0;0;1;1
+85472;23274;1;154;69.0;130;80;1;1;0;0;1;0
+85474;22413;2;174;80.0;160;80;2;1;0;0;0;1
+85475;18104;1;166;85.0;130;90;1;2;0;0;1;1
+85478;18055;1;159;120.0;130;80;2;1;0;0;0;0
+85479;19908;1;158;82.0;120;80;1;1;0;0;1;0
+85480;19954;1;160;59.0;120;80;1;1;0;0;1;1
+85481;21833;2;174;79.0;160;100;1;2;0;0;1;1
+85482;18874;1;169;50.0;90;60;1;1;0;0;1;1
+85484;20615;2;174;65.0;120;80;1;1;0;0;1;1
+85486;16160;2;169;78.0;120;80;2;1;1;0;1;0
+85488;21880;2;176;80.0;140;90;3;2;1;0;1;0
+85491;19031;2;175;85.0;120;80;1;1;0;0;1;0
+85492;20553;2;178;114.0;100;90;2;1;0;0;1;1
+85493;16144;1;171;69.0;110;70;1;1;0;0;1;0
+85494;20363;2;160;69.0;120;70;1;1;0;1;0;0
+85495;19896;1;163;106.0;160;100;3;3;0;0;1;1
+85496;20221;2;173;58.0;100;70;2;2;1;0;0;0
+85497;16042;1;152;85.0;120;80;1;1;0;0;1;0
+85498;16594;1;158;91.0;140;80;2;1;1;0;1;1
+85500;21822;2;168;110.0;160;100;2;1;0;0;1;1
+85501;18250;1;166;58.0;110;70;1;1;0;0;0;0
+85502;16826;2;172;70.0;120;70;1;1;0;0;1;0
+85506;23408;2;164;75.0;130;80;1;1;0;0;0;1
+85507;22607;1;154;57.0;150;90;1;1;0;0;1;1
+85508;14644;2;160;65.0;140;90;1;1;0;0;1;0
+85509;16165;1;163;62.0;120;70;1;1;0;0;0;0
+85510;20570;1;158;80.0;140;90;3;3;0;0;1;1
+85511;23463;1;163;70.0;125;90;1;3;0;0;1;0
+85512;21064;2;169;73.0;140;90;1;1;1;0;0;1
+85513;23550;2;168;78.0;130;80;3;1;0;0;1;1
+85514;16714;2;180;98.0;150;90;1;1;0;0;0;1
+85515;17424;2;176;84.0;130;80;1;1;0;0;0;1
+85516;20482;1;152;60.0;150;90;1;1;0;0;0;1
+85518;15778;2;174;95.0;130;80;1;1;1;0;1;1
+85520;20963;2;178;75.0;110;70;1;1;0;0;1;0
+85521;16796;1;165;67.0;120;80;1;1;0;0;1;0
+85522;17638;1;164;72.0;150;90;1;1;0;0;1;1
+85523;23379;1;154;93.0;170;100;3;2;0;0;1;1
+85527;21957;1;161;97.0;160;70;1;1;0;0;1;1
+85529;20511;1;162;62.0;120;80;1;1;0;0;1;1
+85530;21988;2;154;54.0;180;1000;3;3;1;1;1;1
+85531;15875;1;159;55.0;90;60;1;1;0;0;1;0
+85532;18193;2;171;88.0;160;90;1;1;0;0;1;1
+85533;19684;1;160;50.0;120;80;1;1;0;0;1;0
+85534;23098;2;175;74.0;140;90;1;3;0;0;1;1
+85535;21061;2;168;90.0;120;80;1;1;0;0;1;0
+85536;16009;2;172;69.0;130;90;1;1;0;0;1;1
+85537;18234;1;160;56.0;100;80;1;1;0;0;1;0
+85538;22042;2;170;84.0;120;80;1;1;0;0;1;1
+85540;16045;1;163;62.0;110;80;1;1;0;0;1;0
+85541;22797;1;156;61.0;120;80;1;1;0;0;1;1
+85542;19661;1;158;74.0;155;93;3;2;0;1;1;1
+85543;22381;1;157;75.0;150;90;1;1;0;0;1;1
+85545;19683;1;167;100.0;140;100;3;1;0;0;1;1
+85546;14634;2;170;103.0;135;90;1;1;0;1;1;1
+85547;20180;1;160;92.0;165;100;3;1;0;0;1;1
+85548;18559;1;160;65.0;120;80;1;1;0;0;1;0
+85551;16689;1;170;76.0;120;80;2;1;0;0;0;1
+85552;18335;1;146;54.0;120;80;1;1;0;0;1;1
+85553;21961;1;164;64.0;112;80;2;1;0;0;0;1
+85555;21302;1;165;98.0;120;80;3;3;0;0;0;1
+85556;21772;1;163;66.0;130;80;3;1;0;0;1;1
+85557;16696;2;163;62.0;200;100;1;1;0;0;0;1
+85558;19701;1;159;64.0;130;70;1;1;0;0;0;0
+85559;21090;1;165;70.0;120;80;1;1;0;0;1;1
+85560;19002;1;165;70.0;120;80;1;1;0;0;0;0
+85562;14701;1;165;63.0;120;80;1;1;0;0;1;0
+85563;23244;1;158;62.0;120;80;3;3;0;0;1;1
+85564;18855;1;159;68.0;120;60;2;2;0;0;1;0
+85565;16136;1;157;63.0;110;70;1;1;0;0;1;0
+85567;17393;2;180;76.0;140;90;1;1;0;0;0;1
+85568;22843;2;165;75.0;140;70;1;1;0;0;0;1
+85569;16679;1;149;55.0;100;70;1;1;0;0;1;0
+85570;18922;2;178;95.0;140;90;2;2;1;0;1;1
+85571;20204;1;164;86.0;120;80;1;1;0;0;1;0
+85572;21037;1;160;60.0;130;80;2;1;0;0;1;1
+85573;20906;1;160;65.0;130;80;1;1;0;0;1;0
+85574;23375;1;156;76.0;110;60;2;2;0;0;1;1
+85575;14582;1;160;82.0;110;80;1;1;0;0;1;0
+85576;19722;1;155;75.0;110;80;2;1;0;0;1;0
+85577;18922;2;185;109.0;180;100;3;2;1;0;1;1
+85580;21423;1;167;75.0;110;70;2;1;0;0;1;0
+85581;16123;2;180;79.0;120;70;1;1;1;0;1;1
+85582;19282;1;167;67.0;120;80;3;3;0;0;0;1
+85583;22831;1;153;82.0;180;1100;2;1;0;0;1;1
+85586;23416;1;164;84.0;150;90;1;1;0;0;1;1
+85587;18919;1;154;61.0;95;60;1;1;0;0;1;0
+85588;17603;2;175;109.0;120;80;3;3;1;0;0;1
+85590;22526;2;168;82.0;140;90;1;1;0;0;1;1
+85591;23294;2;158;55.0;120;80;1;1;0;0;1;1
+85592;17487;2;168;80.0;110;60;2;1;0;0;1;0
+85593;22364;1;159;57.0;180;90;1;1;0;0;1;0
+85595;23344;1;156;55.0;110;70;1;1;0;0;1;0
+85597;19941;1;161;74.0;130;80;1;1;0;0;1;0
+85598;20468;1;170;68.0;120;80;1;1;0;0;1;0
+85599;17279;2;190;122.0;140;80;1;1;0;0;1;1
+85602;14604;1;167;62.0;80;60;1;1;0;0;0;0
+85603;21057;1;163;78.0;145;90;2;1;0;0;1;1
+85605;21227;2;117;70.0;110;60;1;1;0;0;1;1
+85606;18547;1;156;60.0;120;80;1;1;0;0;1;0
+85607;19010;1;157;98.0;140;90;2;3;0;0;1;0
+85608;16110;1;157;62.0;120;80;1;1;0;0;1;0
+85609;21918;1;160;73.0;130;90;1;1;0;0;1;0
+85610;18143;2;160;92.0;120;80;1;2;0;0;0;0
+85611;19155;1;159;63.0;120;80;1;1;0;0;1;1
+85612;22037;1;164;67.0;160;100;2;1;0;0;1;1
+85614;21897;2;158;62.0;180;100;1;1;0;0;0;1
+85615;15927;1;154;55.0;120;80;1;1;0;0;1;0
+85616;23253;2;170;93.0;120;80;1;1;0;0;1;0
+85618;19830;2;170;84.0;160;100;3;1;0;0;1;1
+85620;16054;2;140;56.0;110;70;1;1;0;0;1;0
+85621;21240;1;165;85.0;14;90;2;1;0;0;1;1
+85622;19634;2;166;60.0;100;70;2;1;0;0;1;0
+85624;18027;2;174;78.0;90;60;1;1;0;0;1;1
+85625;16648;2;168;65.0;120;80;1;1;0;0;1;0
+85626;14472;1;140;60.0;110;70;1;1;0;0;1;0
+85629;23267;1;158;74.0;120;80;1;1;0;0;0;0
+85630;20455;1;158;68.0;140;80;2;3;0;0;0;1
+85631;20985;2;167;60.0;140;90;1;2;0;0;0;1
+85632;20505;1;165;60.0;120;80;1;1;0;0;1;0
+85633;22687;1;171;106.0;160;1000;2;2;0;0;1;1
+85635;22769;2;165;79.0;130;80;1;1;0;1;1;1
+85636;15884;1;164;55.0;100;60;1;1;1;0;0;0
+85637;16091;1;155;59.0;120;80;1;1;0;0;1;1
+85638;18275;1;155;74.0;130;80;1;1;0;0;1;1
+85639;20614;2;164;75.0;130;90;1;1;0;0;1;0
+85641;18288;2;170;70.0;110;70;1;1;0;0;1;1
+85644;21776;2;168;73.0;120;80;3;1;0;1;1;1
+85645;16656;2;171;69.0;140;70;1;1;0;0;1;1
+85646;18851;1;158;65.0;120;80;1;1;0;0;1;0
+85647;21106;2;178;78.0;120;80;2;1;0;0;1;1
+85648;15249;1;164;70.0;120;80;1;1;0;0;1;0
+85649;19223;1;170;68.0;120;80;1;1;0;0;1;1
+85650;20490;2;178;77.0;150;80;1;1;0;1;1;1
+85651;22627;1;160;79.0;120;80;2;1;0;0;1;1
+85652;15340;1;156;52.0;140;100;1;1;0;0;1;1
+85653;20947;2;167;75.0;140;90;2;2;0;0;0;1
+85655;22584;2;169;86.0;160;90;1;1;0;0;0;1
+85656;19149;1;165;62.0;110;60;1;1;0;0;1;0
+85658;14453;1;159;67.0;120;80;1;1;0;0;1;0
+85659;15877;1;168;59.0;110;70;1;1;0;0;0;0
+85660;21228;2;167;70.0;130;80;2;2;1;0;1;1
+85661;19911;2;163;82.0;140;90;1;1;1;1;0;1
+85662;15485;1;169;65.0;110;70;1;1;0;0;0;0
+85665;17304;1;153;70.0;140;90;3;1;0;0;1;1
+85666;20421;1;160;76.0;130;90;1;1;0;0;1;1
+85668;15509;2;169;67.8;140;1100;2;1;0;1;1;1
+85669;21817;1;153;81.0;140;100;1;1;0;0;0;0
+85670;19601;1;166;65.0;110;80;1;1;0;0;0;0
+85671;14489;2;168;72.0;110;60;2;1;0;0;1;0
+85672;22673;2;169;70.0;120;89;1;1;0;0;1;0
+85673;14686;2;168;60.0;130;80;1;1;0;0;0;1
+85674;19239;2;167;67.0;120;80;1;1;0;0;1;0
+85676;21832;1;163;88.0;150;90;1;3;0;0;1;1
+85677;21979;1;164;60.0;120;80;1;1;0;0;0;0
+85678;23527;2;165;68.0;120;80;1;1;0;0;1;0
+85680;22759;1;157;96.0;140;90;1;1;0;0;1;1
+85682;19016;1;154;56.0;110;70;3;3;0;0;1;0
+85683;16635;1;160;60.0;120;80;1;1;0;0;1;0
+85684;21780;2;164;74.0;110;70;1;3;0;0;1;0
+85685;20426;2;161;80.0;130;90;2;1;0;0;1;1
+85688;20297;1;170;76.0;140;90;2;1;0;0;1;0
+85690;18286;1;164;72.0;120;80;1;1;0;0;1;0
+85691;21650;1;158;82.0;140;90;2;1;0;0;1;1
+85692;23301;2;164;80.0;150;1000;1;1;0;0;0;1
+85693;20358;1;163;103.0;130;90;1;1;0;0;1;1
+85694;19703;1;150;61.0;130;80;3;3;0;0;1;1
+85695;17285;2;171;77.0;150;100;3;1;1;1;1;1
+85696;19861;1;158;86.0;120;80;1;2;0;0;0;1
+85697;16100;2;176;88.0;110;70;2;1;0;0;1;1
+85698;19687;1;158;90.0;120;80;1;2;0;1;1;0
+85700;21964;2;175;77.0;110;80;1;1;0;0;1;0
+85702;20646;1;178;75.0;120;80;1;1;0;0;0;0
+85703;18252;1;159;91.0;120;80;1;1;0;0;1;1
+85705;17550;2;165;98.0;140;100;1;1;0;0;0;1
+85706;14586;1;166;65.0;110;70;1;1;0;0;1;0
+85707;21732;2;166;84.8;120;80;1;1;0;0;1;0
+85708;16536;2;170;68.0;120;80;3;3;0;0;1;0
+85712;19236;1;166;70.0;120;80;1;1;0;0;1;0
+85713;21224;1;158;92.0;140;90;1;2;0;0;1;1
+85714;19186;1;162;81.0;110;70;1;1;0;0;1;0
+85716;21174;1;160;98.0;160;110;3;3;0;0;1;0
+85718;18287;1;172;77.0;120;80;1;1;0;0;1;0
+85720;20218;2;186;124.0;130;80;3;3;1;0;0;1
+85721;15395;2;174;79.0;120;80;1;1;0;0;1;1
+85722;23377;1;170;70.0;130;80;3;1;0;0;1;1
+85725;19722;1;157;68.0;110;70;1;1;0;0;1;0
+85726;19147;1;167;62.0;120;60;1;1;0;0;1;0
+85727;18179;1;164;99.0;140;90;1;1;0;0;1;1
+85728;14667;1;160;50.0;120;80;1;1;0;0;1;0
+85731;17770;1;165;97.0;100;70;1;1;0;0;1;0
+85732;21997;1;168;65.0;120;80;2;1;0;0;1;0
+85733;16711;1;154;57.0;100;70;1;1;0;0;1;0
+85734;18944;1;164;64.0;110;70;3;1;0;0;1;0
+85735;16163;1;168;80.0;120;70;3;1;0;0;0;1
+85737;19437;2;182;74.0;150;90;1;1;1;0;1;0
+85739;20586;1;162;64.0;120;80;1;1;1;1;1;0
+85741;15845;1;162;66.0;90;60;1;1;0;0;1;1
+85742;14427;1;164;75.0;140;70;1;1;0;0;1;1
+85743;18953;1;162;85.0;120;80;3;3;0;0;1;0
+85745;19490;1;158;100.0;160;100;1;1;0;0;1;0
+85746;21986;1;166;83.0;150;90;1;1;0;0;1;1
+85748;15952;2;170;69.0;120;80;1;1;1;0;1;0
+85749;22526;2;169;100.0;160;70;1;2;0;0;1;0
+85750;17344;1;170;80.0;110;80;1;1;0;0;0;1
+85752;15171;1;160;47.0;110;80;1;3;1;0;1;0
+85753;21720;1;170;89.0;120;80;2;2;0;0;1;1
+85754;20494;1;160;75.0;120;80;1;3;0;0;1;0
+85755;15310;2;166;79.0;120;80;1;1;0;0;1;0
+85756;18118;1;158;61.0;110;70;1;1;0;0;1;1
+85761;22684;1;160;75.0;120;80;1;1;0;0;1;1
+85762;21042;1;151;73.0;150;90;1;1;0;0;1;1
+85763;20257;1;165;98.0;130;80;1;1;0;0;0;1
+85764;21275;2;168;79.0;140;90;2;1;0;0;1;1
+85766;19145;1;168;94.0;110;70;1;1;0;0;1;1
+85767;16728;2;172;86.0;110;70;2;1;0;0;1;0
+85770;22694;1;153;79.0;130;80;1;1;0;0;0;0
+85771;21704;2;170;67.0;110;80;1;1;0;1;1;0
+85775;18765;1;166;66.0;120;80;1;2;0;0;1;0
+85777;22590;2;172;90.0;120;80;2;3;0;0;1;0
+85779;21901;1;153;51.0;150;90;1;1;0;0;1;0
+85781;20479;1;149;59.0;120;80;2;1;0;0;1;0
+85782;16578;2;185;72.0;120;80;1;1;1;0;1;1
+85784;16788;1;163;63.0;120;80;3;1;0;0;0;1
+85786;22880;1;164;72.0;110;80;1;1;0;0;0;1
+85788;23297;2;166;102.0;150;100;1;1;0;0;0;1
+85789;21059;1;165;65.0;120;80;1;1;0;0;1;0
+85790;20468;2;174;77.0;160;80;1;1;0;0;1;0
+85791;21273;1;165;65.0;110;70;1;1;0;0;1;0
+85792;19738;2;159;45.0;120;80;2;1;0;0;1;0
+85794;18187;2;168;64.0;141;90;1;1;0;0;1;1
+85795;21965;1;145;42.0;120;80;1;1;0;0;1;0
+85796;19533;2;168;71.0;120;80;1;1;0;0;1;0
+85798;18215;1;164;60.0;120;80;1;1;0;0;1;1
+85800;21848;1;172;67.0;110;80;1;1;0;0;1;0
+85801;23288;1;163;60.0;120;80;1;1;0;0;1;1
+85806;23548;2;162;63.0;120;80;1;1;0;0;1;1
+85807;21705;1;170;84.0;120;80;1;1;0;0;1;1
+85808;22474;2;170;86.0;130;80;2;1;0;0;1;1
+85809;16770;1;170;64.0;110;70;1;1;0;0;1;0
+85810;23369;1;161;78.0;190;100;3;1;0;0;1;1
+85812;18290;1;168;93.0;150;100;1;1;0;0;1;1
+85813;20357;2;162;53.0;110;70;1;1;1;0;1;0
+85814;16746;1;174;78.0;110;70;1;1;0;0;1;1
+85816;22571;1;167;74.0;15;-70;1;1;0;0;1;1
+85817;20367;1;180;110.0;120;80;1;1;0;0;1;0
+85818;15424;1;149;53.0;100;60;1;1;0;0;1;0
+85819;18852;1;175;85.0;120;80;1;1;0;0;1;1
+85822;22644;1;164;76.0;140;100;1;1;0;0;0;1
+85824;19906;2;180;80.0;120;80;1;1;0;0;0;0
+85825;21904;1;164;79.0;115;80;2;1;0;0;1;1
+85826;19213;1;167;71.0;120;80;1;1;0;0;1;1
+85827;18000;1;169;102.0;120;80;2;1;0;0;1;0
+85828;19783;2;166;53.0;100;70;1;1;1;0;0;0
+85832;18806;1;148;56.0;120;80;1;1;0;0;1;0
+85833;22577;1;153;63.0;130;70;1;3;0;0;1;1
+85835;19626;2;159;55.0;170;1000;2;1;0;0;1;1
+85836;21907;1;151;63.0;110;70;1;1;0;0;1;0
+85837;22070;1;158;56.0;160;100;3;1;0;0;1;1
+85838;17454;1;160;75.0;120;80;1;1;0;0;1;0
+85839;23295;1;168;63.0;130;80;1;1;0;0;1;1
+85843;19909;1;162;93.0;150;90;1;1;0;0;1;1
+85846;21963;1;160;80.0;120;80;1;1;0;0;0;1
+85848;18371;1;160;78.0;140;90;1;1;0;0;1;1
+85849;21322;2;170;80.0;120;70;1;1;0;0;1;0
+85850;23383;2;169;69.0;110;80;1;3;0;0;1;0
+85852;20403;1;156;79.0;110;70;3;1;0;0;1;1
+85853;21786;1;170;80.0;120;80;1;1;0;0;1;0
+85858;19221;1;160;73.0;120;80;1;1;0;0;1;0
+85859;15247;1;157;83.0;120;85;1;1;0;0;1;0
+85860;18453;2;176;73.0;153;96;2;1;0;0;1;0
+85861;18007;1;155;80.0;100;70;1;3;1;0;0;1
+85862;18866;1;158;73.0;140;60;1;1;0;0;1;1
+85863;15972;1;163;80.0;140;80;2;1;0;0;1;1
+85864;21057;1;157;70.0;130;90;3;3;0;0;0;1
+85865;17405;1;168;72.0;120;80;2;1;0;0;0;0
+85866;19793;1;166;68.0;125;85;1;1;0;0;1;0
+85867;17848;2;168;70.0;160;100;3;3;0;0;1;1
+85869;19683;2;174;74.0;150;100;1;1;0;0;1;1
+85870;18276;1;162;117.0;170;120;1;1;0;1;1;1
+85872;20426;1;154;105.0;150;100;3;1;0;0;1;0
+85875;17444;1;156;73.0;120;80;3;1;0;0;1;1
+85876;17732;2;178;65.0;110;70;1;1;0;0;1;0
+85877;16065;2;170;50.0;160;100;1;1;1;0;1;1
+85878;21020;1;155;70.0;120;90;2;1;0;1;1;1
+85879;18942;1;160;76.0;140;70;1;1;0;0;0;0
+85880;18315;1;173;72.0;120;70;1;1;0;0;1;0
+85881;18321;1;159;57.0;120;80;1;1;0;0;1;0
+85882;21835;1;163;67.0;140;90;3;1;0;0;1;1
+85883;16671;2;172;95.0;110;70;2;1;1;1;0;0
+85885;20433;1;168;65.0;110;70;1;1;0;0;1;0
+85886;20489;1;158;80.0;110;70;1;1;0;0;1;0
+85888;19738;1;153;67.0;130;80;1;1;0;0;1;1
+85889;23243;2;169;65.0;120;80;1;1;0;0;0;1
+85890;20566;1;165;56.0;120;80;1;1;1;0;0;0
+85891;20710;1;168;74.0;120;80;1;1;0;0;1;0
+85892;21727;1;151;60.0;130;90;1;1;0;0;1;1
+85893;17616;2;164;70.0;150;100;2;2;0;0;1;1
+85894;20238;1;161;145.0;150;100;1;1;0;0;1;0
+85895;23320;2;168;75.0;120;80;1;1;1;1;1;1
+85897;16598;2;167;75.0;140;80;1;1;0;0;1;1
+85898;18292;1;174;71.0;150;80;1;1;0;0;1;1
+85899;16858;2;165;63.0;120;80;1;1;1;0;1;0
+85900;16138;1;152;58.0;100;60;1;1;0;0;1;0
+85901;21800;1;170;75.0;120;80;1;1;0;0;1;1
+85902;14575;1;164;65.0;90;60;1;1;0;1;1;0
+85904;20569;1;173;100.0;120;80;3;1;0;0;1;1
+85905;22553;1;168;60.0;140;90;1;1;0;0;1;1
+85906;23195;2;174;93.0;120;79;2;1;0;0;1;0
+85908;21063;1;174;65.0;120;80;1;1;0;0;1;1
+85909;15989;2;159;59.0;120;80;1;1;0;0;0;0
+85910;20348;1;164;119.0;180;1000;1;1;0;0;1;1
+85911;19804;1;158;52.0;130;80;1;1;0;0;1;0
+85912;19879;1;158;64.0;110;70;1;1;0;0;1;0
+85914;18021;2;175;76.0;140;90;2;1;0;0;1;1
+85916;21976;2;173;76.0;110;80;1;1;0;0;0;0
+85919;20467;1;160;60.0;120;80;1;1;0;0;1;1
+85920;20284;1;155;84.0;120;80;1;1;0;0;1;0
+85921;16726;2;171;72.0;130;100;3;3;0;0;1;1
+85922;21842;2;176;86.0;140;90;3;1;1;1;1;1
+85924;22742;2;158;98.0;130;80;1;1;0;0;1;0
+85925;22093;1;154;77.0;120;80;1;1;0;0;1;1
+85926;16873;1;164;68.0;130;90;1;1;0;0;1;1
+85927;21190;2;168;52.0;120;80;1;1;0;0;1;1
+85928;17677;1;168;74.0;120;80;1;1;0;0;1;0
+85929;17511;2;162;70.0;129;79;1;1;0;0;1;1
+85931;21855;1;162;21.0;120;80;2;1;0;0;1;1
+85932;19702;1;164;78.0;120;80;1;1;0;0;0;0
+85937;18466;1;159;75.0;120;70;2;1;0;0;0;1
+85938;19627;2;188;90.0;120;80;1;1;0;0;1;0
+85939;20984;1;157;68.0;110;70;1;1;0;0;1;0
+85941;23202;1;163;85.0;120;80;1;1;0;0;1;1
+85942;19633;2;173;89.0;130;80;1;1;0;1;1;0
+85944;16603;1;164;60.0;100;70;1;1;0;0;1;0
+85946;18265;1;157;76.0;160;100;1;1;0;0;1;1
+85947;19505;1;169;72.0;120;80;1;1;0;0;1;0
+85948;18195;1;155;55.0;110;90;2;1;0;0;1;0
+85949;19677;1;153;72.0;110;70;1;1;0;0;1;1
+85950;23347;2;186;94.0;130;90;2;1;0;0;1;0
+85951;19472;2;177;90.0;140;90;2;1;0;0;1;1
+85952;18188;1;160;62.0;130;80;1;1;0;0;1;1
+85954;19101;1;170;75.0;120;70;2;2;0;0;1;0
+85955;21741;2;168;92.0;130;90;1;1;1;0;1;1
+85956;22798;2;171;70.0;110;70;1;1;0;0;1;0
+85957;18249;1;164;60.0;120;80;1;1;0;0;1;0
+85958;20528;1;150;79.0;100;80;1;1;0;0;0;0
+85959;23399;1;151;87.0;140;100;3;1;0;0;0;1
+85960;16705;1;160;59.0;110;70;1;1;0;0;1;1
+85961;19772;1;169;71.0;140;80;1;1;0;0;0;1
+85963;16699;2;171;79.0;170;100;2;1;1;0;0;1
+85964;19175;1;169;83.0;120;80;1;1;0;0;1;1
+85967;22075;1;168;80.0;120;80;1;1;0;0;1;0
+85968;20603;1;158;48.0;100;70;1;2;0;0;1;0
+85969;21272;1;162;71.0;110;80;1;1;0;0;1;1
+85970;22015;1;158;115.0;130;85;1;3;0;0;1;0
+85971;20486;1;170;72.0;110;70;1;1;0;0;0;0
+85972;15122;2;175;96.0;100;70;1;1;1;0;0;0
+85973;18146;1;162;87.0;160;90;1;1;0;0;1;0
+85974;18743;1;157;77.0;120;80;1;1;0;0;1;0
+85975;18940;2;167;73.0;120;80;1;2;0;0;1;0
+85976;16097;2;175;75.0;120;80;1;1;0;0;0;0
+85977;17541;1;164;65.0;130;80;3;3;0;0;0;0
+85978;21330;1;170;85.0;120;80;1;1;0;0;0;1
+85982;18097;1;169;80.0;120;80;1;1;0;0;0;0
+85983;21649;1;168;117.0;130;80;1;3;0;0;1;1
+85984;23549;2;155;58.0;120;80;1;1;0;0;1;0
+85985;18086;2;164;56.0;110;70;1;1;0;0;1;0
+85986;18343;2;172;91.0;140;80;1;1;0;0;1;1
+85988;15410;2;165;77.0;120;70;1;1;1;0;1;0
+85989;22519;1;160;59.0;160;100;2;1;0;0;0;1
+85990;17309;2;172;76.0;120;80;1;1;0;0;0;0
+85991;19776;2;184;110.0;140;90;3;3;0;0;1;0
+85992;18881;1;162;50.0;110;70;1;1;0;0;1;0
+85993;23337;1;153;85.0;140;90;2;3;0;0;0;1
+85994;21236;1;157;98.0;150;1000;2;2;0;0;0;1
+85995;15519;1;160;41.0;120;80;1;1;0;0;1;0
+85996;21156;1;159;88.0;130;90;1;1;0;0;1;1
+85998;21862;1;159;76.0;120;80;3;1;0;0;0;1
+85999;21900;1;163;73.0;120;80;1;1;0;0;1;0
+86002;21760;1;155;114.0;160;100;3;3;0;0;1;1
+86003;15266;1;153;47.0;110;70;1;1;0;0;1;0
+86005;20309;1;153;83.0;141;90;1;2;0;0;1;1
+86006;20324;1;158;57.0;100;60;2;1;0;0;1;1
+86008;18945;1;164;66.0;120;80;1;1;0;0;1;1
+86011;17967;2;168;110.0;150;1000;2;2;1;1;0;1
+86012;21961;1;168;105.0;140;80;2;2;0;0;1;1
+86013;17650;2;170;78.0;120;90;1;1;1;1;1;0
+86016;21050;1;160;73.0;110;70;1;3;0;0;1;1
+86017;19499;1;150;72.0;120;80;1;1;0;0;1;0
+86020;17039;1;161;89.0;140;90;3;3;0;0;1;1
+86021;14561;1;170;99.0;120;80;1;2;1;0;1;1
+86022;20730;1;152;64.0;120;80;1;1;0;0;1;0
+86023;19107;1;165;58.0;120;80;1;1;0;0;0;0
+86024;17453;1;162;80.0;120;80;1;1;0;0;1;0
+86025;22602;1;160;62.0;110;90;1;1;0;0;1;1
+86028;21923;1;184;76.0;110;80;1;1;0;0;1;0
+86031;22669;2;165;60.0;140;90;2;1;0;0;0;1
+86034;21724;2;168;70.0;110;70;1;1;1;0;1;0
+86035;18796;1;165;128.0;140;80;1;1;0;0;1;1
+86036;18964;2;170;102.0;120;90;2;1;0;0;0;1
+86037;14339;2;180;85.0;90;70;1;1;0;0;0;0
+86039;18315;1;162;83.0;130;90;3;1;0;0;1;0
+86040;23538;1;167;75.0;120;80;1;1;0;0;0;0
+86042;15248;2;176;91.0;100;70;2;1;0;0;1;1
+86045;18275;2;178;75.0;120;70;2;1;0;0;0;1
+86046;16007;1;165;72.0;120;80;1;1;0;0;1;1
+86048;22015;2;167;63.0;140;90;1;3;1;0;1;1
+86050;19772;1;160;67.0;120;80;1;1;0;0;1;1
+86051;18855;1;166;102.0;150;90;1;3;0;0;1;0
+86052;15209;1;163;69.0;140;90;1;1;0;0;1;0
+86053;18104;1;158;52.0;120;80;1;1;0;0;1;0
+86054;19095;2;174;70.0;120;80;1;1;0;0;1;0
+86056;16918;2;183;85.0;180;110;1;1;1;0;1;1
+86057;19660;2;168;70.0;15;80;1;1;0;0;1;1
+86060;20597;2;168;68.0;130;80;1;1;0;0;1;1
+86064;20320;2;168;91.0;160;80;1;1;0;0;0;1
+86065;20288;1;168;130.0;110;70;1;1;0;0;1;0
+86066;15141;2;163;64.0;120;80;1;1;1;0;1;0
+86067;20347;1;166;99.0;120;80;3;1;0;0;1;0
+86068;22200;2;170;90.0;160;80;1;1;0;0;1;1
+86069;20306;1;160;62.0;130;90;1;1;0;0;0;0
+86070;17533;2;181;98.0;130;90;3;1;1;1;1;1
+86071;18869;2;165;64.0;110;80;1;1;0;0;1;0
+86072;17411;2;167;68.0;120;80;1;1;0;0;1;0
+86073;20430;1;153;56.0;120;80;1;1;0;0;1;0
+86074;14395;2;172;74.0;110;70;1;1;0;0;1;0
+86075;21262;1;160;75.0;130;79;1;3;0;0;0;0
+86078;18985;2;170;62.0;150;100;1;1;0;0;1;1
+86079;16224;1;163;74.0;115;75;2;1;0;0;1;0
+86080;15412;1;158;70.0;120;80;1;1;0;0;1;0
+86082;18215;2;160;65.0;130;90;1;1;1;1;1;1
+86083;22750;2;160;87.0;110;70;1;1;0;0;1;1
+86084;23603;1;148;73.0;120;80;1;1;0;0;0;0
+86086;21207;1;165;60.0;120;80;1;1;0;0;0;1
+86089;20393;1;168;62.0;140;90;1;1;0;0;1;1
+86090;16821;2;176;70.0;120;79;1;1;0;0;1;1
+86091;19061;2;165;72.0;200;100;2;2;0;0;1;1
+86093;19137;2;170;81.0;130;70;1;2;1;1;1;0
+86094;18982;1;153;47.0;106;70;1;1;0;0;0;0
+86095;23349;1;164;77.0;130;80;2;1;0;0;1;1
+86098;17656;1;164;67.0;120;80;1;1;0;0;1;0
+86100;21841;2;178;83.0;130;70;3;1;0;0;1;0
+86101;19220;2;177;89.0;130;70;1;1;0;0;1;0
+86102;18969;2;164;72.0;120;80;1;1;0;0;1;0
+86103;21892;1;165;95.0;140;80;2;2;0;0;1;1
+86104;14324;1;157;84.0;140;90;1;1;0;0;0;1
+86105;21001;1;154;59.0;120;80;1;1;0;0;0;0
+86107;16607;1;165;68.0;110;80;1;1;0;0;1;0
+86108;19005;1;166;59.0;90;60;3;3;0;0;1;0
+86111;17008;1;171;60.0;120;80;1;1;0;0;1;1
+86113;19886;1;158;78.0;130;90;1;1;0;0;1;1
+86114;19721;2;167;75.0;130;70;1;2;0;0;1;0
+86115;20662;2;166;74.0;120;80;1;2;0;0;1;1
+86117;14691;1;158;75.0;120;80;1;1;0;0;1;0
+86118;19609;2;164;64.0;180;110;1;1;0;0;0;1
+86120;19154;1;167;86.0;160;90;2;1;0;0;0;0
+86121;20579;2;156;57.0;120;70;1;1;0;1;1;0
+86123;23358;2;162;65.0;140;80;1;1;0;0;1;1
+86124;18171;2;168;68.0;150;80;1;1;0;0;1;1
+86126;14541;1;165;65.0;150;90;1;1;0;0;1;1
+86127;15185;2;172;68.0;110;70;1;1;0;0;1;0
+86128;23350;1;160;77.0;150;100;2;1;0;0;1;1
+86129;23331;2;168;87.0;140;80;1;1;0;0;1;1
+86130;17704;1;165;66.0;120;80;1;1;0;0;1;0
+86131;17668;2;171;85.0;130;80;3;1;1;0;1;1
+86133;22035;1;165;62.0;110;70;1;1;0;0;1;0
+86135;18204;1;162;60.0;140;70;3;1;0;0;1;1
+86136;20385;2;172;98.0;110;60;1;1;0;0;1;0
+86137;18199;1;165;69.0;110;70;1;1;0;0;1;0
+86138;20256;1;150;50.0;120;80;1;1;0;0;1;0
+86139;17700;1;160;78.0;110;70;1;1;0;0;1;1
+86141;16821;2;169;76.0;120;80;1;1;0;0;1;1
+86142;16636;1;155;90.0;180;1100;1;1;0;0;1;0
+86143;20986;1;165;68.0;120;80;1;1;0;0;1;0
+86145;21834;1;154;93.0;112;64;1;1;0;0;1;1
+86147;20536;1;156;65.0;120;80;1;1;0;0;1;1
+86149;16696;1;160;59.0;120;80;1;1;0;0;1;0
+86150;23319;2;173;89.0;200;110;1;2;0;0;1;1
+86151;18256;2;174;90.0;135;80;2;1;0;1;1;0
+86153;19578;1;154;67.0;130;90;2;1;0;0;1;1
+86155;18372;2;169;72.0;120;80;1;1;1;0;0;0
+86156;14460;1;163;93.0;120;80;1;1;1;1;1;0
+86157;18946;1;168;70.0;120;80;1;1;0;0;0;0
+86158;18792;2;174;68.0;120;80;1;1;0;0;1;1
+86159;16036;1;168;76.0;110;80;1;1;0;0;0;0
+86163;22468;1;153;77.0;130;80;3;1;0;0;1;1
+86165;22524;1;160;90.0;110;80;1;1;0;0;1;0
+86166;21080;1;156;50.0;150;90;2;1;0;0;0;1
+86168;15453;1;165;78.0;120;80;1;1;0;0;1;0
+86169;21820;1;165;65.0;120;80;1;1;0;0;1;1
+86170;23284;1;167;72.0;120;80;1;1;0;0;1;1
+86171;21083;1;165;65.0;120;80;3;3;0;0;1;1
+86174;23370;1;173;110.0;170;80;3;1;0;0;1;1
+86175;22505;1;156;82.0;120;80;1;1;0;0;1;1
+86176;15289;2;181;67.0;120;60;2;1;1;1;1;0
+86178;22472;2;167;80.0;110;90;1;1;0;0;1;1
+86179;19171;1;152;66.0;130;80;1;2;0;0;1;1
+86180;18841;1;162;79.0;110;70;1;1;0;0;1;0
+86182;19692;1;165;65.0;150;1000;2;1;0;0;1;1
+86183;18122;2;156;66.0;140;100;1;1;0;0;1;0
+86185;19723;2;176;82.0;140;90;2;1;0;0;1;1
+86186;19244;1;168;63.0;120;80;3;3;0;0;1;1
+86189;17368;2;169;75.0;160;100;1;1;0;0;1;1
+86190;17595;1;177;85.0;130;80;1;1;0;0;0;1
+86191;20628;1;162;74.0;120;80;1;1;0;0;1;0
+86192;14506;2;172;69.0;127;84;1;1;0;0;1;0
+86193;19171;1;170;70.0;120;80;1;1;0;0;1;0
+86194;16898;1;162;71.0;120;80;1;1;0;0;1;1
+86195;16054;1;152;78.0;120;70;1;1;0;0;0;0
+86196;17319;1;158;64.0;120;80;1;1;0;0;1;0
+86197;16706;1;179;89.0;120;80;1;1;0;0;1;0
+86199;19020;1;164;71.0;110;70;1;1;1;0;1;0
+86200;16746;1;152;68.0;110;80;1;1;0;0;0;1
+86201;18238;1;151;44.0;110;80;2;1;0;0;1;0
+86202;18829;1;161;78.0;120;80;1;1;0;0;0;0
+86203;20716;1;120;70.0;120;60;2;1;0;0;0;1
+86204;15311;2;179;86.0;120;60;1;1;0;0;0;0
+86205;18200;1;170;68.0;140;100;3;1;0;0;1;0
+86206;18762;1;165;73.0;120;80;1;1;0;0;1;0
+86207;23573;1;170;80.0;170;110;2;1;0;0;1;1
+86208;19719;1;161;62.0;150;1000;1;1;0;0;1;1
+86209;23288;2;170;75.0;150;80;1;1;0;0;1;1
+86212;14793;1;159;60.0;100;60;1;1;0;0;1;0
+86214;17322;2;183;122.0;150;90;1;1;0;0;1;1
+86215;15105;1;167;55.0;100;70;1;1;0;0;1;0
+86217;19567;1;160;78.0;110;60;2;2;0;0;1;0
+86218;21905;1;158;125.0;130;90;1;1;0;0;1;1
+86219;22585;1;170;69.0;140;90;3;1;0;0;1;1
+86220;18388;1;168;69.0;120;80;1;1;0;0;1;0
+86221;19043;2;165;98.0;120;80;1;1;1;1;1;1
+86222;20338;2;161;66.0;120;80;1;1;1;0;1;1
+86223;21094;1;154;62.0;120;80;1;1;0;0;0;0
+86224;18908;1;160;135.0;160;100;1;1;0;0;1;1
+86225;15029;2;175;68.0;120;80;1;1;1;1;1;0
+86227;17678;1;156;97.0;140;90;2;2;0;0;0;0
+86229;21783;1;165;61.0;120;80;1;1;0;0;1;1
+86230;22464;1;156;74.0;118;86;1;1;0;0;1;0
+86231;18812;1;158;123.0;150;1000;2;2;0;0;1;1
+86232;17802;2;171;78.0;140;90;1;1;0;0;1;1
+86233;21108;2;182;102.0;130;80;3;1;0;0;1;1
+86234;18208;2;191;115.0;160;110;1;1;0;0;1;1
+86236;19798;1;165;87.0;140;90;2;1;0;0;1;1
+86237;21048;1;167;75.0;100;70;1;1;0;0;1;0
+86238;14758;1;165;65.0;120;80;1;1;0;0;1;0
+86239;14720;2;172;80.0;120;80;1;2;0;0;0;0
+86242;19879;1;154;42.0;120;80;1;1;0;0;1;0
+86243;20500;1;157;75.0;130;90;3;3;0;0;1;1
+86246;18724;1;162;77.0;120;80;2;1;0;0;1;0
+86247;16118;2;162;61.0;120;80;1;1;0;0;1;0
+86249;15136;2;174;83.0;110;80;1;1;1;0;1;1
+86250;19046;1;164;79.0;160;100;2;1;0;0;1;1
+86252;22337;2;172;83.0;120;80;3;3;0;0;0;1
+86253;20579;1;154;54.0;120;80;1;1;0;0;1;1
+86256;18011;1;166;59.0;130;80;2;1;0;1;1;0
+86257;19566;2;174;86.0;120;90;1;1;0;0;1;0
+86258;18092;1;165;74.0;120;80;1;1;0;0;1;0
+86260;14606;1;175;75.0;120;80;1;1;0;0;1;0
+86261;17434;2;183;105.0;150;1000;2;2;0;0;1;1
+86263;14833;1;156;55.0;110;70;1;1;0;0;0;0
+86264;16595;2;173;79.0;160;90;2;1;1;1;1;1
+86266;21225;2;174;72.0;120;80;1;1;0;0;1;1
+86268;17483;2;168;62.0;130;80;1;1;0;0;1;1
+86269;21859;1;150;77.0;160;100;2;2;1;0;0;1
+86270;21808;2;164;90.0;120;80;1;1;0;0;0;1
+86272;22105;2;177;95.0;160;100;1;2;0;0;1;0
+86273;23559;1;160;67.0;120;80;2;2;0;0;1;1
+86277;18855;1;162;90.0;140;90;2;2;1;0;1;1
+86278;19689;1;158;62.0;120;80;1;1;0;0;1;1
+86279;14707;2;163;63.0;120;80;1;1;0;0;1;0
+86280;19783;1;159;70.0;120;70;1;3;0;0;1;0
+86281;19772;1;156;66.0;160;110;1;1;0;0;1;0
+86282;19148;1;164;75.0;140;80;1;1;0;0;1;0
+86283;16697;1;171;80.0;130;80;2;2;0;0;1;0
+86284;21896;1;165;65.0;120;80;1;1;0;0;1;1
+86285;18181;1;164;65.0;120;80;1;1;0;0;1;0
+86289;21121;1;160;42.0;120;80;1;1;0;0;0;0
+86290;18792;1;157;74.0;150;90;1;1;0;0;0;1
+86291;21188;1;162;88.0;120;80;3;1;0;0;1;1
+86292;21858;1;150;75.0;120;80;1;1;0;0;0;1
+86293;18466;1;169;70.0;120;80;1;1;0;0;1;0
+86294;21247;1;160;79.0;115;80;1;1;0;0;1;1
+86295;20135;1;168;73.0;110;80;1;1;0;0;1;1
+86300;19813;1;169;77.0;120;80;1;1;0;0;1;0
+86301;18265;2;175;85.0;110;70;1;1;0;0;1;0
+86303;21077;1;149;85.0;130;90;1;1;0;0;1;0
+86304;21768;1;167;75.0;120;80;1;1;0;0;1;0
+86306;19945;2;170;80.0;120;80;1;1;0;0;1;0
+86307;23346;1;160;60.0;140;90;3;1;0;0;0;1
+86308;15443;2;176;73.0;120;90;1;1;1;0;1;0
+86310;17687;1;177;78.0;120;80;2;1;0;0;0;0
+86311;20953;2;174;80.0;140;80;1;1;0;0;1;0
+86312;20516;1;164;66.0;120;80;1;1;0;0;0;0
+86314;20337;1;162;103.0;160;1000;2;2;0;0;1;1
+86320;21866;1;160;75.0;130;90;1;1;0;0;1;0
+86322;21330;1;160;68.0;120;80;1;1;0;0;1;0
+86323;18278;1;167;68.0;120;80;1;1;0;0;1;0
+86324;16173;2;172;71.0;140;80;1;1;0;0;1;1
+86326;18938;1;157;63.0;120;80;3;1;0;0;1;1
+86327;22672;1;168;78.0;120;60;1;1;0;0;1;1
+86328;20437;1;164;65.0;130;90;3;1;0;0;1;1
+86329;22555;2;170;65.0;120;80;1;1;0;0;1;0
+86330;18268;1;160;67.0;140;80;2;1;0;0;1;1
+86331;14612;1;165;69.0;120;80;1;1;1;1;0;1
+86332;23128;1;150;93.0;130;80;3;1;0;0;1;0
+86334;14326;2;178;78.0;120;80;1;1;0;0;1;0
+86335;21856;1;156;74.0;130;90;1;1;0;0;1;0
+86337;18459;2;163;69.0;130;80;1;1;0;0;0;1
+86338;14900;1;167;76.0;120;80;1;1;0;0;1;0
+86340;20418;2;178;94.0;140;90;1;1;0;0;0;1
+86341;16169;1;165;65.0;140;100;1;1;0;0;1;1
+86342;16013;1;165;77.0;100;80;1;1;0;0;1;0
+86343;15807;1;160;75.0;120;80;2;1;0;0;1;0
+86345;16805;1;157;67.0;120;80;1;1;0;0;1;0
+86346;14450;1;165;63.0;120;80;1;1;0;0;1;0
+86347;20193;2;174;88.0;110;80;1;1;0;0;1;1
+86348;20401;2;178;61.0;120;70;1;1;0;0;1;0
+86349;20622;1;161;68.0;150;90;1;1;0;0;1;1
+86350;21925;1;161;76.0;150;100;1;1;0;0;1;1
+86351;19045;2;170;85.0;140;100;1;1;0;0;1;0
+86355;19738;2;172;100.0;130;90;2;1;1;0;0;1
+86356;14470;1;165;63.0;110;70;1;1;0;0;1;0
+86357;16090;2;174;115.0;140;90;2;2;1;1;0;0
+86360;16340;1;168;82.0;160;90;2;1;0;0;1;1
+86361;22429;2;168;72.0;130;90;3;1;0;0;1;1
+86363;14422;1;167;65.0;120;80;1;2;0;0;1;0
+86364;20635;1;159;85.0;120;80;1;3;0;0;1;0
+86366;18054;1;169;75.0;120;80;1;1;0;0;1;0
+86367;14563;2;173;77.0;120;80;1;1;0;0;1;0
+86368;19915;2;170;70.0;120;80;1;1;1;0;0;0
+86369;21913;2;160;88.0;120;80;1;1;1;1;1;1
+86370;19135;2;170;86.0;120;80;1;1;0;0;0;0
+86371;19023;2;168;56.0;110;70;1;1;0;0;1;1
+86372;20725;2;170;77.0;130;80;1;1;0;0;1;0
+86374;20946;1;156;70.0;140;80;1;1;0;0;1;1
+86375;23293;2;160;90.0;120;100;2;1;1;0;1;0
+86378;15200;1;165;69.0;120;90;1;1;0;0;1;0
+86379;18225;1;155;54.0;90;60;1;2;0;0;0;0
+86381;19158;1;164;76.0;170;110;1;1;0;0;1;1
+86382;18276;1;158;75.0;110;69;2;1;0;0;1;0
+86383;19471;1;163;71.0;120;80;2;1;0;0;1;0
+86384;16758;1;168;72.0;120;80;1;1;0;0;0;1
+86385;16577;1;160;66.0;110;70;1;1;0;0;1;1
+86386;19575;1;158;70.0;120;80;1;1;0;0;0;1
+86388;20661;2;163;82.0;162;1100;1;1;0;0;1;1
+86390;16938;1;162;64.0;160;60;1;1;0;0;1;0
+86392;20270;1;160;100.0;120;80;3;2;0;0;0;1
+86393;17686;1;160;65.0;180;125;2;1;0;0;1;1
+86394;15966;1;160;95.0;120;90;3;3;0;0;1;1
+86397;22605;2;165;65.0;130;80;1;1;0;0;0;0
+86398;22569;1;152;75.0;140;90;2;1;0;0;1;1
+86400;17450;1;167;72.0;130;90;3;3;0;0;0;0
+86401;17522;2;168;59.0;120;80;1;1;1;0;1;1
+86403;20462;1;163;70.0;120;80;1;1;0;0;0;0
+86404;21369;2;160;61.0;150;90;1;1;0;0;1;1
+86405;18410;1;167;79.0;145;90;1;2;0;0;1;1
+86406;19787;1;161;103.0;150;90;1;1;0;0;1;1
+86407;21694;1;170;71.0;120;70;1;1;0;0;1;0
+86410;22495;1;174;75.0;140;90;1;1;0;1;1;1
+86411;21715;1;149;61.0;120;80;2;1;0;0;1;0
+86413;14623;2;160;58.0;90;60;1;1;0;0;1;0
+86414;21279;1;167;64.0;110;70;1;1;0;0;0;1
+86415;21084;2;164;65.0;140;90;1;1;0;0;1;1
+86416;20435;1;155;95.0;140;90;1;1;0;0;1;1
+86421;23432;1;160;73.0;120;80;1;3;0;0;1;1
+86422;15278;1;166;91.0;140;100;2;1;0;0;1;1
+86423;18954;1;170;60.0;120;80;1;1;0;0;0;1
+86424;21376;2;182;83.0;120;80;1;1;0;0;1;0
+86425;21002;1;169;69.0;120;80;1;1;0;0;1;1
+86428;22439;1;158;58.0;130;79;1;1;0;0;1;0
+86429;23281;1;153;70.0;140;90;1;1;0;0;1;0
+86430;16184;2;174;79.0;140;90;3;1;0;0;1;1
+86431;14512;2;174;93.0;140;90;1;1;1;0;1;1
+86437;15434;2;170;65.0;120;80;1;1;0;0;1;0
+86438;23532;2;169;70.0;120;80;1;1;1;1;1;1
+86439;21985;1;178;74.0;120;80;1;1;0;0;1;1
+86440;23281;2;165;75.0;120;80;3;1;0;0;1;1
+86441;22061;1;163;99.0;140;90;2;1;0;0;1;1
+86442;16117;1;154;45.0;90;60;1;1;0;0;1;0
+86444;19153;1;163;60.0;120;80;1;1;0;0;1;0
+86445;16799;1;165;83.0;160;100;2;1;0;0;0;1
+86446;17624;1;158;84.0;130;80;1;1;0;0;1;1
+86447;17690;1;165;78.0;140;80;2;1;0;0;0;1
+86448;19435;1;160;70.0;120;80;1;1;0;0;1;0
+86449;18182;2;165;67.0;120;80;1;1;0;0;1;1
+86451;14411;2;170;98.0;150;90;1;1;1;0;1;1
+86453;16089;1;157;71.0;110;70;1;1;0;0;1;0
+86454;18941;1;169;72.0;110;70;1;1;0;0;1;0
+86455;18894;2;175;85.0;120;80;1;1;0;0;1;0
+86456;15294;2;164;58.0;120;80;1;1;1;0;1;0
+86458;18741;2;175;67.0;140;90;1;2;1;1;1;1
+86459;15959;1;154;52.0;110;70;1;1;0;0;1;0
+86461;18162;1;150;62.0;120;80;1;1;0;0;1;0
+86462;22742;1;160;59.0;140;90;1;1;0;0;1;1
+86463;23509;2;173;101.0;140;80;1;1;0;0;1;1
+86464;18000;2;178;74.0;170;1000;1;1;0;0;1;1
+86465;20886;2;176;111.0;160;80;1;1;0;0;1;1
+86467;18137;1;167;90.0;110;70;1;1;0;0;1;1
+86468;19544;1;172;80.0;125;85;1;1;0;0;1;1
+86469;17450;1;170;80.0;120;80;3;2;0;0;1;0
+86470;17410;1;160;90.0;160;95;1;2;0;0;0;1
+86471;19840;1;149;69.0;120;90;1;1;0;0;1;0
+86472;17633;2;176;70.0;120;80;1;1;0;0;0;0
+86473;15218;2;168;87.0;150;100;1;1;0;0;0;1
+86474;19713;1;156;88.0;130;90;1;1;0;0;1;1
+86475;17445;2;158;68.0;140;90;1;1;1;0;1;1
+86476;21195;1;155;70.0;140;80;2;1;0;0;0;0
+86477;15958;1;160;66.0;120;80;1;1;0;0;1;0
+86478;21837;1;163;76.0;140;90;2;1;0;0;1;1
+86480;19446;2;170;82.0;100;70;1;1;0;0;0;0
+86481;20403;2;165;66.0;120;80;1;1;1;0;1;0
+86482;18153;2;180;82.0;130;90;1;1;0;0;1;1
+86483;21876;1;150;75.0;160;100;1;1;0;0;1;1
+86484;15526;1;163;63.0;120;80;2;2;0;0;1;1
+86485;19645;1;160;73.0;90;130;1;1;0;0;0;0
+86486;14710;1;168;64.0;110;70;1;1;0;0;0;0
+86487;17631;1;156;80.0;120;80;1;1;0;0;1;0
+86488;20529;1;152;115.0;15;90;1;2;0;0;1;1
+86489;17269;1;155;83.0;120;80;1;1;0;0;0;1
+86491;15977;1;159;82.0;140;90;3;1;0;0;1;0
+86492;20724;1;164;80.0;110;80;1;1;0;0;1;0
+86494;17564;1;159;54.0;90;60;1;1;0;0;1;0
+86495;20565;1;167;81.0;150;90;1;1;0;0;1;0
+86496;17050;2;169;72.0;120;80;1;1;0;0;1;0
+86497;21888;2;168;70.0;120;80;3;1;0;0;1;0
+86498;22187;1;156;65.0;120;80;1;1;0;0;1;1
+86500;19056;2;170;59.0;130;80;1;1;0;0;1;0
+86501;21842;2;175;70.0;150;80;1;1;0;0;0;1
+86503;14799;2;172;71.0;170;80;1;1;0;0;1;1
+86504;20261;2;165;65.0;140;90;1;1;0;0;0;1
+86505;20010;2;174;97.0;130;90;1;1;0;0;0;1
+86506;18975;2;180;180.0;140;100;3;1;0;0;1;1
+86507;21479;1;156;79.0;140;90;1;1;0;0;1;1
+86510;21256;2;175;83.0;110;70;1;2;0;0;1;0
+86511;22388;2;158;69.0;120;80;1;1;0;0;0;0
+86513;21001;2;165;85.0;160;90;3;3;0;0;1;1
+86514;21750;2;164;68.5;110;70;3;3;0;0;1;0
+86515;23605;1;157;68.0;120;70;1;1;0;0;1;1
+86516;15790;2;180;86.0;100;70;1;1;1;0;0;0
+86517;21804;2;162;81.0;130;80;1;1;0;0;1;1
+86518;18168;1;163;68.0;120;80;1;1;0;0;1;0
+86519;19908;1;158;81.0;130;80;1;1;0;0;1;0
+86520;18943;1;158;62.0;120;80;1;3;0;0;1;1
+86521;23386;2;163;67.0;120;80;1;1;0;0;1;1
+86522;19083;1;148;89.0;120;80;1;1;0;0;1;0
+86523;19257;1;181;86.0;120;90;1;1;0;0;0;0
+86524;21212;2;161;76.0;130;80;3;3;0;0;1;1
+86526;21074;2;162;93.0;150;100;1;1;0;0;0;1
+86529;15963;1;168;58.0;100;70;1;1;0;0;1;0
+86530;18956;2;166;69.0;130;1000;1;1;0;0;1;1
+86531;19614;1;160;69.0;120;80;1;1;0;0;1;1
+86532;18420;1;160;67.0;110;70;1;1;0;0;1;0
+86535;20360;2;166;65.0;140;90;1;1;0;0;1;1
+86537;14771;1;160;83.0;110;80;2;1;0;0;1;0
+86538;19752;1;152;55.0;160;90;1;1;0;0;0;1
+86539;20307;1;155;50.0;120;80;3;3;0;0;1;1
+86540;20385;1;159;80.0;130;80;2;1;0;0;0;1
+86541;19580;1;169;62.0;140;90;1;1;0;0;1;1
+86542;21036;1;156;93.0;130;80;3;1;0;0;1;1
+86543;19730;1;174;76.0;120;80;1;1;0;0;1;0
+86545;21240;1;163;68.0;120;80;1;1;0;0;0;1
+86546;23155;2;165;58.0;120;80;1;1;1;0;1;0
+86548;14405;2;158;64.0;120;80;1;1;0;0;1;1
+86549;18786;1;159;70.0;120;80;1;1;0;0;1;0
+86551;16624;2;168;100.0;130;90;1;1;0;0;1;0
+86552;18942;2;167;63.0;140;90;1;1;1;0;1;1
+86553;21830;2;168;71.0;130;80;1;1;1;0;1;1
+86555;15500;1;158;55.0;100;60;2;2;0;0;0;0
+86556;22348;1;162;67.0;110;80;1;1;0;1;1;0
+86559;21796;1;156;78.0;100;70;1;1;0;0;1;0
+86560;19486;2;166;65.0;110;70;1;1;1;1;1;0
+86562;19156;1;158;54.0;100;80;1;1;0;0;1;0
+86563;23578;2;168;70.0;120;80;1;1;0;0;1;0
+86564;23235;1;166;95.0;110;70;1;1;0;0;1;0
+86567;15365;1;167;61.0;120;80;1;1;0;0;1;1
+86568;18748;1;171;73.0;135;80;3;3;0;0;1;1
+86570;22662;2;168;90.0;140;90;3;3;0;1;1;1
+86571;17603;2;170;80.0;140;100;1;1;0;0;1;1
+86573;21166;1;168;71.0;130;80;1;1;0;0;1;0
+86574;17352;1;168;78.0;110;80;1;1;0;0;1;0
+86575;18939;2;178;62.0;110;70;1;1;0;0;0;0
+86576;18190;1;163;59.0;141;90;1;1;0;0;1;1
+86577;22453;1;168;99.0;140;80;3;1;0;0;1;1
+86578;19739;2;175;80.0;120;80;1;1;0;0;1;0
+86579;17626;2;165;72.0;130;80;1;1;1;0;0;0
+86580;21276;2;174;68.0;180;100;1;1;0;0;1;0
+86581;19103;1;154;58.0;100;70;1;1;0;0;1;0
+86582;14745;1;167;72.0;90;70;1;1;0;0;1;0
+86583;16866;1;158;50.0;150;100;1;1;0;0;1;0
+86584;14401;1;161;54.0;100;70;1;1;0;0;1;0
+86585;19261;1;155;62.0;130;90;1;1;0;0;1;1
+86587;18394;2;171;65.0;120;80;1;1;0;0;1;0
+86588;18136;1;163;94.0;130;80;1;2;1;1;1;0
+86589;17656;2;173;96.0;140;110;1;1;0;0;1;1
+86590;20240;2;170;83.0;140;90;1;1;1;0;1;1
+86591;15116;1;169;68.0;110;70;1;2;0;0;1;0
+86592;18848;1;153;82.0;120;80;1;1;0;0;1;1
+86593;23272;1;153;59.0;130;80;2;1;0;0;1;1
+86595;18835;1;155;58.0;120;90;1;1;0;0;0;1
+86597;19655;1;163;65.0;140;70;2;1;0;0;1;1
+86598;15375;1;170;93.0;150;90;2;3;0;0;0;1
+86602;19854;1;165;69.0;140;90;3;1;0;0;1;1
+86603;16686;1;165;60.0;120;80;1;1;0;0;1;0
+86605;20538;1;163;69.0;140;90;1;1;0;0;1;1
+86607;21740;1;159;62.0;110;70;1;2;0;0;1;1
+86608;22722;2;170;93.0;150;90;1;1;0;0;1;1
+86609;23319;1;165;62.0;140;80;1;1;0;0;0;1
+86610;22719;1;167;66.0;130;80;2;1;0;0;0;0
+86612;21189;1;163;112.0;120;80;3;2;0;1;1;1
+86613;23357;1;170;65.0;130;70;3;1;0;0;0;1
+86614;21822;1;168;70.0;125;80;1;1;0;1;1;0
+86615;18517;1;166;68.0;120;70;2;1;0;0;1;0
+86617;18252;1;165;63.0;120;80;1;1;0;0;1;0
+86618;22475;2;188;93.0;110;70;2;1;0;0;1;0
+86620;15316;1;159;62.0;100;60;1;1;0;0;1;1
+86621;15125;1;164;63.0;110;70;1;1;0;0;1;0
+86622;23194;2;170;64.0;130;80;2;1;0;0;0;1
+86623;20450;1;160;85.0;150;80;3;3;0;0;1;1
+86625;19757;1;150;65.0;130;70;2;1;0;0;1;0
+86626;18687;1;164;97.0;120;80;2;1;0;0;0;0
+86628;15168;2;175;98.0;110;80;1;1;0;0;1;0
+86630;19119;1;157;79.0;130;90;1;1;0;0;1;0
+86631;21885;1;152;52.0;140;100;3;1;1;1;1;1
+86632;18766;1;166;93.0;140;90;1;1;0;0;1;1
+86633;18277;1;174;92.0;120;80;1;1;0;0;1;1
+86634;22043;2;168;78.0;120;80;1;1;0;0;1;0
+86636;16172;2;167;71.0;110;80;1;1;1;1;1;0
+86637;21674;1;167;95.0;140;90;1;1;0;0;1;1
+86638;21590;1;161;95.0;150;100;2;2;0;0;1;1
+86639;22588;2;174;75.0;140;90;1;1;0;0;1;1
+86640;17377;1;110;70.0;110;70;1;1;0;0;1;1
+86641;17814;1;160;64.0;120;80;1;1;0;0;0;0
+86642;14610;2;170;86.0;120;80;1;1;0;0;1;0
+86644;15945;1;160;60.0;120;80;1;1;0;0;1;1
+86645;14636;1;161;60.0;120;70;1;1;0;0;1;0
+86646;21745;2;169;58.0;170;100;2;2;0;0;1;1
+86647;14412;1;160;84.0;103;73;1;1;0;1;1;0
+86649;18785;1;150;62.0;120;80;2;1;0;0;1;1
+86650;18875;1;171;29.0;110;70;2;1;0;0;1;1
+86651;16681;2;164;55.0;120;80;1;1;1;1;1;0
+86652;15374;1;170;79.0;160;90;1;1;0;0;1;1
+86654;20409;1;163;69.0;120;59;1;1;0;0;0;1
+86655;16610;1;157;83.0;120;80;1;1;0;0;0;0
+86656;20567;1;160;68.0;120;80;1;1;0;0;1;1
+86657;21773;1;164;85.0;120;80;1;1;0;0;1;0
+86658;16298;2;165;72.0;120;80;1;1;0;0;0;0
+86659;17533;1;155;67.0;120;80;1;1;0;0;1;1
+86660;20394;1;162;68.0;110;70;1;1;0;0;1;0
+86661;23300;1;154;81.0;120;80;1;1;0;0;0;1
+86663;19005;1;156;68.0;120;80;3;3;0;0;1;0
+86664;19457;1;163;77.0;140;80;1;1;0;0;0;0
+86665;14600;1;168;63.0;110;70;2;1;0;0;0;0
+86666;16244;2;164;80.0;150;80;1;1;1;1;1;1
+86667;20310;2;160;80.0;140;100;1;1;0;0;0;1
+86668;22620;1;168;88.0;120;80;2;2;0;0;1;0
+86671;21018;2;168;74.0;120;80;1;1;0;0;1;1
+86673;21173;2;179;72.0;120;80;1;1;0;0;1;0
+86674;20434;2;170;75.0;120;80;1;1;0;0;1;1
+86675;14610;2;180;84.0;100;60;1;1;1;0;1;0
+86678;16091;2;167;76.0;120;80;1;1;0;0;1;0
+86679;21990;1;162;91.0;160;100;2;2;0;0;1;1
+86681;17332;2;175;92.0;120;80;1;3;0;0;1;1
+86682;19901;1;165;59.0;130;80;1;1;0;0;0;0
+86687;18931;1;158;50.0;120;80;1;1;1;0;1;0
+86688;14582;1;162;50.0;100;70;1;1;0;0;1;0
+86689;22012;1;159;54.0;110;70;1;1;0;0;1;1
+86690;18438;1;159;60.0;80;110;1;1;1;0;1;1
+86691;18932;1;149;84.0;100;60;1;1;0;0;1;0
+86692;22826;2;170;82.0;120;80;1;1;0;0;0;0
+86693;22485;1;170;67.0;130;70;1;1;0;0;1;1
+86694;19897;2;172;79.0;120;80;1;2;1;1;1;0
+86695;22044;1;160;60.0;120;70;1;1;0;1;1;0
+86696;15321;1;170;60.0;120;80;1;1;0;0;1;0
+86697;14668;1;164;83.0;120;80;1;1;0;1;1;0
+86700;19564;1;164;63.0;130;80;1;1;0;0;0;1
+86701;15182;1;147;53.0;120;70;1;1;0;0;1;0
+86702;15076;2;181;67.0;120;80;2;1;1;0;1;1
+86703;15369;2;165;62.0;120;80;1;1;0;0;0;0
+86704;18850;1;151;69.0;150;1000;1;1;0;0;1;1
+86706;20401;1;155;66.0;138;61;1;1;1;1;1;0
+86709;20134;2;172;75.0;140;90;1;1;0;0;1;1
+86710;20373;1;165;93.0;130;90;1;1;0;0;1;0
+86711;21165;1;158;81.0;120;80;2;1;0;0;1;1
+86713;23332;1;165;78.0;120;65;3;3;0;0;1;1
+86714;21142;1;160;68.0;139;89;1;1;0;0;0;0
+86715;19648;1;170;70.0;130;110;1;1;0;0;1;0
+86716;19053;2;160;72.0;120;80;1;1;1;0;1;0
+86717;14727;1;158;62.0;110;80;1;1;0;0;1;0
+86718;21973;2;167;58.0;120;80;3;1;1;0;1;1
+86719;15890;1;160;55.0;140;80;1;1;0;0;1;1
+86723;20459;1;160;88.0;130;80;1;1;0;0;1;1
+86724;20396;1;160;60.0;150;90;1;1;0;0;1;1
+86725;18137;1;161;57.0;110;70;1;1;0;0;1;0
+86726;17998;1;158;68.0;90;60;1;1;0;0;0;0
+86727;14502;2;175;74.0;110;70;1;1;0;0;1;0
+86728;14832;1;168;75.0;120;80;1;1;0;0;0;0
+86729;23406;2;171;85.0;140;90;1;1;1;0;0;0
+86730;19791;1;158;69.0;143;99;1;1;0;0;1;1
+86732;19117;1;164;85.0;130;80;1;1;0;0;1;1
+86733;21162;2;169;78.0;150;1000;3;1;0;0;1;1
+86734;18720;1;171;69.0;120;80;1;1;0;0;1;0
+86736;21271;2;172;85.0;140;80;1;1;0;0;1;0
+86737;16714;2;178;86.0;120;80;1;1;1;1;1;0
+86738;21708;1;155;79.0;120;80;1;1;0;0;1;0
+86739;21721;2;168;73.0;160;120;3;1;0;0;1;1
+86741;22602;1;168;84.0;120;80;1;1;0;0;1;1
+86742;21243;1;160;90.0;160;90;2;1;0;0;0;1
+86743;22002;1;165;84.0;120;70;1;1;0;0;1;0
+86744;21323;2;178;90.0;120;80;1;1;0;1;1;0
+86745;19822;2;169;78.0;120;80;1;1;1;1;1;0
+86746;18099;1;156;58.0;130;100;3;3;0;0;1;1
+86747;21979;1;160;80.0;130;80;1;1;0;0;1;0
+86748;22627;1;152;62.0;150;100;1;1;0;0;1;1
+86750;14528;1;162;72.0;100;70;1;1;0;0;1;0
+86751;14544;1;163;73.0;140;90;1;1;0;0;1;1
+86752;14425;1;160;60.0;100;70;1;1;0;0;1;0
+86753;21407;1;152;72.0;120;80;2;1;0;0;1;0
+86756;22059;1;168;72.0;140;80;3;1;0;0;1;0
+86757;19677;1;169;69.0;120;80;1;1;0;0;0;0
+86758;18156;2;165;68.0;130;80;3;3;0;0;1;1
+86759;20921;1;157;89.0;140;80;1;1;0;0;1;0
+86760;21328;2;170;70.0;130;90;1;1;0;0;0;0
+86761;18293;1;158;80.0;120;80;2;2;0;0;0;1
+86762;18283;2;180;104.0;160;100;1;1;1;0;0;1
+86763;19697;1;160;80.0;140;90;3;3;0;0;1;1
+86764;19813;1;158;63.0;120;80;2;1;0;0;1;0
+86766;16967;2;172;65.0;120;80;1;1;1;1;1;0
+86767;19007;1;161;61.0;100;70;1;1;0;0;1;0
+86768;21254;2;175;92.0;130;90;3;1;1;1;0;1
+86773;17331;2;178;100.0;120;70;1;1;0;0;1;0
+86775;18824;1;164;85.0;110;70;1;1;0;0;1;0
+86776;23308;2;173;78.0;120;80;1;1;0;0;1;0
+86777;22679;2;176;126.0;170;100;3;1;0;0;1;1
+86778;19567;1;158;88.0;150;100;1;1;0;0;1;1
+86782;23543;1;170;69.0;110;70;2;2;0;0;0;1
+86783;19592;1;162;109.0;134;89;1;1;0;1;1;1
+86785;16924;2;177;94.0;140;90;1;2;0;0;0;1
+86786;20461;2;175;108.0;110;70;1;1;0;0;1;0
+86790;17233;1;152;83.0;160;100;1;1;0;0;1;1
+86791;16641;1;161;74.0;100;70;1;1;0;0;1;1
+86793;20329;2;168;69.0;130;80;2;1;0;0;1;0
+86795;21156;1;156;58.0;130;90;3;3;0;0;1;0
+86797;16680;1;165;62.0;120;80;1;1;0;0;1;0
+86798;22538;1;162;67.0;160;79;2;1;0;0;0;1
+86799;17376;1;160;90.0;120;80;1;1;0;0;0;0
+86801;17599;2;167;80.0;170;110;2;1;0;0;1;1
+86802;20462;1;156;72.0;140;90;1;2;0;0;1;1
+86803;19578;1;167;85.0;120;80;1;1;0;0;1;0
+86805;18321;1;160;83.0;120;70;1;1;0;0;0;1
+86806;17395;1;167;52.0;100;70;2;1;0;0;1;0
+86808;18435;2;168;65.0;120;80;1;1;0;0;1;1
+86809;15399;2;170;72.0;120;80;1;1;0;0;1;0
+86810;21199;1;168;75.0;130;70;1;1;0;0;1;0
+86811;20514;1;149;70.0;120;80;1;1;0;0;1;0
+86812;19609;1;165;60.0;120;75;2;1;0;0;1;0
+86813;22622;2;174;92.0;120;80;1;2;0;0;1;1
+86815;22023;1;168;70.0;120;80;1;1;0;0;1;0
+86817;21111;1;156;75.0;135;80;1;1;0;0;1;1
+86818;19681;1;175;80.0;120;80;1;1;0;0;1;1
+86819;16802;1;168;71.0;110;70;1;1;0;0;1;0
+86821;16092;2;164;60.0;120;80;2;1;0;0;0;0
+86823;22690;2;159;63.0;120;80;1;1;1;1;1;0
+86824;19766;2;165;60.0;120;80;1;1;0;0;1;0
+86825;20325;1;163;78.0;140;90;1;1;0;0;1;1
+86826;20211;2;173;95.0;160;100;1;1;0;1;0;1
+86828;17434;1;169;67.0;110;70;2;1;0;0;1;0
+86829;17497;1;155;60.0;90;60;1;1;0;0;1;0
+86832;20507;2;174;65.0;160;90;2;2;0;0;1;0
+86833;19151;1;170;65.0;140;100;2;1;0;0;0;1
+86834;15193;1;163;75.0;150;80;1;1;0;1;1;0
+86835;21245;1;165;65.0;120;80;1;1;0;0;1;0
+86836;22087;1;156;63.0;130;70;1;1;0;0;1;1
+86838;17410;2;165;68.0;110;70;1;1;0;0;1;0
+86839;19579;2;181;95.0;120;70;3;3;0;0;1;0
+86840;21226;1;168;84.0;120;80;1;1;0;0;1;1
+86841;19720;2;165;63.0;120;80;1;1;0;0;1;0
+86842;23254;1;172;62.0;120;80;1;1;0;0;1;1
+86844;21103;2;140;100.0;140;100;2;1;0;0;1;1
+86846;17282;2;176;80.0;130;80;3;1;1;0;1;1
+86847;21846;1;153;66.0;150;90;1;1;0;0;1;1
+86849;19514;2;164;90.0;155;89;1;1;0;0;0;1
+86851;18320;1;158;66.0;140;90;3;1;0;0;0;1
+86852;18198;1;170;65.0;120;80;3;3;0;0;1;0
+86853;19020;2;166;51.0;120;80;1;1;0;0;1;1
+86854;20259;1;165;78.0;120;80;1;1;0;0;1;0
+86855;17285;1;167;89.0;90;60;2;1;0;0;1;0
+86856;20259;1;162;82.0;170;100;1;1;0;0;1;1
+86857;21188;1;168;82.0;120;80;3;3;0;0;1;1
+86858;18115;1;171;79.0;120;80;1;1;0;0;1;0
+86859;16838;1;168;72.0;120;80;1;2;0;0;1;0
+86860;16506;1;160;70.0;100;70;1;1;0;0;1;0
+86861;18716;2;168;79.0;150;90;2;2;0;0;0;1
+86862;18301;1;158;61.0;130;70;1;1;1;1;1;1
+86864;19661;1;162;73.0;100;90;3;1;0;0;0;1
+86865;20286;1;164;79.0;160;90;1;1;0;0;1;1
+86866;18935;1;165;75.0;140;90;3;1;0;0;1;1
+86867;19897;1;162;75.0;120;60;1;1;0;0;1;0
+86868;21873;1;156;49.0;110;70;1;1;0;0;1;1
+86869;19628;2;176;85.0;120;80;1;1;0;0;1;1
+86870;14456;1;162;96.0;120;85;1;1;0;0;1;0
+86871;15917;2;178;87.0;140;90;1;1;1;0;0;1
+86873;23162;2;174;93.0;100;90;1;1;0;0;1;1
+86874;21642;1;157;93.0;130;80;3;1;0;0;0;1
+86875;18204;1;160;100.0;170;100;2;3;0;0;1;1
+86876;21048;1;156;71.0;100;90;1;1;0;0;1;1
+86877;17432;2;170;80.0;120;80;2;1;1;1;1;0
+86878;14537;2;168;63.0;120;70;1;1;0;0;1;0
+86879;21841;1;166;120.0;130;80;3;3;0;0;1;0
+86880;18250;2;173;89.0;120;80;1;1;0;0;1;0
+86881;19632;1;165;68.0;120;80;1;1;0;0;1;1
+86882;21771;2;170;88.0;140;90;1;1;1;1;1;0
+86883;21956;2;165;62.0;120;80;1;1;0;0;1;0
+86886;18424;1;162;78.0;120;80;1;1;0;0;1;0
+86887;18083;2;182;85.0;120;80;1;1;0;0;1;1
+86890;18704;1;165;125.0;160;1200;1;1;0;0;0;1
+86892;18568;1;156;57.0;130;80;1;1;0;0;0;0
+86894;21146;2;185;102.0;130;85;1;1;0;0;1;0
+86897;14673;2;185;96.0;120;80;3;3;1;0;1;0
+86898;20393;2;169;65.0;120;80;1;1;0;0;1;1
+86899;22566;1;160;70.0;180;120;1;1;0;0;1;1
+86900;21790;2;178;77.0;160;90;2;2;1;0;0;1
+86901;22824;1;155;85.0;140;80;2;1;0;0;1;0
+86902;19060;2;172;70.0;140;80;3;3;0;0;1;1
+86903;16588;1;169;117.0;120;80;1;1;0;0;1;1
+86904;21121;2;173;85.0;120;80;1;1;0;0;1;0
+86906;21919;1;157;78.0;140;80;3;3;0;0;1;0
+86908;21915;1;156;100.0;130;90;1;1;0;0;0;1
+86909;20414;1;160;78.0;134;89;2;2;0;0;1;1
+86911;19642;2;169;68.0;130;60;1;1;0;0;1;0
+86914;18148;1;160;77.0;120;70;1;1;0;0;1;0
+86916;22643;1;169;70.0;120;80;1;1;0;0;1;1
+86917;21920;1;157;83.0;170;90;1;1;0;0;1;1
+86918;17618;2;158;49.0;120;80;1;1;0;0;1;1
+86919;17353;2;165;74.0;150;1000;1;1;0;0;1;1
+86921;20477;2;168;66.0;130;80;1;1;0;0;1;1
+86922;22771;2;178;90.0;110;70;3;1;0;0;0;1
+86923;20648;1;156;70.0;170;80;1;1;0;0;1;1
+86924;19498;1;158;68.0;120;60;1;1;0;0;0;1
+86925;18088;1;168;55.0;110;80;1;1;0;0;1;0
+86926;17391;2;176;90.0;170;1100;1;1;0;0;1;1
+86927;19125;2;164;113.0;125;80;3;3;0;0;0;1
+86930;21388;2;177;72.0;130;80;1;1;0;0;1;1
+86931;17631;1;165;80.0;110;80;1;1;0;0;1;1
+86932;21971;2;158;67.0;140;80;1;1;0;0;0;1
+86933;23180;1;158;86.0;180;120;2;2;0;0;1;1
+86935;18007;1;158;61.0;130;80;3;3;0;0;0;1
+86937;14563;1;164;70.0;120;80;1;1;0;0;1;0
+86939;19047;2;168;67.0;140;70;1;1;1;0;1;1
+86940;16727;1;164;119.0;140;80;1;1;0;0;1;1
+86941;21681;1;153;50.0;120;80;1;1;0;0;1;0
+86942;15950;1;170;80.0;120;80;1;1;0;0;0;0
+86945;18962;2;187;84.0;120;80;1;1;1;0;0;0
+86946;23561;1;165;78.0;130;80;3;3;0;0;1;1
+86947;19570;2;162;95.0;145;90;1;1;1;0;1;0
+86948;23300;1;166;68.0;130;90;1;1;0;0;1;1
+86949;19563;2;164;73.0;120;80;2;1;1;0;1;1
+86950;22743;1;185;85.0;120;70;3;3;0;0;1;1
+86951;21258;1;154;74.0;120;80;1;1;0;0;0;0
+86954;19713;1;158;62.0;180;100;2;1;0;0;1;1
+86956;19180;1;162;61.0;124;79;1;1;0;0;1;0
+86957;16801;1;163;104.0;130;80;1;1;0;0;1;0
+86958;20522;2;176;76.0;12;80;1;3;1;1;1;0
+86959;16037;1;162;58.0;120;70;1;1;0;0;1;0
+86962;20169;1;170;92.0;140;90;1;1;0;0;1;0
+86964;19022;1;166;73.0;110;70;1;1;0;0;0;1
+86965;21643;1;165;69.0;120;80;1;1;0;0;1;0
+86967;16306;2;167;73.0;120;80;1;1;0;0;1;1
+86968;16612;1;161;60.0;110;60;1;1;0;0;0;0
+86969;21841;1;158;70.0;100;70;3;1;0;0;0;0
+86970;22635;2;165;58.0;140;100;1;1;0;0;1;1
+86972;15873;1;160;60.0;160;100;1;1;0;0;1;1
+86977;21873;2;165;95.0;140;90;1;1;1;0;1;1
+86978;16207;1;168;57.0;120;80;1;1;0;0;0;0
+86979;22388;2;183;89.0;130;90;2;1;1;1;1;1
+86980;21916;1;165;83.0;170;1000;2;2;0;0;1;0
+86981;22519;1;150;61.0;160;90;2;1;0;0;1;1
+86982;23397;2;159;66.0;100;60;2;1;0;0;1;1
+86985;22488;1;171;74.0;120;80;1;1;0;0;0;1
+86987;20608;2;164;56.0;120;80;1;1;0;0;1;1
+86988;18184;2;167;63.0;150;80;1;1;1;1;1;1
+86989;21169;1;165;60.0;120;80;1;1;0;0;1;1
+86990;22755;1;162;64.0;150;80;1;1;0;0;1;1
+86992;21855;2;165;76.0;150;100;1;1;0;0;1;1
+86994;21891;1;152;74.0;130;70;1;1;0;0;1;1
+86995;21131;2;165;67.0;120;70;1;1;0;0;0;0
+86997;20260;1;158;65.0;130;90;1;1;0;0;1;0
+86998;14392;2;173;103.0;180;120;1;1;0;0;1;1
+86999;19034;2;175;78.0;150;100;1;3;0;0;1;1
+87000;18387;1;160;67.0;120;70;1;1;0;0;0;0
+87001;23267;2;167;67.0;160;100;1;1;0;0;0;0
+87002;18355;1;162;64.0;90;60;1;1;0;0;0;0
+87003;18187;1;168;67.0;120;70;1;1;0;0;1;0
+87004;23414;2;184;100.0;120;80;1;1;0;0;1;0
+87006;21333;2;169;89.0;130;80;3;3;0;0;1;0
+87007;18962;1;158;62.0;120;80;3;3;0;0;1;1
+87008;19518;1;168;65.0;130;80;1;3;0;0;1;1
+87009;22518;1;159;63.0;150;100;2;2;0;0;0;1
+87010;20403;1;157;52.0;120;80;1;1;0;0;1;0
+87011;20342;1;159;75.0;130;90;2;1;0;0;1;1
+87012;20372;1;162;87.0;130;80;1;1;0;0;1;1
+87014;16520;1;153;73.0;130;90;1;1;0;0;0;1
+87015;20578;1;158;75.0;150;90;1;1;0;0;1;1
+87017;20491;2;178;82.0;120;80;2;2;0;0;1;0
+87021;16773;1;170;67.0;100;60;1;2;0;0;1;0
+87023;20369;2;173;87.0;150;110;1;2;0;0;1;1
+87024;14613;1;165;69.0;100;60;1;1;0;0;1;0
+87026;23068;2;165;74.0;150;90;1;1;0;0;0;1
+87027;19533;1;167;120.0;130;80;1;1;0;0;0;1
+87028;20275;1;169;67.0;120;80;1;1;0;0;1;1
+87032;23385;1;150;57.0;130;80;1;1;0;0;1;0
+87033;23464;2;160;63.0;120;80;1;1;0;0;1;0
+87034;20369;2;177;101.0;180;120;1;1;0;0;1;0
+87036;21016;2;176;74.0;120;80;1;1;0;0;1;1
+87037;14694;1;151;76.0;110;70;1;1;0;0;1;0
+87038;20930;2;166;100.0;120;80;1;1;0;0;1;0
+87040;19720;1;152;71.0;140;90;1;3;0;0;1;0
+87043;15186;2;159;68.0;120;80;1;1;0;0;1;0
+87044;14548;1;162;64.0;120;80;1;1;0;0;1;0
+87046;21457;1;168;68.0;120;80;1;1;0;0;1;0
+87047;19682;2;159;67.0;120;80;1;1;0;0;1;0
+87049;22695;1;159;65.0;160;65;1;1;0;0;1;0
+87050;22072;1;165;72.0;120;80;1;1;0;0;0;0
+87051;22774;2;165;65.0;160;100;1;1;0;0;1;1
+87053;17574;2;160;52.0;160;90;1;1;0;0;1;1
+87056;16562;1;165;78.0;120;80;1;1;0;0;1;0
+87057;18038;1;163;140.0;160;100;2;2;0;0;0;1
+87058;20167;1;160;73.0;130;80;2;2;0;0;1;1
+87059;19668;1;150;68.0;130;80;2;1;0;0;1;0
+87060;18144;2;168;62.0;140;90;1;1;0;0;1;1
+87061;22438;1;150;47.0;120;80;1;1;0;0;1;0
+87062;21189;1;165;65.0;120;80;1;1;0;0;1;0
+87063;19760;1;160;82.0;140;90;1;1;0;0;1;1
+87065;19055;1;167;74.0;120;80;1;1;0;0;1;0
+87066;16268;1;159;61.0;120;80;1;1;0;0;1;0
+87067;18080;1;155;80.0;120;60;1;1;0;0;1;1
+87068;14798;1;174;84.0;110;70;2;1;0;0;1;0
+87069;19607;1;165;85.0;120;80;2;2;0;0;0;1
+87071;21706;1;160;79.0;170;80;1;2;0;0;1;1
+87073;22870;1;157;60.0;140;90;2;2;0;0;1;1
+87074;19659;1;164;80.0;130;90;1;1;1;0;1;1
+87075;21786;1;178;72.0;140;80;1;1;0;0;1;0
+87077;23402;2;169;91.0;120;80;1;1;0;0;1;0
+87078;21206;1;158;60.0;110;70;1;1;0;0;1;0
+87079;21038;2;180;90.0;140;100;1;1;0;1;1;1
+87080;20439;2;172;75.0;120;80;1;1;0;0;1;0
+87081;22531;1;163;109.0;140;90;1;3;0;0;1;0
+87082;18899;2;165;65.0;90;60;1;1;0;0;1;0
+87083;21809;1;154;65.0;120;80;2;1;0;0;1;1
+87085;21025;2;170;93.0;120;80;1;1;0;0;0;1
+87086;15909;2;168;62.0;120;80;1;1;0;0;1;0
+87090;20301;1;153;80.0;150;90;3;1;0;0;1;1
+87091;17297;1;165;64.0;149;97;1;1;0;0;1;1
+87092;22801;2;158;58.0;120;80;3;1;0;0;1;0
+87093;14579;2;172;79.0;120;70;1;1;0;0;1;0
+87094;21996;1;170;67.0;140;90;2;2;0;0;1;1
+87095;23265;1;150;67.0;140;80;1;1;0;0;0;1
+87096;15978;1;158;60.0;110;70;1;1;0;0;1;0
+87097;23107;1;159;60.0;130;90;3;1;0;0;1;1
+87100;23408;1;164;68.0;140;80;1;1;0;0;0;0
+87101;21340;2;159;67.0;100;80;1;1;0;0;1;0
+87102;21972;1;176;98.0;120;80;1;1;0;0;1;1
+87103;21941;2;168;84.0;130;80;1;1;0;0;0;1
+87105;14732;1;163;70.0;110;70;1;1;0;0;0;0
+87106;19687;1;156;65.0;130;89;3;1;0;0;1;1
+87108;19840;1;154;60.0;110;70;1;1;0;0;1;0
+87109;18365;1;189;80.0;120;80;1;1;0;0;1;0
+87110;19732;2;170;70.0;120;80;1;1;0;0;0;0
+87111;20336;2;170;60.0;100;60;1;1;0;0;1;1
+87112;22566;1;156;58.0;110;70;1;1;0;0;1;1
+87113;19048;2;175;92.0;130;93;1;1;0;0;1;0
+87114;16777;1;162;64.0;120;70;2;2;0;0;1;0
+87115;15239;1;167;66.0;120;80;1;1;0;0;1;1
+87119;20536;2;169;91.0;200;120;1;1;1;0;1;1
+87120;20407;2;165;68.0;130;80;1;1;1;0;1;0
+87121;23379;1;164;87.0;120;80;1;1;0;0;1;1
+87122;15348;1;155;71.0;90;70;1;1;0;0;1;0
+87123;21729;2;164;63.0;140;90;1;1;1;0;1;1
+87124;15219;2;179;100.0;120;80;1;1;0;0;1;1
+87125;17372;1;160;96.0;130;80;1;1;1;1;0;1
+87127;16782;1;156;65.0;120;80;1;1;0;0;1;0
+87128;15196;2;170;65.0;110;70;1;1;0;0;1;1
+87135;15933;1;150;60.0;120;80;2;1;0;0;1;0
+87136;22693;1;169;65.0;140;100;1;2;0;0;1;1
+87138;23173;1;161;45.0;120;80;2;1;0;0;1;0
+87139;23454;1;154;90.0;110;60;2;2;0;0;1;0
+87141;19729;1;158;64.0;120;80;1;1;0;0;1;1
+87143;15435;2;173;80.0;120;80;1;1;0;0;0;0
+87146;23242;1;164;70.0;120;80;1;3;0;0;1;0
+87147;19626;1;164;81.0;170;90;3;2;0;0;1;1
+87148;21646;1;157;73.0;130;80;3;1;0;0;1;1
+87149;19531;2;167;83.0;100;70;1;2;0;0;1;1
+87151;19757;1;158;59.0;100;70;2;2;0;0;1;0
+87152;20340;1;158;70.0;120;80;2;1;0;0;0;1
+87153;21821;1;162;76.0;120;80;1;1;0;0;0;1
+87154;21808;1;163;81.0;130;80;2;1;0;0;0;1
+87156;23459;1;170;90.0;140;90;1;2;0;0;1;1
+87157;21249;1;160;75.0;120;79;1;1;0;0;1;1
+87158;20432;2;160;65.0;120;80;1;1;0;0;1;1
+87160;20475;1;153;88.0;130;80;1;1;0;0;1;1
+87161;18750;2;190;87.0;120;80;1;1;0;0;1;1
+87162;21812;1;153;61.0;130;90;1;1;0;0;1;1
+87165;18394;1;169;69.0;120;80;1;1;0;0;1;0
+87166;19595;1;158;46.0;110;70;1;1;0;0;1;0
+87167;20557;1;160;60.0;120;80;1;1;0;0;1;0
+87168;20361;1;161;68.0;120;80;3;1;0;0;0;0
+87169;21916;1;160;90.0;140;90;1;1;0;0;0;0
+87170;21913;2;168;84.0;140;90;1;1;0;0;1;1
+87171;19001;1;175;85.0;120;80;1;1;0;0;0;0
+87172;20540;2;168;74.0;125;80;1;1;0;0;0;0
+87173;18794;1;165;78.0;100;70;2;1;0;0;1;0
+87174;15863;1;170;68.0;140;80;3;1;0;0;1;1
+87175;18844;1;153;65.0;135;80;1;1;0;0;1;0
+87176;19894;1;160;80.0;120;80;1;1;0;0;1;0
+87179;21161;1;175;80.0;120;80;1;1;0;0;1;0
+87180;16015;1;161;57.0;100;60;1;1;0;0;1;0
+87182;19771;2;160;79.0;140;80;1;1;0;0;1;1
+87183;18278;1;168;80.0;120;80;1;1;0;0;1;1
+87185;18967;2;167;61.0;130;90;1;1;0;0;1;0
+87190;20984;1;165;100.0;130;90;1;1;0;0;1;1
+87191;18854;2;168;73.0;120;80;1;1;0;0;0;0
+87193;23338;1;157;90.0;130;90;2;1;0;0;1;1
+87194;18984;1;160;79.0;120;80;2;1;0;0;1;1
+87196;15277;1;170;80.0;120;80;1;1;0;0;1;0
+87197;21920;2;160;71.0;130;80;1;1;1;0;1;1
+87198;22073;1;171;72.0;120;80;1;1;0;0;1;0
+87201;21213;1;153;118.0;120;80;2;3;0;0;1;0
+87202;19499;1;158;68.0;110;70;1;1;0;0;1;0
+87204;20370;2;166;90.0;120;80;2;3;0;0;1;1
+87205;21748;1;168;86.0;145;90;2;1;0;0;1;1
+87206;21801;1;162;68.0;110;70;1;1;0;0;1;0
+87207;20347;1;149;85.0;130;80;1;1;0;0;0;1
+87208;18318;1;155;80.0;130;80;1;1;0;0;1;0
+87209;19975;1;168;72.0;120;80;1;1;0;0;0;1
+87210;22397;1;160;63.0;120;80;3;1;0;0;1;0
+87211;20481;2;164;79.0;140;90;1;1;0;0;1;1
+87212;16673;2;165;65.0;120;80;1;1;0;0;0;1
+87213;21840;2;180;78.0;140;90;1;1;0;0;1;1
+87216;19912;2;168;72.0;140;90;1;1;0;0;0;1
+87218;20991;1;162;62.0;120;80;1;1;0;0;1;1
+87219;21090;1;152;65.0;150;80;2;1;0;0;1;1
+87223;19168;2;180;98.0;130;90;1;1;0;0;1;0
+87224;22661;1;165;81.0;160;100;3;1;0;0;1;1
+87225;19612;2;168;86.0;100;70;1;1;0;0;1;0
+87227;18196;2;160;55.0;120;80;1;1;0;0;1;0
+87228;19734;2;174;71.0;125;86;1;1;0;0;1;0
+87231;23494;1;158;64.0;100;70;1;1;0;0;1;1
+87232;18131;1;150;65.0;120;80;1;1;0;0;1;0
+87233;21071;1;160;92.0;140;90;3;3;0;0;1;1
+87235;18136;2;174;87.0;100;80;1;1;1;0;1;0
+87236;16775;1;166;62.0;120;80;1;1;0;0;1;0
+87237;15985;2;164;91.0;120;80;1;2;0;0;0;1
+87239;19099;1;158;72.0;120;80;1;1;0;0;1;0
+87241;23588;1;162;58.0;110;80;1;1;0;0;1;0
+87242;22656;2;178;88.0;140;90;2;2;1;0;0;1
+87243;19752;1;157;63.0;130;90;1;1;0;0;0;1
+87244;14671;2;165;78.0;120;80;1;2;1;1;1;1
+87245;20369;2;160;79.0;140;80;2;2;0;0;1;1
+87246;19670;1;165;65.0;120;80;1;3;0;0;0;0
+87248;21897;1;158;65.0;130;90;3;1;0;1;1;0
+87250;17511;1;158;115.0;120;70;2;3;0;0;1;0
+87253;22595;1;168;75.0;115;70;1;1;0;0;0;1
+87255;20442;1;173;71.0;140;90;1;1;0;0;1;0
+87256;19904;1;157;61.0;120;70;1;1;0;0;0;0
+87257;15288;2;166;68.0;120;80;1;1;0;1;1;1
+87258;20970;1;150;69.0;130;85;1;1;0;0;1;0
+87259;17423;2;180;95.0;140;90;1;1;0;0;0;1
+87262;18154;2;164;62.0;140;90;3;1;0;0;0;0
+87263;17577;2;171;59.0;120;80;1;1;0;0;1;0
+87264;17496;2;173;56.0;110;80;1;3;0;0;0;0
+87265;15205;2;171;71.0;120;80;1;1;0;1;1;0
+87266;21242;2;169;68.0;135;89;1;1;1;0;1;0
+87269;16614;1;152;64.0;140;90;1;1;0;0;1;0
+87270;18351;1;162;74.0;120;80;1;1;0;0;1;0
+87271;18222;2;162;56.0;120;80;1;1;0;0;1;0
+87272;18392;2;177;75.0;140;80;1;1;1;0;0;0
+87273;23149;2;170;84.0;120;80;1;1;1;0;0;1
+87274;19867;1;163;72.0;120;80;1;1;0;0;1;0
+87276;16040;1;150;52.0;90;60;1;1;0;0;1;0
+87277;23406;2;180;76.0;120;80;1;1;1;0;1;1
+87279;19548;2;162;72.0;110;70;1;1;0;0;1;0
+87280;18469;1;168;66.0;120;80;1;1;0;0;1;0
+87282;19537;2;172;104.0;140;80;1;1;0;0;0;1
+87284;23281;1;173;75.0;140;90;1;1;0;0;0;1
+87285;14363;2;168;64.0;120;75;1;1;1;0;1;0
+87288;21424;2;182;63.0;150;90;1;1;1;0;1;1
+87290;21670;1;170;76.0;120;80;1;1;0;0;1;0
+87292;15993;1;164;55.0;120;70;1;1;0;0;1;0
+87293;16289;1;178;72.0;120;80;1;1;0;0;1;0
+87294;20444;1;152;51.0;100;70;1;1;0;0;1;0
+87295;21890;1;170;70.0;120;80;1;1;0;0;1;0
+87296;15961;2;168;78.0;120;80;1;1;1;1;0;0
+87298;20505;1;164;64.0;170;110;3;3;0;0;1;1
+87301;21182;2;173;69.0;120;80;1;1;0;0;1;0
+87302;21134;2;180;90.0;120;80;1;1;0;0;1;0
+87304;21667;1;162;60.0;120;80;1;1;0;0;1;0
+87305;18301;2;167;70.0;110;90;1;1;0;1;1;0
+87306;23351;1;152;66.0;200;1100;2;1;0;0;1;0
+87310;21243;1;160;65.0;141;1000;1;1;0;0;1;1
+87312;20497;1;168;94.0;120;80;1;1;0;0;1;1
+87314;17395;2;163;70.0;110;70;1;1;1;0;1;0
+87316;23507;1;152;70.0;170;80;1;2;0;0;1;1
+87317;19460;1;159;110.0;120;80;1;1;0;0;0;0
+87318;14485;2;169;73.0;120;80;1;1;0;0;1;0
+87320;18317;1;154;67.0;110;70;1;1;0;0;1;0
+87327;15197;2;155;55.0;120;80;1;1;0;0;1;0
+87333;19832;1;164;85.0;150;90;1;3;0;0;1;1
+87335;21945;2;172;84.0;140;80;3;1;0;0;1;1
+87336;23333;1;144;48.0;120;80;1;1;0;0;1;1
+87337;20626;1;158;58.0;120;80;1;1;0;0;1;0
+87338;20536;2;171;66.0;160;100;1;1;0;0;1;0
+87339;22519;2;172;69.0;170;90;1;1;0;0;1;1
+87341;14483;1;161;62.0;100;60;1;2;0;0;1;0
+87342;15817;2;164;89.0;130;80;1;1;0;0;1;1
+87343;21637;1;164;71.0;120;80;1;1;0;0;1;0
+87344;18371;1;153;85.0;120;80;1;1;0;0;1;0
+87345;22553;2;167;62.0;120;80;1;1;0;0;1;0
+87349;15315;1;164;62.0;135;100;2;1;0;0;1;1
+87350;16277;1;156;60.0;120;80;1;1;0;0;1;0
+87351;21322;2;173;82.0;120;80;1;1;0;0;1;0
+87352;22017;2;171;83.0;110;80;1;1;0;0;1;1
+87353;19048;2;172;74.0;120;80;1;1;0;0;1;0
+87354;19796;1;164;71.0;120;80;2;1;0;0;1;0
+87356;18848;1;159;67.0;120;80;1;1;0;0;1;1
+87357;15343;2;174;78.0;120;80;1;3;0;0;0;1
+87358;20557;1;161;65.0;130;90;1;1;0;0;1;1
+87359;18815;2;171;82.0;120;80;2;1;1;0;1;0
+87361;14368;1;155;80.0;120;80;1;1;0;0;1;0
+87362;21103;1;150;67.0;150;80;1;1;0;0;1;1
+87363;20377;2;175;69.0;130;80;1;1;0;0;1;0
+87365;21305;1;163;60.0;120;80;1;1;0;0;1;1
+87366;17551;2;156;69.0;140;80;1;2;1;0;1;1
+87369;18829;1;153;82.0;110;80;1;1;0;0;1;0
+87371;22526;1;160;98.0;140;90;1;1;0;0;1;1
+87374;18330;2;168;70.0;160;90;2;1;1;0;0;1
+87375;20609;2;172;75.0;150;90;1;1;0;0;1;1
+87376;18842;2;179;72.0;110;70;1;1;0;0;1;0
+87377;20433;2;158;74.0;110;70;2;1;0;0;0;1
+87378;18272;2;175;95.0;140;80;3;3;1;0;1;1
+87379;18872;2;171;62.0;170;90;1;1;0;0;1;0
+87380;21776;1;160;60.0;120;70;1;1;0;0;1;0
+87381;18017;1;167;92.0;150;90;1;1;0;0;1;1
+87383;18461;2;153;57.0;130;90;1;1;1;0;1;0
+87384;20468;1;157;62.0;130;80;1;1;0;0;1;0
+87385;21791;1;171;68.0;120;80;1;1;0;0;1;0
+87387;23491;1;164;64.0;120;80;1;1;0;0;1;1
+87388;22662;1;175;75.0;120;80;1;1;0;0;1;0
+87389;23343;1;155;74.0;130;80;1;1;0;0;1;1
+87390;20380;1;155;80.0;120;80;2;1;0;0;1;1
+87392;18104;1;157;88.0;110;90;1;1;1;0;1;0
+87393;16873;2;179;96.0;110;70;2;2;0;0;1;0
+87395;20336;1;167;60.0;180;1100;2;1;0;0;1;1
+87396;23307;2;168;68.0;120;80;1;1;0;1;1;0
+87397;15836;1;162;65.0;110;80;2;2;0;0;1;0
+87398;18154;2;155;50.0;150;90;1;2;1;0;1;1
+87399;20982;2;168;98.0;150;90;2;2;0;0;1;1
+87400;21298;1;164;62.0;120;70;1;3;0;0;1;1
+87401;19827;2;170;83.0;130;80;1;3;0;0;0;0
+87403;22792;2;160;75.0;120;80;1;2;0;0;0;1
+87407;16889;2;169;65.0;110;70;1;1;0;0;1;0
+87408;22570;1;156;73.0;110;70;2;1;0;0;1;1
+87409;18109;1;165;68.0;120;80;1;1;0;0;1;1
+87410;20528;1;148;68.0;140;80;1;1;0;0;1;1
+87411;15369;1;159;69.0;120;80;1;1;0;0;1;0
+87412;19777;1;160;108.0;130;80;3;3;0;0;1;1
+87413;15688;1;170;75.0;110;70;1;1;0;0;0;0
+87415;18312;2;163;64.0;150;100;1;1;0;0;0;1
+87416;22692;2;172;71.0;110;70;1;1;0;0;1;1
+87417;23515;1;153;74.0;130;60;1;3;0;0;1;1
+87418;17319;1;157;49.0;120;80;1;1;0;0;1;1
+87419;21782;1;157;65.0;110;70;2;2;0;0;0;0
+87421;22780;2;178;79.0;140;90;2;1;0;0;1;1
+87422;16092;1;188;85.0;120;80;1;1;0;0;1;0
+87424;17581;1;164;96.0;120;80;1;1;0;0;0;0
+87425;22774;2;176;84.0;150;90;1;1;1;1;1;1
+87426;19601;1;160;70.0;120;80;1;1;0;0;1;0
+87429;17353;1;160;75.0;120;80;1;1;0;0;1;0
+87430;21903;1;163;78.0;120;80;1;1;0;0;0;0
+87431;22017;1;149;65.0;120;80;2;1;0;0;0;0
+87432;21859;2;169;72.0;160;80;2;1;0;0;1;1
+87433;14793;1;160;105.0;130;80;1;1;0;0;1;0
+87434;21858;1;163;58.0;130;80;1;1;0;0;1;0
+87437;21817;1;165;100.0;140;80;3;3;1;0;1;1
+87438;21849;1;157;77.0;150;80;2;3;0;0;1;1
+87439;21985;1;167;81.0;120;80;1;1;0;0;1;0
+87440;19238;2;174;92.0;120;80;1;1;0;0;1;0
+87441;16803;1;172;95.0;130;80;1;1;0;0;0;0
+87443;17217;2;165;65.0;120;80;1;1;0;0;0;0
+87444;21765;1;164;81.0;140;80;1;1;0;0;1;0
+87447;22558;1;154;76.0;120;80;2;1;0;0;1;1
+87448;15900;1;165;82.0;120;80;1;1;0;0;1;0
+87449;18177;2;170;68.0;120;80;1;1;0;0;0;0
+87452;17348;1;165;100.0;160;100;1;2;0;0;1;1
+87455;16075;1;156;54.0;120;80;1;1;0;0;1;0
+87457;22552;1;162;62.0;120;80;2;1;0;0;1;1
+87458;18189;2;178;75.0;120;80;1;1;0;0;1;0
+87459;17302;1;163;59.0;120;80;1;1;0;0;1;0
+87460;22633;1;172;69.0;120;80;1;1;0;0;1;0
+87461;22700;1;155;43.0;120;80;2;1;0;0;1;0
+87462;18338;1;172;74.0;140;80;1;1;0;0;1;1
+87463;20493;1;158;91.0;180;100;2;1;0;0;0;0
+87464;16738;1;152;68.0;120;80;1;1;0;0;1;0
+87466;21082;1;168;72.0;120;80;1;1;0;0;1;1
+87468;16770;2;172;70.0;100;90;1;1;0;0;1;0
+87470;23212;2;163;80.0;160;100;3;3;0;0;1;1
+87471;21844;1;166;76.0;125;85;1;1;0;0;0;0
+87473;19019;2;168;78.0;130;85;1;1;0;0;1;0
+87474;23372;1;160;105.0;150;90;3;3;0;1;1;1
+87475;19670;2;172;80.0;120;80;1;1;1;0;1;0
+87476;22624;1;153;63.0;130;70;3;3;0;0;1;1
+87478;23401;1;158;57.0;150;80;1;1;0;0;0;1
+87479;21901;2;172;75.0;125;80;1;1;0;1;1;0
+87480;22913;2;165;75.0;160;70;3;3;0;0;1;1
+87481;22685;1;145;78.0;150;90;3;1;0;0;1;1
+87483;15182;1;162;60.0;150;90;1;1;0;0;0;1
+87484;15345;1;163;65.0;110;60;1;1;0;0;0;0
+87485;19583;1;160;60.0;120;80;1;1;0;0;1;1
+87487;18372;1;170;68.0;120;80;1;1;0;0;1;0
+87489;22039;1;150;76.0;130;80;2;1;0;0;1;1
+87490;18767;1;164;59.0;120;80;1;1;0;0;1;0
+87491;22557;1;159;68.0;120;80;1;1;0;0;1;0
+87493;17742;1;158;65.0;160;90;1;1;0;0;1;1
+87495;15191;2;178;106.0;130;90;2;1;0;0;1;1
+87496;17060;2;170;80.0;120;80;1;1;0;0;1;0
+87497;20570;1;157;52.0;100;60;1;1;0;0;1;0
+87498;20939;2;180;183.0;110;80;3;3;0;1;1;1
+87499;20126;2;170;80.0;120;70;2;1;0;0;1;0
+87501;14414;1;159;47.0;110;80;1;1;0;0;1;0
+87503;21057;2;176;95.0;160;100;3;1;0;0;1;1
+87504;23324;2;168;71.0;130;80;3;3;0;0;1;1
+87506;19979;2;174;76.0;120;80;1;1;1;0;1;0
+87507;22457;1;156;70.0;130;80;1;1;0;0;1;1
+87508;16916;1;160;81.0;130;90;1;2;0;0;1;1
+87509;22820;1;160;70.0;120;80;1;1;0;0;0;1
+87510;14364;1;163;58.0;120;70;1;1;0;0;1;0
+87513;21816;1;165;70.0;90;60;1;1;0;0;1;1
+87515;18728;2;172;75.0;130;90;1;1;0;0;0;1
+87516;17296;1;160;112.0;130;90;1;1;0;0;1;0
+87518;21141;1;160;67.0;120;90;3;1;0;0;1;1
+87521;14765;2;165;65.0;120;80;1;1;0;0;0;0
+87524;18799;1;172;70.0;150;100;1;1;0;0;1;1
+87526;19447;2;175;83.0;120;80;1;1;0;0;1;0
+87527;19493;2;176;86.0;110;60;3;1;1;1;1;1
+87529;19714;2;169;69.0;120;80;1;1;0;0;1;0
+87530;19569;1;161;68.0;120;80;1;1;0;0;1;1
+87532;14480;1;151;61.0;110;70;2;2;0;0;1;0
+87533;21105;2;173;86.0;120;80;1;1;0;0;1;0
+87534;22653;1;168;95.0;130;80;3;1;0;0;1;1
+87535;17334;1;170;75.0;140;90;1;1;0;0;1;1
+87536;21173;1;184;70.0;130;80;1;3;0;0;0;0
+87537;21188;1;158;70.0;130;90;3;1;0;0;1;1
+87538;22599;1;160;61.0;120;80;2;2;0;0;1;0
+87539;16969;2;174;71.0;120;80;1;1;1;0;1;0
+87540;18314;2;170;65.0;120;70;1;1;0;0;1;1
+87541;15177;1;157;95.0;125;80;3;1;1;1;1;1
+87543;19621;1;155;73.0;120;80;1;1;0;0;1;0
+87546;20458;2;172;74.0;120;80;1;1;0;0;0;0
+87547;23435;1;164;94.0;140;80;1;1;0;0;1;1
+87553;15327;1;168;68.0;120;80;1;1;0;0;0;0
+87554;22508;1;164;95.0;140;90;3;1;0;0;0;1
+87555;19749;1;158;60.0;120;80;1;1;0;0;0;0
+87556;21279;1;158;68.0;115;80;2;1;0;0;0;0
+87558;22093;1;167;79.0;120;80;1;3;0;0;1;0
+87559;23244;1;163;72.0;120;80;1;1;0;0;1;1
+87560;20385;1;158;62.0;120;80;1;1;0;0;0;0
+87561;17390;1;159;64.0;120;80;1;1;0;0;1;0
+87563;21938;1;156;56.0;120;80;1;1;0;0;1;0
+87566;15301;2;176;58.0;110;70;1;1;0;0;1;0
+87567;21359;2;176;108.0;140;90;1;1;1;0;0;1
+87568;18202;2;168;97.0;130;90;1;1;0;0;1;0
+87570;17408;1;156;58.0;140;90;1;1;0;0;1;1
+87571;18927;1;164;90.0;120;80;1;2;0;0;0;0
+87572;21781;1;155;56.0;90;60;1;1;0;0;1;0
+87573;16894;1;157;63.0;120;80;1;1;0;0;1;0
+87575;23350;2;164;73.0;130;70;3;1;0;0;1;1
+87576;19570;1;154;68.0;130;90;1;1;0;0;1;0
+87577;23417;2;174;106.0;110;70;3;2;0;0;0;1
+87578;22618;2;170;85.0;120;80;1;3;0;0;1;1
+87579;22614;2;170;98.0;140;80;2;1;0;0;1;1
+87581;17965;1;157;87.0;100;60;2;1;0;0;1;1
+87582;19579;1;162;64.0;170;1100;1;1;0;0;1;1
+87583;16770;1;170;69.0;140;100;1;1;0;0;0;1
+87584;21156;2;166;66.0;130;90;1;1;0;0;1;1
+87585;21283;2;172;95.0;150;90;2;1;0;0;1;1
+87586;23553;1;160;60.0;170;90;1;1;0;0;1;1
+87587;19666;1;155;50.0;120;80;1;1;0;0;0;1
+87588;23154;2;174;53.0;140;90;1;1;0;0;1;1
+87590;21185;2;172;72.0;120;80;1;1;0;0;1;0
+87591;22059;2;170;71.0;120;80;1;1;0;0;1;0
+87592;21232;2;168;74.0;140;90;2;1;0;0;1;0
+87593;19030;2;170;74.0;120;80;1;1;0;0;1;1
+87594;20412;1;162;61.0;120;80;3;3;0;0;1;1
+87595;18288;2;167;73.0;120;70;1;1;1;0;1;0
+87597;15049;2;182;85.0;130;90;1;1;0;0;1;0
+87598;16180;2;168;68.0;150;100;1;1;0;0;1;1
+87600;20477;1;168;80.0;120;80;1;1;0;0;1;0
+87601;14492;1;162;75.0;140;90;1;1;0;0;1;1
+87603;22021;1;153;57.0;120;70;3;3;0;0;1;1
+87605;18978;1;170;73.0;140;80;1;1;0;0;1;1
+87607;15202;2;168;75.0;150;90;1;1;0;0;1;1
+87608;21257;1;165;95.0;130;80;1;1;0;0;1;1
+87611;17312;1;153;62.0;140;90;2;1;0;0;1;0
+87612;16615;2;196;180.0;130;80;3;1;0;0;1;1
+87616;19782;2;174;78.0;120;80;1;1;0;0;1;0
+87617;18859;2;176;70.0;120;80;1;1;0;0;1;0
+87619;23566;2;152;68.5;120;80;1;1;0;0;0;1
+87620;15940;2;170;83.0;120;80;1;1;0;0;1;0
+87622;21661;1;160;66.0;140;90;1;1;0;0;1;0
+87624;18318;1;160;84.0;120;80;1;1;0;0;1;1
+87626;21925;1;166;72.0;140;80;1;1;0;0;1;1
+87627;17559;2;170;86.0;140;100;1;1;0;0;1;1
+87629;19660;1;164;65.0;120;80;1;1;0;0;1;0
+87631;14408;2;166;123.0;130;90;2;1;0;0;1;0
+87632;21874;1;162;65.0;110;80;1;1;0;0;1;0
+87633;14769;2;162;78.0;110;70;1;1;1;1;1;0
+87634;22043;1;162;62.0;120;80;1;1;0;0;1;0
+87635;20525;1;159;105.0;140;90;1;1;0;0;1;0
+87636;18947;2;174;90.0;130;90;2;2;0;0;0;1
+87638;22907;1;167;60.0;120;70;1;1;0;0;0;1
+87639;20521;2;161;56.0;160;90;1;1;0;0;1;1
+87640;16681;1;163;78.0;80;60;2;2;0;0;1;1
+87642;20351;1;157;68.0;140;90;1;1;0;0;1;1
+87643;20497;1;175;91.0;125;80;1;1;0;0;1;0
+87644;21185;2;170;69.0;120;90;1;1;0;1;1;1
+87645;21274;2;160;55.0;120;80;1;1;0;0;0;0
+87646;19253;2;154;49.0;120;80;1;2;0;0;1;0
+87647;23436;2;168;81.0;170;120;3;3;0;0;1;1
+87648;19821;1;162;65.0;100;80;3;3;0;0;0;0
+87649;21063;1;159;65.0;120;80;1;1;0;0;1;1
+87650;20367;1;158;65.0;101;62;2;1;0;1;1;1
+87651;19022;1;167;87.0;120;80;2;1;0;0;0;1
+87652;17543;1;167;58.0;120;80;1;1;0;0;1;0
+87653;21171;1;164;83.0;120;80;1;1;0;0;1;1
+87657;18257;2;185;78.0;150;100;1;1;0;0;1;1
+87658;16821;1;150;51.0;120;60;1;1;0;0;1;0
+87662;20557;1;165;72.0;150;90;2;1;0;0;1;1
+87663;21204;1;168;78.0;130;80;1;1;0;0;1;0
+87664;17660;2;170;85.0;130;90;1;3;0;0;1;1
+87666;21126;1;160;84.0;140;90;3;1;0;0;0;1
+87668;21734;1;164;50.0;130;80;3;1;0;0;1;1
+87669;15862;1;168;65.0;120;80;1;1;0;0;1;0
+87670;18864;1;149;56.0;140;80;3;1;0;0;1;1
+87671;20483;2;174;81.0;180;100;1;1;0;0;1;1
+87672;23269;2;169;64.0;120;80;1;1;0;1;0;1
+87674;19475;1;160;60.0;140;1000;1;1;0;0;1;1
+87675;20328;1;158;85.0;120;80;1;1;0;0;0;1
+87676;15085;1;153;65.0;120;80;1;1;0;0;0;1
+87682;20310;1;162;70.0;120;80;1;1;0;0;1;0
+87684;20603;1;165;100.0;150;90;2;1;0;0;1;1
+87685;14670;1;168;120.0;130;90;1;1;0;0;1;1
+87686;20366;1;172;86.0;120;80;1;1;0;0;1;1
+87688;23249;1;167;85.0;120;80;1;1;0;0;0;1
+87689;21751;1;156;83.0;140;90;3;1;0;0;1;1
+87690;19539;1;170;72.0;130;90;1;1;0;0;1;1
+87695;22070;2;156;80.0;140;90;1;1;1;1;1;1
+87697;20233;1;163;70.0;115;65;1;1;1;0;1;0
+87699;17051;2;175;79.0;110;80;1;1;0;0;1;0
+87700;23541;1;160;58.0;120;80;1;1;0;0;1;0
+87701;21835;2;180;97.0;140;90;1;1;0;0;1;1
+87702;21714;1;164;93.0;110;80;3;1;1;0;0;0
+87704;23307;1;154;72.0;130;90;3;1;0;1;0;0
+87705;22744;2;163;75.0;100;60;1;1;0;0;1;0
+87707;17398;2;173;103.0;120;80;1;1;0;0;0;1
+87709;17394;1;180;95.0;120;80;1;1;0;0;0;0
+87710;23346;1;165;95.0;110;80;3;3;0;0;1;1
+87711;18392;2;165;70.0;120;80;1;1;0;0;1;0
+87712;21071;1;157;80.0;140;90;2;2;0;0;1;0
+87713;14667;2;163;73.0;110;70;1;1;0;0;1;1
+87714;20606;1;163;62.0;130;90;1;1;0;0;1;0
+87717;19215;2;168;70.0;110;70;1;1;0;0;1;0
+87718;20521;1;168;68.0;120;80;1;1;0;0;1;0
+87719;17340;2;155;64.0;110;70;1;1;1;1;0;1
+87720;22203;2;163;71.0;120;80;1;1;0;0;1;0
+87721;15131;1;164;63.0;120;80;1;1;0;0;1;0
+87727;19638;1;167;61.0;120;90;1;1;0;0;1;1
+87728;14628;2;172;56.0;120;80;1;1;1;0;1;0
+87729;21163;1;168;60.0;120;80;1;1;0;0;1;0
+87730;22673;2;172;103.0;180;80;1;1;0;0;0;1
+87732;18815;1;156;89.0;120;80;1;1;0;0;0;1
+87733;18899;1;164;69.0;120;80;1;1;0;0;1;0
+87735;19116;1;158;57.0;120;80;1;1;0;0;0;1
+87736;23334;1;160;80.0;110;70;1;1;0;0;1;1
+87737;15107;2;170;69.0;110;80;1;1;0;0;1;0
+87738;19674;1;160;98.0;120;80;1;1;0;0;1;1
+87740;21863;1;159;96.0;120;80;1;1;0;0;1;0
+87741;22668;1;168;75.0;150;90;2;3;0;0;1;1
+87743;14597;2;175;72.0;110;70;1;1;0;0;1;0
+87744;19925;1;175;78.0;120;80;1;1;0;0;1;0
+87745;21171;2;173;109.0;130;90;1;1;0;0;1;1
+87746;20326;1;160;79.0;120;60;1;1;0;0;1;1
+87747;19793;1;170;120.0;140;90;2;1;0;0;1;1
+87750;14635;1;166;81.0;100;70;1;1;0;0;0;0
+87751;21747;2;170;77.0;120;80;1;1;1;0;1;1
+87752;16164;1;131;61.0;120;80;2;2;0;0;1;1
+87753;17549;1;170;79.0;140;100;2;1;0;1;1;1
+87754;16089;1;162;62.0;130;80;1;1;0;0;0;1
+87755;20507;1;161;85.0;130;90;1;1;0;0;1;1
+87759;23217;1;166;117.0;160;1100;1;1;0;0;1;1
+87760;19647;1;161;83.0;150;80;3;1;0;0;0;1
+87761;18358;1;156;71.0;120;80;1;1;0;0;1;0
+87762;21809;1;155;83.0;120;80;1;1;0;0;1;1
+87763;19979;1;162;67.0;130;90;1;1;0;0;1;1
+87764;17550;1;159;72.0;120;80;1;1;0;0;1;0
+87766;20965;1;160;63.0;120;80;1;1;0;0;1;0
+87768;21890;1;145;58.0;110;70;3;1;0;1;1;1
+87769;20533;1;148;56.0;110;70;2;1;0;0;1;1
+87771;21045;1;157;85.0;110;70;1;1;0;0;1;0
+87772;20990;2;180;100.0;120;80;1;1;0;0;1;0
+87773;22781;1;164;77.0;150;100;1;2;0;0;1;0
+87774;14713;1;164;66.0;120;80;1;1;0;0;1;0
+87775;18999;1;160;60.0;120;80;2;3;0;0;1;1
+87776;21911;1;152;82.0;140;100;1;1;0;0;1;1
+87777;19870;1;170;72.0;120;80;1;1;0;0;1;1
+87778;16792;1;166;83.0;115;80;1;2;0;0;1;1
+87780;15209;1;161;86.0;120;80;1;2;0;0;0;0
+87781;16767;1;146;73.0;150;100;1;1;0;0;0;1
+87785;19520;1;160;60.0;120;80;1;1;0;0;1;0
+87786;23270;1;169;69.0;150;100;2;1;0;0;0;1
+87787;22809;1;152;52.0;130;90;1;1;0;0;1;1
+87788;16100;1;169;70.0;130;80;1;1;0;0;1;1
+87790;21342;2;181;79.0;160;80;1;1;0;0;1;1
+87791;18498;2;175;78.0;120;80;1;1;0;0;1;0
+87792;18247;2;179;104.0;160;80;1;1;0;0;0;1
+87793;16730;1;158;62.0;120;80;1;1;0;0;1;0
+87794;21022;2;174;75.0;150;100;1;1;0;0;0;1
+87795;18323;1;164;64.0;120;80;1;1;0;0;1;0
+87796;15450;2;157;53.0;120;80;1;1;1;1;1;0
+87797;16940;1;156;56.0;110;70;1;1;0;0;1;0
+87799;19978;1;151;91.0;120;80;1;1;0;0;1;0
+87800;19626;1;164;75.0;110;70;1;1;0;0;1;0
+87802;18725;1;168;73.0;120;80;2;1;0;0;1;0
+87803;23212;1;161;71.0;130;80;1;1;0;0;1;1
+87804;17471;2;170;85.0;130;90;1;1;0;0;0;1
+87805;16836;1;150;51.0;120;80;1;1;0;0;1;1
+87806;18134;2;177;81.0;110;80;1;1;0;0;1;1
+87808;15250;1;156;65.0;140;90;2;2;0;0;0;0
+87809;22372;1;172;73.0;140;90;1;1;0;0;1;1
+87810;21241;2;170;74.0;120;80;1;1;0;0;1;0
+87811;20355;1;162;61.0;120;80;1;1;0;0;1;0
+87812;21344;1;153;97.0;120;80;2;1;0;0;1;1
+87813;18347;1;165;73.0;100;80;2;1;0;0;0;0
+87814;22593;1;153;79.0;110;70;1;1;0;0;1;1
+87815;22446;1;156;80.0;120;80;3;1;0;0;0;1
+87816;17375;1;162;110.0;110;60;1;3;0;0;0;0
+87817;18306;2;161;75.0;125;90;1;1;0;0;1;0
+87818;17598;2;173;67.0;120;70;1;1;0;0;1;0
+87819;18383;1;169;63.0;150;90;1;1;0;0;1;1
+87820;21003;1;151;87.0;90;60;1;1;0;0;1;0
+87821;22619;1;150;68.0;140;70;2;1;0;0;1;1
+87822;19729;1;167;57.0;110;90;1;1;0;0;1;0
+87823;19507;1;150;65.0;110;70;1;1;0;0;1;0
+87824;16104;1;158;83.0;130;80;2;2;0;0;0;0
+87825;21204;1;155;52.0;140;80;3;1;0;0;1;0
+87826;22008;1;158;71.0;100;70;1;2;0;0;1;0
+87827;14348;1;156;62.0;120;80;1;1;0;0;1;0
+87828;21623;1;168;70.0;120;80;1;2;0;0;1;1
+87829;19851;1;150;67.0;120;80;2;1;0;0;1;0
+87830;19190;1;160;61.0;130;70;1;1;0;0;1;0
+87831;19856;1;168;69.0;120;80;3;3;0;0;1;1
+87832;21328;1;165;65.0;120;80;1;1;0;0;0;0
+87833;14685;2;153;60.0;120;80;1;1;0;0;1;0
+87836;21306;2;168;72.0;140;80;2;1;0;0;1;1
+87837;16870;2;166;60.0;120;70;1;1;1;0;1;0
+87838;20325;1;161;62.0;120;80;1;1;0;0;0;0
+87842;19651;1;158;66.0;130;70;1;1;0;0;1;1
+87844;18759;2;168;93.0;140;80;3;1;1;0;1;1
+87846;18199;1;155;44.0;110;60;1;1;0;0;1;0
+87847;21032;1;175;87.0;140;70;1;1;0;0;1;0
+87848;20298;1;167;78.0;110;70;1;1;0;0;1;0
+87850;19635;1;160;61.0;110;70;1;1;0;0;1;0
+87851;19541;1;172;88.0;120;80;1;1;0;0;1;1
+87852;20533;1;164;61.0;120;80;1;1;0;0;1;0
+87853;22058;1;155;50.0;130;90;1;1;0;0;1;1
+87854;16651;1;169;65.0;100;70;1;1;0;0;1;0
+87856;23454;2;166;58.0;120;80;1;1;0;0;0;1
+87859;21011;1;170;55.0;140;80;2;2;0;0;0;0
+87861;19737;1;161;81.0;150;70;1;1;0;0;1;1
+87862;18081;2;175;68.0;220;100;1;1;0;0;1;0
+87863;18343;1;168;65.0;130;80;1;1;0;0;1;0
+87864;20391;2;160;61.0;120;80;3;1;0;0;1;0
+87865;19201;1;165;65.0;120;80;1;1;0;0;1;0
+87866;17613;1;150;80.0;180;100;2;1;0;0;1;1
+87867;16975;1;160;101.0;120;80;1;1;0;0;1;0
+87868;15236;1;160;78.0;95;60;1;1;1;0;1;0
+87869;21223;2;166;67.0;130;90;1;1;0;0;1;1
+87871;18326;1;155;80.0;120;80;1;1;0;0;1;0
+87872;18119;1;162;60.0;120;80;1;1;0;0;1;0
+87873;16147;1;158;70.0;140;80;2;1;0;0;1;1
+87876;21083;1;153;75.0;140;80;1;1;0;0;1;1
+87877;15369;1;165;65.0;120;80;1;1;0;0;1;0
+87879;18259;1;165;71.0;105;80;1;1;0;0;1;0
+87880;21972;1;163;68.0;130;70;1;1;0;0;0;1
+87881;18902;2;168;84.0;150;90;1;1;0;1;1;1
+87882;21741;2;176;92.0;150;90;1;1;0;0;1;1
+87883;21046;1;168;65.0;130;80;3;1;0;0;1;1
+87886;19797;2;170;85.0;130;90;1;1;0;0;1;0
+87887;22762;1;154;103.0;120;80;1;1;0;0;1;1
+87889;21320;1;143;81.0;130;90;3;1;0;0;1;1
+87890;18776;2;185;82.0;110;70;3;1;1;0;1;1
+87891;18766;1;144;80.0;110;80;1;1;0;0;1;0
+87892;18843;1;156;90.0;110;70;1;1;0;0;1;0
+87894;18946;2;172;75.0;120;80;1;1;0;0;1;0
+87895;23275;2;164;70.0;100;70;1;1;0;0;0;1
+87896;23200;1;154;45.0;90;60;1;1;0;0;1;1
+87897;15910;1;160;75.0;130;89;2;2;0;0;1;1
+87898;21930;1;152;60.0;150;90;1;1;0;0;1;1
+87902;19610;1;175;70.0;130;80;2;1;0;0;0;0
+87903;18963;1;160;55.0;120;90;1;1;0;0;1;0
+87906;21064;2;163;72.0;140;70;2;1;0;0;1;1
+87909;23577;2;160;67.0;120;70;1;1;0;0;1;1
+87910;22855;1;165;85.0;120;80;3;3;0;0;1;0
+87911;18942;1;165;64.0;120;80;1;1;0;0;0;0
+87912;19089;2;167;80.0;150;100;1;1;1;0;1;0
+87913;22709;2;164;66.0;120;80;1;1;0;0;1;0
+87914;18318;1;154;60.0;110;60;1;1;0;0;1;0
+87917;18329;1;160;76.0;130;85;1;2;0;0;1;0
+87918;20382;2;168;69.0;120;90;1;1;0;0;1;0
+87919;19709;2;162;60.0;120;90;1;1;0;0;1;0
+87920;23291;1;158;63.0;140;80;1;2;0;0;1;1
+87921;20986;1;145;65.0;110;70;1;1;0;0;0;1
+87922;18989;2;165;69.0;120;80;1;1;0;0;0;0
+87923;21351;2;166;75.0;130;80;1;3;0;0;1;0
+87924;22088;1;156;67.0;180;1000;1;1;0;0;1;1
+87925;21059;1;158;103.0;140;90;3;1;0;0;0;1
+87927;16624;1;156;62.0;160;90;3;3;0;0;1;1
+87929;18826;1;163;98.0;120;80;1;1;0;0;1;1
+87930;18286;1;164;67.0;130;80;1;1;0;0;1;1
+87932;18165;1;158;98.0;140;90;1;1;0;0;1;1
+87933;18919;1;167;75.0;120;85;1;1;0;0;1;1
+87934;19875;1;168;79.0;120;80;1;1;0;0;1;0
+87935;22674;1;161;96.0;130;70;3;3;0;0;1;1
+87936;19752;2;166;56.0;100;60;1;1;0;0;1;0
+87938;23354;1;149;52.0;125;100;3;3;0;0;1;0
+87939;18811;2;167;65.0;120;80;1;1;1;1;1;0
+87940;20398;1;150;90.0;130;80;1;1;0;0;1;1
+87941;19118;1;156;58.0;140;90;1;1;0;0;1;1
+87943;17487;2;179;87.0;140;90;1;1;1;0;0;1
+87944;16695;2;166;67.0;140;90;1;1;1;1;1;0
+87945;21950;1;168;65.0;120;80;1;1;0;0;1;1
+87946;19727;1;165;76.0;130;90;1;1;0;0;0;1
+87947;22638;1;161;71.0;162;98;3;1;0;0;1;1
+87948;22770;1;151;83.0;130;80;1;1;0;0;1;1
+87949;18320;2;120;80.0;120;80;1;1;0;0;1;0
+87950;21142;2;174;95.0;150;80;1;1;0;0;1;0
+87951;16771;1;174;65.0;120;90;2;2;0;0;0;1
+87953;17394;2;171;88.0;120;80;1;1;0;0;1;0
+87954;18525;1;159;61.0;120;80;1;1;0;0;0;1
+87955;22635;1;148;57.0;140;80;1;1;0;0;1;1
+87956;15350;1;150;61.0;130;80;1;1;0;0;1;0
+87957;18006;2;166;108.0;120;80;1;2;0;0;1;0
+87959;20278;2;160;80.0;140;90;1;1;0;0;1;1
+87962;15881;1;154;73.0;120;80;1;1;0;0;0;0
+87963;21836;1;166;74.0;110;80;2;1;0;0;1;1
+87964;20317;1;176;74.0;120;80;1;1;0;0;1;0
+87966;23239;2;163;90.0;180;100;2;1;0;0;0;1
+87967;20983;1;164;96.0;120;80;1;1;0;0;1;1
+87968;21876;2;176;105.0;130;90;3;2;0;0;0;1
+87969;15341;2;170;80.0;120;80;1;1;0;0;0;0
+87971;22467;2;169;93.0;160;100;3;1;0;0;1;1
+87972;18503;1;159;61.0;120;80;1;1;0;0;1;0
+87973;19728;1;154;68.0;120;80;1;1;0;0;1;1
+87975;14691;1;165;65.0;120;80;1;1;0;0;0;0
+87976;19609;1;154;54.0;120;80;1;1;0;0;1;0
+87977;18933;1;167;99.0;120;70;1;1;0;0;1;0
+87979;21296;1;166;85.0;130;80;1;3;0;0;1;1
+87980;16526;2;181;104.0;140;90;3;1;0;0;0;0
+87982;18073;2;164;93.0;180;90;1;1;1;0;1;1
+87984;15104;2;170;70.0;120;80;1;1;1;0;1;0
+87987;19826;1;149;69.0;120;80;1;1;0;0;1;1
+87989;16789;2;165;66.0;140;90;2;1;0;0;0;1
+87990;20303;2;163;75.0;120;80;3;3;0;0;1;0
+87992;23365;2;178;82.0;140;90;2;2;0;0;1;1
+87993;19560;1;156;97.0;130;90;1;1;0;0;1;1
+87994;16791;1;167;69.0;110;80;1;1;0;0;1;1
+87996;21149;1;165;64.0;110;70;1;1;0;0;1;0
+87997;17367;1;160;86.0;130;90;1;1;0;0;1;1
+87998;23406;1;162;75.0;130;80;1;1;0;0;1;1
+87999;21648;1;169;69.0;120;80;1;1;0;0;1;0
+88000;20366;1;150;76.0;130;80;3;1;0;0;0;1
+88001;18427;1;165;78.0;110;70;1;1;0;0;1;0
+88002;18976;1;158;72.0;130;80;1;1;0;0;1;0
+88003;19808;1;159;60.0;130;80;1;1;0;0;1;0
+88004;17513;2;168;67.0;130;70;1;1;0;0;1;1
+88006;20576;1;158;78.0;130;80;1;2;0;0;1;0
+88008;20448;1;165;65.0;120;80;1;3;0;0;0;0
+88009;15844;1;164;75.0;120;80;1;1;0;0;1;0
+88010;14706;1;156;55.0;120;80;1;1;0;0;1;0
+88012;17520;2;167;62.0;120;80;2;1;0;0;1;0
+88013;19714;1;156;69.0;120;80;1;1;0;1;1;1
+88015;23373;2;172;84.0;120;70;3;1;0;0;1;0
+88016;23290;2;182;78.0;130;80;1;1;0;0;1;0
+88017;18994;2;170;75.0;120;80;1;1;0;0;0;1
+88019;19492;1;164;94.0;130;90;3;1;0;1;0;1
+88020;17662;1;172;82.0;110;70;1;1;0;0;1;0
+88021;19709;1;170;70.0;120;90;1;1;0;0;0;0
+88022;15859;2;175;107.0;110;70;1;1;0;0;1;1
+88024;18240;1;160;92.0;130;80;2;1;0;0;1;0
+88026;18405;1;165;65.0;120;80;1;1;0;0;1;1
+88027;23475;1;171;73.0;150;1000;1;1;0;0;1;1
+88029;19123;1;169;69.0;120;80;1;1;0;0;1;0
+88030;20539;2;164;92.0;160;90;1;1;0;0;1;1
+88032;19444;1;158;90.0;140;100;1;2;0;0;0;0
+88033;21232;2;166;63.0;110;60;1;1;0;1;1;0
+88034;15537;2;165;64.0;120;80;1;1;0;1;1;0
+88035;16768;2;171;69.0;120;80;1;1;0;0;1;0
+88036;19834;1;174;61.0;120;80;1;1;0;0;0;0
+88037;20370;1;155;64.0;110;70;2;1;0;0;1;0
+88038;17646;2;168;60.0;120;80;1;1;0;0;1;1
+88039;16725;2;169;63.0;140;90;1;1;0;0;0;0
+88040;15292;1;164;62.0;110;70;1;1;0;0;0;0
+88041;20975;2;183;87.0;140;90;2;1;0;0;1;0
+88043;22034;1;170;80.0;120;80;2;1;0;0;1;0
+88044;21737;1;165;55.0;140;80;3;3;0;0;0;1
+88046;22484;2;167;63.0;120;80;1;1;0;0;1;1
+88047;18811;2;171;85.0;140;90;1;1;0;0;1;1
+88048;16829;2;166;83.0;110;70;1;1;0;0;1;0
+88050;21353;1;154;72.0;120;80;1;1;0;0;1;0
+88051;19119;1;166;68.0;140;80;2;2;0;0;1;1
+88052;21231;1;158;58.0;120;80;1;1;0;0;1;1
+88053;15824;2;177;90.0;110;70;1;1;0;0;1;0
+88054;19814;2;169;68.0;140;90;2;1;0;0;1;1
+88056;15585;2;168;70.0;120;70;1;1;0;0;1;0
+88057;14722;1;152;58.0;120;80;3;3;0;0;1;0
+88058;15983;1;156;74.0;120;80;1;1;0;1;0;0
+88060;19117;2;170;70.0;120;80;1;1;0;0;1;0
+88061;19700;1;156;53.0;120;80;3;3;0;0;1;0
+88062;18838;1;154;73.0;130;90;2;2;0;0;1;0
+88064;14707;1;156;78.0;110;70;1;1;0;0;1;0
+88065;17448;1;160;98.0;110;80;2;1;0;0;1;0
+88068;21184;1;150;80.0;130;80;1;1;0;0;1;1
+88069;19594;2;173;72.0;140;80;1;1;0;0;0;1
+88070;20251;1;165;99.0;160;100;3;1;0;0;1;1
+88071;21790;1;151;62.0;160;90;1;1;0;0;1;1
+88072;20249;1;168;64.0;120;80;1;1;0;0;1;0
+88073;21695;1;169;60.0;110;70;1;1;0;0;1;0
+88075;17251;2;169;83.0;140;90;1;1;0;0;1;1
+88076;16219;2;170;75.0;120;70;1;1;0;0;1;0
+88077;18740;1;156;84.0;140;1000;1;1;0;0;1;1
+88078;22333;1;159;105.0;130;70;1;1;0;0;1;0
+88081;16517;2;175;95.0;130;80;3;3;1;0;1;1
+88082;19098;1;165;95.0;160;80;1;1;0;0;1;1
+88083;23305;2;158;63.0;120;80;3;1;0;0;1;1
+88084;17629;1;157;59.0;120;80;1;1;0;0;1;0
+88086;21115;2;162;88.0;120;80;1;1;0;0;1;1
+88087;23371;2;169;85.0;120;80;1;1;0;0;0;1
+88090;20346;2;172;82.0;140;80;3;1;0;0;1;0
+88092;21189;2;165;68.0;120;80;1;1;0;0;1;1
+88093;19927;1;160;56.0;110;60;3;3;0;0;1;0
+88094;20300;1;165;60.0;120;80;1;1;0;0;0;1
+88095;23131;1;150;58.0;120;80;1;1;0;0;1;0
+88097;19430;1;163;56.0;150;90;3;2;0;0;1;0
+88099;14391;1;175;68.0;110;70;1;1;0;0;1;0
+88100;19089;1;163;48.0;110;80;1;1;0;0;1;0
+88101;16035;1;167;110.0;160;100;2;1;0;0;1;1
+88103;15308;2;170;72.0;120;80;1;3;0;0;1;1
+88106;20534;1;164;70.0;150;90;2;1;0;0;1;1
+88109;22014;1;165;60.0;120;70;3;3;0;0;0;0
+88111;22528;1;164;102.0;144;90;3;2;0;0;1;1
+88112;17688;1;175;75.0;120;80;1;1;0;0;0;1
+88114;17565;2;161;58.0;120;80;1;1;1;0;1;0
+88115;20460;2;168;94.0;140;100;1;1;1;0;1;1
+88116;21736;2;179;87.0;150;90;2;1;0;0;1;1
+88117;23306;2;180;85.0;140;90;1;1;0;0;1;1
+88118;21016;1;157;100.0;140;90;1;1;0;0;1;1
+88119;20944;2;169;93.0;150;90;2;1;0;1;1;1
+88122;20356;1;158;69.0;140;90;1;1;0;0;1;0
+88126;15197;1;167;74.0;140;90;1;1;0;0;0;0
+88127;20278;1;157;53.0;100;70;1;1;0;0;1;0
+88128;23460;1;167;65.0;130;80;1;1;0;0;1;1
+88129;19541;1;162;74.0;120;79;1;1;0;0;1;1
+88130;21737;1;157;80.0;140;90;2;1;0;0;1;0
+88131;19649;2;169;63.0;120;80;1;1;0;0;1;1
+88133;21292;1;160;79.0;140;90;1;1;0;0;1;1
+88135;21296;2;169;75.0;150;90;2;1;0;0;1;1
+88136;18905;1;160;90.0;180;100;1;1;0;1;1;1
+88140;21747;1;165;60.0;140;80;3;1;0;0;1;1
+88141;22443;2;165;70.0;120;70;3;1;0;1;1;0
+88142;23279;1;158;71.0;130;79;1;1;0;0;1;1
+88144;20401;1;165;95.0;120;80;1;1;0;0;0;1
+88145;18195;1;180;70.0;140;90;1;1;0;0;1;0
+88146;19759;1;162;76.0;140;80;3;1;0;0;1;1
+88147;19533;2;170;98.0;150;90;1;1;1;0;0;1
+88149;23266;1;145;45.0;100;70;1;1;0;0;1;0
+88152;23285;2;169;79.0;140;80;1;1;0;0;1;1
+88153;21335;1;169;62.0;120;80;1;1;0;0;1;0
+88154;22568;1;160;77.0;150;90;3;3;0;1;1;1
+88157;18073;1;171;58.0;130;90;1;1;0;0;1;0
+88158;15289;1;153;54.0;100;70;1;1;0;0;0;0
+88159;18928;2;172;78.0;140;80;3;1;0;0;1;1
+88162;21878;1;172;68.0;120;70;3;1;0;0;1;1
+88164;17510;1;164;78.0;120;80;1;2;0;0;1;1
+88165;18602;1;165;65.0;120;79;3;3;0;0;0;0
+88166;17249;1;170;80.0;120;80;1;1;0;0;0;0
+88167;21769;1;142;105.0;160;90;1;2;0;0;1;1
+88168;22584;1;158;76.0;180;1100;1;1;0;0;1;1
+88170;23427;1;160;71.0;140;90;3;2;0;0;1;1
+88171;21808;1;150;60.0;110;80;1;1;0;0;1;0
+88172;20199;1;156;58.0;132;83;1;1;0;0;1;0
+88174;15814;1;158;57.0;110;70;1;1;1;0;1;0
+88179;17481;1;147;41.0;90;60;2;1;0;0;1;0
+88180;16738;1;174;84.0;120;80;1;1;0;0;1;1
+88182;19863;2;167;83.0;160;100;1;1;0;0;0;1
+88183;16185;2;168;70.0;120;80;1;1;0;0;1;0
+88184;23355;2;156;60.0;110;70;1;1;0;0;1;1
+88189;15989;1;162;72.0;110;60;1;1;0;0;1;0
+88191;15519;1;161;60.0;110;70;1;1;0;0;0;0
+88192;20486;1;160;58.0;130;90;1;1;0;0;1;1
+88193;19128;1;152;55.0;110;70;2;1;0;0;1;1
+88194;19812;2;155;55.0;120;80;1;1;0;0;1;0
+88195;15176;1;147;72.0;130;80;3;3;0;1;1;1
+88197;21706;1;178;96.0;120;80;1;1;0;0;1;1
+88198;16660;1;170;93.0;120;80;3;3;0;0;1;1
+88199;20424;1;165;68.0;120;80;1;1;0;0;1;1
+88201;15200;1;171;71.0;120;80;1;1;0;0;0;0
+88202;19836;1;159;60.0;100;70;1;1;0;0;1;0
+88204;21194;2;169;81.0;140;100;3;1;0;0;1;1
+88205;23425;1;159;93.0;120;80;1;1;0;0;0;1
+88206;20481;1;165;65.0;120;79;1;1;0;0;0;0
+88207;18550;1;158;63.0;120;80;1;1;0;0;1;0
+88208;19765;2;178;85.0;120;80;1;1;0;0;0;1
+88209;19792;1;167;84.0;120;70;1;1;0;0;1;1
+88210;20959;1;163;91.0;145;90;1;1;0;0;1;1
+88211;19678;1;158;64.0;120;80;1;1;0;0;1;1
+88214;21944;1;163;84.0;200;100;1;1;0;0;0;1
+88215;18938;1;168;74.0;120;80;1;1;0;0;1;0
+88217;18921;1;167;58.0;110;70;1;1;0;0;1;0
+88218;20431;1;167;94.0;160;80;1;1;0;0;1;1
+88219;17467;2;182;94.0;150;90;3;1;0;0;1;1
+88220;18956;2;165;178.0;120;80;1;1;0;0;1;0
+88222;18518;2;167;63.0;120;80;1;1;0;0;0;0
+88223;18008;1;162;68.0;110;80;1;1;0;0;1;0
+88224;20470;2;178;82.0;140;80;1;1;0;0;1;1
+88226;19860;1;157;57.0;90;60;1;1;0;0;1;0
+88227;14420;1;161;62.0;120;80;1;1;0;0;1;0
+88229;16796;1;156;62.0;110;70;1;1;0;0;1;0
+88230;21844;2;169;76.0;140;80;3;2;0;0;1;1
+88232;20766;1;160;75.0;140;90;3;1;0;0;1;0
+88233;19046;2;172;90.0;170;104;1;2;0;1;1;1
+88234;21098;1;164;66.0;120;80;1;1;0;0;1;0
+88235;17412;2;171;61.0;110;80;2;2;1;0;1;0
+88237;23488;1;179;83.0;160;120;2;2;0;0;0;1
+88238;15811;2;193;120.0;120;80;3;2;0;0;1;1
+88239;23159;1;162;80.0;180;100;2;2;0;0;1;1
+88240;19532;2;150;53.0;130;80;1;2;0;0;1;0
+88241;21440;2;172;82.0;120;80;1;1;0;0;1;0
+88242;16635;1;156;62.0;120;80;1;1;0;0;0;0
+88243;19131;2;159;59.0;120;80;1;1;0;1;1;0
+88245;17640;1;172;75.0;120;70;2;1;0;0;0;0
+88246;20459;1;152;75.0;140;90;1;1;0;0;1;1
+88247;20344;2;168;67.0;120;80;1;1;0;0;0;0
+88248;20209;1;158;78.0;140;80;1;1;0;0;1;1
+88249;21333;2;172;70.0;160;80;1;1;0;0;1;1
+88250;21168;1;154;77.0;140;80;1;1;0;0;0;1
+88251;14587;2;171;59.0;90;80;1;1;1;1;1;0
+88253;20340;2;178;120.0;130;80;2;2;0;0;1;1
+88254;20497;2;165;79.0;130;80;1;1;0;0;0;1
+88259;14446;1;159;84.0;110;70;1;2;0;0;1;0
+88260;21880;1;163;69.0;120;80;3;3;0;0;1;1
+88261;22496;2;160;60.0;120;80;1;1;0;0;1;0
+88262;19651;1;175;76.0;140;100;1;1;0;0;0;1
+88263;20243;1;151;93.0;130;90;1;1;0;0;1;0
+88264;18046;2;182;100.0;130;90;1;1;0;0;1;0
+88266;20474;2;167;92.0;120;70;1;1;0;0;0;0
+88270;20290;1;168;66.0;110;70;1;1;0;0;1;0
+88273;19284;1;153;70.0;120;80;1;1;0;0;1;0
+88276;19039;1;165;72.0;120;90;1;1;0;0;1;0
+88277;18310;2;170;73.0;110;70;1;1;0;0;1;1
+88278;16151;2;169;72.0;165;100;1;2;1;1;1;1
+88280;15296;2;161;68.0;120;70;1;1;0;0;1;1
+88281;19822;1;163;80.0;140;90;1;1;0;0;1;1
+88282;22102;1;155;57.0;120;80;1;1;0;0;1;1
+88285;21874;1;168;71.0;110;70;1;1;0;0;0;0
+88286;19697;2;166;79.0;162;98;1;1;0;0;0;1
+88288;19024;2;167;55.0;120;80;1;2;0;0;1;1
+88291;14720;1;164;99.0;130;80;1;1;0;0;0;0
+88292;21992;1;160;60.0;110;69;1;1;0;0;1;1
+88293;18243;2;168;58.0;100;60;1;1;1;0;1;0
+88295;19556;2;166;77.0;150;90;1;1;0;0;1;1
+88296;18182;1;169;65.0;120;80;1;1;0;0;1;0
+88298;19570;1;169;69.0;120;80;1;1;0;0;1;0
+88299;21200;1;168;74.0;150;90;2;1;0;0;1;1
+88300;18723;2;166;83.0;125;85;2;1;0;0;1;0
+88301;21361;2;165;66.0;120;80;1;1;0;0;1;1
+88302;17329;1;158;59.0;140;80;1;1;0;0;1;0
+88303;20426;1;161;49.0;120;80;1;1;0;0;1;0
+88305;21122;2;170;68.0;120;80;1;1;0;0;1;1
+88307;20452;2;170;59.0;120;80;1;1;0;0;1;0
+88308;17537;2;178;110.0;140;80;1;1;0;0;1;0
+88309;20995;2;152;52.0;120;80;1;3;1;1;1;1
+88312;18059;2;170;69.0;130;90;1;1;0;0;0;1
+88313;18315;2;172;86.0;130;80;1;1;0;0;0;1
+88314;14858;1;150;55.0;90;70;1;1;0;0;1;0
+88315;15913;2;174;70.0;120;79;1;1;0;0;1;0
+88317;15959;1;164;58.0;140;80;1;1;0;0;1;1
+88318;16631;1;165;65.0;110;80;1;1;0;0;1;0
+88320;22621;2;175;75.0;110;70;3;1;0;0;1;1
+88322;20315;1;175;88.0;140;90;3;1;0;0;1;1
+88331;22640;1;148;69.0;130;80;2;1;0;0;0;1
+88332;16899;2;170;86.0;140;90;2;1;0;0;1;1
+88333;15986;1;160;62.0;110;70;2;1;0;0;1;0
+88334;22635;1;160;43.0;110;90;2;1;0;0;1;0
+88335;21892;2;177;102.0;140;90;3;3;0;1;1;1
+88336;16858;1;168;60.0;120;60;1;1;0;0;0;0
+88338;20262;1;153;64.0;120;70;1;1;0;0;0;0
+88339;23492;1;171;74.0;120;80;1;1;0;0;1;0
+88340;22105;1;165;72.0;120;79;1;1;0;0;1;0
+88345;18464;2;165;77.0;130;90;1;1;0;0;1;1
+88346;22629;1;145;48.0;140;90;3;1;0;0;1;0
+88347;22571;1;155;54.0;150;100;1;1;0;0;0;1
+88350;22394;2;168;82.0;110;80;3;1;1;0;1;0
+88351;16694;1;170;58.0;140;90;2;1;0;0;0;1
+88352;14767;1;168;75.0;120;80;1;1;0;0;1;0
+88353;15910;1;166;103.0;120;80;2;1;0;0;1;0
+88354;16883;2;183;81.0;120;80;1;1;0;0;1;0
+88358;21935;2;163;99.0;120;80;1;1;0;0;1;0
+88359;20398;2;167;67.0;130;80;1;3;0;0;1;1
+88360;17614;1;161;60.0;110;70;1;1;0;0;1;1
+88361;21227;1;165;86.0;120;80;3;1;0;0;0;1
+88362;16102;2;170;56.0;120;80;1;1;0;0;1;0
+88363;23398;1;156;54.0;120;80;1;1;0;0;1;0
+88364;15325;1;162;58.0;110;60;1;1;0;0;1;0
+88367;19817;2;180;91.0;140;80;2;2;0;0;1;1
+88369;18205;1;174;78.0;120;80;1;1;0;0;0;0
+88370;20944;1;170;84.0;140;80;3;3;1;0;1;1
+88372;17737;2;165;60.0;120;80;1;1;0;0;0;0
+88375;19680;2;160;58.0;120;80;1;1;0;0;1;1
+88376;20459;2;176;76.0;120;60;1;1;0;0;1;0
+88377;20346;2;169;82.0;120;80;1;1;1;1;1;0
+88378;22606;1;154;57.0;130;80;1;1;0;0;1;1
+88380;16166;1;154;65.0;110;80;2;2;0;0;1;0
+88381;21928;1;160;100.0;140;70;1;1;0;0;1;1
+88382;19512;1;159;80.0;130;80;1;1;0;0;1;1
+88383;19779;1;156;55.0;130;85;1;1;0;1;1;0
+88384;23541;2;167;77.0;120;80;1;1;0;0;1;1
+88385;21826;2;159;87.0;130;80;1;1;0;0;0;0
+88386;18160;1;165;86.0;115;75;1;1;0;0;1;0
+88387;21160;2;173;83.0;150;95;1;1;0;0;1;1
+88388;18810;1;165;71.0;120;80;3;1;0;0;1;1
+88389;20603;1;168;70.0;120;80;3;3;0;0;1;1
+88390;21362;2;183;98.0;110;80;1;1;0;0;1;0
+88391;21051;1;151;53.0;100;70;1;1;0;0;1;0
+88392;20707;2;170;56.0;120;70;3;3;0;0;1;0
+88393;18336;1;164;80.0;120;80;1;1;0;0;1;0
+88394;16001;1;156;62.0;120;80;2;1;0;0;1;1
+88395;18265;2;162;56.0;120;80;1;1;0;0;1;1
+88396;23424;1;165;67.0;120;80;1;1;0;0;0;1
+88397;19127;1;149;95.0;120;80;1;1;0;0;1;0
+88399;21826;1;169;70.0;120;70;2;1;0;0;1;1
+88402;20311;1;161;87.0;110;80;1;2;0;0;1;0
+88408;20317;2;169;70.0;140;90;2;1;1;0;1;1
+88409;16124;2;159;65.0;120;80;1;1;0;0;1;0
+88411;22717;2;184;86.0;180;100;3;3;0;1;1;1
+88412;18483;2;173;71.0;140;90;3;3;1;1;1;0
+88413;15940;1;166;63.0;110;70;1;1;0;0;1;0
+88414;16730;1;160;72.0;110;70;1;1;0;0;1;0
+88416;19855;1;153;90.0;140;100;1;1;0;0;1;0
+88417;18189;2;172;80.0;140;90;1;1;0;0;1;1
+88418;18200;1;170;65.0;120;70;1;1;0;0;1;0
+88419;20788;2;179;81.0;120;80;1;1;0;0;0;0
+88420;19132;1;154;75.0;130;90;1;1;0;0;1;1
+88421;20439;1;165;105.0;120;80;2;1;0;0;1;0
+88422;15144;2;175;70.0;120;80;1;1;0;0;1;0
+88423;19034;1;161;97.0;100;70;1;1;0;0;0;1
+88424;21173;1;162;103.0;150;80;1;1;0;0;0;1
+88425;17634;1;162;77.0;120;80;1;1;0;0;1;0
+88427;16658;2;162;70.0;130;90;2;1;1;0;1;0
+88428;15564;2;162;68.0;120;80;1;1;0;0;1;0
+88432;16617;1;165;90.0;135;100;1;1;0;0;0;1
+88433;18495;1;169;54.0;128;90;3;3;1;0;1;0
+88434;19921;2;167;80.0;130;70;1;1;0;0;0;0
+88436;23266;2;162;70.0;140;80;1;1;0;0;0;1
+88437;16216;1;155;65.0;110;90;1;1;0;0;1;0
+88438;23441;1;164;97.0;150;90;3;1;0;0;1;1
+88439;19513;1;167;90.0;140;80;2;1;0;0;0;1
+88440;19023;2;174;86.0;150;90;1;1;0;0;1;1
+88441;19772;1;158;79.0;130;90;1;1;0;0;1;1
+88442;20583;1;165;65.0;135;80;3;3;0;0;1;1
+88443;20548;1;168;68.0;120;80;1;1;0;0;1;1
+88444;23231;1;160;62.0;110;70;1;1;0;0;1;0
+88447;23411;2;159;73.0;150;100;1;1;0;0;1;1
+88449;20933;1;158;85.0;140;80;1;1;0;0;0;1
+88450;21316;1;155;90.0;120;90;1;1;0;0;1;0
+88452;23131;2;184;109.0;130;80;3;3;1;0;1;0
+88453;21383;1;166;69.0;120;80;1;1;0;0;1;0
+88455;16277;1;159;105.0;120;80;1;1;0;0;1;1
+88457;20322;1;162;71.0;140;90;1;1;0;0;0;1
+88458;21956;2;162;69.0;100;80;2;1;1;0;1;0
+88459;14597;1;167;75.0;130;100;1;1;0;0;1;0
+88460;20976;2;161;69.0;120;80;2;1;0;0;0;1
+88461;18793;2;169;110.0;130;90;1;1;0;0;1;1
+88462;17422;1;161;86.0;140;80;1;1;0;0;1;1
+88464;16003;1;168;55.0;110;70;1;1;0;0;1;1
+88465;20258;1;168;69.0;120;80;1;1;0;0;1;1
+88466;23481;1;163;65.0;120;80;1;1;0;0;1;1
+88467;19579;1;148;60.0;140;90;1;1;0;0;1;1
+88468;18948;2;169;84.0;130;80;1;1;0;0;0;1
+88469;19196;1;168;76.0;110;70;1;1;0;0;1;0
+88470;22543;2;168;69.0;120;80;1;1;0;0;1;0
+88471;21868;1;158;70.0;120;80;1;1;0;0;1;0
+88472;20331;2;165;111.0;150;100;3;3;0;0;1;0
+88474;22550;1;168;72.0;120;80;1;1;0;0;1;0
+88475;17566;1;146;53.0;110;70;1;1;0;0;1;0
+88476;18660;1;158;96.0;140;90;1;1;0;0;1;1
+88478;18206;1;162;57.0;120;70;2;1;0;0;1;0
+88481;14614;2;170;74.0;100;70;1;1;0;0;1;0
+88482;18140;1;163;60.0;120;80;1;1;0;0;0;0
+88483;17022;2;160;72.0;140;90;1;1;0;0;1;0
+88484;18244;1;165;95.0;160;90;1;1;0;0;1;1
+88485;16809;2;173;85.0;110;70;1;1;1;0;1;0
+88487;15432;2;158;99.0;120;80;1;1;1;0;1;1
+88492;16739;1;166;62.0;120;80;1;1;0;0;1;0
+88493;20362;2;162;51.0;120;80;1;1;1;0;1;0
+88495;22753;1;155;70.0;160;100;1;1;0;0;1;1
+88496;23231;2;176;93.0;120;80;1;3;0;1;1;1
+88497;18181;1;167;66.0;140;90;1;1;0;0;1;1
+88498;23515;2;164;57.0;110;80;1;1;0;0;1;0
+88499;15360;2;160;72.0;130;80;1;1;0;0;1;0
+88501;19816;2;164;60.0;110;70;1;3;0;0;1;0
+88502;19539;1;155;57.0;120;70;1;1;0;0;1;0
+88503;19117;1;167;65.0;150;100;1;1;0;0;1;1
+88504;18312;1;169;65.0;120;90;1;1;0;0;1;1
+88506;17567;2;169;64.0;120;80;1;1;0;0;0;1
+88507;17292;1;168;75.0;120;80;1;1;0;0;1;0
+88509;19929;1;150;95.0;140;90;2;2;0;0;1;1
+88510;16649;1;160;60.0;140;90;3;3;0;0;1;0
+88511;20165;1;155;78.0;130;90;1;1;0;0;1;1
+88513;22497;2;165;57.0;140;80;1;1;0;0;1;1
+88514;20497;1;165;71.0;110;70;1;1;0;0;0;0
+88515;17295;1;161;67.0;140;90;1;1;0;0;0;1
+88516;20330;1;154;82.0;130;90;1;3;0;0;1;1
+88518;18094;2;167;72.0;120;80;1;1;0;0;1;0
+88519;18726;2;160;72.0;140;100;2;1;0;0;0;1
+88521;22607;1;176;85.0;120;80;3;1;0;0;1;1
+88523;16573;2;172;87.0;140;90;1;1;1;1;1;0
+88524;20526;1;156;72.0;120;80;1;2;0;0;0;1
+88525;18480;1;167;74.0;120;80;2;1;0;0;1;0
+88526;20503;1;150;71.0;120;80;1;1;0;0;0;1
+88528;18291;2;169;70.0;120;70;1;1;0;0;1;0
+88530;19720;2;176;89.0;120;70;1;1;1;1;1;0
+88531;22027;1;154;78.0;160;100;3;3;0;0;1;1
+88532;18781;1;158;48.0;140;90;1;1;0;0;0;1
+88533;21130;1;174;96.0;120;80;2;2;0;0;1;1
+88534;18123;2;170;100.0;120;80;1;1;0;0;1;0
+88536;18394;2;176;80.0;130;90;1;1;1;1;1;1
+88537;20972;1;162;75.0;120;80;1;1;0;0;0;0
+88539;19485;2;160;75.0;140;90;3;3;0;0;1;0
+88541;16948;2;164;67.0;120;80;1;1;0;0;1;1
+88543;16841;2;168;81.0;140;100;2;1;0;0;1;1
+88544;17382;2;182;82.0;120;80;1;1;1;1;1;0
+88546;15341;2;177;86.0;120;80;2;1;0;0;1;1
+88547;19794;2;172;79.0;120;80;1;1;1;0;1;0
+88550;22620;2;165;68.0;120;80;1;1;1;1;1;0
+88551;21761;1;166;108.0;140;90;3;3;0;0;1;1
+88552;20540;2;175;89.0;150;100;1;1;0;0;1;1
+88553;14580;1;164;67.0;150;80;3;1;0;0;1;1
+88556;19816;2;178;80.0;120;80;1;1;0;0;1;0
+88558;18366;2;165;65.0;140;90;1;1;0;0;1;1
+88559;18332;1;157;78.0;160;90;1;1;0;0;1;1
+88560;21257;1;154;71.0;100;70;1;1;0;0;1;1
+88561;16862;2;178;88.0;130;90;2;1;0;0;1;1
+88562;18257;2;169;73.2;150;90;1;1;1;1;1;1
+88563;20444;2;167;70.0;140;90;3;1;0;0;0;0
+88564;19016;2;150;64.0;120;80;1;1;0;0;1;0
+88566;22151;1;159;70.0;120;80;3;3;0;0;1;1
+88567;19896;1;162;79.0;160;100;2;2;0;0;1;1
+88568;15265;2;175;89.0;140;90;1;1;0;0;1;1
+88570;14634;1;162;68.0;120;80;1;1;0;0;1;0
+88572;18349;1;170;81.0;120;80;1;1;0;0;1;0
+88574;19668;2;169;69.0;120;80;3;3;0;0;1;0
+88575;23430;1;160;91.0;140;80;3;3;0;0;1;1
+88576;20990;1;161;85.0;130;80;1;1;0;0;1;1
+88577;21085;1;169;75.0;120;30;1;1;0;0;1;0
+88578;17615;2;164;66.0;110;70;1;1;1;1;1;0
+88581;20501;1;175;82.0;120;80;3;3;0;0;0;1
+88583;19460;1;165;98.0;170;90;2;1;0;0;1;1
+88584;18966;1;160;81.0;160;90;1;1;0;0;1;1
+88585;14589;2;167;68.0;110;70;1;1;1;1;1;0
+88586;23249;1;160;62.0;120;80;1;1;0;0;0;1
+88587;17308;2;170;71.0;160;90;1;1;1;1;1;1
+88589;15318;1;153;50.0;110;60;1;1;0;0;1;1
+88590;19151;2;163;61.0;120;80;1;1;0;0;1;0
+88593;23442;1;154;73.0;140;90;1;2;0;0;1;1
+88594;22612;1;165;63.0;120;80;1;1;0;0;0;0
+88596;21903;1;162;71.0;150;80;1;1;0;0;1;1
+88597;22014;1;161;85.0;110;70;1;1;0;0;1;0
+88598;19955;2;169;76.0;150;90;3;1;1;0;1;1
+88599;15415;2;168;71.0;120;80;2;1;0;0;1;1
+88600;23348;1;150;53.0;150;80;1;1;0;0;1;1
+88601;18261;2;178;85.0;120;90;1;1;1;0;0;0
+88603;19144;1;175;80.0;120;80;1;1;0;0;1;0
+88604;19731;1;156;53.0;110;70;1;3;0;0;1;0
+88607;19794;1;160;71.0;140;90;1;1;0;0;0;1
+88608;16838;2;178;91.0;120;70;2;2;0;0;1;1
+88609;21166;2;180;119.0;120;80;1;1;0;0;0;0
+88610;19480;1;152;70.0;130;80;3;1;0;0;0;1
+88611;15415;1;156;61.0;120;70;1;1;0;0;0;0
+88612;21326;1;160;96.0;120;70;3;1;0;1;1;0
+88613;15198;2;171;90.0;140;90;3;1;1;1;1;1
+88617;20313;2;161;77.0;130;90;1;1;0;0;1;1
+88618;14676;2;173;60.0;120;80;1;1;1;0;1;0
+88620;21143;2;172;81.0;130;70;1;1;0;0;0;1
+88621;18279;2;165;70.0;120;80;1;1;0;0;1;0
+88622;19522;1;159;91.0;119;78;2;1;0;0;0;0
+88624;18145;2;175;112.0;140;90;1;1;0;0;1;1
+88625;15842;2;169;75.0;120;80;2;1;0;0;1;0
+88626;22499;1;160;79.0;130;90;1;1;0;0;1;1
+88628;16106;1;153;88.0;140;95;1;2;0;0;1;1
+88629;15241;2;169;52.0;120;80;1;1;0;0;0;1
+88630;21915;2;167;83.0;120;80;3;3;0;0;1;1
+88631;18031;1;170;73.0;120;80;1;1;0;0;0;1
+88632;22031;1;160;68.0;120;80;1;1;0;0;1;0
+88633;15080;1;170;89.0;110;80;1;1;0;0;1;0
+88635;16849;2;177;84.0;130;90;3;1;1;1;0;1
+88636;16054;1;157;59.0;120;60;1;1;0;0;1;0
+88637;15957;1;154;62.0;130;90;1;1;0;0;1;0
+88639;19587;1;166;69.0;120;80;1;1;0;0;1;1
+88640;17388;2;166;75.0;140;90;2;2;0;0;1;1
+88641;23183;1;167;82.3;110;90;3;1;0;0;1;1
+88642;16946;2;170;66.0;110;70;1;1;0;0;0;0
+88643;21137;1;170;68.0;120;80;1;1;0;0;1;0
+88644;20446;1;167;89.0;160;90;1;1;0;0;1;1
+88645;16739;1;155;79.0;130;90;3;3;0;0;1;0
+88647;15164;2;184;94.0;130;80;2;1;1;0;0;1
+88648;18988;1;158;68.0;110;80;1;1;0;0;0;0
+88650;15293;2;179;73.0;130;90;3;1;1;0;1;1
+88652;20154;1;148;42.0;90;60;1;1;0;0;0;0
+88653;19694;2;180;130.0;120;80;1;1;0;0;0;1
+88655;19632;1;151;61.0;120;80;2;2;0;0;1;1
+88656;15093;1;161;61.0;100;70;1;1;0;0;0;0
+88657;21926;2;168;62.0;160;90;2;1;0;0;1;1
+88658;19007;1;162;87.0;130;80;1;1;0;0;0;0
+88659;21243;1;161;66.0;140;80;1;2;0;0;0;1
+88660;18176;2;168;90.0;120;80;1;1;1;0;1;0
+88661;18761;2;173;115.0;150;80;2;2;1;0;1;1
+88662;20201;1;163;80.0;130;80;2;2;0;0;1;0
+88663;17268;2;165;58.0;140;70;1;1;0;0;1;1
+88665;20592;2;177;96.0;150;90;1;1;0;0;1;1
+88666;22535;1;165;91.0;140;90;1;1;0;0;1;1
+88667;17652;1;159;79.0;140;90;1;1;0;0;0;0
+88669;22728;1;159;75.0;160;100;1;1;0;0;0;1
+88670;14518;2;164;65.0;130;90;1;1;0;0;0;1
+88671;16166;1;164;89.0;110;70;1;2;0;0;0;0
+88672;14626;2;166;86.0;110;70;1;2;1;0;1;0
+88674;21386;1;151;69.0;200;100;3;3;0;0;1;1
+88676;23110;2;168;65.0;120;80;3;1;0;0;1;1
+88678;19572;2;175;75.0;150;100;1;1;0;0;1;0
+88680;21740;1;168;75.0;130;90;3;1;0;0;0;1
+88681;22422;1;164;85.0;125;80;1;1;0;0;1;0
+88686;14806;2;176;90.0;140;1000;1;1;0;0;1;1
+88688;19857;2;175;79.0;120;80;1;1;0;0;1;0
+88691;19464;1;154;75.0;130;100;1;1;0;0;1;1
+88693;21061;1;153;104.0;200;120;3;1;0;0;0;1
+88694;17253;1;162;89.0;120;90;1;1;0;0;1;1
+88695;17634;2;166;54.0;150;90;1;1;1;0;1;0
+88696;18813;1;160;60.0;120;80;2;2;0;0;0;0
+88697;23375;1;164;82.0;130;85;1;1;0;0;1;0
+88698;16944;1;168;62.0;120;80;1;1;0;0;1;0
+88699;17652;2;174;82.0;120;80;1;1;0;0;1;0
+88700;18734;2;186;98.0;130;80;1;1;0;0;1;1
+88701;19867;1;167;85.0;120;50;1;1;0;0;1;1
+88702;19201;1;165;65.0;130;80;1;1;0;0;0;0
+88703;20218;1;165;72.0;110;70;1;1;0;0;1;0
+88704;18919;1;167;73.0;150;90;3;3;0;0;1;0
+88705;14651;2;170;70.0;120;80;1;1;0;0;1;0
+88707;16026;1;168;71.0;140;90;1;1;0;0;0;1
+88708;18312;1;165;65.0;120;80;1;1;0;0;0;1
+88711;18973;2;170;70.0;130;90;1;1;0;0;1;1
+88712;19821;1;172;85.0;120;80;1;1;0;0;1;1
+88713;20248;1;164;52.0;140;90;1;1;0;0;1;0
+88714;18996;1;168;56.0;150;70;1;1;0;0;1;1
+88715;14646;1;170;80.0;140;80;1;1;0;0;1;0
+88717;17569;2;165;51.0;120;80;1;1;0;1;1;0
+88719;19220;1;168;68.0;150;80;1;1;0;0;1;1
+88723;19819;1;155;115.0;130;80;3;3;0;0;1;1
+88724;19925;1;167;64.0;140;80;3;1;0;0;1;1
+88725;21243;1;153;68.0;120;80;1;1;0;0;1;1
+88727;22041;1;167;68.0;120;80;1;1;0;0;1;1
+88729;19720;1;157;64.0;120;80;1;1;0;0;0;0
+88731;20453;1;159;54.0;100;60;1;1;0;0;1;0
+88732;20348;1;168;66.0;130;90;3;3;0;0;0;1
+88733;20524;2;170;73.0;120;80;1;1;0;1;0;1
+88736;17705;2;161;59.0;100;70;1;1;0;0;0;1
+88737;21757;1;153;53.0;150;90;1;1;0;0;0;1
+88738;19733;1;152;100.0;140;100;2;2;0;0;1;1
+88739;20457;1;159;86.0;160;90;1;1;0;0;1;1
+88740;16029;1;165;66.0;120;80;1;1;0;0;1;1
+88742;22589;1;154;54.0;120;80;1;1;0;0;1;1
+88745;21072;2;169;62.0;110;90;1;1;0;0;1;0
+88746;19848;2;168;78.0;120;81;1;1;0;0;1;0
+88747;20423;2;171;86.0;120;90;1;1;0;0;1;0
+88748;19901;1;150;48.0;120;75;1;1;0;0;1;0
+88749;16007;1;146;46.0;90;60;1;1;0;0;0;0
+88751;20472;1;154;81.0;120;80;1;1;0;0;1;0
+88752;21174;1;160;67.0;140;900;2;1;0;0;1;1
+88753;14422;1;160;60.0;120;80;1;1;0;0;0;1
+88755;19679;2;169;78.0;130;80;1;1;0;0;1;0
+88757;19172;1;152;80.0;140;90;1;1;0;0;1;1
+88758;21159;1;161;96.0;140;80;3;3;0;0;1;0
+88759;20541;1;158;103.0;140;90;3;3;0;1;0;1
+88760;19069;1;164;67.0;100;80;1;1;1;0;1;0
+88761;18380;2;184;75.0;110;70;1;1;0;0;0;0
+88762;19193;1;169;74.0;120;80;2;2;0;0;1;1
+88764;23289;2;166;72.0;160;90;1;1;1;0;1;1
+88766;18484;2;166;81.0;145;80;1;1;1;0;1;0
+88767;18954;1;170;68.0;120;60;1;1;0;0;1;0
+88768;23343;1;145;55.0;120;60;1;1;0;0;1;1
+88769;21170;2;160;60.0;120;80;1;1;0;0;1;0
+88770;21236;2;172;89.0;150;90;2;1;0;0;0;1
+88771;19665;1;164;63.0;130;80;1;1;0;0;1;0
+88772;20990;1;159;75.0;140;90;1;1;0;0;1;1
+88773;20526;1;145;90.0;140;90;3;1;0;0;1;1
+88774;22436;2;173;81.0;130;80;1;1;0;0;1;0
+88777;17222;2;172;112.0;140;90;1;1;0;0;0;1
+88778;21919;1;156;85.0;150;90;1;1;0;0;1;1
+88779;19084;2;167;85.0;160;100;1;1;0;0;0;1
+88780;18367;2;170;85.0;140;80;1;1;1;0;1;1
+88782;23478;2;187;77.0;80;120;3;2;0;1;1;0
+88783;18376;1;160;68.0;130;70;1;2;0;0;1;0
+88784;20224;1;168;130.0;140;90;3;3;0;0;0;1
+88785;20459;2;162;55.0;140;90;2;1;1;1;1;0
+88787;18852;2;165;86.0;160;100;2;1;0;0;0;1
+88788;18312;1;155;63.0;100;70;1;1;0;0;1;0
+88789;20209;1;161;68.0;120;80;1;1;0;0;1;0
+88790;18795;1;168;83.0;140;90;1;1;0;0;1;0
+88791;14592;1;153;60.0;95;65;1;1;0;0;1;0
+88792;14302;2;171;87.0;120;80;1;1;0;0;1;0
+88793;21961;1;165;69.0;120;80;1;1;0;0;1;1
+88794;15261;1;159;90.0;120;80;2;1;0;0;1;0
+88795;18874;2;169;89.0;15;90;1;1;0;0;0;1
+88796;17480;1;172;86.0;120;70;1;1;0;0;1;1
+88797;19838;2;184;92.0;130;80;3;1;0;0;1;1
+88798;19527;1;162;78.0;140;90;1;1;0;0;1;1
+88799;17388;1;157;87.0;130;80;1;1;0;0;1;1
+88801;20294;1;165;77.0;140;90;1;1;0;0;1;0
+88803;18433;1;172;65.0;110;70;1;3;0;0;1;0
+88804;18463;1;170;79.0;140;100;1;1;0;0;1;1
+88806;19111;2;169;66.0;120;80;1;1;0;0;0;1
+88807;18402;1;166;65.0;120;79;1;1;0;0;0;1
+88808;21674;1;170;65.0;140;90;1;2;0;0;1;1
+88809;21853;2;169;74.0;110;80;1;1;0;0;1;0
+88810;20445;2;171;92.0;140;90;3;3;0;0;1;0
+88811;18306;1;168;70.0;130;80;3;1;0;0;1;1
+88812;22608;2;165;92.0;120;80;1;1;0;0;1;1
+88813;18174;2;170;68.0;130;80;3;1;0;0;1;1
+88815;15158;1;164;74.0;140;90;1;1;0;0;1;1
+88816;21005;1;160;60.0;130;80;1;1;0;0;1;1
+88818;22378;2;176;60.0;110;70;1;1;0;0;1;1
+88822;23367;1;160;54.0;160;90;1;2;0;0;1;1
+88825;17709;1;154;72.0;130;80;1;1;0;0;0;1
+88827;20451;1;161;77.0;130;80;2;1;0;1;1;0
+88828;23414;2;160;72.0;110;90;1;1;0;0;1;0
+88829;21628;1;156;70.0;160;90;2;2;0;0;1;1
+88831;22690;1;170;115.0;150;100;1;1;0;0;0;1
+88833;22599;1;160;72.0;100;70;3;1;0;0;0;1
+88835;21095;1;162;65.0;120;80;1;1;0;0;0;1
+88836;21967;1;179;74.0;120;80;1;1;0;0;1;1
+88837;16111;1;172;53.0;100;60;1;1;0;0;1;0
+88838;16811;1;154;86.0;110;70;1;1;0;0;0;0
+88839;18847;2;174;63.0;120;80;2;1;0;0;1;0
+88841;20249;2;172;68.0;160;90;1;1;1;0;1;1
+88842;19095;1;164;67.0;120;80;1;1;0;0;1;1
+88844;21827;2;162;62.0;120;80;2;1;0;0;1;0
+88848;19716;1;163;72.0;110;80;1;1;0;0;0;1
+88851;20912;1;160;78.0;160;1000;1;1;0;0;1;1
+88852;21214;2;170;78.0;120;80;3;3;0;0;0;1
+88853;15318;2;174;62.0;120;80;2;1;1;0;1;1
+88854;22207;1;147;80.0;130;80;1;1;0;0;1;0
+88855;18089;1;158;54.0;180;80;2;1;0;0;1;1
+88856;15228;2;154;53.0;120;80;1;1;0;0;1;0
+88859;18150;1;157;61.0;120;60;1;1;0;0;0;0
+88860;18089;1;169;68.0;110;80;1;1;0;0;1;0
+88861;22421;1;155;67.0;150;90;1;1;0;0;1;0
+88862;23081;2;164;71.0;120;60;1;1;0;0;1;0
+88863;22426;2;172;73.0;120;70;1;1;0;0;1;0
+88864;19054;1;168;85.0;120;80;1;1;0;0;1;0
+88865;18041;2;174;85.0;120;80;1;1;1;0;1;0
+88866;18986;1;169;87.0;140;90;2;1;0;0;0;1
+88870;23073;1;157;100.0;120;80;1;1;0;0;1;0
+88871;16661;2;181;84.0;110;80;2;1;1;1;1;0
+88872;22583;1;162;80.0;120;80;2;1;0;0;1;1
+88874;21882;2;168;95.0;150;100;2;1;0;0;1;1
+88875;21198;1;165;90.0;120;80;3;3;0;0;0;1
+88878;19150;1;153;72.0;120;80;1;3;0;0;1;0
+88880;16125;1;168;68.0;110;70;1;1;0;0;1;0
+88881;21931;1;168;80.0;120;80;1;1;0;0;0;0
+88882;20253;1;164;90.0;125;80;1;1;0;0;1;1
+88883;20302;2;168;72.0;110;70;1;1;0;0;1;0
+88885;23220;2;168;107.0;120;80;3;3;0;0;0;1
+88886;20625;1;156;72.0;140;90;3;3;0;0;1;0
+88887;19022;2;167;81.0;130;80;3;2;0;0;1;1
+88888;20219;2;169;60.0;110;70;1;1;1;0;1;0
+88891;21280;1;165;64.0;120;80;1;1;0;0;1;0
+88892;17551;2;172;92.0;120;80;1;1;0;0;1;0
+88893;22617;1;163;85.0;130;80;1;1;0;0;0;1
+88894;17663;1;169;93.0;120;80;1;1;0;0;1;0
+88897;22742;1;156;57.0;150;90;1;1;0;0;0;0
+88898;22556;1;164;102.0;145;90;2;2;0;0;1;1
+88899;19837;1;165;60.0;120;80;1;1;0;0;1;0
+88902;20237;2;168;65.0;120;80;1;1;0;0;0;0
+88904;21406;2;169;69.0;130;90;1;1;0;0;1;1
+88905;20307;2;159;59.0;140;89;1;1;0;0;0;1
+88906;21940;1;156;46.0;80;60;1;1;0;0;1;0
+88907;21243;1;158;48.0;120;80;1;1;0;0;1;0
+88908;16677;2;168;73.0;130;80;1;1;0;0;1;1
+88909;23496;2;170;75.0;160;70;1;1;0;0;1;1
+88910;17447;2;174;62.0;120;80;1;1;1;0;1;0
+88911;20726;1;165;76.0;110;70;1;1;0;0;0;0
+88912;19664;1;162;97.0;120;80;1;1;0;0;1;1
+88914;21896;1;155;68.0;100;70;3;1;0;0;1;1
+88915;19019;2;185;105.0;140;90;3;3;0;0;1;1
+88916;22654;2;166;75.0;100;70;3;1;1;0;0;1
+88918;23448;1;153;63.0;130;80;3;3;0;0;1;1
+88919;15360;2;177;95.0;120;90;2;1;0;0;1;0
+88922;19004;1;153;77.0;140;90;1;1;0;0;1;1
+88923;22608;1;155;61.0;120;80;1;1;0;0;1;1
+88924;18421;1;170;65.0;120;80;1;1;0;0;1;1
+88927;23377;1;172;86.0;130;90;1;1;0;0;1;1
+88929;21780;1;164;73.0;170;1000;1;1;0;0;1;1
+88930;20551;1;165;70.0;120;80;3;3;0;0;0;1
+88931;18161;2;168;68.0;150;80;1;1;1;0;1;1
+88932;21837;1;160;61.0;100;60;1;1;0;0;1;1
+88933;20472;1;160;87.0;125;80;3;1;0;0;1;1
+88935;20180;1;156;69.0;90;60;1;1;0;0;1;0
+88936;20254;1;170;73.0;120;80;1;1;0;0;1;0
+88938;20470;1;163;80.0;140;90;2;1;0;0;1;1
+88939;18953;1;165;76.0;100;60;3;3;0;0;1;0
+88940;19224;2;156;72.0;150;90;1;1;0;0;1;1
+88942;16046;2;170;71.0;120;80;1;1;0;0;0;0
+88943;22640;1;171;69.0;120;80;1;1;0;0;1;0
+88944;18774;1;164;64.0;130;80;1;1;0;0;1;0
+88947;22854;2;168;82.0;130;90;1;1;1;0;0;1
+88950;18269;1;158;76.0;110;90;1;1;0;0;1;0
+88951;15548;1;167;70.0;120;80;2;2;0;0;1;1
+88952;16925;2;160;75.0;110;70;1;1;0;0;1;0
+88954;21756;1;157;134.0;190;120;2;2;0;0;1;1
+88955;19073;1;155;66.0;120;80;1;1;0;0;0;0
+88957;21714;1;153;72.0;160;95;2;1;0;0;1;1
+88958;22554;1;157;79.0;160;90;1;1;1;0;0;1
+88959;22698;1;152;82.0;180;100;2;2;0;0;1;1
+88960;18386;1;161;81.0;120;80;1;1;0;0;1;0
+88961;18824;2;173;117.0;120;80;1;1;0;0;1;1
+88962;20588;1;151;72.0;140;90;1;1;0;1;1;1
+88964;21033;1;163;58.0;120;80;3;1;0;0;1;1
+88965;20496;2;161;74.0;130;80;1;1;0;0;1;0
+88967;21881;1;156;105.0;120;80;2;1;0;0;1;0
+88968;19700;1;165;65.0;120;80;3;3;0;0;1;0
+88970;21818;1;150;63.0;140;90;3;3;0;0;1;1
+88971;20525;1;165;60.0;120;80;1;1;0;0;1;0
+88973;14831;1;161;55.0;100;60;3;3;0;0;0;0
+88976;15139;1;156;68.0;120;80;1;2;0;0;1;1
+88977;19863;2;175;92.0;140;90;1;1;0;0;1;1
+88978;21784;1;160;81.0;140;80;3;2;0;0;0;1
+88980;19730;1;152;61.0;110;70;3;1;0;0;1;1
+88981;23328;2;155;66.0;140;90;1;1;1;1;0;0
+88983;20597;1;162;64.0;140;100;1;1;0;0;1;1
+88984;18278;1;165;70.0;130;80;1;1;0;0;1;0
+88985;18217;2;170;88.0;120;80;2;1;1;0;1;0
+88986;21838;1;148;69.0;140;100;1;2;0;0;1;1
+88987;18979;1;165;65.0;120;80;1;1;0;0;0;0
+88988;19009;2;168;62.0;140;90;1;1;0;0;1;1
+88989;17589;1;167;80.0;140;90;1;1;0;0;1;0
+88990;20601;1;180;78.0;120;80;1;1;0;0;0;0
+88991;21086;1;172;87.0;120;80;1;1;0;0;1;0
+88995;21893;2;170;70.0;120;80;1;1;0;0;1;0
+88997;21116;2;170;82.0;120;80;1;3;0;0;1;1
+88998;17621;2;171;70.0;110;70;1;1;0;0;1;1
+88999;15543;1;159;57.8;110;70;2;1;0;0;1;0
+89000;18327;1;170;88.0;170;89;2;2;0;0;1;1
+89002;21321;1;156;70.0;120;80;1;1;0;0;1;0
+89003;15921;2;161;57.0;120;80;1;1;1;1;1;0
+89006;22086;2;158;60.0;150;90;1;1;0;0;1;1
+89007;22720;1;164;79.0;120;80;1;1;0;0;0;1
+89009;18273;1;167;68.0;120;80;1;1;0;0;1;0
+89012;23362;2;169;86.0;140;100;1;2;0;1;1;1
+89013;20303;2;173;97.0;140;85;3;1;1;0;1;1
+89017;22720;2;171;86.0;150;100;1;1;0;0;1;1
+89018;21364;1;165;90.0;140;90;3;1;0;0;1;1
+89019;21713;1;160;80.0;120;80;3;1;0;0;0;1
+89020;20549;1;164;78.0;120;80;1;1;0;0;1;0
+89021;20600;1;174;76.0;120;80;1;1;0;0;1;0
+89022;16027;2;170;61.0;120;80;1;1;0;0;1;1
+89023;18350;1;163;68.0;140;80;1;1;0;0;0;1
+89024;18097;2;170;70.0;120;80;3;1;0;0;1;1
+89026;21827;2;167;71.0;150;100;1;1;0;0;1;1
+89029;18906;1;148;60.0;140;100;2;1;0;0;1;1
+89030;18860;1;165;73.0;110;70;1;1;0;0;1;0
+89031;20500;1;161;61.0;125;80;1;1;0;0;0;0
+89032;15450;2;159;68.0;120;80;1;3;0;0;1;0
+89033;20373;1;159;68.0;130;90;1;1;0;0;1;0
+89034;15874;1;150;52.0;110;60;1;1;0;0;1;0
+89035;20292;1;155;71.0;120;70;1;1;0;0;1;0
+89036;20394;1;163;52.0;160;90;1;1;0;0;1;1
+89038;23077;2;181;85.0;120;80;1;1;0;0;0;0
+89039;17350;2;177;65.0;110;70;1;1;0;0;1;0
+89041;19558;1;145;60.0;140;90;2;1;0;0;1;0
+89044;14691;1;148;46.0;110;70;1;1;0;0;0;0
+89047;20973;2;159;83.0;180;80;3;3;0;0;1;0
+89049;16541;2;175;70.0;110;70;3;1;0;0;1;0
+89050;18908;1;158;57.0;140;80;1;1;0;0;1;1
+89052;18784;1;159;52.0;145;90;1;1;0;0;1;0
+89053;19058;2;170;71.0;120;80;1;1;0;0;1;0
+89054;20264;1;160;60.0;150;90;1;1;0;0;1;1
+89055;17015;2;164;64.0;120;80;1;1;0;0;1;0
+89056;23576;2;178;78.0;150;90;1;1;0;0;1;1
+89057;18084;1;159;86.0;130;90;3;3;0;1;1;1
+89058;22583;2;170;77.0;140;80;1;1;1;0;1;1
+89059;20945;1;159;75.0;120;80;1;1;0;0;1;0
+89061;19731;2;166;85.0;140;1000;1;1;0;0;1;1
+89063;23346;1;165;60.0;120;80;1;1;0;0;1;0
+89064;20447;2;165;71.0;110;80;1;1;0;0;1;1
+89066;16721;1;165;85.0;120;80;1;1;0;0;1;0
+89067;22431;1;154;56.0;140;80;1;1;0;0;1;1
+89068;19668;1;157;72.0;130;70;3;3;0;0;0;1
+89069;18902;2;168;68.0;120;80;1;1;0;0;1;1
+89070;21313;1;156;57.0;120;90;3;1;0;0;1;0
+89071;20997;1;162;57.0;120;80;1;1;0;0;0;0
+89072;21856;2;175;75.0;120;80;1;1;0;0;0;1
+89074;18878;1;162;72.0;140;90;1;1;0;0;1;1
+89075;22767;1;163;106.0;120;90;1;1;0;0;1;0
+89076;19439;2;169;53.0;140;90;1;1;0;0;1;0
+89077;20553;1;165;68.0;140;80;1;1;0;0;1;1
+89080;21333;2;166;75.0;150;90;1;1;0;0;1;1
+89081;20167;1;158;88.0;110;80;1;2;0;0;1;1
+89082;20442;1;175;74.0;120;80;1;1;0;0;1;1
+89083;21290;2;156;60.0;150;80;2;1;0;0;1;1
+89084;17492;1;170;70.0;110;80;1;1;0;0;0;1
+89086;19174;2;178;89.0;135;85;2;1;1;0;1;1
+89087;18429;1;165;70.0;120;70;1;1;0;0;1;0
+89095;18231;2;175;75.0;120;80;1;1;0;0;1;0
+89096;17948;1;165;79.0;160;90;1;1;0;0;1;1
+89097;17430;2;171;82.0;160;90;1;1;0;0;0;1
+89098;20385;1;170;76.0;110;80;1;1;0;0;1;0
+89099;20487;2;160;58.0;130;90;1;1;0;0;1;1
+89101;18746;1;169;68.0;130;80;2;1;0;0;1;1
+89103;18319;1;162;62.0;120;80;1;1;0;0;0;0
+89104;22534;1;162;61.0;140;80;1;1;0;0;1;0
+89105;17722;1;178;78.0;120;80;1;1;0;0;1;0
+89106;23283;2;174;65.0;120;80;1;1;0;0;1;1
+89107;18294;2;172;87.0;120;80;1;1;0;0;0;0
+89108;19891;2;172;60.0;120;80;1;1;1;0;1;1
+89109;19135;2;168;85.0;110;70;1;1;0;1;1;0
+89110;18956;2;168;76.0;130;90;3;3;1;0;1;1
+89111;21791;1;153;76.0;130;79;1;1;0;0;1;1
+89112;23357;1;153;75.0;125;75;3;3;0;0;0;1
+89113;20990;1;153;75.0;140;90;2;1;0;0;1;1
+89114;18803;2;149;64.0;130;80;2;1;0;0;1;0
+89115;19157;1;161;74.0;140;90;1;1;0;0;1;1
+89116;20871;1;160;56.0;130;70;1;1;0;0;1;0
+89118;14451;1;154;82.0;120;80;1;1;0;0;1;1
+89120;21357;2;170;95.0;140;80;1;1;0;0;0;1
+89122;19705;1;155;56.0;105;70;1;1;0;0;1;0
+89124;20940;1;150;52.0;110;70;2;1;0;0;1;0
+89125;19074;1;164;68.0;120;80;1;1;0;0;1;0
+89126;22769;2;158;85.0;150;100;2;1;0;0;0;1
+89127;18340;2;165;68.0;120;80;1;1;0;0;1;0
+89129;15217;2;162;53.0;150;100;1;3;0;0;1;1
+89130;20381;1;153;56.0;100;70;2;1;0;0;1;1
+89131;14324;1;158;72.0;120;85;2;1;0;1;1;0
+89132;19017;2;187;91.0;140;100;1;1;0;0;0;1
+89133;19787;2;164;74.0;120;80;1;1;1;1;1;0
+89136;19613;1;170;93.0;160;100;3;1;0;0;1;1
+89137;21290;2;180;87.0;150;70;1;1;1;0;1;1
+89138;20664;1;150;71.0;130;80;1;1;0;0;1;1
+89139;19155;2;165;52.0;160;80;2;2;0;0;1;0
+89142;21964;2;165;69.0;120;80;3;3;0;0;1;1
+89143;14604;2;175;110.0;140;100;1;1;0;0;0;1
+89144;19737;1;153;92.0;120;90;1;1;0;0;1;0
+89147;15305;1;158;55.0;120;80;1;1;0;0;1;0
+89148;21945;2;176;69.0;130;70;1;2;1;0;1;0
+89149;16143;2;155;55.0;120;79;1;1;0;0;1;0
+89151;17356;2;160;64.0;120;80;1;1;1;1;1;0
+89153;15217;1;162;64.0;120;80;1;1;0;0;1;1
+89156;23292;2;175;84.0;120;80;1;2;0;0;1;1
+89157;18276;2;165;59.0;120;70;1;1;0;0;1;0
+89158;22501;2;175;135.0;180;100;1;1;1;0;1;1
+89159;17356;1;160;65.0;140;100;1;1;0;0;0;1
+89160;23368;1;162;60.0;120;80;1;1;0;0;1;0
+89162;22065;2;170;74.0;140;90;3;3;1;0;1;0
+89163;21974;1;162;70.0;100;80;1;1;0;0;1;0
+89164;22554;1;148;63.0;150;100;3;1;0;0;1;1
+89166;19129;2;168;49.0;110;70;1;1;0;0;1;0
+89167;17316;1;156;44.0;110;80;1;1;0;0;1;0
+89168;16690;2;176;76.0;120;70;1;1;0;0;1;0
+89169;23284;1;145;71.0;130;80;3;1;0;0;1;1
+89170;19766;2;178;82.0;120;80;1;1;0;0;1;0
+89171;22802;2;174;80.0;135;80;2;1;0;0;1;1
+89172;16622;1;153;75.0;140;100;2;1;0;0;1;0
+89173;14682;2;175;72.0;110;70;1;1;0;0;1;0
+89174;22484;1;170;80.0;140;90;3;1;0;0;1;1
+89175;19006;1;168;136.0;140;90;1;2;0;0;1;1
+89176;21080;1;168;68.0;140;90;1;1;0;0;0;0
+89177;16119;2;174;140.0;180;1100;1;3;0;0;1;1
+89178;21058;1;155;64.0;140;90;2;1;0;0;1;1
+89179;16771;1;165;65.0;120;80;1;1;0;0;0;1
+89180;23267;2;178;100.0;130;90;1;1;0;0;1;1
+89181;19473;1;152;76.0;100;70;1;1;0;0;1;0
+89182;22319;1;152;84.0;140;90;1;1;0;0;1;0
+89183;20606;2;170;77.0;120;80;3;3;0;0;1;1
+89184;21297;2;170;65.0;13;80;1;1;0;0;1;0
+89185;21949;2;160;60.0;150;90;1;1;0;0;0;1
+89187;23423;2;179;70.0;140;90;2;1;0;0;1;0
+89190;20544;1;159;108.0;150;80;1;1;0;0;1;0
+89192;21879;1;152;100.0;120;80;1;3;0;0;1;0
+89193;18430;2;174;85.0;140;90;1;1;0;0;1;1
+89195;15353;2;171;84.0;130;70;1;1;1;0;1;0
+89196;20996;1;163;78.0;140;80;1;1;0;0;1;1
+89197;21846;2;163;48.0;120;80;1;1;0;0;1;1
+89199;18767;1;164;85.0;140;90;1;1;0;0;1;1
+89200;21309;2;175;70.0;120;80;1;1;1;0;0;1
+89201;22129;2;164;85.0;130;80;3;3;0;0;1;1
+89202;16529;1;154;79.0;110;80;1;1;0;0;1;0
+89204;17358;2;174;97.0;143;90;1;1;1;1;1;1
+89206;19515;1;154;50.0;130;90;1;1;0;0;1;0
+89207;15292;2;180;108.0;110;70;1;1;0;0;1;0
+89208;17384;1;156;63.0;140;80;1;1;0;0;1;1
+89209;18327;1;155;83.0;150;100;3;3;0;0;1;1
+89210;14457;1;164;73.0;120;80;1;1;1;1;1;1
+89211;22523;1;172;70.0;110;70;1;1;0;0;1;0
+89212;14559;1;165;68.0;120;80;1;1;0;0;1;1
+89213;19655;2;168;88.0;130;90;1;1;0;0;1;0
+89214;19442;2;170;86.0;150;100;1;1;0;0;0;1
+89216;16949;2;163;77.0;110;70;2;1;1;1;1;1
+89217;22065;1;167;85.0;120;70;1;1;0;0;1;1
+89218;16868;2;168;65.0;120;60;1;1;0;0;0;0
+89221;22462;2;173;72.0;120;80;1;1;0;0;1;1
+89222;19824;1;165;53.0;100;60;1;1;0;0;1;1
+89223;20503;1;160;55.0;140;80;1;1;0;1;0;0
+89224;19031;1;159;57.0;110;60;1;1;0;0;1;1
+89225;14524;1;160;61.0;120;60;2;1;0;0;1;0
+89226;14610;1;158;81.0;90;70;1;1;0;0;1;0
+89229;21258;2;176;79.0;130;90;1;1;0;0;1;1
+89231;19488;1;150;69.0;150;80;2;1;0;1;1;0
+89232;19820;1;164;70.0;130;90;1;1;0;0;1;1
+89233;16055;1;162;71.0;130;80;1;1;0;0;1;1
+89234;18319;2;178;108.0;140;100;1;1;1;0;1;1
+89237;15260;2;161;71.0;110;80;2;1;1;0;1;0
+89238;15854;1;151;67.0;130;90;2;1;0;0;1;1
+89239;22113;1;157;79.0;140;90;1;1;0;0;1;1
+89240;19535;1;158;65.0;110;80;2;1;0;0;1;0
+89241;14635;1;162;47.0;130;90;1;1;0;0;1;0
+89242;21292;2;175;74.0;120;80;1;1;0;0;1;1
+89244;18778;2;170;70.0;140;90;3;1;0;0;1;0
+89245;21794;2;172;62.0;120;80;1;1;0;0;1;0
+89246;17412;2;164;75.0;140;90;1;1;0;0;0;1
+89248;21233;1;160;63.0;110;70;1;1;0;0;1;0
+89249;19671;2;160;62.0;160;90;2;2;0;0;1;1
+89250;21784;1;155;73.0;140;100;3;3;0;0;0;1
+89251;17617;2;158;56.0;120;80;1;1;0;0;0;0
+89252;15268;1;167;63.0;140;80;2;1;0;0;1;0
+89255;16034;2;164;65.0;110;70;1;1;0;0;1;0
+89257;21207;1;151;55.0;110;80;1;2;0;0;1;0
+89259;22650;2;162;95.0;180;100;2;1;1;0;1;1
+89262;17576;2;174;91.0;160;90;1;1;0;0;0;1
+89263;17536;1;170;75.0;120;80;1;1;0;0;1;0
+89264;15090;1;157;50.0;100;70;1;1;0;0;1;0
+89265;18843;1;163;48.0;110;80;2;1;1;0;1;0
+89266;23152;2;174;78.0;110;70;1;1;0;0;1;0
+89267;19838;1;170;80.0;110;70;1;1;0;0;1;1
+89268;21168;2;170;86.0;150;100;1;1;0;0;1;1
+89269;15229;2;174;72.0;110;70;1;1;0;0;1;0
+89270;22823;1;168;64.0;130;80;3;3;0;0;1;1
+89271;22802;1;158;65.0;120;80;1;1;0;0;1;0
+89273;17407;2;175;68.0;120;80;1;1;0;0;0;0
+89274;18223;1;160;60.0;120;80;1;1;0;0;0;0
+89275;15347;2;165;65.0;130;80;1;1;0;0;1;0
+89276;14377;1;156;49.0;110;70;1;1;0;0;1;0
+89277;23357;1;155;47.0;120;80;1;1;0;0;1;0
+89278;20220;1;157;75.0;120;80;1;1;0;0;1;1
+89279;18907;2;174;65.0;160;80;1;1;0;0;1;1
+89280;19126;2;168;74.0;130;90;1;1;0;0;1;0
+89281;17621;1;160;52.0;100;70;2;1;0;0;1;1
+89282;21250;2;174;84.0;120;80;1;1;0;0;1;1
+89283;22514;2;168;84.0;130;80;1;1;1;0;1;0
+89285;20438;1;162;64.0;120;80;1;1;0;0;1;1
+89286;19690;1;163;63.0;120;75;1;1;0;0;1;0
+89288;21175;2;177;106.0;130;80;3;1;0;0;1;1
+89290;17344;1;163;67.0;120;80;1;1;0;0;1;1
+89291;22717;2;166;59.0;135;80;2;2;1;0;1;1
+89292;19102;1;164;80.0;140;90;1;1;0;0;1;0
+89293;17683;1;165;70.0;110;70;1;1;0;0;1;1
+89294;20490;2;170;67.0;100;70;1;1;0;0;1;0
+89296;19738;1;185;75.0;150;100;1;1;0;0;1;1
+89297;22396;2;171;75.0;120;80;1;1;0;0;1;0
+89301;18229;2;170;92.0;130;80;1;1;1;0;0;0
+89302;19581;2;178;77.0;140;80;1;1;0;0;1;1
+89303;20312;1;158;70.0;130;70;1;1;0;0;1;0
+89304;19596;1;159;85.0;160;100;2;1;0;0;1;0
+89305;20928;2;157;46.0;160;1000;1;1;0;0;1;1
+89306;19762;1;167;65.0;120;80;1;1;0;0;1;0
+89308;15311;1;159;64.0;110;80;2;1;0;0;1;0
+89309;21783;1;167;97.0;120;80;1;1;1;0;1;0
+89310;18468;1;175;75.0;120;70;1;1;0;0;1;0
+89312;16831;1;158;63.0;120;70;1;1;0;0;1;0
+89315;21186;1;152;67.0;160;100;2;1;0;0;1;1
+89316;16678;2;180;123.0;110;70;1;1;0;0;1;1
+89317;15382;2;168;65.0;140;90;1;1;0;0;1;1
+89319;16541;2;167;80.0;110;80;2;1;1;0;1;0
+89320;15779;1;166;69.0;90;60;1;1;0;0;1;0
+89321;18842;1;157;85.0;140;90;1;1;0;0;1;1
+89324;20365;1;152;50.0;130;90;1;2;0;0;1;1
+89326;16227;2;185;73.0;120;80;1;1;0;0;1;0
+89327;21359;1;160;63.0;120;80;1;1;0;0;1;0
+89328;21909;1;160;68.0;160;90;1;1;1;0;1;1
+89329;21673;1;166;89.0;120;80;1;1;0;0;1;1
+89331;15466;1;165;66.0;115;70;1;1;0;0;1;1
+89334;14843;1;161;57.0;110;80;1;1;0;0;1;1
+89336;15464;1;166;58.0;140;80;2;1;0;0;1;1
+89337;23347;2;172;78.0;130;90;1;1;0;0;0;1
+89338;16165;1;158;69.0;100;70;1;1;0;0;1;0
+89339;17552;1;169;79.0;110;70;3;3;0;0;1;0
+89340;19218;1;168;86.0;110;80;1;1;0;0;1;0
+89341;22437;1;160;53.0;110;70;3;1;0;0;1;0
+89342;21179;2;168;65.0;140;90;1;1;0;0;1;1
+89343;16642;2;174;69.0;110;70;2;1;0;0;1;1
+89344;16133;1;167;76.0;120;70;1;1;1;0;1;0
+89345;15158;1;156;83.0;115;70;1;3;0;0;1;1
+89346;16883;1;162;43.0;100;80;2;2;0;0;1;0
+89347;21242;2;160;60.0;140;90;1;1;0;0;1;1
+89348;15917;1;152;50.0;100;60;1;1;0;0;0;0
+89349;23325;1;159;58.5;200;80;3;1;0;0;1;1
+89350;15864;1;152;58.0;130;80;2;2;0;0;0;1
+89352;22617;2;164;93.0;135;100;1;1;1;1;0;1
+89353;21732;1;167;76.0;125;70;1;1;0;0;1;0
+89354;21035;1;169;73.0;120;80;1;1;0;0;1;1
+89356;22707;1;156;87.0;160;100;1;1;0;0;0;1
+89358;16158;2;170;87.0;110;80;2;1;0;0;0;1
+89359;19816;1;164;68.0;120;80;1;1;0;0;1;0
+89360;23515;1;175;65.0;150;1000;1;1;0;0;0;0
+89361;21050;1;169;68.0;180;80;1;1;0;0;1;1
+89364;21093;2;184;99.0;220;130;3;3;0;0;1;1
+89366;15819;2;181;117.0;120;80;1;1;1;0;0;1
+89367;15883;1;178;72.0;130;80;3;3;0;0;1;1
+89368;18969;2;173;88.0;130;80;1;1;0;0;0;0
+89369;20442;1;168;66.0;130;80;1;1;0;0;1;1
+89370;19075;2;170;82.0;150;100;2;2;0;0;1;1
+89371;17359;2;160;65.0;120;80;1;1;0;0;1;0
+89372;21747;1;167;71.0;120;80;2;1;0;0;1;1
+89374;15880;2;172;68.0;120;80;1;1;0;0;1;0
+89376;22636;2;168;70.0;120;80;1;1;0;0;1;0
+89377;18334;1;156;70.0;120;80;1;1;0;0;1;1
+89378;20172;2;172;82.0;120;80;2;1;0;0;0;1
+89379;19795;2;172;92.0;120;80;1;2;0;0;1;1
+89380;17299;1;159;67.0;140;90;2;1;0;0;1;1
+89381;20550;1;156;80.0;140;80;2;3;0;0;1;0
+89382;20291;1;177;64.0;120;80;1;1;0;0;0;0
+89383;21804;1;170;70.0;170;100;1;1;0;0;1;1
+89388;21702;1;152;102.0;130;80;3;3;0;0;1;0
+89389;19723;1;163;67.0;100;70;1;1;0;0;1;1
+89390;18412;2;170;78.0;151;1100;1;1;1;0;1;1
+89391;23245;2;167;78.0;120;80;1;1;1;0;1;1
+89392;18780;1;159;69.0;120;90;2;2;0;0;1;1
+89393;15190;2;169;65.0;120;80;1;1;0;0;1;0
+89396;15291;2;180;80.0;110;70;1;2;1;1;1;0
+89397;21180;1;160;65.0;120;80;1;1;0;0;1;1
+89398;16812;1;165;68.0;120;80;1;1;0;0;1;0
+89399;18336;2;175;78.0;120;60;1;1;0;0;1;0
+89400;17544;2;168;93.0;150;100;1;1;1;0;1;1
+89401;16610;1;156;65.0;110;70;1;1;0;0;1;0
+89404;16856;2;169;71.0;120;80;1;1;0;0;1;0
+89406;14797;2;171;71.0;130;80;1;1;1;0;0;0
+89407;21994;1;160;66.0;120;80;1;1;0;0;1;0
+89408;20954;2;168;90.0;120;80;2;1;0;0;1;1
+89409;15394;1;163;49.0;140;80;1;1;0;0;1;0
+89412;18856;1;150;67.0;110;80;1;1;0;0;0;0
+89414;14703;2;173;98.0;140;90;1;1;1;0;0;1
+89415;20367;1;169;78.0;120;80;1;1;0;0;0;0
+89416;21058;1;170;63.0;120;80;1;1;0;0;1;0
+89417;18036;2;168;81.0;140;80;3;1;0;0;1;1
+89418;21901;2;160;60.0;150;100;2;1;1;1;1;1
+89419;21999;2;157;54.0;110;70;1;1;0;0;1;0
+89420;14620;2;169;68.0;120;80;3;3;0;0;1;0
+89421;19659;1;158;78.0;120;80;1;1;0;0;0;1
+89424;21785;1;156;66.0;130;80;1;1;0;0;1;1
+89425;16820;1;153;77.0;110;70;1;1;0;0;1;0
+89427;21790;2;173;102.0;140;100;1;1;1;0;1;0
+89430;23458;1;162;95.0;130;90;1;1;0;0;1;1
+89431;16134;2;160;74.0;120;80;1;1;0;1;1;0
+89434;16141;1;171;98.0;128;80;1;1;0;0;0;0
+89435;19653;2;170;77.0;120;80;1;1;0;0;1;0
+89438;23306;1;163;69.0;110;80;1;1;0;0;0;1
+89440;16097;2;173;124.0;160;100;1;1;0;0;1;1
+89441;22714;1;159;70.0;135;70;3;1;0;0;1;1
+89442;20382;1;165;71.0;110;70;2;1;0;0;1;0
+89444;15166;1;159;61.0;140;90;1;1;0;0;1;1
+89446;19745;2;168;85.0;110;70;1;2;0;0;1;0
+89447;14553;1;160;67.0;120;70;1;1;0;0;0;0
+89450;19185;1;163;67.0;100;60;1;1;0;0;0;0
+89451;22044;1;163;69.0;140;90;1;1;0;0;0;1
+89452;23153;1;176;55.0;120;80;1;1;0;0;1;0
+89453;18794;1;160;60.0;110;80;2;1;0;0;1;0
+89455;22678;2;167;81.0;140;80;3;3;0;0;0;0
+89456;18212;1;166;67.0;100;70;1;1;0;0;0;0
+89458;18978;1;169;65.0;140;90;2;1;0;0;1;1
+89459;19890;1;166;68.0;140;90;1;3;0;0;1;1
+89460;18937;1;162;97.0;120;80;1;1;0;0;1;1
+89463;21247;1;157;66.0;170;100;1;2;0;0;1;1
+89464;18054;1;165;59.0;95;54;1;1;0;0;0;0
+89467;21378;1;156;54.0;120;80;3;3;0;0;1;0
+89468;18255;2;162;65.0;120;80;2;2;0;0;1;0
+89469;19149;1;177;62.0;120;80;1;1;0;0;1;0
+89470;20430;1;155;48.0;130;80;1;1;0;0;1;0
+89472;16587;1;160;97.0;120;80;1;1;0;0;0;0
+89474;18173;1;158;78.0;120;80;1;1;0;0;1;1
+89476;17568;2;180;89.0;140;80;1;1;0;0;1;0
+89479;21837;1;163;74.0;140;90;1;1;0;0;1;0
+89480;22693;1;155;60.0;140;90;1;1;0;0;0;1
+89481;21769;1;157;51.0;110;80;1;1;0;0;0;0
+89482;16643;1;161;75.0;120;80;1;1;0;0;1;1
+89483;17597;1;164;72.0;120;80;1;1;0;0;1;0
+89484;22414;2;168;81.0;160;100;3;2;0;0;1;1
+89485;19759;2;172;80.0;140;90;2;2;1;0;1;0
+89486;18051;1;164;77.0;150;90;3;2;0;0;1;1
+89487;18889;2;167;65.0;130;80;1;1;0;0;1;0
+89490;19036;1;165;70.0;100;60;1;1;0;0;1;0
+89491;18288;1;165;69.0;120;80;1;1;0;0;1;0
+89492;15333;2;173;87.0;130;90;1;1;0;0;1;1
+89494;19817;1;144;77.0;110;70;1;1;0;0;1;0
+89495;20903;2;165;77.0;160;100;2;1;0;0;0;1
+89497;18919;2;159;50.0;108;73;1;1;1;1;1;0
+89498;20218;2;168;91.0;120;80;2;1;0;0;0;1
+89499;23371;2;168;79.0;110;70;3;3;0;0;1;1
+89500;22654;2;175;81.0;130;90;1;1;0;0;1;1
+89502;16629;2;172;108.0;140;90;1;2;0;0;1;1
+89503;21933;1;156;83.0;140;90;3;1;0;0;1;0
+89504;21184;2;169;59.0;157;99;1;1;0;1;1;1
+89506;15437;1;152;66.0;110;70;1;1;0;0;1;1
+89508;18776;1;156;80.0;120;80;1;2;0;0;0;0
+89509;21901;1;149;63.0;140;80;3;1;0;0;1;1
+89510;16248;1;158;67.0;120;80;1;1;0;0;0;0
+89512;21413;1;159;63.0;140;90;1;3;0;1;1;1
+89513;21856;1;164;54.0;120;70;1;1;0;0;1;1
+89514;23376;2;177;72.0;130;80;3;1;0;0;1;1
+89515;21840;1;171;95.0;160;80;1;2;0;0;1;1
+89516;21724;1;169;143.0;160;120;3;3;0;0;1;1
+89517;16185;1;174;78.0;110;80;1;1;0;0;1;0
+89518;15831;1;154;77.0;110;80;1;1;0;0;1;0
+89519;19132;1;158;52.0;110;70;1;1;0;0;1;0
+89520;19017;2;167;79.0;120;80;1;1;1;1;1;0
+89522;19801;1;157;79.0;150;100;3;3;0;0;1;1
+89526;19476;2;179;77.0;160;100;3;1;0;0;1;1
+89530;21115;2;169;100.0;140;90;2;2;1;0;0;1
+89532;20965;2;173;81.0;115;80;2;1;0;0;1;0
+89533;22146;1;170;60.0;120;80;1;1;0;0;1;0
+89534;21360;1;152;68.0;100;60;1;1;0;0;0;0
+89536;21230;2;158;75.0;140;90;1;1;0;1;1;1
+89538;19215;2;175;68.0;120;80;1;1;0;0;1;0
+89539;16607;1;160;97.0;160;100;3;1;0;1;0;1
+89542;20593;2;175;72.0;120;80;1;1;0;0;0;0
+89543;18270;1;154;65.0;140;90;2;2;0;0;0;0
+89545;18920;1;174;85.0;160;1100;1;1;0;0;1;1
+89546;21944;2;170;89.0;160;90;3;1;0;0;1;1
+89547;23096;2;175;80.0;120;80;1;3;0;0;1;1
+89549;16646;1;169;49.0;90;60;1;1;0;0;1;0
+89550;22805;1;168;72.0;120;80;1;3;0;0;1;0
+89551;17461;1;159;74.0;130;90;1;1;0;0;1;1
+89554;17317;2;174;73.0;120;80;1;1;0;0;1;0
+89556;21345;2;164;68.0;120;80;1;1;0;0;1;0
+89557;15192;1;148;53.0;100;70;1;1;0;0;1;0
+89558;15176;2;178;93.0;150;100;2;1;0;0;1;1
+89559;22023;1;168;83.0;12;80;2;1;0;0;0;0
+89561;17397;2;177;100.0;120;80;1;1;0;0;1;0
+89563;23481;1;157;79.0;120;80;1;1;0;0;1;1
+89565;14640;2;174;72.0;120;80;1;1;0;0;1;0
+89566;16278;2;169;81.0;110;80;1;1;0;0;1;0
+89569;21263;1;165;65.0;120;80;3;3;0;0;1;1
+89570;21887;2;165;69.0;120;80;2;2;0;0;1;1
+89571;16625;1;167;57.0;110;70;1;1;0;0;1;0
+89572;21208;2;182;94.0;130;80;1;1;0;0;1;0
+89574;23424;1;158;67.0;130;90;1;1;0;0;0;0
+89575;18265;1;168;62.0;120;80;1;1;0;0;0;0
+89578;19599;1;154;71.0;130;90;2;2;0;0;1;0
+89579;18073;2;180;80.0;120;80;1;1;1;0;0;1
+89580;23231;2;176;90.0;140;80;1;2;0;0;1;0
+89581;21957;1;164;74.0;120;80;3;3;0;0;0;0
+89582;14542;1;160;59.0;110;70;1;1;0;0;1;0
+89583;22808;2;170;78.0;140;80;1;1;1;0;0;1
+89584;21968;1;168;78.0;140;80;1;1;0;0;1;1
+89585;18261;1;155;78.0;115;80;1;2;0;0;1;0
+89586;21748;1;167;68.0;150;90;1;1;0;0;1;0
+89587;20394;1;162;75.0;120;80;2;1;0;0;1;0
+89588;20968;2;165;65.0;150;80;1;1;0;0;1;0
+89589;18157;1;162;68.0;120;80;1;1;0;0;1;0
+89590;21248;1;152;77.0;120;80;2;1;0;0;0;0
+89593;20603;2;176;88.0;130;80;2;2;0;0;0;1
+89594;23102;2;174;80.0;140;80;2;2;0;0;1;0
+89596;18301;1;165;68.0;120;80;1;1;0;0;1;1
+89597;20956;1;170;68.0;110;70;2;1;0;0;1;0
+89598;18138;1;171;67.0;110;70;3;1;0;0;1;1
+89599;17683;2;178;91.0;120;80;1;2;0;0;0;1
+89600;21384;1;153;57.0;110;70;1;1;0;0;1;1
+89601;20595;1;157;60.0;110;70;1;1;0;0;1;1
+89603;19288;1;178;82.0;120;80;1;1;0;0;1;0
+89605;16541;1;174;62.0;110;70;1;1;0;0;1;0
+89606;21349;2;190;107.0;120;80;1;1;0;0;0;0
+89608;14722;2;170;69.0;110;70;1;1;0;0;1;0
+89610;22803;1;145;50.0;120;80;1;1;0;0;0;0
+89612;20562;1;164;94.0;120;80;1;1;0;0;1;0
+89613;15844;2;178;80.0;160;100;1;1;1;0;1;1
+89614;15266;2;167;70.0;120;80;1;1;0;0;1;0
+89615;19692;1;159;84.0;140;90;3;1;0;0;1;1
+89616;21483;1;165;65.0;120;79;1;1;0;0;0;1
+89618;19862;1;164;57.0;130;80;1;1;0;0;1;0
+89619;18890;1;162;90.0;185;100;1;1;0;0;1;1
+89620;18306;2;160;64.0;130;80;1;1;0;0;1;0
+89621;19715;1;171;103.0;110;80;1;1;0;0;0;0
+89622;19800;2;168;58.0;120;80;1;2;0;0;1;1
+89623;20901;1;170;70.0;120;80;1;1;0;0;1;1
+89625;22572;1;160;82.0;150;90;2;1;0;0;1;1
+89626;19688;2;164;80.0;120;80;1;1;0;0;0;0
+89628;18815;1;160;76.0;150;90;1;1;0;0;1;0
+89631;21373;1;160;82.0;150;90;1;1;0;0;1;1
+89632;20275;1;155;75.0;140;90;1;1;0;0;0;0
+89633;17540;2;170;64.0;110;80;1;1;0;0;1;1
+89634;21818;2;154;61.0;120;80;1;1;0;0;0;0
+89635;23497;1;167;59.0;125;90;1;1;0;0;1;0
+89636;18241;2;163;75.0;140;90;1;1;0;0;1;1
+89638;20530;1;170;83.0;140;80;2;1;0;0;0;0
+89639;22688;2;169;71.0;135;90;2;1;0;1;0;1
+89640;19162;2;163;70.0;120;80;1;1;1;0;0;0
+89642;19929;1;163;65.0;120;80;1;1;0;0;1;0
+89644;16042;2;166;62.0;110;70;1;2;0;0;1;0
+89645;14514;2;168;70.0;120;80;1;1;1;0;1;0
+89650;18185;2;151;63.0;110;69;1;1;0;0;0;0
+89651;20648;2;164;98.0;120;80;1;1;0;0;1;0
+89652;18123;2;164;89.0;110;70;1;1;0;0;1;0
+89653;21863;1;160;83.0;200;100;1;1;0;0;1;1
+89655;19731;1;165;58.0;120;80;1;1;0;0;1;0
+89656;17796;1;167;69.0;120;70;1;1;0;0;1;1
+89657;23115;1;143;53.0;120;80;1;1;0;0;1;1
+89658;19066;1;156;68.0;120;80;1;3;0;0;1;1
+89659;22660;1;160;61.0;110;60;1;1;0;0;1;1
+89660;22096;1;168;81.0;140;90;1;1;0;0;1;1
+89661;19821;2;160;58.0;110;90;3;1;0;0;1;1
+89662;20404;1;162;98.0;130;80;2;1;0;0;1;0
+89663;15125;2;162;67.0;100;70;1;1;0;0;1;0
+89664;18276;2;160;60.0;120;80;1;1;0;0;1;1
+89665;18413;1;151;51.0;113;66;1;1;0;0;1;0
+89666;17398;1;168;65.0;130;90;1;1;0;0;0;1
+89670;22404;1;151;78.0;160;1100;3;1;0;0;1;1
+89671;21077;1;160;85.0;150;80;2;1;0;0;1;1
+89673;21222;1;152;70.0;140;90;1;1;0;0;1;1
+89674;14347;2;182;62.0;130;60;1;1;0;0;0;0
+89676;18374;2;171;69.0;110;70;1;1;0;0;1;1
+89677;15878;2;181;76.0;110;70;1;1;0;0;1;1
+89678;18159;1;152;64.0;150;88;1;1;0;0;0;1
+89679;17656;1;168;90.0;140;90;1;1;0;0;1;1
+89682;20570;1;158;73.0;120;80;1;1;0;0;0;0
+89685;18420;1;158;75.0;120;80;1;1;0;0;1;0
+89687;18789;1;166;69.0;120;80;2;2;0;0;0;0
+89688;19820;2;158;55.0;120;80;1;1;0;1;1;0
+89692;23397;1;166;75.0;130;80;1;1;0;0;1;1
+89693;18280;1;174;67.0;120;80;1;1;0;0;1;0
+89696;22639;2;170;85.0;150;90;1;1;0;0;1;1
+89697;16170;1;171;63.0;140;100;1;1;0;0;1;1
+89699;21271;2;168;74.0;140;90;3;3;0;1;1;1
+89701;19792;1;152;69.0;140;100;3;1;0;0;1;1
+89702;15275;1;158;60.0;125;70;1;1;0;0;1;1
+89703;18354;1;155;79.0;10;70;1;1;0;0;1;0
+89704;16054;2;171;98.0;160;100;3;1;0;0;1;1
+89706;16079;2;170;68.0;120;70;1;1;0;0;1;1
+89707;21947;1;170;68.0;150;90;1;1;0;0;1;1
+89708;15810;2;169;78.0;120;70;1;1;1;0;1;1
+89711;18850;1;160;92.0;140;90;1;1;0;0;1;1
+89712;22766;1;160;56.0;110;80;1;1;0;0;1;0
+89713;15281;1;159;68.0;100;70;1;1;0;0;1;0
+89714;16724;1;174;73.0;140;90;1;1;0;0;1;0
+89715;20285;2;175;63.0;125;80;1;1;0;0;1;0
+89717;23330;1;158;61.0;140;80;1;3;0;0;0;1
+89718;18455;1;165;65.0;120;70;1;1;0;0;1;0
+89720;21872;1;158;74.0;120;80;1;1;0;0;1;1
+89722;20472;1;168;75.0;120;80;1;1;0;0;0;0
+89724;18463;1;174;62.0;110;70;1;1;0;0;0;0
+89725;21821;1;165;100.0;120;80;1;1;0;0;1;0
+89726;17479;2;182;105.0;140;90;1;1;0;0;1;1
+89729;19042;1;161;64.0;120;80;1;1;0;1;1;1
+89730;16687;2;170;74.0;120;80;1;1;0;0;0;0
+89731;21468;1;168;67.0;140;80;1;1;0;0;1;1
+89733;19744;1;164;67.0;140;100;1;1;0;0;1;1
+89734;17436;1;160;80.0;140;90;1;2;0;0;1;1
+89736;18815;2;166;69.0;110;70;1;1;0;1;1;0
+89737;19519;1;160;98.0;130;80;1;1;0;0;0;1
+89738;19130;1;169;73.0;120;90;1;1;0;0;1;1
+89740;21177;1;167;90.0;120;80;1;1;0;0;1;0
+89741;20418;1;170;68.0;110;70;1;1;0;0;0;0
+89743;23219;1;161;62.0;120;69;1;1;0;0;1;0
+89744;18944;2;169;65.0;140;100;1;1;0;1;1;1
+89745;18956;1;160;74.0;140;90;1;1;0;0;1;1
+89746;21633;2;169;70.0;125;80;1;1;0;0;1;0
+89747;16870;2;170;70.0;120;80;1;1;0;0;0;1
+89748;22620;2;182;93.0;120;80;2;1;0;0;0;1
+89749;20951;2;175;74.0;145;1000;1;1;1;0;0;1
+89751;18236;2;170;68.0;120;80;1;1;0;0;0;1
+89752;22679;1;158;80.0;140;90;2;1;0;0;1;0
+89756;22748;2;164;79.0;120;80;1;1;0;1;1;0
+89757;16791;2;173;72.0;140;80;3;3;0;0;0;0
+89759;21960;1;157;87.0;160;80;1;2;0;0;1;1
+89760;20168;1;163;84.0;130;80;1;1;0;0;0;1
+89761;14711;2;184;92.0;150;90;1;1;1;0;1;1
+89763;19499;1;164;99.0;130;80;2;1;0;0;1;0
+89766;19871;1;158;75.0;120;80;1;1;0;0;1;1
+89767;21947;1;157;73.0;140;70;2;1;1;0;1;1
+89769;14535;2;175;78.0;120;80;1;1;0;0;1;0
+89770;15360;1;167;69.0;150;85;1;1;0;0;1;1
+89771;18962;2;174;70.0;120;80;1;1;1;1;1;0
+89772;20174;1;159;84.0;130;70;1;1;0;0;1;1
+89774;16696;2;160;90.0;160;100;1;1;0;0;1;1
+89775;21967;2;168;69.0;140;90;3;1;1;0;1;1
+89779;18141;1;164;78.0;130;80;2;3;0;0;1;0
+89780;18379;1;160;75.0;160;100;1;1;0;0;0;1
+89781;20232;1;166;66.0;120;70;1;1;0;0;1;1
+89782;19586;1;170;70.0;130;90;3;3;0;0;1;1
+89783;19614;1;164;79.0;120;80;1;1;1;1;1;0
+89785;18936;2;170;111.0;120;80;1;1;0;0;1;0
+89786;16055;1;162;61.0;130;90;1;2;0;0;1;0
+89787;15395;1;153;48.0;120;80;1;1;0;0;1;0
+89788;22047;1;150;75.0;180;1120;2;2;0;0;0;1
+89789;21684;1;160;64.0;120;80;1;1;0;0;1;0
+89790;19184;1;162;80.0;130;90;1;1;0;0;0;1
+89792;18281;1;159;99.0;120;80;2;1;0;0;0;0
+89794;19699;1;165;80.0;120;80;1;1;0;0;1;0
+89795;19934;2;172;95.0;130;70;1;1;1;0;1;1
+89796;16007;1;163;70.0;120;90;1;1;0;0;1;1
+89799;17553;1;165;100.0;120;80;1;2;0;0;1;0
+89800;19689;1;158;71.0;120;80;1;1;1;0;1;0
+89801;15493;2;168;74.0;130;90;2;2;0;0;1;1
+89803;22670;1;149;80.0;180;100;1;1;0;0;0;1
+89804;19974;2;175;68.0;120;80;1;1;0;0;1;1
+89808;18979;1;163;80.0;120;80;1;1;0;0;1;0
+89809;21270;2;174;75.0;120;80;1;3;0;0;1;1
+89810;18306;1;178;78.0;120;70;1;1;0;0;1;0
+89811;21347;2;157;61.0;120;80;1;1;1;0;0;1
+89813;18886;1;155;61.0;110;70;1;1;0;0;0;0
+89815;18132;2;168;86.0;140;100;2;2;0;1;0;1
+89816;22560;2;179;82.0;120;70;1;1;0;0;0;0
+89817;21923;2;170;86.0;130;79;3;1;0;1;1;1
+89818;17510;1;150;76.0;130;80;1;1;0;0;1;0
+89819;19785;2;174;96.0;160;90;1;1;1;0;1;1
+89821;18185;2;170;75.0;160;90;1;2;0;0;1;1
+89822;19499;1;164;65.0;120;80;3;3;0;0;0;1
+89825;20911;1;160;75.0;100;70;1;1;0;0;0;1
+89826;22567;2;168;85.0;150;90;1;1;0;0;1;1
+89830;21153;2;172;108.0;170;100;3;1;0;0;0;1
+89832;20968;1;160;69.0;150;80;2;2;0;0;0;1
+89833;18963;2;165;86.0;130;80;2;2;0;0;1;1
+89836;21953;1;156;62.0;160;100;1;1;0;0;1;1
+89837;21090;1;156;68.0;120;80;1;1;0;0;1;0
+89838;23396;1;166;80.0;160;90;3;2;0;0;1;1
+89840;23277;2;177;83.0;120;80;1;1;0;0;0;1
+89842;14500;2;182;93.0;140;90;1;1;0;0;0;1
+89843;15055;2;176;70.0;110;70;1;1;0;0;1;0
+89844;14517;1;168;67.0;120;80;1;1;0;0;1;0
+89847;21760;1;157;71.0;120;80;1;1;0;0;1;1
+89848;18351;2;164;60.0;110;70;1;1;0;0;1;0
+89849;22085;2;170;70.0;120;80;1;1;0;0;0;0
+89850;19126;1;158;78.0;120;80;1;1;0;0;1;0
+89852;16042;1;162;100.0;170;90;1;1;0;0;1;1
+89856;22506;2;162;78.0;140;90;1;1;0;0;1;1
+89857;19678;1;158;107.0;140;90;3;1;0;0;1;1
+89859;21201;1;154;70.0;160;90;1;1;0;0;1;1
+89860;23129;2;173;88.0;100;60;1;1;0;0;1;1
+89861;14584;1;162;59.0;120;80;1;1;0;0;1;1
+89864;22773;2;168;78.0;120;80;1;1;1;0;1;0
+89865;17437;2;160;85.0;150;80;1;1;1;0;1;1
+89866;21854;1;150;54.0;130;90;1;1;0;0;0;1
+89867;21509;1;177;100.0;140;80;1;1;0;0;1;1
+89869;21742;1;158;107.0;150;1000;1;1;0;0;1;1
+89870;19580;2;170;68.0;110;70;1;1;0;0;1;0
+89872;18428;1;165;71.0;120;80;1;3;0;0;1;0
+89873;19153;1;159;65.0;120;80;1;1;0;0;1;0
+89875;18832;1;163;77.0;100;60;2;1;0;0;1;1
+89877;18942;2;172;75.0;150;90;1;1;0;0;1;1
+89878;21848;1;165;60.0;150;100;1;2;0;0;1;1
+89879;17578;2;175;55.0;120;80;1;1;0;0;1;0
+89880;19083;1;158;75.0;120;80;1;1;0;0;1;0
+89882;20901;2;162;76.0;120;80;1;1;0;0;1;0
+89883;14621;2;168;72.0;120;80;1;1;1;1;1;0
+89885;18100;1;156;64.0;140;90;1;1;0;0;1;1
+89886;21865;2;163;70.0;120;70;3;3;0;0;0;1
+89887;17325;1;165;115.0;120;80;1;1;0;0;0;0
+89888;21125;1;152;80.0;130;80;2;2;0;0;1;0
+89889;21267;1;155;52.0;110;70;2;1;0;0;1;0
+89890;19882;2;169;72.0;130;90;1;1;0;0;1;1
+89891;20456;1;162;72.0;120;80;1;1;0;0;1;0
+89892;23297;1;151;62.0;140;100;3;3;0;0;1;1
+89895;19558;2;175;80.0;120;80;1;1;0;0;1;0
+89896;21832;1;165;61.0;120;80;1;1;0;0;1;0
+89897;20238;1;155;73.0;140;100;1;1;0;0;0;0
+89898;19585;1;165;58.0;110;50;1;1;0;0;1;0
+89901;21120;1;157;63.0;120;80;1;1;0;0;0;0
+89902;23420;1;150;66.0;120;80;1;1;0;0;0;1
+89904;19940;2;170;70.0;140;90;1;1;0;0;1;0
+89905;20304;2;170;102.0;140;80;1;1;0;0;0;1
+89906;16876;1;161;84.0;140;90;1;1;0;0;1;1
+89907;20678;1;162;85.0;150;90;2;1;0;0;1;1
+89908;19004;1;152;100.0;130;90;1;1;0;0;1;1
+89910;20205;2;169;110.0;120;80;2;1;1;0;0;0
+89911;17592;1;153;57.0;160;120;3;1;0;0;1;1
+89914;18787;1;170;59.0;120;80;1;1;0;0;1;0
+89915;22019;1;158;83.0;150;100;1;1;0;0;1;1
+89916;20500;1;164;78.0;120;80;2;1;0;0;1;0
+89918;20529;1;160;80.0;140;90;3;3;0;0;1;1
+89919;22083;1;180;70.0;120;80;1;1;0;0;1;0
+89920;23323;1;150;69.0;130;80;3;3;0;0;1;1
+89921;21346;1;168;59.0;120;80;1;1;0;0;1;0
+89922;18140;1;158;50.0;120;80;1;1;0;0;1;0
+89923;20662;2;170;72.0;120;80;1;1;0;0;1;0
+89925;20349;1;165;126.0;130;80;3;3;0;0;1;1
+89926;16089;1;156;79.0;145;85;1;1;0;0;0;1
+89927;19510;1;159;70.0;140;90;1;3;0;0;1;1
+89928;21035;1;168;85.0;130;80;3;1;0;0;1;1
+89929;15369;1;168;62.0;120;80;1;1;0;0;1;0
+89930;19691;2;180;95.0;140;90;2;1;0;0;1;1
+89932;18252;1;160;64.0;100;70;1;1;0;0;1;0
+89933;16721;1;167;80.0;160;90;1;2;0;0;1;1
+89934;21215;2;159;71.0;120;80;1;1;0;0;0;0
+89935;17660;1;156;67.0;120;80;1;1;0;0;1;0
+89936;17537;2;182;88.0;120;80;1;1;0;0;1;0
+89937;17479;2;169;101.0;150;90;2;1;1;0;1;1
+89939;21863;1;164;59.0;140;90;1;1;0;0;1;1
+89940;15117;1;157;62.0;110;80;1;1;0;0;1;0
+89941;19994;1;160;67.0;130;90;1;1;0;0;1;1
+89942;18667;1;155;75.0;140;80;1;1;0;0;1;1
+89943;20475;2;165;83.0;130;80;2;1;1;0;1;0
+89944;18109;1;158;79.0;110;70;1;1;0;1;0;0
+89945;20334;1;165;72.0;140;80;1;1;0;0;1;1
+89946;21168;1;160;85.0;120;80;1;1;0;0;0;1
+89947;23261;1;150;69.0;190;110;1;3;0;0;1;0
+89949;23351;2;169;70.0;120;70;1;1;0;0;1;1
+89950;16873;2;160;60.0;120;80;1;1;0;0;1;0
+89952;20178;2;178;88.0;120;80;1;1;0;0;1;0
+89953;18936;1;160;73.0;140;90;1;1;0;0;1;1
+89954;14559;2;167;75.0;140;90;1;1;0;0;1;1
+89955;20281;2;173;80.0;140;90;3;1;0;0;1;1
+89956;17469;1;165;66.0;140;80;1;1;0;0;1;1
+89957;21768;2;167;60.0;110;80;1;1;1;0;1;0
+89958;22526;1;156;56.0;140;90;3;1;0;0;1;1
+89961;15779;1;158;55.0;110;70;1;1;0;0;0;0
+89963;20441;1;149;71.0;140;90;2;1;0;0;1;1
+89964;19063;1;165;64.0;120;90;2;1;0;0;1;0
+89965;15248;1;169;72.0;110;70;2;1;0;0;1;1
+89968;15226;1;158;55.0;110;70;1;1;0;0;0;0
+89969;14594;1;159;89.0;143;103;1;1;0;0;1;0
+89970;16004;1;162;69.0;110;80;1;1;0;0;1;0
+89972;20506;2;164;68.0;110;80;1;1;0;0;1;0
+89973;17489;2;168;65.0;120;80;1;1;0;0;1;0
+89974;19020;1;153;76.0;130;80;3;1;0;0;1;1
+89975;21289;1;158;67.0;150;90;3;3;0;0;1;1
+89976;17511;2;166;64.0;110;70;1;1;1;1;1;0
+89977;19617;1;154;68.0;110;80;1;1;0;0;1;0
+89978;20924;1;156;59.0;140;90;1;1;0;0;1;0
+89979;21987;1;157;72.0;150;90;2;1;0;0;0;1
+89981;21706;1;170;89.0;110;80;1;1;0;0;1;1
+89982;19592;1;164;64.0;120;80;1;1;0;0;1;0
+89983;22630;2;165;64.0;130;80;3;1;0;0;1;1
+89984;18760;1;162;54.0;110;70;1;1;0;0;0;1
+89986;21826;1;156;82.0;120;80;1;1;0;0;0;1
+89987;19977;1;165;65.0;120;70;1;1;0;0;1;0
+89988;19564;2;165;90.0;160;90;1;1;0;0;1;1
+89989;17587;2;170;80.0;140;90;2;1;0;0;1;1
+89990;20476;1;174;68.0;110;70;1;1;0;0;0;0
+89991;21201;2;168;81.0;130;80;1;1;0;0;1;0
+89993;15368;2;160;64.0;150;90;1;1;0;1;1;1
+89994;21975;2;170;102.0;130;90;3;1;0;0;1;1
+89995;18322;1;158;71.0;140;90;2;1;0;0;1;1
+90000;19148;1;158;93.0;160;90;1;1;0;0;0;1
+90001;17385;2;169;72.0;120;80;1;1;0;0;1;0
+90002;22449;2;162;59.0;110;80;1;1;0;0;1;1
+90004;22528;1;168;76.0;120;80;1;1;0;0;0;0
+90005;22613;1;174;69.0;120;80;1;1;0;0;1;0
+90007;17576;2;160;70.0;120;70;1;1;0;0;1;0
+90009;18256;1;165;59.0;100;70;1;1;0;0;1;0
+90010;20199;1;150;73.0;130;80;3;3;0;0;1;1
+90011;15465;2;180;60.0;120;80;1;1;0;0;1;1
+90013;22593;1;148;58.0;110;70;1;1;0;0;1;0
+90014;22526;1;161;89.0;140;90;3;3;1;1;0;1
+90016;19787;1;179;72.0;140;90;2;2;0;0;1;0
+90018;22321;1;161;70.0;120;80;1;1;0;0;1;0
+90019;20428;1;152;73.0;120;80;3;1;0;0;1;1
+90020;20368;2;162;86.0;145;90;1;1;0;0;0;0
+90021;15992;1;166;65.0;120;80;1;1;0;0;1;0
+90023;23325;1;166;88.0;150;100;2;2;0;0;0;0
+90024;23120;2;177;102.0;110;80;2;2;1;0;1;0
+90026;16024;1;174;65.0;120;80;1;1;0;0;1;1
+90027;21779;2;151;86.0;200;110;1;1;0;0;1;1
+90028;21056;1;165;102.0;130;80;1;1;0;0;0;1
+90029;21694;2;176;89.0;120;70;1;2;0;0;1;1
+90030;17611;1;165;91.0;120;80;1;1;0;0;1;0
+90031;15900;1;170;68.0;110;80;1;3;0;0;1;0
+90032;23343;1;151;57.0;160;100;1;1;0;0;1;1
+90033;18804;1;164;85.0;120;80;2;1;0;0;1;0
+90035;19632;1;167;78.0;140;80;1;1;0;0;1;1
+90036;18081;1;168;70.0;120;80;1;1;0;0;1;0
+90038;18397;1;160;60.0;110;70;1;1;0;0;1;0
+90039;19979;2;170;80.0;120;80;1;1;1;0;1;1
+90041;21212;2;168;73.0;110;70;1;1;0;0;0;0
+90042;19957;2;164;61.0;120;80;3;1;0;1;1;0
+90043;23209;2;169;74.0;140;90;1;1;0;0;1;1
+90044;20705;1;160;72.0;130;90;1;1;0;0;1;1
+90045;18010;1;152;76.0;130;90;3;2;0;0;1;1
+90046;18170;1;165;75.0;120;80;1;1;0;0;1;0
+90047;20377;1;160;58.0;120;80;1;1;0;0;0;0
+90048;23395;1;160;65.0;120;80;1;1;0;0;1;0
+90049;18708;1;160;67.0;120;80;2;1;0;0;1;0
+90052;17666;2;164;69.0;100;70;1;1;0;0;1;0
+90054;15596;2;178;75.0;120;70;1;1;0;0;1;1
+90055;23348;2;168;70.0;140;80;2;2;0;0;1;1
+90057;16851;1;161;89.0;120;80;1;1;0;0;1;1
+90058;18993;2;176;91.0;125;80;3;3;0;0;1;0
+90059;15540;1;159;62.0;120;80;1;1;0;0;1;0
+90060;19709;1;159;76.0;110;70;1;1;0;0;1;1
+90063;19159;1;160;70.0;110;80;2;1;0;0;1;0
+90064;20351;2;166;53.0;120;80;2;1;0;0;1;0
+90065;19038;1;156;69.0;140;90;1;1;0;0;1;0
+90067;23195;2;171;101.0;140;90;3;3;0;0;1;1
+90069;16088;1;167;117.0;140;80;1;1;0;0;1;1
+90070;22414;1;164;90.0;120;80;1;1;0;0;1;1
+90071;22481;1;155;85.0;130;80;1;3;0;0;0;1
+90072;20486;1;157;68.0;12;80;1;1;0;0;1;1
+90073;20232;2;160;95.0;120;80;1;1;0;0;1;1
+90074;14828;1;169;73.0;120;80;1;1;0;0;1;0
+90075;17342;1;157;58.0;130;80;3;1;0;0;1;1
+90076;20309;2;184;97.0;140;90;1;1;1;0;1;1
+90077;19661;1;174;110.0;120;80;1;1;0;0;1;1
+90078;18308;1;160;55.0;110;90;1;2;0;0;1;0
+90079;15433;1;160;72.0;120;80;2;2;0;0;0;0
+90080;16879;2;174;72.0;120;80;1;1;0;0;1;0
+90082;16057;1;155;67.0;120;90;1;1;0;0;0;0
+90083;21634;2;172;81.0;120;80;3;3;0;0;1;1
+90084;18252;1;151;77.0;150;80;1;1;0;0;1;1
+90087;21927;1;165;65.0;120;80;1;1;0;0;1;0
+90090;23520;1;165;66.0;100;60;1;1;0;0;1;1
+90091;21076;2;172;79.0;120;80;1;1;0;0;1;0
+90092;18935;1;159;73.0;140;80;1;1;0;0;1;1
+90093;16767;1;162;87.0;120;80;1;1;0;0;0;1
+90097;14679;1;160;55.0;120;80;1;1;0;0;1;0
+90098;22563;2;184;60.0;120;80;1;1;0;0;1;0
+90099;18425;1;159;64.0;120;80;1;1;0;0;1;0
+90101;18180;1;159;93.0;150;90;1;1;0;0;1;1
+90102;19649;1;161;64.0;120;80;1;1;0;0;0;1
+90103;19819;2;178;130.0;110;80;1;1;0;0;1;0
+90106;21865;2;178;129.0;140;1110;3;1;0;0;1;1
+90107;20619;1;157;61.0;110;70;1;1;0;0;1;0
+90111;21246;1;175;75.0;130;80;3;3;0;0;1;1
+90114;21039;2;165;51.0;120;70;1;1;0;0;1;0
+90116;19829;1;170;72.0;120;80;1;1;0;0;1;1
+90117;21820;1;159;71.0;120;80;1;1;0;0;1;1
+90118;18869;1;157;91.0;130;110;1;1;0;0;1;0
+90120;21283;1;151;49.0;120;80;1;1;0;0;1;1
+90122;18086;1;161;72.0;130;90;2;1;0;0;1;0
+90123;19750;1;145;41.0;110;70;2;1;0;0;0;0
+90124;15826;1;170;69.0;110;80;1;1;0;0;1;0
+90125;18119;1;164;51.0;130;80;1;1;0;0;1;0
+90127;22127;1;159;58.0;160;90;1;2;0;0;1;1
+90128;20406;1;158;39.0;90;60;1;1;0;0;0;1
+90129;20343;2;180;82.0;120;80;1;1;0;0;1;1
+90130;21777;1;157;56.0;130;80;2;1;0;0;0;0
+90131;21892;2;178;81.0;140;90;2;1;0;0;0;1
+90132;20378;1;163;65.0;110;70;1;1;0;0;0;1
+90133;19074;1;158;56.0;120;80;1;1;0;0;1;1
+90134;19973;1;165;61.0;120;80;1;1;0;0;1;0
+90137;21059;1;155;90.0;160;1000;1;1;0;0;1;1
+90139;19473;1;159;61.0;110;8077;1;1;0;0;1;0
+90140;16755;2;171;78.0;100;69;1;1;0;0;1;0
+90142;16860;1;158;49.0;90;60;1;2;0;0;1;0
+90144;19109;2;178;84.0;130;90;3;1;0;0;1;1
+90145;14750;1;164;70.0;120;80;1;1;0;0;1;0
+90146;18372;2;170;80.0;130;89;1;1;1;0;1;0
+90147;17250;1;158;59.0;140;80;1;1;0;0;0;0
+90148;18253;1;185;65.0;120;80;1;1;0;0;1;0
+90149;20599;1;168;75.0;120;80;1;1;0;0;1;0
+90151;20237;2;120;80.0;120;80;1;1;0;0;1;1
+90152;18863;1;155;98.0;120;80;1;1;0;0;1;1
+90153;21199;1;160;56.0;110;70;1;1;0;0;1;0
+90157;18826;2;163;92.0;140;90;3;1;0;0;1;1
+90158;22619;1;158;91.0;140;80;1;1;0;0;0;1
+90159;14778;2;165;69.0;110;70;1;1;1;0;1;0
+90160;21248;2;173;88.0;120;80;1;1;0;0;1;1
+90161;15858;1;161;123.0;140;90;1;1;0;0;1;1
+90162;23362;1;169;67.0;120;80;1;1;0;0;1;1
+90163;18883;2;176;76.0;140;90;1;1;0;0;1;1
+90164;18464;1;150;53.0;90;70;1;1;0;0;0;0
+90165;23325;2;178;80.0;120;80;3;2;0;0;1;0
+90166;19555;2;168;70.0;140;90;3;1;0;0;1;1
+90167;20969;2;178;71.0;130;90;1;1;1;1;1;1
+90168;15233;1;159;75.0;110;70;1;1;0;0;1;0
+90169;21908;1;165;75.0;140;90;1;1;0;0;1;0
+90170;20926;1;165;65.0;120;80;3;3;0;0;0;1
+90172;18232;1;159;66.0;120;80;1;1;0;0;0;0
+90174;19246;1;160;72.0;140;80;3;1;0;1;1;1
+90175;21067;1;160;59.0;150;100;3;1;0;0;1;1
+90179;21920;1;156;85.0;150;99;1;1;0;0;1;1
+90180;18791;2;171;115.0;120;80;1;1;0;0;1;0
+90181;21083;1;165;87.0;110;80;1;1;0;0;0;0
+90182;20355;1;160;80.0;120;80;1;1;0;0;1;0
+90183;22192;2;198;58.0;110;70;1;1;0;0;0;0
+90184;22112;1;172;95.0;130;70;3;1;0;0;0;1
+90185;21214;1;158;50.0;120;80;2;1;0;0;1;0
+90187;21022;2;172;113.0;120;80;1;1;0;0;1;1
+90188;18320;1;156;85.0;120;80;1;1;0;0;1;0
+90189;18087;1;150;56.0;150;100;1;1;0;0;1;1
+90190;19916;1;154;102.0;140;90;3;1;0;0;1;1
+90191;16076;2;178;99.0;120;80;1;1;1;1;1;0
+90192;18274;1;170;65.0;110;80;1;1;0;0;0;0
+90193;17468;1;164;80.0;130;90;3;1;0;0;1;1
+90194;20486;1;162;56.0;150;100;2;1;0;0;1;1
+90196;18883;2;165;86.0;120;80;1;3;0;0;1;0
+90197;19638;1;152;58.0;100;70;2;1;0;0;1;1
+90199;21448;1;168;69.0;140;80;2;1;0;0;1;1
+90201;17549;1;165;65.0;120;80;1;1;0;0;0;0
+90202;21652;1;165;90.0;140;90;3;2;0;0;0;0
+90205;21955;2;178;93.0;180;100;3;3;0;0;1;1
+90207;21776;1;152;77.0;120;80;1;1;0;0;1;1
+90210;19805;1;163;109.0;130;80;3;1;0;0;1;1
+90211;20550;1;156;63.0;110;60;1;2;0;0;1;1
+90212;19662;1;168;78.0;120;80;1;1;0;0;1;0
+90213;22895;1;169;68.0;120;80;1;1;0;0;1;0
+90214;20511;1;164;70.0;140;80;1;1;0;0;1;1
+90215;20628;1;165;65.0;130;80;1;1;0;0;1;1
+90216;18395;1;159;59.0;130;90;3;3;0;0;1;1
+90217;14678;2;175;67.0;110;80;1;1;0;0;0;0
+90218;14703;1;155;63.0;110;70;2;2;0;0;1;0
+90219;21126;2;170;74.0;175;100;2;1;0;0;1;1
+90220;18485;1;156;85.0;120;80;3;3;0;0;1;0
+90221;21918;1;169;69.0;120;80;1;1;0;0;1;0
+90223;19163;2;164;52.0;130;90;1;1;1;1;0;0
+90224;18004;2;180;52.0;120;60;1;1;0;0;1;0
+90226;20347;1;160;109.0;110;80;1;1;0;0;1;0
+90229;18387;1;170;72.0;120;80;1;1;0;0;1;1
+90230;22619;1;162;73.0;120;80;3;3;0;0;1;1
+90231;18135;2;183;112.0;120;80;1;1;0;0;1;1
+90232;15302;1;162;66.0;110;80;1;1;0;0;1;0
+90233;19683;1;158;95.0;150;1000;3;1;0;0;1;1
+90234;19477;1;159;86.0;140;90;3;1;0;0;0;1
+90235;21164;2;175;75.0;120;80;1;1;0;0;0;1
+90237;21818;1;158;60.0;130;80;1;1;0;0;1;0
+90238;19835;2;182;92.0;160;90;1;1;0;0;1;1
+90239;20572;1;159;105.0;120;80;1;1;0;0;0;1
+90241;21257;2;166;68.0;120;80;1;1;0;0;1;1
+90243;20490;2;158;76.0;160;90;1;1;0;0;1;1
+90246;14512;1;161;97.0;120;80;1;1;0;0;1;0
+90247;15349;1;158;64.0;120;80;1;1;0;0;1;0
+90248;22021;1;167;74.0;120;80;2;2;0;0;0;0
+90249;22472;1;154;89.0;110;80;1;1;0;0;1;1
+90250;20469;2;174;85.0;140;100;2;2;0;0;1;1
+90253;20487;1;166;70.0;120;80;1;1;0;0;1;1
+90255;18380;2;173;71.0;120;79;1;1;0;0;1;0
+90256;14480;1;165;77.0;130;60;1;1;0;0;0;0
+90257;21182;1;167;70.0;120;70;1;1;0;0;1;0
+90258;21106;1;165;93.0;140;1000;2;1;0;0;1;0
+90260;20516;1;161;79.0;130;100;1;1;1;0;1;0
+90261;21994;1;163;59.0;160;100;1;1;0;0;1;1
+90265;18014;2;173;88.0;120;80;1;1;0;0;1;1
+90266;17346;2;173;77.0;150;80;1;1;0;0;1;1
+90267;19251;1;165;63.0;110;80;1;1;0;0;1;1
+90270;19513;1;157;62.0;90;60;1;1;0;0;1;0
+90271;22637;1;150;80.0;140;90;3;1;0;0;1;1
+90272;19738;1;160;61.0;120;70;1;2;0;0;1;0
+90274;23151;1;166;85.0;100;70;3;1;0;0;0;1
+90275;19609;2;172;81.0;130;80;1;1;0;0;1;1
+90276;19051;2;166;75.0;110;70;2;1;0;0;1;0
+90278;19954;2;163;67.0;130;90;1;1;0;0;1;1
+90280;19577;2;171;81.0;135;80;1;1;0;0;1;1
+90281;22765;1;172;68.0;140;80;1;1;0;0;1;1
+90282;14703;2;176;79.0;140;90;1;1;0;0;1;1
+90284;14690;2;175;100.0;120;80;1;1;0;0;1;0
+90285;20268;2;169;74.0;130;90;2;3;1;0;1;1
+90286;23494;1;169;87.0;140;90;2;1;0;0;0;1
+90288;20475;1;157;71.0;130;80;1;1;0;0;1;0
+90289;23438;2;165;81.0;120;80;1;1;0;0;1;1
+90290;18989;1;147;51.0;110;70;1;1;0;0;1;0
+90292;22579;1;164;105.0;150;90;2;3;0;0;1;1
+90294;17054;1;165;61.0;120;80;1;1;0;0;1;0
+90297;15387;2;170;65.0;110;80;1;1;0;0;0;0
+90298;17572;2;179;68.0;120;80;1;1;0;0;0;0
+90299;20606;1;157;67.0;100;70;1;1;0;0;1;0
+90300;16644;1;162;78.0;120;70;1;1;0;0;1;1
+90301;21185;2;179;88.0;110;70;1;1;0;0;1;1
+90302;18966;2;168;76.0;120;80;3;1;0;0;1;0
+90303;14679;1;166;58.0;110;70;1;1;0;0;1;0
+90304;17492;2;163;80.0;130;90;3;1;0;0;1;1
+90305;21365;2;166;72.0;140;90;1;1;0;0;1;1
+90306;23424;2;163;70.0;150;90;1;1;1;0;1;1
+90307;23251;1;179;76.0;100;70;1;1;0;0;0;0
+90308;22489;2;170;88.0;150;90;1;1;0;0;1;0
+90309;19647;1;180;76.0;120;80;1;1;0;0;1;0
+90310;18391;2;175;63.0;110;70;1;1;0;0;1;1
+90311;18345;1;164;70.0;120;80;2;1;0;0;0;1
+90312;18318;1;165;56.0;100;60;1;1;0;0;1;0
+90313;15304;2;169;72.0;110;70;1;1;0;0;1;1
+90314;19908;2;167;64.0;120;80;1;1;1;0;1;1
+90315;22557;2;176;89.0;130;90;1;1;0;0;1;0
+90316;23256;2;168;75.0;150;90;3;3;0;0;1;1
+90317;20652;1;156;65.0;120;80;1;1;0;0;0;1
+90318;20982;1;158;87.0;120;90;1;1;0;0;0;1
+90320;21870;1;159;62.0;120;80;1;3;0;0;1;0
+90322;18199;1;155;72.0;120;80;1;1;0;0;1;0
+90325;15296;1;164;105.0;130;90;1;1;0;0;1;1
+90326;17994;2;163;82.0;120;80;1;1;0;0;1;1
+90327;22746;1;161;60.0;120;80;1;1;0;0;0;0
+90329;22017;1;150;76.0;160;100;1;1;0;0;1;1
+90330;23339;1;154;62.0;100;60;3;3;0;0;1;1
+90331;16154;1;168;71.0;110;70;1;1;0;0;1;0
+90332;21928;1;158;74.0;130;90;1;2;0;0;1;0
+90333;22011;1;157;97.0;90;60;3;1;0;0;1;1
+90336;15477;2;156;73.0;140;1000;2;1;1;1;0;1
+90337;16153;1;160;56.0;110;60;1;1;0;0;1;1
+90339;16527;1;147;45.0;107;72;1;1;0;0;1;0
+90340;19457;2;162;56.0;120;80;1;3;0;0;1;0
+90341;15954;2;173;83.0;12;80;1;1;0;0;1;0
+90342;20879;1;156;41.0;150;100;1;1;0;0;0;1
+90343;21851;1;152;86.0;140;100;1;1;0;0;1;0
+90345;21573;2;166;75.0;130;70;1;1;0;0;1;0
+90346;17650;2;172;84.0;130;80;2;1;0;0;1;1
+90347;18277;1;164;64.0;140;90;1;2;0;0;1;1
+90348;21204;2;172;75.0;120;70;1;1;1;0;0;0
+90349;21716;1;157;78.0;140;80;1;1;0;1;1;1
+90350;21843;1;166;82.0;160;90;3;1;0;0;1;1
+90351;18966;1;170;57.0;120;70;1;1;0;0;0;0
+90352;21426;2;167;68.0;130;80;1;1;1;0;1;0
+90353;22796;1;155;70.0;152;80;1;1;0;0;0;1
+90355;22639;1;158;99.0;140;90;3;1;0;0;1;1
+90357;14625;1;159;55.0;140;90;2;1;0;0;1;1
+90359;20318;1;155;54.0;140;80;3;3;0;0;1;1
+90362;21061;2;175;82.0;130;80;3;1;0;0;1;0
+90363;19151;2;167;92.0;110;80;3;1;0;0;1;1
+90364;21905;1;161;62.0;110;70;3;3;0;0;1;1
+90365;20651;2;175;75.0;110;70;1;1;0;0;1;1
+90366;22807;1;167;65.0;120;80;1;1;0;0;0;0
+90367;19871;2;168;74.0;160;1000;2;1;0;1;1;1
+90369;19722;2;162;64.0;140;90;1;1;0;0;1;1
+90371;17570;1;170;100.0;110;70;1;1;0;0;1;0
+90372;14686;1;160;60.0;120;80;1;1;0;0;1;0
+90373;19578;1;185;75.0;120;80;1;1;0;0;1;0
+90374;19812;2;166;78.0;120;70;1;2;1;1;1;0
+90375;23350;1;152;75.0;140;90;2;1;0;0;1;1
+90376;21073;1;165;81.0;140;90;1;1;0;0;1;1
+90377;15983;1;162;81.0;140;80;3;3;0;0;1;1
+90378;20486;2;173;68.0;90;60;1;1;0;0;0;0
+90379;21168;1;157;64.0;90;60;2;1;0;0;0;0
+90380;16098;1;162;62.0;100;70;1;1;1;0;1;0
+90381;18882;1;161;65.0;110;75;1;1;0;0;1;0
+90382;18494;1;165;68.0;110;70;1;1;0;0;1;1
+90386;19575;1;157;69.0;180;89;1;1;0;0;1;1
+90389;18895;1;164;74.0;130;80;2;2;0;0;1;1
+90392;15350;2;176;84.0;140;90;1;1;0;1;1;0
+90393;15374;1;164;71.0;120;80;1;1;0;0;1;0
+90394;19066;1;156;76.0;110;80;1;1;0;0;0;1
+90395;21486;1;160;120.0;160;90;1;1;0;0;0;1
+90396;16902;1;163;59.0;120;80;1;1;0;0;1;0
+90397;21238;1;155;83.0;180;100;1;1;0;0;1;1
+90398;15900;1;164;80.0;120;80;3;3;0;0;1;0
+90399;20321;2;167;77.0;130;90;1;1;0;0;1;0
+90400;18124;2;183;84.0;130;80;1;1;0;0;1;0
+90401;19114;1;166;76.0;130;80;2;1;0;0;0;1
+90402;19062;1;165;90.0;160;1100;3;3;0;0;1;1
+90403;22483;2;176;85.0;150;100;1;1;1;0;1;1
+90404;20410;1;151;70.0;120;80;1;2;0;0;1;0
+90407;19515;1;165;63.0;100;80;1;2;0;0;1;0
+90409;20462;1;164;80.0;160;90;1;1;0;0;1;0
+90410;17020;1;164;75.0;120;80;1;1;0;0;1;0
+90411;20431;2;170;75.0;120;80;1;1;1;0;1;0
+90412;21041;1;159;66.0;130;80;1;1;0;0;1;1
+90414;21442;1;167;87.0;130;90;1;1;0;0;0;1
+90415;17657;2;172;89.0;120;80;1;1;0;0;1;0
+90416;21931;1;174;84.0;120;80;1;1;0;0;1;0
+90418;20212;1;165;120.0;120;80;1;1;0;0;1;1
+90419;18463;1;180;92.0;140;90;3;3;0;1;1;1
+90420;20595;2;166;69.0;130;90;3;3;0;0;1;0
+90421;14493;1;158;70.0;130;80;2;1;0;1;1;0
+90422;14570;2;162;64.0;120;80;1;1;1;0;1;0
+90425;14487;2;168;57.0;110;60;1;1;0;0;1;0
+90426;15382;2;171;76.0;130;90;2;1;1;0;1;0
+90429;19590;2;174;87.0;130;80;2;1;0;0;0;1
+90430;21101;1;159;84.0;180;110;1;1;0;0;0;0
+90432;21816;2;165;65.0;120;70;1;1;0;0;1;1
+90434;18359;2;170;75.0;120;80;1;1;0;0;1;1
+90437;19587;1;160;105.0;140;90;1;1;0;0;1;1
+90441;23393;1;165;60.0;140;90;3;1;0;0;1;1
+90442;22088;1;166;90.0;140;90;2;2;0;0;0;1
+90446;18948;1;158;57.0;120;80;3;1;0;0;1;0
+90448;18751;1;156;81.0;120;80;3;3;0;0;1;1
+90449;16792;1;164;75.0;110;80;1;1;0;0;0;0
+90450;19919;1;153;58.0;120;80;1;1;0;0;1;0
+90451;19718;2;174;75.0;120;80;1;1;0;0;1;0
+90452;23201;1;149;83.0;110;80;1;1;0;0;1;0
+90453;23282;2;176;105.0;140;95;1;2;0;0;1;1
+90455;21188;1;171;64.0;140;90;1;1;0;0;1;0
+90456;14543;1;158;56.0;120;70;1;1;0;0;1;0
+90457;19711;1;168;68.0;120;80;1;2;0;0;1;0
+90458;19010;2;168;78.0;110;70;1;1;1;0;1;1
+90459;19799;1;158;60.0;120;80;1;1;0;0;0;1
+90460;17651;2;170;68.0;140;90;2;1;0;0;1;1
+90461;18373;1;158;58.0;120;80;3;3;0;0;1;1
+90462;14513;2;165;62.0;120;80;1;1;0;0;1;0
+90463;23280;1;165;84.0;140;80;3;3;0;0;0;1
+90465;18750;1;165;75.0;130;70;1;1;0;0;1;0
+90466;15153;2;165;90.0;100;70;2;1;1;0;1;0
+90468;18407;2;166;70.0;120;80;1;1;0;0;1;0
+90470;19800;1;165;63.0;120;80;1;1;0;0;1;0
+90472;21203;2;174;85.0;170;100;1;1;0;0;1;1
+90474;22395;1;170;75.0;140;90;2;1;0;0;1;1
+90475;20190;1;166;53.0;90;60;1;1;0;0;0;0
+90476;18987;1;154;68.0;120;80;1;2;0;0;1;1
+90478;15401;2;167;80.0;120;80;1;1;0;0;1;0
+90481;16000;1;168;90.0;120;80;1;1;0;0;1;0
+90482;19761;1;165;55.0;120;60;1;1;0;0;0;0
+90486;18774;1;159;86.0;120;80;3;1;0;0;1;1
+90487;16096;1;162;60.0;110;70;1;1;0;0;1;1
+90488;19237;1;154;71.0;120;80;3;3;0;0;1;1
+90489;20340;1;173;68.0;140;90;1;3;0;0;1;1
+90493;22417;2;170;70.0;120;80;2;1;1;1;1;0
+90494;15968;2;172;76.0;110;90;1;1;0;0;1;0
+90498;19904;1;165;75.0;150;90;1;2;0;0;1;1
+90499;21252;1;172;108.0;110;70;1;1;0;0;1;1
+90500;23194;2;174;71.0;140;80;1;1;1;0;1;1
+90501;16672;1;160;67.0;110;70;1;1;0;0;1;0
+90502;16762;1;158;70.0;140;90;1;1;0;0;1;1
+90503;19047;1;165;75.0;140;90;1;1;0;0;1;1
+90504;19088;1;163;44.0;120;80;1;1;0;0;1;0
+90505;20482;2;177;80.0;120;80;1;1;0;0;1;1
+90506;21135;2;156;93.0;120;80;1;1;0;0;0;1
+90507;20552;1;159;80.0;150;90;2;1;0;0;1;1
+90509;18124;1;152;57.0;130;80;3;1;0;0;1;1
+90511;19449;1;156;68.0;130;70;3;1;0;0;1;1
+90512;21784;1;158;92.0;140;90;1;1;0;0;1;1
+90514;16790;1;153;53.0;100;60;1;1;0;0;1;0
+90515;22650;2;165;71.0;120;80;1;1;0;0;1;1
+90516;18216;1;165;65.0;120;80;1;1;0;0;1;0
+90517;21125;2;165;70.0;120;80;1;1;1;0;1;0
+90519;21925;1;165;69.0;120;80;1;3;0;0;0;1
+90521;16083;1;165;63.0;110;70;1;1;0;0;1;0
+90522;19693;1;164;72.0;120;80;1;1;0;0;1;0
+90523;23453;1;165;65.0;120;80;1;1;0;0;0;0
+90524;23131;1;157;86.0;150;90;3;1;0;0;1;0
+90525;21111;1;168;80.0;140;80;1;1;0;0;1;1
+90526;22583;1;165;65.0;120;80;1;1;0;0;0;1
+90527;21170;1;163;71.0;120;80;1;1;0;0;0;0
+90529;21988;1;164;71.0;160;80;3;1;0;0;1;1
+90530;19756;1;162;76.0;140;90;1;3;0;0;1;1
+90531;20919;1;165;63.0;120;80;1;1;0;0;1;0
+90532;17522;1;165;56.0;110;80;1;1;0;0;1;0
+90535;21188;1;158;56.0;120;80;1;1;0;0;1;0
+90536;16900;1;172;69.0;150;90;1;1;0;0;0;1
+90537;19429;1;158;90.0;160;100;3;3;0;0;1;1
+90538;18195;2;172;83.0;117;71;1;1;0;0;1;0
+90540;14561;2;176;91.0;180;90;1;1;0;0;1;1
+90541;20656;1;160;80.0;140;100;3;1;0;0;1;1
+90542;21761;1;159;69.0;120;75;1;1;0;0;1;0
+90544;21984;2;172;85.0;120;79;3;2;0;0;0;1
+90545;18208;1;169;68.0;120;80;1;1;0;0;1;0
+90546;23222;1;159;90.0;130;60;3;3;0;0;1;1
+90547;16000;1;159;76.0;120;80;1;1;0;0;1;0
+90548;17613;1;164;80.0;140;90;1;1;0;0;1;1
+90549;22473;2;174;96.0;140;100;1;1;0;0;1;1
+90550;15316;1;150;45.0;120;70;1;1;0;0;1;0
+90551;16972;1;158;59.0;100;70;1;1;0;0;1;0
+90552;16638;1;163;65.0;120;80;1;1;0;0;0;0
+90553;21837;2;168;83.0;147;83;3;1;0;1;0;1
+90554;19896;1;169;74.0;140;80;2;1;0;0;1;1
+90555;18290;2;180;80.0;120;80;1;1;1;1;1;0
+90556;15506;1;156;46.0;110;70;1;1;0;0;1;0
+90557;22708;1;151;48.0;140;100;1;1;0;0;0;1
+90560;18376;1;160;60.0;120;70;1;1;0;0;0;0
+90561;17367;2;170;113.0;130;90;1;1;0;0;0;1
+90562;18186;1;170;70.0;120;70;1;1;0;0;1;1
+90565;19637;1;154;110.0;150;80;1;1;0;0;1;1
+90568;21674;1;157;88.0;140;90;3;3;0;0;1;1
+90569;21805;1;160;105.0;160;100;1;1;0;0;1;1
+90570;18985;1;171;91.0;130;90;2;1;0;0;0;1
+90571;22580;2;175;68.0;110;70;1;1;0;0;1;0
+90572;22721;1;165;65.0;120;80;1;1;0;0;1;0
+90573;21823;1;173;112.0;130;70;1;1;0;0;1;1
+90574;18829;2;175;58.0;100;70;3;3;0;0;0;0
+90575;19715;1;161;78.0;140;80;3;1;0;0;1;1
+90576;21310;1;178;80.0;140;90;1;1;0;0;0;1
+90577;18891;2;165;98.0;140;90;3;1;1;0;1;1
+90579;20257;2;173;81.0;150;100;3;3;0;1;1;1
+90580;23270;1;159;82.0;140;90;1;1;0;0;1;1
+90581;21274;1;165;66.0;100;80;1;1;0;0;1;0
+90582;16849;2;175;96.0;130;90;2;1;0;0;1;1
+90584;16173;1;164;69.0;100;70;1;1;1;1;1;0
+90585;21281;1;165;87.0;130;100;1;1;0;0;1;1
+90586;19657;1;168;55.0;120;80;1;1;0;0;1;1
+90587;22386;1;163;73.0;140;90;1;1;1;0;1;1
+90589;16696;2;170;76.0;110;70;1;1;0;0;1;0
+90591;22040;2;174;113.0;140;80;1;1;0;0;1;1
+90592;18187;1;165;60.0;110;60;1;1;0;0;1;0
+90593;15219;1;155;71.0;105;75;1;1;0;0;1;0
+90594;14531;1;177;75.0;140;80;1;1;0;0;1;1
+90595;18030;1;155;65.0;120;90;1;1;0;0;1;1
+90596;19757;2;174;94.0;120;80;1;1;0;0;0;0
+90597;20331;1;165;63.0;120;80;1;1;0;0;1;0
+90598;18320;2;176;83.0;140;90;1;1;1;0;0;1
+90599;21955;1;166;97.0;110;70;1;1;0;0;1;0
+90600;22467;1;171;85.0;130;80;1;1;0;0;1;1
+90601;21093;2;180;74.0;100;90;1;1;0;0;0;0
+90604;23374;1;168;81.0;130;80;3;1;0;0;0;1
+90605;19777;1;174;80.0;120;70;1;2;0;0;1;0
+90607;17737;1;166;74.0;120;60;1;1;0;0;1;1
+90608;18204;1;169;68.0;100;70;2;1;0;0;1;0
+90609;17280;2;184;96.0;120;80;1;1;0;0;1;0
+90611;20581;2;182;115.0;120;80;3;1;1;0;0;1
+90612;19163;1;165;65.0;120;80;1;1;0;0;1;1
+90614;16719;1;150;67.0;120;80;2;1;0;0;1;0
+90615;21794;1;178;78.0;120;70;1;1;0;0;1;0
+90616;21153;1;158;96.0;120;80;1;1;0;0;1;1
+90617;14432;1;155;55.0;110;70;1;1;0;0;1;0
+90618;20363;2;168;78.0;120;80;1;1;1;0;1;0
+90619;19632;2;170;79.0;160;100;1;1;0;0;1;1
+90620;21851;1;161;58.0;120;70;1;1;0;0;1;0
+90621;16228;2;175;70.0;140;90;1;1;0;0;1;1
+90622;20464;1;160;85.0;120;80;2;1;0;0;1;0
+90623;22738;1;164;56.0;140;90;1;1;0;0;1;1
+90624;21798;2;162;57.0;150;100;1;1;0;0;1;1
+90625;14566;1;152;52.0;100;70;1;1;0;0;0;0
+90627;20600;2;156;67.0;140;90;1;1;1;0;0;1
+90629;17502;2;170;68.0;120;80;1;1;0;0;0;0
+90630;21339;1;165;86.0;150;90;3;3;0;0;0;1
+90632;17516;1;160;85.0;130;80;1;1;0;0;1;1
+90633;14554;1;165;88.0;160;90;1;1;0;0;0;1
+90634;20261;2;181;87.0;140;80;1;1;0;0;1;0
+90635;18830;2;174;89.0;120;80;1;1;0;0;1;0
+90636;22385;2;169;105.0;180;100;2;1;0;0;1;1
+90639;21776;1;158;86.0;130;80;1;3;0;0;1;1
+90640;14605;2;170;70.0;120;80;1;1;0;0;1;0
+90642;15234;1;159;66.0;110;70;1;1;0;0;0;0
+90643;14692;1;165;62.0;120;80;1;1;0;0;1;1
+90645;17661;1;165;78.0;120;80;1;1;0;0;0;1
+90646;21302;1;158;64.0;150;1000;2;2;0;0;1;1
+90648;23221;1;163;62.0;120;70;1;1;1;0;0;1
+90649;14519;2;170;84.0;140;90;2;1;1;0;1;1
+90650;16767;2;181;71.0;130;80;1;1;1;0;1;0
+90651;16754;1;152;54.0;120;80;1;1;0;0;1;0
+90655;21984;2;172;80.0;130;80;1;1;1;1;1;1
+90657;16813;2;178;76.0;120;80;1;1;0;0;1;0
+90659;20451;2;172;92.0;140;1000;2;1;1;1;1;1
+90663;22752;2;173;84.0;140;90;1;1;0;0;0;1
+90664;20570;1;170;67.0;120;80;1;1;0;0;1;1
+90665;21028;2;172;110.0;160;100;1;2;1;0;1;1
+90668;21151;2;167;100.0;120;80;3;1;0;0;1;1
+90669;21057;1;152;55.0;110;70;1;1;0;0;1;0
+90670;17497;2;169;61.0;130;90;1;1;0;0;1;1
+90671;21185;1;146;55.0;110;70;1;1;0;0;1;0
+90672;18210;1;165;65.0;120;80;3;1;0;0;1;1
+90673;19831;1;152;59.0;110;70;2;1;0;0;0;0
+90674;16733;2;174;92.0;150;110;1;1;0;0;1;1
+90675;22538;2;165;115.0;140;90;2;3;0;0;1;1
+90682;16899;2;175;73.0;120;80;1;1;0;0;0;0
+90683;22777;1;158;64.0;110;70;1;1;0;0;0;0
+90684;19699;2;170;66.0;120;80;1;1;0;0;1;0
+90686;21631;1;161;60.0;130;90;1;1;0;0;0;1
+90687;16029;1;163;67.0;120;80;1;1;0;0;1;0
+90688;20689;1;164;77.0;100;70;1;1;0;0;1;0
+90689;16669;2;178;70.0;110;70;1;1;1;1;1;0
+90691;19117;2;168;109.0;150;110;2;1;0;0;1;1
+90692;23383;1;161;74.0;140;90;1;3;0;0;0;1
+90693;20416;1;150;62.0;120;84;1;1;0;0;1;1
+90694;16907;1;170;67.0;120;80;1;1;0;0;1;1
+90695;20340;1;162;87.0;140;90;3;2;0;1;1;1
+90696;21046;2;177;94.0;130;80;1;1;0;1;1;0
+90699;21015;1;170;80.0;130;80;2;1;0;0;1;1
+90700;18330;1;170;85.0;140;90;1;1;0;0;1;1
+90702;22155;1;169;74.0;130;80;1;2;0;0;1;1
+90703;15282;1;160;54.0;110;80;1;1;0;1;1;1
+90704;22020;1;165;65.0;120;70;1;1;0;0;1;0
+90705;19503;1;157;109.0;140;90;3;3;0;0;1;1
+90706;21170;1;160;70.0;140;90;1;1;0;0;1;0
+90707;20299;1;156;89.0;120;80;1;1;0;0;0;0
+90708;23493;1;155;73.0;120;80;2;2;0;0;0;0
+90709;18082;1;160;90.0;140;80;2;1;0;1;1;1
+90710;17688;2;185;95.0;120;80;1;1;0;0;0;0
+90711;21139;1;152;71.0;140;90;1;1;0;0;1;1
+90714;21844;2;168;67.0;120;80;1;1;0;0;1;1
+90715;18191;2;177;81.0;120;80;1;1;1;1;0;0
+90717;21417;1;156;58.0;140;90;3;3;0;0;0;0
+90719;15239;1;158;56.0;120;80;1;1;0;0;0;0
+90720;16888;1;144;65.0;130;80;1;1;0;0;0;1
+90721;16134;1;160;87.0;120;80;1;1;0;0;1;0
+90722;20334;1;164;90.0;150;80;1;1;0;0;0;1
+90724;22598;2;166;53.0;110;60;3;3;0;0;0;1
+90725;17319;2;173;61.0;130;90;3;3;0;0;1;1
+90726;22707;1;158;100.0;130;90;1;1;0;0;1;1
+90727;23443;2;160;61.0;160;90;1;1;0;0;1;1
+90728;18879;2;161;61.0;120;80;1;1;0;0;1;0
+90729;22637;1;169;79.0;120;70;2;1;0;0;1;1
+90733;18017;1;150;50.0;90;60;1;1;0;0;1;0
+90734;20550;1;162;68.0;130;80;1;1;0;0;1;0
+90736;18140;2;165;65.0;130;90;1;1;0;0;0;1
+90737;20353;1;168;73.0;120;80;1;1;0;0;1;1
+90738;18333;1;165;80.0;130;70;1;1;0;0;1;0
+90740;15836;1;185;104.0;110;70;1;1;0;0;1;0
+90742;18215;1;166;71.0;120;80;1;1;0;0;1;0
+90743;21252;2;169;64.0;130;70;1;1;0;0;1;1
+90744;16855;2;168;69.0;120;80;1;1;0;0;0;0
+90745;21030;1;150;96.0;120;85;1;2;0;0;0;1
+90750;18018;1;162;85.0;116;78;1;1;0;0;1;1
+90751;23448;1;155;51.0;120;80;1;1;0;0;0;1
+90754;20490;1;158;52.0;110;70;2;1;0;0;0;0
+90756;19442;1;166;85.0;120;75;2;1;1;0;1;1
+90757;17299;1;155;65.0;120;80;1;1;0;0;1;0
+90760;15774;1;157;76.0;110;70;1;1;0;0;1;0
+90762;20359;1;156;91.0;143;90;3;1;0;0;1;1
+90763;16146;1;165;65.0;120;80;1;1;0;0;1;0
+90764;21875;1;155;82.0;141;90;1;1;0;0;1;1
+90765;19074;1;160;62.0;120;60;3;3;0;0;1;1
+90766;18998;1;155;48.0;100;70;1;1;0;0;0;0
+90768;23373;2;172;70.0;104;61;1;1;0;0;0;1
+90769;18772;2;172;73.0;130;90;1;1;1;1;1;0
+90772;16080;1;165;70.0;120;79;1;1;0;0;1;0
+90774;23283;1;158;90.0;130;90;1;1;0;0;0;0
+90775;21248;2;179;76.0;150;90;1;1;0;0;0;1
+90776;23210;1;168;94.0;130;90;3;1;0;0;1;1
+90777;18931;1;163;90.0;120;80;1;1;0;0;1;0
+90778;18317;2;165;62.0;120;80;1;1;0;0;1;0
+90779;20455;1;146;54.0;110;70;1;1;0;0;1;0
+90780;15275;1;155;64.0;120;79;3;3;0;0;1;0
+90781;18030;1;173;45.0;120;90;1;1;0;0;1;0
+90784;14720;1;160;50.0;110;70;1;1;0;0;1;0
+90785;17632;1;170;69.0;120;90;1;1;0;0;0;0
+90786;18940;2;172;75.0;130;80;1;1;1;0;0;0
+90787;21366;1;167;68.0;130;80;1;1;0;0;1;1
+90788;22568;1;160;70.0;120;80;1;1;0;0;1;1
+90789;20501;1;170;70.0;120;80;3;3;0;0;0;0
+90792;18397;1;159;60.0;108;75;1;1;0;0;1;1
+90793;15494;1;155;64.0;120;80;1;1;0;0;1;0
+90794;18070;1;152;61.0;120;80;1;1;0;0;1;0
+90795;21323;1;152;57.0;120;80;1;1;0;0;0;1
+90796;17336;2;172;78.0;140;80;1;1;0;0;0;1
+90797;18885;1;152;89.0;140;85;1;1;0;0;0;1
+90798;23273;2;176;115.0;130;80;1;1;0;0;1;1
+90799;22697;2;174;92.0;120;80;2;2;1;1;0;1
+90800;21190;2;165;80.0;135;80;2;1;1;1;1;0
+90801;20394;2;171;85.0;130;90;1;1;1;0;1;0
+90803;17620;1;183;74.0;100;70;1;1;0;0;0;0
+90804;20551;1;154;65.0;90;60;1;2;0;0;0;0
+90805;21219;2;173;85.0;110;70;1;1;0;0;1;0
+90806;16589;1;160;73.0;120;80;1;1;0;0;1;0
+90807;22676;1;168;93.0;120;90;1;2;0;0;1;1
+90812;22485;2;165;70.0;120;80;1;1;0;0;1;1
+90814;21030;1;164;113.0;160;90;1;1;0;0;1;0
+90816;19745;2;171;68.0;130;80;1;2;0;0;1;1
+90817;16523;1;166;70.0;110;70;1;1;0;0;1;0
+90820;23300;1;161;60.0;120;80;1;1;0;0;0;0
+90821;19436;2;169;92.0;140;90;3;3;1;0;1;1
+90823;19691;1;155;50.0;110;75;1;1;0;0;1;0
+90824;21289;2;175;75.0;120;80;1;1;1;1;1;0
+90825;20337;1;161;74.0;120;80;1;2;0;0;1;0
+90827;19828;2;162;76.0;120;80;1;1;0;0;1;0
+90828;21844;2;172;82.0;130;80;2;1;0;0;1;1
+90829;15813;1;166;67.0;120;80;3;1;0;0;1;1
+90830;16106;1;161;63.0;130;80;1;1;0;0;1;1
+90831;22163;1;160;72.0;140;90;1;1;0;0;1;1
+90832;18946;2;168;65.0;120;80;1;1;0;0;0;0
+90833;15013;1;161;72.5;90;60;1;1;0;0;1;0
+90834;21206;1;168;85.0;120;80;3;1;0;0;0;1
+90835;20156;1;153;75.0;120;80;3;1;0;0;1;1
+90836;18066;1;156;72.0;120;80;1;1;0;0;1;0
+90837;21274;1;145;65.0;130;80;3;2;0;0;1;1
+90839;21817;2;158;58.0;110;80;1;1;0;0;1;0
+90840;16534;1;154;73.0;140;80;3;1;0;0;1;0
+90841;16901;1;162;60.0;170;80;1;1;0;0;1;1
+90843;23277;1;168;99.0;130;80;1;1;0;0;1;1
+90844;18251;2;186;62.0;140;90;2;1;0;1;1;1
+90845;15278;2;175;70.0;120;70;1;1;0;0;1;0
+90846;19544;1;163;70.0;130;80;1;1;0;0;0;0
+90847;20194;1;164;72.0;120;80;1;3;0;0;1;0
+90848;20247;1;160;64.0;120;80;1;1;0;0;1;0
+90850;18367;1;162;80.0;150;90;1;1;0;0;1;1
+90851;21059;1;172;93.0;140;90;1;1;0;0;1;1
+90852;19645;2;176;78.0;150;100;1;1;1;1;1;0
+90853;17764;1;168;70.0;120;80;1;1;0;0;1;0
+90854;20426;1;161;75.0;130;80;1;1;0;0;1;0
+90856;22448;2;175;87.0;140;90;1;1;0;0;0;0
+90858;19193;1;165;65.0;150;90;1;1;0;0;1;1
+90859;20228;1;160;60.0;140;90;1;2;0;0;1;1
+90861;14530;2;168;60.0;120;80;1;2;0;0;1;0
+90862;21183;1;160;60.0;120;80;1;1;0;0;1;0
+90863;18113;2;172;86.0;140;90;1;1;0;0;1;1
+90864;21312;1;165;52.0;120;80;1;1;0;0;1;1
+90865;21095;2;176;84.0;120;80;2;2;0;0;1;1
+90867;23497;1;145;50.0;120;80;1;1;0;0;1;1
+90868;19609;1;168;69.0;150;90;2;1;0;0;0;1
+90869;22415;2;157;67.0;130;90;1;1;1;0;1;1
+90871;18928;1;165;65.0;120;70;1;1;0;0;1;0
+90872;16903;2;170;66.0;120;70;1;1;1;0;1;1
+90874;15375;2;172;71.0;110;70;1;2;0;0;0;0
+90877;21264;1;155;56.0;140;90;3;1;0;0;0;1
+90880;15265;1;156;80.0;110;70;1;1;0;0;1;1
+90881;17596;1;165;60.0;120;80;1;1;0;0;0;1
+90882;22143;1;156;60.0;120;80;1;1;0;0;1;1
+90883;19498;1;167;53.0;90;60;1;1;0;0;1;0
+90884;18811;2;167;81.0;150;90;2;1;0;0;1;1
+90885;23322;1;152;68.0;190;100;1;1;0;0;0;1
+90886;19769;1;165;98.0;160;90;2;2;0;0;1;1
+90887;21094;1;165;65.0;140;90;2;1;0;0;1;1
+90888;18734;1;175;90.0;128;89;1;1;0;1;1;0
+90889;20683;1;168;59.0;110;70;1;1;0;0;0;1
+90890;19548;1;165;73.0;130;80;1;1;0;0;1;1
+90891;18235;1;157;63.0;120;90;1;1;0;0;1;0
+90892;17689;1;160;68.0;110;70;1;1;0;0;1;1
+90894;21762;1;157;74.0;140;79;1;2;0;0;0;1
+90895;20362;1;157;64.0;110;70;1;1;0;0;1;0
+90896;23337;1;156;100.0;110;70;1;1;0;0;1;0
+90897;14467;1;160;65.0;110;70;1;3;0;0;0;0
+90898;18065;1;149;50.0;110;80;1;1;0;0;1;0
+90899;15308;1;162;89.0;90;60;1;1;0;0;0;1
+90900;19562;1;160;70.0;160;80;1;1;0;0;1;1
+90901;18306;1;167;67.0;110;80;1;1;0;0;0;0
+90902;19632;2;169;58.0;120;80;1;1;0;0;1;1
+90903;19598;2;180;71.0;120;80;1;1;0;0;1;0
+90904;22439;1;150;87.0;150;90;1;1;0;0;1;1
+90905;19486;1;151;100.0;150;100;3;3;0;1;1;0
+90906;19600;1;154;104.0;160;100;2;1;0;0;1;1
+90907;22776;2;162;68.0;130;90;1;1;0;0;1;1
+90908;20471;2;163;72.0;130;80;1;1;1;0;1;1
+90910;19071;1;163;87.0;140;90;3;3;0;0;0;1
+90911;14672;1;158;56.0;120;80;3;3;0;0;1;1
+90915;14759;1;174;80.0;110;80;1;1;0;0;1;0
+90918;19838;1;165;87.0;130;90;1;1;0;0;1;1
+90920;19822;1;174;72.0;120;80;1;1;0;0;0;0
+90921;22536;2;159;61.0;110;70;1;2;1;0;1;0
+90922;20443;2;168;103.0;130;80;1;1;1;0;1;1
+90923;16955;1;159;108.0;120;80;3;1;0;0;1;1
+90924;20549;1;165;78.0;160;80;1;1;0;0;1;0
+90926;21291;1;162;102.0;120;80;3;2;0;0;1;1
+90927;23357;2;161;84.0;150;90;2;1;0;0;1;1
+90928;17673;2;173;102.0;150;100;1;2;1;0;0;1
+90930;23483;1;154;155.0;170;80;2;1;0;0;1;0
+90931;18351;1;166;70.0;103;70;1;1;0;0;1;0
+90932;15942;1;169;65.0;120;80;1;1;0;0;1;0
+90933;19961;1;151;71.0;120;80;1;1;0;0;0;0
+90934;19008;2;178;78.0;120;80;1;1;0;0;1;0
+90935;19795;1;153;78.0;110;70;1;1;0;0;1;0
+90938;19161;2;170;87.0;110;70;1;1;1;1;1;0
+90939;18166;2;168;74.0;120;80;1;3;1;0;1;0
+90940;15408;1;165;84.0;120;80;1;2;0;0;1;1
+90941;23240;1;149;57.0;130;70;2;1;0;0;1;1
+90942;21349;1;189;75.0;130;80;1;1;0;0;0;1
+90943;19593;1;160;65.0;80;70;1;1;0;0;0;0
+90945;14622;1;160;72.0;120;80;1;1;0;0;0;0
+90946;21895;2;165;65.0;141;90;3;1;0;0;1;1
+90947;18810;2;170;95.0;140;100;1;1;1;0;1;1
+90948;23184;1;153;92.0;130;80;1;1;0;0;0;1
+90949;19147;1;167;69.0;110;80;1;1;0;0;1;1
+90950;22419;1;164;111.0;130;90;1;1;0;0;1;1
+90952;19064;1;169;67.0;100;80;1;1;0;0;0;0
+90954;19880;1;163;66.0;120;80;1;1;0;0;0;0
+90955;14474;1;157;58.0;110;70;1;1;0;0;1;0
+90956;19023;1;154;78.0;120;80;1;1;0;0;0;1
+90957;23396;2;176;90.0;120;100;3;2;0;0;1;1
+90958;19768;2;168;75.0;110;70;3;3;0;0;1;0
+90959;21126;2;168;75.0;150;90;1;1;0;0;1;1
+90960;14558;1;170;65.0;130;80;1;2;0;0;1;1
+90961;19049;1;160;62.0;160;80;1;1;0;0;1;1
+90962;21216;1;156;81.0;140;90;3;1;0;0;1;1
+90964;19609;2;163;57.0;85;60;1;1;0;0;1;0
+90965;23584;1;162;78.0;150;90;1;1;0;0;1;1
+90966;16621;2;169;69.0;120;80;1;1;0;0;1;0
+90967;22629;1;169;56.0;140;90;1;1;0;0;1;1
+90968;15082;2;174;72.0;100;80;1;1;0;0;1;0
+90969;21741;1;156;80.0;140;80;1;1;0;0;1;1
+90971;21187;1;164;70.0;120;80;1;1;0;0;1;1
+90973;14576;1;156;65.0;110;80;1;1;0;0;1;0
+90976;19801;1;159;76.0;110;70;1;1;0;0;1;1
+90977;22055;2;170;65.0;120;80;1;1;0;0;1;0
+90978;17348;2;183;115.0;120;80;1;1;0;0;1;0
+90979;18186;1;168;65.0;110;70;1;1;0;0;1;0
+90982;20628;1;165;63.0;110;80;3;3;0;0;1;1
+90983;20466;1;169;66.0;120;80;1;1;0;0;1;0
+90985;21193;2;174;78.0;110;80;1;1;0;0;1;1
+90986;15427;1;159;85.0;90;60;1;1;0;1;1;0
+90987;22031;1;159;60.0;120;80;1;1;0;0;1;1
+90990;20249;2;173;98.0;130;80;1;1;0;0;1;0
+90991;19487;1;155;76.0;150;110;2;2;0;0;1;1
+90994;14597;1;163;54.0;120;80;1;1;0;0;1;0
+90995;19912;2;162;77.0;140;80;1;1;0;0;1;1
+90996;18988;1;160;58.0;140;80;3;1;0;0;1;1
+90997;18115;1;160;72.0;120;80;3;3;0;0;1;0
+90998;15276;1;156;60.0;120;80;1;1;0;0;1;0
+90999;16729;1;140;44.0;120;80;1;1;0;0;1;0
+91002;19610;1;170;74.0;120;80;1;1;0;0;1;1
+91003;18799;2;185;110.0;120;80;2;1;0;0;1;0
+91006;21868;1;161;78.0;130;80;1;1;0;0;1;1
+91007;19800;1;178;85.0;150;90;2;1;0;0;0;1
+91008;21274;2;172;80.0;120;80;2;1;0;1;1;0
+91009;18755;1;158;56.0;100;70;3;3;0;0;0;1
+91010;18444;1;165;68.0;120;80;1;1;0;0;1;0
+91012;18240;2;165;78.0;120;80;1;1;0;0;1;0
+91013;19832;1;150;59.0;130;80;2;1;0;0;0;1
+91014;19213;2;160;65.0;130;90;1;1;0;0;0;1
+91015;20357;1;158;52.0;120;80;1;1;0;0;1;0
+91016;23336;1;138;66.0;130;90;2;1;0;0;1;1
+91018;21360;2;170;74.2;120;80;1;1;0;0;0;0
+91019;19695;1;165;68.0;140;90;1;1;0;0;1;1
+91023;20994;1;158;69.0;110;80;2;1;0;0;0;1
+91025;20509;1;170;80.0;120;70;1;1;0;0;1;1
+91026;21241;2;162;62.0;120;80;1;1;0;0;1;0
+91027;17308;1;168;62.0;120;80;1;1;1;0;1;0
+91028;19046;1;168;60.0;130;80;1;1;0;0;1;1
+91029;15820;1;156;76.0;100;70;1;1;0;0;1;0
+91030;23399;1;152;49.0;120;70;1;1;0;0;0;0
+91031;20483;2;166;81.0;160;1000;2;1;0;0;0;1
+91032;18806;2;162;56.0;150;100;2;2;0;0;1;1
+91034;22751;1;156;100.0;150;100;1;1;0;0;1;0
+91035;15130;2;180;67.0;110;80;1;1;0;0;0;0
+91036;20381;1;169;78.0;150;80;1;1;0;0;0;1
+91037;17490;2;174;105.0;120;70;1;2;0;0;1;1
+91039;21880;2;165;65.0;120;80;1;1;0;0;0;1
+91040;17790;1;170;102.0;120;80;1;1;0;1;1;1
+91042;14727;1;154;52.0;130;100;1;1;0;0;1;0
+91043;18156;1;160;74.0;140;100;1;1;0;0;1;1
+91044;17292;1;164;71.0;130;90;3;2;0;0;1;1
+91045;18936;1;164;110.0;140;80;3;1;0;0;0;1
+91047;20995;1;159;94.0;140;80;2;1;0;0;0;1
+91048;19828;1;165;83.0;120;80;1;1;0;0;1;1
+91049;20344;1;161;75.0;150;90;1;1;0;0;1;1
+91050;21896;2;162;70.0;150;80;1;1;0;0;1;1
+91052;19693;2;165;60.0;120;80;1;1;0;0;0;0
+91053;16177;2;180;84.0;120;80;1;1;0;0;1;0
+91054;16814;2;170;70.0;110;70;1;1;0;0;1;0
+91055;18239;1;160;58.0;130;80;1;1;0;0;1;1
+91058;22693;1;168;80.0;160;80;1;1;0;0;1;1
+91060;21875;1;164;96.0;130;90;1;1;0;0;0;0
+91061;19664;1;160;78.0;110;70;1;1;0;0;0;0
+91063;19094;1;170;69.0;140;90;2;1;0;0;0;1
+91068;19821;1;154;95.0;120;80;3;3;0;0;0;1
+91069;18175;1;162;89.0;130;80;3;1;0;0;1;1
+91073;14722;2;161;61.0;117;0;1;1;0;0;1;0
+91074;21338;2;165;68.0;120;80;1;1;0;0;1;0
+91075;20521;2;166;77.0;120;70;3;3;0;0;1;1
+91076;20195;1;150;73.0;130;60;3;1;0;0;1;1
+91077;23327;2;176;75.0;150;100;1;1;0;1;1;1
+91078;22626;1;166;71.0;120;80;2;1;0;0;0;0
+91081;18080;1;160;66.0;130;80;1;1;0;0;1;0
+91083;20512;2;170;72.0;130;90;1;1;0;0;1;0
+91084;14410;2;168;65.0;140;90;1;1;0;1;1;1
+91085;18343;1;155;59.0;120;80;1;1;0;0;1;0
+91086;22602;1;155;71.0;140;100;1;1;0;0;1;1
+91087;18071;2;181;118.0;150;90;3;3;0;1;1;1
+91089;18871;2;176;78.0;120;80;1;1;0;0;1;0
+91090;16103;1;167;75.0;160;100;1;1;0;0;1;1
+91091;15192;2;167;78.0;120;80;1;1;0;0;0;0
+91093;17351;1;156;52.0;110;80;1;1;0;0;1;0
+91094;21114;1;166;79.0;140;1000;2;1;0;0;1;1
+91095;17623;1;158;80.0;120;80;1;1;0;0;1;1
+91096;18151;2;168;90.0;140;90;2;1;1;0;0;1
+91097;17567;1;160;90.0;140;90;2;1;0;0;0;1
+91098;19799;2;167;69.0;160;80;3;1;0;0;1;1
+91100;18463;1;156;58.0;120;80;1;1;0;0;1;0
+91102;21025;2;168;82.0;130;80;3;1;0;0;1;1
+91104;18980;1;163;60.0;120;80;1;1;0;0;1;0
+91105;19594;1;156;78.0;130;90;1;1;0;0;0;1
+91107;23327;1;151;80.0;130;90;3;3;0;0;1;1
+91108;19084;1;147;45.0;120;80;1;1;0;0;0;0
+91109;21039;1;162;56.0;120;80;1;1;0;0;1;0
+91110;20880;1;163;65.0;130;80;1;1;0;0;0;1
+91112;21803;1;162;75.0;130;90;2;1;0;0;1;1
+91114;19247;1;165;62.0;110;70;1;1;0;0;1;1
+91116;18965;1;160;60.0;110;70;1;1;0;0;1;0
+91117;21966;1;158;60.0;150;90;1;1;0;0;1;1
+91118;19838;1;158;60.0;120;80;1;1;0;0;1;1
+91120;16959;2;173;82.0;170;1200;1;2;0;0;1;1
+91121;14293;2;166;100.0;160;90;3;1;0;0;1;1
+91123;21154;1;170;90.0;150;100;2;1;0;0;1;0
+91124;19177;2;166;68.0;140;90;2;1;0;0;1;1
+91125;21311;1;167;100.0;140;90;3;1;0;0;1;1
+91126;22662;2;167;65.0;120;70;1;1;0;0;1;1
+91128;18249;1;156;85.0;130;90;1;1;0;0;1;0
+91129;16842;1;178;69.0;110;10;1;1;0;0;1;0
+91130;21834;1;154;84.0;120;80;1;1;0;0;1;0
+91131;23074;1;152;82.0;130;70;3;3;0;0;1;1
+91132;23191;2;179;71.0;120;80;1;1;0;0;0;1
+91133;19970;1;163;74.0;140;90;1;1;0;0;1;0
+91134;19030;1;156;100.0;120;80;3;3;0;0;1;1
+91136;15820;1;157;42.0;120;80;1;1;0;0;1;0
+91137;17331;1;157;68.0;120;80;1;1;0;0;1;0
+91138;23373;1;160;70.0;140;80;3;1;0;0;1;1
+91139;21738;1;157;82.0;140;90;3;3;0;0;1;0
+91140;18377;1;164;65.0;120;80;2;1;0;0;1;0
+91141;20443;1;164;64.0;120;80;1;1;0;0;1;1
+91143;20347;1;162;78.0;120;80;1;1;0;0;1;0
+91144;19417;2;161;75.0;160;1000;1;2;0;0;1;1
+91145;23568;1;154;62.0;130;80;3;1;0;0;1;1
+91147;23097;1;159;78.0;140;90;3;1;0;0;1;1
+91149;22101;1;150;74.0;120;80;1;1;0;0;1;0
+91151;21938;1;160;84.0;140;90;3;1;0;0;1;1
+91152;14608;1;167;58.0;110;70;1;1;0;0;0;0
+91153;19503;2;175;74.0;160;80;3;1;0;0;1;1
+91154;19802;1;162;72.0;120;80;1;1;0;0;1;1
+91155;16744;1;166;83.0;140;90;2;1;0;0;1;1
+91157;20329;2;159;82.0;120;80;1;1;0;0;1;0
+91159;20628;1;165;60.0;120;80;1;1;0;0;0;0
+91161;18388;1;149;65.0;110;70;1;1;1;0;1;0
+91162;20375;1;170;78.0;120;80;1;1;0;0;0;1
+91163;17629;1;163;65.0;110;80;1;1;0;0;1;0
+91165;18177;2;158;74.0;145;95;1;1;1;1;0;1
+91166;21149;1;168;75.0;130;80;3;3;0;0;1;1
+91167;19648;2;164;70.0;120;80;1;1;0;0;1;0
+91168;19059;1;154;77.0;150;90;1;1;0;0;1;1
+91169;20395;1;170;80.0;130;80;1;1;0;0;1;1
+91171;20470;1;162;68.0;130;80;1;1;0;0;1;0
+91172;16046;1;157;46.0;120;80;1;1;0;0;1;0
+91173;21939;1;166;78.0;130;80;2;1;0;0;1;1
+91176;20361;1;156;56.0;140;80;1;1;0;0;1;1
+91177;19593;1;158;75.0;120;80;1;1;0;0;1;1
+91178;22849;2;181;79.0;130;90;1;1;0;0;1;1
+91179;22446;1;153;59.0;160;90;2;2;0;0;1;0
+91181;16835;1;168;55.0;120;80;1;1;0;0;0;0
+91184;23413;2;167;60.0;120;80;1;1;0;0;1;1
+91185;18915;2;174;80.0;130;80;3;1;0;0;1;1
+91186;16237;1;170;106.0;160;90;1;1;0;0;0;1
+91188;17675;2;196;71.0;130;69;1;1;0;0;0;0
+91189;19822;1;146;62.0;130;80;1;1;0;0;1;0
+91190;20260;1;162;70.0;150;80;1;1;0;0;1;1
+91191;21805;1;169;75.0;142;90;1;1;0;0;1;0
+91192;18836;1;165;75.0;140;80;1;1;0;0;0;0
+91193;23217;2;165;94.0;150;100;1;1;0;0;1;1
+91194;21683;1;152;57.0;110;70;2;1;0;0;1;1
+91196;23564;1;158;70.0;120;70;1;1;0;0;1;0
+91197;16831;1;164;72.0;140;80;3;1;0;0;1;1
+91198;18182;2;186;95.0;100;901;2;2;0;0;1;0
+91200;16037;2;160;60.0;90;60;1;1;0;0;0;0
+91202;14690;2;172;76.0;120;80;1;1;0;0;1;0
+91203;16840;1;162;66.0;100;70;1;1;0;0;1;0
+91206;16060;2;178;89.0;140;80;1;1;0;0;1;1
+91207;20290;2;171;59.0;140;80;1;1;0;0;1;0
+91208;21108;1;159;85.0;150;90;2;2;0;0;0;1
+91210;16588;2;177;94.0;140;90;1;2;1;1;1;1
+91211;15533;1;163;94.0;120;80;1;1;0;0;0;0
+91212;19497;1;158;80.0;120;80;3;3;0;0;1;0
+91216;16983;1;158;94.0;110;70;3;3;0;0;1;0
+91217;14768;1;172;68.0;125;80;1;1;0;0;1;1
+91220;21283;2;167;55.0;120;80;1;1;0;0;1;0
+91224;19061;1;158;63.0;110;70;1;1;0;0;0;0
+91227;22402;1;158;82.0;120;80;3;3;0;0;1;1
+91229;17389;1;151;64.0;110;80;1;1;0;0;1;0
+91230;15455;1;166;92.0;100;70;1;1;0;1;1;0
+91231;21826;2;173;91.0;150;80;1;3;0;0;1;1
+91233;20281;2;174;88.0;120;80;1;1;0;0;1;1
+91234;15210;1;170;75.0;120;80;1;1;0;0;1;0
+91235;17452;1;165;72.0;130;90;1;1;0;0;1;1
+91236;23391;1;154;60.0;150;100;1;1;0;0;1;1
+91237;17665;1;163;58.0;160;90;1;1;0;0;1;1
+91238;17991;1;156;46.0;130;80;1;1;0;0;1;1
+91239;14386;2;174;78.0;120;80;1;1;0;0;1;0
+91241;18319;1;163;60.0;120;80;1;1;0;0;1;1
+91242;16062;1;164;71.0;120;80;1;1;0;0;1;0
+91243;16035;1;170;70.0;120;80;1;1;0;0;1;1
+91245;22651;1;154;100.0;140;1000;2;1;0;0;1;1
+91246;21354;1;152;62.0;130;90;1;1;0;0;0;0
+91247;18209;2;170;75.0;110;60;1;1;0;0;1;0
+91248;18427;2;180;75.0;120;80;1;1;0;0;0;0
+91250;16773;1;161;63.0;110;70;1;1;0;0;1;0
+91251;21192;2;171;80.0;12;80;1;3;0;0;1;1
+91253;21965;1;151;76.0;130;80;3;1;0;0;1;1
+91254;19810;1;158;76.0;150;90;1;1;0;0;1;1
+91255;14466;1;160;65.0;110;80;1;1;0;0;1;0
+91256;20567;2;170;79.0;120;80;1;1;0;0;1;0
+91258;23370;1;160;65.0;160;90;2;1;0;0;0;1
+91259;17961;1;158;77.0;130;90;1;1;0;0;1;1
+91260;19082;1;169;71.0;110;70;1;1;0;0;1;1
+91261;17620;1;175;85.0;120;80;1;1;0;0;1;0
+91262;18164;1;161;72.0;120;80;2;1;1;0;1;0
+91263;22673;2;164;70.0;160;90;1;1;0;0;1;1
+91264;16136;1;164;69.0;130;190;1;1;0;0;1;0
+91267;18865;1;170;77.0;140;80;3;1;0;0;1;1
+91268;17711;1;168;78.0;130;90;2;1;0;0;0;1
+91269;20414;2;167;90.0;140;90;1;1;0;0;0;1
+91271;18769;1;147;65.0;160;90;1;1;0;0;1;1
+91272;22563;2;168;65.0;130;70;1;1;0;0;1;1
+91273;15399;1;165;85.0;120;80;1;1;0;0;1;0
+91274;16761;2;172;106.0;140;90;2;1;1;1;1;1
+91276;21162;1;171;75.0;120;80;1;1;0;0;0;0
+91277;18245;1;156;48.0;120;80;2;1;0;0;1;1
+91279;21907;1;158;87.0;110;80;1;1;0;0;1;1
+91281;16022;2;180;85.0;120;80;1;1;0;0;1;1
+91283;15987;1;167;72.0;120;80;1;1;0;0;1;1
+91284;21115;1;164;164.0;120;80;1;1;0;0;1;0
+91285;15566;2;169;78.0;120;80;3;2;0;0;1;0
+91286;19227;2;168;65.0;120;80;1;1;0;0;1;1
+91287;16964;1;179;70.0;120;80;1;1;0;0;0;0
+91288;14965;2;158;60.0;110;80;1;1;0;0;0;0
+91289;22026;1;156;74.0;120;70;1;1;0;0;1;0
+91290;21393;1;168;60.0;120;80;1;1;0;0;1;1
+91291;18512;2;186;83.0;120;80;1;1;0;0;1;0
+91292;22856;2;165;65.0;130;90;3;3;0;0;0;1
+91293;18685;2;174;78.0;120;80;1;1;0;0;1;0
+91294;18195;1;162;123.0;120;70;1;1;0;0;0;1
+91295;16711;2;169;70.0;127;80;1;1;1;1;1;1
+91296;14726;1;162;91.0;110;80;1;1;0;0;1;0
+91297;20229;2;167;83.0;120;80;1;1;0;0;1;0
+91298;19126;1;164;75.0;120;70;3;1;0;0;1;0
+91299;16151;1;154;72.0;110;70;1;1;0;0;1;0
+91301;18085;1;167;61.0;110;70;1;1;0;0;1;0
+91302;16697;2;163;78.0;120;80;1;1;1;0;1;0
+91303;23514;1;170;85.0;120;80;1;1;0;0;1;0
+91304;16872;2;170;75.0;140;90;3;1;0;0;1;1
+91306;21400;1;173;85.0;120;80;1;1;0;0;1;1
+91307;18396;2;169;72.0;120;80;1;1;0;0;1;0
+91308;23355;1;165;65.0;120;80;2;1;0;0;1;1
+91309;16776;1;164;61.0;120;70;1;1;0;0;1;0
+91312;19870;1;157;66.0;180;90;1;1;0;0;1;1
+91314;23487;2;178;68.0;120;80;1;1;0;0;0;1
+91318;20923;2;175;105.0;140;100;2;1;1;0;1;0
+91319;16501;2;170;87.0;130;110;2;1;0;1;1;1
+91320;21939;1;156;56.0;120;80;1;1;0;0;1;0
+91322;20245;1;158;58.0;120;80;2;1;0;0;1;1
+91323;21018;1;152;86.0;120;90;1;1;0;0;1;1
+91324;14728;1;150;89.0;120;90;1;1;0;0;1;1
+91326;23488;1;160;72.0;160;1000;1;1;0;0;1;1
+91327;18437;1;158;62.0;110;80;1;1;0;0;1;0
+91328;14447;1;165;63.0;120;80;1;1;0;0;0;0
+91331;16611;1;164;85.0;120;80;1;1;0;0;0;0
+91333;22647;1;161;84.0;100;70;2;2;0;0;1;0
+91334;14507;1;166;89.0;115;80;1;1;0;0;1;0
+91335;20395;1;162;97.0;140;100;1;1;0;0;1;1
+91336;15357;1;168;52.0;100;70;1;2;0;0;1;0
+91337;18792;2;171;75.0;120;80;1;1;0;0;1;0
+91338;21290;2;180;74.0;150;80;1;1;0;0;1;1
+91339;21155;2;176;111.0;145;90;3;1;0;0;1;1
+91341;20547;1;158;52.0;120;80;1;1;0;0;1;1
+91342;21703;1;172;70.0;120;80;1;1;0;0;1;0
+91345;23405;2;172;66.0;120;80;1;1;0;0;1;1
+91346;19657;1;173;87.0;140;85;3;1;0;0;1;0
+91347;17439;2;170;58.0;110;70;1;1;0;0;1;0
+91349;17483;2;166;66.0;140;100;1;1;1;0;1;1
+91350;21256;1;165;74.0;120;80;1;1;0;0;1;1
+91351;20399;2;180;80.0;130;90;1;1;0;0;1;0
+91352;18306;2;174;89.0;140;80;1;1;0;0;1;1
+91353;18861;2;167;71.0;160;90;1;1;1;0;1;1
+91354;15985;2;180;78.0;115;80;1;1;0;0;1;0
+91355;21271;2;159;70.0;110;70;1;1;0;0;1;0
+91357;18326;2;173;81.0;120;80;1;1;0;0;0;1
+91360;19469;1;156;119.0;160;100;3;3;0;0;1;1
+91361;15133;1;160;60.0;120;80;1;1;0;0;0;0
+91363;20389;2;170;108.0;110;80;2;1;0;0;1;1
+91364;16929;1;168;69.0;1205;90;1;1;0;0;0;1
+91365;15444;1;156;42.0;100;70;1;1;0;0;0;0
+91366;21923;1;164;89.0;110;70;2;1;0;0;1;1
+91367;21165;1;162;66.0;120;80;1;3;0;0;1;0
+91369;17482;1;156;47.0;120;80;1;1;0;0;0;0
+91371;19095;1;160;58.0;110;70;1;3;0;0;1;1
+91372;20410;1;162;72.0;120;80;1;1;0;0;1;1
+91373;23227;1;158;80.0;160;90;3;1;0;0;1;1
+91374;16029;2;170;77.0;130;80;2;2;1;0;0;0
+91375;21011;1;160;95.0;160;100;1;1;0;0;1;1
+91376;21230;1;165;78.0;120;70;1;1;0;0;1;0
+91377;21124;1;151;76.0;120;70;1;1;0;0;1;0
+91378;21693;1;157;73.0;135;90;3;3;0;0;0;1
+91379;22527;1;168;75.0;120;80;1;1;0;0;0;1
+91381;19943;2;178;72.0;120;80;1;1;0;0;0;0
+91383;18248;1;154;62.0;170;100;1;1;0;0;0;1
+91384;18757;2;160;60.0;160;100;1;1;0;0;1;1
+91385;18745;2;171;90.0;115;90;1;1;1;1;1;0
+91386;19763;1;165;65.0;120;80;1;1;0;0;1;0
+91388;20404;2;171;101.0;140;90;1;1;0;0;1;1
+91389;19157;2;164;79.0;120;70;1;1;1;1;1;1
+91390;17565;1;164;73.0;110;80;2;1;0;0;0;1
+91391;14722;1;165;62.0;120;80;1;1;0;0;0;0
+91393;21939;2;166;76.0;160;90;3;3;0;0;1;1
+91394;19037;2;184;81.0;120;80;1;1;0;0;1;0
+91397;20930;1;157;70.0;110;80;1;1;0;0;1;1
+91398;18294;1;166;60.0;110;80;1;1;0;0;1;0
+91399;17599;1;169;75.0;120;80;1;1;0;0;1;0
+91401;21034;1;148;59.0;120;90;1;1;0;0;1;0
+91402;18270;2;178;98.0;120;80;1;1;0;0;0;1
+91403;23308;1;152;84.0;130;80;3;3;0;0;1;1
+91404;17796;2;169;80.0;130;80;1;1;0;0;0;1
+91405;21299;1;164;97.0;150;100;1;1;0;0;1;1
+91407;23247;1;158;73.0;120;80;1;1;0;0;1;0
+91408;20403;1;160;78.0;120;80;1;1;0;0;1;0
+91409;21054;1;155;78.0;140;80;3;1;0;0;1;1
+91410;15469;1;160;80.0;120;80;1;1;0;0;0;0
+91411;18726;1;166;97.0;130;80;1;1;0;0;1;0
+91412;18283;1;178;65.0;120;80;1;1;0;0;0;1
+91413;20352;1;158;55.0;120;80;1;1;0;0;1;0
+91415;18991;1;169;75.0;120;80;1;1;0;0;1;0
+91416;22629;2;154;67.0;120;80;1;1;0;0;1;1
+91417;20590;2;168;85.0;120;80;1;1;1;0;1;0
+91419;15818;2;171;70.0;100;60;1;1;1;0;0;0
+91421;21740;1;149;68.0;140;90;1;1;0;0;1;1
+91422;18364;1;165;75.0;110;70;1;1;0;0;1;0
+91423;21656;1;163;75.0;150;100;3;3;0;0;1;1
+91425;22723;1;149;93.0;160;90;1;1;0;0;1;1
+91426;19543;1;150;54.0;120;80;3;1;0;0;0;1
+91427;21908;1;163;75.0;120;80;1;3;0;0;0;1
+91428;23213;1;157;76.0;130;90;1;1;0;0;1;0
+91430;22843;2;174;85.0;120;80;1;1;1;0;0;1
+91431;22046;1;162;69.0;120;80;1;1;0;0;1;0
+91432;17527;1;166;102.0;120;80;2;1;0;0;1;1
+91433;23371;1;165;84.0;130;80;1;1;0;0;1;1
+91434;19729;1;163;63.0;120;80;1;1;0;0;1;0
+91439;18260;1;156;84.0;150;90;1;1;0;0;1;1
+91440;22538;1;159;81.0;150;100;3;1;0;0;1;1
+91441;17348;1;156;68.0;120;80;1;1;0;0;0;1
+91442;15960;1;160;72.0;120;60;1;1;0;0;1;0
+91444;19717;1;154;85.0;120;80;2;2;0;1;1;0
+91445;23211;1;151;71.0;110;70;1;1;0;0;0;1
+91446;15941;2;178;85.0;120;80;1;1;1;1;1;0
+91447;20027;2;165;92.0;130;90;1;1;0;0;1;0
+91448;21000;1;169;75.0;120;80;1;1;0;0;1;0
+91449;18876;2;174;108.0;110;70;1;2;0;0;1;1
+91451;22899;1;158;64.0;170;100;1;1;0;0;1;1
+91454;19723;1;170;68.0;110;80;1;1;0;0;1;0
+91455;22686;2;167;82.0;150;100;1;1;0;0;0;1
+91456;22668;2;178;104.0;140;90;1;1;0;0;0;1
+91457;18288;1;160;83.0;140;90;1;1;0;0;1;1
+91460;17388;2;170;95.0;110;70;3;1;0;0;0;1
+91461;20434;2;173;85.0;220;1110;1;1;1;0;1;1
+91462;22468;1;162;94.0;140;80;1;2;0;0;0;1
+91464;20215;2;159;60.0;150;90;1;1;0;0;1;1
+91465;21963;1;172;84.0;120;80;3;2;0;0;1;0
+91466;14532;2;175;80.0;120;80;1;2;0;0;1;1
+91467;20233;1;160;58.0;120;80;1;1;0;0;1;0
+91469;20437;1;162;62.0;100;70;2;1;0;0;1;0
+91470;18171;1;161;77.0;130;70;1;1;0;0;0;0
+91472;21339;1;159;81.0;120;80;3;3;0;0;1;0
+91473;16782;1;157;62.0;90;70;1;1;0;0;1;0
+91474;18469;1;167;97.0;140;100;1;1;0;0;1;1
+91475;17489;1;173;76.0;120;80;1;1;0;0;0;0
+91478;17014;2;169;69.0;120;80;1;1;0;0;1;0
+91479;18782;1;168;73.0;130;80;1;1;0;0;1;0
+91480;19071;1;164;84.0;120;70;1;1;0;0;1;1
+91481;19681;2;170;71.0;130;90;2;1;0;0;1;0
+91483;17403;1;164;69.0;110;70;1;1;0;0;1;1
+91485;22620;1;153;71.0;140;90;1;1;0;0;1;1
+91486;16509;1;159;84.0;120;80;3;1;0;0;1;1
+91487;23467;1;159;68.0;120;90;1;1;0;0;1;0
+91488;23435;1;152;93.0;140;80;1;1;0;0;1;1
+91489;16716;1;164;73.0;160;90;2;1;0;0;1;1
+91491;20565;1;155;60.0;130;90;1;1;0;0;0;0
+91492;18774;2;168;70.0;120;80;1;1;0;0;1;0
+91494;15971;2;168;71.0;120;80;1;1;0;0;1;0
+91497;21101;1;158;82.0;120;80;2;1;0;0;1;0
+91498;22008;1;172;57.0;120;80;1;1;0;0;1;0
+91499;19533;1;154;80.0;140;80;1;1;0;0;1;1
+91501;22624;2;166;77.0;120;80;1;1;0;0;1;1
+91503;21847;2;168;58.0;140;80;1;1;0;0;1;1
+91504;21591;1;150;73.0;140;90;1;1;0;0;1;1
+91505;23377;1;149;82.0;150;100;1;3;1;0;1;1
+91506;23402;1;168;87.0;140;80;3;1;0;0;1;1
+91507;23081;2;160;89.0;150;100;3;1;0;0;0;1
+91508;21738;1;155;64.5;140;90;1;1;0;0;0;1
+91509;22588;2;172;92.0;120;80;1;2;0;0;1;0
+91510;19100;1;158;60.0;120;80;1;1;0;0;1;0
+91511;23316;1;154;65.0;110;80;2;1;0;0;1;0
+91512;17331;2;166;78.0;120;80;1;1;1;0;1;1
+91513;19011;2;167;82.0;140;80;1;1;0;0;1;1
+91514;19534;1;168;70.0;120;80;1;1;0;0;1;0
+91515;18925;1;178;95.0;120;80;1;1;0;0;0;0
+91516;14612;1;167;59.0;120;60;1;1;0;0;1;0
+91518;19733;1;156;73.0;110;70;1;1;0;0;1;1
+91519;18232;1;160;60.0;130;80;1;1;0;0;0;1
+91520;14564;1;155;55.0;110;70;1;1;0;0;1;0
+91521;16134;1;163;62.0;110;70;1;1;0;0;1;1
+91523;18426;1;59;57.6;125;67;1;1;0;0;0;0
+91524;18216;2;169;95.0;130;90;1;2;0;0;1;1
+91525;20912;2;155;65.0;120;80;1;1;0;0;1;1
+91526;18001;1;169;75.0;120;80;1;1;0;0;1;0
+91527;16698;2;174;65.0;110;70;1;1;0;0;1;0
+91528;23539;1;168;84.0;140;90;2;2;0;1;1;1
+91531;21823;2;172;85.0;130;80;1;1;0;0;1;0
+91532;19830;1;152;87.0;130;80;1;1;0;0;1;0
+91533;23265;2;173;73.0;160;100;1;1;0;0;1;1
+91534;20478;2;160;82.0;120;79;1;1;1;0;1;0
+91535;17341;2;178;115.0;160;90;1;1;1;0;1;1
+91536;23350;1;164;95.0;120;80;1;1;0;0;1;1
+91537;20512;2;170;91.0;120;80;1;1;0;0;0;1
+91539;21312;1;157;89.0;130;80;1;1;0;0;1;0
+91541;17648;1;165;63.0;140;90;2;1;0;0;1;1
+91542;21144;1;157;64.0;100;70;1;1;0;0;1;0
+91543;17444;1;150;82.0;180;1000;2;3;0;0;0;1
+91544;16005;1;165;65.0;130;90;1;1;0;0;0;1
+91545;19556;1;156;70.0;160;100;3;1;0;0;1;1
+91546;16195;1;170;68.0;120;80;1;1;0;0;1;1
+91548;20574;2;173;78.0;120;80;1;1;0;0;1;0
+91549;19550;1;158;72.0;120;80;1;1;0;0;1;1
+91550;16039;2;168;59.0;120;80;1;1;0;0;1;1
+91551;22902;1;176;80.0;125;80;1;1;0;0;1;0
+91554;17428;1;163;65.0;120;80;1;1;0;0;1;0
+91555;21124;2;168;76.0;130;90;1;1;0;0;1;1
+91556;20581;1;160;85.0;110;80;1;1;0;0;1;0
+91557;14575;1;151;61.0;120;80;1;1;0;0;1;0
+91559;15788;2;177;73.0;130;90;1;1;0;0;0;0
+91561;21834;2;176;92.0;120;80;2;1;1;1;1;1
+91562;23204;1;158;100.0;160;90;3;1;0;0;1;1
+91563;16895;2;166;90.0;150;90;1;1;1;1;1;1
+91565;14714;1;170;64.0;120;80;1;1;0;0;1;0
+91566;23122;2;166;82.0;150;100;3;2;0;0;0;0
+91567;22540;1;165;65.0;120;79;1;1;0;0;0;1
+91569;19499;2;169;81.0;160;80;2;1;0;0;0;1
+91570;14360;2;180;80.0;130;80;1;1;0;0;1;0
+91571;20421;1;156;72.0;130;70;1;1;0;0;1;0
+91572;17668;1;165;59.0;110;70;1;3;0;0;1;0
+91573;23285;2;171;96.0;130;90;3;1;0;0;1;1
+91574;20856;1;163;70.0;215;106;2;2;0;0;1;1
+91575;21706;1;161;75.0;150;90;1;1;0;0;0;0
+91577;21040;1;180;85.0;150;90;1;3;0;0;1;0
+91578;22584;1;150;69.0;160;80;1;1;0;0;1;1
+91579;19830;1;161;83.0;140;90;1;1;0;0;1;1
+91580;21044;2;162;60.0;120;80;1;1;0;0;1;0
+91582;20464;1;168;53.0;110;70;1;1;0;0;0;0
+91583;20629;2;175;72.0;130;80;1;1;0;0;0;0
+91584;16949;1;160;58.0;120;1000;1;1;0;0;0;0
+91585;18227;1;159;68.0;140;90;1;1;0;0;1;1
+91586;23528;1;156;63.0;130;90;1;1;0;0;1;1
+91588;18955;1;162;66.0;120;80;1;1;0;0;1;0
+91589;20985;1;168;73.0;110;70;1;1;0;0;1;0
+91591;18105;2;174;84.0;120;80;1;1;0;0;1;0
+91592;16160;1;168;65.0;120;80;1;1;0;0;1;1
+91593;19631;1;152;76.0;120;80;1;1;0;0;1;1
+91595;20953;1;160;71.0;100;70;1;1;0;0;1;0
+91596;14613;1;170;140.0;136;87;3;1;1;0;1;1
+91597;20519;1;160;56.0;120;80;1;1;0;0;1;1
+91598;14627;1;150;83.0;130;80;1;2;0;0;1;0
+91599;18983;1;157;64.0;120;80;1;1;0;0;1;0
+91600;21888;1;159;66.0;120;80;3;3;0;0;1;0
+91601;17376;1;156;72.0;140;80;1;1;0;0;1;0
+91602;21182;1;164;91.0;120;80;1;1;0;0;1;1
+91603;17334;2;168;82.0;130;80;3;3;0;0;1;1
+91604;19200;1;169;78.0;120;80;1;1;0;0;1;0
+91605;18913;2;163;63.0;120;80;3;3;0;0;0;1
+91606;18756;1;160;62.0;120;80;1;1;0;0;1;0
+91607;21266;1;156;55.0;120;80;1;1;0;0;1;0
+91608;21940;2;180;65.0;120;80;2;2;0;1;1;1
+91610;23291;1;157;90.0;160;90;1;1;0;0;0;1
+91611;16624;1;168;64.0;120;70;1;1;0;0;1;1
+91613;21153;1;157;62.0;150;90;1;1;0;0;1;1
+91615;18843;1;172;68.0;130;100;2;1;0;0;1;1
+91616;19596;1;163;63.0;120;80;3;3;0;0;0;1
+91617;16289;1;168;68.0;120;70;3;3;0;0;1;1
+91618;19459;2;162;88.0;130;80;1;1;0;0;1;1
+91619;20350;1;140;80.0;100;60;2;1;0;0;0;1
+91620;21780;1;171;69.0;120;80;1;1;0;0;0;1
+91621;19715;1;168;67.0;120;80;1;1;0;0;0;0
+91622;18081;2;170;89.0;140;90;3;3;0;0;1;1
+91623;16767;1;154;78.0;140;1000;3;1;0;0;1;1
+91624;21297;1;164;70.0;120;80;1;1;0;0;0;1
+91625;16786;1;155;60.0;120;80;1;1;0;0;1;0
+91627;20382;1;157;80.0;120;80;1;1;0;0;1;0
+91628;18026;2;167;71.0;150;70;1;1;0;0;1;1
+91629;21376;1;165;67.0;120;80;1;1;0;0;1;0
+91630;21296;2;179;76.0;120;80;1;1;0;0;1;0
+91632;21127;1;172;68.0;130;80;1;1;0;0;1;1
+91634;18340;1;168;76.0;130;90;1;1;0;0;1;0
+91636;21200;1;154;76.0;130;90;1;1;0;0;1;0
+91637;19440;1;162;65.0;120;80;1;1;0;0;1;0
+91638;16804;2;164;88.0;95;160;2;2;0;1;1;1
+91640;15188;2;174;85.0;110;70;1;1;0;0;1;1
+91642;20356;2;168;67.0;125;85;3;2;0;0;0;1
+91643;16708;1;160;91.0;110;80;1;1;0;0;1;0
+91645;15786;2;185;144.0;120;90;1;1;0;0;0;1
+91646;18252;1;156;95.0;110;80;1;1;0;0;1;0
+91647;21948;1;164;67.0;120;80;2;2;0;0;1;1
+91649;14754;1;160;92.0;120;80;1;1;0;0;1;0
+91652;19793;1;163;83.0;130;80;2;2;0;0;0;0
+91654;17386;1;157;69.0;140;90;3;3;0;0;1;0
+91655;21796;2;159;75.0;120;80;1;1;0;0;1;0
+91656;19755;1;170;76.0;110;70;1;1;0;0;1;1
+91657;17417;1;162;94.0;110;80;1;3;0;0;0;0
+91658;21900;1;166;67.0;120;70;3;3;0;0;0;1
+91659;16620;1;155;82.0;130;80;2;1;0;1;0;0
+91661;16527;2;162;85.0;140;1000;1;1;1;1;1;1
+91663;21795;1;154;90.0;120;80;3;1;0;0;1;0
+91664;19304;2;175;75.0;120;80;1;1;0;0;0;0
+91665;18294;1;147;67.0;120;90;1;1;0;0;1;0
+91666;17440;1;153;62.0;90;60;1;1;0;0;1;0
+91667;22534;2;166;90.0;120;80;1;1;1;0;0;1
+91668;19182;1;160;70.0;130;80;1;1;0;0;1;0
+91669;21027;1;152;93.0;130;100;2;2;0;0;0;1
+91670;22490;1;166;78.0;150;90;1;1;0;0;1;1
+91671;19911;1;167;72.0;110;90;1;1;0;0;1;0
+91672;20560;2;158;65.0;150;80;1;1;0;0;1;0
+91674;18985;2;169;68.0;120;80;1;1;0;0;1;1
+91675;23233;1;152;60.0;145;80;1;1;0;0;1;0
+91676;14636;1;167;106.0;120;80;1;1;0;0;1;0
+91679;21168;1;147;113.0;160;1000;1;1;0;0;1;1
+91680;22729;1;180;80.0;140;70;1;1;0;0;0;1
+91681;22497;1;162;84.0;130;80;1;1;0;0;0;1
+91682;17409;1;165;85.0;140;80;3;1;0;0;1;1
+91685;15426;2;172;85.0;120;80;1;1;0;0;1;0
+91687;19713;2;169;94.0;140;90;1;1;0;0;1;1
+91688;16947;2;189;87.0;140;90;1;1;1;0;1;1
+91689;22818;2;170;63.0;130;90;1;1;0;0;0;1
+91690;19410;1;163;63.0;120;80;3;3;0;0;0;1
+91694;19904;1;162;65.0;140;90;2;1;0;0;0;1
+91695;22700;2;163;73.0;130;70;1;1;0;0;1;0
+91696;22797;1;161;59.0;110;80;1;1;0;0;1;1
+91700;16656;1;169;67.0;130;90;1;1;0;0;1;1
+91701;19238;1;158;68.0;120;80;1;1;0;0;1;0
+91702;23235;2;172;86.0;160;100;3;3;0;0;1;1
+91704;18362;1;178;61.0;120;80;2;1;0;0;0;1
+91705;19622;1;160;60.0;120;80;1;1;0;0;1;1
+91707;20513;1;154;64.0;120;80;3;1;1;0;1;1
+91709;16808;2;172;80.0;120;70;1;1;0;0;0;1
+91710;21310;1;158;59.0;120;80;3;3;0;0;1;0
+91711;16239;1;164;60.0;120;80;1;1;0;0;0;1
+91712;19581;2;180;90.0;130;90;1;1;0;0;1;0
+91714;14606;1;165;74.0;120;70;1;1;0;0;0;0
+91716;20592;1;155;77.0;110;90;3;1;0;0;1;1
+91717;16800;2;179;73.0;120;80;1;1;0;0;1;0
+91718;19451;2;168;88.0;180;110;3;1;0;0;1;1
+91719;21084;1;160;79.0;120;80;1;1;0;0;1;1
+91721;18168;2;165;68.0;120;80;2;1;0;0;1;0
+91722;22104;1;179;70.0;130;80;3;1;0;0;1;0
+91723;14414;1;167;82.0;120;75;3;1;0;0;1;0
+91725;18962;2;174;81.0;90;130;1;1;1;1;1;1
+91727;18297;1;161;74.0;120;80;1;1;0;0;1;0
+91728;21212;1;169;70.0;110;70;1;1;0;0;1;0
+91729;23290;2;166;66.0;120;80;1;1;1;0;0;1
+91730;19119;1;156;56.0;120;80;1;1;0;0;1;0
+91731;21069;2;176;86.0;120;80;1;1;1;1;1;1
+91732;14660;1;168;63.0;110;70;1;1;0;0;1;0
+91733;14743;1;167;89.0;120;80;1;1;0;0;1;0
+91734;18376;2;171;97.0;140;100;1;1;0;0;1;1
+91735;16891;2;160;77.0;120;80;1;1;1;0;0;1
+91736;19838;1;165;78.0;120;80;1;1;0;0;0;1
+91737;19613;1;157;60.0;130;90;1;1;0;0;1;0
+91738;21283;1;153;80.0;130;80;3;2;0;0;1;0
+91739;18263;1;160;60.0;150;80;3;2;0;0;1;1
+91743;15982;1;150;60.0;120;80;1;1;0;0;1;0
+91744;17512;2;175;73.0;140;70;1;1;0;0;1;1
+91745;16790;2;175;71.0;120;80;1;1;0;0;1;0
+91748;20500;1;160;69.0;130;80;1;1;0;0;1;1
+91750;22755;2;169;65.0;120;80;1;1;0;0;0;1
+91753;17486;1;164;115.0;130;90;3;2;0;0;0;1
+91754;22545;2;164;86.0;150;80;3;2;0;0;1;1
+91756;20647;1;159;79.0;120;80;1;1;0;0;1;1
+91757;18796;2;163;63.0;130;80;1;3;0;0;1;1
+91758;23420;1;146;81.0;120;80;3;3;0;0;1;1
+91759;15990;1;168;73.0;90;60;1;1;0;0;1;0
+91760;21277;2;170;82.0;130;90;1;1;0;1;1;0
+91761;18927;1;169;64.0;130;80;1;1;0;0;1;1
+91763;16133;1;162;102.0;160;100;1;1;0;0;0;1
+91765;19071;2;163;65.0;120;80;1;1;0;0;1;0
+91767;20631;1;167;66.0;170;80;1;2;0;0;1;1
+91768;19570;1;160;65.0;110;70;2;1;0;0;1;0
+91770;18245;2;158;78.0;140;90;1;1;1;1;1;1
+91772;20670;1;170;68.0;120;80;1;1;0;0;1;0
+91773;15988;1;168;71.0;140;80;1;1;0;0;1;1
+91774;15358;2;170;67.0;110;70;1;1;0;0;0;0
+91776;19745;2;178;70.0;120;80;1;1;0;0;1;1
+91780;23430;1;162;78.5;130;80;1;1;0;0;1;1
+91782;16685;2;184;96.0;100;60;1;1;0;0;0;1
+91783;19217;1;158;70.0;130;80;2;1;0;0;0;0
+91785;21988;1;163;109.0;130;80;3;3;0;0;1;1
+91786;20259;1;155;85.0;170;90;3;1;0;1;1;1
+91787;15117;1;162;60.0;120;80;1;1;0;0;1;1
+91788;21191;1;165;95.0;130;90;3;3;0;0;0;1
+91789;17424;1;161;110.0;136;83;1;1;1;1;1;1
+91792;18784;2;182;88.0;120;80;1;1;0;0;1;0
+91793;22411;1;176;80.0;130;90;1;1;0;0;1;1
+91794;19390;1;150;72.0;125;880;3;1;0;0;1;1
+91796;18940;2;176;85.0;125;80;3;2;0;0;1;1
+91797;22636;2;165;60.0;130;80;1;1;0;0;1;0
+91798;18421;2;159;68.0;120;80;1;1;0;0;1;0
+91799;21018;1;154;78.0;135;90;1;1;0;0;0;1
+91800;18294;2;167;71.0;120;80;1;1;0;0;1;0
+91801;20526;1;164;75.0;140;80;1;1;0;0;1;1
+91802;15883;2;175;84.0;120;80;1;1;0;0;1;0
+91803;20364;1;156;76.0;150;110;1;1;0;0;0;1
+91804;23343;2;170;68.0;120;80;1;1;1;0;1;1
+91805;23508;2;168;78.0;130;80;3;1;0;0;1;1
+91806;20345;1;164;79.0;120;80;3;1;0;0;1;0
+91807;15837;2;168;67.0;130;80;1;1;0;1;1;1
+91808;21119;1;160;82.0;160;100;3;1;0;0;1;1
+91810;21850;1;145;54.0;120;80;2;1;0;0;1;1
+91811;18111;1;165;63.0;140;90;1;1;0;0;1;1
+91812;15889;2;184;125.0;150;100;2;1;1;0;1;1
+91815;22659;2;154;73.0;145;95;1;1;0;0;1;1
+91816;22586;2;172;84.0;120;80;2;1;0;0;1;1
+91817;17482;1;159;65.0;120;80;1;1;0;0;1;0
+91818;19731;2;172;75.0;120;80;1;1;0;0;1;1
+91820;18474;2;168;68.0;120;80;1;1;0;0;1;0
+91821;21968;2;156;60.0;200;1200;1;1;0;0;1;1
+91822;18744;1;170;68.0;110;70;1;1;0;0;1;0
+91823;20245;1;156;81.0;160;100;2;2;0;0;1;0
+91824;23403;1;158;56.0;140;80;1;3;0;0;0;1
+91825;18242;1;168;69.0;130;80;1;1;0;0;0;0
+91828;17738;2;174;91.0;148;90;2;2;0;0;1;1
+91830;15877;2;168;89.0;140;100;1;1;0;0;1;1
+91833;23197;2;175;90.0;160;100;3;1;0;0;1;0
+91835;15172;1;168;76.0;120;80;1;1;0;0;1;0
+91836;14589;1;156;75.0;100;60;1;1;0;0;1;0
+91837;15288;2;168;68.0;160;90;1;1;0;1;1;1
+91838;19706;1;157;81.0;120;80;2;1;0;0;1;1
+91839;22552;1;165;70.0;120;80;1;1;0;0;1;1
+91840;15202;2;176;65.0;120;80;1;1;0;0;0;0
+91842;21133;1;168;72.0;120;870;3;3;0;0;1;1
+91843;22098;1;166;65.0;115;80;3;3;0;0;1;1
+91844;19002;2;159;61.0;120;60;1;3;1;0;1;0
+91845;18149;2;168;70.0;120;80;1;2;0;0;1;1
+91848;14668;1;156;53.0;80;60;1;1;0;0;1;0
+91849;19695;1;168;60.0;120;80;1;1;0;0;1;1
+91850;19046;2;180;96.0;150;90;2;3;0;0;1;1
+91851;22464;2;165;75.0;90;60;1;1;0;0;1;0
+91852;21097;1;168;68.0;130;80;1;1;0;0;1;0
+91856;16737;2;170;69.0;120;80;1;1;0;0;1;0
+91857;21886;1;157;73.0;130;80;1;1;0;0;1;1
+91858;18860;2;160;69.0;160;100;1;1;0;0;0;1
+91861;14581;2;186;123.0;120;80;2;1;0;0;1;1
+91862;17310;1;154;62.0;110;80;3;1;0;0;0;1
+91863;21436;2;158;74.0;180;1000;3;3;0;0;0;1
+91864;21977;1;167;90.0;140;90;1;1;0;0;1;1
+91865;18721;1;165;82.0;130;90;3;1;0;0;0;1
+91866;21241;1;161;62.0;120;60;1;1;0;1;1;1
+91870;17268;1;164;88.0;120;80;3;1;0;0;1;1
+91872;23403;2;178;93.0;120;80;1;1;0;0;1;1
+91874;19697;1;160;90.0;120;80;1;1;0;0;1;0
+91875;17337;1;165;67.0;130;80;1;1;0;0;1;0
+91876;18945;1;175;75.0;120;80;1;1;0;0;0;0
+91877;23340;1;160;80.0;130;70;3;3;0;0;1;1
+91879;15509;2;162;60.0;120;80;1;1;1;1;1;0
+91880;21174;1;150;43.0;110;70;2;1;0;0;1;1
+91881;19021;1;163;70.0;150;90;2;2;0;0;1;1
+91883;23434;1;170;69.0;120;80;2;2;0;0;0;1
+91884;22714;1;158;77.0;120;80;1;1;0;0;1;0
+91887;20366;2;166;73.0;160;100;2;1;1;1;1;1
+91888;18991;1;159;65.0;150;90;2;1;0;0;1;0
+91890;20998;1;173;105.0;140;80;1;2;0;0;0;1
+91891;21830;2;168;62.0;160;100;2;1;0;0;0;1
+91892;14309;2;165;77.0;120;60;1;1;1;1;1;0
+91893;23279;1;144;46.0;120;80;1;1;0;0;0;0
+91894;19806;1;150;62.0;120;80;1;1;0;0;1;0
+91895;14810;2;170;75.0;120;80;1;1;0;0;1;1
+91898;18148;1;166;78.0;120;80;1;1;0;0;1;1
+91899;22434;2;171;78.0;140;80;1;1;0;0;0;1
+91900;21281;1;152;67.0;110;80;1;1;0;0;1;0
+91902;19160;1;157;47.0;110;80;2;1;0;0;1;0
+91905;19573;1;160;60.0;120;80;1;1;0;0;1;0
+91906;17410;1;163;124.0;130;90;3;1;0;0;1;1
+91907;21902;2;179;77.0;140;90;1;1;0;0;0;1
+91908;18021;1;156;46.0;120;60;1;1;0;0;1;0
+91909;18076;1;157;61.0;150;90;1;1;0;0;1;1
+91910;18078;2;167;75.0;120;80;1;1;0;0;0;1
+91912;20341;1;170;103.0;140;90;2;1;0;0;1;1
+91913;18226;1;157;68.0;110;80;1;1;0;0;1;0
+91914;21201;1;158;79.0;140;90;1;1;0;0;0;1
+91916;21168;1;167;69.0;140;100;1;1;0;0;0;1
+91917;18353;2;168;80.0;120;80;1;1;0;0;0;0
+91918;19743;2;167;70.0;120;80;1;1;1;1;1;0
+91919;17589;1;163;79.0;120;80;2;2;0;0;1;0
+91920;21884;1;168;62.0;150;80;1;1;0;0;1;1
+91924;22774;1;163;73.0;123;88;2;1;0;0;1;1
+91925;19843;1;164;55.0;110;60;1;1;0;0;0;0
+91928;18982;1;165;63.0;160;90;1;1;0;0;1;1
+91929;22744;1;147;67.0;120;80;3;3;0;0;1;1
+91930;21040;1;166;82.0;120;80;1;1;0;0;1;1
+91932;19799;1;168;71.0;120;80;1;1;0;0;0;0
+91933;21157;2;173;94.0;13;585;2;1;0;0;1;1
+91934;20653;1;174;64.0;120;80;2;1;1;0;0;0
+91935;23268;1;157;82.0;150;1000;3;1;0;0;1;1
+91936;14522;1;155;73.0;140;90;2;1;0;0;0;1
+91937;20560;1;151;85.0;110;70;3;3;0;1;1;1
+91939;14520;1;159;69.0;120;80;1;1;0;0;1;0
+91940;16754;1;165;75.0;140;70;1;1;0;0;1;1
+91941;21846;1;155;62.0;120;80;1;1;0;0;1;0
+91943;18385;2;168;66.0;110;60;1;3;1;0;1;0
+91946;16866;1;159;69.0;100;60;1;1;0;0;1;0
+91947;17405;1;160;69.0;130;90;3;1;0;0;1;1
+91949;19078;1;164;62.0;110;70;1;1;0;0;1;0
+91950;20248;2;164;74.0;120;80;1;2;0;0;1;0
+91954;18178;1;165;69.0;120;80;1;1;0;0;1;0
+91956;19723;1;151;57.0;160;90;2;1;0;0;1;1
+91960;21311;2;172;110.0;160;90;3;3;0;1;0;1
+91961;20382;1;165;65.0;120;80;1;1;0;0;1;0
+91962;16768;1;160;84.0;150;80;1;2;0;0;1;0
+91964;20307;1;156;93.0;110;70;1;1;0;0;1;1
+91965;22482;2;174;52.0;120;80;1;1;1;0;1;1
+91966;22158;1;164;92.0;90;70;1;1;0;0;1;1
+91967;20236;1;169;79.0;130;80;1;1;0;0;0;1
+91969;20490;1;168;77.0;120;80;1;3;0;0;1;0
+91971;18406;1;157;73.0;120;80;1;1;0;0;1;0
+91977;17448;2;179;89.0;140;90;1;1;0;0;1;0
+91979;22794;1;160;89.0;150;90;2;1;0;0;1;1
+91981;14495;2;174;69.0;100;80;1;1;0;0;0;0
+91983;19468;1;167;70.0;120;90;3;1;0;0;1;1
+91984;17417;1;161;90.0;120;80;1;1;0;0;1;1
+91985;19546;1;162;62.0;100;70;1;1;0;0;1;0
+91986;21809;1;169;61.0;120;80;1;1;0;0;1;1
+91987;16091;1;160;64.0;120;80;1;1;0;0;1;0
+91989;22619;1;168;70.0;120;80;2;2;0;0;1;1
+91990;19618;2;173;93.0;140;100;1;1;1;1;1;1
+91991;16045;2;178;67.0;120;80;1;1;0;0;1;1
+91992;16192;1;154;52.0;80;60;1;1;0;0;1;0
+91993;17433;2;174;92.0;110;80;1;1;0;0;1;0
+91994;22821;1;162;88.0;140;90;1;1;0;0;1;1
+91998;15352;2;155;58.0;110;70;1;2;0;0;1;0
+91999;22042;1;165;65.0;131;80;2;2;0;0;1;1
+92000;22819;1;160;60.0;150;80;3;2;0;0;1;1
+92004;15290;1;171;77.0;140;90;1;1;0;0;1;1
+92005;22518;1;170;115.0;153;88;2;2;0;0;1;1
+92006;21300;2;170;67.0;150;1000;1;1;0;0;1;1
+92007;14862;2;165;70.0;120;80;1;1;0;0;1;0
+92008;21348;1;66;63.0;12;80;1;1;0;0;0;1
+92009;20462;2;170;72.0;150;90;2;1;1;1;1;1
+92011;22571;2;176;94.0;160;90;3;1;0;0;1;1
+92013;18440;1;165;74.0;130;90;1;1;0;0;0;0
+92014;15752;1;158;63.0;100;60;3;3;0;0;0;0
+92015;23339;1;159;86.0;120;80;3;3;0;0;1;1
+92017;18902;1;145;66.0;130;90;1;1;0;0;1;0
+92019;17336;1;146;82.0;110;70;1;1;0;0;1;1
+92020;18131;1;155;74.0;120;80;1;1;0;0;1;0
+92021;20270;1;147;79.0;140;90;1;1;0;0;1;0
+92022;16503;1;163;92.0;110;70;1;1;0;0;1;0
+92023;22611;2;172;68.0;120;80;1;1;0;0;1;1
+92024;22674;2;171;86.0;140;80;1;1;0;0;1;1
+92025;18116;2;164;68.0;120;80;1;1;0;0;1;0
+92026;18261;2;168;68.0;140;90;1;1;0;0;0;1
+92028;23453;2;169;71.0;110;70;1;1;0;0;1;1
+92029;16170;2;165;65.0;110;70;1;1;0;0;1;0
+92030;18244;1;158;68.0;124;80;1;1;0;0;1;0
+92031;23375;2;160;52.0;120;80;1;1;0;0;1;1
+92034;17301;2;171;83.0;110;70;1;1;0;0;1;0
+92036;18129;2;170;73.0;130;90;1;1;0;0;1;1
+92037;21268;1;148;69.0;110;70;2;2;0;0;1;1
+92038;14737;1;159;61.0;110;70;1;1;0;0;1;0
+92040;23169;2;168;70.0;120;80;1;1;1;1;1;0
+92042;20273;2;168;94.0;180;90;1;1;0;0;1;1
+92047;17010;2;174;76.0;120;80;1;1;1;0;1;0
+92048;17322;1;168;79.0;150;90;1;1;0;0;1;0
+92049;19775;1;166;78.0;140;100;3;3;0;0;1;1
+92050;20311;1;169;67.0;140;80;3;3;0;0;1;1
+92051;16072;1;152;69.5;180;120;1;2;0;0;1;1
+92052;21096;2;166;70.0;120;80;1;1;0;0;1;0
+92054;17329;1;154;82.0;120;80;1;1;0;0;1;0
+92055;17003;2;172;63.0;120;80;1;1;0;0;1;0
+92056;21945;2;174;76.0;140;70;1;1;0;0;1;1
+92057;19116;1;156;61.0;110;70;1;1;0;0;1;1
+92058;15336;1;165;62.0;120;80;1;1;0;0;0;0
+92059;21017;1;154;57.0;130;90;1;1;0;0;1;0
+92060;17636;1;181;92.0;130;90;1;1;0;0;1;1
+92064;20587;2;169;56.0;120;70;1;1;0;0;1;1
+92065;17356;2;175;69.0;120;70;2;1;0;0;1;1
+92066;23071;1;155;76.0;130;80;2;1;0;0;0;1
+92067;21410;1;156;80.0;160;1000;1;1;0;0;1;1
+92068;22675;2;147;59.0;200;100;3;1;1;1;1;1
+92069;20497;2;182;76.0;150;90;1;1;0;0;1;1
+92070;15132;2;167;61.0;120;80;1;1;0;0;1;0
+92072;14635;1;160;99.0;140;90;1;1;0;0;1;1
+92073;18939;2;170;72.0;120;80;1;1;1;0;1;0
+92074;18908;2;162;82.0;130;80;2;1;1;1;0;0
+92077;15959;1;159;62.0;120;80;1;1;0;0;1;0
+92078;18198;1;163;70.0;100;60;1;1;0;0;0;0
+92079;19737;2;169;65.0;120;80;1;1;0;0;1;0
+92080;19693;2;165;64.0;120;80;1;1;0;0;0;0
+92083;21268;1;157;57.0;120;80;1;1;0;0;1;0
+92084;15872;2;170;82.0;140;90;1;1;0;0;1;1
+92085;15207;2;170;71.0;130;80;1;1;0;0;1;0
+92086;19876;1;170;79.0;150;100;1;1;0;0;1;1
+92089;18964;1;168;73.0;120;80;1;1;0;0;1;0
+92090;18996;1;160;79.0;160;100;1;1;0;0;1;1
+92091;18963;2;164;85.0;160;90;2;1;1;1;1;0
+92093;16811;1;163;70.0;110;70;1;1;0;0;1;0
+92094;23314;1;158;77.0;170;100;3;1;0;0;1;1
+92095;19927;2;166;71.0;140;90;2;1;0;0;1;1
+92097;16837;2;168;88.5;120;80;1;2;0;0;1;1
+92099;17484;1;153;79.0;150;100;1;2;0;0;0;1
+92100;18704;1;167;71.0;120;80;1;1;0;0;1;0
+92101;14646;2;165;69.0;110;80;1;1;0;0;0;0
+92102;18282;1;164;108.0;140;100;3;1;0;0;1;1
+92103;15980;2;170;72.0;120;80;1;1;1;0;1;0
+92104;14575;1;163;75.0;120;80;1;1;0;0;1;0
+92105;18305;1;153;73.0;120;80;1;1;0;0;1;0
+92106;19035;1;165;70.0;120;80;1;1;0;0;1;1
+92107;22191;1;156;52.0;130;80;2;2;0;0;1;1
+92108;20277;2;189;72.0;130;80;1;1;1;1;1;1
+92112;19098;1;169;86.0;120;80;1;3;0;0;1;0
+92113;16625;2;167;65.0;120;80;1;1;0;1;1;0
+92115;21261;2;170;85.0;120;80;1;1;0;0;1;0
+92116;16058;2;184;98.0;120;80;3;1;0;0;1;1
+92119;22653;2;170;77.0;150;90;3;1;0;0;0;1
+92120;15186;1;161;83.0;110;70;2;1;0;0;1;1
+92122;23538;2;164;69.0;120;80;3;1;0;0;1;1
+92123;21073;2;169;94.0;120;79;1;2;0;0;0;1
+92124;20396;1;170;110.0;140;90;1;1;0;0;1;1
+92125;19008;1;152;55.0;140;100;1;1;1;0;1;1
+92126;23184;1;160;92.0;110;80;2;1;0;0;1;1
+92127;21798;1;167;102.0;150;100;1;1;0;1;1;1
+92128;17593;2;154;95.0;140;90;1;1;0;0;1;1
+92129;20453;1;156;78.0;140;90;3;1;0;0;1;0
+92131;21865;2;186;110.0;120;80;2;2;0;0;1;0
+92134;23376;1;158;82.0;160;100;2;2;0;0;1;1
+92135;22432;2;161;74.0;130;80;1;1;0;1;0;1
+92136;16560;2;173;58.0;110;80;1;1;0;0;1;0
+92140;20503;1;153;69.0;140;90;1;1;0;0;0;1
+92141;21828;1;168;88.0;130;80;1;1;0;0;1;0
+92143;23290;2;173;72.0;140;70;1;1;0;0;1;1
+92144;22810;2;154;61.0;120;80;2;1;0;0;1;0
+92145;18311;1;160;90.0;120;80;1;1;0;0;1;0
+92147;15184;1;174;65.0;120;80;1;1;0;0;1;0
+92148;20450;2;167;78.0;150;90;1;1;0;0;0;1
+92149;19535;2;167;80.0;120;80;1;1;0;0;1;0
+92150;20535;2;163;75.0;120;80;1;1;0;0;1;0
+92151;20583;2;172;68.0;140;90;1;1;0;0;1;1
+92152;19983;1;159;95.0;130;90;1;1;0;0;1;0
+92153;15308;1;180;89.0;11;80;1;1;0;0;0;0
+92154;15967;1;166;58.0;170;80;1;1;0;0;1;1
+92156;20967;1;155;75.0;110;80;1;2;0;0;1;1
+92157;20534;2;174;92.0;120;80;1;1;1;0;1;1
+92158;17421;2;169;64.0;120;80;3;3;1;1;1;1
+92160;16644;2;168;63.0;100;60;1;1;1;0;1;0
+92161;18940;2;120;80.0;120;80;1;1;0;0;0;1
+92163;19152;1;165;70.0;110;70;1;1;0;0;1;0
+92165;20428;1;161;83.0;160;110;2;2;1;1;1;1
+92166;20625;2;165;68.0;120;70;1;1;0;0;1;1
+92167;19961;2;172;64.0;110;70;2;1;0;0;1;0
+92168;19542;1;167;87.0;145;90;1;1;0;0;1;1
+92169;19968;2;175;95.0;100;80;1;1;0;1;1;1
+92170;14511;2;176;90.0;130;90;1;1;1;0;1;0
+92171;17602;1;163;90.0;130;80;1;1;0;0;1;1
+92173;20572;1;160;60.0;140;90;1;1;0;0;1;1
+92175;18319;1;164;61.0;140;90;1;1;0;0;1;1
+92176;15078;1;170;48.0;100;60;2;2;0;0;1;0
+92177;20572;1;160;80.0;100;62;2;1;0;0;1;0
+92180;21222;2;173;69.0;130;90;1;1;0;0;1;0
+92182;15341;2;186;63.0;110;70;1;1;0;0;1;0
+92183;16788;2;173;76.0;110;70;1;1;0;0;1;0
+92184;20458;1;160;73.0;145;90;3;3;0;0;1;1
+92185;20890;1;147;65.0;120;80;1;1;0;0;1;1
+92186;20463;1;158;74.0;120;80;1;1;0;0;1;0
+92187;20678;1;165;65.0;150;100;1;1;0;0;1;1
+92189;17371;2;189;95.0;120;80;1;1;0;0;1;0
+92190;19883;1;162;69.0;120;80;1;1;0;0;1;0
+92191;23565;1;157;62.0;150;100;1;1;0;0;1;1
+92192;18252;1;158;81.0;120;80;1;1;0;0;1;0
+92193;19491;2;166;64.0;120;80;2;1;0;0;1;0
+92194;20245;2;176;73.0;140;90;1;3;0;0;1;1
+92195;17421;1;169;65.0;110;70;1;1;0;0;1;0
+92196;16504;1;170;55.0;110;70;1;1;0;0;1;0
+92197;18867;1;164;67.0;125;70;1;1;0;0;1;0
+92198;20588;2;173;83.0;180;100;2;1;0;0;1;1
+92199;19094;1;156;56.0;160;1000;3;3;0;0;1;1
+92201;21312;2;165;59.0;120;80;1;1;0;0;0;0
+92202;20202;1;165;90.0;140;90;1;1;0;0;1;0
+92203;19431;1;159;61.0;140;100;1;1;0;0;1;1
+92204;21061;1;165;62.0;120;80;2;1;0;0;0;0
+92205;17671;1;166;69.0;130;90;1;1;0;0;0;0
+92206;20458;1;153;81.0;160;80;1;1;0;0;0;1
+92208;18154;2;160;59.0;120;80;1;1;0;0;1;0
+92209;19029;1;164;64.0;120;80;1;1;0;0;1;1
+92210;19478;1;156;62.0;120;80;2;1;0;1;1;1
+92212;20481;1;158;95.0;120;80;3;1;0;0;1;1
+92213;21818;1;151;58.0;110;70;1;1;0;0;1;1
+92215;14655;1;156;54.0;110;70;1;1;0;0;0;0
+92216;20506;1;163;95.0;130;80;1;2;0;0;1;1
+92220;19055;2;168;70.0;120;80;1;1;0;0;1;0
+92221;16926;2;168;88.0;120;80;1;1;0;0;1;1
+92225;16257;2;160;68.0;120;80;1;1;0;0;1;0
+92226;18424;2;167;67.0;120;90;1;1;0;0;1;0
+92227;18094;1;175;65.0;120;90;1;1;0;0;1;1
+92228;16108;1;160;57.0;110;70;1;1;0;0;1;0
+92229;19728;1;158;64.0;120;80;2;1;0;1;1;0
+92230;14654;1;165;65.0;120;80;1;1;0;0;1;0
+92231;20601;1;155;89.0;160;100;1;1;0;0;1;1
+92232;17369;1;155;65.0;110;70;1;1;0;0;1;0
+92233;20940;1;164;74.0;130;80;3;1;0;0;1;1
+92235;23673;2;171;69.0;110;70;1;1;0;0;1;0
+92236;21695;2;164;76.0;140;90;1;1;0;0;0;1
+92237;15053;2;172;67.0;100;70;1;1;0;0;1;0
+92238;19708;1;167;77.0;120;80;1;1;0;0;1;0
+92239;19794;2;185;85.0;130;90;1;1;1;0;0;1
+92240;19097;1;152;95.0;150;90;3;3;0;0;1;1
+92241;16231;1;155;63.0;120;80;1;1;0;0;1;0
+92242;20632;1;168;63.0;120;85;1;1;0;0;1;0
+92243;16845;1;160;60.0;120;80;1;1;0;0;0;0
+92244;16179;2;175;75.0;12;80;1;1;0;0;1;1
+92245;15373;1;167;78.0;110;70;1;1;0;0;1;0
+92246;18311;1;170;77.0;120;80;3;3;0;0;1;0
+92249;18229;2;176;85.0;140;90;1;1;0;0;1;0
+92250;21360;1;164;78.0;130;80;3;3;0;0;1;1
+92251;18979;1;168;74.0;110;70;1;1;0;0;0;0
+92252;18286;1;156;84.0;150;90;1;1;0;0;1;1
+92253;21175;2;167;108.0;140;100;3;1;1;0;1;1
+92255;22511;1;160;56.0;120;80;1;1;0;0;1;0
+92256;23170;1;164;85.0;160;90;1;1;0;0;0;1
+92258;19559;2;169;66.0;120;80;1;1;0;0;1;1
+92259;17011;1;170;89.0;100;70;2;2;0;0;1;0
+92261;21937;1;169;116.0;130;90;1;2;0;0;1;0
+92262;21212;2;166;105.0;170;100;2;1;0;0;1;1
+92264;21835;2;164;69.0;150;100;1;1;0;0;1;1
+92266;21237;2;175;74.0;120;80;3;3;1;0;1;1
+92267;21791;1;170;73.0;130;80;1;1;0;0;0;1
+92270;18248;1;162;65.0;120;80;1;1;0;0;0;0
+92271;20625;2;168;72.0;120;80;1;1;0;0;1;0
+92273;17523;2;197;95.0;130;90;1;1;0;0;0;1
+92276;22715;1;156;65.0;150;100;1;1;0;0;1;1
+92277;18973;2;177;74.0;120;80;2;1;1;1;1;0
+92278;18583;2;168;60.0;120;80;1;1;0;0;1;0
+92279;18504;1;165;69.0;120;80;1;1;0;0;0;1
+92283;19763;1;163;65.0;150;80;1;1;0;0;1;1
+92284;18787;1;165;69.0;100;70;1;1;0;0;1;0
+92286;18781;1;178;98.0;130;80;3;2;0;0;0;1
+92288;22666;2;165;75.0;160;90;2;1;1;0;1;1
+92289;15426;2;167;77.0;140;90;1;1;0;1;1;1
+92291;18816;1;161;59.0;130;80;1;1;0;0;1;0
+92292;21043;1;160;60.0;150;90;2;1;0;0;0;0
+92293;18985;2;165;57.0;120;80;1;1;0;0;0;0
+92295;17550;1;164;88.0;120;80;2;1;0;0;1;1
+92296;18953;1;160;67.0;120;70;1;1;0;0;1;0
+92298;23308;2;163;82.0;130;80;1;1;0;0;1;1
+92301;21705;1;169;172.0;120;70;2;1;0;0;1;0
+92302;19680;2;173;70.0;100;60;1;1;0;0;1;1
+92303;21927;2;178;78.0;120;80;1;1;0;0;0;0
+92304;19572;2;173;59.0;120;80;1;1;0;0;1;0
+92305;19709;1;160;74.0;120;80;2;1;0;0;1;0
+92306;21686;1;158;85.0;150;90;3;3;0;0;1;1
+92307;20297;1;168;69.0;120;80;1;1;0;0;1;0
+92308;19095;1;168;65.0;120;80;1;1;0;0;1;1
+92309;21883;1;149;49.0;140;90;1;1;0;0;1;1
+92310;14672;2;178;121.0;130;90;1;1;0;0;1;0
+92313;17254;2;173;68.0;100;70;1;1;1;1;0;0
+92314;17409;1;160;79.0;120;80;2;2;0;0;1;0
+92315;17469;1;165;65.0;120;80;1;1;0;0;0;1
+92316;20540;2;182;100.0;150;100;3;2;0;1;1;1
+92319;19717;1;164;98.0;130;70;1;1;0;0;0;0
+92320;19694;1;147;47.0;120;80;3;3;0;0;1;1
+92321;14358;1;159;54.0;110;70;1;1;0;0;1;0
+92322;20482;2;170;88.0;120;80;1;1;0;0;1;1
+92324;18982;1;165;60.0;120;80;1;1;0;0;1;0
+92325;23401;2;176;87.0;140;90;1;1;1;0;1;1
+92327;20585;2;161;77.0;110;80;1;1;0;0;1;0
+92328;18372;2;168;59.0;120;80;1;1;1;1;1;0
+92330;19635;2;170;130.0;200;110;1;1;0;0;1;1
+92331;16007;2;174;94.0;130;90;1;1;0;0;1;1
+92334;19863;1;157;111.0;140;80;1;2;0;0;1;1
+92337;22497;2;168;70.0;120;80;1;1;0;0;1;0
+92339;14590;2;165;69.0;120;90;1;1;0;0;1;0
+92340;18412;2;168;72.0;140;90;1;1;0;0;0;1
+92341;18931;1;165;77.0;120;80;1;1;0;0;0;1
+92342;18979;1;173;65.0;110;80;1;1;0;0;1;0
+92345;16043;1;162;60.0;140;80;2;1;0;0;1;1
+92346;17672;2;167;64.0;120;80;1;1;0;0;1;0
+92347;20982;1;165;65.0;120;80;1;1;0;0;1;0
+92348;19834;1;165;70.0;110;70;1;1;0;0;0;0
+92349;19586;2;169;60.0;120;60;1;1;0;0;1;0
+92350;21784;1;159;80.0;160;100;3;2;0;1;1;0
+92351;21272;1;169;68.0;130;80;1;1;0;0;0;0
+92352;17657;1;153;54.0;110;70;2;1;0;0;1;1
+92353;20992;1;168;59.0;110;70;2;1;0;0;1;0
+92354;19062;1;163;94.0;120;80;3;1;0;0;1;1
+92355;15451;2;170;65.0;120;80;1;1;0;0;1;0
+92356;21716;1;149;65.0;120;80;1;1;0;0;1;1
+92359;20421;2;169;72.0;160;90;1;3;1;0;0;1
+92360;22631;1;164;59.0;110;60;3;3;0;0;1;1
+92361;23393;2;175;97.0;110;70;1;2;0;0;1;0
+92363;23069;2;176;64.0;130;90;3;1;0;0;1;1
+92364;23183;1;158;79.0;110;70;1;1;0;0;0;1
+92365;19795;1;160;75.0;110;70;1;1;0;0;0;1
+92366;22729;1;146;79.0;140;90;1;2;0;0;1;1
+92367;21147;2;172;86.0;120;80;1;1;0;0;1;0
+92368;17331;1;170;71.0;100;60;1;1;0;0;1;0
+92369;18145;1;160;60.0;120;80;1;1;0;0;1;0
+92370;18945;2;165;65.0;110;70;1;1;0;0;1;0
+92372;16001;1;168;80.0;160;100;2;1;0;0;1;1
+92373;19461;1;158;77.0;125;83;1;1;0;0;1;0
+92374;14785;1;165;66.0;120;80;3;3;0;0;1;0
+92376;14572;1;162;56.0;120;80;1;1;0;0;1;1
+92378;19483;1;157;82.0;90;60;1;1;0;0;0;0
+92379;21159;2;165;78.0;120;80;1;1;0;0;0;0
+92381;20984;1;162;86.0;120;80;3;3;0;0;1;0
+92382;20523;2;160;91.0;120;90;3;1;0;0;1;0
+92383;22068;2;168;71.0;120;80;2;2;0;0;1;0
+92385;18254;1;156;55.0;120;80;1;1;0;0;1;0
+92387;21059;1;158;58.0;130;90;1;1;0;0;1;1
+92389;18296;1;170;81.0;150;100;1;1;0;0;1;1
+92391;21829;1;159;93.0;150;80;1;1;0;0;1;1
+92392;22572;2;173;82.0;180;100;2;1;0;0;1;1
+92394;19640;1;156;46.0;120;80;3;1;0;0;1;1
+92395;16763;2;178;85.0;120;85;2;2;0;0;1;0
+92396;19747;1;151;93.0;140;90;3;1;0;0;1;1
+92397;16097;1;170;68.0;120;80;1;1;0;0;1;0
+92398;19016;1;150;53.0;90;60;1;1;0;0;1;1
+92399;23414;2;170;78.0;120;70;1;1;1;1;1;1
+92400;21809;2;164;81.0;120;80;1;3;1;1;0;1
+92403;16689;2;168;74.0;150;100;1;1;1;1;1;1
+92405;18386;1;169;74.0;120;80;1;1;0;0;1;1
+92406;19645;1;162;68.0;120;80;1;1;0;0;1;0
+92407;18805;2;160;60.0;130;80;2;1;0;0;1;1
+92408;19838;2;169;85.0;120;80;1;1;1;0;1;0
+92409;17475;2;186;66.0;210;110;1;1;1;0;1;1
+92410;18851;2;167;68.0;140;90;1;1;0;0;1;0
+92411;15097;2;177;105.0;120;80;1;1;1;0;1;0
+92414;15144;2;175;69.0;120;80;1;1;0;0;1;0
+92415;23214;1;158;61.0;120;80;1;1;0;0;1;1
+92416;18912;1;158;98.0;120;80;1;1;0;0;0;1
+92417;19844;2;175;86.0;130;86;1;1;0;0;1;1
+92418;23320;2;168;80.0;140;90;1;1;0;0;1;1
+92419;23335;2;165;78.0;120;80;1;1;0;0;1;1
+92420;21945;1;156;63.0;118;82;1;1;0;0;1;0
+92421;22775;1;161;72.0;150;90;1;1;0;0;1;1
+92423;17550;2;178;76.0;110;70;1;1;0;0;1;0
+92424;19083;1;169;52.0;100;60;2;2;0;0;1;0
+92425;14373;1;173;86.0;120;80;1;1;0;0;1;0
+92426;14527;1;163;57.0;90;60;2;1;0;0;1;0
+92428;20898;1;160;80.0;120;70;1;1;0;0;1;0
+92429;20317;2;168;69.0;160;100;1;1;0;0;0;1
+92430;18245;1;155;64.0;110;80;1;1;0;0;1;0
+92431;16153;1;170;74.0;110;60;1;1;0;0;1;0
+92434;14424;2;178;77.0;110;70;1;1;0;0;1;0
+92437;19752;1;163;67.0;120;70;1;1;0;0;1;1
+92438;21097;1;164;58.0;123;80;1;1;0;0;1;0
+92439;21186;1;169;98.0;120;80;3;3;0;0;1;0
+92440;14628;1;155;60.0;110;80;1;1;0;0;1;0
+92443;21420;1;158;58.0;120;80;1;1;0;0;0;0
+92444;23427;1;155;83.0;160;100;2;1;0;0;1;1
+92446;18037;1;165;60.0;110;70;1;1;0;0;1;0
+92449;20978;2;170;81.0;110;70;1;1;1;1;1;0
+92450;16597;1;158;60.0;120;70;1;1;0;0;1;0
+92451;18362;2;187;89.0;120;80;1;1;0;1;1;0
+92454;16610;1;175;80.0;120;80;1;1;0;0;1;0
+92455;20467;1;160;60.0;120;80;1;1;0;0;1;0
+92456;19449;1;160;70.0;130;90;2;1;0;0;0;1
+92457;21083;2;171;73.0;130;90;1;1;0;0;1;0
+92458;18811;2;179;80.0;130;90;2;1;1;1;1;0
+92459;15081;1;155;72.0;100;70;1;1;0;0;1;0
+92460;21087;1;168;74.0;120;80;1;1;0;0;0;0
+92461;21986;1;168;66.0;120;80;1;1;0;0;1;0
+92462;19548;2;172;84.0;210;120;1;1;0;0;1;1
+92463;15938;1;162;80.0;120;80;1;1;0;0;1;0
+92467;20583;1;160;61.0;110;70;1;1;0;0;0;1
+92468;15303;1;158;69.0;135;90;1;1;0;0;0;1
+92470;21258;1;165;77.0;140;80;1;2;0;0;1;1
+92472;19833;1;170;73.0;110;70;1;1;0;0;0;0
+92474;15384;2;170;86.0;120;80;1;2;0;1;1;1
+92475;19633;1;150;77.0;100;80;2;1;1;0;1;1
+92476;19220;1;150;56.0;120;80;3;3;0;0;1;1
+92478;23476;1;105;80.0;130;90;1;1;0;0;1;1
+92481;20166;1;168;66.0;120;80;1;1;0;0;1;0
+92482;19843;1;146;52.0;120;80;1;1;0;0;1;1
+92483;21124;1;157;48.0;100;60;1;1;0;0;1;0
+92484;22590;2;168;70.0;140;90;1;2;0;0;1;1
+92485;20502;1;163;62.0;120;80;1;1;0;0;0;1
+92487;18693;2;185;103.0;110;80;3;1;0;0;0;0
+92488;20459;1;168;70.0;110;70;3;3;0;0;1;1
+92489;20468;1;157;103.0;130;80;1;1;0;0;1;0
+92490;19779;1;168;69.0;120;80;1;1;0;0;1;0
+92491;15260;2;175;80.0;120;80;1;1;0;0;1;0
+92493;17540;2;164;76.0;140;90;1;1;1;0;1;1
+92494;18451;1;152;58.0;110;80;2;1;0;0;0;1
+92495;17325;1;152;61.0;120;80;1;1;0;0;1;1
+92496;20378;1;148;76.0;120;80;2;1;0;0;1;1
+92497;21288;2;197;78.0;120;70;1;1;0;0;0;1
+92498;21292;1;176;83.0;130;80;1;1;0;0;1;1
+92499;20606;1;167;65.0;140;80;3;3;0;0;1;1
+92500;19488;1;164;62.0;110;70;1;1;0;0;1;0
+92501;21166;2;157;61.0;110;80;1;1;0;0;0;1
+92502;19709;2;180;85.0;110;80;2;2;0;0;1;0
+92503;21935;2;178;97.0;140;90;1;1;0;0;1;0
+92504;22072;1;153;96.0;140;90;3;2;0;0;1;1
+92505;20688;1;155;52.0;100;70;1;1;0;0;1;0
+92506;18832;2;169;69.0;140;89;1;1;0;0;1;0
+92507;21807;1;167;70.0;120;80;1;1;0;0;1;0
+92508;14477;2;182;90.0;120;80;1;1;0;0;1;0
+92509;18771;1;158;62.0;120;80;2;1;0;0;1;1
+92510;18199;1;162;62.0;110;70;1;1;0;0;1;0
+92511;19194;1;151;52.0;120;80;1;1;0;0;1;0
+92513;14468;2;169;57.0;110;70;1;1;0;0;1;0
+92515;18507;2;166;78.0;130;80;1;1;1;1;1;1
+92516;18760;1;153;62.0;120;80;2;1;0;0;1;1
+92520;21309;1;162;59.0;120;80;3;3;0;0;1;0
+92524;22620;1;157;55.0;110;70;1;1;0;0;1;1
+92525;19008;1;160;72.0;130;80;1;1;0;0;1;1
+92526;19595;2;166;60.0;110;70;3;2;1;0;1;1
+92527;18384;2;182;103.0;130;90;1;1;0;0;0;1
+92528;17651;2;162;60.0;120;80;1;1;0;0;0;0
+92530;16798;2;161;68.0;160;100;1;1;1;0;1;1
+92531;21807;1;165;78.0;120;80;1;1;0;0;1;0
+92532;15386;2;165;101.0;130;70;1;1;1;0;1;1
+92533;16091;1;156;76.0;120;80;1;1;0;0;0;0
+92534;14623;2;170;78.0;130;90;1;1;0;0;0;1
+92535;16933;2;163;65.0;120;80;1;1;0;0;1;0
+92536;15188;1;168;77.0;130;80;1;1;1;0;1;0
+92537;23437;2;168;87.0;160;100;3;3;0;0;1;1
+92539;22436;2;175;80.0;120;80;1;1;0;0;1;0
+92544;21252;1;164;74.0;120;90;1;1;0;0;1;0
+92545;19441;2;164;66.0;120;80;1;2;1;0;1;0
+92548;16730;1;157;79.0;160;100;2;1;0;0;1;1
+92549;20185;1;165;61.0;120;80;3;3;0;0;1;0
+92551;20348;1;158;84.0;110;80;1;1;0;0;1;1
+92553;21924;1;152;91.0;130;90;3;3;0;0;1;0
+92555;21262;1;160;63.0;150;90;2;1;0;0;1;1
+92556;22593;1;160;70.0;130;90;3;1;0;1;1;1
+92557;18915;2;164;64.0;110;70;1;1;0;0;1;1
+92558;20265;1;157;98.0;150;90;3;1;0;0;1;1
+92559;19764;1;168;68.0;110;70;1;1;0;0;1;0
+92561;15499;1;165;67.0;120;80;1;1;0;0;1;0
+92562;19690;1;162;53.0;90;60;1;1;0;0;1;0
+92563;15784;1;164;64.0;120;80;1;1;1;0;1;0
+92564;18420;2;176;90.0;120;80;1;1;0;0;1;0
+92565;16942;2;170;72.0;120;80;1;1;0;0;1;0
+92567;15429;2;174;76.0;110;70;1;1;1;0;0;0
+92568;20461;2;170;78.0;120;80;1;1;1;0;1;1
+92569;20912;2;170;100.0;160;1000;2;2;0;0;1;0
+92570;21017;1;175;84.0;150;75;1;1;0;0;1;1
+92571;15919;2;183;86.0;120;80;1;1;0;0;0;0
+92575;22094;1;157;60.0;110;70;2;1;0;0;1;0
+92576;20458;1;170;69.0;140;90;1;1;0;0;1;0
+92578;23148;2;172;75.0;140;90;1;1;0;0;1;0
+92580;14615;1;159;70.0;120;80;1;1;0;0;1;1
+92581;17613;1;166;65.0;160;90;1;1;0;0;1;1
+92582;19599;1;162;98.0;140;90;3;1;1;1;1;1
+92584;14709;1;174;76.0;160;80;1;1;0;0;1;1
+92586;19655;1;147;69.0;150;90;1;1;0;0;1;1
+92587;18210;2;170;66.0;150;90;2;1;0;0;1;0
+92588;16163;1;166;83.0;130;80;2;2;1;0;1;0
+92590;22419;1;170;119.0;140;80;1;1;0;0;1;1
+92594;22555;1;156;77.0;140;80;1;1;0;0;0;1
+92595;20566;1;147;73.0;130;100;3;1;0;0;0;0
+92596;19517;1;170;116.0;110;70;1;1;0;0;1;1
+92597;14703;1;165;80.0;130;90;3;3;0;0;0;1
+92599;15897;1;161;68.0;110;80;1;1;0;0;1;0
+92600;14489;1;159;50.0;120;80;1;1;0;0;1;0
+92601;16081;2;168;72.0;120;80;1;1;0;0;1;0
+92602;17996;1;149;76.0;120;80;3;3;0;0;1;1
+92603;19052;1;159;69.0;120;80;1;1;0;0;1;0
+92604;21901;1;152;95.0;140;100;1;1;0;0;1;1
+92608;19645;1;160;65.0;160;80;3;1;0;0;1;1
+92609;19776;2;178;110.0;140;90;1;1;0;0;1;0
+92610;17874;1;155;81.0;120;80;1;2;0;0;0;0
+92611;21956;1;152;90.0;120;80;3;3;0;0;1;1
+92612;22754;1;149;107.0;140;80;1;1;0;0;1;1
+92613;23111;1;156;77.0;160;90;3;1;0;0;0;1
+92615;22057;2;171;78.0;150;90;2;1;0;0;0;1
+92616;17590;2;171;75.0;140;80;2;1;0;0;1;1
+92617;18333;2;162;66.0;120;80;2;1;1;0;1;1
+92621;19723;1;165;79.0;130;90;1;1;0;0;1;0
+92622;14675;2;167;57.0;160;80;2;1;0;0;0;1
+92623;17370;2;169;74.0;110;70;1;1;0;0;1;0
+92624;17237;2;167;79.0;160;90;1;1;0;0;0;1
+92625;19834;1;162;106.0;110;70;2;3;0;0;1;1
+92626;21275;1;171;82.0;130;90;1;1;0;0;1;1
+92629;21664;2;161;57.0;90;60;1;1;1;0;1;0
+92630;15386;1;162;85.0;120;80;1;1;0;0;1;0
+92631;22895;1;160;55.0;130;80;1;1;0;0;1;1
+92633;19804;2;162;97.0;160;100;2;1;0;0;0;1
+92634;23348;2;171;82.0;120;80;3;1;0;0;1;0
+92635;19733;2;177;71.0;120;80;1;1;0;0;1;0
+92636;20489;2;162;60.0;120;80;1;1;0;0;1;0
+92638;21162;2;170;102.0;120;80;1;1;0;0;1;1
+92639;20609;1;175;75.0;120;80;1;1;0;0;1;1
+92640;23264;1;162;68.0;120;80;2;1;0;0;1;1
+92641;21951;1;154;70.0;160;100;3;1;0;0;1;1
+92644;18951;1;151;58.0;110;70;1;1;0;0;1;1
+92645;20525;1;158;75.0;120;80;1;1;0;0;1;1
+92648;16661;2;172;65.0;120;80;2;1;1;0;1;1
+92649;23272;1;162;105.0;160;90;1;1;0;0;1;1
+92650;16010;1;162;66.0;100;70;1;1;0;0;1;0
+92652;19811;2;169;72.0;120;80;2;2;0;0;1;0
+92653;16079;1;157;95.0;150;90;1;1;0;0;1;1
+92654;15934;1;164;80.0;120;80;1;1;0;0;1;1
+92655;16674;1;157;78.0;906;60;2;1;0;0;1;0
+92656;15491;1;180;81.0;120;80;1;1;0;0;1;0
+92657;16818;2;167;103.0;120;80;1;1;0;0;1;0
+92658;22764;1;155;65.0;120;80;1;1;0;0;1;1
+92660;19080;1;158;62.0;110;80;1;1;0;0;1;0
+92661;20534;1;165;60.0;120;90;2;2;0;0;0;0
+92662;20397;1;164;81.0;120;80;1;1;0;0;1;0
+92663;19579;1;161;65.0;110;70;1;1;0;0;0;1
+92664;18007;2;172;74.0;120;80;1;1;0;0;1;0
+92665;18272;1;173;72.0;120;70;1;1;0;0;1;1
+92666;16088;2;175;89.0;170;110;3;1;1;1;1;0
+92667;17699;1;164;85.0;140;90;3;1;0;0;0;1
+92668;18221;2;177;72.0;160;90;1;1;1;0;1;1
+92669;21735;1;163;63.0;120;70;2;1;0;0;1;1
+92670;23343;1;169;70.0;120;80;1;1;0;0;1;0
+92671;18948;2;170;77.0;140;90;1;1;0;0;1;0
+92672;14897;2;178;77.0;150;80;2;2;0;0;1;0
+92674;20586;1;163;92.0;120;80;1;1;1;0;1;0
+92675;22854;2;167;79.0;100;72;1;1;1;0;1;0
+92676;22032;1;159;72.0;140;80;1;1;1;1;1;0
+92677;18419;1;154;53.0;130;90;1;1;0;0;1;0
+92679;20271;1;156;93.0;120;80;1;1;0;0;1;0
+92680;21106;1;165;72.0;160;70;2;2;0;0;0;0
+92683;15962;1;162;80.0;120;80;1;1;0;0;1;0
+92684;20351;1;156;65.0;145;90;2;1;1;0;1;1
+92685;21323;2;175;88.0;130;80;1;1;0;0;0;0
+92686;19604;1;157;84.0;120;80;1;1;0;0;1;1
+92687;17722;1;160;62.0;90;60;1;1;0;0;0;0
+92688;14405;1;170;78.0;120;80;1;1;0;0;0;0
+92689;21367;1;157;55.0;180;90;2;1;1;0;1;1
+92691;20945;1;150;70.0;120;80;2;1;0;0;1;1
+92693;23220;2;169;69.0;130;100;3;3;0;1;1;1
+92695;23181;1;156;76.0;120;80;1;1;0;0;1;0
+92696;18987;1;165;70.0;120;80;1;1;0;0;1;0
+92697;20403;1;159;65.0;140;90;2;1;0;0;1;1
+92698;18129;1;168;75.0;125;80;1;1;0;0;1;0
+92699;17742;2;159;63.0;120;80;1;1;0;0;1;0
+92700;19751;2;175;80.0;120;80;1;1;0;0;1;1
+92701;17365;2;177;80.0;120;80;1;1;1;0;1;0
+92702;17851;1;160;65.0;120;80;2;1;0;0;1;0
+92703;19540;1;155;66.0;130;90;1;1;0;0;1;0
+92704;21977;2;171;80.0;110;70;1;1;0;0;1;1
+92706;18735;1;170;80.0;120;80;1;1;0;0;1;1
+92707;21874;1;163;72.0;140;90;3;3;0;0;1;1
+92708;19728;2;162;73.0;150;1000;2;3;0;0;1;0
+92709;21641;1;144;64.0;140;80;3;3;0;0;0;0
+92711;20290;1;162;62.0;150;80;1;1;0;0;1;1
+92712;19018;1;156;90.0;120;90;1;1;0;0;1;0
+92714;21099;1;160;65.0;120;90;1;1;0;0;1;1
+92716;18252;1;168;86.0;120;80;2;2;1;1;1;0
+92717;19077;1;159;82.0;130;90;3;3;0;0;1;1
+92718;17437;1;160;100.0;100;60;2;2;0;0;0;1
+92719;20228;1;163;81.0;130;90;1;1;0;0;0;1
+92720;16905;1;165;69.0;110;70;1;1;0;0;1;0
+92724;19936;1;165;80.0;140;90;1;1;0;0;1;1
+92725;17517;1;171;57.0;140;90;1;1;0;0;0;1
+92727;20935;1;160;69.0;120;80;3;3;0;0;1;0
+92729;21950;1;167;72.0;165;100;1;1;0;0;1;1
+92730;18958;2;170;72.0;120;80;1;1;0;0;0;0
+92731;19202;2;155;65.0;110;70;1;1;0;0;0;1
+92732;22684;2;172;120.0;150;60;2;1;0;0;1;1
+92733;21118;1;168;69.0;110;70;1;2;0;0;1;0
+92734;20168;2;176;80.0;140;90;1;1;0;0;1;1
+92735;16176;2;169;69.0;120;80;1;1;1;0;1;0
+92737;21056;1;160;60.0;120;80;3;1;0;0;1;1
+92738;20452;1;158;69.0;120;80;1;1;0;0;0;1
+92739;20409;2;165;66.0;120;70;1;1;0;0;1;1
+92741;22194;1;160;63.0;100;70;1;1;0;0;1;0
+92744;19643;2;178;93.0;160;110;1;1;0;0;1;1
+92747;21819;2;168;65.0;120;80;1;1;1;0;1;1
+92748;21159;1;157;69.0;110;80;1;1;0;0;1;1
+92749;21674;1;165;132.0;120;80;2;2;0;0;1;1
+92750;20449;1;154;100.0;160;90;1;1;0;0;1;1
+92751;18887;2;171;78.0;120;80;1;1;0;0;1;0
+92752;17571;1;150;50.0;120;80;1;2;0;0;0;0
+92753;21435;1;168;69.0;140;60;1;1;0;0;0;1
+92754;21808;2;170;103.0;160;100;3;1;0;0;1;1
+92755;18147;1;154;76.0;110;70;1;1;0;0;1;0
+92757;16552;2;163;64.0;110;60;1;1;0;0;1;0
+92761;15455;2;170;75.0;120;80;1;1;0;0;1;0
+92762;15350;1;164;69.0;120;80;1;1;0;0;1;0
+92763;19093;2;165;65.0;120;80;1;1;0;0;0;1
+92764;19784;1;162;68.0;120;80;1;1;0;0;1;1
+92766;17549;2;172;68.0;120;80;1;1;0;0;1;1
+92767;19008;1;173;69.0;100;65;1;3;0;0;1;0
+92768;19791;1;168;71.0;120;90;1;1;0;0;1;0
+92769;19696;1;158;70.0;130;90;1;1;0;0;1;0
+92770;23289;1;167;70.0;130;85;3;3;0;0;1;1
+92771;18217;1;166;70.0;120;80;1;1;0;0;1;0
+92772;20386;2;180;75.0;160;80;2;1;1;0;1;1
+92773;21231;2;175;81.0;130;80;1;1;0;0;0;1
+92774;19641;1;149;60.0;150;110;3;1;0;0;1;1
+92776;19694;2;176;88.0;140;100;1;1;0;0;1;1
+92777;16018;2;170;70.0;120;80;1;1;0;0;1;0
+92778;21076;1;176;154.0;140;80;1;1;0;0;1;1
+92781;23365;1;151;65.0;130;90;1;1;0;0;1;1
+92783;20495;1;149;54.0;130;80;1;1;0;0;1;0
+92784;21982;1;156;76.0;130;80;2;1;0;0;1;1
+92787;21997;1;172;78.0;120;80;1;1;0;0;1;0
+92788;15611;1;155;60.0;95;49;1;1;0;0;1;0
+92789;15354;1;154;60.0;140;90;1;1;0;0;1;1
+92790;17685;1;163;62.0;120;90;1;1;0;0;1;1
+92792;20327;2;175;82.0;140;90;1;1;0;0;1;0
+92793;23541;2;174;84.0;160;90;2;1;0;0;1;1
+92794;21918;1;159;90.0;120;90;1;3;0;0;1;0
+92795;21107;2;164;85.0;150;90;1;1;0;0;1;1
+92797;23202;1;148;88.0;130;90;1;1;0;0;1;1
+92798;17655;2;167;71.5;150;90;1;1;1;1;0;1
+92799;23542;2;170;65.0;120;80;1;1;0;0;1;1
+92800;23569;1;147;71.0;140;90;1;3;0;0;1;1
+92801;23400;2;163;93.0;120;80;1;1;0;0;1;1
+92803;21919;1;165;64.0;100;65;1;1;0;0;1;0
+92805;20967;2;184;92.0;140;80;1;3;1;1;1;0
+92808;15273;1;160;60.0;140;90;1;1;0;0;1;1
+92809;21825;1;153;57.0;120;80;1;1;0;0;1;0
+92810;15389;1;160;53.0;90;60;1;1;0;0;1;0
+92811;14510;2;180;72.0;110;60;1;1;0;0;1;1
+92812;23319;2;163;77.0;130;80;3;1;0;0;1;1
+92813;17966;1;154;49.0;90;60;1;1;0;0;1;0
+92814;22541;1;149;118.0;125;80;3;1;1;0;1;1
+92815;17548;2;171;76.0;100;60;1;2;1;0;1;0
+92817;14648;2;170;72.0;120;80;1;1;0;0;1;0
+92819;22887;1;171;82.0;130;80;2;2;0;0;1;1
+92820;20476;1;155;100.0;160;80;1;2;0;0;0;1
+92821;18891;2;164;61.0;120;80;1;1;0;0;1;0
+92822;21771;1;160;48.0;99;63;1;1;0;0;1;0
+92823;18234;1;160;70.0;120;80;1;1;0;0;1;0
+92825;21192;2;178;83.0;120;80;1;2;0;0;1;1
+92826;21954;1;159;65.0;120;80;1;1;0;0;0;1
+92827;15621;2;170;68.0;120;80;1;1;0;0;1;0
+92828;19866;1;148;67.0;120;80;1;1;0;0;1;0
+92829;18268;1;165;78.0;120;80;1;1;0;1;1;0
+92834;21192;1;165;70.0;120;80;1;3;0;0;1;1
+92835;21972;1;167;84.0;110;70;3;3;0;0;1;0
+92836;19776;2;175;84.0;120;80;1;1;0;0;0;0
+92839;21088;1;150;57.0;110;70;3;1;0;0;1;1
+92842;22500;2;178;123.0;140;80;3;2;0;1;1;1
+92843;22800;1;174;70.0;110;70;1;1;0;0;1;0
+92844;20359;1;164;70.0;120;80;1;1;0;0;0;0
+92848;22469;2;180;100.0;120;80;1;1;1;1;1;0
+92849;17745;1;163;75.0;115;80;1;1;0;0;1;1
+92850;23423;1;170;67.0;130;90;2;2;0;0;0;0
+92852;14678;1;159;58.0;100;60;2;1;0;0;0;0
+92853;16947;1;160;63.0;110;60;1;1;0;0;1;1
+92854;17637;1;162;85.0;140;90;2;2;0;0;1;1
+92856;18388;2;162;72.0;130;80;1;1;0;0;0;1
+92857;19581;2;168;77.0;110;80;1;1;0;0;1;0
+92858;20573;2;168;65.0;120;70;1;1;0;0;1;1
+92859;14626;2;189;69.0;110;70;1;1;0;0;1;0
+92860;16879;1;168;63.0;110;70;1;1;0;0;1;1
+92861;19588;1;155;80.0;120;80;1;1;0;0;0;0
+92862;20578;1;160;75.0;140;90;1;1;0;1;1;1
+92863;19816;1;169;78.0;120;80;1;1;0;0;0;1
+92865;15305;1;162;63.0;120;80;1;1;0;0;1;0
+92867;14795;1;172;74.0;150;100;1;1;0;0;1;1
+92868;18870;1;160;69.0;140;90;1;1;0;0;1;0
+92870;16037;1;160;110.0;110;70;1;1;0;0;1;0
+92872;20365;2;169;63.0;110;80;2;3;1;0;1;1
+92873;15348;2;186;80.0;160;1000;3;2;0;1;1;1
+92874;22016;1;155;71.0;140;90;2;1;0;0;1;1
+92875;23299;1;165;80.0;120;80;2;2;0;0;1;0
+92876;18268;1;164;61.0;150;90;1;3;0;0;1;1
+92877;20300;2;164;68.0;140;100;1;1;0;0;1;1
+92881;19786;1;151;63.0;130;100;3;2;0;0;1;1
+92885;19771;2;174;65.0;120;80;1;1;0;0;1;0
+92887;19005;2;169;73.0;110;70;1;1;0;0;1;1
+92888;15584;1;168;78.0;110;80;1;1;0;0;0;0
+92890;18436;1;158;61.0;120;80;1;1;0;0;1;0
+92891;18210;1;160;60.0;120;80;1;1;0;0;1;0
+92892;17564;2;171;123.0;195;130;3;2;1;1;1;1
+92893;16502;2;172;106.0;140;100;2;2;1;1;0;1
+92896;22688;1;145;33.0;130;1000;2;1;0;0;1;1
+92897;21235;1;160;65.0;180;1000;1;1;0;0;1;1
+92899;16633;1;156;70.0;110;70;1;1;0;0;1;0
+92902;17562;1;168;67.0;110;70;2;1;0;0;1;0
+92906;23549;1;166;64.0;130;90;1;1;0;0;1;1
+92907;19605;2;165;76.0;110;70;2;1;0;0;1;0
+92910;23188;1;152;69.0;120;79;1;1;0;0;1;1
+92911;18413;1;150;55.0;90;60;1;1;0;0;0;0
+92912;20390;1;160;74.0;120;80;1;1;0;0;1;0
+92914;22405;1;153;76.0;160;100;2;1;0;1;1;1
+92915;20534;2;170;94.0;120;80;3;3;0;0;1;1
+92916;21462;2;178;89.0;140;80;3;1;0;0;1;1
+92918;19768;2;182;100.0;120;80;1;3;0;0;1;0
+92922;15151;1;164;71.0;120;80;1;1;0;0;1;0
+92923;20381;1;154;72.0;130;80;3;1;0;0;1;1
+92924;17045;2;168;65.0;120;80;1;1;0;0;1;0
+92926;18105;1;160;92.0;110;60;1;3;0;0;1;0
+92927;15359;1;165;60.0;120;80;1;1;0;0;1;0
+92929;16051;2;168;63.0;120;60;1;1;0;0;0;0
+92931;18779;1;174;69.0;120;80;1;1;0;0;1;0
+92932;22592;1;170;90.0;140;90;3;3;0;0;1;1
+92933;20369;2;175;95.0;120;80;3;1;1;0;1;0
+92934;19479;2;168;84.0;110;80;1;1;1;0;0;1
+92935;17942;2;169;71.0;130;80;2;1;0;0;1;0
+92936;20649;1;160;58.0;110;70;1;1;0;0;1;0
+92937;22447;1;156;90.0;140;80;1;1;0;0;0;1
+92940;18252;1;164;70.0;130;90;1;1;0;0;1;0
+92942;15337;1;158;68.0;90;60;1;1;0;0;0;0
+92943;16560;1;168;56.0;120;80;2;2;0;0;0;0
+92946;18234;1;165;65.0;150;80;2;1;0;0;0;1
+92947;20522;1;156;64.0;100;70;1;2;0;0;1;0
+92948;19234;2;173;89.0;120;80;2;1;0;0;1;1
+92949;15905;1;160;72.0;120;80;1;1;0;0;1;0
+92950;18977;1;164;79.0;115;75;1;1;0;0;0;1
+92951;15832;1;162;64.0;130;70;2;3;0;0;0;0
+92954;18402;2;176;90.0;110;80;1;1;0;0;0;0
+92955;21687;1;157;85.0;120;80;1;1;0;0;1;1
+92956;17777;1;174;79.0;160;100;1;1;0;0;0;1
+92959;22341;1;164;77.0;130;90;1;1;0;0;0;0
+92960;16135;1;163;56.0;110;70;1;1;0;0;1;0
+92962;21088;1;157;72.0;120;80;1;1;0;0;1;0
+92963;21977;2;185;92.0;150;90;3;1;0;0;1;1
+92964;22540;2;169;97.0;120;80;1;3;1;0;1;0
+92965;19624;1;162;75.0;125;85;1;1;0;0;1;1
+92966;14667;2;168;69.0;130;80;1;1;1;0;1;0
+92967;17628;2;173;100.0;120;80;3;1;0;0;0;0
+92968;20235;1;163;55.0;110;70;1;1;0;0;1;0
+92969;14879;2;172;74.0;110;80;1;1;1;1;0;0
+92971;19045;2;172;101.0;120;80;3;3;0;0;1;1
+92973;15370;1;176;60.0;110;80;1;1;0;0;1;0
+92974;23591;2;168;69.0;120;80;1;1;0;0;1;1
+92975;21104;2;162;58.0;120;80;1;1;0;0;1;0
+92977;20579;1;168;67.0;120;80;1;1;0;0;0;1
+92978;15481;1;163;76.0;120;80;3;3;0;0;1;1
+92979;21136;1;164;65.0;100;60;2;1;0;0;0;1
+92981;14602;2;163;69.0;110;70;1;1;0;0;1;1
+92982;18173;1;155;61.0;150;90;1;1;0;0;1;0
+92983;23174;1;166;107.0;140;90;2;1;0;1;1;1
+92985;19642;2;174;79.0;120;80;1;1;0;0;1;0
+92986;18937;1;161;54.0;120;80;1;1;0;0;0;1
+92987;18269;1;167;67.0;110;70;2;1;0;0;0;0
+92988;21820;2;165;64.0;110;70;1;3;0;0;1;0
+92990;22688;1;168;69.0;110;80;1;1;0;0;1;0
+92991;19724;1;159;62.0;130;80;1;1;0;0;0;1
+92992;21935;1;155;72.0;120;80;1;1;0;0;1;1
+92993;21330;2;165;88.0;120;80;1;1;1;1;0;0
+92994;18870;1;156;78.0;120;80;1;2;0;0;0;1
+92995;22043;1;161;66.0;160;80;2;1;1;0;1;1
+92997;19004;1;157;60.0;125;80;1;2;0;0;1;0
+92998;16753;1;154;58.0;120;80;1;1;0;0;1;0
+92999;14366;1;163;66.0;90;60;1;1;0;0;1;0
+93000;23331;1;176;78.0;130;80;3;1;0;0;1;1
+93002;21821;2;164;70.0;140;70;1;1;0;0;1;1
+93005;21793;2;165;70.0;135;80;1;1;0;1;1;1
+93007;20288;2;171;78.0;100;80;1;1;0;0;1;1
+93010;19025;1;166;87.0;140;100;3;1;0;0;1;0
+93011;22415;1;151;44.0;90;70;3;3;0;0;1;1
+93012;16854;1;170;70.0;140;90;1;1;0;0;1;1
+93013;20315;1;158;101.0;120;80;2;1;0;0;1;1
+93014;23154;1;168;97.0;140;90;3;1;0;0;1;1
+93015;22598;1;156;60.0;120;80;1;1;0;0;1;1
+93017;19022;1;157;66.0;120;80;1;1;0;0;1;0
+93018;23359;1;165;81.0;160;90;1;1;0;0;1;1
+93019;21177;1;155;77.0;150;90;1;1;0;0;1;1
+93020;18886;2;173;74.0;140;90;2;2;0;0;1;1
+93021;20269;1;168;65.0;120;80;1;1;0;0;1;0
+93022;20982;1;149;69.0;110;85;1;1;0;0;1;0
+93024;21063;1;160;58.0;120;80;1;2;0;0;1;0
+93027;21692;1;145;49.0;110;70;1;1;0;0;0;0
+93028;15143;1;170;72.0;120;80;1;1;0;0;1;0
+93029;19181;2;180;85.0;140;80;3;2;1;1;1;0
+93030;22747;1;158;67.0;140;98;1;1;0;0;1;1
+93031;19652;2;167;66.0;110;70;1;1;0;0;1;0
+93032;20569;1;162;63.0;120;60;1;3;0;0;1;1
+93035;20648;1;164;80.0;130;90;1;1;0;0;1;1
+93036;21861;1;165;89.0;130;80;1;1;0;0;1;0
+93039;21108;1;165;65.0;120;80;1;1;0;0;1;0
+93041;21187;1;162;84.0;140;90;1;1;0;0;1;1
+93042;15225;2;175;66.0;120;80;1;1;1;0;1;0
+93044;18487;2;171;86.0;110;70;1;2;0;0;1;0
+93046;20355;1;152;59.0;100;60;1;1;0;0;1;0
+93047;15824;1;151;45.0;110;70;1;1;0;0;1;0
+93048;21683;1;165;59.0;90;60;1;1;0;0;0;0
+93049;21220;2;174;105.0;120;90;1;1;0;0;0;1
+93050;17389;1;159;74.0;110;70;1;1;0;0;0;0
+93051;18419;2;168;64.0;120;80;1;1;0;0;1;0
+93053;16031;1;161;79.0;165;100;2;1;0;0;1;1
+93054;19084;2;170;92.0;150;90;1;1;0;0;1;1
+93055;23128;1;158;76.0;130;90;3;2;0;0;0;0
+93056;21295;1;160;72.0;120;80;1;1;0;0;1;1
+93057;20260;1;164;65.0;130;90;1;1;0;0;1;1
+93058;19654;1;158;89.0;140;90;1;1;0;0;1;1
+93059;23240;1;163;74.0;110;90;1;1;0;0;0;1
+93060;20264;2;173;65.0;120;80;3;3;0;0;1;0
+93061;22420;2;169;72.0;120;80;1;1;1;0;1;0
+93062;15798;1;162;67.0;110;80;2;2;0;0;1;0
+93063;19675;1;151;60.0;120;70;1;1;0;0;1;1
+93064;19612;1;154;50.0;120;80;3;3;0;0;0;1
+93065;16035;2;169;74.0;110;70;1;1;1;0;1;0
+93066;18240;1;143;67.0;120;80;1;1;0;0;1;0
+93068;17525;1;157;70.0;100;60;1;1;0;0;1;0
+93070;15560;1;162;82.0;140;80;1;1;0;0;0;1
+93071;21638;1;160;77.0;120;80;3;3;0;0;1;1
+93072;18140;2;167;83.0;120;90;1;1;1;0;1;0
+93073;22427;1;158;78.0;140;90;3;3;0;0;1;1
+93074;21873;1;165;65.0;120;80;1;1;0;0;0;1
+93075;21101;1;170;75.0;120;80;1;1;0;0;1;0
+93076;15870;1;151;89.0;140;110;3;1;0;0;1;1
+93077;18552;1;166;70.0;110;80;1;1;0;0;1;0
+93078;19848;1;164;113.0;140;90;2;3;0;0;0;1
+93079;21598;2;160;89.0;140;100;1;1;0;0;1;1
+93080;23176;1;163;92.0;140;80;1;1;0;0;0;1
+93081;23295;1;167;72.0;130;90;1;1;0;0;1;1
+93082;14605;1;178;75.0;120;80;1;1;0;0;1;0
+93084;17649;1;161;75.0;110;70;1;1;0;0;1;0
+93085;17261;1;153;68.0;100;70;1;1;0;0;1;0
+93088;23244;1;163;84.0;110;70;1;1;0;0;1;1
+93089;18150;2;168;70.0;140;90;2;1;0;0;1;0
+93091;20536;1;160;80.0;120;80;1;1;0;0;1;0
+93092;22613;1;156;57.0;90;60;2;1;0;0;0;1
+93093;18302;1;165;79.0;140;80;1;1;0;0;1;1
+93094;20451;2;171;88.0;160;1000;2;1;0;1;1;1
+93095;19741;1;165;55.0;120;80;1;1;0;0;1;0
+93098;22681;2;161;65.0;120;80;1;1;0;0;1;0
+93099;15147;2;173;72.0;120;80;1;1;1;0;1;0
+93100;22454;1;156;78.0;150;100;1;1;0;0;1;0
+93101;21297;1;150;73.0;130;80;3;3;0;0;1;1
+93103;14691;2;176;92.0;130;90;2;2;0;0;1;1
+93104;21151;1;168;87.0;140;90;3;3;0;0;0;0
+93106;20474;1;169;65.0;120;80;1;1;0;0;1;0
+93107;14660;1;165;74.0;120;79;1;1;0;0;1;0
+93108;21863;1;151;65.0;130;80;3;1;0;0;1;1
+93109;16855;2;162;80.0;100;70;1;2;0;0;0;1
+93110;23258;1;159;64.0;120;90;1;1;0;0;0;0
+93111;21733;1;170;67.0;120;80;1;1;0;0;1;0
+93112;18281;2;174;95.0;130;80;1;1;0;0;1;0
+93114;17520;1;161;71.0;120;80;1;1;0;0;1;1
+93116;16937;1;156;58.0;100;60;1;1;0;0;1;0
+93118;18883;2;158;63.0;130;80;1;1;1;0;1;1
+93119;21966;2;173;113.0;140;90;1;2;0;0;0;1
+93120;16846;2;168;69.0;110;70;1;1;0;0;1;0
+93122;18866;1;157;60.0;150;90;2;1;0;0;1;1
+93123;18979;1;157;63.0;140;70;3;3;0;0;1;1
+93125;21764;1;161;58.0;120;70;2;2;0;0;0;1
+93130;21955;1;160;111.0;100;80;1;2;0;0;1;1
+93131;16095;1;160;72.0;120;80;1;1;0;0;1;1
+93133;21012;2;174;76.0;110;80;1;1;0;0;0;0
+93138;16648;1;169;93.0;120;80;2;1;0;0;1;1
+93140;22566;1;156;64.0;120;70;1;1;0;0;0;1
+93141;23076;1;157;88.0;120;70;1;1;0;0;1;1
+93142;19812;2;179;67.0;110;70;1;1;1;1;1;1
+93144;19826;1;163;42.0;100;60;2;1;0;0;1;0
+93145;19287;2;189;91.0;140;80;1;1;1;0;0;0
+93147;21848;1;165;104.0;140;90;2;2;0;0;0;1
+93151;20587;1;167;81.0;120;80;1;1;0;0;1;0
+93152;23348;1;159;99.0;150;90;1;1;0;0;1;1
+93153;15214;2;170;109.0;120;80;1;1;0;0;1;0
+93155;19598;2;160;77.0;140;90;1;1;1;0;1;0
+93156;21856;2;173;111.0;110;80;1;1;0;0;0;1
+93157;18806;2;172;105.0;120;80;1;1;0;0;0;0
+93159;17056;1;158;66.0;140;80;1;1;0;0;1;1
+93160;21240;1;153;62.0;110;60;1;1;0;0;1;0
+93163;19814;1;165;74.0;120;70;1;1;0;0;1;0
+93164;21168;1;170;75.0;120;80;1;1;0;0;1;0
+93165;19101;1;161;127.0;200;1200;3;1;1;0;1;1
+93166;19841;1;162;66.0;130;80;3;3;0;0;1;1
+93167;19971;2;162;70.0;130;80;1;1;0;0;0;1
+93168;19653;2;170;60.0;110;80;1;1;0;0;1;0
+93169;18236;1;159;73.0;140;90;1;1;0;0;1;1
+93170;20932;1;175;80.0;110;60;1;1;0;0;1;0
+93172;14710;1;157;58.0;120;80;1;1;0;0;1;0
+93174;21235;1;155;80.0;120;80;2;1;0;0;1;1
+93175;20358;1;167;74.0;120;80;1;1;0;0;0;1
+93177;17624;1;167;70.0;110;70;2;2;0;0;1;0
+93178;19055;2;176;79.0;145;80;2;1;0;0;1;1
+93179;15189;2;171;81.0;170;100;3;1;0;0;0;1
+93180;22534;1;167;84.0;160;90;3;3;0;0;1;1
+93182;15925;1;178;65.0;120;80;1;1;0;0;0;1
+93183;19562;1;152;65.0;130;110;1;1;0;0;1;1
+93184;19688;1;155;62.0;110;70;1;1;0;0;1;0
+93187;17532;1;162;60.0;120;80;1;1;0;0;1;1
+93189;20403;2;158;68.0;120;80;1;1;0;0;1;1
+93192;16135;2;159;56.0;110;70;1;1;0;0;1;0
+93193;22651;2;169;65.0;120;80;1;1;0;0;1;0
+93194;23342;1;173;90.0;120;60;1;1;0;0;1;1
+93195;18793;2;174;103.0;170;110;3;1;0;0;1;1
+93198;20336;1;170;80.0;140;90;1;1;0;0;1;1
+93200;18032;2;170;79.0;150;80;1;3;0;0;1;1
+93203;16635;1;164;57.0;110;60;1;1;0;0;1;0
+93206;18891;1;148;57.0;120;80;2;2;0;0;1;1
+93210;17625;1;162;93.0;130;90;1;1;0;0;1;1
+93212;21369;1;165;57.0;115;70;1;1;0;0;1;0
+93213;16783;1;166;68.0;110;70;2;2;0;0;0;0
+93214;17546;1;171;69.0;120;70;1;1;0;0;1;0
+93215;21212;1;164;88.0;120;80;2;1;0;0;1;0
+93216;18262;2;125;60.0;120;80;1;1;0;0;0;1
+93218;15411;2;169;80.0;110;70;1;1;0;0;1;0
+93219;22651;1;171;81.0;110;80;1;2;0;0;1;1
+93221;17449;2;180;102.0;170;1000;1;1;1;0;1;1
+93222;19053;1;165;63.0;120;70;1;1;0;0;1;0
+93223;18467;1;99;60.0;90;60;1;1;0;0;1;0
+93224;23612;2;176;99.0;120;0;1;3;0;0;1;1
+93226;18994;1;160;77.0;120;80;1;1;0;0;0;0
+93227;19258;1;153;87.0;140;90;3;3;0;0;1;1
+93228;21651;1;169;70.0;140;90;3;1;0;0;1;1
+93229;14583;2;168;59.0;120;80;1;1;0;0;1;0
+93230;15897;1;164;84.0;120;70;1;1;0;0;1;1
+93232;22858;1;164;90.0;120;80;1;1;0;0;1;0
+93235;17473;2;179;116.0;130;80;1;1;1;0;0;0
+93236;20483;1;169;66.0;160;90;1;1;0;0;1;1
+93238;18356;1;167;73.0;120;80;1;1;0;0;1;0
+93239;18802;2;171;88.0;130;80;2;1;0;0;1;1
+93240;18985;2;182;95.0;150;90;1;1;0;0;1;1
+93242;19848;1;155;55.0;120;80;1;1;0;0;1;0
+93243;19038;2;168;69.0;120;90;2;1;1;0;1;1
+93244;23396;1;156;65.0;120;80;1;1;0;0;1;1
+93245;17637;1;162;75.0;120;80;1;1;0;0;1;0
+93247;22622;2;170;60.0;130;70;1;1;0;0;0;1
+93248;14651;2;170;67.0;110;70;1;1;0;0;1;0
+93249;17269;1;164;78.0;120;80;3;3;0;0;1;0
+93250;23254;2;157;59.0;120;70;1;1;1;0;1;0
+93254;19032;1;162;60.0;120;80;1;2;0;0;1;1
+93255;23328;2;181;120.0;120;80;1;1;0;0;1;1
+93256;18995;1;156;72.0;120;80;1;1;0;0;1;0
+93257;15878;1;156;85.0;160;90;1;1;0;0;1;1
+93258;16565;1;165;76.0;120;80;1;1;0;0;1;1
+93259;20304;1;160;67.0;110;70;1;1;0;0;1;0
+93260;14878;1;158;58.0;110;70;1;1;0;0;0;0
+93262;14721;1;155;45.0;100;70;2;1;0;0;1;1
+93264;19783;1;144;75.0;120;80;1;2;0;0;0;1
+93265;22687;1;160;65.0;120;80;1;1;0;0;0;0
+93266;18836;1;174;80.0;140;90;1;1;0;0;0;1
+93270;14827;1;159;78.0;120;80;1;1;0;0;0;0
+93271;23385;2;175;64.0;140;90;1;1;0;0;1;1
+93272;18918;1;152;62.0;180;120;1;1;0;0;1;1
+93274;21880;1;161;76.0;120;80;3;1;0;0;1;1
+93276;20455;1;158;65.0;120;80;1;1;0;0;1;1
+93277;20475;1;158;63.0;130;90;3;3;0;0;1;0
+93279;21249;2;176;81.0;120;80;1;1;0;0;1;1
+93281;18732;1;163;76.0;120;80;1;1;0;0;0;0
+93282;21642;1;169;65.0;120;80;1;1;0;0;1;0
+93283;21266;1;158;60.0;120;60;1;1;1;0;1;0
+93284;22729;1;156;78.0;13;80;1;1;0;0;1;1
+93286;21422;2;166;74.0;120;80;1;1;0;0;1;1
+93287;20957;2;165;73.0;110;70;1;1;0;0;1;0
+93289;23464;1;160;70.0;140;90;2;1;0;0;1;1
+93290;16648;1;144;78.0;130;90;3;3;0;0;1;1
+93291;20422;1;146;54.0;120;80;1;1;0;0;1;0
+93293;22693;2;170;86.0;130;90;1;1;1;0;1;0
+93294;19546;1;163;101.0;140;80;3;1;0;0;1;1
+93295;21263;1;170;62.0;110;70;1;1;0;0;1;0
+93296;22767;1;162;75.0;120;80;1;1;0;0;1;0
+93297;14512;1;160;60.0;110;70;1;2;0;1;1;1
+93298;14660;1;165;75.0;110;70;1;1;0;0;1;0
+93299;19599;1;168;70.0;120;80;1;1;0;0;0;1
+93300;16023;2;169;71.0;120;80;1;1;1;0;1;0
+93301;23318;1;158;74.0;110;70;3;1;0;0;1;1
+93302;23158;2;170;89.0;140;90;3;1;0;0;0;1
+93303;23372;2;174;91.0;120;80;1;1;0;0;1;1
+93304;19919;1;168;68.0;120;80;3;3;0;0;1;0
+93305;21643;1;170;70.0;130;80;1;1;0;0;1;1
+93307;21801;1;175;65.0;120;70;1;1;0;0;1;0
+93308;22744;1;156;59.0;115;70;3;1;0;0;0;1
+93309;22780;2;170;73.0;160;120;2;1;0;0;1;0
+93311;19803;1;165;61.0;140;100;1;1;0;0;1;1
+93312;15164;1;160;60.0;110;80;1;1;0;0;1;0
+93314;17578;1;175;82.0;120;80;1;1;0;0;0;0
+93315;19697;1;162;61.0;120;80;1;1;0;0;1;1
+93316;21947;2;162;75.0;130;90;1;1;0;0;1;1
+93317;21720;1;160;94.0;120;80;3;1;0;0;1;1
+93318;17384;1;152;62.0;100;60;2;1;0;0;1;0
+93319;17417;2;179;82.0;140;90;2;1;0;0;1;1
+93320;15486;2;162;64.0;120;80;1;1;1;1;1;0
+93321;16060;2;172;72.0;120;80;1;1;0;0;1;1
+93322;16735;1;154;73.0;120;90;1;1;0;0;0;0
+93323;18290;2;156;64.0;120;70;2;1;0;0;0;0
+93324;22699;1;166;55.0;130;80;3;3;0;0;1;0
+93325;23541;1;163;80.0;130;70;1;1;0;0;0;1
+93326;16751;2;168;52.0;120;80;1;1;1;0;1;0
+93327;20236;1;158;62.0;120;80;1;1;0;0;1;0
+93329;17523;2;172;71.0;120;80;3;1;1;1;1;1
+93331;18295;2;167;64.0;150;90;3;3;0;0;1;1
+93332;18458;1;163;67.0;100;70;2;2;0;0;1;0
+93334;16057;2;172;124.0;140;80;1;1;1;0;0;1
+93335;20442;1;156;62.0;120;80;1;1;0;0;0;1
+93336;19731;1;157;66.0;120;80;1;1;0;0;1;0
+93337;21813;2;172;81.0;140;90;1;1;0;0;1;0
+93341;14811;1;158;62.0;120;80;1;1;0;0;0;1
+93342;21325;1;170;111.0;170;100;3;1;0;0;1;1
+93344;16768;1;155;96.0;110;60;2;1;0;0;1;0
+93345;18268;1;160;62.0;120;80;1;1;0;0;1;1
+93346;18442;1;169;71.0;130;80;1;1;0;0;0;0
+93347;18769;1;162;56.0;120;80;1;1;0;0;1;1
+93348;19788;1;160;56.0;140;80;1;1;0;0;1;1
+93349;19541;1;154;87.0;130;70;2;1;0;0;1;0
+93350;19858;1;163;120.0;180;100;1;1;0;0;1;1
+93351;18222;2;166;75.0;120;80;1;1;1;1;0;1
+93352;19517;1;164;105.0;150;80;2;1;1;0;1;1
+93354;16526;1;167;97.0;120;80;1;1;0;0;0;0
+93356;14679;2;167;64.0;120;80;1;1;0;0;1;1
+93357;17651;1;156;65.0;130;85;1;1;0;0;1;1
+93359;21176;1;156;65.0;140;90;1;1;0;0;1;0
+93361;15361;2;163;61.0;110;80;1;1;0;0;1;0
+93364;19693;2;165;69.0;140;110;1;1;0;0;1;1
+93365;20674;1;166;63.0;130;80;2;2;0;0;1;1
+93367;23379;2;164;75.0;120;80;1;1;0;0;1;0
+93368;20527;1;174;62.0;130;80;1;1;0;0;1;0
+93369;15555;1;162;70.0;100;60;1;1;0;0;1;0
+93370;19736;2;175;85.0;120;80;1;1;1;0;0;0
+93371;16986;1;159;72.0;120;80;1;1;0;0;0;0
+93372;23113;2;166;75.0;130;90;3;1;0;0;1;1
+93373;20624;2;172;71.0;130;80;1;1;0;0;1;0
+93374;15897;1;164;66.0;130;90;1;1;0;0;1;1
+93375;20523;2;172;76.0;120;80;1;1;1;0;1;0
+93378;17976;1;150;80.0;120;80;1;1;0;0;0;0
+93380;20154;2;160;69.0;140;100;2;1;1;0;1;1
+93381;18242;1;165;150.0;175;100;3;3;0;0;1;1
+93382;18428;2;180;84.0;100;70;1;1;0;0;1;0
+93383;18983;1;166;92.0;110;80;1;1;0;0;1;0
+93384;21871;1;152;70.0;120;80;1;1;0;0;0;0
+93385;18084;1;152;52.0;120;80;1;1;1;1;1;0
+93386;21640;1;163;75.0;140;90;1;1;0;0;1;0
+93387;16099;1;175;68.0;150;90;1;1;0;0;1;1
+93389;21115;2;167;79.0;120;80;1;1;0;0;1;0
+93392;20252;1;164;76.0;130;80;3;1;0;0;1;1
+93393;19730;2;185;80.0;120;80;1;1;0;0;1;1
+93394;22827;1;165;65.0;120;80;3;3;0;0;1;1
+93395;21505;1;171;68.0;120;80;1;1;0;0;1;1
+93396;18033;1;159;89.0;130;90;3;3;0;0;1;0
+93397;21296;1;158;82.0;130;80;1;1;0;0;1;1
+93398;20588;2;182;87.0;118;80;1;1;0;0;1;0
+93400;23324;1;164;73.0;130;80;1;1;0;0;1;1
+93401;17301;2;170;86.0;120;80;2;2;0;1;0;1
+93402;19005;1;153;52.0;120;80;2;1;1;0;1;0
+93403;22116;2;180;86.0;130;100;1;1;0;0;1;1
+93404;22608;1;156;66.0;120;80;1;1;0;0;1;0
+93405;21352;1;165;62.0;120;80;1;1;0;0;1;0
+93406;18172;2;171;73.0;140;90;1;1;0;0;1;0
+93407;18398;1;163;83.0;120;80;1;1;0;0;1;1
+93409;14473;1;158;89.0;190;1000;1;1;0;0;0;1
+93410;18982;1;166;94.0;130;90;3;1;0;0;1;1
+93411;15418;1;159;60.0;120;80;2;1;0;0;1;0
+93412;21214;1;165;63.0;120;80;1;1;0;0;1;0
+93413;21359;1;154;52.0;120;70;2;1;0;0;0;0
+93414;18028;2;169;72.0;120;80;1;1;1;1;1;0
+93415;18273;1;160;75.0;120;80;1;1;0;0;1;0
+93417;14520;1;156;60.0;110;70;1;1;0;0;1;0
+93419;20389;1;157;90.0;130;90;2;1;0;1;1;1
+93420;17392;2;165;68.0;120;80;1;1;0;0;1;0
+93421;16653;2;177;79.0;130;80;1;1;0;0;1;1
+93423;22181;1;158;48.0;120;80;1;1;0;0;1;0
+93424;19008;1;172;80.0;120;60;1;1;0;0;1;1
+93425;17623;2;180;77.0;120;80;1;1;1;0;1;0
+93426;21187;2;161;85.0;130;80;2;2;0;0;1;1
+93427;19698;1;170;78.0;120;80;1;1;0;0;1;0
+93428;15110;1;168;69.0;110;80;1;1;0;0;1;0
+93429;21665;2;166;82.0;120;80;3;3;0;0;1;1
+93430;20476;1;169;76.0;100;69;1;1;0;0;1;0
+93431;19054;2;169;83.0;120;80;1;1;0;0;1;0
+93432;20255;1;165;60.0;120;80;1;1;0;0;1;0
+93433;22684;2;150;43.0;110;70;2;1;0;0;1;0
+93434;19078;1;169;57.0;90;60;1;1;0;0;1;0
+93435;18898;1;157;72.0;110;70;1;1;0;0;1;0
+93436;18219;2;171;77.0;120;90;1;1;0;0;1;0
+93437;15399;2;177;86.0;140;90;1;1;0;0;1;1
+93438;21747;2;172;97.0;120;80;1;1;1;0;1;1
+93439;23453;1;165;65.0;120;80;1;1;0;0;1;0
+93440;19206;1;160;50.0;130;70;1;1;0;0;0;0
+93441;19735;2;165;65.0;120;60;1;3;0;0;0;1
+93442;18275;1;160;78.0;100;60;1;1;0;0;1;0
+93443;16620;1;167;89.0;150;100;1;1;0;0;1;1
+93444;22382;2;172;68.0;150;100;1;1;1;0;1;1
+93447;21030;1;169;74.0;110;70;1;3;0;0;0;0
+93448;19596;2;174;65.0;120;80;1;1;0;0;1;1
+93449;22675;1;156;87.0;120;80;1;1;0;0;1;0
+93452;19588;1;162;95.0;140;90;2;2;0;0;1;0
+93456;21947;1;169;65.0;120;80;1;1;0;0;1;1
+93458;14597;2;160;65.0;120;80;1;1;0;0;0;1
+93460;20682;1;168;75.0;150;80;2;3;0;0;1;1
+93461;20591;2;162;70.0;110;70;1;1;0;0;1;0
+93462;20658;1;163;68.0;120;80;1;1;0;0;0;0
+93464;20389;2;177;82.0;120;80;1;1;0;0;0;1
+93465;19125;2;173;84.0;130;80;1;1;1;0;1;1
+93466;15415;1;168;83.0;120;80;1;1;0;0;1;0
+93468;18338;1;164;57.0;100;70;1;1;0;0;1;1
+93469;23280;1;161;64.0;130;80;1;1;0;0;1;1
+93470;17324;1;166;97.0;140;90;1;1;0;0;1;1
+93471;18236;2;168;67.0;120;60;2;1;1;0;1;0
+93472;20646;1;169;79.0;150;90;3;1;0;0;1;1
+93475;19153;1;165;108.0;130;80;1;1;0;0;1;0
+93476;17490;1;154;60.0;140;90;1;1;0;0;0;1
+93478;17455;1;162;63.0;110;70;1;1;0;0;1;0
+93479;16682;1;170;65.0;100;60;3;3;0;0;1;0
+93480;16675;1;154;96.0;120;80;2;2;0;0;1;1
+93481;22670;2;171;88.0;140;90;1;1;0;0;1;1
+93483;18976;1;153;74.0;140;90;1;1;0;0;1;1
+93485;18384;2;179;62.0;120;80;1;1;1;1;1;0
+93487;20309;1;145;64.0;135;80;3;2;0;0;1;1
+93489;23499;2;163;65.0;120;80;1;1;0;0;1;0
+93490;20023;2;169;68.0;120;80;1;1;0;0;1;0
+93491;21927;2;155;65.0;130;90;2;1;0;0;0;0
+93495;16089;1;173;82.0;120;70;1;1;0;0;1;0
+93497;19144;1;164;64.0;120;80;1;1;0;0;0;1
+93498;20635;1;165;74.0;110;70;1;1;0;0;1;1
+93500;20412;1;164;84.0;140;90;3;1;0;1;1;0
+93503;23495;2;163;62.0;140;80;1;1;0;0;1;0
+93504;21959;2;171;70.0;120;80;1;1;0;0;1;0
+93505;20420;2;165;72.0;120;80;1;1;0;0;1;0
+93508;20251;1;155;96.0;120;80;2;1;0;0;1;0
+93509;20616;1;151;56.0;130;90;1;1;0;0;1;1
+93510;18240;1;165;67.0;120;80;1;1;0;0;1;0
+93512;21996;2;168;60.0;120;80;1;1;0;0;0;1
+93513;16667;1;154;50.0;100;70;1;1;0;0;1;0
+93515;18253;1;158;82.0;120;80;1;1;0;0;1;0
+93516;18920;1;156;70.0;180;90;2;3;0;0;1;1
+93517;18161;2;172;59.0;130;80;3;1;1;0;1;1
+93518;21608;2;176;60.0;130;80;1;1;0;0;1;0
+93519;16887;1;165;70.0;120;80;1;1;0;0;1;1
+93520;22048;1;164;50.0;120;70;1;1;0;0;1;0
+93521;21378;2;153;56.0;120;90;1;1;0;0;1;1
+93523;17486;1;165;88.0;145;95;2;1;0;0;1;1
+93524;21193;2;164;78.0;180;90;1;1;0;0;1;0
+93525;21066;1;160;68.0;140;80;1;1;0;0;1;1
+93526;22019;2;170;65.0;120;80;1;1;1;0;1;0
+93528;22789;2;173;73.0;120;80;1;1;0;0;1;0
+93529;21974;1;161;88.0;130;90;2;2;0;0;0;0
+93530;20519;1;160;78.0;140;90;1;2;0;0;1;0
+93532;19679;1;158;52.0;120;80;1;1;0;0;0;1
+93535;22429;1;155;62.0;130;90;1;1;0;0;1;0
+93537;20548;1;159;83.0;160;100;3;1;0;1;1;0
+93538;20365;1;150;67.0;140;90;1;1;0;0;1;0
+93539;19126;1;169;68.0;120;80;1;1;0;0;1;1
+93541;23604;1;165;66.0;130;90;1;1;0;0;1;0
+93542;18242;2;168;76.0;120;80;1;1;0;0;0;0
+93543;17839;1;168;65.0;110;80;1;1;0;0;1;0
+93544;20419;1;151;77.0;140;90;1;1;0;1;1;1
+93545;20559;1;165;65.0;120;79;1;1;0;0;0;1
+93546;22585;2;153;111.0;120;80;1;1;0;0;1;1
+93547;17443;1;165;87.0;150;90;1;1;0;0;1;1
+93548;21238;2;170;88.0;140;90;3;3;0;0;1;1
+93551;18219;2;170;85.0;120;80;1;1;0;0;1;1
+93552;21744;1;169;72.0;110;70;1;1;0;0;1;0
+93554;21203;1;163;85.0;130;90;1;1;0;0;1;0
+93555;18317;2;175;85.0;160;90;1;1;1;0;1;1
+93556;19726;1;164;85.0;120;80;1;1;0;0;0;1
+93557;21221;1;163;88.0;90;60;1;1;0;0;0;1
+93558;20526;1;170;70.0;120;80;3;3;0;0;1;0
+93559;18927;1;153;84.0;130;90;3;1;0;0;1;1
+93560;21360;1;167;102.0;150;110;3;3;0;0;1;0
+93561;21933;1;154;58.0;130;78;2;2;0;0;0;0
+93562;22002;1;156;63.0;160;110;3;1;1;0;1;1
+93565;16891;1;165;102.0;150;110;3;3;0;0;1;1
+93566;16066;1;161;72.0;140;90;1;1;0;0;1;1
+93567;23160;1;158;75.0;115;75;1;1;0;0;1;1
+93568;15380;1;156;81.0;120;80;1;2;0;0;1;0
+93569;20523;1;168;70.0;120;80;3;3;0;0;0;0
+93570;15574;1;164;78.0;150;80;1;1;0;0;0;1
+93572;19719;1;160;60.0;120;70;1;1;0;0;0;0
+93573;22401;2;163;87.0;130;90;1;1;0;0;1;0
+93574;20940;2;181;92.0;110;70;1;2;0;0;1;1
+93576;20356;1;167;68.0;130;90;3;1;0;0;1;1
+93577;23249;1;150;77.0;140;90;1;1;0;0;1;0
+93579;20439;1;155;49.0;120;80;1;1;0;0;1;1
+93580;14775;2;164;79.0;120;80;1;1;0;0;1;0
+93581;17339;1;168;67.0;110;70;1;1;0;0;0;0
+93582;21867;2;170;100.0;130;80;1;1;0;0;0;1
+93583;20317;2;171;80.0;120;80;1;1;0;0;0;0
+93584;20999;2;170;62.0;100;80;1;1;1;0;1;1
+93585;18848;1;164;61.0;120;90;1;1;0;0;0;0
+93588;17663;2;174;88.0;120;70;1;1;0;0;1;0
+93590;22540;1;159;76.0;140;88;1;1;0;0;1;1
+93591;21894;1;165;60.0;120;80;1;1;0;0;0;1
+93592;20451;1;170;94.0;120;80;3;2;0;0;1;1
+93593;19232;1;160;60.0;120;80;1;1;0;0;1;1
+93594;20619;2;168;50.0;120;80;1;1;0;0;1;0
+93595;18277;1;165;60.0;120;80;1;1;0;0;1;0
+93596;19498;2;165;65.0;120;90;1;1;0;0;0;1
+93597;19540;1;167;105.0;160;100;1;1;0;0;1;0
+93599;21218;1;163;63.0;150;80;2;1;0;0;1;1
+93600;20461;2;165;65.0;120;80;3;3;0;0;0;0
+93602;15491;1;157;91.0;120;80;1;1;0;0;1;0
+93606;18167;1;160;82.0;120;80;1;1;0;0;0;0
+93607;16171;1;161;76.0;150;90;3;1;0;0;1;1
+93608;20493;1;169;68.0;120;80;1;1;0;0;1;1
+93611;22733;2;170;75.0;120;80;1;1;0;0;1;1
+93612;21881;1;160;66.0;120;80;1;1;0;0;1;0
+93613;19595;1;163;63.0;110;70;1;1;0;0;1;1
+93615;22897;1;153;49.0;110;70;1;1;0;0;1;0
+93616;20484;1;160;91.0;130;80;3;1;0;0;1;1
+93617;21424;1;145;64.0;130;80;2;2;0;0;1;0
+93619;21741;2;174;81.0;150;100;1;2;0;0;0;0
+93620;19886;2;170;86.0;130;80;1;1;0;0;1;1
+93621;21350;2;165;65.0;120;80;2;1;0;0;1;1
+93622;23252;2;162;62.0;120;80;3;1;0;0;1;1
+93623;18120;2;167;50.0;100;60;2;1;1;0;1;1
+93624;18021;1;165;69.0;120;60;1;1;0;0;1;0
+93625;20653;1;153;81.0;140;80;3;2;0;0;1;1
+93627;18131;2;171;80.0;120;70;3;3;0;0;1;0
+93628;15433;1;169;57.0;110;70;1;1;0;0;1;0
+93631;22569;1;160;60.0;160;70;1;1;0;0;1;1
+93633;17980;2;161;78.0;120;70;2;1;0;0;1;1
+93634;19836;1;168;78.0;120;80;1;1;0;0;0;1
+93635;20583;2;168;76.0;120;70;2;1;0;0;1;0
+93636;18002;1;160;64.0;100;70;1;1;0;0;1;0
+93637;21040;1;156;72.0;120;80;1;1;0;0;0;1
+93638;21778;1;163;62.0;130;80;1;1;0;0;1;0
+93639;15048;1;155;59.0;110;70;1;1;0;0;1;0
+93641;19010;1;162;60.0;120;80;1;1;0;0;1;0
+93642;20447;1;158;84.0;140;90;1;1;0;0;1;1
+93646;19690;1;162;68.0;125;80;2;1;0;0;1;1
+93648;21740;1;165;65.0;120;80;1;1;0;0;1;1
+93650;17706;1;160;58.0;120;80;1;1;0;0;1;1
+93651;21224;2;162;72.0;110;70;1;1;0;0;1;1
+93652;19457;1;165;65.0;120;79;1;1;0;0;0;0
+93653;14823;1;174;54.0;120;80;2;2;0;0;1;0
+93654;21160;2;163;52.0;130;80;2;1;0;0;1;0
+93655;18028;1;164;70.0;120;80;1;1;0;0;0;0
+93656;22481;1;166;98.0;130;80;3;2;0;0;1;1
+93657;18380;1;152;49.0;120;80;1;1;0;0;1;0
+93658;18937;1;160;52.0;120;80;1;1;0;0;1;1
+93659;21778;1;160;58.0;120;80;1;1;0;0;1;0
+93660;19012;1;168;83.0;120;70;1;1;0;0;1;0
+93661;18392;2;180;90.0;160;100;1;1;0;0;0;1
+93662;17340;2;171;95.0;160;90;2;1;0;0;0;1
+93663;23321;1;160;95.0;120;60;1;1;0;0;1;1
+93664;19888;1;155;61.0;130;80;2;1;0;0;1;1
+93665;19148;1;155;48.0;120;90;3;1;0;0;1;1
+93666;15115;2;180;120.0;140;100;1;1;0;0;1;1
+93669;16825;1;165;63.0;120;70;1;1;0;0;1;0
+93670;18310;2;172;75.0;120;80;1;1;0;0;1;0
+93671;19811;1;160;65.0;120;80;2;2;0;0;1;1
+93672;15243;1;174;95.0;110;70;2;1;1;0;1;1
+93673;20475;1;161;96.0;120;80;1;1;0;0;1;0
+93676;18147;1;186;56.0;120;80;1;1;0;0;1;1
+93677;20409;1;156;66.0;140;80;3;1;0;0;1;1
+93678;22032;1;165;55.0;120;80;2;1;0;0;1;0
+93680;19580;1;174;76.0;110;70;1;1;0;0;1;0
+93681;16829;1;160;67.0;130;90;1;1;1;0;0;0
+93682;16171;2;164;63.0;110;70;3;3;0;0;1;0
+93683;16057;2;173;85.5;110;80;2;2;1;1;1;1
+93684;22182;1;168;73.0;120;80;3;3;0;0;1;0
+93685;18186;2;168;72.0;120;80;1;2;0;0;0;1
+93688;18197;2;168;68.0;120;80;1;1;0;0;1;0
+93690;23376;1;165;84.0;120;80;3;3;0;0;1;1
+93691;19066;2;169;71.0;120;80;1;1;0;0;1;0
+93692;21871;1;160;73.0;140;90;1;1;0;0;1;1
+93694;18348;1;158;78.0;180;1000;1;1;0;0;1;1
+93696;19048;2;177;107.0;145;90;3;1;0;0;0;0
+93697;19114;1;147;38.0;100;70;3;3;0;0;1;0
+93700;21183;2;172;89.0;160;100;1;1;0;0;1;0
+93703;19575;1;164;63.0;150;90;1;1;0;0;1;1
+93706;15793;1;167;74.0;110;90;1;1;0;0;1;0
+93707;18411;1;168;70.0;120;80;3;3;0;0;1;1
+93709;22711;2;164;54.0;130;80;1;1;0;0;1;0
+93710;19685;1;155;60.0;120;80;1;1;0;0;1;0
+93712;20409;2;179;81.0;120;80;1;1;0;0;1;1
+93713;15541;2;178;80.0;120;80;1;1;1;0;1;1
+93714;15165;2;170;75.0;120;70;1;1;1;1;1;0
+93715;18850;1;168;60.0;120;80;1;1;0;0;1;0
+93716;19795;1;160;66.0;150;90;2;1;0;0;1;1
+93717;14602;1;163;63.0;120;80;1;2;0;0;0;0
+93719;15097;2;167;64.0;110;70;1;1;0;0;1;1
+93720;15458;1;161;65.0;120;80;1;1;0;0;1;0
+93721;20214;2;165;90.0;130;80;1;1;1;0;0;0
+93724;16020;2;173;90.0;120;80;2;2;1;0;1;1
+93725;17460;1;166;58.0;110;60;1;1;0;0;0;1
+93727;16187;2;172;88.0;120;80;2;2;1;0;1;1
+93730;19456;1;156;66.0;90;60;2;1;0;0;0;1
+93731;19741;2;168;60.0;130;80;1;1;0;0;1;0
+93732;14714;2;165;61.0;120;80;1;1;0;0;1;0
+93734;20358;1;159;69.0;140;80;1;2;0;0;1;0
+93735;18100;2;166;62.0;140;90;1;1;0;0;1;1
+93737;19757;2;178;89.0;130;80;3;3;0;0;1;1
+93738;21912;1;165;64.0;120;80;1;1;0;0;1;0
+93739;21092;1;165;63.0;120;70;1;1;0;0;1;1
+93740;23564;1;152;67.0;140;90;1;1;0;0;1;1
+93743;21281;1;164;82.0;172;77;3;1;0;0;1;1
+93745;19645;2;178;72.0;110;70;1;1;0;0;1;0
+93746;14367;1;148;65.0;110;70;1;1;0;0;1;0
+93748;18849;1;146;64.0;110;90;1;1;0;0;0;0
+93749;17939;1;177;67.0;110;70;1;1;0;0;1;0
+93750;22627;1;158;77.0;110;70;1;1;0;0;1;0
+93751;20493;1;171;69.0;120;80;1;1;0;0;1;0
+93753;14773;1;150;42.0;80;50;2;2;0;0;0;0
+93755;17443;1;165;64.0;110;70;1;1;1;1;1;0
+93756;17345;2;178;135.0;120;80;1;1;0;0;1;1
+93757;21175;1;164;97.0;140;80;3;3;0;0;1;1
+93761;15185;2;170;60.0;120;80;1;1;0;0;0;0
+93762;21893;2;164;76.0;120;80;1;1;0;0;1;0
+93764;19082;1;158;80.0;120;80;1;1;0;0;0;0
+93766;19851;1;150;53.0;120;80;2;1;0;0;1;0
+93767;17310;2;170;89.0;130;80;1;1;0;0;1;1
+93769;15424;1;164;55.0;120;80;1;2;1;1;0;0
+93770;21234;1;159;51.0;110;70;1;1;1;0;1;0
+93771;19515;1;161;78.0;150;90;2;1;0;0;1;1
+93772;21112;2;180;78.0;130;80;1;1;0;0;1;0
+93776;19575;1;160;71.0;150;90;1;1;0;0;1;1
+93777;19014;1;158;56.0;120;80;1;1;0;0;0;0
+93778;21982;1;166;130.0;140;100;3;1;0;0;0;1
+93780;21261;1;149;75.0;110;70;1;1;0;0;1;0
+93784;22733;1;148;83.0;160;80;3;3;0;0;1;1
+93785;23116;1;160;64.0;110;80;1;1;0;0;1;0
+93786;18170;2;165;75.0;120;80;1;1;0;0;0;0
+93787;22006;1;162;62.0;120;80;1;1;0;0;1;1
+93788;20305;1;165;74.0;130;80;1;1;0;0;1;1
+93789;22682;2;165;68.0;130;90;1;1;0;0;1;1
+93790;21331;1;150;81.0;110;60;1;1;0;0;1;0
+93791;14612;1;162;62.0;140;80;1;1;0;0;0;1
+93792;14344;1;173;78.0;120;80;1;1;0;0;1;1
+93793;22668;1;160;85.0;150;90;3;1;0;0;1;1
+93794;21147;1;165;65.0;120;80;1;1;0;0;0;0
+93796;19682;2;170;71.0;140;80;1;1;1;0;1;1
+93798;16743;2;182;69.0;150;90;1;1;0;1;1;1
+93799;16015;1;164;82.0;120;80;1;1;0;0;0;0
+93800;20551;1;153;49.0;150;80;3;1;0;0;0;0
+93805;21041;1;157;57.0;140;90;3;3;0;0;1;1
+93806;18208;1;148;71.0;90;70;1;1;0;0;0;0
+93808;21739;1;155;75.0;120;80;1;1;0;0;1;1
+93809;16829;2;177;81.0;110;70;1;3;1;0;1;0
+93810;21204;2;170;85.0;120;80;1;2;0;1;0;0
+93811;22383;1;154;55.0;120;80;1;1;0;0;1;1
+93812;22583;1;158;57.0;100;60;2;1;0;0;1;0
+93813;21876;2;169;80.0;130;90;2;1;0;0;0;1
+93814;19855;1;157;60.0;140;80;2;2;0;0;1;1
+93815;21361;1;170;73.0;140;70;3;3;0;0;1;0
+93816;21217;2;172;57.0;120;80;2;1;0;0;1;1
+93817;19092;1;156;103.0;110;90;3;1;0;0;0;1
+93819;20335;2;172;80.0;130;90;1;1;0;0;1;1
+93820;20410;2;169;78.0;140;90;1;1;0;0;0;1
+93821;18214;2;171;78.0;130;80;1;3;0;0;1;0
+93823;23197;1;148;65.0;130;80;2;1;0;0;0;1
+93824;21222;1;166;105.0;120;80;1;1;0;0;1;1
+93825;21268;2;174;70.0;160;80;1;1;1;0;1;1
+93826;20990;1;157;57.0;110;70;3;3;0;0;1;1
+93827;19222;1;156;70.0;115;78;1;1;0;0;1;0
+93828;20904;2;165;81.0;130;90;1;1;0;0;1;1
+93829;22811;1;159;60.0;120;80;3;3;0;0;1;1
+93830;15243;1;158;54.0;110;70;1;1;0;0;1;0
+93832;22471;1;162;62.0;130;70;1;1;0;0;1;0
+93834;19541;1;155;76.0;120;80;1;1;0;0;1;1
+93835;22625;2;170;70.0;100;70;1;1;0;0;1;0
+93836;15196;2;169;70.0;110;70;1;1;0;0;1;0
+93839;22864;1;170;69.0;110;70;1;1;0;0;1;0
+93840;14781;2;150;69.0;130;80;1;1;0;0;1;0
+93841;19042;2;173;66.0;110;70;1;1;0;1;1;0
+93843;18307;1;154;66.0;100;70;1;1;0;0;1;0
+93844;21024;2;158;60.0;130;90;2;2;0;0;1;0
+93845;23504;2;158;68.0;140;90;2;1;0;0;1;1
+93846;22842;1;165;89.0;150;100;1;1;0;0;1;1
+93847;19004;1;156;64.0;140;110;3;1;0;0;1;1
+93849;19051;1;150;69.0;110;70;1;1;0;0;1;0
+93850;20374;1;153;64.0;120;70;1;1;0;0;1;0
+93851;18942;1;162;85.0;140;100;2;1;0;0;1;1
+93852;22110;2;169;69.0;120;80;1;1;0;0;0;1
+93853;23377;1;164;58.0;120;70;1;3;0;0;1;1
+93854;16155;1;164;71.0;110;70;1;1;0;0;1;0
+93855;14375;1;165;65.0;80;120;1;1;0;0;1;0
+93858;21292;1;164;72.0;120;80;1;1;0;0;1;0
+93859;20400;2;172;104.0;160;80;1;1;0;0;1;0
+93860;23438;2;175;70.0;150;90;1;1;1;1;0;1
+93861;15942;1;172;70.0;140;90;1;1;0;0;1;1
+93863;21216;2;176;91.0;140;80;2;1;0;0;1;1
+93864;23388;2;170;76.0;140;80;1;3;0;0;1;0
+93865;18034;1;166;74.0;100;70;3;3;0;0;1;0
+93867;22114;2;172;78.0;150;80;1;1;1;0;1;1
+93868;18223;2;170;77.0;120;80;1;1;0;0;1;0
+93871;23264;1;174;65.0;120;80;1;1;0;0;1;0
+93872;22744;2;170;75.0;140;90;1;2;0;0;1;1
+93873;18922;1;157;51.0;120;80;1;1;0;0;1;0
+93874;19582;2;180;92.0;120;80;3;1;0;0;1;1
+93876;23521;2;168;82.0;120;80;2;2;0;0;1;0
+93877;19026;1;164;89.0;150;100;1;2;0;0;1;1
+93879;20523;1;168;70.0;120;70;1;1;0;0;1;0
+93880;21867;2;163;73.0;140;79;1;1;1;0;1;0
+93882;20962;1;165;85.0;130;80;1;1;0;0;0;0
+93883;16029;1;173;73.0;120;80;1;1;0;0;1;0
+93884;21932;1;151;72.0;130;80;2;2;0;0;1;1
+93885;14369;2;165;57.0;110;80;1;1;0;0;1;0
+93887;14500;1;164;57.0;120;70;1;1;0;0;1;0
+93888;22725;1;159;65.0;110;70;1;1;0;0;1;0
+93889;15406;1;156;60.0;110;70;1;1;0;0;1;0
+93890;20958;1;154;61.0;120;80;1;1;1;0;0;0
+93891;20594;1;164;70.0;140;80;3;1;0;0;1;1
+93893;23177;2;165;86.0;170;80;1;3;0;0;0;1
+93895;15217;2;165;90.0;130;80;1;1;1;0;1;1
+93897;23164;1;156;51.0;140;90;2;1;0;0;1;1
+93898;23647;1;162;88.0;120;80;1;1;0;0;0;0
+93899;18940;2;172;85.0;120;80;1;1;1;0;1;0
+93900;21152;1;165;74.0;120;80;1;1;0;0;1;0
+93901;22508;1;172;108.0;150;100;3;1;0;1;0;1
+93903;23113;1;175;63.0;120;80;3;3;0;0;0;1
+93904;23512;1;149;49.0;150;80;1;1;0;0;1;1
+93905;18163;2;166;54.0;110;80;1;2;0;0;1;0
+93907;20385;1;162;61.0;140;90;1;1;0;0;1;1
+93908;21900;1;164;64.0;120;80;1;1;0;0;1;0
+93909;15271;1;165;64.0;120;80;1;1;0;0;1;0
+93913;18989;2;180;89.0;120;80;1;1;0;0;1;1
+93914;21429;2;160;47.0;110;70;1;1;0;0;0;1
+93915;20430;1;162;66.0;120;80;1;1;0;0;1;0
+93916;23266;1;145;85.0;120;80;1;1;0;0;0;1
+93917;19830;2;155;74.0;160;90;2;3;0;0;1;1
+93919;17479;2;180;57.0;120;80;1;1;0;0;0;1
+93920;18982;2;167;94.0;110;60;1;1;0;0;1;1
+93921;23114;1;165;79.0;125;90;1;1;0;0;1;1
+93923;20235;1;160;93.0;140;100;3;3;0;1;1;1
+93924;14540;2;173;77.0;115;75;1;1;0;1;1;0
+93925;23474;1;158;62.0;150;100;1;1;0;0;1;1
+93926;23336;2;170;70.0;120;80;1;1;0;0;1;0
+93927;16763;1;157;60.0;110;80;1;1;0;0;1;0
+93928;14578;1;175;69.0;110;70;1;1;0;0;1;0
+93929;20583;1;165;63.0;120;80;1;1;0;0;1;0
+93930;15921;1;170;66.0;140;90;2;1;0;0;0;1
+93932;17353;1;162;63.0;90;60;1;1;0;0;1;0
+93933;21925;2;171;76.0;120;80;1;1;0;0;1;1
+93934;18892;1;160;69.0;160;80;2;2;0;0;1;1
+93936;14581;1;163;78.0;110;90;2;1;0;1;1;1
+93937;23201;1;154;61.0;150;90;1;1;0;0;1;0
+93938;14729;2;162;68.0;120;80;3;3;0;0;1;0
+93939;20401;1;160;59.0;110;80;1;1;0;0;1;0
+93943;21438;1;170;72.0;120;80;1;1;0;0;1;1
+93944;20700;1;168;65.0;160;80;1;1;0;0;1;1
+93945;21136;1;168;69.0;120;80;1;1;0;0;1;0
+93949;21914;2;180;76.0;120;70;1;1;0;0;0;0
+93951;19719;1;154;49.0;115;70;1;1;0;0;1;0
+93954;18344;1;148;92.0;120;80;1;1;0;0;1;0
+93956;19080;1;158;57.0;135;90;1;1;0;1;1;0
+93959;18371;1;155;62.0;100;70;1;1;0;0;1;0
+93960;14738;2;170;69.0;120;80;1;1;0;0;1;0
+93962;18244;2;167;70.0;130;90;1;1;0;1;1;1
+93963;19923;2;170;107.0;140;90;1;1;0;0;1;1
+93965;22426;1;158;75.0;160;120;3;3;0;0;0;1
+93966;14372;1;175;70.0;120;80;1;1;0;0;0;0
+93967;15100;1;167;62.0;120;80;1;1;0;0;1;0
+93969;20648;2;148;61.0;120;80;1;1;0;0;0;1
+93970;21036;1;162;105.0;140;90;1;1;0;0;1;0
+93971;17241;1;169;83.0;120;80;1;1;0;0;0;0
+93972;19797;1;159;96.0;120;80;1;1;0;0;1;0
+93974;19878;1;172;78.0;120;80;1;1;0;0;1;0
+93975;19630;2;169;67.0;120;80;1;1;0;0;1;0
+93976;22708;1;150;78.0;140;100;1;1;0;0;1;1
+93977;19604;1;157;52.0;110;60;1;1;0;0;1;0
+93978;16035;2;173;82.0;120;80;1;3;0;0;0;0
+93980;20414;1;153;44.0;110;70;1;1;0;0;1;1
+93981;17530;1;159;89.0;150;90;2;2;0;0;1;1
+93983;23204;1;152;80.0;130;90;3;1;0;0;1;1
+93985;17305;2;178;100.0;160;90;1;1;1;0;1;1
+93986;19635;1;168;68.0;120;80;2;2;0;0;0;0
+93987;22703;1;161;93.0;120;80;1;1;0;0;1;0
+93988;21153;2;165;65.0;120;80;1;1;0;0;0;1
+93990;19000;1;158;58.0;120;80;1;1;0;0;0;1
+93991;15461;2;170;71.0;120;80;1;1;1;0;1;0
+93992;23278;1;159;68.0;120;80;3;1;0;0;1;1
+93993;19506;1;167;97.0;140;90;1;1;0;0;1;0
+93994;19531;1;158;65.0;120;79;1;1;0;0;1;1
+93995;17983;2;174;88.0;120;80;3;1;0;0;1;1
+93996;19672;1;153;63.0;120;80;1;1;0;0;1;0
+93997;18962;2;174;79.0;120;80;1;1;0;0;1;0
+94000;16113;2;165;68.0;130;90;1;1;0;0;1;1
+94003;18678;1;167;71.0;140;80;1;1;0;0;1;1
+94004;23344;2;169;69.0;120;80;1;1;0;0;1;0
+94005;21934;1;170;95.0;140;80;1;1;0;0;1;1
+94008;15571;1;171;71.0;120;80;1;1;0;0;1;0
+94010;21867;1;165;77.0;140;90;2;1;1;0;1;1
+94014;17393;2;167;83.0;120;80;1;1;0;0;1;1
+94016;18890;1;158;54.0;130;80;2;2;0;0;1;0
+94017;23458;1;155;84.0;160;100;3;3;0;0;0;0
+94018;22594;2;165;64.0;130;90;1;2;0;0;1;1
+94025;21084;1;167;63.0;120;80;1;1;0;0;1;1
+94027;20368;1;150;65.0;130;80;3;1;0;0;1;1
+94028;19071;2;170;100.0;110;80;1;1;1;1;1;0
+94029;19735;1;156;58.0;120;80;1;1;0;0;1;0
+94030;18838;2;177;76.0;120;70;1;1;0;0;1;1
+94033;18183;1;174;67.0;130;90;1;1;0;0;1;1
+94034;16074;1;179;51.0;160;100;1;1;0;0;0;0
+94035;17478;1;157;65.0;120;80;1;1;0;0;1;1
+94036;21069;2;168;88.0;120;90;3;1;1;1;1;1
+94037;19181;2;165;82.0;120;80;1;3;0;0;0;1
+94039;19826;2;162;62.0;130;80;3;3;0;0;1;1
+94040;15984;2;175;63.0;150;90;1;1;0;0;1;1
+94042;19049;1;178;89.0;120;80;1;1;0;0;1;0
+94043;16761;2;160;66.0;110;80;1;1;0;0;1;0
+94044;18240;2;174;74.0;120;70;1;1;0;0;1;1
+94045;21395;1;174;108.0;160;100;3;3;0;0;1;1
+94046;14545;2;175;75.0;120;90;1;1;0;0;0;0
+94048;16742;1;167;74.0;140;90;3;1;0;0;1;1
+94049;23309;1;154;70.0;120;80;3;3;0;0;0;1
+94050;22603;1;162;65.0;120;80;1;1;0;0;1;0
+94051;18839;1;168;69.0;120;80;1;1;0;0;1;1
+94053;17358;1;164;74.0;120;80;2;2;0;0;1;1
+94056;14637;2;178;75.0;120;80;1;1;1;0;1;0
+94057;18087;1;165;65.0;120;80;1;1;0;0;1;0
+94059;16053;2;164;62.0;120;80;1;1;0;0;0;0
+94060;21154;1;158;55.0;120;80;2;1;0;0;1;1
+94061;21796;1;167;70.0;120;80;1;1;0;0;1;1
+94063;16024;2;172;73.0;120;80;1;1;0;0;1;0
+94064;20237;1;162;75.0;120;80;1;2;0;0;1;1
+94065;20422;1;160;58.0;120;79;1;1;0;0;1;1
+94068;22411;1;161;98.0;100;60;1;1;0;0;0;1
+94070;19052;1;160;58.0;120;80;1;1;0;0;1;0
+94072;23391;2;165;70.0;120;80;1;1;0;0;1;0
+94073;15352;2;182;94.0;120;80;1;1;0;1;0;0
+94074;19512;2;160;60.0;120;80;1;1;0;0;1;1
+94077;21107;2;168;59.0;120;80;1;1;0;0;1;0
+94078;19941;1;156;100.0;120;80;1;2;0;0;0;1
+94079;15445;1;154;55.0;100;60;1;2;0;0;1;0
+94080;23590;2;176;80.0;150;80;1;1;0;0;1;1
+94081;19825;2;171;67.0;150;90;1;3;0;0;1;1
+94082;19247;1;165;65.0;120;80;1;1;0;0;0;1
+94085;23320;2;167;88.0;120;80;1;1;0;0;1;0
+94086;23336;2;174;70.0;110;60;1;3;0;0;0;0
+94087;22564;2;175;76.0;140;80;1;1;1;0;1;1
+94088;18108;2;167;69.0;120;80;1;1;0;0;1;0
+94089;23399;1;155;87.0;160;1200;2;2;0;0;1;0
+94092;21254;1;171;69.0;150;100;3;3;0;0;1;0
+94094;14548;1;154;71.0;150;90;3;2;0;0;1;1
+94095;19724;1;163;63.0;120;80;1;1;0;0;1;0
+94097;23219;1;157;80.0;140;90;3;2;0;0;1;1
+94099;19635;1;164;105.0;120;80;1;2;0;0;1;0
+94101;23184;1;155;90.0;140;89;1;1;0;0;1;1
+94104;19954;2;168;76.0;120;80;1;1;0;0;1;0
+94105;21216;1;168;65.0;120;80;1;1;0;0;1;1
+94106;18327;1;162;68.0;90;60;1;1;0;0;1;1
+94108;14405;2;169;68.0;120;80;1;1;0;0;0;0
+94109;19016;1;162;109.7;120;70;2;2;0;0;1;1
+94110;21327;1;166;65.0;120;80;1;1;0;0;1;0
+94111;20684;2;168;62.0;100;70;1;1;0;0;1;0
+94112;21832;1;168;85.0;140;80;3;3;0;0;0;1
+94113;15918;2;174;86.0;120;80;1;1;0;0;1;1
+94114;14477;1;159;67.0;110;80;2;1;0;0;1;1
+94116;18833;1;169;78.0;110;80;3;3;0;0;0;0
+94117;18773;1;168;75.0;140;1000;1;1;0;0;1;1
+94118;15456;2;172;74.0;120;80;1;1;1;0;1;0
+94120;19488;2;167;52.0;120;80;1;1;1;0;1;0
+94121;18218;1;158;62.0;95;60;2;1;0;0;1;0
+94122;18882;2;158;59.0;130;80;1;1;1;0;1;1
+94123;20514;1;160;89.0;130;80;1;2;0;1;1;1
+94125;21822;1;155;82.0;150;110;1;1;0;0;1;1
+94128;14624;2;183;60.0;110;80;1;1;0;0;1;0
+94129;20430;1;160;93.0;120;80;3;1;0;0;1;1
+94130;16291;2;172;87.0;100;60;1;1;0;0;1;0
+94131;19560;1;164;70.0;160;90;1;1;0;0;1;0
+94132;21775;1;172;69.0;120;80;1;1;0;0;0;0
+94133;23542;1;151;48.0;120;85;1;1;0;0;1;0
+94134;16095;2;165;69.0;120;80;1;1;0;0;1;0
+94135;18508;1;170;85.0;130;80;1;1;0;1;1;1
+94137;22642;1;166;56.0;130;80;1;2;0;0;1;1
+94138;20515;2;167;76.0;120;80;1;1;0;0;1;1
+94139;21022;1;162;72.0;130;80;1;1;0;0;1;1
+94141;17377;2;167;58.0;110;60;1;1;0;1;1;0
+94142;23306;2;161;79.0;130;80;1;1;0;0;1;1
+94144;17959;1;157;55.0;130;80;1;1;0;0;1;1
+94146;21217;2;154;64.0;130;90;1;1;1;1;1;0
+94150;23236;1;168;70.0;140;90;1;1;0;0;1;0
+94151;14679;2;159;58.0;110;70;1;1;0;0;1;0
+94157;20616;1;155;61.0;130;90;3;2;0;0;0;1
+94158;15171;2;180;94.0;120;80;1;1;0;0;1;0
+94159;19275;2;178;72.0;120;80;1;1;0;0;1;0
+94160;21498;1;164;113.0;120;80;3;3;0;0;1;1
+94161;15240;2;160;85.0;140;80;2;1;1;1;1;1
+94162;22003;1;164;95.0;160;1000;1;1;0;0;1;1
+94163;15414;1;173;72.0;110;70;1;1;0;0;1;0
+94164;19642;1;150;64.0;140;90;1;1;0;0;1;0
+94167;19906;1;170;70.0;120;80;1;1;0;0;1;0
+94168;18959;1;159;74.0;120;80;1;1;0;0;1;0
+94172;19679;2;188;95.0;160;100;2;2;0;0;1;1
+94173;19537;1;164;55.0;120;80;1;1;0;0;1;0
+94174;18200;1;159;48.0;100;80;1;1;0;0;1;0
+94176;22470;2;169;65.0;140;80;1;1;0;0;0;1
+94178;21796;2;162;65.0;170;100;2;1;0;0;1;0
+94179;16852;1;162;75.0;120;80;1;1;0;0;1;0
+94180;15885;1;151;66.0;120;80;2;3;0;0;1;0
+94181;22389;1;156;77.0;120;80;3;3;0;0;1;1
+94183;16863;2;160;60.0;120;80;1;1;0;0;0;0
+94185;15288;1;156;67.0;120;80;1;1;0;0;1;0
+94187;16191;2;175;68.0;130;90;1;1;0;0;0;0
+94188;16597;2;170;95.0;140;90;1;1;0;1;1;1
+94189;22699;2;168;58.0;110;70;1;1;0;0;1;1
+94190;19538;1;160;76.0;140;90;3;1;0;0;1;1
+94191;19715;1;154;45.0;140;90;2;1;0;0;1;0
+94192;21882;2;168;83.0;140;100;3;3;0;0;1;1
+94193;19458;1;168;72.0;120;80;3;3;0;0;1;0
+94195;18978;2;165;60.0;130;90;1;1;0;0;1;1
+94196;16602;2;175;55.0;120;80;1;1;0;0;1;0
+94197;15866;1;151;84.0;160;80;1;1;0;1;1;1
+94198;19576;1;162;78.0;130;90;3;3;0;0;1;1
+94199;22089;1;160;58.0;120;80;1;1;0;0;1;1
+94200;18226;1;165;58.0;120;80;1;1;0;0;1;0
+94201;20354;2;175;68.0;120;80;1;1;0;0;1;0
+94205;14664;1;155;52.0;90;60;1;1;0;0;1;0
+94206;15464;1;156;58.0;130;90;1;1;0;0;1;1
+94207;23471;1;156;84.0;140;80;1;1;0;0;0;0
+94211;22629;1;164;55.0;120;80;1;2;0;0;0;1
+94212;18323;2;170;74.0;120;80;1;1;0;0;1;1
+94213;19752;2;180;70.0;120;80;1;1;0;0;0;0
+94214;21765;1;167;85.0;150;80;1;1;0;0;1;1
+94215;23330;1;158;60.0;150;90;1;1;0;0;0;1
+94217;19804;2;171;83.0;130;80;1;1;1;0;1;1
+94218;14512;1;170;87.0;140;90;1;1;0;0;1;1
+94219;23455;1;158;98.0;160;100;3;2;0;0;1;1
+94220;18891;1;167;87.0;130;80;1;1;0;0;1;0
+94222;21269;1;149;58.0;110;70;1;1;0;0;1;0
+94224;22449;1;165;65.0;120;80;1;1;0;0;1;0
+94225;18260;1;161;59.0;110;70;1;1;0;0;1;0
+94228;23359;2;161;57.0;120;80;1;1;0;0;1;0
+94229;21897;1;166;62.0;120;70;2;1;0;0;0;0
+94230;20969;2;174;90.0;130;90;3;3;0;0;1;1
+94231;23255;1;155;92.0;130;80;3;1;0;0;1;1
+94232;19729;1;153;50.0;150;1000;1;1;0;0;1;1
+94233;15910;1;167;64.0;110;70;1;1;0;0;0;0
+94234;19741;1;160;64.0;160;90;1;1;0;0;0;1
+94236;21155;1;158;88.0;140;80;2;1;0;0;1;1
+94237;19576;2;175;62.0;140;100;1;1;0;0;1;1
+94239;16739;2;157;81.0;130;80;2;1;0;0;1;0
+94241;22904;2;171;90.0;125;80;1;1;1;0;1;1
+94242;20347;2;166;82.0;160;80;3;2;1;0;1;1
+94243;15492;2;178;107.0;150;100;2;1;0;0;1;1
+94244;21799;2;169;69.0;120;80;1;1;0;0;1;0
+94245;21344;1;172;75.0;150;1000;1;1;0;0;1;1
+94246;18987;1;170;69.0;130;80;1;1;0;1;1;1
+94247;21703;2;168;79.0;120;80;2;1;0;0;0;1
+94248;19155;1;166;68.0;120;80;1;1;0;0;1;0
+94249;14595;1;120;80.0;120;70;2;1;0;0;1;0
+94250;23271;1;163;76.0;120;80;3;3;0;0;1;0
+94251;20569;1;170;81.0;120;70;1;1;0;0;1;0
+94252;16854;1;165;52.0;100;70;1;1;0;0;1;0
+94254;20277;1;169;89.0;110;70;1;1;0;0;1;1
+94255;15036;1;158;120.0;120;80;1;1;0;0;1;0
+94260;21240;1;170;85.0;120;80;1;1;0;0;0;1
+94261;16191;1;156;58.0;120;75;1;1;0;0;1;0
+94262;21135;1;162;64.0;120;80;2;1;0;0;0;0
+94263;14619;2;167;93.0;130;80;1;1;0;1;1;0
+94264;21865;1;164;110.0;140;80;3;1;0;0;1;1
+94268;16588;2;172;93.0;120;80;1;2;0;0;1;0
+94269;23492;1;176;92.0;140;90;3;1;0;0;1;1
+94270;17482;1;157;67.0;160;90;1;1;0;0;1;1
+94271;20568;1;160;59.0;120;80;1;1;0;0;1;0
+94272;15142;1;164;61.0;105;70;1;1;0;0;1;0
+94273;20906;1;156;45.0;120;80;1;1;0;0;1;0
+94274;17544;1;159;73.0;120;80;2;2;0;0;1;1
+94275;18201;1;169;96.0;130;110;2;2;0;0;1;1
+94280;18229;2;167;64.0;120;80;1;1;0;0;1;1
+94281;21777;2;167;57.0;120;80;1;1;0;0;1;0
+94282;19834;1;158;83.0;130;80;1;1;0;0;1;0
+94283;20689;1;162;58.0;120;80;1;1;0;0;1;0
+94284;19682;2;169;89.0;120;80;1;1;0;0;0;1
+94285;16863;2;167;66.0;90;60;1;1;1;0;1;0
+94286;18327;2;172;73.0;120;80;1;1;0;0;0;0
+94288;18725;2;174;63.0;120;90;1;1;0;0;0;0
+94290;21174;1;156;50.0;120;80;1;1;0;0;1;0
+94292;22004;1;157;88.0;140;80;1;2;0;0;0;1
+94293;20479;1;159;63.0;120;80;1;1;0;0;1;1
+94294;20230;2;165;104.0;120;80;1;1;0;0;1;1
+94297;19701;1;165;85.0;140;90;1;1;0;0;1;1
+94298;18396;2;170;69.0;120;80;1;1;0;0;1;0
+94301;17658;1;166;82.0;120;80;1;2;0;0;1;0
+94303;18330;1;170;73.0;110;80;1;1;0;0;1;0
+94304;19856;1;170;58.0;150;100;1;1;0;1;1;1
+94305;21087;1;170;73.0;140;80;1;1;0;0;1;1
+94307;21132;2;180;84.0;130;80;3;3;0;1;1;1
+94310;21369;2;165;65.0;120;70;1;1;0;0;1;0
+94311;22027;2;172;91.0;130;70;3;1;0;0;1;1
+94312;18950;1;164;84.0;145;95;2;1;0;0;1;1
+94313;19260;1;162;68.0;90;60;1;1;0;0;0;1
+94314;22563;1;145;62.0;120;80;2;2;0;0;0;1
+94316;22731;2;178;95.0;140;100;3;3;0;0;1;1
+94318;18089;2;170;80.0;120;70;1;1;0;0;1;0
+94319;23321;1;166;100.0;160;90;2;1;0;0;1;1
+94320;15321;2;170;70.0;120;80;1;1;1;0;1;1
+94322;18992;1;157;60.0;150;1000;1;1;0;0;1;1
+94327;19090;1;164;78.0;130;85;1;1;0;0;1;0
+94328;18448;2;183;85.0;160;100;1;1;1;0;1;1
+94329;15090;1;166;75.0;100;60;2;1;1;1;0;0
+94331;19719;1;151;69.0;150;90;2;1;0;0;1;1
+94332;21321;2;185;105.0;110;70;1;1;0;0;1;0
+94333;19556;1;160;66.0;150;100;3;3;0;0;1;1
+94335;18193;1;165;70.0;120;80;1;1;0;0;1;0
+94337;21095;1;170;64.0;170;64;1;1;0;0;1;1
+94338;14648;1;173;69.0;120;80;1;1;0;0;1;0
+94342;20414;1;159;51.0;120;80;1;1;0;0;1;1
+94343;18189;1;160;78.0;130;90;1;1;0;0;0;0
+94344;19665;2;173;82.0;170;110;2;1;0;0;1;1
+94345;23423;1;152;52.0;130;80;1;1;0;0;0;1
+94346;21920;1;160;100.0;150;90;2;1;0;0;1;1
+94347;17271;2;170;60.0;120;80;1;1;0;0;1;0
+94348;19143;1;164;64.0;130;90;2;1;0;0;1;0
+94350;16119;2;165;58.0;110;60;1;1;0;0;1;0
+94351;17533;2;177;86.0;120;80;1;1;0;0;1;0
+94352;21265;2;176;90.0;160;90;1;1;1;0;1;1
+94353;21852;1;142;50.0;130;80;1;1;0;0;1;1
+94354;20476;2;178;86.0;120;80;1;1;1;0;1;0
+94355;17036;2;164;86.0;110;70;1;1;0;0;0;0
+94356;18838;2;165;92.0;120;80;1;1;1;0;1;1
+94357;14291;1;164;77.0;110;70;1;1;0;0;1;0
+94358;19647;1;168;70.0;120;80;1;1;0;0;1;1
+94361;22138;1;163;56.0;120;80;1;1;0;0;1;0
+94362;16954;2;175;80.0;120;80;1;1;0;0;1;0
+94363;21769;2;182;130.0;130;90;2;2;0;0;0;1
+94365;22490;2;170;87.0;120;80;1;1;0;0;1;0
+94366;21852;2;170;72.0;130;80;3;1;0;0;1;0
+94367;15994;2;170;70.0;100;80;1;1;0;0;1;0
+94368;21361;1;169;77.0;120;80;1;1;0;0;0;0
+94369;18407;1;156;67.0;120;80;1;1;0;0;1;0
+94370;18342;1;158;69.0;110;80;2;1;0;0;1;0
+94371;21857;1;168;71.0;170;100;3;3;0;0;0;1
+94372;17549;2;174;78.0;120;70;1;1;0;0;1;1
+94374;19502;1;158;78.0;140;100;1;1;0;0;0;1
+94377;21179;2;173;112.0;220;1400;1;1;0;0;1;1
+94378;20107;2;163;64.0;125;85;2;1;0;0;1;0
+94379;16725;1;168;78.0;120;80;1;1;0;0;1;0
+94380;17643;2;179;85.0;120;80;1;1;1;0;1;0
+94381;22714;2;174;72.0;130;90;1;1;1;0;1;1
+94382;21875;2;165;60.0;120;80;1;1;0;0;1;1
+94383;19032;1;160;89.0;140;80;1;1;0;0;0;1
+94384;14532;2;175;85.0;120;80;1;1;0;0;1;0
+94385;20437;1;154;91.0;120;80;1;1;0;0;0;0
+94386;15586;2;180;85.0;140;90;2;1;1;0;0;1
+94387;20590;1;154;72.0;95;160;3;3;0;1;1;1
+94388;19628;2;172;78.0;150;100;1;1;1;1;1;1
+94390;20404;1;160;81.0;110;70;1;1;0;0;0;0
+94391;15136;2;170;78.0;120;80;1;1;0;0;1;0
+94392;18509;1;156;64.0;130;90;1;1;1;1;0;1
+94393;15368;1;151;59.0;80;60;1;1;0;0;1;0
+94394;18598;2;179;85.0;140;90;1;1;0;0;1;1
+94395;19124;1;155;55.0;140;90;1;1;0;0;1;1
+94396;21825;2;173;106.0;130;80;2;1;0;0;0;1
+94398;16012;1;164;65.0;120;80;1;1;0;0;1;0
+94400;19139;2;168;58.0;120;80;1;1;0;0;1;0
+94402;21261;2;166;77.0;140;100;3;3;0;1;0;1
+94404;19012;1;162;60.0;100;70;1;1;0;0;1;0
+94406;14779;1;152;50.0;100;60;1;1;0;0;1;0
+94407;20387;1;153;46.0;120;80;2;1;0;1;1;0
+94408;18822;1;152;61.0;120;80;2;1;0;0;1;0
+94411;21967;1;158;69.0;120;80;3;1;0;0;1;0
+94412;15104;1;165;59.0;120;80;1;1;0;0;1;0
+94413;17536;1;152;49.0;120;90;1;1;0;0;0;0
+94414;18862;2;173;74.0;120;80;2;1;1;0;1;0
+94415;16302;1;168;71.0;130;80;1;1;0;0;1;0
+94416;23299;1;176;86.0;120;80;1;1;0;0;1;1
+94417;19968;2;178;100.0;140;90;1;1;1;0;1;0
+94418;22694;1;151;61.0;160;90;1;1;0;0;1;1
+94419;15958;2;165;68.0;120;80;1;1;0;0;1;0
+94420;22501;2;172;70.0;120;80;1;1;0;0;0;1
+94421;21889;2;170;70.0;130;90;2;1;1;1;1;0
+94422;22539;1;198;80.0;140;90;1;2;0;0;1;1
+94423;19794;1;168;88.0;130;90;3;1;0;0;1;0
+94424;16557;2;178;90.0;140;1000;2;2;0;0;1;1
+94425;19741;1;160;77.0;130;90;3;1;0;0;1;0
+94427;18277;2;176;65.0;110;80;1;1;1;0;1;0
+94428;19016;1;158;100.0;160;100;2;2;0;0;1;0
+94429;19152;1;165;85.0;130;90;1;1;0;0;1;1
+94431;23402;1;156;91.0;130;80;3;1;0;0;0;1
+94432;20628;2;176;73.0;120;70;1;1;0;0;1;1
+94433;19704;1;152;59.0;150;90;2;1;0;0;0;1
+94434;19735;1;161;102.0;130;80;2;2;0;0;1;0
+94435;18224;1;163;80.0;130;90;3;3;0;0;1;0
+94436;16674;2;173;108.0;125;80;1;1;1;1;1;0
+94437;21811;1;170;60.0;110;70;1;1;0;0;1;0
+94438;18164;1;150;74.0;110;70;1;1;0;0;1;0
+94442;17712;2;174;72.0;140;80;1;1;0;0;0;1
+94443;14432;1;162;57.0;100;80;1;1;0;0;0;0
+94445;17979;2;170;77.0;170;100;2;1;0;0;0;1
+94446;21844;2;165;65.0;120;80;1;1;0;0;0;1
+94447;16595;2;172;85.0;130;90;1;1;0;0;1;0
+94450;14513;2;178;70.0;100;70;1;1;0;0;0;0
+94451;21842;1;155;76.0;140;80;3;1;0;0;0;1
+94453;15225;1;158;62.0;100;60;1;1;0;0;1;0
+94454;17579;2;168;63.0;140;80;1;1;0;0;1;1
+94455;17655;1;170;80.0;150;100;1;1;0;0;0;1
+94457;19021;1;152;48.0;120;80;1;1;0;0;1;0
+94458;18205;2;165;78.0;120;80;1;1;0;0;1;0
+94459;15345;1;163;68.0;120;70;1;1;0;0;1;0
+94460;18869;2;165;65.0;120;80;1;1;0;0;1;0
+94461;15133;1;162;64.0;110;70;1;1;0;0;0;0
+94467;18184;1;168;95.0;110;70;1;1;0;0;1;0
+94468;21202;1;155;68.0;110;70;1;1;0;0;1;1
+94469;18934;1;170;84.0;120;80;1;1;0;0;1;0
+94470;15303;1;165;65.0;120;80;1;1;0;0;0;0
+94473;16157;2;183;96.0;120;80;1;1;1;1;1;0
+94474;16180;1;164;70.2;100;70;2;2;0;0;1;0
+94475;18918;2;156;64.0;110;80;1;1;0;0;1;0
+94476;22049;1;153;76.7;140;80;2;1;0;0;1;1
+94477;19845;2;184;81.0;130;80;1;1;0;0;0;0
+94478;16917;1;148;44.0;100;70;1;1;0;0;0;0
+94479;19029;1;165;60.0;90;60;1;1;0;0;1;0
+94481;15845;1;156;114.0;140;90;1;1;1;0;1;1
+94482;18348;1;160;71.0;150;90;1;1;1;0;0;1
+94483;18958;1;160;60.0;120;80;1;1;0;0;1;0
+94485;15273;1;164;63.0;90;60;1;1;0;0;1;0
+94486;19059;1;165;65.0;120;80;1;1;0;0;1;1
+94489;15798;1;152;72.0;120;80;2;1;0;0;1;0
+94490;18935;1;175;75.0;150;90;2;1;0;0;1;1
+94491;16696;1;167;68.0;120;80;1;1;0;0;1;0
+94494;16924;2;167;69.0;120;80;1;1;0;0;1;1
+94496;18490;1;170;65.0;100;80;1;1;0;0;0;0
+94497;15280;2;172;83.0;120;80;1;1;0;0;1;0
+94498;17991;1;156;47.0;120;90;1;1;0;0;0;1
+94499;16683;1;161;53.0;110;60;1;1;0;0;1;0
+94500;17446;1;164;72.0;160;100;1;1;0;0;1;1
+94501;20597;1;172;67.0;140;80;1;1;0;0;1;1
+94502;18925;1;156;57.0;120;80;1;1;0;0;1;0
+94505;16501;2;182;121.0;140;100;2;1;0;0;1;1
+94506;20914;1;158;79.0;160;90;3;3;0;0;1;1
+94509;17418;1;148;76.0;120;80;1;1;0;0;0;1
+94510;21160;1;150;59.0;100;60;3;1;0;0;1;1
+94511;14525;2;178;69.0;130;90;1;1;1;1;1;0
+94512;21833;1;169;63.0;110;70;1;1;0;0;0;0
+94514;17218;1;168;73.0;140;90;1;1;0;0;1;1
+94515;21124;1;152;66.0;120;80;1;1;0;0;1;0
+94516;22050;1;166;78.0;130;80;3;3;0;0;1;1
+94517;18920;1;165;63.0;140;90;3;1;0;0;1;0
+94520;15203;2;169;69.0;120;70;1;1;1;0;0;0
+94522;21872;1;149;79.0;160;100;3;1;0;0;1;1
+94523;19589;1;164;64.0;120;80;1;1;0;0;0;0
+94524;19810;2;173;139.0;120;80;1;1;0;0;1;0
+94526;19064;2;176;85.0;125;80;1;1;0;0;1;0
+94527;17292;1;158;99.0;140;80;1;1;0;0;1;1
+94528;22675;1;154;56.0;120;70;1;1;0;0;0;1
+94529;16726;1;165;66.0;120;80;1;1;0;0;1;0
+94531;21273;1;160;58.0;120;80;1;1;0;0;1;0
+94532;14781;1;155;55.0;100;60;2;1;0;0;1;0
+94533;18962;2;173;65.0;150;90;1;1;0;0;1;1
+94535;16516;2;174;70.0;150;100;1;1;0;0;1;0
+94536;18372;2;176;94.0;140;90;1;1;0;1;1;1
+94538;18147;1;169;65.0;120;80;1;1;0;0;1;0
+94539;19752;1;173;74.0;120;80;1;1;0;0;1;0
+94540;21895;1;170;70.0;150;100;1;1;0;0;1;0
+94541;23258;2;170;73.0;130;90;3;1;0;0;1;1
+94542;19515;1;159;77.0;140;90;3;1;0;0;0;1
+94544;15828;1;155;79.0;120;80;2;1;0;0;1;0
+94546;14593;1;161;87.0;160;80;3;3;0;0;0;1
+94547;22715;2;176;72.0;110;70;1;1;0;0;1;1
+94549;23401;1;148;80.0;160;100;2;2;0;0;1;1
+94550;15875;1;150;70.0;140;90;1;1;0;0;1;1
+94551;19664;2;191;84.0;120;80;1;1;0;0;1;0
+94553;15964;2;159;85.0;140;100;1;1;0;0;1;1
+94554;21272;2;172;87.0;120;70;1;1;0;0;1;0
+94556;19870;2;169;75.0;120;80;1;1;1;0;1;0
+94557;19835;1;158;56.0;120;80;1;1;0;0;1;1
+94559;17471;1;162;89.0;120;80;1;1;0;0;1;0
+94561;18978;1;152;70.0;150;100;1;1;0;0;1;1
+94562;21956;1;160;60.0;120;84;1;1;0;0;1;1
+94563;21329;1;165;82.0;140;90;1;1;0;0;1;1
+94564;17698;2;171;86.0;140;90;3;1;0;0;1;1
+94565;19810;1;162;56.0;130;90;1;1;0;0;1;1
+94566;22654;1;160;65.0;100;70;1;1;0;0;1;0
+94569;20401;1;162;100.0;130;90;3;1;0;0;0;1
+94570;17713;1;169;71.0;120;70;1;1;0;0;1;0
+94572;20662;1;165;75.0;130;80;1;2;0;0;1;0
+94574;21376;2;186;56.0;120;80;1;1;0;0;1;0
+94575;21213;2;172;63.0;95;70;3;1;0;0;1;0
+94576;23313;2;169;70.0;90;60;1;1;1;0;1;1
+94577;19039;1;165;84.0;140;80;1;1;0;0;1;1
+94578;16728;1;152;63.0;90;60;1;1;0;0;1;0
+94579;22691;1;153;83.0;130;90;1;1;0;0;1;0
+94581;20212;1;160;55.0;120;70;1;1;0;0;1;0
+94582;19598;1;164;84.0;140;90;2;1;0;0;1;0
+94585;14626;1;157;61.0;110;70;1;1;0;0;1;0
+94586;22822;2;175;76.0;120;70;1;1;0;0;1;0
+94587;14394;1;167;102.0;130;80;1;1;0;1;1;0
+94588;16071;1;153;95.0;120;80;1;1;0;0;1;0
+94590;19054;1;166;66.0;140;100;1;1;0;0;1;1
+94592;21097;2;162;61.3;99;71;1;1;0;0;0;0
+94593;17711;2;168;75.0;150;90;1;1;0;0;1;1
+94594;21120;1;167;70.0;110;60;1;1;0;0;0;1
+94595;20436;1;159;56.0;110;80;1;1;0;0;1;0
+94596;19111;1;168;85.0;140;80;3;1;0;0;0;0
+94597;15385;1;165;121.0;100;70;2;2;0;0;1;0
+94599;19663;1;150;49.0;130;80;1;1;0;0;1;1
+94600;18895;1;169;71.0;130;90;3;1;0;0;1;0
+94601;23098;1;154;74.0;110;70;3;3;0;0;0;1
+94602;18783;1;158;67.0;110;70;1;1;0;0;1;1
+94604;22576;2;170;70.0;120;80;1;1;0;0;1;0
+94605;22736;1;178;67.0;120;80;3;1;0;0;1;1
+94606;15280;2;170;64.0;120;80;1;1;1;1;1;0
+94607;23325;1;168;107.0;180;100;3;3;0;0;1;1
+94608;20374;1;174;70.0;120;80;1;1;0;0;1;0
+94612;17257;2;175;97.0;160;1000;3;1;0;0;1;0
+94614;18183;2;169;84.0;100;70;1;1;0;0;1;0
+94615;21862;1;167;73.0;120;80;1;1;0;0;1;0
+94617;21872;1;174;79.0;120;80;1;1;0;0;1;0
+94619;22689;2;154;40.0;110;70;1;1;1;0;1;0
+94620;23339;2;182;103.0;180;100;2;1;0;0;0;1
+94623;21332;2;164;95.0;120;90;1;1;0;0;1;1
+94624;15123;2;173;78.0;110;70;1;1;0;0;0;0
+94625;20499;2;179;86.0;130;90;1;1;0;0;1;1
+94626;22633;1;165;68.0;120;70;1;1;0;0;0;0
+94627;20311;2;178;116.0;170;100;1;3;0;1;1;1
+94628;18290;1;160;66.0;120;80;1;1;0;0;1;1
+94629;20265;1;167;59.0;120;80;1;1;0;0;0;1
+94630;21143;1;174;72.0;120;70;1;1;0;0;1;0
+94631;23270;2;165;105.0;140;90;1;1;0;0;1;1
+94634;19078;2;185;140.0;150;100;3;3;1;0;1;1
+94635;20723;1;168;72.0;100;70;2;2;0;0;0;1
+94636;17343;2;176;78.0;120;80;1;1;0;0;0;0
+94638;18830;1;164;79.0;130;80;2;1;0;0;1;0
+94641;16040;2;172;68.0;100;80;1;1;0;0;1;0
+94642;23270;1;158;88.0;160;90;2;2;0;0;1;1
+94643;21023;1;164;77.0;120;80;1;1;0;0;1;1
+94644;18298;1;160;55.0;120;80;1;1;0;0;1;0
+94645;21085;2;165;78.0;110;70;1;1;0;0;1;0
+94646;22068;1;160;70.0;120;80;3;3;0;0;0;1
+94651;19632;1;164;69.0;130;90;1;1;0;0;0;0
+94652;19646;2;169;73.0;120;80;1;1;0;0;1;0
+94654;19785;1;159;60.0;110;80;1;1;0;0;1;0
+94655;14600;1;165;69.0;120;80;1;1;0;0;1;0
+94656;20716;1;165;68.0;120;80;1;1;0;0;0;0
+94658;21261;1;159;93.0;170;115;2;1;0;0;0;1
+94659;21746;1;153;91.0;140;90;3;1;0;0;1;1
+94663;21143;1;159;65.0;120;70;1;1;0;0;0;1
+94664;14581;2;176;70.0;110;70;1;1;1;1;0;0
+94665;20469;1;170;69.0;130;90;2;1;0;0;1;0
+94667;23360;1;151;53.0;140;90;1;1;0;0;0;1
+94671;21172;2;172;74.0;150;92;1;1;0;0;1;1
+94673;22551;1;169;88.0;10;160;3;3;0;0;0;1
+94675;21944;1;156;60.0;120;80;1;1;0;0;1;1
+94677;21070;1;167;75.0;120;80;1;1;0;0;0;1
+94678;18912;1;167;78.0;120;80;2;1;0;0;1;1
+94682;21116;1;152;50.0;140;100;1;1;0;0;1;1
+94683;21119;1;170;65.0;120;80;1;1;0;0;1;0
+94684;15123;1;159;78.0;100;70;1;1;0;0;1;0
+94685;23189;1;169;103.0;130;90;2;2;0;1;1;0
+94687;18208;1;161;86.0;120;80;2;2;0;0;1;1
+94689;17597;2;173;105.0;120;80;1;1;1;0;1;1
+94690;21096;1;152;90.0;120;79;1;1;0;0;1;1
+94691;23318;2;154;74.0;120;80;1;1;0;0;0;1
+94692;19695;1;150;87.0;150;90;1;1;0;0;1;1
+94693;22711;2;176;99.0;130;80;1;1;0;0;1;0
+94694;18959;2;178;78.0;120;80;1;1;0;1;1;0
+94697;22778;1;157;77.0;140;90;1;1;0;0;1;1
+94698;18305;1;155;82.0;140;1000;1;1;0;0;1;1
+94699;17575;1;176;78.0;140;80;1;1;0;0;1;0
+94700;19859;2;178;82.0;120;80;2;1;1;0;1;1
+94701;20534;1;165;56.0;100;70;1;1;0;0;0;1
+94702;16377;1;166;72.0;120;80;3;1;0;0;1;0
+94703;15322;1;153;66.0;110;70;1;1;0;0;1;0
+94705;19780;1;156;56.0;100;70;1;1;0;0;1;0
+94706;21698;2;168;65.0;120;80;1;1;0;0;1;0
+94708;23552;2;174;80.0;120;80;1;1;0;0;1;0
+94710;22084;1;157;72.0;180;100;1;1;0;0;1;1
+94711;23502;2;168;65.0;120;80;1;1;0;0;1;0
+94712;18432;2;178;74.0;140;80;1;1;0;0;0;1
+94713;22534;1;155;65.0;140;90;3;1;0;0;1;1
+94715;19868;2;171;59.0;200;100;1;1;1;1;1;0
+94716;21162;2;160;75.0;140;90;1;1;1;0;1;0
+94717;22499;2;167;65.0;120;80;1;3;0;0;1;0
+94719;19715;1;150;64.0;140;90;2;1;0;0;1;1
+94720;18060;1;161;69.0;100;80;1;1;0;0;1;0
+94722;17988;1;169;60.0;130;80;2;1;0;0;1;1
+94724;17807;2;162;110.0;140;90;2;1;0;0;1;1
+94725;21714;2;167;90.0;120;80;1;2;0;0;1;0
+94726;23134;1;165;72.0;120;80;3;1;0;0;1;1
+94727;20507;1;165;60.0;120;80;1;1;0;0;1;1
+94728;15267;2;156;68.0;100;50;1;1;1;1;1;0
+94729;20427;1;157;72.0;140;90;1;1;0;0;0;1
+94730;23191;1;168;78.0;140;90;1;1;0;0;1;1
+94733;16678;1;165;120.0;130;80;2;1;0;0;1;1
+94734;21167;2;178;85.0;130;70;3;3;0;0;1;0
+94737;19544;1;157;84.0;130;90;1;1;0;0;1;1
+94738;19618;2;178;79.0;120;80;1;1;0;0;0;0
+94739;18119;1;170;73.0;130;70;1;1;0;0;1;1
+94740;15495;2;178;70.0;120;80;1;1;1;1;1;0
+94741;22655;1;155;80.0;140;100;3;1;0;0;1;1
+94744;15952;1;167;71.0;100;80;1;1;0;0;1;0
+94745;19787;2;160;60.0;120;80;1;1;0;0;1;1
+94746;21090;2;170;80.0;120;80;1;2;0;0;1;0
+94748;21685;1;162;65.0;120;80;1;1;0;0;0;0
+94751;21981;1;161;101.0;130;80;1;1;0;0;1;0
+94753;19080;1;176;81.0;120;80;1;1;0;0;1;0
+94754;23312;1;160;60.0;120;80;1;1;0;0;1;0
+94755;23636;1;170;85.0;120;70;1;1;0;0;1;0
+94756;16946;2;175;83.0;120;80;1;1;1;0;1;1
+94758;18708;1;163;75.0;120;80;1;1;0;0;1;0
+94760;18090;2;181;90.0;110;70;2;1;0;0;1;1
+94761;17419;2;168;60.0;160;70;1;1;0;0;0;1
+94762;23143;1;152;62.0;130;80;2;2;0;0;0;1
+94764;21256;2;174;88.0;120;80;2;1;0;0;1;0
+94766;14614;2;172;60.0;90;60;1;1;0;0;1;0
+94768;16514;1;161;58.0;120;80;1;1;0;0;1;0
+94769;21104;1;170;90.0;110;70;1;1;0;0;1;0
+94770;21701;2;170;77.0;120;80;1;1;0;0;1;1
+94771;21258;2;178;105.0;140;100;1;1;1;0;0;0
+94772;19791;1;157;58.0;140;100;3;1;0;0;1;1
+94773;21212;1;160;65.0;120;80;2;1;0;0;0;1
+94774;20301;1;158;59.0;160;90;1;1;0;0;1;0
+94775;15195;1;167;76.0;100;70;1;3;0;0;1;0
+94777;18940;1;172;70.0;90;60;1;3;0;0;1;0
+94778;15102;1;165;78.0;110;60;1;1;0;0;1;0
+94781;18268;1;165;61.0;110;70;1;1;0;0;1;0
+94782;18776;1;156;75.0;130;80;2;1;0;0;1;1
+94784;23187;1;157;78.0;150;80;2;2;0;0;0;1
+94785;19238;1;165;68.0;120;80;1;1;0;0;1;0
+94787;14717;1;155;73.0;120;60;1;1;0;0;1;0
+94788;21096;2;163;63.0;120;80;3;3;0;0;0;1
+94789;17675;1;156;59.0;120;80;1;1;0;0;1;0
+94790;18782;1;162;128.0;130;80;1;1;0;1;1;1
+94791;21200;2;166;74.0;140;100;2;1;0;0;1;0
+94792;21985;1;166;79.0;170;100;1;1;0;0;1;1
+94793;22432;1;165;75.0;130;80;1;1;0;0;1;0
+94794;23429;2;172;100.0;130;80;1;1;0;1;1;0
+94796;20227;1;162;101.0;170;100;1;1;0;0;0;1
+94797;18800;2;170;72.0;110;80;1;1;1;1;1;0
+94799;20248;1;163;84.0;160;100;2;1;0;0;1;1
+94801;16919;1;164;92.0;140;80;3;1;0;1;1;1
+94802;22001;1;163;74.0;140;100;3;3;0;0;1;1
+94803;18390;2;170;95.0;120;80;1;1;0;1;1;1
+94804;18985;1;154;59.0;110;80;2;1;0;0;0;0
+94805;19800;2;171;79.0;130;80;1;1;0;0;1;0
+94806;16648;2;175;68.0;110;80;1;1;0;0;1;0
+94810;17990;1;145;69.0;100;90;2;1;0;0;0;0
+94812;17428;2;174;63.0;110;70;1;1;0;0;1;0
+94814;20302;1;154;80.0;110;70;1;1;0;0;1;0
+94815;23351;1;155;71.0;120;90;3;2;0;0;1;1
+94818;18997;1;160;57.0;110;80;2;2;0;0;1;1
+94819;20502;1;164;65.0;90;60;2;1;0;0;1;1
+94820;20293;1;162;104.0;120;80;2;1;0;0;1;0
+94822;15051;1;164;74.0;110;70;1;1;0;0;0;0
+94823;21250;1;156;53.0;130;80;1;1;0;0;0;0
+94825;19684;1;150;62.0;110;70;1;1;0;0;1;0
+94828;16659;1;166;74.0;120;80;1;1;0;0;1;0
+94829;21181;1;170;68.0;120;80;1;1;0;0;1;1
+94830;23427;1;160;60.0;120;80;1;1;0;0;1;1
+94832;20297;2;174;69.0;120;100;1;1;1;1;0;0
+94833;18763;1;158;73.0;120;80;1;1;0;0;1;0
+94834;19607;1;160;60.0;110;70;1;1;0;1;0;0
+94835;21716;1;153;64.0;130;80;1;1;0;0;1;1
+94837;15728;1;163;59.0;120;80;1;1;0;0;1;0
+94838;21232;1;160;60.0;120;80;3;3;0;0;1;1
+94839;22746;2;169;117.0;120;90;1;1;0;0;1;0
+94840;16786;1;164;62.0;120;70;1;1;0;0;1;0
+94842;21796;2;179;72.0;120;80;1;1;0;0;1;0
+94844;19774;2;170;75.0;120;80;3;3;0;0;1;0
+94845;14599;1;174;79.0;120;80;2;1;0;0;1;1
+94846;23158;1;160;90.0;140;90;3;3;0;0;0;1
+94847;17827;1;169;75.0;120;80;1;1;0;0;1;1
+94848;23404;2;170;72.0;140;90;2;1;0;0;1;1
+94849;19506;1;167;93.0;160;100;1;1;0;0;0;0
+94850;20342;1;160;71.0;120;80;1;1;0;0;1;0
+94851;23365;2;152;53.0;120;80;1;1;1;0;1;0
+94854;20926;1;165;68.0;150;80;1;1;0;0;1;1
+94855;22569;1;170;74.0;170;100;3;1;0;0;1;1
+94856;20995;1;168;67.0;120;80;3;1;0;0;1;1
+94857;22409;1;160;60.0;120;80;1;1;0;0;1;1
+94858;18805;2;175;75.0;160;90;1;1;1;1;1;1
+94859;21888;1;162;89.0;120;80;1;1;0;0;1;0
+94860;17609;2;164;82.0;120;80;2;1;0;0;0;1
+94862;16754;2;178;95.0;140;90;3;1;0;0;1;1
+94865;21006;2;172;55.0;120;75;1;1;0;1;1;0
+94866;16061;1;155;54.0;110;70;1;1;0;0;1;0
+94868;19657;1;158;78.0;130;80;1;1;0;0;1;1
+94869;16344;1;156;54.0;100;60;1;1;0;0;1;0
+94870;19756;1;168;60.0;120;80;1;1;0;0;1;0
+94871;21387;1;150;96.0;110;70;1;1;0;0;1;0
+94872;18143;1;162;90.0;150;100;1;1;0;0;1;1
+94873;21974;2;165;65.0;130;80;1;1;0;0;1;1
+94874;18330;1;159;58.0;130;90;1;1;0;0;1;0
+94875;20348;1;159;65.0;130;90;1;1;0;0;1;1
+94877;16108;2;177;91.0;110;70;1;1;0;0;1;0
+94878;18016;1;160;53.0;110;70;1;1;0;0;1;0
+94880;14812;1;174;65.0;120;80;2;1;0;0;1;0
+94881;20343;1;175;70.0;140;90;3;3;0;0;0;1
+94882;19420;1;169;71.0;120;80;1;1;0;0;1;0
+94883;23388;1;164;79.0;120;80;3;1;0;0;1;1
+94885;22516;2;172;54.0;90;59;2;1;1;0;0;0
+94886;19013;2;169;72.0;120;90;1;1;0;0;1;0
+94887;19416;1;160;79.0;120;70;1;1;0;0;1;0
+94889;17496;2;179;84.0;120;80;1;1;0;0;1;0
+94891;20358;2;170;76.0;120;80;1;1;0;0;1;1
+94892;16704;1;155;70.0;120;80;2;1;0;0;1;1
+94893;21896;1;167;74.0;130;80;1;1;0;0;1;1
+94895;22530;1;160;84.0;140;100;1;1;0;0;1;1
+94897;21965;1;157;73.0;120;80;2;1;0;0;1;0
+94898;17478;1;178;80.0;150;90;1;1;0;0;0;1
+94899;19183;1;150;50.0;120;80;1;1;0;0;1;0
+94900;18468;1;165;107.0;150;80;3;2;0;0;1;1
+94901;18031;1;150;78.0;140;90;1;1;0;0;1;1
+94903;15094;1;155;44.0;180;100;1;1;0;0;1;1
+94904;15962;1;160;75.0;150;80;2;1;0;0;1;1
+94906;16928;2;110;90.0;110;90;1;1;0;0;1;0
+94907;15239;1;161;84.0;140;90;3;1;0;0;1;1
+94909;20624;1;155;57.0;110;70;1;1;0;0;1;0
+94910;19902;1;154;82.0;120;80;1;1;0;0;1;1
+94911;22681;1;165;67.0;120;80;2;2;0;0;1;0
+94913;15938;1;163;60.0;110;70;1;1;0;0;1;0
+94914;22593;1;159;68.0;130;90;1;1;0;0;1;0
+94915;21194;1;165;75.0;120;80;1;1;0;0;1;0
+94916;22529;1;169;71.0;130;90;3;1;0;0;1;1
+94917;18836;1;158;72.0;120;80;1;1;0;0;1;0
+94920;21911;1;165;65.0;120;80;1;1;0;0;0;1
+94922;21888;2;168;74.0;140;70;1;1;0;0;1;1
+94923;22677;1;167;71.0;140;90;1;1;0;0;0;1
+94924;21044;2;163;56.0;120;80;1;1;0;0;1;0
+94925;15954;1;156;119.0;110;70;1;1;0;0;1;0
+94926;18290;1;168;65.0;140;90;1;1;0;0;1;1
+94928;23187;2;167;70.0;110;80;3;1;0;0;1;0
+94929;17630;2;162;65.0;120;80;1;1;0;0;1;0
+94931;20138;1;168;70.0;120;80;1;1;0;0;1;0
+94934;20355;1;157;70.0;120;80;1;1;0;0;1;1
+94937;19962;2;174;96.0;120;80;1;1;0;1;1;0
+94940;22437;1;162;65.0;160;100;1;1;0;0;0;1
+94941;18708;2;170;65.0;140;90;1;1;0;0;1;1
+94942;18376;1;165;63.0;130;80;1;1;0;0;1;0
+94944;17491;1;160;81.0;120;80;1;1;0;0;1;0
+94945;21344;2;173;54.0;140;100;1;1;0;0;1;1
+94946;22486;2;150;85.0;160;100;1;1;0;0;1;1
+94949;17412;1;162;58.0;130;90;1;1;0;0;1;1
+94950;18113;2;160;60.0;130;90;2;1;0;0;0;1
+94951;21417;1;160;116.0;130;80;3;3;0;0;1;0
+94954;16948;1;168;58.0;130;80;3;1;0;0;0;0
+94955;23320;1;158;72.0;130;80;1;1;0;0;1;1
+94956;22718;2;175;83.0;160;100;1;1;0;0;1;1
+94957;20438;1;157;80.0;120;90;2;2;0;0;1;0
+94958;16495;1;158;72.0;140;100;1;1;0;0;1;1
+94960;22650;1;167;75.0;120;80;1;1;0;0;1;0
+94961;19660;2;170;70.0;130;90;1;1;0;0;0;1
+94962;21164;1;158;74.0;140;80;1;3;0;1;1;1
+94963;16131;1;158;68.0;150;100;1;1;0;0;1;1
+94964;23543;1;160;58.0;110;60;1;1;0;0;0;0
+94965;22037;1;153;69.0;150;90;3;1;0;0;1;1
+94967;18994;1;163;70.0;120;80;1;1;0;0;1;0
+94968;20358;1;153;65.0;140;90;1;1;0;0;1;0
+94969;18266;1;163;85.0;120;80;1;3;0;0;1;1
+94970;15940;1;168;72.0;120;80;1;1;0;0;1;0
+94972;23326;1;159;62.0;120;80;1;1;0;0;1;1
+94973;18758;2;175;78.0;160;80;1;1;0;1;1;1
+94975;16959;2;170;90.0;140;90;1;1;1;0;1;1
+94978;18024;1;157;85.0;110;90;1;1;0;0;1;1
+94980;18874;2;172;84.0;140;80;1;1;0;0;0;1
+94981;16842;1;159;64.0;115;80;1;2;0;0;1;0
+94982;21890;1;160;90.0;130;80;3;1;0;0;1;1
+94984;19512;2;179;65.0;120;80;1;1;1;0;1;0
+94985;18908;1;170;71.0;120;80;1;3;0;0;1;1
+94986;19649;1;152;46.0;120;80;1;1;0;0;1;1
+94988;19667;1;165;84.0;170;90;1;1;0;0;0;1
+94989;23552;1;146;49.0;140;90;3;1;0;0;1;1
+94990;23468;1;158;87.0;120;80;2;2;0;0;1;1
+94991;20291;1;158;60.0;110;70;1;1;0;0;1;0
+94992;19205;1;163;62.0;130;90;1;1;1;1;1;0
+94993;19633;1;158;69.0;130;90;1;1;0;0;1;0
+94994;19770;2;166;57.0;110;70;1;1;0;0;1;0
+94996;20488;1;162;62.0;160;80;1;1;0;0;0;1
+94997;16718;2;165;105.0;120;80;1;1;1;0;1;0
+94998;21013;1;156;73.0;120;70;1;1;0;0;0;0
+94999;17615;2;168;72.0;120;80;1;1;0;0;1;0
+95004;19092;1;155;96.0;120;80;1;1;0;0;1;0
+95005;22543;1;163;72.0;120;80;1;1;0;0;1;1
+95007;21951;1;156;73.0;110;70;3;1;0;0;0;1
+95008;21692;1;156;90.0;131;74;1;1;0;0;0;1
+95009;21800;1;150;55.0;110;60;3;1;0;0;1;1
+95011;21119;1;158;68.0;100;80;1;1;0;0;1;0
+95012;18984;1;168;78.0;120;80;1;1;0;0;0;0
+95013;23473;1;160;68.0;120;80;2;1;0;0;1;1
+95014;21194;2;160;64.0;140;80;1;1;1;0;1;1
+95018;18455;1;160;86.0;140;90;1;1;0;0;0;1
+95022;20299;1;174;65.0;120;80;1;1;0;0;1;1
+95024;21296;1;152;62.0;120;90;1;1;0;0;0;0
+95026;17762;1;175;75.0;120;80;1;1;0;0;0;0
+95027;23395;1;152;101.0;140;90;2;2;0;0;1;1
+95028;19579;1;164;50.0;130;80;1;1;0;0;1;0
+95029;15063;1;155;75.0;120;80;1;1;0;0;1;0
+95030;19703;1;155;85.0;140;90;1;1;0;0;1;1
+95031;20227;1;172;70.0;120;80;1;1;0;0;1;0
+95033;23250;1;156;56.0;170;80;1;1;0;0;1;1
+95034;20286;2;170;85.0;130;90;1;1;0;0;1;0
+95035;22563;2;160;80.0;130;80;1;1;0;0;1;1
+95036;18212;2;178;70.0;120;80;1;1;1;0;1;0
+95037;20409;2;168;90.0;140;80;1;1;1;0;0;1
+95038;16138;1;169;65.0;110;80;3;1;0;0;0;1
+95039;19512;2;179;80.0;120;80;1;1;0;0;1;0
+95040;15830;1;165;71.0;110;70;2;1;0;0;1;1
+95041;23373;1;158;70.0;150;90;1;1;0;0;1;0
+95043;19641;1;148;94.0;150;90;1;1;0;0;0;1
+95044;14584;1;167;69.0;110;70;1;1;0;0;1;0
+95045;21311;1;164;90.0;140;90;3;3;0;0;1;1
+95046;19676;2;178;96.0;130;90;1;1;0;0;0;1
+95047;20958;1;164;50.0;120;80;1;1;0;0;1;1
+95049;16805;2;169;63.0;140;90;1;1;1;1;1;1
+95050;22020;1;169;59.0;100;70;1;1;0;0;1;0
+95054;19795;2;172;64.0;120;80;1;1;0;0;1;0
+95055;15418;1;160;110.0;160;100;1;1;0;0;1;1
+95057;18275;2;176;74.0;120;80;1;1;0;0;1;0
+95060;16897;1;164;62.0;110;70;1;1;0;0;0;0
+95061;23446;1;168;64.0;110;70;1;1;0;0;1;1
+95062;19804;2;168;65.0;90;60;2;1;0;0;1;0
+95063;21589;2;165;57.0;120;80;1;1;1;0;1;0
+95064;20471;2;167;68.0;140;90;1;1;0;0;1;1
+95067;17307;1;157;68.0;160;100;1;1;0;0;1;1
+95068;15503;1;160;67.0;110;80;1;1;0;0;1;0
+95069;23259;2;165;64.0;120;80;3;1;0;0;1;0
+95070;16240;2;177;106.0;120;80;2;1;0;0;0;0
+95072;23296;1;178;85.0;120;60;1;1;0;0;1;0
+95073;23603;2;174;80.0;120;60;1;1;0;0;1;0
+95074;19186;1;169;85.0;170;90;2;2;0;0;1;1
+95075;18366;2;172;65.0;120;80;1;1;0;0;1;0
+95076;21177;2;171;69.0;110;70;1;1;0;0;1;1
+95077;20298;1;155;65.0;110;80;1;1;0;0;1;0
+95078;18303;1;167;81.0;120;70;1;1;0;0;1;0
+95079;20317;1;160;80.0;100;70;1;1;0;0;0;0
+95080;16731;2;160;68.0;120;80;1;1;0;0;1;0
+95081;21249;1;155;57.0;140;90;1;1;0;0;1;1
+95082;20546;1;160;58.0;120;80;2;1;0;0;1;1
+95084;15767;2;169;123.0;140;80;1;1;0;0;1;1
+95086;14662;2;180;85.0;120;80;1;1;0;0;1;0
+95087;19767;1;165;78.0;130;80;2;1;0;0;1;1
+95088;20207;1;153;85.0;100;60;2;1;0;0;1;1
+95089;15128;2;167;102.0;140;80;1;1;0;0;1;1
+95091;18452;2;176;132.0;130;80;1;1;0;0;1;0
+95094;18371;1;167;71.0;150;80;1;1;0;0;1;1
+95095;18275;2;178;79.0;110;60;1;1;0;1;1;0
+95098;23326;2;168;75.0;130;80;1;1;0;0;1;1
+95099;22644;2;178;78.0;130;90;1;1;1;0;1;1
+95101;19146;1;168;77.0;110;80;1;1;0;1;1;0
+95102;18410;1;159;56.0;120;80;1;1;0;0;1;0
+95103;18288;1;159;62.0;120;80;1;1;0;0;1;0
+95106;14478;1;163;60.0;110;70;1;1;0;0;1;0
+95107;14324;2;174;80.0;160;100;1;1;0;0;1;1
+95108;16102;2;165;76.0;140;70;1;1;0;0;1;1
+95109;14505;1;164;56.0;100;70;1;1;0;0;0;0
+95110;22138;1;158;70.0;150;100;2;1;0;0;1;1
+95113;20555;1;156;107.0;135;80;1;1;0;0;1;1
+95114;23313;2;171;93.0;140;90;1;3;1;1;1;0
+95117;21280;2;170;92.0;130;80;2;2;0;0;1;0
+95118;16636;1;158;60.0;120;90;1;1;0;0;1;0
+95119;21813;1;159;69.0;110;80;1;1;0;0;1;0
+95121;19514;2;168;99.0;150;90;1;1;0;0;1;1
+95122;18171;2;168;65.0;140;90;1;1;0;0;1;0
+95123;18971;1;170;74.0;150;90;1;1;0;0;1;1
+95124;18097;1;165;85.0;120;80;1;2;0;0;0;0
+95125;16650;1;153;75.0;125;80;1;1;0;0;1;1
+95126;18387;1;167;75.0;120;80;1;1;0;0;1;0
+95127;18847;1;154;87.0;120;80;1;1;0;0;1;0
+95128;19739;2;166;71.0;120;70;1;1;0;0;1;0
+95129;22535;1;167;80.0;160;90;2;2;0;0;1;1
+95130;18783;2;168;88.0;160;80;1;1;1;0;1;1
+95131;22490;1;172;99.0;110;70;3;3;0;0;1;1
+95133;14518;2;163;87.0;150;100;1;1;0;0;1;1
+95134;20509;2;171;81.0;160;90;1;1;0;0;1;1
+95136;15863;2;163;81.0;110;70;1;1;0;0;1;0
+95137;19028;1;160;60.0;120;80;1;1;0;0;1;0
+95138;22629;2;167;74.0;120;80;1;1;0;0;1;0
+95139;16074;1;158;66.0;110;90;1;3;0;0;1;0
+95140;19526;1;157;58.0;120;90;1;1;0;0;0;0
+95141;18830;1;57;61.0;130;90;1;1;0;0;1;1
+95142;19613;1;158;68.0;120;80;1;1;0;0;1;1
+95145;21223;1;152;71.0;120;80;1;1;0;0;1;1
+95146;15149;1;166;66.0;110;70;1;1;0;0;1;0
+95147;22494;2;162;63.0;100;60;2;1;1;0;0;1
+95149;20583;2;160;66.0;120;80;1;1;0;0;1;0
+95152;16825;2;170;78.0;120;60;1;1;1;1;1;0
+95153;16797;1;162;69.0;90;60;1;1;0;0;1;0
+95155;19017;2;178;104.0;150;90;1;1;0;0;1;1
+95157;21084;1;157;62.0;120;90;1;1;0;0;1;0
+95158;23188;1;160;68.0;110;70;3;1;0;0;1;1
+95160;17425;2;170;81.0;120;80;1;1;1;0;1;0
+95161;16165;1;165;79.0;120;80;1;1;0;0;1;0
+95163;22655;2;160;59.0;160;100;1;1;0;1;1;1
+95164;19498;2;160;81.0;80;120;3;3;1;1;1;1
+95168;23368;1;161;79.0;160;100;3;3;0;0;1;1
+95169;15874;2;174;79.0;120;80;1;1;0;0;1;0
+95170;19973;1;180;57.0;120;80;1;1;0;0;1;0
+95171;20605;2;179;84.0;120;80;3;3;0;0;0;0
+95173;18950;2;172;90.0;110;70;1;1;0;0;1;0
+95174;17022;2;169;89.0;120;80;1;1;0;0;0;1
+95177;16138;1;160;55.0;90;60;1;1;0;0;1;0
+95180;21792;1;155;47.0;110;70;1;1;0;0;1;0
+95181;19532;1;163;65.0;110;70;1;1;0;0;0;0
+95183;22049;1;171;63.0;130;90;1;1;0;0;1;0
+95184;17956;2;177;101.0;150;90;1;1;1;0;1;1
+95185;15058;2;172;89.0;135;80;2;1;0;0;1;1
+95186;18904;1;165;67.0;110;80;1;1;0;0;1;1
+95188;20598;2;169;71.0;120;80;1;1;1;1;1;1
+95189;16222;2;165;79.0;180;100;1;1;1;1;1;1
+95190;21897;1;150;60.0;110;70;1;1;0;0;1;0
+95191;22319;1;165;84.0;150;90;2;1;0;0;1;0
+95195;19934;2;158;49.0;110;60;1;1;1;0;1;0
+95198;18126;1;158;90.0;140;90;1;3;0;0;1;1
+95200;20205;1;162;75.0;160;90;1;1;0;0;1;1
+95201;20516;1;159;58.0;120;80;1;1;0;0;1;1
+95203;18188;1;158;59.0;150;90;1;1;0;0;1;1
+95204;21266;1;162;78.0;140;90;1;3;0;0;1;1
+95208;22009;1;168;65.0;120;80;1;1;0;0;1;0
+95209;19026;1;162;67.0;130;80;3;3;0;0;1;0
+95210;19711;2;163;83.0;120;80;1;1;0;0;1;1
+95212;14732;1;146;49.0;90;60;1;1;0;0;1;0
+95213;16679;1;150;86.0;110;70;1;3;0;0;1;1
+95214;20467;1;170;75.0;120;80;2;1;0;0;0;1
+95215;14764;2;170;65.0;120;80;1;1;0;0;1;0
+95216;20212;1;172;74.0;120;80;1;1;0;0;0;1
+95217;17667;2;181;92.0;115;90;3;1;0;0;1;1
+95219;19554;1;161;74.0;120;80;1;1;0;0;1;1
+95220;21036;2;171;77.0;120;80;1;1;0;0;1;0
+95221;22650;1;165;56.0;120;80;1;1;0;0;0;1
+95222;23306;2;168;84.0;120;80;1;2;0;1;0;1
+95223;19215;2;164;80.0;130;80;1;2;1;0;1;1
+95224;21730;2;167;58.0;160;90;1;1;0;0;1;1
+95225;20539;2;167;112.0;160;1000;3;1;0;0;1;1
+95226;16623;2;170;83.0;120;80;2;1;0;0;1;1
+95227;21353;1;162;65.0;120;80;1;1;0;0;1;0
+95230;20917;2;170;82.0;140;80;1;1;1;0;1;1
+95231;18036;1;167;70.0;120;80;1;1;0;0;1;0
+95232;20531;1;165;60.0;120;80;1;1;0;0;1;1
+95233;18043;1;159;54.0;100;60;1;1;0;0;1;0
+95234;21878;2;171;91.0;140;90;3;3;0;0;1;0
+95235;16634;2;168;76.0;120;80;1;1;0;0;1;0
+95236;19044;2;170;80.0;120;80;1;1;1;0;1;0
+95238;20303;2;168;55.0;120;80;1;1;0;0;1;1
+95240;17323;2;174;76.0;120;80;1;1;0;0;1;0
+95241;21922;2;168;85.0;140;90;3;1;0;0;1;1
+95242;23380;1;158;68.0;120;80;1;1;0;0;1;1
+95243;23339;2;170;64.0;120;80;1;1;0;0;1;1
+95248;16661;1;168;65.0;120;65;1;1;0;0;1;1
+95250;21924;2;169;63.0;140;90;1;1;0;0;1;1
+95251;19676;1;164;90.0;120;80;1;1;0;0;0;1
+95252;14364;1;170;72.0;120;80;1;1;0;0;1;0
+95253;18050;1;168;63.0;140;90;2;1;0;0;1;1
+95255;21828;1;170;99.0;120;80;1;1;0;0;1;1
+95256;21914;1;164;76.0;140;80;3;1;0;0;1;1
+95258;19602;1;160;80.0;110;70;1;1;0;0;1;0
+95260;17451;2;166;91.0;120;80;1;1;0;0;1;0
+95261;19018;2;174;72.0;120;80;1;1;0;0;1;0
+95264;18146;1;167;66.0;120;80;1;1;0;0;1;0
+95266;21376;2;157;65.0;120;80;1;1;0;0;1;1
+95267;18390;1;157;80.0;120;80;1;1;0;0;1;0
+95269;20951;1;157;68.0;120;80;1;1;0;0;1;1
+95272;19195;1;155;81.0;120;80;1;2;0;0;0;1
+95273;22392;2;164;65.0;140;80;3;1;1;1;0;0
+95274;20367;1;153;91.0;120;80;3;1;0;0;0;1
+95275;22602;2;167;67.0;120;90;3;1;0;0;1;1
+95277;20280;2;185;95.0;140;90;1;1;0;0;1;0
+95279;14840;1;157;62.0;110;70;1;1;0;0;0;0
+95282;21783;1;160;73.0;110;70;1;1;0;0;1;1
+95286;21958;2;160;80.0;160;1000;1;1;0;0;1;1
+95287;18776;2;180;77.0;110;80;1;1;0;0;1;0
+95289;21990;2;170;78.0;120;80;1;1;0;0;1;0
+95290;22463;1;167;66.0;120;80;1;1;0;0;0;0
+95295;23507;2;166;86.0;130;90;1;1;1;0;1;1
+95296;16195;2;171;75.0;110;80;1;1;0;0;1;0
+95297;20415;1;167;58.0;160;80;1;1;0;0;0;1
+95298;22366;1;165;125.0;130;80;1;1;0;0;0;1
+95299;20512;1;162;74.0;14;70;1;1;0;0;1;0
+95300;22054;1;165;90.0;140;90;1;2;0;0;0;1
+95301;21782;2;170;93.0;120;90;1;1;0;1;1;1
+95302;17531;1;168;78.0;120;79;1;1;0;0;1;0
+95304;17392;1;161;65.0;100;70;1;1;0;0;1;1
+95305;23391;2;179;79.0;120;80;1;1;0;0;1;1
+95306;22550;2;165;90.0;120;80;1;2;0;0;0;0
+95307;21957;1;163;82.0;120;80;1;1;0;0;1;1
+95308;20516;1;165;55.0;140;90;2;2;0;0;1;0
+95309;19848;1;156;84.0;120;80;1;1;0;0;1;0
+95310;23222;1;160;79.0;140;80;2;1;0;0;1;1
+95311;21182;1;157;126.0;140;90;3;3;0;0;0;0
+95312;21704;1;159;51.0;120;80;1;1;0;0;0;0
+95314;21751;2;170;90.0;130;70;2;1;0;0;1;1
+95315;20563;1;164;78.0;150;90;1;1;0;0;1;1
+95316;19693;1;161;90.0;150;90;1;1;0;0;0;0
+95319;21129;2;169;76.0;140;80;1;1;0;0;1;0
+95320;19187;1;162;93.0;120;80;1;1;0;0;1;0
+95321;20393;1;167;65.0;100;70;1;1;0;0;1;0
+95323;17432;1;163;66.0;120;80;2;1;0;0;1;0
+95324;19762;2;167;102.0;160;1000;2;1;1;0;1;1
+95327;19645;1;180;75.0;120;80;1;1;0;0;1;0
+95328;17644;2;154;65.0;130;90;2;2;0;0;1;1
+95329;16553;2;170;110.0;150;100;2;1;1;0;1;1
+95330;16756;1;160;60.0;120;80;1;1;0;0;1;0
+95331;20954;2;161;64.0;130;1000;2;1;1;1;1;0
+95332;18229;1;160;65.0;140;90;2;1;0;0;1;1
+95333;14462;1;160;50.0;110;70;1;1;0;0;0;0
+95336;16658;1;161;59.0;120;80;1;1;0;0;1;0
+95337;19090;2;168;74.0;140;90;1;1;0;1;1;0
+95340;19009;1;167;105.0;120;80;1;1;0;0;1;0
+95341;19894;1;174;72.0;120;70;3;3;0;0;1;0
+95342;20333;2;168;67.0;140;90;1;1;0;0;1;0
+95343;21604;1;157;90.0;110;80;1;1;0;0;1;1
+95344;14581;2;160;60.0;120;80;1;1;0;0;1;0
+95345;20335;1;151;50.0;110;70;3;3;0;0;1;0
+95346;19106;2;180;97.0;143;89;2;3;1;1;1;0
+95347;15176;1;162;85.0;120;80;1;1;0;0;0;1
+95349;19864;2;170;83.0;150;87;1;1;0;0;1;1
+95351;19818;1;156;60.0;130;80;3;3;0;0;1;1
+95352;22169;1;168;69.0;120;80;1;1;0;0;0;0
+95354;19747;1;160;89.0;120;80;1;1;0;0;0;1
+95355;21219;1;165;58.0;110;60;1;1;0;0;1;0
+95356;16029;1;168;51.0;120;80;1;1;0;0;1;0
+95357;20496;1;160;67.0;120;80;1;1;0;0;1;0
+95358;15977;2;167;72.0;130;70;1;1;0;0;0;1
+95359;21798;1;155;82.0;160;90;2;1;0;0;1;1
+95360;20442;1;158;71.0;120;90;1;3;0;0;0;0
+95361;16888;1;171;76.0;120;80;1;1;0;0;1;0
+95363;23307;1;156;104.0;120;70;1;1;0;0;1;0
+95364;20959;1;161;85.0;120;80;3;3;0;0;0;1
+95365;20383;2;160;60.0;120;80;1;1;0;0;1;1
+95366;18130;1;151;74.0;120;90;1;1;0;0;1;0
+95367;23422;1;158;51.0;100;70;1;2;0;0;1;0
+95368;21876;1;167;57.0;120;70;1;1;0;0;1;0
+95370;16532;2;172;75.0;120;80;1;1;0;0;1;0
+95371;19670;2;165;79.0;110;70;1;1;0;0;0;0
+95372;16338;2;170;70.0;110;70;1;1;0;0;1;0
+95373;17245;1;151;47.0;100;70;1;1;0;0;0;1
+95374;21828;1;160;76.0;120;80;2;1;0;1;1;0
+95375;21155;1;165;65.0;120;80;1;1;0;0;1;0
+95377;20328;1;158;87.0;110;70;1;1;0;0;1;1
+95378;15979;2;172;76.0;120;80;1;1;1;1;1;0
+95379;16220;1;170;74.0;120;80;1;1;0;0;0;1
+95382;14595;1;158;67.0;110;70;2;1;0;0;1;0
+95383;19673;1;150;80.0;130;90;1;1;1;0;1;1
+95384;18889;1;166;79.0;150;100;2;2;1;0;1;1
+95385;22599;1;163;52.0;140;80;1;1;0;0;1;1
+95386;16217;1;169;66.0;120;80;1;1;0;0;1;1
+95389;22558;1;158;65.0;130;80;1;1;0;0;1;1
+95391;21696;1;171;81.0;160;90;3;3;0;0;1;1
+95393;23264;1;153;62.0;110;70;2;1;0;0;0;1
+95394;19776;2;175;94.0;120;80;1;1;0;0;1;0
+95395;21162;1;168;68.0;120;80;1;1;0;0;1;0
+95396;22906;2;170;70.0;120;80;1;1;0;0;1;0
+95397;20962;1;148;41.0;110;80;1;1;0;0;1;0
+95398;16790;2;177;98.0;140;100;2;1;0;0;1;0
+95399;18743;2;174;69.0;130;80;3;1;0;0;1;1
+95400;14764;1;160;60.0;120;80;3;3;0;0;1;0
+95403;22037;1;155;64.0;100;60;1;1;0;0;1;0
+95404;22630;1;160;51.0;150;90;2;1;0;0;0;0
+95405;21757;1;167;68.0;140;80;3;3;0;0;1;1
+95407;21825;1;156;70.0;150;80;2;1;0;0;1;1
+95410;14751;1;161;58.0;140;80;1;1;0;0;0;1
+95411;20371;2;178;82.0;160;80;1;1;1;1;1;1
+95412;22521;1;150;89.0;130;90;3;1;0;0;1;1
+95414;21368;1;164;85.0;110;80;3;1;0;0;1;1
+95415;15378;2;180;84.0;145;85;1;1;1;1;1;1
+95416;17484;1;159;65.0;110;70;1;1;1;0;1;0
+95417;21795;1;161;66.0;120;70;3;1;0;0;1;1
+95418;15862;1;150;64.0;110;70;1;1;0;0;1;0
+95419;16695;1;155;110.0;120;90;1;1;0;0;1;0
+95422;18115;2;180;145.0;130;90;1;1;0;0;1;0
+95423;23302;1;160;84.0;180;90;1;1;0;0;1;1
+95424;21070;2;159;63.0;140;80;1;1;1;0;1;0
+95426;14691;1;164;85.0;140;90;1;1;0;0;1;1
+95427;16967;2;174;60.0;100;60;1;1;1;1;0;0
+95428;19564;1;165;50.0;120;70;1;1;0;0;1;0
+95429;19455;1;168;70.0;120;80;1;1;0;0;1;1
+95430;18267;2;170;73.0;100;60;2;1;0;0;1;0
+95431;19000;1;165;91.0;140;100;3;1;0;1;1;0
+95433;18959;1;158;80.0;140;90;1;1;0;0;1;0
+95434;19681;2;171;80.0;120;80;1;1;1;0;1;0
+95436;16768;1;161;69.0;150;90;1;2;0;0;1;1
+95437;20751;1;159;64.0;120;80;3;3;0;0;1;0
+95438;16094;1;168;68.0;140;90;1;1;0;0;1;1
+95439;18316;1;160;55.0;120;90;1;1;0;0;1;0
+95442;19491;2;162;80.0;110;80;1;1;0;1;1;1
+95443;15316;1;164;68.0;120;80;1;1;0;0;0;0
+95444;21974;1;169;58.0;120;80;1;1;0;0;1;1
+95445;18895;2;176;64.0;100;60;1;1;0;0;1;0
+95446;22034;2;154;69.0;160;1000;1;1;0;0;1;1
+95447;18252;2;185;62.0;130;80;1;1;1;1;1;0
+95448;20317;1;153;73.0;140;100;1;1;0;0;1;1
+95449;19244;1;163;71.0;120;80;1;1;0;0;1;0
+95451;18796;1;163;71.0;110;70;2;1;0;0;1;1
+95454;22478;1;158;88.0;150;100;1;1;0;0;1;1
+95455;23249;1;162;84.0;150;90;1;1;0;0;1;1
+95456;21110;1;157;99.0;140;90;3;3;0;0;0;1
+95458;20517;2;177;101.0;140;90;1;1;1;0;1;1
+95459;19694;1;172;63.0;120;70;1;1;0;0;1;0
+95461;16009;2;174;77.0;120;70;1;1;1;0;1;0
+95462;23085;1;162;80.0;140;90;1;1;0;0;1;1
+95463;18367;1;155;60.0;120;80;1;1;0;0;1;0
+95464;19874;2;175;108.0;130;80;3;1;1;0;1;1
+95465;20548;1;154;80.0;160;90;1;2;0;0;1;1
+95466;20568;1;156;60.0;120;80;1;1;0;0;1;1
+95468;22556;1;178;105.0;130;90;3;3;0;0;1;1
+95469;21749;2;173;70.0;130;90;1;1;0;1;1;1
+95470;22493;1;155;75.0;120;90;1;1;0;0;1;1
+95471;14598;1;162;54.0;120;80;1;1;0;0;1;0
+95472;16712;1;156;77.0;120;80;1;1;0;0;1;1
+95473;22069;1;162;75.0;145;90;1;1;0;0;1;0
+95474;14370;2;166;58.0;90;60;1;1;0;0;1;0
+95476;22613;2;176;84.0;120;70;1;1;0;0;1;0
+95477;18328;2;167;68.0;120;80;1;1;0;0;0;0
+95478;19724;2;170;65.0;100;60;1;1;0;0;1;0
+95479;20569;2;174;80.0;130;80;1;1;0;0;1;0
+95480;20414;1;155;97.0;120;80;1;1;0;0;1;0
+95481;17384;2;168;72.0;120;80;1;1;1;1;1;0
+95482;21653;1;164;70.0;140;90;2;2;0;0;1;1
+95484;15857;1;155;77.0;170;1000;2;1;0;0;1;1
+95485;22511;2;162;81.0;130;80;3;3;0;0;1;0
+95487;18292;1;168;69.0;120;80;1;1;0;0;1;0
+95488;14533;2;175;88.0;120;79;1;1;1;0;1;0
+95489;21868;2;166;78.0;150;90;2;1;0;0;1;1
+95490;20940;1;146;45.0;110;70;1;1;0;1;1;1
+95491;19702;1;151;97.0;150;90;1;1;0;0;1;1
+95492;20343;2;185;87.0;125;80;1;1;0;0;0;0
+95494;16843;1;158;56.0;90;60;1;1;0;0;0;0
+95495;17572;1;165;65.0;110;70;1;1;0;0;1;1
+95496;15999;1;167;68.0;115;70;1;1;0;0;1;0
+95498;22588;1;168;74.0;150;90;2;1;0;0;1;1
+95499;18778;1;157;56.0;120;80;2;1;0;0;1;1
+95500;21883;2;167;90.0;110;70;1;1;0;1;1;1
+95501;23289;2;171;91.0;150;100;2;2;0;0;1;1
+95502;21693;1;163;73.0;100;70;1;1;0;0;1;1
+95504;23303;2;162;65.0;150;90;2;2;1;0;1;1
+95505;23179;2;175;75.0;150;80;2;1;0;0;1;1
+95506;20716;2;180;80.0;150;90;1;1;0;0;1;1
+95507;21278;1;162;97.0;120;80;1;1;0;0;1;0
+95508;22579;2;168;74.0;135;101;1;1;0;0;1;1
+95509;19133;2;183;99.0;140;90;3;3;0;0;1;1
+95510;19588;1;155;60.0;140;90;1;1;0;0;1;0
+95512;18826;1;161;61.0;120;80;1;1;0;0;1;0
+95513;21884;2;165;66.0;120;80;1;1;0;0;1;0
+95515;17325;2;166;74.0;150;90;1;1;1;1;1;1
+95518;21605;1;152;80.0;100;80;1;1;0;0;0;0
+95519;16680;2;170;70.0;140;90;1;1;0;0;0;0
+95520;19072;2;172;74.0;100;60;1;1;0;0;1;0
+95522;22474;1;160;79.0;110;60;1;1;0;0;1;1
+95524;20552;1;170;90.0;140;90;1;1;0;0;1;0
+95525;23305;2;167;99.0;130;80;1;1;1;0;1;0
+95527;16113;2;182;87.0;140;90;1;1;0;0;1;0
+95528;19055;1;161;69.0;120;80;2;2;0;0;1;0
+95530;16827;2;167;78.0;170;120;1;2;0;0;1;1
+95531;18337;1;160;72.0;120;80;2;1;0;0;1;1
+95533;16944;2;185;75.0;130;90;1;1;0;0;1;1
+95536;18206;1;146;50.0;150;100;1;1;0;0;0;1
+95537;16796;2;175;70.0;110;80;1;1;0;0;1;0
+95538;20468;2;179;79.0;110;70;1;1;0;0;1;0
+95539;21317;1;150;50.0;120;80;1;1;0;0;1;0
+95540;23233;1;161;68.0;110;70;1;1;0;0;1;0
+95541;21420;2;172;80.0;120;80;1;1;0;0;1;0
+95542;15352;1;157;60.0;110;80;1;1;0;0;0;0
+95543;21879;1;165;70.0;120;70;1;1;0;0;1;0
+95544;19605;1;159;66.0;120;80;1;1;0;0;0;1
+95547;20468;2;168;78.0;120;80;1;1;1;0;1;1
+95549;23260;2;170;134.0;140;100;3;3;0;0;1;0
+95550;21877;1;152;66.0;170;100;3;1;0;0;1;1
+95552;20366;2;172;89.0;130;90;2;1;0;0;1;0
+95553;18327;1;158;54.0;120;80;1;1;0;0;1;0
+95554;15954;2;174;75.0;120;80;1;1;0;0;1;0
+95555;18201;2;168;69.0;120;80;1;1;0;0;1;1
+95556;19029;1;170;75.0;120;80;1;1;0;0;1;0
+95559;19654;1;157;59.0;110;80;1;1;0;0;1;0
+95560;21928;1;165;90.0;100;70;3;3;0;0;1;1
+95561;19242;1;165;89.0;120;80;1;1;0;0;1;0
+95562;15106;1;160;75.0;110;70;1;1;0;0;1;0
+95563;19065;2;165;70.0;170;110;1;1;0;0;0;1
+95567;16262;1;168;68.0;120;80;1;1;0;0;1;0
+95568;22127;2;178;85.0;120;80;1;1;0;0;0;1
+95569;16114;2;169;80.0;100;70;1;1;0;0;1;1
+95570;20265;1;168;84.0;120;80;1;1;0;0;1;0
+95572;22488;2;187;77.0;150;1000;2;1;1;1;1;1
+95574;20217;2;160;60.0;120;80;3;1;0;0;1;1
+95575;22524;1;155;93.0;140;90;1;1;0;0;1;1
+95577;21130;1;165;69.0;140;90;1;1;0;0;1;0
+95578;20987;1;159;66.0;140;90;2;1;0;0;1;1
+95580;23337;1;160;65.0;130;80;1;1;0;0;0;1
+95581;16889;1;163;76.0;110;70;1;1;0;0;1;0
+95586;21830;2;169;68.0;110;70;1;1;1;0;1;0
+95588;23190;2;180;104.0;150;100;1;2;0;0;1;1
+95590;20427;2;179;84.0;160;90;1;1;0;0;1;0
+95591;18979;1;158;84.0;120;80;1;1;0;0;1;0
+95592;19573;2;169;70.0;150;80;1;1;0;0;1;0
+95593;21047;1;158;89.0;140;80;1;1;0;0;1;1
+95594;19630;2;165;106.0;120;80;1;1;0;0;0;0
+95596;21893;2;170;62.0;150;100;1;1;1;0;1;1
+95598;17291;1;156;93.0;110;70;1;1;0;0;1;0
+95600;21100;2;170;80.0;110;70;1;2;1;1;1;0
+95601;19668;2;183;115.0;140;90;3;3;1;0;1;1
+95602;19701;1;156;67.0;120;80;1;1;0;0;1;0
+95603;19713;1;165;62.0;120;80;1;1;0;0;0;0
+95605;22041;1;170;68.0;120;80;1;2;0;0;1;0
+95606;17355;1;140;40.0;120;90;1;1;0;1;1;1
+95607;15917;2;172;98.0;120;80;1;1;0;0;0;0
+95608;14684;1;172;80.0;120;80;1;1;0;0;1;0
+95610;21167;1;160;59.0;140;90;1;1;0;0;1;0
+95611;15356;2;178;85.0;120;80;1;1;0;0;0;0
+95613;23483;1;162;56.0;120;80;1;1;0;0;1;0
+95615;18965;2;173;67.3;110;90;1;1;0;0;1;0
+95616;20450;1;152;84.0;160;90;3;1;0;0;1;1
+95618;21647;1;170;68.0;150;100;1;1;0;0;0;1
+95619;17537;1;165;68.0;120;80;1;1;0;0;1;0
+95620;21266;2;179;80.0;140;80;2;2;0;0;1;1
+95621;17664;1;162;110.0;120;80;1;1;0;0;1;1
+95622;21744;1;165;68.0;120;80;1;1;0;0;1;0
+95623;18997;1;152;81.0;110;60;1;1;0;0;1;0
+95624;14714;2;167;74.0;120;80;1;1;0;0;0;0
+95625;18993;1;168;50.0;110;70;1;1;0;0;0;0
+95628;22539;2;173;83.0;110;80;1;1;0;0;0;0
+95629;19869;1;174;70.0;130;85;3;3;0;0;1;1
+95630;16179;1;157;53.0;110;90;1;1;0;0;1;0
+95631;20322;1;154;50.0;180;90;1;1;0;0;1;1
+95632;20402;1;146;60.0;120;80;1;1;0;0;1;0
+95634;23376;2;165;75.0;120;80;1;1;0;0;1;1
+95635;18947;2;168;59.0;120;80;1;1;0;0;1;1
+95637;15886;1;162;73.0;120;80;1;1;0;0;1;1
+95638;21285;1;158;62.0;150;1000;1;1;0;0;1;1
+95639;21765;1;162;67.0;120;80;3;1;0;0;1;1
+95640;21229;1;169;86.0;120;80;2;1;0;0;1;0
+95641;15867;2;172;73.0;140;90;3;3;0;0;1;1
+95642;22448;1;150;52.0;130;80;1;1;0;0;1;1
+95643;19996;1;168;70.0;100;80;1;1;0;0;1;1
+95645;18999;1;157;49.0;110;80;1;1;0;0;1;0
+95646;16999;2;174;73.0;140;90;1;1;0;0;1;1
+95647;22059;1;150;123.0;140;90;1;1;0;0;1;1
+95648;16115;1;153;70.0;120;80;2;1;0;0;1;0
+95649;23386;2;159;67.0;130;90;1;1;0;0;1;1
+95651;22590;1;160;94.0;140;90;1;1;0;0;1;1
+95652;21257;1;168;65.0;120;80;3;3;0;0;1;0
+95653;21972;1;170;70.0;120;80;1;1;0;0;1;1
+95656;19526;1;155;79.0;120;80;1;1;0;0;1;0
+95657;19744;2;168;76.0;130;80;1;1;0;1;1;1
+95658;18863;1;158;108.0;180;100;3;3;0;0;1;1
+95659;20305;1;167;72.0;140;90;3;1;0;0;1;1
+95660;16716;1;165;68.0;120;70;1;1;0;0;1;0
+95661;18323;2;174;76.0;130;80;1;1;1;0;1;1
+95662;15151;1;168;57.0;130;80;1;1;0;0;1;0
+95663;17590;1;165;65.0;120;90;1;1;0;0;0;0
+95664;20022;1;165;85.0;120;80;2;2;0;0;1;1
+95665;18970;1;157;58.0;160;110;1;1;0;0;1;1
+95667;21999;1;156;62.0;120;80;1;1;0;0;0;1
+95669;17703;1;151;61.0;120;80;1;1;0;0;1;0
+95671;18705;1;152;80.0;120;80;2;1;0;0;1;1
+95672;20370;1;158;80.0;120;70;1;1;0;0;0;1
+95673;16579;1;167;100.0;150;100;1;1;0;0;1;1
+95674;22672;2;176;83.0;130;90;2;2;0;0;1;1
+95675;20367;1;162;90.0;130;80;3;1;0;0;0;1
+95677;20183;2;167;90.0;120;80;1;1;0;0;0;0
+95679;16203;2;175;105.0;150;80;1;1;0;0;1;1
+95680;20414;1;152;85.0;120;80;2;1;0;0;1;1
+95681;19606;1;156;53.0;140;90;3;1;0;0;1;0
+95682;15426;2;170;62.0;120;80;1;1;0;0;0;0
+95683;19896;1;167;57.0;130;80;1;1;0;0;1;1
+95685;21943;2;165;73.0;140;90;1;1;1;0;1;1
+95686;18055;1;163;80.0;150;80;1;1;0;0;1;1
+95687;19710;1;170;96.0;110;80;1;1;0;0;1;0
+95688;21003;2;165;63.0;120;80;1;1;0;0;0;1
+95691;19437;2;161;71.0;120;80;2;1;0;0;1;0
+95692;21804;1;162;98.0;130;80;1;3;0;0;1;0
+95693;20419;1;153;75.0;120;80;1;1;0;0;1;0
+95695;21204;1;152;75.0;140;90;2;1;0;0;1;1
+95696;17324;1;163;65.0;130;80;1;1;0;1;1;1
+95697;23238;1;148;84.0;170;100;2;1;0;0;0;1
+95699;17598;1;169;80.0;130;90;2;1;1;1;1;1
+95700;19578;2;173;68.0;130;80;1;1;0;0;0;0
+95701;22349;1;155;109.0;150;90;3;1;0;0;0;1
+95702;21165;1;158;91.0;130;90;1;1;0;0;1;1
+95703;16145;1;164;78.0;150;70;3;2;0;0;1;1
+95704;23282;1;162;73.0;150;90;1;1;0;0;1;1
+95705;20527;1;151;80.0;140;90;1;1;0;0;1;1
+95706;18132;1;165;114.0;130;90;1;3;0;0;1;0
+95708;15282;2;165;66.0;120;80;1;1;0;0;1;0
+95709;23276;2;170;80.0;130;80;3;1;0;0;1;1
+95710;17692;2;169;78.0;120;80;1;1;0;0;1;0
+95711;18057;1;161;65.0;120;90;1;2;0;0;1;1
+95713;14359;2;172;61.0;100;80;1;1;0;0;0;0
+95717;19167;2;170;70.0;120;70;1;1;0;0;1;0
+95718;18495;1;176;72.0;120;90;1;1;0;0;1;1
+95720;18229;1;155;50.0;100;80;1;1;0;0;1;1
+95723;21384;1;174;97.0;120;80;1;1;0;0;1;0
+95725;22604;1;163;67.0;140;90;1;1;0;0;0;1
+95727;21032;1;160;69.0;120;80;1;1;0;0;1;1
+95728;20292;2;169;88.0;140;90;2;1;0;0;1;1
+95729;22657;2;169;71.0;120;80;1;1;0;0;1;0
+95731;17346;1;164;55.0;120;79;3;1;0;0;0;1
+95732;19241;1;160;60.0;100;60;2;1;0;0;0;1
+95733;21106;1;160;106.0;120;80;2;1;0;0;1;1
+95734;17655;2;170;107.0;130;90;2;1;1;1;1;0
+95735;19445;1;170;68.0;120;80;1;1;0;0;1;1
+95737;21180;1;141;48.0;120;80;1;1;0;0;0;1
+95740;17484;1;157;93.0;120;80;1;1;0;0;1;0
+95741;22693;2;165;90.0;130;80;3;1;1;1;0;1
+95742;18459;1;149;60.0;120;80;1;1;0;0;0;1
+95744;15385;1;169;72.0;120;80;1;1;0;0;0;0
+95745;17278;1;151;51.0;140;90;1;1;0;0;1;1
+95746;21331;1;180;70.0;120;80;1;1;0;0;1;0
+95747;16780;1;168;73.0;120;80;1;1;0;0;1;0
+95748;18148;1;160;88.0;150;1000;3;1;0;0;1;1
+95749;19575;2;167;90.0;150;100;2;1;0;0;0;1
+95751;20296;1;159;46.0;120;70;3;1;0;0;1;1
+95752;23382;1;154;64.0;140;90;1;1;0;0;0;1
+95754;21052;1;156;80.0;140;80;1;1;0;0;1;1
+95755;16647;1;170;64.0;120;80;1;2;0;1;1;1
+95757;20587;1;170;85.0;110;60;1;1;0;0;1;1
+95758;20526;1;157;81.0;130;80;1;1;0;0;1;1
+95760;20319;1;164;84.0;110;80;1;1;0;0;1;0
+95761;19628;2;169;79.0;140;80;2;2;0;0;1;1
+95762;17965;2;167;79.0;180;100;2;1;0;0;1;1
+95763;16813;2;165;68.0;130;80;1;2;0;0;0;0
+95765;21418;2;170;75.0;120;80;2;1;0;0;1;0
+95766;18145;2;175;98.0;110;90;3;3;0;0;0;1
+95767;21273;2;168;77.0;120;70;1;1;0;0;1;0
+95768;19075;1;160;86.0;120;70;3;1;0;0;1;0
+95769;20519;2;162;70.0;130;90;1;1;0;0;1;1
+95770;18123;1;167;60.0;110;70;1;1;0;0;1;0
+95771;18849;1;175;89.0;120;80;1;1;0;0;1;0
+95774;17376;1;158;82.0;110;80;1;1;0;0;1;0
+95775;22103;2;160;60.0;120;80;1;1;0;0;1;0
+95777;18913;1;160;57.0;110;90;1;1;0;0;1;1
+95778;16947;1;144;92.0;90;60;1;1;0;0;1;0
+95779;21885;1;166;68.0;130;90;1;1;0;0;1;1
+95784;21938;1;168;69.0;140;80;1;1;0;0;0;1
+95785;20171;2;166;101.0;150;1000;1;1;0;0;1;1
+95787;16126;1;170;79.0;120;80;1;1;0;0;1;0
+95788;21859;1;155;53.0;120;80;1;1;0;0;1;0
+95789;18091;1;164;114.0;120;80;1;1;0;0;1;1
+95790;21126;2;167;75.0;140;90;1;1;1;0;0;1
+95791;23416;2;168;54.0;120;80;1;1;0;0;1;0
+95792;17493;1;157;73.0;110;70;1;1;0;0;1;0
+95793;23494;1;145;81.0;160;100;1;1;0;0;0;1
+95794;17557;2;159;47.0;110;70;1;1;0;0;0;0
+95795;14308;2;177;91.0;140;80;1;1;0;0;1;1
+95799;23517;1;164;87.0;160;1000;1;1;0;0;0;1
+95800;18222;2;168;99.0;120;80;1;2;1;0;1;1
+95801;18213;1;168;76.0;140;90;1;1;0;0;1;1
+95802;19054;1;160;65.0;150;90;1;2;1;0;1;1
+95803;23261;1;159;86.0;130;80;2;2;0;0;1;1
+95804;17616;1;157;81.0;120;80;1;1;0;0;1;0
+95805;18053;1;155;94.0;140;70;1;1;0;0;0;1
+95806;19634;1;169;65.0;120;80;1;1;0;0;1;1
+95807;16649;1;165;92.0;150;90;1;1;0;0;1;1
+95808;21867;1;170;110.0;140;90;1;1;0;0;0;0
+95810;17607;1;178;70.0;120;70;1;1;0;0;1;0
+95811;17558;1;162;52.0;120;70;1;1;0;0;0;0
+95816;14475;2;172;81.0;140;90;1;1;1;0;1;1
+95818;23153;2;158;64.0;110;70;1;1;0;0;1;0
+95819;16094;2;183;81.0;120;100;1;1;0;0;1;1
+95820;17628;2;169;89.0;120;80;1;1;1;0;1;0
+95821;16222;2;178;146.0;140;1100;1;1;1;0;1;1
+95822;20950;2;161;95.0;180;80;1;1;0;0;1;1
+95823;16081;1;170;65.0;140;90;2;1;0;0;1;1
+95826;18920;1;174;72.0;120;80;1;1;0;0;1;0
+95827;17006;1;168;65.0;140;80;1;1;0;0;1;1
+95829;17769;1;165;65.0;120;80;3;3;0;0;1;1
+95831;23059;2;180;104.0;140;90;3;1;0;0;1;1
+95835;14390;1;159;69.0;130;80;1;1;0;0;1;0
+95836;18863;1;175;68.0;140;90;1;1;0;0;1;1
+95837;20244;1;165;61.0;120;80;1;1;0;0;1;0
+95838;19770;2;170;95.0;120;80;1;1;0;0;1;1
+95840;18232;1;168;77.0;140;90;1;1;0;0;1;0
+95841;15426;1;164;59.0;130;80;1;1;0;0;1;0
+95843;18922;1;159;79.0;140;90;1;1;0;0;1;1
+95844;22023;2;168;69.0;120;80;1;1;0;0;1;0
+95845;16975;2;165;80.0;150;90;1;1;0;0;0;1
+95849;15975;1;158;58.0;11;70;1;1;0;0;1;0
+95852;22171;2;164;69.0;120;80;1;1;0;0;1;0
+95855;19746;1;160;87.0;140;90;2;1;0;1;1;1
+95856;22400;1;160;80.0;150;90;2;1;0;0;1;1
+95857;22639;1;159;65.0;140;90;2;1;0;0;0;1
+95858;21711;1;170;69.0;120;80;1;1;0;0;1;1
+95860;18131;2;180;96.0;150;90;1;1;0;0;1;1
+95862;20340;2;163;83.0;140;80;1;1;1;0;1;1
+95864;19626;2;169;79.0;120;80;1;3;0;0;1;0
+95865;21260;2;170;80.0;120;70;1;1;0;0;1;1
+95866;19567;2;170;81.0;150;1000;1;2;1;1;1;1
+95867;22804;1;150;76.0;120;70;1;1;0;0;1;1
+95868;21860;1;160;68.0;130;80;1;1;0;0;1;1
+95869;15290;2;170;90.0;130;80;1;1;0;0;1;0
+95870;23174;1;151;65.0;140;90;3;1;0;0;1;1
+95871;18107;1;153;70.0;160;90;1;1;0;0;1;1
+95872;16212;2;170;90.0;130;90;1;1;0;0;1;1
+95873;15307;1;169;58.0;110;70;1;1;0;0;1;1
+95874;14315;1;167;112.0;130;90;1;1;0;0;1;0
+95876;17979;2;175;70.0;100;80;1;1;0;0;1;0
+95877;19770;1;160;131.0;120;80;3;3;0;0;1;1
+95882;19871;1;161;67.0;130;90;2;1;0;0;0;0
+95883;15050;2;158;50.0;120;80;1;1;0;0;1;1
+95884;22548;2;160;55.0;120;100;3;1;1;1;1;1
+95885;20332;1;161;90.0;150;100;1;1;0;0;1;1
+95886;18469;2;165;68.0;113;5700;1;1;0;0;1;0
+95887;20333;1;169;70.0;140;100;2;2;0;0;0;1
+95888;18193;1;156;55.0;110;70;1;1;0;0;1;0
+95890;16789;1;168;74.0;110;70;1;1;0;0;1;0
+95891;20513;2;165;55.0;120;80;1;1;0;0;0;0
+95892;18949;1;157;89.0;154;104;1;1;0;0;1;1
+95893;16599;2;170;70.0;120;80;1;1;1;0;1;0
+95894;21917;1;170;71.0;120;80;1;1;0;0;1;0
+95896;22583;1;150;57.0;130;80;1;1;0;0;1;1
+95897;20449;1;170;67.0;120;70;1;1;0;1;1;0
+95898;21809;2;190;99.0;130;90;1;1;0;0;1;1
+95900;18286;1;170;75.0;120;80;1;1;0;0;1;0
+95901;17472;1;160;79.0;120;80;1;3;0;0;1;0
+95903;18121;1;173;70.0;120;80;1;1;0;0;0;0
+95906;21916;1;162;80.0;120;80;1;1;0;0;1;0
+95907;18769;2;165;70.0;130;80;1;1;1;1;1;1
+95908;18179;1;148;67.0;130;80;1;2;0;0;1;0
+95909;15295;1;161;104.0;120;80;1;1;0;0;1;0
+95910;18866;1;168;73.0;120;80;1;1;0;0;1;1
+95913;19619;1;158;72.0;120;80;1;1;0;0;1;0
+95917;18830;2;174;100.0;160;100;1;1;0;0;1;1
+95918;15328;2;161;50.0;110;70;2;1;0;0;1;0
+95919;23527;2;164;59.0;120;90;1;1;1;0;1;1
+95920;18462;2;176;84.0;120;80;1;1;0;0;1;0
+95923;19182;1;178;85.0;120;80;1;1;0;0;0;1
+95927;18867;1;155;58.0;130;90;1;1;0;0;0;1
+95928;23433;1;156;67.0;140;90;1;1;0;0;1;1
+95929;19069;2;178;105.0;130;90;2;2;1;0;1;0
+95930;15469;1;158;63.0;120;80;1;1;0;0;1;0
+95931;20322;1;156;56.0;110;60;1;1;0;0;1;0
+95933;21165;1;156;71.0;130;80;2;2;0;0;1;1
+95936;18910;1;163;69.0;180;80;1;1;0;0;0;1
+95937;15442;1;165;90.0;120;80;1;1;0;0;1;0
+95938;19882;1;162;75.0;120;80;1;1;0;0;1;1
+95939;17413;1;168;91.0;150;90;1;1;0;0;1;1
+95940;20347;1;162;92.0;130;90;1;1;0;0;1;1
+95941;21140;1;162;61.0;130;80;1;3;0;0;1;0
+95942;22089;1;165;63.0;120;80;1;1;0;0;1;1
+95943;20464;1;157;66.0;110;70;1;1;0;0;1;0
+95945;20493;1;165;58.0;100;70;1;1;0;0;1;0
+95946;21862;2;168;65.0;120;80;3;1;0;0;1;1
+95948;23267;2;175;62.0;140;90;2;1;0;0;1;1
+95950;19848;2;168;75.0;120;80;3;1;0;0;1;1
+95951;21858;1;158;83.0;110;70;2;1;0;0;1;1
+95952;16823;1;155;63.0;120;80;1;1;0;0;0;0
+95953;20968;1;169;93.0;120;80;2;1;0;0;0;1
+95955;22085;2;170;70.0;120;80;1;1;0;0;1;1
+95956;19670;1;158;94.7;150;90;2;1;0;0;1;0
+95957;21725;2;176;94.0;130;85;3;3;0;0;1;0
+95959;21702;2;170;69.0;140;90;1;1;0;0;1;1
+95963;21967;2;158;71.0;120;80;1;1;0;0;1;0
+95964;21104;2;172;100.0;160;100;1;2;0;0;1;1
+95965;17568;1;159;82.0;100;60;1;1;0;0;1;1
+95969;21790;1;170;74.0;140;90;1;1;0;0;1;1
+95970;19035;1;160;95.0;120;80;1;1;0;0;0;1
+95971;19561;1;157;93.0;140;80;3;1;0;0;1;0
+95972;21297;2;172;78.0;130;90;1;1;0;1;1;1
+95973;19126;1;162;70.0;120;80;1;1;0;0;1;1
+95974;19938;1;155;67.0;140;90;1;1;0;0;1;1
+95976;14643;1;150;54.0;110;60;1;1;0;0;1;0
+95977;23360;1;166;97.0;150;90;1;1;0;0;1;1
+95978;21269;1;152;59.0;140;100;1;1;0;0;1;1
+95981;22444;2;169;97.0;150;100;1;2;1;1;1;1
+95985;19045;1;159;58.0;120;80;1;1;0;0;1;0
+95989;21895;1;157;54.0;120;80;1;1;0;0;1;0
+95991;22805;1;161;47.0;120;79;1;1;0;0;1;0
+95992;20374;1;150;53.0;153;103;2;3;0;0;1;1
+95993;22456;1;164;80.0;120;80;2;1;0;0;1;1
+95995;20366;1;159;59.0;120;80;1;1;0;0;0;0
+95996;22125;2;173;93.0;130;90;1;3;0;0;0;0
+95997;19609;1;155;60.0;140;80;2;1;0;0;1;1
+95998;20943;1;170;75.0;120;80;1;1;0;0;1;0
+96001;22696;2;162;85.0;120;80;1;1;0;0;1;1
+96003;15934;2;171;86.0;170;101;2;2;0;0;1;0
+96004;15492;1;157;51.0;110;70;1;1;0;0;1;0
+96005;23405;1;164;100.0;150;100;3;1;0;0;1;0
+96007;19601;1;159;80.0;110;70;1;1;0;0;1;0
+96008;15843;1;163;62.0;110;80;1;1;0;0;1;0
+96010;19013;1;170;80.0;120;70;1;1;0;0;0;1
+96012;19170;2;175;81.0;130;90;1;1;0;0;1;1
+96016;20418;1;162;84.0;160;100;1;1;0;0;1;1
+96017;16236;1;162;86.0;120;80;1;1;0;0;1;1
+96018;15270;1;165;59.0;120;80;1;1;0;0;1;0
+96019;16897;1;162;72.0;145;80;1;1;0;0;1;1
+96021;17743;2;167;68.0;120;80;1;1;0;0;0;1
+96023;22062;2;160;76.0;140;90;1;1;1;1;0;1
+96024;14481;2;176;76.0;120;80;1;1;0;0;1;0
+96025;20457;2;169;71.0;120;80;1;1;1;0;1;1
+96026;23650;2;174;70.0;120;80;1;1;0;0;1;1
+96028;17495;2;176;92.0;130;70;2;1;1;0;1;1
+96030;22408;1;163;120.0;130;80;1;1;0;0;0;1
+96031;17418;1;178;85.0;120;80;1;1;0;0;1;0
+96032;22366;1;155;94.0;140;90;1;1;0;0;1;0
+96035;17440;1;164;127.0;130;70;1;2;0;0;1;0
+96036;16738;1;159;85.0;130;80;3;3;0;0;1;1
+96037;14632;2;165;75.0;120;80;1;1;0;0;1;0
+96038;15924;1;158;60.0;140;80;2;1;0;0;1;1
+96039;23242;1;171;65.0;140;80;1;1;0;0;0;1
+96040;16851;1;169;74.0;140;90;1;1;0;0;1;0
+96041;20291;1;151;65.0;140;80;1;1;0;0;1;1
+96043;21125;2;168;59.0;126;78;2;1;0;1;1;0
+96047;18865;1;165;80.0;160;90;3;1;0;0;1;0
+96049;20289;2;174;85.0;140;80;1;1;0;0;1;1
+96052;21337;1;158;85.0;130;80;3;3;0;0;1;1
+96054;19698;2;186;89.0;140;80;1;1;1;0;1;1
+96055;20599;1;149;48.0;110;70;1;1;0;0;1;0
+96056;22531;2;158;78.0;140;90;1;1;0;0;1;0
+96057;23353;2;167;91.0;140;90;3;1;1;0;1;1
+96058;16013;1;163;66.0;100;60;1;1;0;0;1;0
+96059;18545;1;163;56.0;120;90;2;3;0;0;1;1
+96060;15924;2;170;73.0;120;80;1;1;0;0;1;0
+96061;21239;1;169;70.0;120;75;1;1;0;0;0;1
+96062;20487;2;164;62.0;120;80;1;1;0;0;1;1
+96064;20472;2;167;82.0;160;90;2;2;0;0;1;1
+96065;17514;1;168;62.0;120;80;3;3;0;0;1;1
+96066;20183;1;152;69.0;150;100;2;2;0;1;0;1
+96069;19603;2;175;77.0;130;80;1;1;0;0;0;0
+96070;20546;2;166;56.0;120;70;1;1;0;0;1;0
+96071;20703;2;168;70.0;120;90;3;1;0;0;0;1
+96072;22707;2;182;112.0;170;100;1;1;0;0;1;1
+96073;16103;1;155;57.0;90;70;1;1;0;0;1;0
+96074;20434;1;166;87.0;160;100;2;2;1;0;1;1
+96076;19042;1;165;86.0;120;80;1;1;0;0;0;1
+96077;20544;1;175;84.0;110;70;1;1;0;0;1;0
+96078;21958;1;164;85.0;120;80;3;3;0;0;1;1
+96081;20549;2;172;71.0;110;70;2;1;0;0;1;1
+96082;23365;1;152;52.0;140;100;2;2;0;0;0;1
+96084;23538;2;181;85.0;140;80;1;1;0;0;1;1
+96085;21878;2;160;65.0;120;80;1;1;0;0;1;0
+96086;17581;2;172;90.0;110;80;1;1;1;0;1;0
+96088;16252;1;161;60.0;150;80;1;1;0;0;0;1
+96089;21328;1;156;84.0;160;100;3;3;0;0;1;1
+96090;16620;2;170;73.0;130;80;1;1;0;0;1;0
+96091;21128;1;146;52.0;120;80;1;1;0;0;1;0
+96092;16740;1;157;81.0;120;80;1;1;0;0;1;0
+96094;17490;2;174;92.0;160;92;1;1;0;0;1;1
+96095;21127;1;158;67.0;140;70;2;1;0;0;1;0
+96096;17960;1;165;69.0;120;80;1;1;0;0;1;0
+96097;19768;1;154;74.0;100;60;2;1;0;0;1;1
+96098;15220;1;156;82.0;160;70;1;1;0;0;1;1
+96099;19076;2;171;82.0;130;80;1;3;0;0;1;0
+96100;23131;2;179;82.0;140;80;1;1;0;0;1;1
+96101;22698;2;168;76.0;120;80;2;3;0;0;1;1
+96102;18086;1;161;85.0;110;70;3;1;0;0;1;1
+96103;14357;2;178;74.0;110;70;1;1;1;1;1;0
+96104;20541;1;157;80.0;140;80;1;3;0;0;1;1
+96106;15823;2;178;88.0;140;80;2;1;0;0;1;1
+96108;15107;1;156;60.0;130;90;3;3;0;0;1;1
+96109;21196;1;165;69.0;120;80;1;1;0;0;1;1
+96110;15396;2;150;60.0;120;80;1;1;0;0;1;1
+96111;18314;1;165;63.0;115;80;1;1;0;0;1;0
+96112;23195;2;168;63.0;120;80;3;3;1;0;1;0
+96113;19871;1;160;76.0;130;80;1;1;0;0;1;0
+96114;21909;1;170;84.0;190;80;2;1;0;0;1;1
+96115;23655;2;174;80.0;140;90;1;1;0;0;1;1
+96116;19075;2;187;96.0;120;80;2;2;1;0;1;1
+96117;18471;1;170;68.0;120;80;1;1;0;0;0;0
+96118;21867;2;172;68.0;120;80;1;1;0;0;0;0
+96119;22746;1;164;69.0;110;70;1;1;0;0;1;1
+96121;17549;2;172;86.0;140;90;1;1;0;0;1;1
+96122;19634;2;161;55.0;110;70;1;1;0;0;1;0
+96126;19057;1;155;100.0;150;90;3;1;0;0;0;1
+96128;19693;1;164;78.0;110;70;1;1;0;0;0;1
+96130;18295;2;171;79.0;130;90;1;1;0;0;0;1
+96131;22900;2;172;72.0;120;80;3;3;0;0;0;0
+96132;21284;2;171;88.0;140;100;2;1;0;0;1;1
+96133;18876;1;171;112.0;130;90;1;1;0;0;1;1
+96139;15903;2;191;92.0;150;100;1;1;1;1;1;1
+96140;14579;1;168;76.0;110;70;1;3;0;0;0;0
+96141;20864;2;169;98.0;130;80;1;1;0;0;1;0
+96142;21842;1;156;56.0;120;80;1;1;0;0;1;0
+96143;21176;1;169;65.0;120;80;1;2;0;0;1;0
+96144;19044;1;170;87.0;120;80;1;1;0;0;1;0
+96145;15881;1;154;61.0;120;80;1;1;0;0;1;0
+96149;16707;1;160;86.0;130;90;2;1;0;1;1;1
+96150;21851;1;165;105.0;140;80;1;1;0;0;1;1
+96152;18305;1;155;60.0;120;80;1;1;0;0;1;1
+96154;18417;2;191;87.0;110;70;1;1;0;0;1;0
+96155;17566;2;175;73.0;120;80;1;1;1;0;1;0
+96156;20291;2;168;63.0;110;80;1;1;1;0;1;1
+96158;15324;2;173;70.0;110;70;1;1;1;1;1;0
+96160;14623;1;158;55.0;110;80;1;1;0;0;1;0
+96162;20476;1;165;95.0;130;90;3;1;0;0;0;1
+96163;18365;2;181;86.0;130;80;1;1;1;0;1;0
+96164;15787;2;177;72.0;140;90;1;1;1;0;1;1
+96165;18846;2;169;92.0;120;80;1;1;0;0;1;0
+96167;20735;2;161;57.0;120;70;1;1;0;0;1;0
+96168;15187;2;168;62.0;110;70;1;1;0;0;1;0
+96169;20399;2;175;103.0;120;80;1;1;0;0;1;1
+96171;18508;1;152;56.0;110;70;1;1;0;0;1;1
+96172;21895;2;170;70.0;140;90;1;1;0;0;1;0
+96173;19729;1;155;70.0;120;80;1;1;0;0;1;1
+96174;20500;2;171;70.0;140;90;1;1;0;0;1;1
+96176;16102;1;166;66.0;120;80;1;1;0;0;1;0
+96178;18452;2;174;78.0;120;70;1;1;0;0;1;1
+96179;15949;1;152;54.0;100;70;1;1;0;0;1;0
+96183;23581;1;180;80.0;120;80;1;1;0;0;1;0
+96184;19681;1;164;54.0;120;80;1;1;0;0;1;0
+96185;23144;2;176;65.0;120;80;1;1;0;0;1;1
+96189;14654;1;160;76.0;100;80;1;1;0;0;1;0
+96190;19010;1;169;70.0;120;80;1;1;0;0;1;0
+96191;22900;1;155;75.0;120;80;1;2;0;0;1;0
+96192;21295;1;158;73.0;120;80;1;1;0;0;1;0
+96193;21163;1;151;79.0;200;110;3;2;0;0;0;1
+96195;14689;2;171;83.0;120;80;1;1;0;0;1;0
+96196;17589;1;169;88.0;150;90;1;1;0;0;0;1
+96197;19681;2;158;61.0;12;80;3;3;0;0;1;0
+96198;23172;1;169;76.0;120;80;3;1;0;0;1;1
+96199;15972;2;165;62.0;110;80;1;1;0;0;1;0
+96200;20372;2;167;76.0;120;80;1;1;1;0;1;0
+96202;20319;2;170;72.0;120;80;1;1;1;1;1;1
+96204;21101;1;167;66.0;120;80;3;1;0;0;1;0
+96205;15130;1;165;65.0;130;80;1;1;0;0;1;1
+96206;15166;2;175;83.0;120;70;1;1;0;0;0;1
+96207;23514;1;155;60.0;155;60;1;1;0;0;0;1
+96209;21321;1;168;92.0;140;90;1;1;0;0;1;1
+96211;18995;2;175;80.0;150;1000;1;1;0;0;1;1
+96212;21079;1;169;64.0;120;80;1;1;0;0;1;1
+96213;19880;1;162;61.0;120;80;1;1;0;0;1;0
+96214;21985;1;162;80.0;160;90;1;3;0;0;1;0
+96216;23293;2;175;78.0;130;90;1;1;1;0;1;1
+96217;16192;1;160;62.0;120;80;1;1;0;0;1;0
+96218;21238;1;161;77.0;180;90;1;1;0;0;0;1
+96219;15279;2;170;78.0;120;80;2;2;0;0;1;0
+96220;16627;2;170;64.0;110;70;1;1;0;0;0;0
+96221;22522;2;155;59.0;120;80;1;1;0;0;0;0
+96222;21154;2;166;88.0;170;110;2;1;1;1;1;1
+96224;14632;2;178;90.0;130;80;1;1;0;0;1;1
+96228;15331;1;160;92.0;110;60;1;1;0;0;1;0
+96229;22719;2;156;68.0;150;1000;1;1;1;0;1;1
+96230;17318;1;160;82.0;110;80;3;1;0;1;1;1
+96232;19879;2;172;74.0;120;80;1;1;0;0;0;0
+96233;18981;1;147;49.0;110;70;1;1;0;0;1;0
+96234;18193;1;159;57.0;120;80;1;1;0;0;1;0
+96235;19651;2;188;100.0;110;70;1;1;1;1;1;1
+96236;18933;2;178;105.0;140;90;3;1;0;0;1;1
+96238;18732;2;179;88.0;154;84;1;1;0;0;1;1
+96241;19741;1;170;80.0;120;80;1;1;0;0;1;0
+96242;16712;2;185;86.0;120;70;1;1;0;0;1;0
+96243;21223;2;169;71.0;150;90;1;1;0;0;1;1
+96244;18309;1;160;84.0;100;70;1;1;0;0;1;0
+96249;20503;2;170;80.0;130;90;3;1;0;0;1;1
+96251;19889;1;170;68.0;120;80;1;1;0;0;1;0
+96253;23224;2;158;56.0;120;70;1;1;0;1;0;0
+96254;17784;1;156;72.0;110;70;1;1;0;0;1;0
+96255;18821;2;170;84.0;120;70;1;1;1;0;1;1
+96256;20621;1;169;65.0;130;80;1;1;0;0;0;1
+96257;21729;1;158;63.0;170;110;3;1;0;0;1;1
+96258;19679;1;160;60.0;120;80;1;1;0;0;1;0
+96259;18043;2;160;62.0;120;80;1;1;0;0;1;0
+96260;17471;2;160;58.0;120;80;1;1;0;0;1;0
+96261;23496;2;170;77.0;200;90;2;1;0;0;1;1
+96262;23153;1;165;89.0;120;80;1;1;0;0;1;1
+96263;21826;2;168;75.0;130;80;1;1;1;1;1;0
+96265;17582;1;161;57.0;120;70;1;1;0;0;1;0
+96266;17463;1;160;81.0;120;80;1;1;0;0;1;0
+96267;18984;1;158;55.0;130;80;1;3;0;0;0;0
+96268;21751;1;162;55.0;120;80;2;1;0;0;1;1
+96269;22560;1;157;73.0;140;1000;1;1;0;1;0;1
+96271;23424;1;153;74.0;80;130;1;1;0;0;1;1
+96273;22782;1;169;69.0;120;80;1;1;0;0;1;1
+96274;19001;1;162;71.0;120;80;1;1;0;0;0;1
+96276;20483;2;180;78.0;160;90;1;1;0;0;1;1
+96277;21751;1;164;76.0;120;80;1;1;0;0;1;1
+96278;18187;1;160;58.0;150;80;1;1;0;0;1;1
+96281;19715;1;159;85.0;110;80;1;1;0;0;1;1
+96282;19424;2;176;85.0;110;70;1;1;1;0;1;0
+96283;18229;1;184;80.0;120;90;1;1;0;0;1;0
+96285;20698;2;166;72.0;120;80;1;1;0;0;1;0
+96286;17001;2;182;110.0;120;80;2;2;0;1;1;1
+96287;19655;1;161;82.0;130;80;1;1;0;0;1;0
+96288;22687;1;158;78.0;120;80;2;1;0;0;1;0
+96289;21108;1;165;70.0;120;90;1;1;0;1;1;0
+96291;18298;2;190;147.0;150;90;1;2;0;1;1;1
+96293;14635;1;165;82.0;130;100;1;1;0;0;1;1
+96294;20442;1;159;62.0;130;80;1;1;0;0;1;1
+96296;20493;1;167;84.0;180;90;1;1;0;1;1;1
+96298;19073;1;163;48.0;120;80;2;1;0;0;1;0
+96299;22458;2;178;87.0;140;90;1;2;1;0;1;1
+96300;19738;1;159;80.0;120;80;1;1;0;0;1;0
+96301;21013;1;158;60.0;110;70;1;1;0;0;0;0
+96302;18189;1;155;62.0;140;80;2;1;0;0;1;1
+96304;21735;1;175;95.0;140;70;3;3;0;0;0;1
+96305;18352;1;153;74.0;110;70;1;1;0;0;1;0
+96306;21390;1;166;79.0;140;90;1;1;0;0;1;1
+96307;22115;1;165;71.0;120;80;3;3;0;0;1;1
+96308;16178;2;161;70.0;110;70;1;1;1;0;1;0
+96309;16102;2;170;78.0;120;80;1;1;0;0;1;0
+96310;19567;1;167;61.0;140;90;2;1;0;0;0;1
+96315;19908;2;172;90.0;140;70;1;1;0;0;0;1
+96316;22443;1;164;96.0;130;80;3;1;0;0;1;0
+96317;19242;1;173;70.0;120;80;2;1;0;0;1;0
+96318;18227;2;165;74.0;120;80;1;1;0;0;1;0
+96319;18038;1;175;94.0;140;110;1;1;0;1;1;1
+96320;16717;2;162;70.0;140;90;1;1;0;0;0;1
+96321;23501;1;153;66.0;140;80;2;1;0;0;1;0
+96322;18039;2;165;65.0;120;80;2;1;0;0;1;0
+96323;20503;2;164;60.0;120;80;1;1;0;0;1;1
+96324;18787;1;175;61.0;110;80;1;1;0;0;0;1
+96326;20358;1;160;71.0;120;80;1;1;0;0;1;0
+96327;19598;1;154;76.0;130;70;1;1;0;0;0;1
+96328;19769;1;174;94.0;120;80;3;3;0;0;1;0
+96329;20308;1;159;72.0;110;70;1;1;0;0;1;0
+96332;16051;1;170;69.0;120;90;1;2;0;0;1;0
+96333;15180;1;153;66.0;110;70;1;1;0;0;1;0
+96334;20488;1;164;67.0;130;80;3;1;0;0;1;0
+96336;17384;1;156;74.0;120;80;2;1;0;0;1;0
+96337;17376;1;150;57.0;130;80;2;1;0;0;1;1
+96339;21193;2;172;57.0;80;120;1;1;1;0;1;1
+96340;17610;1;151;70.0;100;90;2;1;0;0;1;0
+96341;15373;1;149;68.0;120;80;1;1;0;0;1;0
+96343;16771;2;172;80.0;120;80;1;1;0;0;1;0
+96344;19657;1;161;93.0;160;1200;3;1;0;0;0;1
+96345;21170;1;168;99.0;160;100;1;2;0;0;1;1
+96346;20943;1;155;52.0;110;70;1;1;0;0;1;0
+96348;20546;1;160;84.0;160;90;3;3;0;0;0;0
+96350;18070;1;164;71.0;120;80;1;1;0;0;1;0
+96351;19034;1;162;88.0;120;80;1;1;0;0;1;0
+96355;23517;1;153;71.0;150;90;3;3;0;0;1;0
+96356;21788;1;150;66.0;140;100;1;1;0;0;1;1
+96357;19491;2;162;68.0;120;80;1;1;0;1;1;1
+96360;15373;1;165;63.0;100;70;2;2;0;0;1;0
+96361;18275;2;172;69.0;130;90;1;1;0;0;0;0
+96362;21657;2;170;84.0;150;90;2;2;0;0;1;0
+96363;17498;2;167;70.0;120;80;1;1;0;0;0;0
+96365;22014;1;150;68.0;120;80;2;1;0;0;1;0
+96366;15919;1;165;82.0;140;90;1;1;0;0;1;0
+96367;20351;2;155;63.0;150;90;1;1;1;1;0;1
+96368;18820;1;160;60.0;120;80;1;1;0;0;1;0
+96369;15932;2;174;87.0;120;80;1;1;0;0;0;0
+96370;18743;2;185;57.0;120;80;1;1;0;0;0;0
+96371;15373;2;163;62.0;120;90;1;1;0;0;0;0
+96372;21752;1;166;97.0;170;100;2;2;0;0;1;1
+96373;15791;1;169;64.0;110;70;1;1;0;0;1;1
+96375;21303;1;168;78.0;120;70;1;1;0;0;0;0
+96377;20334;2;158;52.0;150;80;3;1;1;1;1;1
+96378;16118;2;168;63.0;120;80;2;1;1;1;1;0
+96379;16699;1;152;87.0;120;80;1;2;0;0;0;1
+96380;18924;1;162;64.0;120;80;1;1;0;0;1;0
+96381;18335;1;160;65.0;170;80;1;1;0;0;1;1
+96384;22499;2;170;64.0;120;80;1;1;0;0;1;1
+96385;20448;2;175;69.0;110;70;1;1;0;0;1;1
+96386;18207;1;156;56.0;120;80;1;1;0;0;1;0
+96387;22046;1;156;105.0;140;80;3;3;0;0;1;1
+96388;22432;2;168;62.0;130;70;1;1;0;0;1;1
+96389;17579;2;170;98.0;140;90;3;1;0;0;1;1
+96391;14934;1;158;60.0;120;80;1;1;0;0;1;0
+96393;15324;1;149;59.0;110;70;1;1;0;0;1;0
+96394;14703;1;158;62.0;100;70;1;3;0;0;1;0
+96395;20358;1;162;80.0;120;90;1;1;0;0;0;0
+96397;20207;2;173;63.0;120;80;1;1;0;0;1;0
+96398;17562;1;160;58.0;110;90;1;1;0;0;1;0
+96399;22032;1;153;80.0;120;80;3;1;0;0;1;0
+96400;21078;2;175;87.0;120;80;1;1;0;0;1;0
+96401;23389;1;153;82.0;150;90;1;2;0;0;1;1
+96403;16061;1;161;65.0;110;80;1;1;0;0;0;0
+96405;18378;2;172;63.0;120;60;1;1;0;0;1;0
+96406;16074;2;172;118.0;140;80;1;1;0;0;0;1
+96407;20964;1;157;63.0;150;80;2;1;0;0;1;1
+96408;19641;2;170;90.0;140;90;1;1;0;0;1;1
+96411;16695;2;176;88.0;130;90;2;1;0;1;1;1
+96412;19002;1;164;60.0;130;80;2;1;0;0;1;1
+96415;17723;2;160;73.0;120;70;1;1;0;0;1;1
+96416;23288;1;147;60.0;130;80;1;2;0;0;1;1
+96417;19461;1;156;80.0;100;80;1;1;0;0;1;0
+96419;16759;2;169;67.0;120;80;1;1;1;1;1;0
+96420;18137;2;162;78.0;160;100;3;1;1;0;1;1
+96421;22612;2;164;100.0;140;90;1;1;0;0;1;1
+96422;21892;2;156;60.0;120;80;1;1;0;0;1;1
+96423;15969;2;167;77.0;130;80;1;1;0;0;0;0
+96425;17665;2;168;67.0;140;100;1;1;1;0;1;0
+96428;22891;2;171;70.0;120;80;3;3;0;0;0;0
+96430;17486;2;170;85.0;160;100;3;3;0;0;1;0
+96431;22357;1;160;89.0;130;90;1;3;0;0;1;1
+96432;21785;1;150;71.0;120;80;2;1;0;0;0;1
+96434;22664;2;169;70.0;140;90;2;2;0;0;1;1
+96435;23372;1;152;72.0;140;80;3;1;0;0;1;0
+96436;20367;1;160;72.0;120;69;1;1;0;0;1;0
+96437;21117;1;167;89.0;120;80;1;1;0;0;1;1
+96438;17689;1;159;98.0;130;80;1;1;0;0;0;0
+96439;21749;1;169;57.0;120;90;1;1;0;0;1;1
+96440;21996;1;165;68.0;140;90;1;1;0;0;1;0
+96441;21739;2;166;66.0;130;70;1;1;1;0;1;0
+96442;16088;1;163;54.0;120;80;1;1;0;0;1;0
+96444;20321;2;169;83.0;190;115;3;2;1;0;1;1
+96445;19683;1;168;70.0;140;90;1;1;0;0;1;1
+96446;18068;1;167;67.0;140;90;1;1;0;0;0;1
+96452;23202;1;158;88.0;170;100;3;1;0;1;1;1
+96453;20265;1;156;60.0;120;70;1;1;0;0;1;0
+96455;21908;1;168;68.0;120;80;1;3;0;0;1;1
+96457;20385;1;178;98.0;120;80;1;1;0;0;1;0
+96458;18919;1;160;54.0;120;80;1;1;0;0;1;1
+96459;20333;1;168;58.0;120;80;1;1;0;0;0;0
+96460;23501;2;182;94.0;120;80;1;1;0;0;0;1
+96461;21875;2;170;80.0;120;90;1;1;1;0;1;1
+96462;20566;2;175;76.0;130;80;1;2;0;0;1;1
+96463;19240;1;165;70.0;110;70;1;1;0;0;1;0
+96464;22709;1;168;63.0;120;80;1;1;0;0;1;1
+96465;22581;1;153;80.0;130;80;1;1;0;1;0;1
+96466;23268;1;168;72.0;130;80;1;1;0;0;1;0
+96467;15801;2;169;60.0;110;70;1;1;0;0;1;0
+96468;20430;2;170;63.0;120;80;1;1;0;0;1;0
+96469;15282;1;161;54.0;120;80;1;1;0;0;1;0
+96470;18028;1;174;81.0;130;90;1;1;0;0;1;1
+96472;19640;1;160;79.0;140;90;3;1;0;0;1;1
+96474;22734;2;170;70.0;130;90;1;1;0;0;1;1
+96475;20472;1;160;73.0;130;90;1;1;0;0;0;0
+96477;15286;2;174;80.0;140;90;1;1;1;1;1;0
+96479;22644;1;156;68.0;140;70;3;1;0;0;1;1
+96484;21855;2;169;69.0;120;80;1;1;0;0;1;0
+96485;23413;2;170;72.0;130;90;1;1;0;0;1;0
+96486;21139;1;150;69.0;140;100;1;2;0;0;0;1
+96487;21179;1;163;77.0;140;90;2;1;0;0;1;1
+96488;18378;1;163;55.0;130;80;1;1;0;0;0;1
+96489;20619;1;160;60.0;120;80;1;1;0;0;1;0
+96490;19484;1;165;65.0;140;90;2;1;0;0;0;1
+96491;23438;1;153;74.0;110;80;2;3;0;0;1;0
+96492;16047;2;180;70.0;120;80;1;1;0;0;1;0
+96493;18827;2;168;72.0;120;80;1;1;0;0;1;0
+96495;21055;2;160;83.0;130;90;3;1;0;0;0;0
+96496;14366;2;168;89.0;110;60;1;1;0;0;1;0
+96497;15975;1;160;53.0;100;60;1;1;0;0;1;0
+96498;20499;1;162;74.0;130;80;1;1;0;0;1;0
+96499;19836;1;151;87.0;130;80;1;1;1;0;1;0
+96500;19787;1;158;60.0;110;70;1;1;0;0;1;0
+96504;21842;2;170;70.0;140;80;2;1;1;1;1;1
+96506;22788;2;172;90.0;160;105;1;1;0;0;1;1
+96507;21722;1;168;76.0;110;80;1;1;0;0;1;0
+96508;23487;2;156;55.0;140;90;1;1;0;0;1;1
+96509;16816;1;170;70.0;120;80;1;1;0;0;1;0
+96510;19605;1;165;68.0;150;70;1;1;0;0;1;0
+96511;20285;2;168;70.0;130;90;1;1;0;0;1;0
+96512;18808;1;160;78.0;120;80;1;1;0;0;0;0
+96513;21942;1;156;88.0;160;80;2;1;0;0;1;1
+96514;20264;1;171;80.0;120;80;1;1;0;0;1;1
+96515;18236;2;163;66.0;110;70;3;3;0;0;1;0
+96517;22622;2;168;80.0;120;80;1;1;1;0;1;0
+96518;16091;1;165;56.0;120;80;1;1;0;0;1;0
+96520;21993;1;153;77.0;115;49;1;1;0;0;1;1
+96521;19532;2;180;90.0;130;80;1;1;0;0;1;0
+96522;19773;1;159;55.0;120;80;1;1;0;0;0;0
+96525;17273;1;170;56.0;100;70;1;1;0;0;1;0
+96526;20354;1;160;60.0;120;80;3;3;0;0;1;1
+96527;17482;1;157;69.0;120;80;1;1;0;0;1;0
+96528;22902;1;168;74.0;120;80;1;1;0;0;1;1
+96530;23232;1;151;69.0;110;70;1;1;0;0;0;1
+96531;19562;2;172;76.0;120;80;1;1;0;0;1;0
+96532;19109;1;155;82.0;170;95;2;1;0;0;0;1
+96535;19499;2;164;63.0;120;80;1;1;0;0;0;0
+96537;21913;1;150;69.0;140;80;3;2;0;0;1;0
+96539;23120;1;169;71.0;140;90;2;3;0;0;1;0
+96542;21914;1;158;68.0;120;80;1;1;0;0;0;0
+96543;22655;1;158;81.0;120;80;3;3;0;0;1;1
+96544;22414;1;158;108.0;140;90;2;1;0;0;1;1
+96547;22925;1;160;93.0;170;90;1;1;0;0;1;1
+96548;18168;2;172;93.0;120;90;1;1;0;0;1;0
+96549;15385;1;161;59.0;120;80;1;1;0;0;1;0
+96550;22736;1;169;75.0;110;70;2;2;0;0;1;1
+96551;22638;2;170;70.0;130;90;1;1;0;0;1;1
+96552;17243;2;170;70.0;130;80;1;1;0;0;1;0
+96553;18715;1;165;68.0;120;80;1;2;0;0;1;0
+96554;17946;1;168;74.0;140;90;1;1;0;0;1;1
+96555;20569;2;170;90.0;150;90;3;1;0;0;1;1
+96556;15976;1;157;76.0;110;80;2;2;0;0;1;0
+96558;18862;1;164;83.0;100;60;1;1;0;0;1;1
+96560;21316;2;175;74.0;120;80;1;1;0;0;0;1
+96561;22623;2;178;96.0;130;80;2;1;0;0;1;1
+96564;19520;1;160;84.0;100;80;1;1;0;0;0;0
+96565;21989;1;158;59.0;140;90;1;2;0;0;1;1
+96568;18153;2;170;72.0;120;80;1;1;0;0;1;0
+96569;20374;1;156;64.0;160;100;2;1;0;0;0;0
+96572;16244;1;161;83.0;120;80;1;1;0;0;1;0
+96573;23370;2;158;59.0;110;70;1;1;0;0;1;0
+96574;16137;2;169;69.0;140;90;1;1;1;0;1;0
+96576;19863;2;171;102.0;130;90;1;1;0;0;1;0
+96577;20462;2;182;102.0;160;90;2;1;1;1;1;1
+96578;21168;2;172;60.0;100;60;1;1;1;0;1;0
+96579;22759;1;164;72.0;130;90;1;1;0;0;1;0
+96582;18992;2;175;86.0;140;90;1;1;0;0;1;1
+96585;16019;1;160;76.0;120;80;1;1;0;0;1;0
+96586;15371;1;160;65.0;140;90;1;1;0;0;0;1
+96587;22175;1;160;57.0;110;70;1;3;0;0;1;0
+96589;20676;1;164;62.0;160;90;1;1;0;0;1;1
+96590;15258;1;160;71.0;110;70;1;1;0;0;1;0
+96592;17320;2;176;82.0;120;80;1;1;0;0;1;1
+96594;18214;2;172;59.0;110;80;1;1;1;0;1;0
+96595;14622;2;173;74.0;150;90;1;1;0;0;1;1
+96596;21256;1;150;66.0;120;80;1;3;0;0;0;0
+96597;15136;1;147;54.0;120;80;1;1;0;0;0;0
+96598;20287;1;164;60.0;120;80;1;1;0;0;1;0
+96599;21440;1;179;72.0;130;80;1;1;0;0;1;0
+96600;19679;1;158;55.0;110;70;1;1;0;0;1;0
+96601;18414;1;165;59.5;90;70;1;1;0;0;1;0
+96604;18283;1;166;60.0;120;80;2;1;0;0;1;0
+96606;20324;1;155;70.0;120;80;1;1;0;0;1;0
+96607;15958;2;180;80.0;110;80;1;1;0;0;0;0
+96609;22660;1;154;52.0;15;80;1;1;0;0;0;1
+96610;18756;1;170;62.0;120;80;1;1;0;0;1;0
+96611;16139;2;168;64.0;110;60;1;1;0;0;1;0
+96612;18374;1;170;70.0;120;80;1;1;0;0;1;0
+96613;18349;1;152;82.5;180;120;1;1;1;0;1;1
+96615;22415;1;165;72.0;160;100;1;1;0;0;0;0
+96616;16850;2;167;91.0;120;80;1;1;1;0;1;0
+96617;17394;1;168;83.0;160;90;1;1;0;0;1;1
+96618;20317;1;150;80.0;120;80;1;1;0;0;1;1
+96620;21025;1;156;62.0;100;60;1;1;0;0;1;0
+96623;22471;1;159;61.0;140;60;2;1;0;0;1;1
+96626;18537;1;165;62.0;120;80;1;1;0;0;1;0
+96627;22014;1;163;103.0;120;80;1;2;0;0;0;1
+96628;21933;2;175;68.0;120;80;1;1;0;0;1;0
+96629;18916;2;170;92.0;130;90;1;1;0;0;0;1
+96630;22694;1;170;65.0;130;90;1;1;0;0;1;1
+96631;19635;1;165;72.0;120;80;1;1;0;0;1;0
+96634;21777;1;156;68.0;120;80;1;1;0;0;1;1
+96635;17503;1;156;59.0;120;70;1;1;1;1;1;0
+96636;18472;1;160;57.0;110;80;1;1;0;0;1;0
+96637;19827;2;171;95.0;130;80;1;1;0;0;1;1
+96639;21181;1;164;85.0;140;80;3;3;0;0;1;1
+96641;21211;2;180;70.0;120;80;1;1;0;0;0;1
+96642;18914;1;158;63.0;160;100;1;1;0;0;1;1
+96643;18295;1;159;62.0;120;60;1;1;0;0;1;0
+96644;20289;1;159;59.0;120;80;1;1;0;0;0;1
+96645;21273;1;160;59.0;120;80;1;1;0;0;1;1
+96646;20662;1;170;81.0;120;80;1;1;0;0;1;0
+96650;20362;1;170;72.0;120;80;1;1;0;0;1;1
+96651;16161;1;164;62.0;110;70;1;1;0;0;0;0
+96652;17496;1;162;58.0;120;80;1;1;0;0;1;0
+96654;19180;2;175;80.0;110;70;1;1;0;0;1;0
+96656;16568;1;157;80.0;160;1000;1;1;0;0;1;1
+96657;23306;1;158;65.0;140;80;3;1;0;0;1;0
+96658;19134;1;180;70.0;110;70;3;1;0;0;1;1
+96661;21786;2;151;52.0;115;81;1;2;0;1;1;0
+96663;15381;1;168;69.0;120;80;1;1;0;0;0;0
+96664;21793;2;168;58.0;130;80;2;1;1;0;1;0
+96665;15253;1;161;60.0;100;70;1;2;0;0;1;0
+96666;14726;2;178;80.0;140;90;1;1;0;0;1;1
+96667;19811;1;161;57.0;110;70;1;1;0;0;1;0
+96669;21803;2;165;88.0;160;90;1;1;0;0;1;0
+96671;18904;1;154;58.0;130;90;1;1;0;0;1;0
+96674;20543;2;160;62.0;130;90;1;1;0;0;1;0
+96675;20633;1;152;67.0;140;80;1;3;0;0;1;1
+96678;15276;2;175;87.0;130;70;1;1;1;0;1;0
+96679;22078;1;170;93.0;120;80;1;1;0;0;1;0
+96680;16750;2;170;60.0;110;60;1;1;1;1;1;0
+96681;17630;1;156;55.0;100;70;1;1;0;0;1;0
+96683;19085;1;150;62.0;110;70;1;1;0;0;1;1
+96684;19657;2;163;87.0;180;100;1;1;0;0;1;1
+96685;15947;2;172;95.0;110;80;1;1;0;0;1;0
+96686;19687;2;168;75.0;240;140;3;1;0;0;1;1
+96688;14689;1;165;65.0;100;80;1;1;0;0;0;0
+96690;21092;1;156;56.0;120;80;2;2;0;0;1;1
+96691;21645;1;152;68.0;120;80;1;1;0;0;1;0
+96692;19450;2;169;73.0;120;80;2;2;1;0;0;1
+96694;17753;2;164;60.0;110;70;1;1;1;1;0;0
+96695;20197;1;178;80.0;130;80;1;1;0;0;0;1
+96696;17242;2;173;83.0;130;80;1;1;0;0;1;1
+96697;21863;2;177;95.0;150;90;1;1;0;0;1;1
+96701;15329;1;160;73.0;160;90;1;2;1;0;0;1
+96704;18234;1;169;65.0;120;80;1;1;0;0;1;0
+96705;21793;1;159;60.0;120;80;1;1;0;0;1;0
+96706;23391;1;162;50.0;110;70;1;1;0;0;1;1
+96707;21887;1;157;84.0;134;74;1;2;0;0;1;1
+96709;15766;2;174;94.0;130;82;1;3;0;0;1;1
+96710;22673;1;157;57.0;150;90;1;1;0;0;1;1
+96711;18996;1;163;71.0;150;90;1;1;0;0;0;1
+96713;21852;1;168;85.0;160;100;2;1;0;0;1;1
+96714;18952;1;151;71.0;120;80;2;1;0;0;1;0
+96715;16526;2;156;60.0;100;60;1;1;0;0;1;0
+96719;20630;1;161;84.0;120;70;2;1;0;0;1;0
+96721;19181;1;170;62.0;110;70;1;1;0;0;1;0
+96723;18202;1;162;52.0;120;80;3;3;0;0;1;0
+96724;21696;1;152;55.0;120;80;1;1;0;0;1;1
+96725;18397;1;163;85.0;160;100;3;3;0;0;1;1
+96726;15333;2;170;78.0;120;80;3;1;1;0;1;1
+96727;20520;1;155;62.0;120;80;3;1;0;0;0;1
+96728;23360;1;162;69.0;130;80;1;1;0;0;1;0
+96730;18433;1;157;61.0;120;80;1;1;0;0;1;0
+96732;17042;2;168;78.0;120;85;1;1;0;0;1;0
+96733;20322;2;170;87.0;180;100;1;1;1;0;1;1
+96734;15349;1;168;73.0;120;80;2;1;1;0;1;0
+96735;17413;1;165;65.0;120;80;1;1;0;0;1;0
+96736;16596;2;164;74.0;120;80;2;1;1;1;1;1
+96738;18070;2;184;73.0;130;90;2;1;1;0;1;0
+96739;18548;1;162;58.0;130;85;1;1;0;0;1;1
+96742;21762;1;155;67.0;130;80;2;2;0;0;0;1
+96743;18229;1;162;112.0;150;80;1;2;0;0;1;1
+96744;19475;1;158;74.0;170;120;2;1;0;0;1;1
+96745;21205;1;154;55.0;150;90;1;2;0;0;0;1
+96746;18450;2;173;54.0;120;80;1;1;1;1;1;0
+96748;19823;1;154;62.0;120;80;1;1;0;0;1;1
+96750;20351;1;157;75.0;130;100;3;2;0;0;0;1
+96751;23322;2;164;74.0;120;80;1;2;0;0;1;0
+96753;19842;2;165;66.0;140;90;1;1;0;0;1;0
+96754;19579;1;158;60.0;90;60;1;1;0;0;1;0
+96755;18254;1;160;53.0;100;75;1;1;0;0;0;0
+96757;22548;2;173;79.0;135;90;1;1;0;0;0;0
+96761;20424;2;171;69.0;120;80;1;1;0;0;1;1
+96764;17600;1;158;62.0;120;80;1;1;0;0;1;1
+96765;20655;2;180;70.0;120;80;1;1;0;0;1;0
+96767;21107;2;165;93.0;120;90;3;3;0;1;1;0
+96769;16131;1;169;67.0;120;80;1;1;0;0;1;1
+96770;22695;2;164;93.0;120;80;3;2;0;0;1;1
+96771;20373;1;159;65.0;120;80;1;1;0;0;1;1
+96772;21126;2;176;70.0;120;80;1;1;0;0;1;0
+96774;23376;1;154;84.0;140;90;1;1;0;0;1;1
+96778;14601;1;160;63.0;120;80;1;1;0;1;1;0
+96779;16912;1;171;75.0;120;80;1;1;0;0;1;1
+96780;19541;1;155;48.0;100;70;2;1;0;0;1;0
+96781;14748;2;171;79.0;120;80;1;1;1;0;1;0
+96783;22754;1;156;63.0;110;70;3;3;0;0;0;0
+96784;15162;1;161;63.0;120;80;1;3;0;0;1;0
+96786;19460;1;156;98.0;150;100;2;2;0;0;1;1
+96789;19762;1;160;115.0;160;100;3;2;0;0;1;1
+96790;21141;2;167;79.0;170;100;1;1;0;0;1;1
+96791;16722;2;181;76.0;150;90;2;1;0;0;1;1
+96792;20276;2;184;103.0;120;90;1;1;1;0;1;0
+96794;16783;1;168;65.0;130;60;3;3;0;0;0;0
+96795;19064;2;169;63.0;160;80;1;1;1;0;1;1
+96796;23116;1;159;58.0;130;70;1;1;0;0;1;1
+96797;16146;1;162;105.0;140;90;1;1;0;0;1;1
+96798;23229;1;165;87.0;120;80;1;1;0;0;1;1
+96799;15194;1;148;67.0;110;70;1;1;0;0;1;0
+96800;21058;1;155;51.0;120;80;3;1;0;0;1;1
+96801;20445;1;164;107.0;130;80;3;1;0;0;0;1
+96802;17379;1;152;61.0;150;100;1;1;1;0;0;1
+96803;21338;2;176;88.0;120;80;1;1;1;0;0;1
+96805;20292;2;162;78.0;140;100;1;1;0;0;1;1
+96806;16063;2;169;84.0;150;90;1;1;0;0;1;1
+96807;19671;2;170;70.0;130;90;1;1;0;0;0;0
+96809;22012;2;153;52.0;130;80;3;1;0;0;1;1
+96810;20412;1;175;75.0;140;90;1;1;0;0;0;1
+96811;14581;1;160;60.0;120;80;1;1;0;0;0;0
+96812;15295;1;161;77.0;120;80;1;1;0;0;1;0
+96816;21124;2;170;71.0;120;80;1;1;0;0;1;0
+96818;20874;1;150;73.0;130;80;1;1;0;0;1;1
+96819;19606;1;163;86.0;170;90;1;1;0;0;1;0
+96820;20591;2;167;74.0;120;80;1;1;0;1;1;0
+96823;22886;2;164;74.0;140;90;3;3;0;0;1;1
+96824;22727;2;163;63.0;120;80;1;1;0;0;0;1
+96825;18266;1;170;70.0;120;80;1;2;0;0;0;0
+96826;14820;1;162;53.0;120;80;1;1;0;0;1;0
+96828;19300;1;156;82.0;120;80;1;1;0;1;1;0
+96831;19076;2;175;74.0;120;80;1;1;1;0;1;1
+96832;22403;1;164;76.0;120;80;2;2;0;0;1;1
+96833;18120;2;164;78.0;130;90;1;1;0;0;0;1
+96834;18865;1;153;45.0;120;80;1;1;0;0;0;0
+96837;15822;1;157;61.0;90;70;1;1;0;0;1;0
+96838;21382;1;152;89.0;120;70;2;1;0;0;1;0
+96841;23414;1;147;40.0;150;90;3;1;0;0;1;1
+96843;23446;1;165;75.0;130;70;1;1;0;0;1;1
+96844;20556;1;168;78.0;130;90;1;1;0;0;1;1
+96845;18035;2;174;73.0;100;80;1;1;0;0;0;0
+96846;23297;1;160;94.0;130;80;1;1;0;0;1;1
+96848;23369;2;176;81.0;130;90;2;1;0;0;1;1
+96849;18815;2;178;79.0;160;1000;3;1;0;0;1;1
+96851;22495;2;162;67.0;120;70;1;1;0;0;1;1
+96855;16209;2;170;70.0;141;90;1;1;0;0;1;1
+96856;16609;1;155;57.0;120;80;2;1;0;0;1;0
+96858;22504;1;174;76.0;120;90;1;1;0;0;1;1
+96860;18365;1;154;89.0;120;80;1;1;0;0;0;1
+96861;19005;1;169;71.0;120;80;1;1;0;0;1;0
+96862;19030;2;162;56.0;120;80;1;1;0;0;1;1
+96864;16196;2;178;79.0;120;80;1;1;0;0;1;0
+96865;16791;1;157;74.0;100;90;2;1;0;0;1;1
+96866;17464;1;163;55.0;110;70;1;1;1;0;1;0
+96868;19158;1;175;70.0;120;80;1;1;0;0;1;0
+96869;23382;1;170;68.0;150;90;1;1;0;0;1;1
+96870;15902;1;169;70.0;110;70;2;1;0;0;1;0
+96872;16206;1;160;75.0;120;80;1;1;0;0;1;1
+96873;16819;1;157;56.0;120;75;1;1;0;0;1;1
+96876;22520;1;154;58.0;120;80;1;1;0;0;1;0
+96877;18154;2;168;74.0;110;80;1;1;0;0;1;1
+96879;18991;1;165;62.0;110;70;1;1;0;0;1;1
+96880;19426;1;155;66.0;100;60;1;1;0;0;1;0
+96881;17433;2;163;68.0;120;80;1;1;0;0;1;0
+96882;19779;2;176;72.0;120;80;1;1;1;1;1;0
+96883;21933;1;168;65.0;120;80;1;1;0;0;0;1
+96885;21070;1;152;54.0;110;70;1;1;0;0;1;1
+96886;18732;2;176;86.0;140;90;1;1;1;0;1;1
+96887;23286;1;164;80.0;130;80;3;1;0;0;0;1
+96888;19832;2;158;69.0;110;80;1;1;0;0;1;0
+96889;22828;1;158;59.0;140;80;1;1;0;0;1;1
+96892;15364;1;165;80.0;120;80;1;1;0;0;1;1
+96893;23150;1;160;60.0;100;80;1;1;0;0;1;0
+96894;18358;1;160;60.0;120;80;1;1;0;0;1;0
+96896;20477;1;157;65.0;120;80;1;1;0;0;1;0
+96897;21001;1;151;70.0;120;80;1;1;0;0;1;0
+96898;21022;1;165;60.0;120;80;1;1;0;0;1;0
+96899;14510;2;177;73.0;110;70;3;3;0;0;1;0
+96900;19116;1;168;65.0;140;80;1;1;0;0;1;1
+96901;19857;2;173;67.0;120;70;1;1;1;0;1;0
+96902;14742;1;168;72.0;120;80;1;1;0;0;1;0
+96903;21123;1;169;79.0;130;80;1;1;0;0;1;1
+96904;19817;2;167;70.0;120;90;1;1;1;1;1;1
+96907;17885;1;168;67.0;110;70;1;3;0;0;1;0
+96908;14603;1;156;56.0;130;90;2;2;0;0;1;0
+96909;23488;1;152;52.0;110;70;1;1;0;0;1;0
+96910;19038;1;156;61.0;120;80;2;1;0;0;1;0
+96913;19668;1;169;62.0;120;80;1;1;0;0;1;1
+96914;21832;1;160;72.0;120;80;1;1;0;0;1;0
+96915;17524;1;156;66.0;90;60;1;1;0;0;1;0
+96916;14590;1;156;45.0;110;80;2;1;0;0;1;0
+96919;16865;1;155;52.0;140;90;1;1;0;0;1;1
+96920;21970;2;172;94.0;110;70;1;2;1;0;1;1
+96921;21763;1;133;123.0;180;100;2;1;0;0;1;1
+96923;19870;1;158;75.0;120;80;1;1;0;0;1;0
+96924;16703;1;157;49.0;140;90;1;1;0;0;0;1
+96926;21923;2;175;100.0;150;90;1;1;0;0;1;1
+96927;17473;1;164;76.0;120;80;1;1;0;0;1;1
+96928;20266;1;160;91.0;160;90;1;1;0;0;1;1
+96929;21818;2;166;70.0;120;80;1;1;1;1;0;0
+96930;14884;1;156;68.0;120;80;1;1;0;0;1;0
+96934;17600;1;169;70.0;110;70;1;1;0;0;1;0
+96936;20360;1;160;82.0;120;80;1;1;0;0;0;0
+96937;21027;1;164;68.0;120;70;1;1;0;0;1;0
+96939;23090;1;172;58.0;130;80;1;1;0;0;1;1
+96943;21909;1;163;62.0;120;80;1;3;0;0;0;1
+96944;16064;1;163;86.0;130;90;3;1;0;0;1;1
+96945;20457;2;167;64.0;120;80;1;3;0;0;1;0
+96946;15220;2;164;78.0;150;90;1;1;0;0;1;1
+96948;15880;2;170;67.0;120;80;1;1;1;0;1;0
+96949;14321;2;173;81.0;130;80;1;1;1;0;1;0
+96950;18944;2;176;89.0;120;80;1;1;0;0;1;0
+96951;21985;1;153;65.0;140;90;1;1;0;0;1;1
+96952;21064;1;153;83.0;120;79;1;1;0;0;1;0
+96955;21199;1;159;112.0;130;90;1;3;0;0;0;0
+96956;21113;2;168;72.0;120;80;3;3;0;0;0;0
+96957;18289;2;164;66.0;120;80;1;1;0;0;1;1
+96958;22605;1;150;78.0;120;80;1;1;0;0;0;1
+96960;18152;2;159;61.0;120;70;1;1;0;0;1;0
+96961;16115;2;162;76.0;120;80;1;1;0;0;1;0
+96963;15433;1;170;98.0;140;90;1;1;0;0;1;1
+96964;15817;1;148;71.0;120;80;1;1;0;0;1;0
+96965;21151;2;176;82.0;140;100;1;1;0;0;1;1
+96966;18877;2;176;80.0;140;80;1;1;1;0;1;1
+96967;14369;1;161;62.0;90;60;1;1;0;0;0;0
+96968;19754;2;168;68.0;120;80;1;1;0;0;1;0
+96970;22851;2;172;95.0;190;100;1;1;0;0;1;1
+96972;19780;2;165;90.0;120;80;1;1;0;0;1;1
+96973;18125;1;156;54.0;140;90;3;1;0;0;1;1
+96974;18366;1;163;65.0;120;70;1;1;0;0;0;0
+96975;19617;2;172;90.0;120;70;1;1;0;0;1;0
+96976;14755;2;174;110.0;130;90;3;1;0;0;1;1
+96977;15239;1;165;54.0;110;70;1;1;0;0;1;0
+96979;23201;2;170;90.0;140;80;1;1;0;0;1;1
+96980;18394;1;164;87.0;130;80;2;1;0;0;1;0
+96981;21936;1;159;50.0;120;80;1;1;0;0;1;0
+96982;18801;1;175;67.0;110;70;1;1;0;0;0;0
+96985;16578;1;169;59.0;120;80;1;1;0;0;1;0
+96988;20243;2;176;88.0;130;80;2;1;0;0;1;0
+96989;23243;1;160;103.0;130;80;1;1;0;0;1;1
+96990;17002;1;160;95.0;120;80;1;1;0;0;0;1
+96992;21025;1;163;50.0;110;70;2;1;0;0;1;0
+96993;19146;2;174;86.0;120;80;1;1;0;0;1;0
+96995;17490;2;170;85.0;130;70;2;1;1;0;1;0
+96996;21012;1;170;92.0;120;80;2;2;0;0;1;0
+96997;21869;1;165;78.0;140;90;2;1;0;0;1;1
+96998;16904;1;168;71.0;110;70;1;1;0;0;1;0
+96999;20400;1;164;75.0;120;70;1;2;0;0;1;0
+97003;16814;1;150;46.0;100;70;1;1;0;0;1;0
+97004;22088;1;170;76.0;120;80;1;1;0;0;1;0
+97006;19048;2;171;115.0;140;80;2;1;1;0;1;0
+97007;19803;1;154;82.0;147;81;1;3;0;0;1;0
+97011;22131;1;170;78.0;120;80;1;1;0;0;1;1
+97012;19779;2;164;55.0;120;80;1;1;0;0;0;0
+97013;21864;1;168;100.0;120;80;2;1;0;0;1;1
+97014;16033;1;168;69.0;120;80;1;1;0;0;0;1
+97015;15939;1;160;98.0;160;90;3;1;0;0;1;1
+97018;21106;1;170;73.0;120;80;1;1;0;0;1;0
+97019;20261;2;186;104.0;140;100;1;1;1;0;1;1
+97020;21753;2;163;56.0;110;70;1;1;0;0;0;0
+97021;18833;1;164;71.0;130;90;2;2;0;0;1;1
+97022;20991;1;161;77.0;145;90;1;3;0;0;1;1
+97023;23223;1;168;74.0;110;70;1;1;0;0;1;1
+97024;14497;1;165;69.0;120;80;1;1;0;0;1;0
+97026;22174;2;179;77.0;120;80;1;1;1;0;1;1
+97027;14870;1;156;77.0;120;80;2;2;0;1;1;0
+97028;17688;1;155;62.0;120;80;1;2;0;0;0;0
+97030;23325;1;168;60.0;120;70;2;1;0;0;1;0
+97031;16266;2;168;81.0;120;80;1;1;0;0;1;1
+97033;20405;1;160;83.0;170;100;3;1;0;0;1;1
+97034;21103;2;174;87.0;170;100;2;1;0;0;1;1
+97035;19784;2;170;66.0;110;70;1;1;0;0;1;0
+97036;21228;1;168;80.0;140;90;1;3;0;0;1;1
+97039;21188;2;165;67.0;120;80;1;1;0;0;1;0
+97042;16613;2;170;81.0;12;80;1;1;0;0;0;0
+97043;20511;1;159;65.0;120;80;1;1;0;0;1;0
+97044;20371;2;178;63.0;130;90;3;1;0;0;1;1
+97045;19081;1;164;74.0;120;70;1;1;0;0;1;0
+97046;18280;1;157;52.0;110;70;1;1;0;0;1;0
+97049;16584;2;165;58.0;120;80;1;1;0;0;1;0
+97053;22632;1;147;50.0;140;85;3;1;0;0;1;1
+97054;16784;2;167;82.0;120;80;1;1;1;0;1;1
+97056;19564;1;160;67.0;140;80;1;1;0;0;1;1
+97057;16703;2;173;80.0;130;80;2;1;1;0;1;1
+97058;22476;1;153;76.0;160;90;1;3;0;0;0;1
+97061;15289;1;160;69.0;120;80;1;1;0;0;1;0
+97062;23143;1;167;72.0;150;90;1;1;0;0;1;1
+97063;19677;1;160;67.0;100;60;2;1;0;0;1;0
+97065;18347;1;151;61.0;120;80;1;1;0;0;1;0
+97066;23534;2;164;70.0;130;90;1;2;1;0;1;0
+97067;16799;2;167;76.0;120;70;1;2;0;0;1;0
+97070;21033;1;170;65.0;120;80;1;1;0;0;1;1
+97071;17768;1;164;57.0;110;80;1;1;0;0;0;1
+97072;21092;2;165;75.0;140;90;3;3;1;0;1;0
+97073;21382;2;180;81.0;120;80;1;1;0;0;1;0
+97074;21406;1;156;64.0;160;100;2;1;0;0;1;1
+97075;22724;2;173;73.0;130;80;2;1;0;0;1;1
+97077;19974;2;158;70.0;110;80;1;1;0;0;1;1
+97078;16041;1;156;58.0;110;70;1;1;0;0;1;1
+97080;21805;2;195;90.0;120;80;1;1;0;0;0;0
+97081;19025;2;184;86.0;120;80;1;1;0;0;1;1
+97082;14759;1;154;50.0;100;70;1;1;0;0;1;0
+97083;23196;1;153;80.0;120;80;2;1;0;0;1;0
+97084;18246;2;175;85.0;100;70;1;2;0;1;1;1
+97085;23288;1;155;90.0;130;80;3;1;0;0;0;1
+97087;21247;2;174;78.0;180;110;3;1;1;0;1;1
+97089;19084;2;169;88.0;150;100;3;3;0;0;1;1
+97090;14525;1;146;83.5;120;80;1;1;0;0;1;0
+97091;22576;2;185;95.0;140;80;1;1;1;0;0;1
+97092;16677;1;163;72.0;110;70;2;2;0;0;1;0
+97093;21229;1;157;55.0;110;70;1;1;0;0;1;0
+97095;19770;2;164;70.0;140;90;3;1;0;0;1;1
+97096;22848;2;163;72.0;100;60;2;1;0;1;1;0
+97097;21762;2;168;70.0;150;80;1;1;0;0;0;0
+97099;20420;2;151;57.0;120;80;1;1;0;0;1;0
+97100;18387;1;154;61.0;110;90;1;1;0;0;1;0
+97101;16810;1;156;56.0;110;70;1;1;0;0;1;0
+97102;14519;1;166;68.0;120;80;1;1;0;0;1;0
+97103;19037;2;162;84.0;170;100;2;1;0;1;1;1
+97104;22565;2;175;75.0;140;90;1;1;1;0;1;1
+97105;22026;2;160;97.0;150;100;1;2;1;0;1;1
+97106;21187;2;171;74.0;120;80;1;1;0;0;1;0
+97107;19802;1;165;63.0;130;80;1;1;0;0;1;0
+97108;21263;2;177;79.0;130;70;1;1;0;0;1;1
+97110;23172;2;168;81.0;140;90;3;3;0;0;0;0
+97111;21847;1;156;95.0;150;90;1;1;0;0;1;1
+97113;17628;2;168;79.0;160;100;3;1;0;0;1;1
+97114;23074;1;154;78.0;140;90;1;1;0;0;1;1
+97116;20256;2;164;60.0;140;80;1;1;1;0;1;1
+97117;20488;2;170;70.0;120;80;1;1;0;0;1;0
+97120;20521;1;147;68.0;120;80;1;1;0;0;1;0
+97123;19294;1;159;52.0;130;90;3;3;0;0;1;1
+97124;23701;1;178;75.0;120;80;1;1;0;0;1;1
+97125;17310;1;167;103.0;160;100;1;1;0;0;0;1
+97126;14391;2;171;82.0;120;80;1;1;0;0;0;0
+97127;17501;1;165;74.0;120;80;2;2;0;0;1;0
+97132;16022;1;159;57.0;110;70;2;2;0;0;1;0
+97135;22770;1;155;89.0;120;90;1;1;0;0;0;0
+97136;23397;1;158;83.0;130;80;1;1;0;0;1;1
+97138;20438;1;169;68.0;160;90;1;1;0;0;1;1
+97139;15108;1;165;95.0;120;80;1;1;0;0;1;0
+97140;18392;1;165;65.0;120;80;2;1;0;0;1;1
+97141;16073;1;162;58.0;110;66;2;1;1;0;1;0
+97142;19593;1;162;67.0;130;80;2;1;0;0;0;1
+97143;21998;2;165;74.0;130;80;1;1;0;0;1;1
+97145;23454;1;166;62.0;110;70;2;1;0;0;1;0
+97146;15156;1;150;60.0;120;80;1;1;0;0;1;0
+97150;17687;1;168;58.0;110;90;1;1;0;0;1;1
+97151;21701;1;154;64.0;85;66;1;1;0;1;1;0
+97152;18300;1;156;74.0;130;90;1;1;0;0;1;1
+97153;14747;1;145;65.0;90;60;1;1;0;0;0;0
+97154;19501;2;167;76.0;110;80;1;1;0;0;0;1
+97155;21085;2;159;45.0;120;80;1;1;1;0;1;0
+97156;21903;1;165;90.0;120;70;1;1;0;0;1;1
+97157;17566;1;170;74.0;140;100;2;1;0;0;1;1
+97160;22857;2;172;80.0;120;80;1;1;0;0;1;0
+97161;16685;1;160;98.0;120;80;1;1;0;0;1;1
+97162;16619;1;174;99.0;150;100;1;1;0;0;0;1
+97163;19880;2;172;85.0;120;80;1;1;0;0;1;1
+97166;19472;1;168;69.0;150;100;2;1;0;0;0;0
+97169;17351;1;153;58.0;90;60;1;1;0;0;1;0
+97170;15385;2;177;65.0;110;70;1;1;1;1;1;0
+97171;23505;1;157;75.0;130;90;1;1;0;0;1;1
+97172;15829;1;156;58.0;110;80;1;1;0;0;1;0
+97173;15164;2;161;93.0;170;1100;1;1;0;0;1;1
+97174;18197;1;159;75.0;110;70;1;1;0;0;1;0
+97175;18990;1;158;57.0;120;80;1;1;0;0;1;0
+97176;20276;1;155;63.0;120;80;1;1;0;0;1;0
+97177;18230;1;153;51.0;120;80;1;1;0;0;1;0
+97178;15042;1;166;59.0;120;60;1;1;0;0;1;0
+97180;23339;1;165;99.0;150;80;1;1;0;0;1;1
+97182;19801;2;175;96.0;110;70;2;1;0;0;1;1
+97185;19758;2;170;77.0;120;80;1;1;0;0;1;1
+97186;21205;1;151;61.0;150;90;3;1;0;0;1;1
+97187;14348;2;169;63.0;120;80;2;1;0;0;1;0
+97188;21180;1;150;60.0;140;90;1;1;0;0;1;0
+97189;21985;1;156;65.0;140;90;1;1;0;0;1;1
+97190;18005;1;167;69.0;150;709;2;1;0;0;0;0
+97191;22376;1;160;79.0;120;70;2;1;0;0;1;1
+97192;17515;1;162;67.0;120;80;1;1;0;0;1;0
+97193;17332;1;159;103.0;150;100;1;1;0;0;0;1
+97194;23513;1;154;100.0;140;1000;1;1;0;0;0;1
+97195;23429;2;176;80.0;130;80;1;1;0;0;1;1
+97198;21933;1;170;69.0;130;80;1;1;0;0;1;1
+97199;18121;1;158;63.0;120;80;3;3;0;0;1;0
+97200;22536;2;178;92.0;130;90;1;1;1;1;1;1
+97201;22813;1;154;52.0;130;80;3;1;0;0;1;1
+97202;18947;2;170;68.0;130;80;1;1;1;0;1;0
+97203;22557;1;156;72.0;120;80;1;1;0;0;1;0
+97204;18186;2;163;73.0;120;80;1;1;0;1;1;1
+97205;19746;1;152;102.0;130;90;1;1;0;0;1;0
+97207;19069;1;165;67.0;150;100;1;1;0;0;0;1
+97208;16787;1;178;68.0;140;90;2;1;0;1;1;1
+97209;22628;2;170;67.0;110;60;1;1;0;0;1;0
+97210;18421;1;152;65.0;80;120;1;1;0;0;1;0
+97214;20184;1;158;66.0;130;90;1;1;0;0;1;1
+97215;20473;1;155;66.0;120;80;2;2;0;0;1;0
+97217;18108;2;172;82.0;140;100;1;1;0;0;1;1
+97218;20336;1;167;99.0;120;80;1;1;0;0;1;0
+97219;17437;1;165;65.0;120;80;3;3;0;0;1;1
+97220;20851;2;165;110.0;140;100;1;2;0;1;0;1
+97221;19228;2;172;84.0;120;80;1;1;0;0;1;1
+97222;16020;1;155;75.0;90;60;1;1;0;0;1;0
+97223;15496;2;157;52.0;110;70;1;1;0;0;1;0
+97225;19782;1;162;114.0;120;80;1;1;0;0;1;1
+97229;20990;1;157;69.0;130;80;2;1;0;0;1;1
+97230;21795;1;162;72.0;160;100;3;1;0;0;1;1
+97231;22880;2;170;73.0;130;80;2;1;0;0;1;1
+97234;17377;1;160;92.0;150;90;1;1;0;0;1;1
+97235;19830;2;173;76.0;160;90;1;1;1;1;0;1
+97236;19750;1;166;75.0;120;80;1;1;0;0;1;0
+97237;22018;1;161;82.0;150;100;2;1;0;0;0;1
+97238;20664;2;167;79.0;120;80;1;1;0;0;0;0
+97239;17792;2;167;70.0;105;61;1;1;0;0;1;0
+97240;20225;2;170;64.0;120;80;1;1;0;0;0;0
+97242;18168;1;158;62.0;130;95;1;1;0;0;1;0
+97243;19085;2;169;67.0;130;90;3;3;0;0;1;1
+97246;22619;2;165;65.0;110;70;1;1;0;0;1;0
+97247;22529;2;163;61.0;100;80;1;1;0;1;1;0
+97248;18417;1;156;53.0;140;90;1;1;0;0;1;1
+97249;18804;1;164;63.0;130;80;2;1;0;0;1;0
+97250;18233;1;175;90.0;140;90;1;1;0;0;1;1
+97251;21142;1;162;84.0;130;90;3;3;0;0;1;1
+97253;19047;1;168;75.0;120;80;1;1;0;0;1;1
+97255;22694;1;156;70.0;150;90;3;3;0;0;1;1
+97256;19857;2;176;81.0;120;80;2;1;0;0;1;0
+97257;21187;2;165;70.0;120;80;1;1;0;0;1;0
+97258;19888;1;155;63.0;90;60;1;1;0;0;1;0
+97261;20662;2;171;73.0;110;70;1;1;0;0;1;0
+97263;15472;1;162;51.0;100;60;1;1;0;0;1;0
+97265;19785;1;163;92.0;120;70;1;1;0;0;1;0
+97266;18210;1;149;63.0;120;70;1;1;0;0;1;0
+97267;20615;1;167;70.0;130;80;1;1;0;0;1;1
+97269;14585;2;170;70.0;130;70;1;1;1;0;1;0
+97272;19463;1;176;94.0;170;90;1;1;0;0;1;1
+97273;19741;2;170;90.0;150;90;2;3;1;1;1;0
+97277;20471;1;152;51.0;110;60;1;1;0;0;0;0
+97278;16849;1;168;74.0;110;80;1;1;0;0;1;0
+97279;15225;2;169;69.0;120;80;1;1;1;1;1;0
+97280;15449;2;171;84.0;120;80;1;1;1;1;1;0
+97281;17672;2;180;78.0;160;100;2;2;1;1;1;1
+97284;17034;2;157;54.0;90;70;1;1;0;0;1;1
+97285;20417;2;184;71.0;120;80;1;1;0;0;0;0
+97286;23324;1;150;96.0;110;60;1;1;0;0;1;1
+97288;18045;1;168;77.0;120;90;1;1;0;0;1;1
+97289;22696;2;173;66.0;110;80;1;1;0;0;0;0
+97290;20466;1;156;72.0;130;90;2;1;0;0;1;0
+97291;20484;1;154;54.0;110;70;1;1;0;0;0;0
+97292;16119;1;166;85.0;120;80;1;1;0;0;1;0
+97293;17373;2;165;66.0;160;100;1;1;1;0;1;1
+97294;18863;1;165;66.0;120;80;1;1;0;0;1;0
+97295;20669;2;158;60.0;120;70;1;1;0;0;0;0
+97296;22138;1;158;75.0;120;80;1;1;0;0;1;0
+97297;17718;2;183;69.0;120;80;1;1;1;1;1;0
+97298;15452;1;166;85.0;110;70;1;1;0;0;1;0
+97299;21125;1;164;102.0;110;70;1;1;0;0;0;1
+97301;21717;1;162;89.0;130;90;1;1;0;0;0;0
+97302;18037;1;160;60.0;120;80;1;1;0;0;1;1
+97303;23264;2;170;75.0;130;90;1;1;0;0;1;0
+97305;19714;1;156;60.0;150;90;1;1;0;0;1;1
+97311;20442;2;160;62.0;120;80;1;1;0;0;0;0
+97313;19585;2;169;68.0;120;80;1;1;1;1;1;0
+97315;15301;1;163;63.0;162;52;1;1;0;0;1;1
+97316;19715;1;162;72.0;130;90;2;1;0;0;1;1
+97317;19889;1;164;64.0;140;80;1;2;0;0;1;1
+97318;21993;2;162;70.0;130;90;2;1;1;0;1;1
+97320;20530;1;169;88.0;140;90;3;3;0;0;1;1
+97321;19229;1;160;49.0;120;80;1;1;0;0;1;0
+97322;15931;2;177;83.0;120;80;1;1;0;0;1;0
+97324;20883;1;146;60.0;160;90;1;1;0;0;1;1
+97328;21141;1;163;63.0;120;80;3;3;0;0;0;1
+97329;19739;1;155;55.0;100;70;1;1;0;0;1;0
+97330;23521;2;164;71.0;130;70;3;1;0;0;1;1
+97333;21137;2;166;74.0;160;80;1;1;0;0;1;1
+97334;16134;2;166;68.0;110;70;1;1;0;0;1;0
+97336;18742;1;163;61.0;120;80;1;2;0;0;1;0
+97338;20364;1;161;62.0;150;80;2;1;0;0;1;1
+97339;18255;1;165;70.0;120;80;1;1;0;0;1;1
+97341;16693;1;157;71.0;100;80;2;1;0;0;0;0
+97342;19146;2;165;65.0;120;80;3;3;1;1;1;0
+97343;21113;2;175;72.0;120;80;1;1;0;0;1;0
+97344;21169;2;170;69.0;120;80;1;1;0;0;1;0
+97345;18251;1;160;65.0;120;90;1;1;0;0;1;0
+97346;18839;2;165;71.0;120;90;1;2;0;0;1;0
+97348;20391;2;169;78.0;120;80;1;1;0;0;1;1
+97351;18409;1;165;67.0;120;80;1;2;0;0;1;0
+97354;20600;1;167;64.0;120;80;1;1;0;0;1;1
+97358;17700;1;165;75.0;140;90;2;1;0;0;1;1
+97359;21469;1;165;65.0;120;80;1;1;0;0;1;0
+97360;15444;2;172;70.0;120;80;1;1;0;0;0;0
+97361;21848;1;164;68.0;120;80;1;1;1;0;1;1
+97362;22123;1;168;65.0;130;80;1;1;0;0;1;0
+97363;21977;2;170;72.0;120;80;1;1;1;0;1;1
+97364;19908;1;156;73.0;140;80;1;3;0;0;1;1
+97365;23162;2;160;76.0;130;90;1;2;0;0;1;1
+97366;18912;1;153;69.0;120;80;1;1;0;0;1;0
+97369;18923;1;159;80.0;110;70;2;1;0;0;1;0
+97370;21977;1;165;68.0;110;70;1;1;0;0;1;0
+97372;19713;1;170;65.0;120;80;1;3;0;0;1;0
+97373;22720;1;164;75.0;140;100;1;1;0;0;1;1
+97374;15289;1;166;69.0;120;70;1;1;0;0;1;0
+97375;19922;2;171;89.0;120;80;1;1;0;0;1;0
+97376;22051;1;153;93.0;130;90;3;1;0;0;1;1
+97377;22050;1;159;74.0;110;70;1;1;0;0;1;0
+97378;19261;2;170;81.0;120;70;1;1;0;0;1;0
+97379;19713;2;172;80.0;150;80;1;1;1;1;1;1
+97383;14701;2;172;76.0;110;70;2;1;0;0;1;0
+97384;15358;1;169;75.0;120;80;1;1;0;0;0;0
+97386;16158;1;170;50.0;100;70;1;1;0;0;1;0
+97387;22082;2;163;66.0;120;80;1;1;0;0;1;0
+97388;21906;2;160;75.0;140;90;2;1;1;0;1;1
+97389;21106;1;166;73.0;130;80;2;1;0;1;1;0
+97391;19528;1;151;57.0;110;80;1;1;0;0;1;0
+97392;18737;2;170;72.0;150;90;2;1;0;0;0;1
+97393;22447;1;154;69.0;160;100;2;1;0;0;1;0
+97394;21716;1;165;105.0;140;90;3;2;0;0;1;1
+97395;18160;1;160;65.0;120;70;1;1;0;0;0;0
+97396;19762;2;172;69.0;120;80;1;1;0;0;1;0
+97397;19749;1;180;65.0;120;90;1;1;0;0;1;1
+97398;20484;1;162;65.0;110;80;1;1;0;0;1;0
+97400;15401;2;158;69.0;110;79;1;1;0;0;1;1
+97402;22768;1;162;61.0;120;70;3;1;0;0;1;1
+97404;15247;2;166;77.0;110;80;2;1;0;0;1;0
+97405;18340;1;165;85.0;140;90;1;1;0;0;1;1
+97406;16990;1;167;98.0;120;80;1;1;0;0;1;0
+97408;18263;2;175;85.0;120;80;1;1;0;0;1;0
+97409;23329;1;148;45.0;130;80;1;1;0;0;1;0
+97411;17596;2;173;100.0;130;80;3;1;0;0;1;1
+97412;18854;2;178;81.0;150;90;3;1;1;0;1;1
+97413;21961;2;152;65.0;130;80;1;1;0;0;1;1
+97414;22170;1;170;70.0;120;80;1;1;0;0;1;0
+97415;16743;2;161;61.0;120;80;1;1;0;0;1;0
+97417;18396;1;162;75.0;120;80;1;1;1;0;1;1
+97419;18088;1;153;78.0;130;80;1;1;0;0;1;1
+97420;20909;1;160;71.0;165;90;3;3;0;0;1;1
+97421;18272;1;156;90.0;120;80;1;1;0;0;0;0
+97422;20315;1;156;70.0;130;80;1;1;0;0;1;1
+97423;21085;1;165;71.0;140;90;3;1;0;0;1;1
+97424;14480;1;162;71.0;120;70;1;1;0;0;0;0
+97425;22070;2;169;71.0;130;80;3;1;1;0;1;1
+97426;21859;1;165;85.0;140;80;1;1;0;0;1;0
+97428;19667;1;174;84.0;120;80;1;1;0;0;1;0
+97429;17508;1;154;73.0;150;100;1;1;0;0;1;1
+97430;19840;1;165;82.0;160;1000;1;1;0;0;0;1
+97431;17423;1;163;78.0;120;80;1;1;0;0;1;0
+97432;23448;1;169;78.0;110;70;1;1;0;0;1;1
+97433;15977;1;154;81.0;110;70;1;1;0;0;1;0
+97435;21774;1;166;89.0;140;1000;1;1;0;0;1;1
+97436;21347;1;154;67.0;140;90;2;1;0;0;0;0
+97438;15209;2;169;66.0;120;70;1;1;1;0;1;0
+97439;18809;2;173;100.0;130;20;1;1;0;0;1;1
+97440;21372;1;156;70.0;120;80;1;1;0;0;1;1
+97441;21854;1;160;93.0;120;80;1;1;0;0;1;1
+97442;19064;2;169;65.0;120;80;1;1;0;0;1;0
+97444;18900;1;166;68.0;120;80;1;1;0;0;1;0
+97446;18054;1;156;58.0;120;80;3;1;1;0;1;1
+97447;19819;2;176;85.0;140;80;1;1;0;0;1;1
+97448;20359;1;147;64.0;110;70;1;1;0;0;1;0
+97449;15118;2;176;95.0;140;90;3;3;1;0;1;1
+97452;18059;2;167;64.0;160;90;2;1;0;0;1;1
+97453;20910;2;170;65.0;120;80;1;1;0;0;1;0
+97454;21249;2;174;80.0;120;80;1;1;0;0;1;1
+97457;18766;2;174;74.0;125;80;1;1;0;0;1;0
+97458;17538;1;168;74.0;120;70;1;1;0;0;0;0
+97459;19677;1;159;69.0;130;80;1;1;0;0;1;0
+97460;23468;1;165;75.0;130;60;1;1;0;0;1;1
+97461;19723;1;159;78.0;110;70;1;1;0;0;1;0
+97462;21451;2;169;73.0;130;80;1;1;0;0;1;0
+97464;17239;1;152;58.0;110;60;3;3;0;0;1;0
+97465;15084;1;167;68.0;120;80;1;3;1;0;1;0
+97466;22032;2;158;72.0;100;80;1;1;0;0;1;1
+97467;18810;2;169;82.0;140;90;1;1;1;1;1;1
+97468;15950;1;144;91.0;120;80;1;1;0;0;0;1
+97469;22063;2;177;67.0;140;90;1;1;0;0;1;1
+97470;18823;1;160;79.0;120;80;2;1;0;0;1;0
+97471;18300;1;159;66.0;120;80;1;1;0;0;1;0
+97472;21422;2;158;52.0;120;80;1;1;0;0;1;0
+97473;19758;1;168;67.0;120;80;1;1;0;0;1;0
+97474;23312;2;153;56.0;150;90;2;1;0;0;0;1
+97475;14706;1;160;65.0;100;60;1;1;0;0;1;0
+97476;18997;1;159;58.0;150;100;2;2;0;0;1;1
+97477;22121;1;154;51.0;120;80;1;1;0;0;1;0
+97478;23559;1;156;77.0;140;90;3;1;0;0;0;1
+97479;20278;1;165;84.0;120;80;1;1;0;0;1;0
+97480;19046;1;154;67.0;120;80;1;2;0;0;0;1
+97482;15976;2;174;90.0;120;80;1;1;0;0;1;0
+97483;19433;1;160;64.0;110;60;1;1;0;0;0;0
+97484;20353;1;172;73.0;120;80;1;1;0;0;1;0
+97485;21079;1;161;81.0;130;70;1;1;0;0;0;1
+97486;19024;2;165;67.0;110;60;1;1;0;0;0;1
+97489;21029;1;169;83.0;120;70;1;1;0;0;0;0
+97490;22569;1;161;105.0;140;90;3;1;0;0;0;1
+97493;20350;1;168;94.0;120;80;2;1;0;0;1;0
+97494;18761;2;162;56.0;150;100;1;1;0;0;1;1
+97495;23166;1;159;60.0;130;80;1;1;0;0;1;0
+97497;20424;2;169;73.0;150;90;1;1;0;0;1;1
+97499;16905;1;171;60.0;120;70;1;1;0;0;1;0
+97500;18084;2;166;70.0;130;80;3;3;0;0;1;1
+97501;16823;1;154;108.0;120;80;1;1;0;0;0;1
+97506;18114;1;159;56.0;120;80;1;1;0;0;1;1
+97508;22046;1;164;79.0;150;90;3;3;0;0;0;1
+97511;20348;2;176;78.0;120;90;3;1;1;0;1;0
+97512;21282;2;170;88.0;170;110;1;1;0;0;1;1
+97513;22547;1;156;78.0;160;100;1;2;0;0;0;1
+97514;22548;1;159;98.0;120;80;2;1;0;0;1;0
+97516;20525;1;175;84.0;150;90;1;1;1;0;1;1
+97518;14635;2;171;64.0;120;80;1;1;0;0;1;1
+97519;21403;2;176;78.0;110;70;1;1;1;1;1;0
+97521;21119;1;160;60.0;120;80;1;1;0;0;0;1
+97522;14571;1;159;91.0;120;80;1;1;0;0;1;0
+97523;20388;2;171;89.0;120;80;1;1;0;0;1;0
+97524;16068;1;168;64.0;140;90;2;1;0;0;1;1
+97525;22585;1;165;80.0;170;90;1;1;0;0;1;1
+97526;22033;1;148;74.0;100;70;1;1;0;0;1;0
+97528;18364;1;175;76.0;120;80;1;1;0;0;0;0
+97529;23486;2;161;84.0;180;1100;1;1;0;0;1;1
+97530;21085;1;167;88.0;120;80;1;1;0;0;1;0
+97531;18128;1;156;68.0;140;80;3;1;0;0;1;1
+97532;18268;2;165;65.0;150;90;1;1;0;0;1;1
+97533;19722;2;175;88.0;160;100;1;1;0;0;1;1
+97535;15201;1;170;68.0;120;70;1;1;0;0;1;0
+97536;23354;1;168;74.0;130;80;3;1;0;0;0;1
+97538;21914;1;144;56.0;130;70;2;1;0;0;1;0
+97539;21278;1;165;84.0;120;80;1;1;0;0;0;1
+97540;21176;1;158;70.0;100;70;3;3;0;0;1;1
+97542;23351;1;162;63.0;140;90;3;3;0;0;1;0
+97543;21204;1;149;72.0;150;90;1;1;0;0;1;0
+97544;16731;2;172;70.0;110;70;1;1;0;0;1;1
+97545;18051;2;170;80.0;120;70;1;1;0;0;1;0
+97547;21825;1;154;78.0;130;90;3;3;0;0;0;0
+97551;21452;1;161;59.0;120;80;2;2;0;0;1;1
+97553;22578;1;165;105.0;160;100;2;2;0;0;0;1
+97554;21025;1;152;90.0;140;80;1;1;0;0;0;1
+97555;16215;1;162;105.0;110;80;2;1;0;1;1;0
+97556;19078;1;168;82.0;120;80;1;1;0;0;1;1
+97557;18366;1;162;62.0;100;80;1;1;0;0;1;0
+97559;23471;2;170;63.0;120;80;1;1;0;0;1;1
+97561;23207;1;168;71.0;160;60;1;1;0;0;0;1
+97562;18333;1;152;77.0;130;80;1;1;0;0;1;1
+97563;19025;1;153;90.0;120;80;1;1;0;0;1;0
+97564;19081;1;162;70.0;130;70;1;1;0;0;0;1
+97565;19557;1;155;79.0;110;75;1;1;0;0;1;0
+97566;17834;1;158;57.0;120;70;1;1;0;0;1;0
+97570;21741;1;152;63.0;160;90;1;1;0;0;1;1
+97571;19424;1;167;73.0;150;110;1;1;0;0;1;1
+97572;19070;1;152;55.0;120;80;2;1;0;0;1;0
+97573;16084;1;162;70.0;110;70;1;1;0;0;1;0
+97574;21376;1;162;65.0;120;80;1;1;0;0;1;1
+97575;19519;2;176;100.0;140;90;1;1;0;0;1;1
+97576;20550;2;166;105.0;150;90;1;1;0;0;1;0
+97577;19279;2;169;74.0;120;80;1;1;0;0;1;0
+97578;18223;2;170;51.0;90;60;1;1;0;0;1;0
+97579;19491;2;140;57.0;130;90;1;1;0;0;1;0
+97581;23320;1;160;63.0;130;100;2;1;0;0;1;0
+97582;14472;1;156;52.0;120;80;1;1;0;0;1;0
+97583;23433;1;160;62.0;140;90;3;1;0;0;1;1
+97584;14624;2;168;59.0;120;80;1;1;0;0;1;0
+97585;16077;1;177;64.0;110;80;1;1;0;0;1;0
+97586;19014;2;172;92.0;150;100;3;1;0;0;1;1
+97588;23113;1;152;42.0;120;80;1;1;1;0;0;0
+97589;21931;1;169;80.0;140;90;1;1;0;0;0;1
+97590;21283;2;175;80.0;110;90;1;3;0;0;0;0
+97592;19820;1;172;75.0;120;80;1;1;0;0;0;0
+97595;14602;2;173;69.0;120;80;1;1;0;0;1;0
+97597;15880;1;170;78.0;120;80;1;1;0;0;1;0
+97598;18061;1;153;85.0;110;70;1;2;0;0;1;0
+97602;16571;1;168;92.0;130;90;3;1;0;0;1;0
+97603;22326;2;168;53.0;140;90;3;1;0;1;1;1
+97605;23532;1;160;74.0;150;100;1;1;0;0;0;1
+97607;15450;2;170;72.0;110;70;1;1;0;0;1;1
+97608;21909;1;151;80.0;130;50;2;2;0;0;1;0
+97609;15225;1;160;63.0;120;80;3;1;0;0;1;0
+97611;18217;1;164;100.0;130;90;1;2;0;1;1;0
+97612;22819;2;167;83.0;150;100;1;1;0;0;0;1
+97613;20227;1;164;71.0;160;90;2;1;0;0;1;1
+97614;18231;2;171;70.0;120;80;1;1;0;0;1;0
+97615;15072;2;175;81.0;130;80;1;1;0;0;0;0
+97619;17356;1;158;68.0;160;90;1;1;0;0;1;0
+97622;19015;1;157;58.0;160;100;1;1;0;0;1;1
+97624;19219;1;160;59.0;120;80;1;1;0;0;1;0
+97626;20537;1;162;66.0;120;80;1;1;0;0;1;1
+97627;18859;2;178;76.0;110;70;1;1;0;0;1;0
+97628;20311;1;154;65.0;120;80;1;1;0;0;1;1
+97629;16013;1;178;68.0;140;90;2;1;0;0;0;1
+97630;19750;2;176;56.0;100;70;1;1;0;1;1;0
+97632;19935;1;158;77.0;120;80;1;1;0;0;1;0
+97634;18201;1;161;93.0;120;80;2;2;0;0;1;1
+97635;16858;1;161;80.0;120;80;1;1;0;0;1;0
+97636;18362;2;165;63.0;140;70;1;1;0;0;0;0
+97637;19716;1;155;90.0;160;80;1;1;0;0;1;1
+97638;18723;1;166;66.0;90;60;2;2;0;0;1;1
+97641;16599;1;169;85.0;90;60;1;1;0;0;0;1
+97642;22527;1;155;85.0;140;90;1;3;0;0;1;0
+97643;19758;2;169;71.0;120;80;1;1;0;0;1;0
+97644;22113;1;168;90.0;140;90;2;2;0;0;0;1
+97648;18885;2;175;65.0;110;70;2;2;0;0;1;0
+97649;15341;1;155;68.0;140;100;1;1;0;0;1;0
+97651;19066;2;159;68.0;100;50;2;1;1;0;1;0
+97652;17699;1;158;80.0;140;80;1;1;0;0;1;1
+97653;20213;1;165;60.0;110;70;1;1;0;0;0;1
+97655;18950;2;160;70.0;110;80;1;1;0;0;0;0
+97656;22677;1;157;57.0;130;80;3;1;0;0;1;1
+97657;20355;1;169;85.0;130;85;3;1;0;0;1;1
+97658;18154;1;155;70.0;110;70;1;1;0;0;1;0
+97659;18268;1;156;76.0;120;70;1;1;0;0;0;0
+97660;19800;1;156;72.0;150;90;1;1;0;0;1;1
+97661;17658;2;168;75.0;140;70;2;1;1;0;1;1
+97662;23437;1;155;88.0;120;80;3;3;0;0;1;0
+97663;17454;1;175;80.0;160;80;1;1;0;0;1;1
+97666;18762;1;165;65.0;120;80;1;1;0;0;1;0
+97667;17693;1;169;62.0;120;80;1;1;0;0;1;0
+97668;19597;1;149;61.0;150;100;2;1;0;0;0;0
+97669;18355;2;175;74.0;120;80;1;1;0;0;1;0
+97670;18986;1;164;69.0;130;90;1;1;1;0;1;0
+97671;18434;2;169;70.0;120;70;1;1;0;0;0;1
+97673;17681;2;169;71.0;110;70;1;1;1;0;1;1
+97675;20355;1;154;55.0;130;90;2;1;0;0;1;1
+97676;20376;1;152;56.0;130;80;1;1;0;0;1;1
+97677;18231;2;160;60.0;120;80;1;1;0;0;1;0
+97680;19787;1;174;65.0;120;80;2;1;0;0;1;0
+97683;21824;2;171;70.0;130;90;1;1;0;0;1;0
+97684;19165;1;165;83.0;160;100;3;3;0;0;1;1
+97685;17308;2;168;65.0;110;70;1;1;0;0;1;1
+97687;22471;1;144;80.0;120;80;1;2;0;0;1;0
+97690;20445;1;168;68.0;150;90;1;1;0;0;0;1
+97691;19049;2;155;65.0;130;80;1;1;0;0;0;1
+97694;19083;1;165;70.0;120;70;2;1;0;0;1;0
+97695;19734;1;162;89.0;120;80;2;1;0;0;0;1
+97696;22644;2;167;88.0;130;90;1;1;0;0;1;0
+97698;14425;1;150;61.0;90;60;1;1;0;0;1;0
+97700;22847;2;150;58.0;130;80;1;1;0;1;0;0
+97701;15946;1;155;75.0;120;80;1;1;0;0;1;0
+97702;14545;1;165;69.0;120;60;1;1;0;0;1;0
+97703;22058;1;160;83.0;130;80;2;1;0;0;0;1
+97705;23483;1;171;61.0;150;80;3;3;0;0;0;0
+97706;16276;1;160;101.0;120;80;1;1;0;0;1;1
+97708;18712;1;160;56.0;140;80;2;1;0;0;1;1
+97710;21865;1;165;78.0;120;60;1;1;0;0;1;1
+97711;18402;1;171;75.0;120;80;1;1;0;0;1;0
+97712;21892;2;170;67.0;140;90;2;1;0;0;1;1
+97714;16149;1;165;70.0;140;100;2;2;0;0;1;1
+97716;21409;1;155;90.0;140;80;2;1;0;0;1;1
+97717;20951;1;164;89.0;130;90;1;1;0;0;1;1
+97720;18048;2;166;77.0;160;90;1;1;0;0;0;1
+97721;16713;2;178;90.0;140;90;2;1;0;0;1;1
+97724;21150;1;158;64.0;120;80;1;1;0;0;1;0
+97725;15396;2;172;89.0;120;80;1;1;0;0;1;0
+97727;19269;1;170;87.0;120;80;1;1;0;0;1;0
+97728;23538;1;162;67.0;130;80;1;1;0;0;1;0
+97729;16838;1;165;60.0;110;70;1;1;0;0;1;0
+97734;23088;1;157;65.0;130;90;2;1;0;0;1;1
+97735;17312;2;170;86.0;120;80;1;1;0;0;0;0
+97737;20248;2;176;86.0;140;80;2;3;0;0;1;1
+97738;22180;1;160;79.0;130;100;1;1;0;0;1;0
+97739;21496;2;166;93.0;130;80;2;1;0;1;0;0
+97740;23438;1;155;87.0;130;90;2;1;0;0;1;1
+97741;15973;2;179;89.0;130;80;1;1;0;0;0;1
+97743;19632;1;165;82.0;150;80;1;1;0;0;1;1
+97744;18252;1;158;54.0;90;60;1;1;0;0;1;0
+97745;23223;1;153;65.0;120;80;3;1;0;0;1;1
+97747;23329;1;160;69.0;145;80;1;1;0;0;1;0
+97749;19650;1;159;68.0;130;80;2;1;0;0;1;1
+97750;22160;2;168;68.0;120;80;1;1;0;0;1;0
+97751;22410;1;154;59.0;130;80;1;1;0;0;1;0
+97753;16920;2;172;79.0;140;90;1;3;0;0;1;0
+97755;19672;2;164;63.0;120;80;1;1;1;0;1;0
+97756;15653;1;170;80.0;120;80;1;1;0;0;1;0
+97757;18842;1;165;65.0;120;80;1;1;0;0;1;1
+97758;19488;1;148;66.0;120;90;1;1;0;0;1;0
+97759;20457;1;161;78.0;130;80;3;3;0;0;1;0
+97760;19108;2;160;60.0;120;80;1;1;0;0;0;1
+97761;21140;2;170;80.0;140;90;1;1;1;0;1;1
+97764;18939;2;166;76.0;140;100;1;1;0;0;1;1
+97765;21991;1;145;60.0;130;90;3;3;0;1;1;1
+97767;18271;2;162;65.0;125;70;1;1;1;1;1;0
+97768;15370;2;179;100.0;200;140;1;2;1;0;1;1
+97769;17443;1;165;60.0;90;60;1;1;0;0;1;0
+97770;20543;2;187;80.0;140;80;1;1;0;0;0;1
+97771;20004;2;181;72.0;100;70;2;1;1;1;1;0
+97773;17580;1;155;60.0;120;80;1;1;0;0;1;0
+97774;14324;1;152;75.0;140;1000;1;1;0;0;0;1
+97775;21879;1;156;60.0;160;90;1;1;0;0;1;1
+97776;21973;1;165;63.0;12;80;1;1;0;0;1;0
+97777;19044;1;166;78.0;110;70;2;1;0;0;1;1
+97780;21613;2;169;57.0;180;100;3;1;1;1;1;1
+97781;22681;2;170;69.0;140;90;1;1;0;0;1;1
+97782;15213;1;172;66.0;120;80;1;1;0;0;1;0
+97783;21791;2;176;87.0;180;120;3;1;0;0;0;0
+97785;19220;1;168;88.0;130;90;1;1;0;0;1;1
+97786;23392;1;170;70.0;160;100;2;1;0;0;1;1
+97787;21024;2;167;63.0;120;80;1;1;0;0;1;0
+97788;22119;1;155;99.0;120;80;1;1;0;0;1;0
+97789;16730;1;174;94.0;100;70;1;1;0;0;1;0
+97790;22788;1;166;92.0;140;80;2;2;0;0;1;0
+97791;20447;1;153;48.0;130;70;1;2;0;0;0;0
+97793;22566;1;164;68.0;150;90;1;1;0;0;1;0
+97797;22445;2;178;84.0;190;1000;1;1;1;0;1;1
+97798;18182;1;166;89.0;140;90;1;1;0;0;1;1
+97799;19035;1;160;57.0;120;80;3;1;0;0;1;0
+97800;23271;1;148;70.0;110;70;2;1;0;0;1;0
+97801;20588;1;168;80.0;150;80;1;3;0;0;1;1
+97802;21446;1;160;60.0;120;80;1;1;0;0;1;0
+97803;23374;2;164;53.0;150;90;3;1;1;0;1;1
+97804;14678;1;152;78.0;120;80;1;1;0;0;1;0
+97807;18746;1;173;70.0;90;70;1;1;0;0;1;0
+97808;21989;1;165;63.0;110;70;3;3;0;0;1;1
+97809;15553;2;176;80.0;120;80;1;1;0;0;0;0
+97811;23097;1;153;103.0;140;90;3;1;0;0;0;1
+97812;21106;1;164;81.0;140;90;1;3;0;0;1;1
+97813;23447;1;158;65.0;160;90;1;2;0;0;1;0
+97815;17564;1;147;68.0;140;80;3;1;0;0;1;1
+97817;15890;2;167;66.0;120;80;1;1;1;0;1;0
+97820;21249;2;168;65.0;120;80;1;1;0;0;1;0
+97821;15312;2;177;77.0;110;60;1;1;0;0;1;1
+97822;22658;2;165;65.0;140;90;1;3;0;0;1;0
+97823;20592;1;168;64.0;120;60;1;1;0;0;0;1
+97828;18393;1;165;68.0;120;80;1;1;0;0;1;1
+97829;15238;1;168;78.0;130;70;1;1;0;0;1;0
+97830;21987;1;168;72.0;120;80;3;3;0;0;0;1
+97831;22147;1;160;72.0;130;90;1;3;0;0;1;1
+97832;16670;2;167;80.0;110;70;1;1;0;0;1;0
+97835;15856;2;185;86.0;130;90;1;1;0;0;0;1
+97837;18028;1;170;99.0;130;90;1;1;0;0;1;1
+97840;16775;2;176;91.0;120;80;1;1;0;0;1;0
+97843;20461;2;170;78.0;120;80;1;1;0;0;0;1
+97844;19821;2;163;87.0;120;80;1;1;0;0;0;1
+97845;14352;1;162;72.0;110;70;1;1;0;0;1;0
+97847;21086;1;162;68.0;120;80;1;1;0;0;1;0
+97849;20225;1;162;89.0;170;120;2;2;0;0;1;1
+97850;17279;1;177;81.0;120;80;1;1;0;0;0;1
+97851;15256;1;158;52.0;120;80;1;1;0;0;1;0
+97852;15193;2;170;88.0;130;90;2;1;0;0;1;0
+97853;20134;1;162;89.0;140;100;1;1;0;0;1;1
+97854;23325;1;156;87.0;150;98;1;1;0;0;0;1
+97858;16780;1;154;48.0;110;65;1;1;0;0;0;0
+97860;18352;1;163;65.0;120;70;1;1;0;0;0;1
+97861;21039;2;168;74.0;90;60;1;1;0;0;1;0
+97862;16728;2;168;75.0;130;90;1;1;1;0;1;1
+97863;21099;2;176;80.0;120;80;1;1;0;0;1;1
+97865;16757;1;156;76.0;120;90;1;1;1;0;1;0
+97866;17249;2;162;70.0;120;80;3;3;1;1;1;1
+97867;22397;2;174;62.0;120;70;1;1;0;0;1;0
+97870;14664;2;166;58.0;130;90;2;1;1;0;1;0
+97871;20527;2;175;80.0;130;90;3;2;0;1;1;1
+97873;18191;1;167;65.0;150;80;1;1;0;0;0;1
+97874;18763;1;157;60.0;110;80;1;1;0;0;1;1
+97875;19840;1;154;80.0;120;80;1;1;0;0;1;0
+97876;19755;1;168;87.0;100;60;2;1;0;0;0;0
+97878;21891;1;153;60.0;140;100;1;1;0;0;1;0
+97881;21134;1;159;72.0;108;72;3;2;0;0;0;0
+97882;20581;1;159;77.0;160;90;2;1;0;0;0;1
+97884;14555;2;168;68.0;120;80;1;1;1;0;1;1
+97885;19633;2;172;105.0;130;80;1;1;0;0;1;1
+97886;17463;1;157;60.0;90;60;1;1;0;0;1;0
+97889;15238;1;164;62.0;140;80;2;2;0;0;1;1
+97890;21775;1;154;73.0;140;90;1;1;0;0;0;1
+97892;18241;2;175;94.0;110;70;1;1;1;0;0;0
+97893;22576;1;150;80.0;130;90;1;1;0;0;1;1
+97894;15972;2;172;64.0;110;70;1;1;0;0;1;0
+97895;21062;1;159;71.0;145;85;1;1;0;0;1;1
+97897;16217;2;177;86.0;140;90;1;1;0;0;1;1
+97899;18363;1;165;61.0;120;80;1;1;0;0;1;0
+97901;21827;2;169;57.0;120;80;1;1;0;0;1;1
+97904;23449;2;184;69.0;120;80;1;1;0;0;1;0
+97905;21472;1;168;72.0;120;80;1;1;0;0;0;0
+97907;19062;1;166;70.0;160;10000;2;1;0;0;1;1
+97908;22074;1;157;46.0;130;70;1;1;0;0;1;0
+97909;21792;1;157;75.0;130;90;3;2;0;0;1;0
+97910;23504;1;157;69.0;140;90;1;1;0;0;1;1
+97911;19689;1;160;64.5;130;80;3;1;1;1;0;1
+97912;21983;1;165;73.0;120;80;1;1;0;0;1;0
+97916;21192;2;160;72.0;160;80;3;3;0;0;1;1
+97917;21944;1;169;94.0;125;80;3;1;0;0;1;1
+97918;15084;1;161;71.0;100;60;1;1;0;0;1;0
+97919;15949;2;166;70.0;140;80;1;1;0;0;0;0
+97921;18752;1;159;62.0;120;80;1;1;0;0;1;1
+97922;21925;1;159;61.0;130;90;1;1;0;0;1;1
+97923;21865;1;169;71.0;120;80;1;1;0;0;0;1
+97924;14884;2;173;124.0;160;90;1;1;0;0;0;1
+97926;21186;1;168;74.0;150;90;1;1;0;0;1;1
+97927;22659;1;157;97.0;150;90;3;3;0;0;1;1
+97928;14379;1;165;82.0;120;80;1;1;0;0;0;0
+97929;22059;1;161;87.0;140;100;1;3;0;0;1;1
+97930;21798;2;168;89.0;140;80;1;1;1;0;1;0
+97935;18122;1;170;60.0;120;70;1;1;0;0;1;1
+97936;21908;1;150;45.0;100;60;1;1;0;0;1;1
+97937;21762;1;156;82.0;120;60;1;1;0;0;1;0
+97938;19445;2;173;94.0;140;90;1;1;0;0;1;1
+97940;21310;2;172;73.0;120;80;1;1;0;0;1;1
+97941;14584;1;160;81.0;100;60;1;1;0;0;1;0
+97942;19558;2;174;110.0;150;100;1;1;1;1;1;1
+97945;19937;1;151;58.0;110;70;1;1;0;0;1;0
+97946;19437;1;167;68.0;180;120;1;1;0;0;1;1
+97947;17513;1;165;78.0;120;80;1;1;0;0;1;1
+97948;20996;1;152;70.0;140;100;3;1;0;0;1;1
+97950;15386;1;163;71.0;110;6;1;1;0;0;1;0
+97951;19482;2;173;98.0;120;80;3;1;1;0;1;0
+97952;21689;1;164;80.0;160;80;1;1;0;0;1;1
+97953;22579;1;170;67.0;120;80;1;1;0;1;1;1
+97954;21136;2;167;68.0;120;80;1;1;0;0;1;0
+97955;21716;1;153;91.0;130;80;3;1;0;0;1;0
+97956;15551;2;175;78.0;120;80;1;3;0;0;0;1
+97957;22603;1;155;83.0;140;80;3;1;0;0;1;1
+97958;22410;2;171;73.0;120;80;1;1;0;0;1;0
+97960;14749;1;163;72.0;120;80;1;1;0;0;1;0
+97961;17569;1;159;70.0;130;90;1;1;0;0;0;1
+97963;19769;2;171;71.0;220;110;2;1;0;0;1;1
+97964;19589;1;172;75.0;120;90;1;1;0;0;1;1
+97965;20410;1;152;65.0;130;80;1;1;0;0;0;1
+97967;21075;2;176;65.0;120;80;1;1;0;0;0;0
+97969;17578;1;156;68.0;140;90;1;1;0;0;0;0
+97970;18021;1;167;78.0;120;80;1;1;0;0;0;0
+97971;20649;2;166;63.0;120;80;1;1;0;0;1;0
+97974;18289;2;178;72.0;120;80;1;1;0;0;1;0
+97980;21289;2;165;45.0;110;80;1;1;0;0;0;0
+97981;20281;1;160;71.0;110;60;1;1;0;0;1;0
+97984;20365;2;164;69.0;120;80;1;1;0;0;1;0
+97985;16893;2;165;68.0;120;80;1;1;0;1;1;0
+97986;21020;2;170;68.0;120;70;1;1;0;0;1;1
+97987;20445;2;163;65.0;110;70;1;2;0;0;1;0
+97988;21853;1;163;73.0;120;80;1;1;0;0;1;1
+97989;21723;1;168;78.0;120;90;1;1;0;0;0;0
+97990;18999;2;155;60.0;120;80;3;3;0;0;1;0
+97991;20334;1;159;74.0;120;80;1;1;0;0;1;0
+97992;20500;1;178;90.0;120;80;1;1;0;0;0;0
+97994;18790;1;164;86.0;160;90;1;1;0;0;1;1
+97996;19212;2;170;58.0;120;80;1;3;0;0;0;0
+97997;21678;1;165;67.0;130;80;1;1;0;0;1;1
+97998;18287;1;152;75.0;120;80;1;1;0;0;1;0
+97999;19620;2;170;65.0;120;80;1;1;0;0;1;0
+98001;22006;1;167;60.0;120;80;2;1;0;0;1;0
+98003;21981;1;161;71.0;120;80;2;1;0;0;1;0
+98004;19828;1;165;60.0;120;100;1;1;0;0;0;1
+98006;20496;2;163;95.0;140;90;2;1;0;0;1;1
+98008;23429;1;160;75.0;140;100;1;1;0;0;0;1
+98009;20446;1;153;64.0;120;80;3;3;0;0;1;0
+98012;18864;2;170;70.0;120;80;1;1;0;0;1;0
+98013;19665;1;170;77.0;100;70;2;2;0;0;1;0
+98015;20376;1;168;89.0;120;80;1;1;0;0;1;0
+98016;19182;2;170;74.0;120;80;1;1;1;0;1;1
+98017;19952;1;153;58.0;120;80;2;1;0;0;0;1
+98018;21729;2;175;78.0;120;90;1;1;0;0;1;0
+98019;23562;1;168;60.0;120;80;1;1;0;0;1;1
+98021;20398;2;176;84.0;140;90;3;1;0;0;1;0
+98024;14498;1;157;72.0;120;80;1;1;0;0;1;0
+98027;15405;1;162;72.0;110;70;1;1;0;0;1;0
+98028;19597;1;160;68.0;120;70;2;1;0;0;1;0
+98029;21896;1;166;70.0;130;80;1;3;0;0;1;1
+98030;21473;1;164;74.0;130;80;1;1;0;0;1;1
+98031;20558;2;170;94.0;120;80;1;1;0;0;1;0
+98032;20406;1;154;77.0;140;100;2;1;0;0;1;1
+98033;17434;1;171;76.0;140;90;2;1;0;0;1;1
+98034;16080;1;162;86.0;110;80;1;1;0;0;1;0
+98035;15225;1;178;80.0;120;80;2;1;0;0;0;0
+98036;18883;1;155;70.0;150;90;3;1;0;0;0;0
+98037;23296;1;158;79.0;120;80;1;1;0;0;0;0
+98038;23389;1;156;74.0;140;100;1;1;0;0;0;0
+98039;21217;1;160;59.0;12;80;1;1;0;0;1;0
+98040;20267;2;165;94.0;150;100;1;2;0;0;1;1
+98043;21352;2;163;64.0;95;75;3;3;1;1;1;0
+98045;20324;1;163;97.0;110;70;2;1;0;0;1;1
+98048;18959;2;176;72.0;170;80;1;1;0;0;1;1
+98049;18129;1;157;70.0;120;90;2;1;0;1;0;1
+98050;16543;2;160;52.0;100;70;1;1;0;0;1;0
+98052;20962;1;158;65.0;140;90;1;1;0;0;1;1
+98053;15321;2;186;112.0;130;90;1;1;0;0;1;0
+98054;22068;2;169;65.0;120;80;1;1;0;0;1;1
+98057;17637;1;168;63.0;110;70;1;1;0;0;1;0
+98058;14594;1;154;44.0;100;80;1;1;0;0;1;0
+98059;21822;1;160;66.0;140;80;1;1;0;0;0;1
+98061;19024;1;161;70.0;120;80;1;1;0;0;1;1
+98062;19023;2;167;73.0;120;80;1;1;0;0;1;0
+98063;17657;1;155;62.0;110;90;2;2;0;0;1;1
+98064;15941;2;179;74.0;110;60;1;1;1;0;1;0
+98068;19683;2;176;118.0;168;96;1;2;0;1;1;0
+98069;19141;1;150;70.0;120;80;1;1;0;0;0;1
+98072;21139;1;170;99.0;120;80;3;1;0;0;1;1
+98075;17481;2;158;61.0;120;80;1;1;0;0;1;0
+98078;22506;1;156;71.0;110;70;1;1;0;0;0;0
+98080;23337;1;167;68.0;120;80;1;1;0;0;1;1
+98081;18773;2;178;76.0;130;90;1;1;0;0;1;0
+98083;15254;1;163;57.0;130;70;1;1;0;0;1;0
+98084;19647;2;169;71.0;120;80;1;1;0;1;1;1
+98086;18192;1;159;70.0;150;90;3;3;0;0;1;1
+98087;17634;1;155;54.0;110;80;2;2;0;0;1;0
+98088;19889;1;172;57.0;120;80;1;1;0;0;0;1
+98089;19109;1;168;60.0;100;80;2;2;0;0;0;1
+98090;21864;2;172;92.0;150;90;2;1;0;0;1;1
+98093;15614;2;166;65.0;120;80;1;1;0;0;1;0
+98094;16608;1;168;106.0;120;80;1;1;0;0;0;1
+98095;18190;1;156;41.0;906;0;1;1;0;0;1;0
+98101;17560;1;160;82.0;130;90;1;1;0;0;1;0
+98104;16853;2;164;72.0;80;60;1;1;1;0;0;0
+98105;17359;2;175;98.0;120;80;1;1;0;0;1;0
+98106;21134;2;179;113.0;160;100;1;1;0;0;1;0
+98109;15408;2;172;56.0;110;60;1;1;0;1;1;0
+98110;23290;1;165;68.0;140;1000;1;1;0;0;0;1
+98112;21100;1;160;50.0;160;90;1;1;0;0;1;1
+98114;20207;1;165;74.0;125;80;1;1;0;0;1;0
+98115;20962;1;163;67.0;140;90;1;1;0;0;1;1
+98116;22749;1;163;68.0;150;90;1;1;0;0;1;1
+98117;18039;2;170;75.0;100;70;1;1;0;0;1;0
+98118;20360;1;160;67.0;110;70;1;1;0;0;1;0
+98119;23452;1;168;90.0;120;80;1;1;0;0;1;0
+98120;21975;1;160;75.0;140;90;1;1;0;0;0;0
+98121;20296;2;170;80.0;130;80;1;1;0;0;1;0
+98122;21809;1;154;60.0;120;80;2;1;0;0;0;1
+98124;15208;1;174;58.0;120;80;1;1;0;0;1;0
+98125;20417;1;160;64.0;120;90;3;1;0;0;1;1
+98126;16551;1;164;63.0;100;70;2;1;0;0;1;0
+98128;20454;2;173;76.0;130;80;1;3;1;0;1;0
+98129;14702;1;160;100.0;120;80;1;2;0;0;1;1
+98130;22458;1;155;70.0;125;80;1;1;0;0;1;1
+98131;15377;1;162;72.0;100;80;2;1;0;0;1;0
+98132;19619;1;152;65.0;140;80;1;2;0;0;1;1
+98134;21948;1;158;80.0;160;60;1;1;0;0;1;1
+98136;15251;2;174;69.0;110;70;1;1;0;0;1;0
+98138;22629;1;162;72.0;130;90;1;1;0;0;1;1
+98139;19523;1;156;72.0;110;90;1;1;0;0;1;0
+98140;23399;1;150;54.0;130;80;1;1;0;0;1;1
+98141;16890;1;148;53.0;140;90;2;1;0;0;1;1
+98143;15259;1;161;74.0;160;1000;1;1;0;0;1;1
+98147;21162;1;170;70.0;120;80;1;1;0;0;1;0
+98150;16709;2;164;62.0;120;80;1;1;0;0;1;1
+98151;20411;2;170;64.0;160;90;1;1;1;1;1;1
+98152;21101;2;168;70.0;120;80;1;1;0;0;1;1
+98153;19819;2;166;69.0;187;112;1;1;0;0;1;1
+98154;22502;2;180;55.0;130;80;3;1;0;0;1;0
+98155;22572;1;153;54.0;140;90;1;3;0;0;0;1
+98156;18830;1;171;68.0;150;90;1;1;0;0;1;1
+98157;14345;1;164;85.0;130;80;1;1;0;0;1;1
+98158;15408;1;160;80.0;120;80;1;1;0;0;1;0
+98159;22588;1;152;60.0;120;80;1;1;0;0;1;0
+98160;19852;1;165;78.0;120;60;1;1;0;0;1;0
+98161;18364;1;148;75.0;110;80;1;1;0;0;1;0
+98162;20214;2;167;78.0;110;70;1;1;0;0;1;0
+98163;19794;1;170;84.0;120;80;2;1;0;0;1;1
+98164;23127;1;148;57.0;140;80;2;1;0;0;1;1
+98165;21967;2;166;55.0;140;80;1;1;1;1;1;1
+98167;21083;2;174;90.0;140;90;2;1;0;0;0;1
+98171;19011;1;169;65.0;120;80;1;1;0;0;1;1
+98172;18901;1;149;74.0;120;80;2;1;0;0;1;1
+98173;20228;2;170;81.0;160;90;1;1;0;0;0;1
+98174;17679;2;170;77.0;180;90;1;1;1;1;0;1
+98176;18979;1;171;71.0;110;70;1;1;0;0;1;0
+98177;23507;2;168;82.0;140;80;1;1;1;1;0;0
+98178;17394;2;178;92.0;140;80;1;2;0;0;1;1
+98180;15317;1;160;79.0;120;90;1;1;0;0;1;0
+98181;21949;1;170;70.0;150;90;3;3;0;0;1;0
+98182;21088;1;157;63.0;130;80;2;1;0;0;1;1
+98183;19671;1;164;69.0;120;80;3;3;0;0;1;1
+98184;23294;2;170;85.0;160;90;1;1;0;0;0;1
+98185;19497;2;165;88.0;130;80;1;1;1;1;0;1
+98187;19124;2;176;90.0;130;90;2;1;0;0;1;1
+98189;16511;1;170;92.0;120;80;1;1;0;0;1;0
+98191;23373;1;156;65.0;125;80;3;2;0;0;1;1
+98192;23670;1;160;75.0;110;90;1;1;0;0;1;1
+98193;16940;2;167;100.0;168;100;1;2;0;0;1;0
+98194;19054;1;168;65.0;120;80;1;1;0;0;1;0
+98195;16061;1;160;60.0;160;100;1;1;0;0;1;1
+98196;16028;2;170;71.0;130;80;1;1;0;0;1;0
+98199;14566;2;170;54.0;120;80;1;1;0;0;0;0
+98201;23520;1;179;90.0;140;90;1;1;0;0;1;1
+98202;23384;1;150;54.0;140;90;1;1;0;0;1;1
+98203;14476;2;172;69.0;110;60;1;1;0;0;1;0
+98206;16274;1;156;56.0;130;80;1;1;0;0;1;0
+98207;18234;1;160;75.0;140;90;1;1;0;0;1;0
+98210;17471;2;168;68.0;110;70;1;1;0;0;1;0
+98211;20476;1;168;70.0;100;60;1;1;0;0;1;0
+98213;18755;1;158;74.0;14;90;1;1;0;0;1;1
+98214;16143;2;185;68.0;110;90;1;1;1;0;1;0
+98215;20501;2;171;103.0;170;110;3;3;1;0;1;1
+98216;19567;1;165;72.0;110;60;1;1;0;0;1;0
+98217;22653;1;163;60.0;100;70;1;1;0;0;0;1
+98218;19914;2;164;69.0;150;100;2;1;1;1;1;1
+98219;19797;2;174;65.0;120;90;1;1;0;0;0;0
+98220;21290;2;170;69.0;140;90;1;1;0;1;1;1
+98221;23499;1;157;92.0;140;90;3;1;0;0;1;1
+98222;22697;1;156;77.0;110;70;2;1;0;0;1;1
+98223;17735;1;160;71.0;140;90;1;1;0;0;0;1
+98225;17764;2;170;109.0;130;70;1;1;0;0;1;1
+98229;14530;2;171;62.0;120;80;1;1;0;0;1;0
+98232;19056;1;163;62.0;130;85;1;1;0;0;1;0
+98234;21644;2;169;56.0;110;70;3;1;1;1;1;1
+98235;15373;2;168;70.0;120;80;2;1;1;1;1;0
+98236;18356;2;172;82.0;160;110;1;2;0;0;1;1
+98237;18362;1;168;56.0;100;70;2;2;0;0;1;0
+98238;19655;1;170;82.0;120;80;1;1;0;0;1;0
+98239;20254;1;163;74.0;120;80;1;1;0;0;1;1
+98240;21793;1;170;82.0;120;80;3;1;0;0;1;1
+98244;16674;1;155;88.0;160;90;1;1;0;0;1;0
+98246;19026;1;163;60.0;120;80;2;1;0;0;1;0
+98248;19987;1;162;78.0;160;90;1;1;0;0;1;1
+98249;21400;1;178;65.0;120;90;1;1;0;0;1;1
+98250;16894;2;180;92.0;130;80;1;1;0;0;1;0
+98251;19758;1;160;80.0;140;80;1;1;0;0;1;1
+98252;15424;1;158;87.0;140;90;1;1;0;0;1;0
+98255;15396;2;160;60.0;140;80;1;1;0;0;1;1
+98256;19778;2;172;70.0;140;80;1;1;1;1;1;1
+98258;23338;2;160;60.0;120;80;1;1;0;0;1;0
+98259;20347;1;163;61.0;120;80;1;1;0;0;1;0
+98260;20471;1;158;90.0;140;90;2;1;0;0;1;1
+98262;19017;1;156;72.0;140;90;2;1;0;0;1;1
+98263;19891;1;163;120.0;130;80;1;1;0;0;1;0
+98264;16216;2;170;72.0;140;90;1;1;0;0;1;1
+98266;18812;1;164;61.0;120;80;1;1;0;0;0;1
+98267;19221;1;170;80.0;120;80;1;1;0;0;1;0
+98268;20271;2;165;76.0;160;1000;1;1;0;0;1;1
+98269;20367;2;181;95.0;120;80;1;1;0;0;1;1
+98272;17425;2;182;98.0;120;80;3;1;0;0;1;1
+98273;16582;2;160;63.0;120;80;1;1;0;0;1;0
+98274;18998;1;158;62.0;110;80;3;3;0;0;1;0
+98275;21882;1;174;100.0;120;80;1;1;0;0;1;0
+98277;20679;1;154;59.0;120;80;1;1;0;0;1;0
+98280;18987;1;162;59.0;120;80;1;1;0;0;1;0
+98281;15500;1;169;68.0;110;80;1;1;0;0;1;0
+98282;22609;2;170;65.0;120;80;1;1;0;0;1;0
+98283;21747;1;160;74.0;130;90;1;1;0;0;1;1
+98284;16816;1;165;58.0;100;70;1;1;0;0;1;0
+98285;19804;1;154;57.0;130;80;2;1;0;0;1;0
+98286;23231;1;175;80.0;120;90;1;1;0;0;0;0
+98288;20449;2;170;69.0;150;100;1;1;0;0;1;1
+98291;15193;2;156;69.0;150;90;1;1;0;1;0;1
+98292;17696;2;170;80.0;120;60;1;1;1;1;1;0
+98293;20478;1;160;60.0;120;80;1;1;0;0;0;0
+98294;19689;1;160;101.0;110;80;1;1;0;0;1;1
+98295;21186;2;167;72.0;110;70;3;1;0;0;1;1
+98299;22628;1;155;85.0;110;70;1;1;0;0;1;0
+98300;16795;2;169;67.0;120;80;1;1;0;0;0;0
+98301;19700;1;164;54.0;120;80;1;1;0;0;1;0
+98302;20428;1;175;70.0;120;80;1;1;0;0;1;0
+98303;21806;1;143;56.0;140;80;1;1;0;0;1;0
+98305;17570;1;154;83.0;170;100;1;1;0;0;0;1
+98307;16831;1;166;91.0;130;80;3;1;0;1;1;0
+98308;18831;1;168;90.0;140;100;1;1;0;0;1;1
+98310;19669;1;147;57.0;120;70;1;1;0;0;1;0
+98311;17978;1;170;74.0;120;80;1;1;0;0;0;0
+98312;16047;1;158;52.0;102;66;1;1;0;0;1;0
+98313;18120;1;161;69.0;120;80;1;1;0;0;1;0
+98314;23247;1;157;60.0;140;90;3;1;0;0;1;1
+98315;20312;1;167;68.0;120;90;3;3;0;0;0;0
+98318;18075;2;178;82.0;110;60;1;3;0;0;1;0
+98322;15969;1;172;70.0;120;90;1;1;0;0;1;0
+98324;19618;1;159;48.0;150;100;1;2;0;0;1;1
+98325;16119;1;157;76.0;120;80;2;1;0;0;1;1
+98326;21900;1;148;53.0;100;70;1;1;0;0;1;0
+98327;16755;1;160;78.0;110;70;1;1;0;0;1;0
+98328;22648;1;165;75.0;120;80;1;1;0;0;0;0
+98329;16748;1;161;65.0;140;1000;2;1;0;0;1;1
+98331;19753;1;164;75.0;125;80;1;1;0;0;1;1
+98333;18507;1;156;77.0;120;70;2;1;0;0;1;0
+98334;20357;2;182;74.0;120;70;1;1;0;0;1;0
+98335;21052;2;167;59.0;140;90;2;1;0;0;1;1
+98336;18241;1;169;112.0;130;80;1;1;0;0;1;0
+98338;23438;1;163;82.0;120;70;2;1;0;0;1;1
+98340;15490;1;168;100.0;120;80;1;1;0;0;0;0
+98341;23605;2;168;76.0;150;80;2;2;0;0;1;1
+98342;14386;1;160;54.0;120;80;1;1;0;0;1;0
+98344;16830;1;172;71.0;110;70;1;1;0;0;1;1
+98345;21993;1;158;95.0;150;80;1;1;0;0;1;1
+98346;18024;1;170;83.0;110;70;1;1;0;0;1;0
+98347;15958;2;162;65.0;140;90;1;1;0;0;1;1
+98348;22599;1;154;125.0;140;80;3;3;0;0;1;0
+98350;16095;1;155;64.0;120;80;1;1;0;0;0;0
+98351;17546;1;152;66.0;120;80;1;1;0;0;1;0
+98352;18252;1;158;57.0;90;70;1;1;0;0;0;0
+98353;18874;1;161;54.0;110;70;1;1;0;0;0;0
+98354;21926;2;167;104.0;140;90;1;1;0;0;0;1
+98355;22656;2;157;71.0;150;100;3;1;0;0;1;1
+98356;19102;2;172;92.0;140;1000;1;1;0;0;1;1
+98358;18206;1;162;68.0;120;80;1;1;0;0;1;0
+98359;23498;2;174;71.0;130;80;1;1;1;1;1;0
+98360;17398;2;169;70.0;120;80;1;1;0;0;1;0
+98361;15484;1;169;63.0;120;80;1;1;0;0;1;0
+98363;22033;1;167;55.0;120;70;1;1;0;0;1;0
+98365;18177;2;175;65.0;140;90;2;1;1;0;1;1
+98366;21679;1;158;83.0;160;100;1;1;0;0;1;1
+98367;20535;1;165;65.0;120;80;1;1;0;0;1;0
+98369;18249;1;166;66.0;120;80;1;1;0;0;0;0
+98370;19099;1;158;56.0;120;80;1;1;0;0;1;1
+98371;21252;2;171;103.0;130;80;1;1;0;0;1;0
+98372;18842;2;165;71.0;120;80;1;1;0;0;0;0
+98374;22694;1;168;79.0;160;100;1;1;0;0;1;1
+98375;17012;1;165;63.0;140;90;1;1;0;0;1;1
+98376;18238;2;180;70.0;140;100;1;1;0;0;1;1
+98377;17215;2;166;66.0;120;80;1;1;0;0;0;1
+98378;22550;1;150;63.0;120;80;1;1;0;0;1;1
+98380;20987;1;165;65.0;120;80;1;1;0;0;1;0
+98383;19794;2;178;85.0;120;80;1;1;0;0;1;0
+98384;21171;1;156;66.0;150;90;1;1;0;0;1;1
+98386;18767;1;154;82.0;120;70;1;1;0;0;1;1
+98389;23470;1;158;62.0;140;90;3;1;0;0;1;1
+98390;21596;1;150;87.0;130;80;2;1;0;0;1;1
+98391;14670;2;171;79.0;110;70;1;1;0;0;1;0
+98392;20358;1;160;78.0;120;80;2;1;0;0;0;0
+98394;14589;1;154;50.0;110;70;1;1;0;0;1;0
+98395;21857;2;172;80.0;130;90;1;1;0;0;1;0
+98397;22552;2;162;95.0;140;90;2;3;0;0;1;1
+98398;15358;1;165;65.0;150;90;1;1;0;0;1;1
+98400;19467;2;163;71.0;150;1000;1;1;0;0;1;1
+98401;21086;2;172;74.0;120;80;1;1;1;0;1;1
+98403;16560;1;158;78.0;130;90;1;1;0;0;1;1
+98404;19131;1;158;44.0;110;70;1;1;0;0;1;0
+98405;21295;1;168;74.0;120;80;2;1;0;0;0;1
+98406;15224;2;172;78.0;140;80;1;1;0;0;1;0
+98407;14326;2;175;98.0;120;70;1;2;1;0;0;1
+98408;23502;2;168;95.0;120;80;3;1;1;1;1;1
+98409;15082;2;174;56.0;130;80;1;1;0;0;1;0
+98410;18415;1;171;74.0;120;80;1;1;0;0;1;0
+98411;18862;1;156;69.0;150;90;1;1;0;0;1;1
+98412;22450;1;160;74.0;130;80;1;1;0;0;1;0
+98413;20136;1;160;62.0;120;80;1;1;0;0;1;0
+98415;19850;2;178;100.0;150;110;2;1;1;0;0;0
+98417;19747;2;151;63.0;120;80;1;1;0;0;1;0
+98418;20425;2;175;75.0;140;90;1;1;0;0;1;1
+98419;21897;1;159;120.0;120;80;1;1;0;0;1;1
+98420;19490;1;153;75.0;120;80;1;1;0;0;0;0
+98421;21800;2;168;79.0;160;100;1;1;0;0;0;1
+98423;19551;1;158;59.0;110;70;1;1;0;0;1;1
+98424;17645;2;168;60.0;120;80;1;1;0;0;1;1
+98428;19163;1;164;56.0;100;80;1;1;0;0;0;1
+98431;23342;2;160;80.0;150;90;3;3;0;0;0;1
+98432;20439;1;156;61.5;100;60;2;1;0;0;1;0
+98433;19595;2;150;53.0;140;80;3;1;0;0;0;1
+98434;19760;2;170;71.0;120;80;1;1;1;1;1;1
+98435;17589;1;163;65.0;120;80;1;1;0;0;1;0
+98437;20538;1;155;79.0;140;90;1;3;0;0;1;0
+98438;18889;2;179;120.0;160;100;2;1;0;1;1;0
+98439;17569;1;156;62.0;120;80;1;2;0;0;1;1
+98441;18341;1;163;60.0;130;80;1;1;0;0;1;0
+98443;21915;1;157;63.0;130;80;1;1;0;0;1;1
+98444;19213;1;146;63.0;140;80;2;1;0;0;1;1
+98445;15233;1;152;58.0;140;90;1;1;0;0;1;1
+98447;22760;1;172;74.0;120;80;1;1;0;0;0;1
+98448;18802;1;164;82.0;140;75;1;1;0;0;1;1
+98449;20472;2;168;74.0;120;80;1;1;1;0;1;0
+98450;16707;2;182;75.0;160;100;2;1;0;0;0;1
+98451;14794;2;174;64.0;120;80;1;1;0;0;0;0
+98452;18975;1;158;74.0;150;100;3;3;0;0;1;1
+98453;18278;1;147;68.0;150;100;2;2;0;0;1;1
+98454;18885;2;161;63.0;120;80;1;1;0;0;1;1
+98456;21120;1;164;74.0;120;80;2;1;0;0;1;0
+98458;19705;1;162;68.0;120;80;1;1;0;0;1;0
+98459;20192;1;162;70.0;140;80;3;3;0;0;1;1
+98460;19783;1;170;82.0;140;1000;1;1;0;0;1;1
+98461;15440;1;165;66.0;110;70;1;1;0;0;0;0
+98463;20333;1;166;49.0;140;90;2;1;0;0;1;1
+98465;20470;1;170;68.0;120;80;1;1;0;0;1;0
+98466;17656;2;170;118.0;140;100;3;1;0;0;0;1
+98467;22696;2;155;68.0;120;80;1;1;0;0;1;0
+98468;17302;1;158;56.0;130;90;1;1;0;0;1;0
+98469;16081;2;177;93.0;140;90;3;2;0;0;1;1
+98471;20407;1;162;53.0;100;70;2;1;0;0;1;1
+98475;15478;1;151;65.0;100;80;1;1;0;0;1;1
+98477;17405;1;161;75.0;150;90;2;1;0;0;1;1
+98478;20322;1;153;74.0;160;90;1;1;0;0;1;1
+98479;22542;1;157;51.0;130;80;3;1;0;0;1;1
+98480;20426;1;165;65.0;120;80;1;1;0;0;1;0
+98481;22357;2;164;67.0;130;80;3;1;1;0;0;0
+98483;23407;1;169;69.0;120;70;1;1;0;0;1;1
+98484;19656;1;156;111.0;120;80;1;1;0;0;1;0
+98485;15973;1;170;80.0;125;80;1;1;0;0;1;1
+98488;21117;2;164;75.0;130;90;1;1;0;0;0;1
+98490;20473;1;159;76.0;160;100;2;2;0;0;1;1
+98491;15190;1;165;82.0;160;100;1;1;0;0;1;1
+98492;21104;1;168;76.0;120;70;1;1;0;0;0;0
+98493;16106;1;162;72.0;120;80;1;1;0;0;1;0
+98494;18077;1;168;63.0;120;80;1;1;0;0;0;1
+98495;22557;2;180;84.0;150;100;3;1;0;0;1;1
+98496;22753;2;167;69.0;120;90;1;1;0;0;1;1
+98497;18144;1;165;69.0;120;60;1;1;0;0;1;0
+98498;22600;1;163;72.0;130;80;1;1;0;0;1;1
+98500;21915;2;156;68.0;120;80;1;1;1;0;0;0
+98501;17711;1;161;61.0;120;70;1;1;0;0;1;0
+98503;15426;1;157;80.0;130;90;1;1;0;0;1;0
+98504;21679;1;161;107.0;170;100;3;1;0;1;1;1
+98505;21118;2;164;85.0;150;90;1;1;0;0;1;1
+98506;20482;1;160;85.0;120;80;1;1;0;0;1;1
+98507;17483;2;168;64.0;120;80;1;1;0;1;1;0
+98508;15914;2;175;83.0;120;80;1;1;0;0;1;0
+98509;14624;1;156;55.0;110;70;1;1;0;0;1;0
+98510;23404;1;162;75.0;130;80;1;1;0;0;0;0
+98511;22773;2;165;75.0;140;80;1;1;0;0;1;1
+98512;23470;1;187;80.0;120;80;1;1;0;0;0;1
+98513;22543;1;167;78.0;120;60;1;1;0;0;1;0
+98515;17528;1;159;49.0;100;60;1;1;0;0;1;0
+98516;20705;1;168;75.0;120;80;1;1;0;0;1;0
+98517;21229;2;172;93.0;140;80;2;1;1;1;1;1
+98518;21312;1;155;81.0;140;90;1;1;0;0;1;1
+98519;16821;2;160;60.0;130;80;1;1;0;0;0;1
+98521;21263;2;169;72.0;150;80;1;1;0;0;1;1
+98522;16254;1;165;61.0;120;80;1;1;0;0;1;0
+98523;19692;1;159;76.0;140;90;3;1;0;0;1;1
+98524;18952;1;171;70.0;140;90;1;2;0;0;1;1
+98526;18766;1;154;82.0;180;100;3;1;0;0;0;1
+98527;22053;2;172;59.0;120;70;1;1;0;0;1;1
+98528;21318;1;158;86.0;150;90;2;1;0;0;1;1
+98529;20330;2;165;68.0;150;90;1;1;0;0;1;1
+98530;20160;1;155;86.0;160;120;3;3;0;0;0;1
+98531;22612;2;178;75.0;120;80;1;1;0;0;1;0
+98532;21878;1;163;70.0;120;80;1;1;0;0;1;0
+98534;15982;2;165;75.0;150;100;1;1;0;0;1;1
+98536;21731;1;162;93.0;150;100;1;1;0;0;1;1
+98538;18709;2;164;89.0;140;100;1;1;0;0;1;1
+98541;21057;1;165;69.0;120;80;1;1;0;0;1;0
+98543;18122;1;169;73.0;120;80;1;1;1;0;0;1
+98546;18951;1;168;65.0;110;80;1;1;0;0;1;0
+98547;20492;1;170;76.0;120;80;1;1;0;0;0;0
+98548;21088;1;160;80.0;120;70;1;2;0;0;1;1
+98549;20448;1;157;75.0;100;80;1;1;0;0;0;1
+98550;21868;2;170;74.0;120;80;3;3;1;0;1;0
+98551;19893;1;149;56.0;120;80;1;1;0;0;1;0
+98554;22816;2;168;70.0;120;80;1;1;0;0;0;0
+98555;22001;1;162;65.0;120;80;1;1;0;0;1;0
+98556;16115;2;175;129.0;120;80;1;2;0;0;1;0
+98557;14387;2;174;99.0;150;90;3;1;1;1;1;1
+98558;20414;2;175;78.0;120;80;2;1;0;0;0;1
+98559;20508;2;173;91.0;140;90;1;1;0;1;1;0
+98561;21787;1;168;70.0;140;90;3;1;0;0;1;1
+98562;17574;1;157;63.0;150;100;1;1;0;0;1;0
+98563;14643;2;175;75.0;100;70;1;1;0;0;1;0
+98564;18949;2;172;62.0;110;70;1;1;1;0;1;0
+98565;17548;2;173;72.0;120;80;1;1;0;0;0;0
+98566;20430;1;159;105.0;120;80;1;1;0;0;1;1
+98567;21682;1;158;78.0;130;90;1;1;0;0;1;1
+98568;19107;1;154;77.0;14;90;1;1;0;0;1;0
+98569;19591;2;175;88.0;120;80;1;1;0;0;0;1
+98570;15938;1;162;86.0;160;100;1;1;0;0;0;1
+98572;17539;1;157;78.0;120;80;3;3;0;0;1;0
+98573;21899;1;171;92.0;160;70;1;1;0;0;1;0
+98574;14552;2;175;74.0;140;80;1;1;0;0;1;1
+98575;18924;1;167;71.0;120;80;1;1;0;0;1;0
+98576;18732;1;165;75.0;120;80;1;1;0;0;1;1
+98577;19837;1;162;88.0;140;90;1;1;0;0;0;1
+98578;20519;1;159;75.0;140;90;2;1;0;0;0;1
+98579;21871;1;161;77.0;140;90;1;1;0;0;1;0
+98580;16106;1;160;91.0;150;90;1;1;0;0;1;1
+98582;17494;2;165;80.0;120;80;2;1;0;0;0;0
+98583;18273;1;169;79.0;140;100;1;1;0;0;0;1
+98584;18317;1;170;123.0;130;90;1;1;0;0;1;0
+98586;22059;1;168;74.0;120;80;1;1;0;0;1;1
+98587;23116;2;171;98.0;130;80;1;1;0;0;1;1
+98588;14548;2;168;68.0;120;80;1;1;0;0;1;0
+98589;21080;1;162;85.0;110;70;3;1;0;0;1;0
+98590;17368;1;162;81.0;120;80;1;1;0;0;1;1
+98591;23284;2;165;60.0;120;80;1;1;0;0;0;1
+98592;19551;1;165;68.0;110;70;1;1;0;0;1;0
+98593;17987;1;158;56.0;120;70;2;1;0;0;0;0
+98594;22003;1;164;67.0;150;80;3;3;0;0;1;1
+98595;20679;1;164;82.0;120;80;3;3;0;0;0;0
+98596;14873;1;160;58.0;100;60;1;1;0;0;0;0
+98598;21186;1;155;76.0;145;90;1;1;0;0;1;1
+98599;19618;1;160;80.0;130;80;2;1;0;0;1;0
+98600;22456;1;161;95.0;165;100;3;1;0;0;0;1
+98602;21473;2;178;79.0;130;80;1;1;0;0;0;0
+98603;19044;2;169;78.0;120;70;1;1;0;0;0;1
+98605;20439;1;165;80.0;140;90;3;1;0;0;1;1
+98606;19118;2;170;82.0;130;80;1;1;1;0;1;0
+98607;23472;1;163;84.0;120;80;3;3;0;0;0;1
+98608;18336;1;165;66.0;120;70;1;1;0;0;1;1
+98609;18313;1;167;74.0;120;80;1;1;0;0;0;0
+98610;14656;1;150;43.0;120;80;1;1;0;0;1;0
+98611;19561;1;168;63.0;140;80;1;1;0;0;1;0
+98612;18775;2;167;63.0;110;70;1;1;0;1;1;0
+98613;21008;2;171;67.0;140;100;1;1;0;0;1;0
+98615;18762;1;155;74.0;140;80;1;1;0;0;1;1
+98616;19557;2;169;68.0;120;80;1;1;1;0;0;0
+98617;22675;1;163;63.0;120;80;2;1;0;0;1;1
+98618;21191;1;150;58.0;140;90;1;2;0;0;1;0
+98619;20390;2;164;66.0;120;80;1;1;0;0;0;1
+98620;16093;1;164;78.0;130;70;3;1;0;0;1;0
+98621;23252;2;166;86.0;120;80;3;1;1;1;1;1
+98622;18146;2;173;88.0;150;90;1;1;0;0;1;1
+98623;21113;2;170;70.0;120;80;1;1;0;0;1;0
+98624;22130;2;186;83.0;120;80;3;3;0;0;1;0
+98625;15940;1;165;64.0;120;80;1;1;0;1;0;0
+98626;21025;2;167;78.0;150;94;1;1;0;0;1;0
+98628;19646;1;169;73.0;110;70;1;1;0;0;1;0
+98629;19655;1;170;65.0;120;70;1;1;0;0;1;0
+98630;20401;2;120;80.0;140;90;1;2;0;0;1;1
+98632;19065;2;186;66.0;140;1000;1;1;0;0;1;1
+98633;20238;1;166;101.0;150;100;2;3;0;0;1;1
+98634;19549;1;178;68.0;120;80;1;1;0;0;0;0
+98635;20465;2;160;89.0;110;80;1;1;0;0;1;0
+98636;15355;2;175;95.0;120;70;1;1;0;0;1;0
+98637;21664;2;164;52.0;140;90;1;1;0;0;0;1
+98638;15948;2;170;61.0;110;70;1;1;0;0;0;0
+98640;18924;1;163;119.0;160;90;1;1;0;0;1;1
+98642;21032;2;178;70.0;120;80;1;1;0;0;0;0
+98643;17747;2;168;80.0;120;80;1;1;0;0;1;0
+98646;18929;2;175;84.0;160;1000;1;1;0;0;0;1
+98647;20517;1;167;71.0;140;90;2;3;0;0;0;1
+98648;19473;1;150;68.0;130;90;1;1;0;0;1;1
+98649;19730;2;165;73.0;140;80;1;3;0;0;1;1
+98650;21891;1;160;62.0;180;100;1;1;0;0;1;1
+98652;19613;1;168;68.0;120;80;1;1;0;0;1;1
+98653;21068;2;182;110.0;120;80;1;2;0;0;1;0
+98654;21228;2;175;74.0;120;80;1;1;0;0;1;0
+98655;19137;2;178;99.0;150;100;1;1;0;0;1;1
+98657;23357;1;157;94.0;150;90;3;3;0;0;1;1
+98658;22563;1;155;60.0;120;90;1;2;0;0;1;1
+98660;20362;1;163;80.0;110;80;1;1;0;0;0;0
+98661;15353;2;169;73.0;120;80;1;1;0;0;1;0
+98663;22029;1;152;85.0;90;60;1;1;0;1;0;0
+98664;21787;1;169;60.0;130;79;1;1;0;0;1;0
+98665;18387;1;163;81.0;150;90;1;1;0;0;1;1
+98666;21014;1;165;70.0;120;70;1;1;0;0;1;1
+98667;18034;1;170;47.0;100;70;1;1;0;0;1;0
+98668;17593;1;164;65.0;100;60;1;1;0;0;0;0
+98670;14661;2;160;58.0;140;80;2;1;0;0;1;1
+98671;22640;1;170;72.0;120;80;1;2;0;0;1;0
+98672;20171;1;160;74.0;130;80;3;3;0;0;0;1
+98673;21906;2;160;50.0;140;90;2;1;0;0;1;1
+98674;18094;1;161;84.0;130;90;3;1;0;0;1;0
+98675;19793;1;153;62.0;120;80;2;2;0;0;1;0
+98677;20615;1;165;65.0;120;80;1;3;0;0;1;1
+98678;18378;1;164;82.0;140;90;1;1;0;0;1;1
+98681;18079;1;167;93.0;130;90;3;1;0;0;1;0
+98682;19556;1;168;86.0;120;80;1;1;0;0;1;0
+98686;21698;1;162;70.0;140;80;2;1;0;0;1;1
+98687;15179;1;159;65.0;120;80;1;1;0;0;1;0
+98688;18351;1;156;62.0;120;80;1;1;0;0;1;0
+98689;21165;1;155;89.0;130;80;3;1;0;0;1;0
+98690;16366;1;170;65.0;150;90;1;1;0;0;0;1
+98692;17472;2;160;67.0;160;90;1;1;0;0;0;1
+98693;18199;2;169;97.0;120;80;1;1;0;0;1;0
+98694;19836;1;163;76.0;120;80;1;1;0;0;1;0
+98695;14664;2;158;65.0;110;70;1;1;0;0;1;0
+98697;20327;1;158;108.0;160;100;1;1;0;0;0;1
+98701;19545;1;158;67.0;130;90;1;1;0;0;1;1
+98702;17382;2;165;71.0;120;80;1;1;0;0;1;0
+98703;16008;1;156;79.0;120;80;1;1;0;0;1;0
+98704;19247;1;170;64.0;120;60;1;1;0;0;0;1
+98705;15173;2;169;58.0;120;80;1;1;0;0;1;0
+98706;14690;1;158;89.0;140;100;2;1;0;0;1;1
+98708;16763;2;160;66.0;120;80;1;1;0;0;0;0
+98709;19077;2;175;155.0;110;100;1;1;0;0;1;1
+98710;17425;1;155;67.0;120;80;1;1;0;0;1;1
+98711;19188;1;158;74.0;160;90;1;1;0;0;1;1
+98712;16720;1;157;57.0;120;80;1;1;0;0;1;1
+98713;20363;1;163;68.0;110;70;2;1;0;0;1;0
+98714;21707;1;162;76.0;120;80;1;1;0;0;1;1
+98715;20554;2;177;108.0;190;90;1;3;1;1;1;0
+98716;18334;1;165;70.0;90;60;1;1;0;0;1;1
+98717;22656;1;170;70.0;120;80;1;1;0;0;1;0
+98719;15455;1;166;70.0;120;80;1;1;0;0;1;0
+98720;15355;1;173;76.0;120;80;1;1;0;0;1;1
+98721;22091;1;153;69.0;140;80;3;1;0;0;1;1
+98724;21859;1;154;79.0;135;95;1;1;0;0;0;1
+98725;20337;1;169;71.0;110;60;1;1;0;0;1;0
+98726;14742;1;162;67.0;120;80;1;1;0;0;0;0
+98728;16050;2;138;60.0;110;80;1;1;0;0;0;0
+98729;22154;2;168;74.0;120;80;1;1;0;0;0;1
+98731;21749;2;165;60.0;140;90;1;1;0;0;1;0
+98732;20432;1;164;90.0;150;90;1;1;0;0;0;1
+98733;18309;2;169;68.0;140;90;1;1;0;0;1;1
+98734;19487;1;164;89.0;140;90;3;1;0;1;1;1
+98735;22580;1;172;70.0;120;70;1;1;0;0;1;0
+98736;16172;1;167;64.0;100;70;1;1;0;0;1;0
+98737;19867;1;165;68.0;120;80;1;1;0;0;1;0
+98738;22449;2;173;83.0;140;90;3;1;0;0;1;1
+98740;20470;1;160;62.0;120;80;1;1;0;0;1;0
+98741;16991;1;156;60.0;100;70;1;1;0;0;1;0
+98742;18695;2;175;80.0;120;80;2;1;0;0;1;0
+98743;15442;2;176;65.0;12;80;1;1;0;0;1;0
+98744;18274;1;159;86.0;140;90;1;1;0;0;1;0
+98746;19130;2;169;80.0;120;80;2;1;0;0;1;0
+98747;18823;2;168;75.0;160;90;1;1;0;1;0;1
+98748;23191;1;152;81.0;150;90;1;2;0;0;1;1
+98749;23677;1;169;70.0;120;80;3;3;0;0;1;1
+98750;19786;1;163;84.0;140;90;2;1;0;0;1;1
+98751;14599;2;163;62.0;120;80;1;1;0;0;1;0
+98752;20325;1;168;65.0;110;70;1;1;0;0;1;1
+98753;18083;2;175;85.0;120;80;1;1;1;0;1;0
+98754;23506;1;163;58.0;100;80;3;3;0;0;1;1
+98755;22796;1;158;77.0;120;80;1;1;0;0;1;0
+98756;16000;2;176;73.0;120;90;2;1;1;1;1;1
+98758;22070;1;168;68.0;140;80;1;1;0;1;1;1
+98760;16045;2;174;93.0;160;90;1;1;1;1;1;0
+98761;16721;2;161;77.0;110;80;1;1;1;0;1;0
+98762;21027;1;157;70.0;130;70;3;3;0;0;0;1
+98764;18322;1;156;52.0;110;70;1;1;0;0;0;0
+98765;20308;1;161;65.0;161;65;1;1;0;0;1;1
+98766;23189;2;165;63.0;150;90;1;1;0;0;1;1
+98767;23323;1;164;87.0;140;80;1;1;0;0;1;1
+98770;16802;2;158;50.0;90;60;1;1;0;0;1;0
+98771;14566;1;166;77.0;120;80;1;1;0;0;1;0
+98772;22810;2;174;89.0;110;70;2;1;1;0;1;0
+98773;18374;1;160;65.0;120;80;1;3;0;0;1;1
+98775;22656;2;160;98.0;180;1000;1;1;0;0;0;0
+98776;23276;2;183;74.0;110;80;1;1;0;0;1;1
+98777;22775;2;171;70.0;150;90;1;1;1;1;0;1
+98781;18978;1;150;70.0;110;80;1;1;0;0;1;0
+98782;22571;2;185;85.0;130;80;1;1;0;0;1;0
+98783;20365;2;176;94.0;130;100;3;3;1;0;1;1
+98784;19917;2;169;69.0;110;70;1;1;1;1;1;1
+98785;21778;1;152;60.0;130;80;2;1;0;0;0;1
+98789;23412;1;153;73.0;160;90;3;1;0;0;1;1
+98791;20322;1;165;85.0;140;90;1;3;0;0;1;1
+98792;20953;1;160;77.0;130;90;1;1;0;0;1;1
+98794;19208;1;169;65.0;120;80;1;1;0;0;1;1
+98795;21083;2;165;80.0;120;80;3;1;0;0;1;0
+98797;18861;1;170;75.0;120;80;2;1;0;0;0;0
+98798;19577;1;170;68.0;120;80;1;1;0;0;1;0
+98799;23273;1;156;56.0;130;80;3;3;0;0;1;1
+98801;23360;1;161;70.0;130;80;1;1;0;0;1;0
+98804;14448;1;172;74.0;110;80;1;1;0;0;0;0
+98805;22684;1;168;69.0;120;70;2;2;0;0;0;1
+98806;20174;2;176;89.0;125;90;3;2;0;0;1;1
+98808;18083;1;157;80.0;160;90;3;3;0;0;1;1
+98809;18364;2;167;72.0;150;100;1;1;1;0;1;1
+98810;16665;1;168;78.0;110;70;1;1;0;0;1;0
+98812;20447;1;145;62.0;110;70;1;1;0;0;1;0
+98815;23502;1;169;68.0;120;80;1;1;0;0;1;1
+98816;16823;2;176;86.0;120;75;1;1;0;0;1;0
+98817;17472;1;157;55.4;100;70;1;1;0;0;1;0
+98818;19520;2;176;72.0;120;80;1;1;0;0;1;0
+98820;22779;1;165;65.0;120;80;1;1;0;0;0;0
+98821;20365;1;161;90.0;140;80;3;2;0;0;1;1
+98822;20712;2;162;63.0;120;80;1;1;0;0;1;0
+98823;19844;1;164;50.0;120;80;1;1;1;0;0;0
+98825;19000;2;178;78.0;120;80;1;1;0;0;1;0
+98830;23302;1;154;92.0;130;80;3;1;0;0;1;1
+98831;19653;2;171;70.0;120;80;1;1;0;0;1;0
+98833;15076;1;162;68.0;100;60;1;1;0;0;1;0
+98834;23210;2;160;68.0;120;90;1;1;1;1;1;1
+98835;20531;1;160;60.0;140;80;3;3;0;0;1;1
+98836;21134;1;157;57.0;140;90;1;1;0;0;1;1
+98837;23250;2;169;85.0;140;80;3;1;1;0;1;0
+98838;20297;2;168;73.0;120;70;1;1;0;0;0;1
+98839;21061;2;170;74.0;140;70;1;3;0;0;1;1
+98840;20187;1;167;94.0;130;90;1;1;0;0;1;1
+98841;19624;2;170;77.0;160;1000;3;2;0;0;1;1
+98844;17596;1;162;60.0;120;80;1;1;0;0;1;0
+98845;21119;2;165;64.0;120;90;1;1;0;0;1;0
+98846;18263;1;158;68.0;119;67;2;2;0;1;1;0
+98848;16529;2;170;85.0;130;80;1;1;0;0;1;0
+98850;21847;2;157;57.0;120;80;1;1;0;0;0;0
+98851;19680;1;165;90.0;120;70;1;1;0;0;1;1
+98853;14372;2;163;66.0;110;70;1;1;0;0;1;0
+98854;17297;1;149;51.0;100;80;1;1;0;0;1;0
+98859;17589;1;168;78.0;120;80;1;1;0;0;1;0
+98860;20477;2;166;62.0;120;80;1;1;0;0;0;0
+98862;21902;1;190;87.0;120;80;1;1;0;0;0;0
+98864;21200;1;161;82.0;180;100;1;1;0;0;0;1
+98866;15896;1;176;77.0;140;90;1;2;0;0;1;0
+98867;20008;1;172;88.0;120;80;1;1;0;0;1;1
+98868;18229;1;157;59.0;125;90;1;1;0;0;1;0
+98869;22621;2;172;90.0;130;90;2;1;0;0;0;0
+98870;16707;1;165;61.0;120;80;1;1;0;0;1;0
+98871;19769;2;151;49.0;110;70;1;1;0;0;1;0
+98872;19579;2;169;85.0;120;80;1;1;0;0;0;1
+98874;21957;1;167;96.0;120;80;1;1;0;0;1;0
+98875;19093;2;185;90.0;160;70;1;1;0;0;0;1
+98878;15420;1;169;68.0;125;80;1;1;0;0;1;0
+98880;20567;1;165;70.0;120;80;1;1;0;0;1;0
+98881;17483;1;170;77.0;120;80;1;1;0;0;1;0
+98882;18114;2;170;72.0;120;80;1;1;1;0;1;1
+98887;19961;1;158;65.0;160;100;1;1;0;0;1;1
+98888;23546;1;170;90.0;120;80;1;1;0;0;1;0
+98889;19057;1;167;89.0;100;60;1;1;0;0;1;0
+98891;20608;1;160;75.0;130;80;1;1;0;0;0;1
+98892;16807;2;177;81.0;120;80;1;1;1;1;1;0
+98893;18139;1;156;54.0;100;70;1;1;0;0;1;1
+98894;18832;2;170;102.0;120;80;2;2;0;0;0;0
+98895;21432;1;162;65.0;120;80;1;1;0;0;1;1
+98896;22530;2;167;83.0;130;90;3;1;1;0;1;0
+98897;18488;1;167;68.0;120;80;3;3;0;0;1;0
+98898;22134;1;162;92.0;120;80;1;1;0;0;1;0
+98899;19193;2;165;62.0;120;80;1;1;0;0;1;0
+98900;21116;2;172;68.0;100;70;1;2;0;0;1;0
+98901;20564;2;164;52.0;120;80;2;1;0;0;0;0
+98902;18325;2;174;76.0;130;80;1;1;1;0;1;0
+98903;18203;1;158;96.0;140;90;2;1;1;0;0;1
+98906;22537;1;167;86.0;130;70;1;1;0;0;0;1
+98908;18469;1;165;59.0;120;80;1;1;0;0;1;0
+98910;14606;1;152;103.0;130;70;1;1;0;0;0;1
+98911;14794;1;160;80.0;120;80;1;1;0;0;0;0
+98912;21967;1;159;80.0;140;80;2;1;0;0;1;1
+98914;20729;1;162;66.0;130;80;1;1;0;0;1;0
+98916;18040;2;156;67.0;120;80;1;1;1;0;1;1
+98917;20446;1;160;80.0;120;80;1;1;0;0;0;1
+98920;15132;1;168;64.0;120;60;1;1;0;0;1;0
+98921;15149;1;162;76.0;120;70;1;1;0;0;0;1
+98922;19813;1;155;71.0;120;70;1;1;0;0;1;0
+98925;21159;1;162;58.0;160;90;3;1;0;0;0;1
+98926;19083;1;158;59.0;120;80;1;1;0;0;1;0
+98927;21796;1;166;78.0;120;75;1;1;0;0;1;1
+98928;21869;1;165;66.0;150;90;1;2;0;0;1;1
+98929;18385;1;171;69.0;120;80;1;1;0;0;1;0
+98930;19103;1;164;68.0;120;80;1;1;0;0;1;1
+98931;16543;2;169;69.0;140;90;1;1;0;0;1;0
+98932;15207;1;165;47.0;80;60;2;1;0;0;1;0
+98933;21141;1;158;60.0;120;80;1;1;0;0;0;0
+98934;18396;1;163;82.0;120;80;1;1;0;0;1;1
+98935;18406;1;160;60.0;140;90;3;1;0;0;1;1
+98936;19510;2;178;80.0;140;90;1;1;1;1;1;0
+98938;19555;1;170;75.0;140;80;1;1;0;0;1;1
+98939;21728;1;156;62.0;150;100;2;1;0;0;1;1
+98942;19073;2;175;67.0;140;100;1;1;1;1;1;1
+98943;17384;2;165;72.0;130;80;1;1;0;0;1;1
+98944;15248;1;155;45.0;120;60;1;1;1;1;0;0
+98945;15355;2;165;101.0;120;90;1;1;1;1;1;1
+98947;22106;1;157;70.0;150;80;1;3;0;0;1;0
+98948;18709;2;169;76.0;130;80;1;2;1;1;1;1
+98949;21946;2;167;70.0;150;90;3;1;0;0;1;1
+98951;16997;2;165;60.0;140;90;1;1;0;0;0;1
+98952;17023;1;163;66.0;120;80;1;1;0;0;1;0
+98953;16927;1;164;61.0;120;80;1;1;0;0;1;0
+98954;14655;2;179;83.0;180;100;1;1;0;0;0;1
+98955;20394;1;170;105.0;130;90;1;1;0;0;1;1
+98956;19703;1;160;60.0;120;80;1;1;0;0;0;0
+98958;20228;1;162;59.0;120;80;1;2;0;0;1;0
+98959;15463;2;165;59.0;100;60;1;1;0;0;1;0
+98960;21033;2;175;64.0;110;60;1;1;0;0;1;1
+98962;15100;1;169;67.0;120;80;1;1;0;0;1;1
+98964;22681;2;172;67.0;120;70;1;1;0;0;1;1
+98965;22500;1;151;73.0;120;80;2;1;0;0;1;0
+98966;21142;2;187;90.0;150;100;3;3;0;0;0;1
+98967;22752;2;157;75.0;140;90;1;1;0;0;1;1
+98968;22595;1;161;52.0;130;90;1;1;0;0;0;0
+98969;17692;2;182;102.0;140;80;1;1;0;0;0;1
+98970;23179;1;176;63.0;90;60;2;1;0;0;0;1
+98971;23329;2;159;63.0;110;80;1;1;0;0;1;1
+98972;17646;2;179;84.0;120;70;1;1;0;0;1;1
+98973;18113;1;158;53.0;120;80;1;1;0;0;1;0
+98974;21825;1;160;60.0;120;80;1;1;0;0;1;1
+98979;21950;2;178;62.0;130;90;1;1;0;0;1;0
+98980;18992;1;164;66.0;120;80;1;1;0;0;1;0
+98981;21695;1;158;63.0;150;1000;2;1;0;0;1;1
+98982;16072;1;167;65.0;100;60;1;1;0;0;1;0
+98983;15789;2;179;97.0;140;80;3;3;0;0;1;0
+98984;23379;1;160;65.0;120;80;1;1;0;0;1;1
+98985;23112;1;158;82.0;180;100;1;1;0;0;1;1
+98986;21940;1;162;65.0;120;80;1;1;0;0;1;1
+98987;22593;1;164;77.0;140;80;3;1;0;0;1;1
+98988;16791;1;168;87.0;120;70;2;2;0;0;0;0
+98989;15374;1;160;60.0;140;90;1;1;0;0;1;1
+98990;18134;1;156;74.0;140;90;1;1;0;0;1;1
+98991;17585;1;170;72.0;120;80;1;1;0;0;1;0
+98993;19770;2;182;110.0;120;80;2;1;0;0;1;0
+98994;22092;1;170;70.0;110;70;1;1;0;0;1;1
+98996;21744;1;161;65.0;120;80;1;1;0;0;1;1
+98997;18678;1;168;66.0;130;80;1;1;0;0;1;1
+99000;20553;1;165;90.0;120;80;3;3;0;0;1;1
+99003;20335;2;181;79.0;120;80;1;1;0;0;1;1
+99005;14738;1;156;53.0;90;60;1;1;0;0;0;0
+99006;21059;2;168;63.0;120;602;1;1;0;0;0;0
+99007;17557;1;164;102.0;130;70;2;2;0;0;0;1
+99010;16092;1;170;82.0;120;80;1;1;0;0;1;0
+99011;19701;1;176;73.0;110;70;1;1;0;0;1;0
+99012;14849;1;158;53.0;110;70;1;1;0;0;1;0
+99015;19861;1;158;88.0;120;79;1;1;0;0;0;0
+99016;14729;2;168;63.0;120;80;1;1;0;0;1;0
+99017;14547;2;173;72.0;130;90;1;1;0;0;1;1
+99018;16943;2;166;64.0;150;100;1;1;1;0;1;1
+99019;19818;1;145;62.0;240;130;1;1;0;0;0;1
+99021;19087;1;165;75.0;130;80;1;1;0;0;0;1
+99023;19023;2;173;93.0;140;80;3;1;0;0;1;1
+99027;20211;1;172;70.0;120;80;1;1;0;0;1;0
+99029;22441;2;176;87.0;120;90;1;1;0;0;1;0
+99031;23271;2;163;70.0;120;80;1;1;0;0;1;1
+99032;19717;1;158;94.0;130;90;1;1;0;0;1;1
+99035;21340;1;172;68.0;130;80;1;1;0;0;1;1
+99037;22695;1;160;63.0;120;90;3;1;0;0;1;1
+99039;17260;2;167;65.0;120;80;1;1;0;1;1;0
+99043;18003;2;168;70.0;120;80;1;1;0;0;0;0
+99044;18839;1;170;81.0;120;70;1;1;0;0;1;0
+99046;17678;2;175;90.0;130;90;1;1;0;0;1;1
+99048;20270;1;150;69.0;110;80;2;2;0;0;1;0
+99049;21718;1;156;72.0;140;80;3;1;0;0;0;1
+99050;18301;1;175;74.0;120;80;1;1;0;0;0;0
+99051;16214;2;171;69.0;120;80;1;1;0;0;1;0
+99052;15178;1;163;58.0;120;80;1;1;0;0;1;0
+99055;22749;1;164;70.0;150;90;1;3;0;0;1;0
+99056;19794;1;160;58.0;120;80;1;1;0;0;1;0
+99057;15297;2;178;91.0;160;90;2;1;1;0;1;1
+99059;18989;1;158;53.0;110;80;1;1;0;0;1;0
+99060;21003;1;151;72.0;140;90;3;3;0;0;1;1
+99062;16594;2;170;78.0;120;80;1;1;0;0;1;0
+99063;15988;1;157;62.0;110;70;1;1;0;0;0;0
+99064;19742;1;149;68.0;130;80;1;1;0;0;0;1
+99065;14669;1;165;89.0;90;60;1;1;0;0;0;0
+99066;23578;1;168;64.0;120;80;1;1;0;0;0;1
+99067;23519;1;165;95.0;130;90;2;2;0;0;1;1
+99069;20258;1;165;63.0;110;70;1;3;0;0;1;1
+99071;18233;1;168;79.0;110;85;1;1;0;0;1;0
+99073;21935;1;169;98.0;160;110;2;2;0;0;1;0
+99074;18735;1;160;78.0;120;80;1;1;0;0;0;0
+99075;22499;1;155;62.0;120;80;1;1;0;0;0;0
+99076;23349;2;171;72.0;140;80;2;2;0;0;1;1
+99078;16747;1;155;53.0;120;80;1;1;0;0;1;0
+99080;19811;1;167;70.0;120;80;1;1;0;0;1;1
+99081;19683;1;168;91.0;125;80;1;1;0;0;1;0
+99082;21133;2;178;72.0;110;80;1;1;0;0;0;0
+99086;16650;1;156;97.0;135;90;3;3;0;0;1;1
+99088;19051;1;169;70.0;150;100;1;2;0;0;1;0
+99089;14696;1;170;74.0;2000;100;2;1;0;0;1;1
+99090;18983;1;164;53.0;120;80;3;1;0;0;1;1
+99092;14608;1;155;58.0;120;80;1;1;0;0;0;0
+99095;16234;1;161;75.0;120;80;1;1;0;0;0;0
+99096;19745;1;167;66.0;160;80;1;3;0;0;1;1
+99097;20700;2;184;84.0;120;95;1;1;0;0;1;0
+99100;19649;1;164;78.0;150;90;1;1;0;0;1;1
+99103;19565;2;183;83.0;120;80;1;1;0;0;1;1
+99104;17351;2;182;112.0;160;80;1;1;0;0;1;1
+99105;15375;1;156;58.0;120;80;1;1;0;0;1;0
+99106;16226;2;168;85.0;110;70;1;1;0;0;0;0
+99107;22756;2;170;66.0;120;80;1;1;0;0;1;0
+99109;19584;2;168;79.0;150;89;1;2;0;0;0;1
+99110;18914;1;168;78.0;170;95;2;1;0;0;1;1
+99112;23066;1;150;63.0;110;70;1;1;0;0;1;1
+99113;20339;1;159;60.0;120;80;1;1;0;0;1;0
+99114;21823;2;176;86.0;140;90;1;1;0;0;1;1
+99115;21201;2;176;94.0;160;100;2;1;1;0;1;1
+99116;19516;1;159;68.0;130;90;1;1;0;0;0;1
+99117;15976;2;183;66.0;130;80;1;1;1;0;1;0
+99118;18167;2;180;103.0;140;110;1;1;0;0;0;0
+99121;20230;2;165;72.0;140;90;1;1;1;1;1;1
+99122;20664;1;163;63.0;120;80;1;1;0;0;0;0
+99123;21217;1;175;95.0;150;90;1;1;0;0;1;1
+99124;22507;1;156;58.0;140;80;3;3;0;0;1;1
+99125;21139;1;160;68.0;110;70;1;1;0;0;1;0
+99126;23351;2;165;60.0;120;80;3;3;0;0;1;1
+99129;18079;1;148;73.0;120;80;2;1;0;0;1;0
+99131;23220;1;164;70.0;120;80;2;1;0;0;1;0
+99132;23400;2;172;71.0;120;80;1;1;0;0;1;1
+99133;15335;1;154;46.0;110;70;2;2;0;0;1;0
+99134;17282;2;160;72.0;160;100;1;1;0;0;1;1
+99136;21156;2;169;80.0;120;80;3;1;1;0;0;1
+99137;20639;1;169;62.0;120;80;1;1;0;0;0;0
+99138;18028;1;154;70.0;120;80;2;2;0;0;1;0
+99139;20518;1;159;60.0;190;120;1;1;0;0;0;0
+99140;18435;1;156;99.9;120;80;1;1;0;0;1;0
+99142;15988;1;175;75.0;140;100;1;1;0;0;0;1
+99144;19870;1;156;65.0;120;80;1;1;0;0;1;1
+99147;18989;1;156;60.0;130;90;2;1;0;0;1;1
+99148;22344;1;157;61.0;110;70;1;1;0;0;1;1
+99149;19848;1;156;56.0;120;80;1;1;0;0;0;0
+99150;22051;1;168;74.0;120;80;1;1;0;0;1;0
+99152;20398;2;160;60.0;120;80;1;1;0;0;1;0
+99154;16063;1;162;76.0;110;70;1;1;0;0;1;0
+99155;20457;1;160;66.0;117;79;1;1;0;0;1;0
+99156;19187;2;175;75.0;150;100;1;1;0;0;1;1
+99158;22098;1;156;83.0;160;90;1;1;0;0;1;1
+99159;21048;1;156;60.0;130;80;2;3;0;0;0;1
+99160;16771;2;160;72.0;120;80;1;1;0;0;1;0
+99161;19703;1;163;59.0;130;90;1;1;0;0;0;1
+99162;19478;1;160;84.0;140;90;2;2;0;0;1;0
+99163;21004;1;164;100.0;180;100;1;3;0;0;1;1
+99164;21937;1;170;65.0;140;90;1;1;0;0;1;1
+99165;16564;1;172;102.0;130;90;3;1;1;0;0;1
+99166;23325;1;170;89.0;120;80;1;1;0;0;1;0
+99168;19769;2;176;72.0;130;70;1;1;0;0;1;0
+99169;22420;2;163;65.0;130;80;1;1;0;0;1;1
+99170;18427;1;160;58.0;120;80;1;1;0;0;0;0
+99171;18095;1;160;60.0;120;60;1;1;0;0;1;1
+99172;19040;1;140;52.0;150;80;2;1;0;0;1;1
+99173;16762;1;156;59.0;120;80;1;1;0;0;1;0
+99174;21753;2;175;67.0;120;80;1;1;0;0;1;1
+99175;21292;1;158;60.0;120;80;1;1;0;0;1;1
+99176;19769;1;160;60.0;160;60;1;1;0;0;0;1
+99177;21881;1;169;69.0;120;80;1;1;0;0;1;1
+99178;21994;1;156;63.0;110;70;1;1;0;0;1;0
+99179;23433;2;168;86.0;110;70;1;1;0;0;0;1
+99180;17328;2;171;75.0;120;80;1;1;0;0;0;0
+99181;18372;1;163;60.0;120;80;1;1;0;0;0;1
+99182;23141;2;180;123.0;190;99;2;1;0;0;0;1
+99183;18130;1;160;84.0;120;80;1;1;0;0;1;0
+99185;15053;1;168;54.0;120;80;2;2;0;0;1;0
+99186;22538;1;152;55.0;170;90;3;2;0;0;0;1
+99187;21246;1;169;68.0;120;80;1;1;0;0;1;0
+99188;20285;1;168;85.0;140;90;2;1;0;0;1;1
+99189;20371;1;160;95.0;120;80;3;3;0;0;1;1
+99190;14708;1;158;65.0;120;80;1;1;0;0;1;0
+99191;20467;1;175;80.0;120;80;1;1;0;0;1;0
+99193;18300;1;163;79.0;150;90;3;3;0;0;0;1
+99194;19959;2;175;83.0;150;80;1;1;0;0;1;1
+99195;21252;2;153;58.0;100;80;1;1;1;0;1;0
+99196;19667;1;169;80.0;120;80;1;1;0;0;1;1
+99198;18090;1;152;52.0;120;90;1;1;0;0;1;0
+99200;17518;1;165;62.0;160;80;3;1;0;0;1;1
+99201;21660;2;165;79.0;160;100;1;2;0;0;1;1
+99203;18015;2;166;74.0;120;80;1;1;0;0;1;0
+99204;17591;1;160;76.0;120;80;1;1;0;0;1;0
+99206;17385;2;165;77.0;120;80;2;1;0;0;1;0
+99207;16299;1;167;65.0;110;70;2;1;0;0;1;0
+99208;19787;2;169;69.0;120;80;1;1;0;0;1;0
+99209;16002;1;155;70.0;140;80;3;3;0;0;1;0
+99210;21363;1;174;68.0;130;70;1;1;0;0;1;1
+99211;22620;2;169;80.0;130;80;3;1;0;0;1;1
+99212;18461;1;178;89.0;120;80;2;1;0;0;1;0
+99213;19724;2;160;61.0;120;80;1;1;0;0;1;0
+99217;19978;1;178;86.0;120;80;1;2;0;0;1;1
+99218;19492;1;158;78.0;110;70;1;1;0;0;1;1
+99219;16824;2;165;52.0;110;70;1;1;0;0;1;1
+99220;14546;1;163;59.0;120;80;2;1;0;0;1;0
+99221;19123;1;156;70.0;140;80;1;1;0;0;1;1
+99222;15320;2;176;94.0;120;90;1;2;0;0;1;0
+99223;23311;1;156;86.0;160;80;1;2;0;0;0;1
+99224;15232;2;174;92.0;120;80;1;1;1;0;1;1
+99225;23380;1;159;90.0;150;90;1;1;0;0;1;0
+99226;19261;2;187;73.0;120;80;1;3;0;0;1;0
+99227;19490;1;172;72.0;100;70;1;1;0;0;1;0
+99228;20359;1;160;96.0;120;80;3;1;0;0;0;1
+99229;18298;2;168;72.0;120;80;1;1;0;0;1;0
+99230;19736;1;165;69.0;120;80;1;1;0;0;1;0
+99235;17314;2;171;93.0;140;1000;3;1;1;0;1;1
+99237;15336;1;160;70.0;120;80;1;1;0;0;1;0
+99239;21211;1;165;69.0;140;90;1;1;1;1;1;1
+99240;22518;2;178;75.0;140;90;3;1;0;0;1;1
+99241;17526;2;171;97.0;130;80;1;1;0;0;1;1
+99244;21373;1;171;75.0;150;90;1;1;0;0;0;1
+99245;22047;1;156;59.0;150;90;3;3;0;0;0;1
+99247;19644;2;174;65.0;180;90;1;1;0;0;1;1
+99250;20186;1;166;91.0;110;70;1;1;0;0;1;0
+99251;16508;2;168;64.0;130;80;1;1;1;1;0;0
+99252;18798;1;160;58.0;130;60;1;1;0;0;1;0
+99254;20621;1;167;64.0;130;70;3;1;1;0;1;0
+99255;20540;1;165;94.0;140;90;2;1;0;0;1;1
+99258;16871;1;169;66.0;128;80;1;3;0;0;1;0
+99259;21311;1;157;54.0;130;80;1;1;1;0;1;1
+99260;17328;2;169;89.0;120;79;1;1;1;0;1;0
+99261;18189;1;160;72.0;140;90;1;1;0;0;0;1
+99262;18920;1;160;76.0;120;70;1;1;0;0;1;0
+99263;16961;1;156;59.0;130;80;1;1;0;0;1;0
+99264;18197;1;164;95.0;120;80;2;1;0;0;1;0
+99265;20687;1;165;63.0;130;90;1;1;0;0;1;0
+99266;17457;2;162;63.0;150;90;1;1;0;0;1;0
+99267;23505;2;170;75.0;120;80;1;1;0;0;1;1
+99268;20285;2;180;83.0;120;80;1;1;0;0;1;1
+99269;23334;1;157;95.0;180;80;1;1;0;0;1;1
+99270;16742;1;171;98.0;150;90;3;3;0;0;0;1
+99273;21894;1;156;60.0;110;70;1;1;0;0;1;1
+99275;23406;1;160;58.0;140;90;1;1;0;0;1;0
+99276;14588;2;169;78.0;120;80;1;1;0;0;1;0
+99278;18915;1;162;74.0;120;80;1;1;0;0;1;0
+99279;16968;2;169;72.0;120;80;1;1;0;0;0;1
+99280;20205;1;167;65.0;170;110;3;1;0;0;1;1
+99281;18744;2;170;92.0;160;100;2;2;0;0;1;1
+99282;20255;2;166;71.0;120;80;1;1;1;0;1;1
+99283;18944;1;155;57.0;120;80;2;1;0;0;1;1
+99284;18930;1;153;71.0;120;70;1;3;0;0;1;0
+99285;20221;2;160;90.0;130;90;1;1;0;0;1;1
+99286;16732;1;163;42.0;110;70;1;1;0;0;1;0
+99287;19629;1;150;70.0;140;90;1;1;0;0;1;1
+99288;21122;2;175;70.0;120;80;1;1;0;0;1;1
+99290;18195;1;151;43.0;100;70;1;3;0;0;1;0
+99291;21803;1;162;67.0;120;80;1;1;0;0;1;1
+99292;19770;1;155;43.0;120;80;1;1;0;0;1;0
+99293;21231;1;152;65.0;100;70;1;1;0;0;1;0
+99296;19491;2;169;81.0;120;80;1;1;0;0;1;1
+99298;20307;1;158;77.0;120;80;1;1;0;0;1;0
+99299;18027;1;167;53.0;120;80;1;1;0;0;1;1
+99300;21860;1;167;65.0;120;80;1;1;0;0;1;1
+99301;23425;2;158;78.0;120;70;1;1;1;0;1;0
+99302;15388;1;164;92.0;120;80;2;1;0;0;1;1
+99303;19008;1;164;80.0;120;80;3;1;0;0;1;1
+99304;17317;2;170;68.0;120;80;1;1;0;0;1;0
+99305;14446;1;160;63.0;160;1000;2;1;0;1;0;1
+99307;22132;1;169;74.0;140;90;1;1;0;0;0;1
+99309;20502;2;165;74.0;120;80;1;1;0;0;1;0
+99311;19038;1;153;54.0;140;80;1;1;0;0;1;0
+99312;21820;1;167;71.0;120;80;1;1;0;0;1;0
+99313;14711;1;174;64.0;120;70;1;1;0;0;1;0
+99314;21973;1;163;87.0;160;90;3;3;0;0;1;1
+99315;17689;1;157;63.0;110;80;2;2;0;0;0;0
+99316;19769;1;170;86.0;120;80;1;1;0;0;1;0
+99318;23518;1;163;64.0;120;80;1;1;0;0;1;1
+99319;22475;1;149;52.0;120;80;1;1;0;0;0;1
+99320;20393;2;170;78.0;110;80;2;2;0;0;1;0
+99321;19582;1;160;63.0;120;80;1;1;0;0;0;0
+99323;17039;1;164;70.0;120;60;1;3;0;0;1;1
+99324;20470;1;164;70.0;140;90;2;1;0;0;1;1
+99325;20497;1;165;64.0;120;70;1;1;0;0;1;1
+99327;19806;1;152;78.0;130;80;1;1;0;0;1;1
+99328;21243;1;155;69.0;13;90;1;3;0;0;1;1
+99330;18776;2;186;98.0;110;70;1;1;0;0;1;1
+99331;19470;2;175;100.0;130;90;1;1;0;0;1;1
+99334;22488;2;170;68.0;130;1100;1;1;0;0;1;0
+99337;23196;1;165;72.0;140;80;2;1;0;0;1;1
+99339;18228;2;165;65.0;120;80;1;1;0;0;1;0
+99340;20698;1;163;66.0;145;95;1;1;0;0;1;0
+99341;18955;1;155;67.0;130;90;3;1;0;0;1;1
+99342;16038;1;171;71.0;120;80;1;1;0;0;1;0
+99344;21191;2;177;70.0;130;90;1;1;0;0;1;1
+99345;23141;2;171;87.0;120;80;1;2;0;0;1;0
+99347;19947;1;155;60.0;130;80;1;1;0;0;1;1
+99348;18994;1;163;104.0;130;79;1;1;0;0;0;0
+99352;19529;2;175;90.0;120;80;1;1;0;0;1;0
+99354;14617;1;161;105.0;120;80;1;1;0;0;1;1
+99355;22667;1;151;80.0;130;80;3;3;0;0;1;1
+99358;23082;1;170;70.0;130;80;3;1;0;0;1;1
+99359;15245;1;154;74.0;120;80;3;1;0;0;1;1
+99360;21023;2;177;85.0;110;80;1;1;0;1;0;0
+99362;22449;2;170;74.0;130;80;1;1;1;0;1;0
+99363;21198;1;158;69.0;130;90;1;1;0;0;1;1
+99364;16637;1;161;61.0;120;80;1;1;0;0;1;0
+99367;16923;1;147;66.0;100;60;1;1;0;0;1;0
+99368;15052;2;159;61.0;120;80;1;1;0;0;0;0
+99373;23408;2;169;70.0;120;80;1;1;0;0;1;1
+99374;21180;2;167;75.0;140;80;1;2;0;0;1;1
+99375;21693;1;167;74.0;140;90;2;1;0;0;1;1
+99377;20459;1;171;68.0;130;70;1;1;0;0;1;0
+99380;17805;1;170;70.0;140;90;1;3;0;0;1;1
+99382;14488;2;178;64.0;130;80;1;1;0;0;1;0
+99383;20596;2;167;75.0;90;60;1;1;0;0;0;0
+99384;23198;1;165;81.0;120;80;2;1;0;0;1;1
+99386;18913;1;166;69.0;120;80;1;1;0;0;1;0
+99387;21101;1;164;67.0;130;80;1;1;0;0;0;1
+99389;21194;1;159;86.0;140;90;1;1;0;0;0;1
+99391;18116;1;159;74.0;120;80;1;1;0;0;0;1
+99392;21236;1;159;51.0;110;70;1;1;0;0;1;0
+99393;17601;1;168;76.0;120;60;1;2;0;0;1;0
+99398;23223;1;169;101.0;180;110;1;1;0;0;0;1
+99399;18864;1;155;101.0;140;80;3;2;0;0;1;1
+99401;18286;2;192;83.0;110;70;1;1;0;1;0;0
+99402;16650;1;160;59.0;90;70;1;1;0;0;1;0
+99403;15271;1;152;80.0;120;80;1;1;0;0;0;0
+99404;15265;2;170;76.0;120;80;2;1;1;0;1;0
+99405;16781;2;179;93.0;180;100;1;2;0;1;1;1
+99406;16691;2;166;84.0;120;80;2;2;0;0;1;0
+99407;15921;1;154;61.0;100;60;1;1;0;0;0;0
+99408;18999;1;175;71.0;160;80;1;1;0;0;1;1
+99409;15425;1;169;65.0;120;80;1;1;0;0;0;0
+99410;18395;2;173;76.0;120;80;1;1;0;0;1;0
+99411;22596;1;169;100.0;120;80;1;1;0;0;1;1
+99412;21141;2;168;65.0;120;90;1;1;0;1;0;0
+99413;17473;1;166;58.0;110;69;1;1;0;0;1;1
+99418;18168;1;157;72.0;120;80;1;1;0;0;1;0
+99419;16013;2;168;76.0;140;90;1;1;0;0;1;1
+99420;19728;1;151;65.0;140;90;1;1;0;0;1;1
+99421;23334;2;182;89.0;140;90;3;1;0;1;1;1
+99422;20692;1;170;72.0;160;80;3;1;0;0;1;1
+99424;20550;2;165;85.0;100;80;1;1;0;0;1;1
+99425;21377;2;169;78.0;130;80;1;1;0;0;1;0
+99426;19822;2;166;93.0;120;80;1;1;0;0;0;1
+99427;17605;1;162;59.0;120;80;1;1;0;0;1;0
+99428;16190;1;151;75.0;120;80;2;2;0;0;1;0
+99430;18114;1;158;80.0;120;90;1;2;0;0;0;1
+99431;18239;1;173;72.0;120;80;1;2;0;0;1;0
+99432;18362;1;158;55.0;120;80;1;1;0;0;0;0
+99433;21685;1;164;82.0;144;83;2;1;0;0;1;1
+99434;19916;1;165;63.0;120;80;1;1;0;0;1;0
+99435;20279;1;155;59.0;110;80;1;1;0;0;1;0
+99436;21126;1;164;78.0;120;80;1;1;0;0;1;0
+99437;23408;2;170;85.0;125;90;1;1;0;1;1;1
+99438;20641;1;173;75.0;120;80;2;1;0;0;1;1
+99439;22706;1;157;70.0;120;80;1;1;0;0;1;0
+99440;19006;2;161;52.0;100;60;1;1;1;0;1;0
+99443;20556;1;165;67.0;150;90;3;1;0;0;1;0
+99445;20425;1;165;87.0;140;80;3;3;0;0;1;1
+99446;20360;1;178;70.0;120;80;1;1;0;0;1;0
+99447;19844;2;175;80.0;160;100;2;3;1;0;1;1
+99448;21780;1;168;75.0;120;80;1;1;0;0;1;1
+99450;21079;1;161;88.0;140;90;1;2;0;0;1;1
+99451;19650;1;169;74.0;120;80;1;1;0;0;1;0
+99452;15920;2;186;79.0;130;80;3;3;0;0;1;0
+99454;14674;1;154;90.0;130;1000;2;2;0;0;1;1
+99455;15310;2;163;71.0;110;70;1;1;0;0;0;0
+99456;18701;2;146;65.0;130;80;1;1;0;0;1;1
+99457;22497;2;183;60.0;130;90;1;1;0;0;1;1
+99458;20733;2;160;60.0;120;60;1;1;0;0;1;1
+99459;19065;2;160;70.0;100;80;2;2;0;0;1;0
+99461;15200;1;160;84.0;100;70;1;1;0;0;1;0
+99463;18108;1;168;95.0;150;60;1;2;0;0;1;0
+99464;20541;1;156;89.0;120;80;2;1;0;0;1;0
+99466;21946;1;174;73.0;160;80;1;1;0;0;1;1
+99467;20991;1;165;102.0;120;80;1;1;0;0;1;1
+99472;23087;1;161;96.0;130;80;1;1;0;0;1;1
+99473;18266;1;160;60.0;120;80;1;1;0;0;1;0
+99475;14332;1;161;83.0;120;80;1;1;0;0;1;0
+99477;18929;1;167;82.0;110;80;1;1;0;0;1;0
+99478;21923;1;156;63.0;150;90;1;1;0;0;1;1
+99480;18377;2;156;60.0;110;90;1;1;1;1;1;0
+99481;18778;1;160;47.0;110;70;1;1;0;0;1;0
+99482;18378;2;161;75.0;110;70;1;1;0;0;1;0
+99483;22477;2;173;89.0;120;70;2;1;0;0;1;0
+99484;23420;1;151;82.0;130;98;3;2;0;0;1;1
+99485;16878;1;165;70.0;120;80;1;1;0;0;0;0
+99488;15847;1;165;70.0;120;80;1;1;0;0;0;1
+99489;18973;2;160;76.0;130;80;1;1;1;0;1;0
+99490;18888;1;170;71.0;120;80;1;1;0;0;1;0
+99491;19028;1;164;76.0;150;90;2;2;0;0;0;1
+99492;19645;1;158;65.0;140;90;3;1;0;0;1;0
+99493;17474;2;175;82.0;120;80;1;1;0;0;1;0
+99494;21890;1;165;69.0;120;80;1;1;0;0;1;0
+99495;16813;1;151;53.0;120;80;1;1;0;0;1;0
+99497;18866;1;165;80.0;130;80;1;1;0;0;0;1
+99498;18828;1;162;87.0;125;80;1;1;0;0;1;0
+99500;14436;1;167;92.0;140;90;1;1;0;0;1;1
+99501;23414;2;168;70.0;120;80;1;1;0;0;1;1
+99502;14743;1;156;57.0;110;90;1;1;0;0;1;0
+99503;22322;1;152;48.0;160;90;1;1;0;0;0;1
+99506;15318;1;166;66.0;120;80;1;1;0;0;1;0
+99507;14925;1;170;111.0;160;90;2;1;0;1;0;1
+99508;22729;2;178;90.0;120;80;1;1;0;0;1;0
+99510;20316;1;160;71.0;130;90;1;1;0;0;1;1
+99511;19572;1;155;74.0;130;87;1;1;0;0;1;1
+99512;20607;1;163;65.0;140;90;1;1;0;0;1;0
+99515;18204;1;155;65.0;90;60;2;2;0;0;0;1
+99516;21237;1;161;62.0;110;70;1;1;0;0;1;0
+99517;23620;2;168;74.0;120;80;1;1;0;0;0;0
+99519;16746;2;174;73.0;120;80;1;1;0;0;0;0
+99521;17333;2;174;88.0;150;90;1;1;0;0;1;1
+99522;14817;1;162;51.0;120;80;1;1;1;0;1;0
+99527;21352;1;164;83.0;140;90;2;1;0;0;0;1
+99529;22519;1;162;70.0;120;80;1;1;0;0;1;1
+99530;19578;1;158;61.0;140;90;1;2;0;0;0;1
+99532;20321;1;163;75.0;120;80;3;3;0;0;1;1
+99533;22004;1;165;74.0;120;80;1;1;0;0;0;1
+99534;23514;1;164;79.0;120;80;1;1;0;0;1;1
+99535;18016;1;150;75.0;120;80;1;1;0;0;1;1
+99536;20321;2;174;86.0;120;80;1;1;0;0;0;1
+99537;17584;1;165;66.0;120;80;1;1;0;0;1;0
+99538;20509;1;165;69.0;120;80;1;1;0;0;1;1
+99540;21964;1;156;57.0;140;80;2;1;0;0;1;1
+99543;19711;1;157;63.0;110;70;1;1;0;0;1;0
+99544;18299;1;166;68.0;120;80;1;1;0;0;1;0
+99545;20266;1;154;68.0;150;90;2;1;0;0;1;1
+99546;16782;1;165;96.0;130;90;1;1;0;0;1;0
+99548;18390;2;172;92.0;140;90;1;1;1;0;0;1
+99549;21720;1;168;60.0;120;80;1;1;0;0;1;1
+99550;18240;1;154;57.0;130;90;1;1;0;0;1;1
+99551;23224;2;151;45.0;120;70;3;1;1;1;0;1
+99552;22491;1;158;71.0;140;90;1;1;0;0;1;0
+99553;23183;2;178;113.0;130;90;2;2;1;0;1;1
+99554;22413;1;163;74.0;130;90;1;1;0;0;0;1
+99555;18192;2;164;82.0;110;70;1;1;1;0;1;0
+99556;22467;1;157;69.0;160;90;1;1;0;0;1;1
+99557;18215;1;155;60.0;120;70;2;1;0;0;1;0
+99558;23135;1;170;97.0;120;80;1;3;0;0;1;1
+99559;22161;1;153;66.0;150;90;3;1;0;0;1;1
+99560;17455;2;168;60.0;120;80;1;1;0;0;1;0
+99561;21116;2;170;68.0;115;70;1;1;0;1;1;0
+99562;21357;1;144;115.0;140;90;1;1;0;1;0;1
+99564;22567;2;168;67.0;120;80;1;1;0;0;1;0
+99565;14609;2;179;91.0;120;79;1;1;1;0;1;0
+99566;19028;1;159;68.0;120;70;1;1;0;0;0;1
+99567;14863;1;170;70.0;140;90;1;1;0;0;1;1
+99569;18213;1;159;79.0;110;70;1;1;0;0;1;0
+99570;22624;1;165;69.0;130;90;1;1;0;0;1;1
+99571;14520;2;158;80.0;160;90;2;2;0;0;1;1
+99573;16892;1;157;75.0;100;70;1;1;0;0;1;0
+99574;20482;2;169;66.0;120;80;1;1;0;0;1;1
+99576;16096;1;166;96.0;120;80;1;1;0;0;1;0
+99577;15389;1;163;80.0;120;60;1;1;0;0;1;1
+99578;15838;1;174;71.0;120;80;1;1;0;0;1;1
+99579;19802;2;174;65.0;160;90;2;2;0;0;1;1
+99581;16900;1;160;52.0;103;72;1;1;0;0;0;0
+99582;18285;2;172;70.0;130;80;1;1;1;0;1;0
+99583;21811;1;162;74.0;130;90;1;1;0;0;1;1
+99586;16146;2;165;78.0;115;70;1;1;1;0;1;0
+99589;19067;2;178;97.0;135;96;1;1;0;0;1;0
+99592;14583;1;163;58.0;120;80;1;1;0;0;1;0
+99593;21372;2;180;98.0;130;80;3;3;1;0;1;1
+99594;21160;1;157;77.0;130;80;2;1;0;0;1;0
+99595;15410;2;166;74.0;110;80;1;1;0;0;1;0
+99597;23305;1;148;49.0;120;80;3;2;0;0;0;1
+99598;15285;1;151;71.0;160;100;1;1;0;0;1;0
+99599;17541;1;162;48.0;120;80;1;1;0;0;1;0
+99600;22505;1;156;43.0;150;100;1;1;0;0;1;1
+99602;18936;1;158;84.0;120;80;1;1;0;0;1;0
+99603;21074;2;158;60.0;120;80;1;1;0;0;1;0
+99605;18066;2;167;77.0;120;80;1;1;0;0;1;1
+99606;15793;1;163;90.0;125;80;1;1;0;1;0;0
+99607;21319;1;158;70.0;120;80;1;2;0;0;0;1
+99608;19988;2;165;63.0;120;80;1;1;0;0;1;0
+99611;19584;2;160;67.0;120;80;2;2;0;0;1;1
+99612;15855;2;175;89.0;140;90;3;3;0;0;0;1
+99613;18176;1;157;60.0;120;80;1;1;0;0;1;0
+99614;20404;1;165;70.0;170;95;1;1;0;0;0;1
+99615;21974;2;182;98.0;140;90;1;3;0;0;1;1
+99617;21930;1;168;90.0;120;80;3;1;0;0;1;1
+99618;22026;1;163;66.0;120;80;1;1;0;0;0;0
+99621;21045;2;170;74.0;120;80;1;1;0;0;1;1
+99624;20929;1;156;86.0;130;80;3;1;0;0;1;0
+99626;19059;1;165;79.0;150;90;2;2;0;0;1;0
+99627;23488;1;170;68.0;120;80;1;1;0;0;0;1
+99628;15924;1;158;81.0;140;90;1;2;0;0;1;1
+99629;15325;1;149;57.0;120;70;1;1;0;0;1;0
+99630;21178;2;172;85.0;140;90;3;2;0;0;1;1
+99631;15233;1;157;85.0;150;90;1;1;0;0;1;0
+99636;18196;1;184;81.0;120;80;1;1;0;0;1;0
+99639;19804;2;171;69.0;120;80;1;1;0;0;1;0
+99640;16809;2;177;72.0;120;80;1;1;1;1;1;0
+99641;19779;1;169;65.0;120;80;1;1;0;0;1;0
+99642;17460;1;162;59.0;100;80;1;1;0;0;1;0
+99646;17424;1;178;102.0;140;100;1;1;0;0;1;1
+99648;22231;1;149;72.0;120;80;1;1;0;0;1;1
+99651;20657;1;170;78.0;120;79;1;1;0;0;0;1
+99652;17588;1;169;87.0;120;80;2;1;0;0;0;0
+99653;21273;2;160;60.0;120;80;1;1;0;0;1;0
+99654;22521;1;162;68.0;120;65;1;3;0;0;1;1
+99655;23342;2;176;80.0;150;100;1;1;0;0;1;1
+99656;19540;1;147;68.0;120;80;1;1;0;0;1;0
+99657;18155;2;172;85.0;128;78;1;1;1;0;1;0
+99658;16698;1;156;82.0;140;90;1;1;0;0;0;1
+99659;23330;1;167;81.0;160;1000;1;1;0;0;1;1
+99660;21740;2;184;74.0;120;80;1;1;0;0;1;0
+99661;14627;2;165;65.0;120;80;1;1;0;0;1;0
+99662;19745;1;153;72.0;130;80;1;1;0;0;1;0
+99664;20317;2;169;77.0;130;80;1;1;0;0;1;0
+99665;19652;1;164;78.0;140;80;1;1;0;0;1;1
+99666;21277;1;165;90.0;140;90;1;1;0;0;0;1
+99667;21818;1;169;73.0;120;80;1;1;0;0;1;0
+99668;16748;2;179;79.0;120;80;1;1;0;0;1;0
+99669;19250;2;158;72.0;140;90;1;1;0;1;1;1
+99670;21213;2;184;73.0;120;80;1;1;0;0;1;1
+99671;22861;2;170;78.0;130;70;1;1;0;0;0;1
+99672;18927;1;167;70.0;140;90;1;1;0;0;1;1
+99673;17541;1;141;44.0;100;70;1;1;0;0;1;0
+99674;20376;1;185;69.0;120;80;1;1;0;0;0;0
+99675;23131;1;166;68.0;100;80;1;1;0;0;1;0
+99676;20166;1;160;71.0;140;70;1;3;1;0;0;1
+99678;19784;2;181;63.0;110;80;1;1;0;0;1;0
+99679;21086;1;170;75.0;140;90;1;1;0;0;0;1
+99680;17263;2;178;75.0;140;90;1;1;0;0;0;0
+99681;22703;1;150;64.0;120;80;2;3;0;0;1;1
+99684;19669;1;175;80.0;150;70;3;3;0;0;1;1
+99685;18105;1;167;85.0;120;70;2;2;0;0;0;0
+99686;19606;2;170;77.0;150;80;1;1;1;1;1;1
+99687;20506;2;180;82.0;120;80;1;1;0;0;1;0
+99688;22451;2;175;95.0;130;80;1;1;0;0;0;1
+99689;17575;1;164;45.0;115;70;1;1;0;0;1;0
+99690;18101;1;170;65.0;120;80;1;1;0;0;1;0
+99691;21897;1;162;61.0;130;80;1;1;0;0;0;1
+99692;21100;1;165;94.0;130;80;1;1;0;0;1;1
+99693;19224;1;160;65.0;120;80;1;1;0;0;0;1
+99694;19472;2;165;78.0;130;80;1;3;0;0;1;1
+99695;16114;2;170;70.0;120;80;1;1;0;0;1;0
+99696;20882;1;156;68.0;120;90;1;1;0;0;1;0
+99698;19782;1;164;69.0;130;80;2;1;0;0;1;0
+99699;17546;2;173;80.0;150;100;1;1;0;0;1;1
+99700;19921;1;168;68.0;170;90;1;1;0;0;1;1
+99703;19511;1;154;73.0;110;70;1;3;0;0;1;1
+99706;19104;1;164;70.0;140;90;1;1;0;0;1;1
+99707;18949;1;163;67.0;125;80;1;1;0;0;0;0
+99708;23208;1;168;80.0;120;80;1;3;0;0;1;1
+99709;20356;2;176;85.0;150;90;1;1;0;0;1;1
+99710;16769;1;168;72.0;140;90;1;1;0;0;1;1
+99711;22759;2;167;76.0;120;80;1;1;1;0;1;0
+99712;19760;2;170;80.0;150;90;1;1;0;0;1;0
+99713;15988;2;178;85.0;120;80;1;1;0;0;1;0
+99714;15240;1;155;85.0;110;90;1;1;0;0;1;0
+99715;18172;1;162;60.0;130;80;1;1;0;0;1;0
+99716;18132;1;162;85.0;130;90;1;3;0;0;1;1
+99719;18204;1;163;83.0;120;80;2;1;0;0;1;0
+99720;16073;2;165;100.0;130;80;1;1;0;0;1;1
+99724;19013;2;175;98.0;130;80;2;1;0;1;1;0
+99726;20527;1;166;65.0;110;60;2;1;0;0;1;0
+99728;22686;1;180;75.0;120;80;1;1;0;0;0;1
+99729;18949;2;176;79.0;120;80;1;1;0;0;1;0
+99730;21181;2;171;84.0;130;90;1;1;0;0;1;1
+99731;21140;1;163;61.0;90;60;2;1;0;0;1;0
+99732;19825;1;157;80.0;120;80;1;1;0;0;1;1
+99733;16712;1;164;54.0;100;80;1;1;0;0;1;0
+99734;22552;2;163;67.0;180;100;2;1;0;0;0;1
+99735;22685;2;165;84.0;140;90;1;2;0;0;1;1
+99736;16833;1;162;57.0;140;90;1;1;0;0;1;1
+99737;19009;1;158;54.0;110;70;1;1;0;0;0;0
+99739;19776;1;156;59.0;120;80;2;1;0;0;0;0
+99742;18309;1;164;66.0;120;80;1;1;0;0;1;1
+99743;18207;1;170;80.0;120;80;3;3;0;0;1;1
+99744;18808;2;171;80.0;140;90;2;1;0;0;1;0
+99745;23375;2;168;69.0;120;80;1;1;0;0;1;1
+99747;19572;1;167;85.0;140;100;1;1;0;0;1;1
+99748;21236;1;156;65.0;120;80;1;1;0;0;0;0
+99751;18803;1;163;58.0;90;60;1;1;0;0;1;0
+99752;17371;2;170;75.0;120;80;1;1;0;0;0;0
+99753;15432;1;162;70.0;110;85;1;1;0;0;1;0
+99755;14452;1;165;62.0;120;80;1;1;0;0;0;0
+99756;17428;1;155;56.0;110;70;1;1;0;0;1;0
+99759;16006;2;179;76.0;140;90;3;2;0;1;1;1
+99760;14449;1;168;79.0;120;80;1;1;0;0;0;0
+99761;21906;1;165;78.0;140;90;1;1;0;0;1;1
+99762;14646;1;168;80.0;120;80;1;1;0;0;1;0
+99763;22643;2;161;66.0;130;80;1;1;0;1;1;0
+99765;14683;1;150;42.0;90;60;1;1;0;0;1;0
+99767;19674;1;158;63.0;130;80;1;1;0;0;0;1
+99769;19441;1;163;90.0;130;80;1;1;0;0;1;0
+99772;16519;2;175;62.0;90;60;1;1;0;0;1;0
+99773;23300;1;160;93.0;130;80;1;1;0;0;1;1
+99774;20254;1;169;70.0;130;80;1;1;0;0;0;0
+99775;22637;2;177;63.0;150;70;1;1;1;0;1;1
+99776;21277;1;166;88.0;160;100;1;1;0;0;1;0
+99777;18378;2;171;68.0;120;80;1;3;0;0;0;0
+99778;16008;2;160;55.0;120;80;1;1;0;0;1;0
+99779;17256;2;173;70.0;130;80;1;1;1;1;1;0
+99781;23498;2;166;99.0;120;80;1;1;0;0;1;1
+99783;21146;1;161;91.0;90;60;3;1;0;0;1;1
+99784;19667;2;175;52.0;110;70;1;1;0;0;1;0
+99785;23646;1;149;49.0;115;75;1;1;0;0;1;0
+99787;21842;2;160;61.0;160;100;1;1;0;0;1;1
+99788;20324;2;168;78.0;130;80;1;1;1;0;1;1
+99790;22723;1;156;76.0;130;80;1;1;0;0;1;1
+99792;17481;2;176;96.0;160;87;3;3;1;0;1;1
+99794;20472;2;162;56.0;150;100;1;1;0;0;1;0
+99795;21791;1;168;95.0;140;80;3;1;0;0;1;1
+99798;21808;1;152;56.0;160;1000;1;1;0;0;1;1
+99799;19736;2;188;108.0;130;80;2;2;0;1;0;1
+99801;18812;1;150;67.0;120;80;1;1;0;0;1;0
+99803;19609;1;170;69.0;120;80;1;1;0;0;1;1
+99804;18941;2;168;69.0;140;90;1;1;1;0;1;0
+99806;20052;1;155;50.0;90;60;2;1;0;0;1;0
+99807;21239;2;168;95.0;160;1000;1;1;0;0;1;1
+99808;21906;1;156;48.0;120;80;1;1;0;0;1;0
+99809;16000;1;158;65.0;110;70;1;1;0;0;1;1
+99810;15245;2;170;65.0;120;80;1;1;0;0;0;0
+99811;23135;2;180;100.0;140;90;1;1;0;0;1;1
+99813;22508;1;159;62.0;160;100;1;1;0;0;1;1
+99814;21226;1;162;86.0;110;80;2;2;0;0;1;0
+99816;22417;2;166;78.0;170;1000;1;1;0;0;0;0
+99819;18330;1;162;71.0;120;80;2;1;0;0;1;0
+99820;15241;2;183;84.0;110;80;1;1;0;0;1;1
+99825;22050;1;165;58.0;150;90;3;1;0;0;1;1
+99826;16890;1;170;78.0;120;80;1;1;0;0;1;0
+99830;21649;2;173;83.0;140;90;1;1;0;0;1;0
+99831;21309;2;167;97.0;160;100;1;1;1;0;0;1
+99832;16923;1;162;64.0;130;70;1;1;0;0;0;0
+99834;19732;2;173;68.0;140;100;1;2;1;0;0;1
+99835;16857;1;160;70.0;200;100;1;2;0;0;1;1
+99836;15539;2;163;70.0;120;80;1;1;0;0;1;1
+99837;23452;1;150;69.0;120;80;1;1;0;0;1;1
+99838;22689;1;168;100.0;150;80;1;1;0;0;1;1
+99839;19770;1;158;60.0;140;90;1;1;0;0;0;1
+99842;17581;1;164;68.0;120;80;1;1;0;0;1;0
+99844;18187;1;159;89.0;120;80;1;2;0;0;1;0
+99845;19621;1;165;71.0;120;70;1;1;0;0;1;1
+99847;23179;1;164;67.0;120;80;1;1;0;0;0;0
+99849;23138;2;180;100.0;140;100;1;1;0;0;1;0
+99851;19540;1;160;69.0;130;90;1;1;0;0;1;1
+99852;18939;2;175;92.0;170;100;1;1;0;0;1;0
+99853;21222;1;168;66.0;120;80;1;1;0;0;1;0
+99855;23263;2;170;88.0;140;80;3;3;0;0;1;1
+99856;14823;1;152;42.0;120;80;1;1;0;0;1;0
+99858;19475;2;171;65.0;120;80;1;1;1;1;1;0
+99859;21006;1;167;86.0;150;90;1;2;0;0;1;1
+99860;18833;1;161;72.0;140;95;3;1;0;0;1;1
+99861;16002;1;155;48.0;90;70;1;1;0;0;1;0
+99862;18748;2;186;101.0;110;80;3;1;0;0;1;0
+99863;20548;2;169;94.0;120;80;1;1;0;0;1;0
+99864;21883;2;178;102.0;150;100;1;2;0;1;0;1
+99866;20660;1;169;74.0;110;70;1;1;0;0;1;0
+99867;18467;1;158;70.0;120;80;1;1;0;0;1;1
+99868;20359;2;160;75.0;140;90;3;1;0;0;0;1
+99871;17312;1;159;45.0;110;70;2;2;0;0;1;0
+99872;19510;1;166;93.0;150;90;3;3;0;0;1;1
+99877;19718;1;169;97.0;120;80;1;1;0;0;1;0
+99878;15334;1;165;62.0;100;60;1;1;0;0;1;0
+99879;19784;1;153;65.0;150;90;1;1;0;0;0;1
+99880;17320;2;172;94.0;120;80;1;1;0;0;1;0
+99882;23281;1;164;98.0;140;90;2;1;0;1;1;1
+99883;19829;1;159;74.0;140;89;1;2;0;0;1;0
+99884;19438;2;175;80.0;120;80;1;1;0;0;1;1
+99890;14420;1;160;55.0;140;90;1;1;0;0;1;0
+99891;19834;1;164;85.0;165;110;3;3;0;0;1;1
+99894;16688;1;157;60.0;140;100;1;1;0;0;1;1
+99896;22609;2;166;64.0;120;80;1;3;0;0;1;1
+99897;15243;2;171;67.0;110;60;1;1;0;0;1;0
+99899;20253;1;159;66.0;110;80;1;1;0;0;1;1
+99901;15843;1;143;70.0;120;90;2;1;0;0;1;1
+99904;18428;2;168;64.0;110;70;1;1;0;0;1;0
+99906;23413;2;171;70.0;140;90;1;1;0;0;1;0
+99908;14489;1;160;53.0;90;60;1;1;0;0;1;0
+99909;22608;1;149;61.0;130;90;2;3;0;0;1;0
+99910;20962;2;174;83.0;120;80;3;1;0;0;1;1
+99911;21307;1;168;78.0;140;80;3;1;0;0;1;1
+99915;16854;1;166;83.0;120;80;1;1;0;0;1;0
+99916;19614;1;162;74.0;120;80;1;1;0;0;1;1
+99919;22570;2;160;55.0;140;90;2;1;0;0;1;1
+99922;23464;2;170;97.0;130;90;2;1;0;0;1;1
+99923;21397;1;150;71.0;110;80;1;1;0;0;1;0
+99925;21333;1;164;115.0;130;80;1;1;0;0;1;1
+99930;23305;2;172;113.0;110;80;1;1;0;0;0;1
+99931;20388;1;164;90.0;130;80;1;1;0;0;1;1
+99932;22119;1;167;68.0;167;85;3;1;0;0;1;1
+99933;19137;2;167;74.0;130;80;1;1;1;1;1;0
+99934;15254;1;158;55.0;110;70;1;1;0;0;1;0
+99935;19727;1;172;75.0;120;80;1;1;0;0;1;1
+99936;17373;2;173;69.0;110;70;1;1;1;1;1;1
+99938;15151;1;170;60.0;120;80;2;1;0;0;1;0
+99939;21726;1;164;88.0;140;90;1;1;0;0;1;0
+99940;21453;1;158;75.0;120;80;3;3;0;0;1;0
+99941;15536;2;166;90.0;120;80;1;1;1;0;1;0
+99943;15239;2;169;67.0;160;90;1;1;0;0;1;1
+99945;19069;1;163;64.0;130;70;1;1;0;0;1;1
+99947;20587;2;169;79.0;140;90;1;1;0;0;0;1
+99948;16598;1;161;50.0;110;75;1;1;0;0;1;0
+99949;21151;1;178;69.0;130;90;1;1;0;0;1;1
+99950;19538;2;155;76.0;130;90;1;1;0;0;1;0
+99951;22491;2;170;72.0;120;80;1;1;0;0;0;1
+99952;15450;2;165;66.0;120;80;1;1;0;0;0;0
+99954;20327;1;156;67.0;140;80;2;1;0;0;0;0
+99955;21416;2;168;63.0;140;1000;1;1;0;0;1;1
+99956;16093;2;157;61.0;110;90;1;1;0;0;1;0
+99957;20529;2;175;78.0;120;80;1;1;0;0;0;0
+99958;22572;2;173;103.0;140;80;3;1;1;1;0;1
+99959;20136;2;177;80.0;130;80;1;1;0;0;1;0
+99960;17065;1;165;76.0;140;90;1;1;0;0;1;1
+99961;22142;2;175;72.0;130;80;1;1;0;0;1;0
+99962;18226;1;168;75.0;120;80;1;1;0;0;1;0
+99963;21264;2;182;100.0;120;80;1;1;0;0;1;1
+99964;21699;1;163;65.0;120;80;2;2;0;0;1;0
+99965;16843;1;168;75.0;120;79;1;1;0;0;1;0
+99967;18800;1;163;78.0;90;60;1;1;0;0;1;1
+99969;22423;1;163;74.0;160;100;2;2;0;0;1;1
+99971;17727;2;167;69.0;110;80;1;1;0;1;0;0
+99972;17500;2;182;110.0;130;90;2;2;0;0;1;1
+99973;18941;1;153;86.0;130;90;1;2;0;0;1;1
+99974;19652;1;165;72.0;120;80;1;1;0;0;1;0
+99975;17926;2;168;80.0;120;80;1;1;0;0;1;1
+99977;18194;1;156;102.0;130;80;1;1;0;1;0;1
+99978;18198;2;180;78.0;120;80;1;1;0;0;1;0
+99979;18852;1;151;49.0;120;80;1;1;0;0;1;0
+99981;21978;1;160;59.0;110;70;1;1;0;0;1;0
+99985;21013;1;157;83.0;120;70;1;1;0;0;1;1
+99986;15094;1;168;72.0;110;70;1;1;0;0;1;1
+99988;20609;1;159;72.0;130;90;2;2;0;0;1;0
+99990;18792;1;161;56.0;170;90;1;1;0;0;1;1
+99991;19699;1;172;70.0;130;90;1;1;0;0;1;1
+99992;21074;1;165;80.0;150;80;1;1;0;0;1;1
+99993;19240;2;168;76.0;120;80;1;1;1;0;1;0
+99995;22601;1;158;126.0;140;90;2;2;0;0;1;1
+99996;19066;2;183;105.0;180;90;3;1;0;1;0;1
+99998;22431;1;163;72.0;135;80;1;2;0;0;0;1
+99999;20540;1;170;72.0;120;80;2;1;0;0;1;0
diff --git a/data/make_cardio_train_pickle.py b/data/make_cardio_train_pickle.py
new file mode 100644
index 0000000..c93fa63
--- /dev/null
+++ b/data/make_cardio_train_pickle.py
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+# coding: utf-8
+
+# In[1]:
+
+
+import pandas as pd
+
+df = pd.read_csv("cardio_train.csv", sep=";")
+categorical_cols = ["gender", "cholesterol", "gluc", "smoke", "alco", "active", "cardio"]
+df[categorical_cols] = df[categorical_cols].astype("object")
+df.to_pickle("typed_cardio_train.pkl")
diff --git a/data/typed_cardio_train.pkl b/data/typed_cardio_train.pkl
new file mode 100644
index 0000000..fcc6341
--- /dev/null
+++ b/data/typed_cardio_train.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e2775cdb1985cfae42075ab71d8c5d66b3e20f88c528ffb3ca414d2a50b44334
+size 4342634
diff --git a/estimator.py b/estimator.py
deleted file mode 100644
index 33575a8..0000000
--- a/estimator.py
+++ /dev/null
@@ -1,93 +0,0 @@
-#!/usr/bin/env python3
-
-import sys
-import psutil
-import argparse
-import numpy as np
-import logging
-from utils import *
-
-def parse_arguments():
- parser = argparse.ArgumentParser(description="Model training and testing script.",
- usage="%(prog)s --y_lbl --step ['base', 'final'] --n_features --pkg ['xgb', 'cat', 'lgb'] --final_round --test --base_n_features --n_trials \nUse -h or --help to display help.")
-
- parser.add_argument('--y_lbl', required=True, help='Label Y')
- parser.add_argument('--step', default='base', choices=['base', 'final'], help='Step to execute')
- parser.add_argument('--n_features', type=int, default=10, help='Number of features')
- parser.add_argument('--pkg', default='xgb', choices=['xgb', 'cat', 'lgb'], help='Package to use')
- parser.add_argument('--final_round', default=None, help='Final round configuration')
- parser.add_argument('--test', default=None, help='Test configuration')
- parser.add_argument('--base_n_features', type=int, default=50, help='Base number of features')
- parser.add_argument('--n_trials', type=int, default=100, help='Number of trials')
- return parser.parse_args()
-
-def setup_logging():
- logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')
-
-def log_ram_usage(phase):
- ram_usage = round(psutil.virtual_memory()[3]/((2**10)**3), 2)
- ram_percent = psutil.virtual_memory()[2]
- logging.debug(f"RAM memory used in {phase}: {ram_usage}GB ({ram_percent}%)")
-
-def main():
- args = parse_arguments()
- setup_logging()
-
- np.random.seed(19920722)
-
- if args.step == "base":
- print(f"")
- print(f"######################################")
- print(f"### Base model fitting and transforming: {my_y_lbl}")
- print(f"######################################")
- pre_df, pheno_df, col_dict, base_excluded = load_data(args.step)
- log_ram_usage("data loading")
- elif args.step == "final":
- print(f"")
- print(f"######################################")
- print(f"### Final model training and testing: {my_y_lbl}")
- print(f"### config: {my_final_round}")
- print(f"######################################")
- pre_df, pheno_df, col_dict, base_excluded = load_data(args.step, args.pkg, args.test, args.base_n_features)
- log_ram_usage("data loading")
- else:
- sys.exit(f"Invalid step {args.step}")
-
- if args.step == "base":
- test_acc_dict = {}
- dfs, y_label, cus_drop_cols, trainer, training_rounds, training_configs = load_config("base_fit", args.y_lbl, args.pkg, args.final_round, pre_df, col_dict)
- for training_round in training_rounds:
- test_y_pred, test_acc = execute_model_workflow(args.n_features, args.n_trials, dfs, base_excluded, cus_drop_cols, y_label, training_round, "base_fit", trainer, training_configs)
- test_acc_dict[training_round] = test_acc
- log_ram_usage("base_fit")
-
- dfs, y_label, cus_drop_cols, trainer, training_rounds, training_configs = load_config("base_predict", args.y_lbl, args.pkg, args.final_round, pre_df, col_dict)
- for training_round in training_rounds:
- y_pred, pred_acc = execute_model_workflow(args.n_features, args.n_trials, dfs, base_excluded, cus_drop_cols, y_label, training_round, "base_predict", trainer, training_configs, test_acc = test_acc_dict[training_round])
- log_ram_usage("base_predict")
-
- elif args.step == "final":
- dfs, y_label, cus_drop_cols, trainer, training_rounds, training_configs = load_config("final", args.y_lbl, args.pkg, args.final_round, pre_df, col_dict)
- y_pred, acc = execute_model_workflow(args.n_features, args.n_trials, dfs, base_excluded, cus_drop_cols, y_label, training_rounds[0], "final", trainer, training_configs, base_n_features = args.base_n_features)
- log_ram_usage("final")
-
- else:
- sys.exit(f"Invalid step {args.step}")
-
-if __name__ == "__main__":
-
- print('\n'.join(['\t',
- '\t##################################',
- '\t# #',
- '\t# CAD Meta-prediction #',
- '\t# #',
- '\t# Torkamani_Lab #',
- '\t# #',
- '\t# Main Contributor: Shaun Chen #',
- '\t# Last Modified: 2023-12-05 #',
- '\t# #',
- '\t##################################',
- '\t',
- ]))
-
- main()
diff --git a/expected_output/final_pipeline__xgb_classifier__cardio.joblib b/expected_output/final_pipeline__xgb_classifier__cardio.joblib
new file mode 100644
index 0000000..9450f57
Binary files /dev/null and b/expected_output/final_pipeline__xgb_classifier__cardio.joblib differ
diff --git a/expected_output/shap__xgb_classifier__cardio__preselect.tsv b/expected_output/shap__xgb_classifier__cardio__preselect.tsv
new file mode 100644
index 0000000..9b2cdb9
--- /dev/null
+++ b/expected_output/shap__xgb_classifier__cardio__preselect.tsv
@@ -0,0 +1,13 @@
+column_name abs_mean_shap
+ap_hi 0.8406461
+age 0.2794825
+cholesterol 0.23126376
+weight 0.107283734
+ap_lo 0.08963405
+active 0.07262705
+alco 0.051115148
+gluc 0.03622755
+id 0.027549895
+smoke 0.022976741
+gender 0.022402074
+height 0.017180031
diff --git a/hyperparams.py b/hyperparams.py
deleted file mode 100644
index 9954c14..0000000
--- a/hyperparams.py
+++ /dev/null
@@ -1,106 +0,0 @@
-import xgboost as xgb
-from catboost import CatBoostClassifier, CatBoostRegressor
-import lightgbm as lgb
-# from sklearn.ensemble import RandomForestClassifier, RandomForestRegressor
-# from sklearn.linear_model import LogisticRegression, LinearRegression
-
-
-global classifiers, regressors, estimators_dict, params_dict
-classifiers = [("xgb", "classifier"), ("lgb", "classifier"), ("cat", "classifier"), ("rf", "classifier"), ("lm", "classifier")]
-regressors = [("xgb", "regressor"), ("lgb", "regressor"), ("cat", "regressor"), ("rf", "regressor"), ("lm", "regressor")]
-
-
-global estimators_dict
-estimators_dict = {
- # classifer
- ("xgb", "classifier"): xgb.XGBClassifier(),
- ("lgb", "classifier"): lgb.LGBMClassifier(),
- ("cat", "classifier"): CatBoostClassifier(),
- # ("rf", "classifier"): RandomForestClassifier(),
- # ("lm", "classifier"): LogisticRegression(),
-
- #regressor
- ("xgb", "regressor"): xgb.XGBRegressor(),
- ("lgb", "regressor"): lgb.LGBMRegressor(),
- ("cat", "regressor"): CatBoostRegressor(),
- # ("rf", "regressor"): RandomForestRegressor(),
- # ("lm", "regressor"): LinearRegression(),
-}
-
-
-global params_dict
-params_dict = {
- ("xgb", "classifier"): {
- "objective": ["binary:logistic"],
- "eval_metric": ["auc"],
- "gamma": [1e-8, 10],
- "learning_rate": [0.001, 0.3],
- "max_bin": [2, 20],
- "max_depth": [4, 50],
- "min_child_weight": [0, 15],
- # https://machinelearningmastery.com/tune-number-size-decision-trees-xgboost-python/
- # https://stackoverflow.com/questions/65983344/how-to-choose-the-values-of-n-estimators-and-seed-in-xgbregressor
- "n_estimators": [50, 500],
- "n_jobs": [-1, -1],
- "random_state": [19920722, 19920722],
- "reg_alpha": [0, 10],
- "reg_lambda": [0, 10],
- "scale_pos_weight": [0.5, 20], ## 5/95; 95/5
- },
-
- ("lgb", "classifier"): {
- "boosting_type": ["gbdt"],
- "num_leaves": [10, 100],
- "learning_rate": [0.001, 0.3],
- "n_estimators": [50, 500],
- "reg_alpha": [0, 10],
- "reg_lambda": [0, 10],
- "random_state": [19920722, 19920722],
- "n_jobs": [-1, -1],
- },
-
- ("cat", "classifier"): {
- "eval_metric": ["Logloss"],
- "random_seed": [19920722, 19920722],
- "depth": [4, 10],
- "loss_function": ["Logloss"],
- "learning_rate": [0.001, 0.3],
- 'verbose': [False, False],
- },
-
- ("xgb", "regressor"): {
- "objective": ["reg:squarederror"],
- "gamma": [1e-8, 10],
- "learning_rate": [0.001, 0.3],
- "max_bin": [2, 20],
- "max_depth": [4, 50],
- "min_child_weight": [0, 15],
- "n_estimators": [50, 500],
- "n_jobs": [-1, -1],
- "random_state": [19920722, 19920722],
- "reg_alpha": [0, 10],
- "reg_lambda": [0, 10],
- "scale_pos_weight": [0.5, 20], ## 5/95; 95/5
- },
-
- ("lgb", "regressor"): {
- "boosting_type": ["gbdt"],
- "num_leaves": [10, 500],
- "learning_rate": [0.001, 0.3],
- "n_estimators": [50, 500],
- "reg_alpha": [0, 10],
- "reg_lambda": [0, 10],
- "random_state": [19920722, 19920722],
- "n_jobs": [-1, -1],
- },
-
- ("cat", "regressor"): {
- "eval_metric": ["RMSE"],
- "random_seed": [19920722, 19920722],
- "depth": [4, 10],
- "loss_function": ["RMSE"],
- "learning_rate": [0.001, 0.3],
- 'verbose': [False, False],
- },
-}
-
diff --git a/img/NatMed_metaprediction_fig1b.png b/img/NatMed_metaprediction_fig1b.png
new file mode 100644
index 0000000..897d652
Binary files /dev/null and b/img/NatMed_metaprediction_fig1b.png differ
diff --git a/meta_prediction_estimator.py b/meta_prediction_estimator.py
new file mode 100644
index 0000000..aef3e8b
--- /dev/null
+++ b/meta_prediction_estimator.py
@@ -0,0 +1,75 @@
+#!/usr/bin/env python3
+
+import argparse
+import logging
+
+import numpy as np
+
+from src.utils import execute_model
+
+np.random.seed(19920722)
+logging.basicConfig(level=logging.ERROR, format="%(asctime)s - %(levelname)s - %(message)s")
+
+
+def parse_arguments():
+ parser = argparse.ArgumentParser(
+ description="Model training and testing script.",
+ formatter_class=argparse.ArgumentDefaultsHelpFormatter,
+ )
+
+ parser.add_argument("--y_label", required=True, help="Label Y", metavar="LABEL")
+ parser.add_argument("--input_pickle_fp", required=True, help="Input PICKLE file path", metavar="INPUT")
+ parser.add_argument("--id_col", required=True, help="ID column", metavar="ID_COL")
+ parser.add_argument(
+ "--pkg",
+ default="xgb",
+ choices=["xgb", "cat", "lgb"],
+ help="Package to use: one of {xgb, cat, lgb}",
+ metavar="PKG",
+ )
+ parser.add_argument(
+ "--estimator_type",
+ default="classifier",
+ choices=["classifier", "regressor"],
+ help="Type of estimator: one of {classifier, regressor}",
+ metavar="EST_TYPE",
+ )
+ parser.add_argument("--n_features", type=int, default=10, help="Number of features", metavar="N")
+ parser.add_argument("--n_trials", type=int, default=100, help="Number of hyperparameter tuning trials", metavar="N")
+ return parser.parse_args()
+
+
+def main():
+ args = parse_arguments()
+
+ execute_model(
+ y_label=args.y_label,
+ input_pickle_fp=args.input_pickle_fp,
+ id_col=args.id_col,
+ n_features=args.n_features,
+ n_trials=args.n_trials,
+ trainer=(args.pkg, args.estimator_type),
+ )
+
+
+if __name__ == "__main__":
+ print(
+ "\n".join(
+ [
+ "\t",
+ "\t##################################",
+ "\t# #",
+ "\t# CAD Meta-prediction #",
+ "\t# #",
+ "\t# Torkamani_Lab #",
+ "\t# #",
+ "\t# Main Contributor: Shaun Chen #",
+ "\t# Last Modified: 2025-04-14 #",
+ "\t# #",
+ "\t##################################",
+ "\t",
+ ]
+ )
+ )
+
+ main()
diff --git a/poetry.lock b/poetry.lock
new file mode 100644
index 0000000..c2c63f0
--- /dev/null
+++ b/poetry.lock
@@ -0,0 +1,6138 @@
+# This file is automatically @generated by Poetry 2.1.2 and should not be changed by hand.
+
+[[package]]
+name = "aiosignal"
+version = "1.3.2"
+description = "aiosignal: a list of registered asynchronous callbacks"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "aiosignal-1.3.2-py2.py3-none-any.whl", hash = "sha256:45cde58e409a301715980c2b01d0c28bdde3770d8290b5eb2173759d9acb31a5"},
+ {file = "aiosignal-1.3.2.tar.gz", hash = "sha256:a8c255c66fafb1e499c9351d0bf32ff2d8a0321595ebac3b93713656d2436f54"},
+]
+
+[package.dependencies]
+frozenlist = ">=1.1.0"
+
+[[package]]
+name = "alembic"
+version = "1.14.1"
+description = "A database migration tool for SQLAlchemy."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "alembic-1.14.1-py3-none-any.whl", hash = "sha256:1acdd7a3a478e208b0503cd73614d5e4c6efafa4e73518bb60e4f2846a37b1c5"},
+ {file = "alembic-1.14.1.tar.gz", hash = "sha256:496e888245a53adf1498fcab31713a469c65836f8de76e01399aa1c3e90dd213"},
+]
+
+[package.dependencies]
+Mako = "*"
+SQLAlchemy = ">=1.3.0"
+typing-extensions = ">=4"
+
+[package.extras]
+tz = ["backports.zoneinfo ; python_version < \"3.9\"", "tzdata"]
+
+[[package]]
+name = "ansi2html"
+version = "1.9.2"
+description = "Convert text with ANSI color codes to HTML or to LaTeX"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "ansi2html-1.9.2-py3-none-any.whl", hash = "sha256:dccb75aa95fb018e5d299be2b45f802952377abfdce0504c17a6ee6ef0a420c5"},
+ {file = "ansi2html-1.9.2.tar.gz", hash = "sha256:3453bf87535d37b827b05245faaa756dbab4ec3d69925e352b6319c3c955c0a5"},
+]
+
+[package.extras]
+docs = ["mkdocs", "mkdocs-material", "mkdocs-material-extensions", "mkdocstrings", "mkdocstrings-python", "pymdown-extensions"]
+test = ["pytest", "pytest-cov"]
+
+[[package]]
+name = "anyio"
+version = "4.9.0"
+description = "High level compatibility layer for multiple asynchronous event loop implementations"
+optional = false
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "anyio-4.9.0-py3-none-any.whl", hash = "sha256:9f76d541cad6e36af7beb62e978876f3b41e3e04f2c1fbf0884604c0a9c4d93c"},
+ {file = "anyio-4.9.0.tar.gz", hash = "sha256:673c0c244e15788651a4ff38710fea9675823028a6f08a5eda409e0c9840a028"},
+]
+
+[package.dependencies]
+exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""}
+idna = ">=2.8"
+sniffio = ">=1.1"
+typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""}
+
+[package.extras]
+doc = ["Sphinx (>=8.2,<9.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx_rtd_theme"]
+test = ["anyio[trio]", "blockbuster (>=1.5.23)", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "trustme", "truststore (>=0.9.1) ; python_version >= \"3.10\"", "uvloop (>=0.21) ; platform_python_implementation == \"CPython\" and platform_system != \"Windows\" and python_version < \"3.14\""]
+trio = ["trio (>=0.26.1)"]
+
+[[package]]
+name = "aplr"
+version = "10.8.0"
+description = "Automatic Piecewise Linear Regression"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "aplr-10.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:da7b62a44de5f932744193ae1ef3557f73af2f1b3b28f9b2b412874a17c919d8"},
+ {file = "aplr-10.8.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:deae0974979a3f1d82e226199e24a67b7a7cadd67c20457c9a025beb3cbe4267"},
+ {file = "aplr-10.8.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd4f4c63d78748f5c360ca5b947872faaac681e448da56e54ad0b2a119bf2fb2"},
+ {file = "aplr-10.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd404748c190559f83e1751ee5c2f938d11960e21778b5c1338ccf0ffef7aed1"},
+ {file = "aplr-10.8.0-cp310-cp310-win32.whl", hash = "sha256:dbed11bc12a9399c7dfd04fb3911924dda8701f1bb178433bb247e7de9a2beea"},
+ {file = "aplr-10.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:0f0fc233a04f710278a9bd243042cef3f00956cca56abd0d8dc230dcb4750049"},
+ {file = "aplr-10.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d55408355c936120356fe0cabc7fe519afdf1e422eddf493a01944c5c9bd6d37"},
+ {file = "aplr-10.8.0-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:84e1734579da52714a6b1da71bc84947baf44df7788b23075d1a2c877d46f91a"},
+ {file = "aplr-10.8.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bf7c406c8037aa918e944da027e039fc42e2a7eddba727c882217654ff4725bd"},
+ {file = "aplr-10.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24963d44494c7fed9e6ed8296279d79ede5daa28beca510514e0664714abf8f2"},
+ {file = "aplr-10.8.0-cp311-cp311-win32.whl", hash = "sha256:42d2308113cc91fe6c3cab7d48e8176ac67555f2ab2121d4321eb06eda55f29f"},
+ {file = "aplr-10.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:d2932f331bee4048fcf86d17b14e2ab2422cb78ff27371c8f820b28ceced7978"},
+ {file = "aplr-10.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ee62984dc93f25f5e11a83829345d8217bd217accfe0c82fb1dab745215098ef"},
+ {file = "aplr-10.8.0-cp312-cp312-macosx_11_0_x86_64.whl", hash = "sha256:34fad53dc7a23ae8ce09656d65d9971d20dee4741a9c23a6d68cde5ae286785f"},
+ {file = "aplr-10.8.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:431cbfc3f65fe4e69e9de9e054ec1ed60aa11ad70992bb0fbcb9cef18170dafa"},
+ {file = "aplr-10.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2173e84571f2a0ca29247bb22ff8ecdd846dfaf349bf37fd0968a394ae1d3789"},
+ {file = "aplr-10.8.0-cp312-cp312-win32.whl", hash = "sha256:a176e56ca37efae5308008d475192af21cd5a6e8bbdf29aeff30dc94fa789f0b"},
+ {file = "aplr-10.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:fabaa8b8f47930e9fb8e7ee98019d1a91fa3989ca0e92d6ad0adfd2bc33d8db3"},
+ {file = "aplr-10.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:04ffdfb82f2c9d1ce2e45b8d3110735895b026ee4958ff5fe0ad337246feb422"},
+ {file = "aplr-10.8.0-cp313-cp313-macosx_11_0_x86_64.whl", hash = "sha256:5662b3dd28e83261c4c21e4aa9fa10c4fcc14cff95be66b519afcd6fbf4f7f1a"},
+ {file = "aplr-10.8.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba144fdb5d26a5bcc17ce7fd34615e9c45dc66ed980743cd337091560286e8bc"},
+ {file = "aplr-10.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5110959ac26cb938a6de170803dd2f6bbee79033f1ef9265dcc92acf57b4d951"},
+ {file = "aplr-10.8.0-cp313-cp313-win32.whl", hash = "sha256:d7e8b8c64d1eccefc1a6eaae909636491407651d264313b5fcd7bab2a91ee73f"},
+ {file = "aplr-10.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:f54c6435ffb5347b29448a6cb0e0255fc78b79edae9aa0ef08999b9903825437"},
+ {file = "aplr-10.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:77c25a314195271223d0519720962906444655ed8deeb21e988fdb7946017123"},
+ {file = "aplr-10.8.0-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:6858ed8e9d4d504b07c30b2b905f07a0ab368d237a7a23f7806c482e0ba55921"},
+ {file = "aplr-10.8.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a19ddf889a2f7e1c223030cbbd185974aaa6def6bc964074039494511ac44d60"},
+ {file = "aplr-10.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93569b5b3146066b037f7dc753abb9acde5a741c5ce7dcebe1e5c6caeafee415"},
+ {file = "aplr-10.8.0-cp38-cp38-win32.whl", hash = "sha256:46cd8f654a4b8b5bef09740ca3de87d6828aa50089d9df1c8e799bb540c68830"},
+ {file = "aplr-10.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:fd3251380119067f3cffccb7efefc649ec7f979219e51bd024b7fffab3bdc0b7"},
+ {file = "aplr-10.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e2503dd83224c25380508da0cd8ba79d0daf9d2470be96757b783c0bcf089b8e"},
+ {file = "aplr-10.8.0-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:fd01af1cfc3a2af09d1391ff5018834812f130bfdecd9d9700158a3763646050"},
+ {file = "aplr-10.8.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1ca494ace74c0f4652b0e5f13ce6f99a61197e9940dc6e728fc94b36b0ca9773"},
+ {file = "aplr-10.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1af402071169b99bc763def8ef82b7d9f491adade8a2757db2c7688ccbb7e567"},
+ {file = "aplr-10.8.0-cp39-cp39-win32.whl", hash = "sha256:89c11f649264981a8d01a573123609a1158ef0ef72565e95b88e4c5c8aab41cf"},
+ {file = "aplr-10.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:0b3eb74d571dfce34c76b0d53b36a19250c8530896b8789476da7a368d500b5b"},
+ {file = "aplr-10.8.0.tar.gz", hash = "sha256:e7048c4c019b9e55f880c777e4fa52af970d0a7b85524ec35c1b5c61db7323e7"},
+]
+
+[package.dependencies]
+numpy = ">=1.11"
+
+[[package]]
+name = "appnope"
+version = "0.1.4"
+description = "Disable App Nap on macOS >= 10.9"
+optional = false
+python-versions = ">=3.6"
+groups = ["main", "dev"]
+files = [
+ {file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"},
+ {file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"},
+]
+markers = {dev = "platform_system == \"Darwin\""}
+
+[[package]]
+name = "argcomplete"
+version = "3.6.2"
+description = "Bash tab completion for argparse"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "argcomplete-3.6.2-py3-none-any.whl", hash = "sha256:65b3133a29ad53fb42c48cf5114752c7ab66c1c38544fdf6460f450c09b42591"},
+ {file = "argcomplete-3.6.2.tar.gz", hash = "sha256:d0519b1bc867f5f4f4713c41ad0aba73a4a5f007449716b16f385f2166dc6adf"},
+]
+
+[package.extras]
+test = ["coverage", "mypy", "pexpect", "ruff", "wheel"]
+
+[[package]]
+name = "argon2-cffi"
+version = "23.1.0"
+description = "Argon2 for Python"
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "argon2_cffi-23.1.0-py3-none-any.whl", hash = "sha256:c670642b78ba29641818ab2e68bd4e6a78ba53b7eff7b4c3815ae16abf91c7ea"},
+ {file = "argon2_cffi-23.1.0.tar.gz", hash = "sha256:879c3e79a2729ce768ebb7d36d4609e3a78a4ca2ec3a9f12286ca057e3d0db08"},
+]
+
+[package.dependencies]
+argon2-cffi-bindings = "*"
+
+[package.extras]
+dev = ["argon2-cffi[tests,typing]", "tox (>4)"]
+docs = ["furo", "myst-parser", "sphinx", "sphinx-copybutton", "sphinx-notfound-page"]
+tests = ["hypothesis", "pytest"]
+typing = ["mypy"]
+
+[[package]]
+name = "argon2-cffi-bindings"
+version = "21.2.0"
+description = "Low-level CFFI bindings for Argon2"
+optional = false
+python-versions = ">=3.6"
+groups = ["dev"]
+files = [
+ {file = "argon2-cffi-bindings-21.2.0.tar.gz", hash = "sha256:bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3"},
+ {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ccb949252cb2ab3a08c02024acb77cfb179492d5701c7cbdbfd776124d4d2367"},
+ {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9524464572e12979364b7d600abf96181d3541da11e23ddf565a32e70bd4dc0d"},
+ {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b746dba803a79238e925d9046a63aa26bf86ab2a2fe74ce6b009a1c3f5c8f2ae"},
+ {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58ed19212051f49a523abb1dbe954337dc82d947fb6e5a0da60f7c8471a8476c"},
+ {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:bd46088725ef7f58b5a1ef7ca06647ebaf0eb4baff7d1d0d177c6cc8744abd86"},
+ {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_i686.whl", hash = "sha256:8cd69c07dd875537a824deec19f978e0f2078fdda07fd5c42ac29668dda5f40f"},
+ {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f1152ac548bd5b8bcecfb0b0371f082037e47128653df2e8ba6e914d384f3c3e"},
+ {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-win32.whl", hash = "sha256:603ca0aba86b1349b147cab91ae970c63118a0f30444d4bc80355937c950c082"},
+ {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl", hash = "sha256:b2ef1c30440dbbcba7a5dc3e319408b59676e2e039e2ae11a8775ecf482b192f"},
+ {file = "argon2_cffi_bindings-21.2.0-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e415e3f62c8d124ee16018e491a009937f8cf7ebf5eb430ffc5de21b900dad93"},
+ {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3e385d1c39c520c08b53d63300c3ecc28622f076f4c2b0e6d7e796e9f6502194"},
+ {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3e3cc67fdb7d82c4718f19b4e7a87123caf8a93fde7e23cf66ac0337d3cb3f"},
+ {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a22ad9800121b71099d0fb0a65323810a15f2e292f2ba450810a7316e128ee5"},
+ {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f9f8b450ed0547e3d473fdc8612083fd08dd2120d6ac8f73828df9b7d45bb351"},
+ {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:93f9bf70084f97245ba10ee36575f0c3f1e7d7724d67d8e5b08e61787c320ed7"},
+ {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3b9ef65804859d335dc6b31582cad2c5166f0c3e7975f324d9ffaa34ee7e6583"},
+ {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4966ef5848d820776f5f562a7d45fdd70c2f330c961d0d745b784034bd9f48d"},
+ {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ef543a89dee4db46a1a6e206cd015360e5a75822f76df533845c3cbaf72670"},
+ {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ed2937d286e2ad0cc79a7087d3c272832865f779430e0cc2b4f3718d3159b0cb"},
+ {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5e00316dabdaea0b2dd82d141cc66889ced0cdcbfa599e8b471cf22c620c329a"},
+]
+
+[package.dependencies]
+cffi = ">=1.0.1"
+
+[package.extras]
+dev = ["cogapp", "pre-commit", "pytest", "wheel"]
+tests = ["pytest"]
+
+[[package]]
+name = "arrow"
+version = "1.3.0"
+description = "Better dates & times for Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80"},
+ {file = "arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85"},
+]
+
+[package.dependencies]
+python-dateutil = ">=2.7.0"
+types-python-dateutil = ">=2.8.10"
+
+[package.extras]
+doc = ["doc8", "sphinx (>=7.0.0)", "sphinx-autobuild", "sphinx-autodoc-typehints", "sphinx_rtd_theme (>=1.3.0)"]
+test = ["dateparser (==1.*)", "pre-commit", "pytest", "pytest-cov", "pytest-mock", "pytz (==2021.1)", "simplejson (==3.*)"]
+
+[[package]]
+name = "astor"
+version = "0.8.1"
+description = "Read/rewrite/write Python ASTs"
+optional = false
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
+groups = ["main"]
+files = [
+ {file = "astor-0.8.1-py2.py3-none-any.whl", hash = "sha256:070a54e890cefb5b3739d19f30f5a5ec840ffc9c50ffa7d23cc9fc1a38ebbfc5"},
+ {file = "astor-0.8.1.tar.gz", hash = "sha256:6a6effda93f4e1ce9f618779b2dd1d9d84f1e32812c23a29b3fff6fd7f63fa5e"},
+]
+
+[[package]]
+name = "asttokens"
+version = "3.0.0"
+description = "Annotate AST trees with source code positions"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2"},
+ {file = "asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7"},
+]
+
+[package.extras]
+astroid = ["astroid (>=2,<4)"]
+test = ["astroid (>=2,<4)", "pytest", "pytest-cov", "pytest-xdist"]
+
+[[package]]
+name = "async-lru"
+version = "2.0.5"
+description = "Simple LRU cache for asyncio"
+optional = false
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "async_lru-2.0.5-py3-none-any.whl", hash = "sha256:ab95404d8d2605310d345932697371a5f40def0487c03d6d0ad9138de52c9943"},
+ {file = "async_lru-2.0.5.tar.gz", hash = "sha256:481d52ccdd27275f42c43a928b4a50c3bfb2d67af4e78b170e3e0bb39c66e5bb"},
+]
+
+[package.dependencies]
+typing_extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""}
+
+[[package]]
+name = "attrs"
+version = "25.3.0"
+description = "Classes Without Boilerplate"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "attrs-25.3.0-py3-none-any.whl", hash = "sha256:427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3"},
+ {file = "attrs-25.3.0.tar.gz", hash = "sha256:75d7cefc7fb576747b2c81b4442d4d4a1ce0900973527c011d1030fd3bf4af1b"},
+]
+
+[package.extras]
+benchmark = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pytest-xdist[psutil]"]
+cov = ["cloudpickle ; platform_python_implementation == \"CPython\"", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pytest-xdist[psutil]"]
+dev = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pre-commit-uv", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pytest-xdist[psutil]"]
+docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier"]
+tests = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pytest-xdist[psutil]"]
+tests-mypy = ["mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\"", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.10\""]
+
+[[package]]
+name = "autograd"
+version = "1.7.0"
+description = "Efficiently computes derivatives of NumPy code."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "autograd-1.7.0-py3-none-any.whl", hash = "sha256:49680300f842f3a8722b060ac0d3ed7aca071d1ad4d3d38c9fdadafdcc73c30b"},
+ {file = "autograd-1.7.0.tar.gz", hash = "sha256:de743fd368d6df523cd37305dcd171861a9752a144493677d2c9f5a56983ff2f"},
+]
+
+[package.dependencies]
+numpy = "*"
+
+[package.extras]
+scipy = ["scipy"]
+
+[[package]]
+name = "autograd-gamma"
+version = "0.5.0"
+description = "Autograd compatible approximations to the gamma family of functions"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "autograd-gamma-0.5.0.tar.gz", hash = "sha256:f27abb7b8bb9cffc8badcbf59f3fe44a9db39e124ecacf1992b6d952934ac9c4"},
+]
+
+[package.dependencies]
+autograd = ">=1.2.0"
+scipy = ">=1.2.0"
+
+[[package]]
+name = "autopep8"
+version = "2.3.2"
+description = "A tool that automatically formats Python code to conform to the PEP 8 style guide"
+optional = false
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "autopep8-2.3.2-py2.py3-none-any.whl", hash = "sha256:ce8ad498672c845a0c3de2629c15b635ec2b05ef8177a6e7c91c74f3e9b51128"},
+ {file = "autopep8-2.3.2.tar.gz", hash = "sha256:89440a4f969197b69a995e4ce0661b031f455a9f776d2c5ba3dbd83466931758"},
+]
+
+[package.dependencies]
+pycodestyle = ">=2.12.0"
+tomli = {version = "*", markers = "python_version < \"3.11\""}
+
+[[package]]
+name = "babel"
+version = "2.17.0"
+description = "Internationalization utilities"
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2"},
+ {file = "babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d"},
+]
+
+[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 = "backcall"
+version = "0.2.0"
+description = "Specifications for callback functions passed in to an API"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"},
+ {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"},
+]
+
+[[package]]
+name = "beautifulsoup4"
+version = "4.13.3"
+description = "Screen-scraping library"
+optional = false
+python-versions = ">=3.7.0"
+groups = ["dev"]
+files = [
+ {file = "beautifulsoup4-4.13.3-py3-none-any.whl", hash = "sha256:99045d7d3f08f91f0d656bc9b7efbae189426cd913d830294a15eefa0ea4df16"},
+ {file = "beautifulsoup4-4.13.3.tar.gz", hash = "sha256:1bd32405dacc920b42b83ba01644747ed77456a65760e285fbc47633ceddaf8b"},
+]
+
+[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 = "black"
+version = "25.1.0"
+description = "The uncompromising code formatter."
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "black-25.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:759e7ec1e050a15f89b770cefbf91ebee8917aac5c20483bc2d80a6c3a04df32"},
+ {file = "black-25.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0e519ecf93120f34243e6b0054db49c00a35f84f195d5bce7e9f5cfc578fc2da"},
+ {file = "black-25.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:055e59b198df7ac0b7efca5ad7ff2516bca343276c466be72eb04a3bcc1f82d7"},
+ {file = "black-25.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:db8ea9917d6f8fc62abd90d944920d95e73c83a5ee3383493e35d271aca872e9"},
+ {file = "black-25.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a39337598244de4bae26475f77dda852ea00a93bd4c728e09eacd827ec929df0"},
+ {file = "black-25.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:96c1c7cd856bba8e20094e36e0f948718dc688dba4a9d78c3adde52b9e6c2299"},
+ {file = "black-25.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bce2e264d59c91e52d8000d507eb20a9aca4a778731a08cfff7e5ac4a4bb7096"},
+ {file = "black-25.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:172b1dbff09f86ce6f4eb8edf9dede08b1fce58ba194c87d7a4f1a5aa2f5b3c2"},
+ {file = "black-25.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4b60580e829091e6f9238c848ea6750efed72140b91b048770b64e74fe04908b"},
+ {file = "black-25.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1e2978f6df243b155ef5fa7e558a43037c3079093ed5d10fd84c43900f2d8ecc"},
+ {file = "black-25.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3b48735872ec535027d979e8dcb20bf4f70b5ac75a8ea99f127c106a7d7aba9f"},
+ {file = "black-25.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:ea0213189960bda9cf99be5b8c8ce66bb054af5e9e861249cd23471bd7b0b3ba"},
+ {file = "black-25.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8f0b18a02996a836cc9c9c78e5babec10930862827b1b724ddfe98ccf2f2fe4f"},
+ {file = "black-25.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:afebb7098bfbc70037a053b91ae8437c3857482d3a690fefc03e9ff7aa9a5fd3"},
+ {file = "black-25.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:030b9759066a4ee5e5aca28c3c77f9c64789cdd4de8ac1df642c40b708be6171"},
+ {file = "black-25.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:a22f402b410566e2d1c950708c77ebf5ebd5d0d88a6a2e87c86d9fb48afa0d18"},
+ {file = "black-25.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a1ee0a0c330f7b5130ce0caed9936a904793576ef4d2b98c40835d6a65afa6a0"},
+ {file = "black-25.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3df5f1bf91d36002b0a75389ca8663510cf0531cca8aa5c1ef695b46d98655f"},
+ {file = "black-25.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d9e6827d563a2c820772b32ce8a42828dc6790f095f441beef18f96aa6f8294e"},
+ {file = "black-25.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:bacabb307dca5ebaf9c118d2d2f6903da0d62c9faa82bd21a33eecc319559355"},
+ {file = "black-25.1.0-py3-none-any.whl", hash = "sha256:95e8176dae143ba9097f351d174fdaf0ccd29efb414b362ae3fd72bf0f710717"},
+ {file = "black-25.1.0.tar.gz", hash = "sha256:33496d5cd1222ad73391352b4ae8da15253c5de89b93a80b3e2c8d9a19ec2666"},
+]
+
+[package.dependencies]
+click = ">=8.0.0"
+mypy-extensions = ">=0.4.3"
+packaging = ">=22.0"
+pathspec = ">=0.9.0"
+platformdirs = ">=2"
+tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
+typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""}
+
+[package.extras]
+colorama = ["colorama (>=0.4.3)"]
+d = ["aiohttp (>=3.10)"]
+jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
+uvloop = ["uvloop (>=0.15.2)"]
+
+[[package]]
+name = "bleach"
+version = "6.2.0"
+description = "An easy safelist-based HTML-sanitizing tool."
+optional = false
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e"},
+ {file = "bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f"},
+]
+
+[package.dependencies]
+tinycss2 = {version = ">=1.1.0,<1.5", optional = true, markers = "extra == \"css\""}
+webencodings = "*"
+
+[package.extras]
+css = ["tinycss2 (>=1.1.0,<1.5)"]
+
+[[package]]
+name = "blinker"
+version = "1.9.0"
+description = "Fast, simple object-to-object and broadcast signaling"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "blinker-1.9.0-py3-none-any.whl", hash = "sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc"},
+ {file = "blinker-1.9.0.tar.gz", hash = "sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf"},
+]
+
+[[package]]
+name = "cached-property"
+version = "2.0.1"
+description = "A decorator for caching properties in classes."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "cached_property-2.0.1-py3-none-any.whl", hash = "sha256:f617d70ab1100b7bcf6e42228f9ddcb78c676ffa167278d9f730d1c2fba69ccb"},
+ {file = "cached_property-2.0.1.tar.gz", hash = "sha256:484d617105e3ee0e4f1f58725e72a8ef9e93deee462222dbd51cd91230897641"},
+]
+
+[[package]]
+name = "catboost"
+version = "1.2.5"
+description = "CatBoost Python Package"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "catboost-1.2.5-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d266bcd87e7afa8c8c4cae1dbdb66f9487368ee2c1d2bbcefda0cbff7cb48ac4"},
+ {file = "catboost-1.2.5-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:4143449dae1efc2752cbde2537b90611f36716e4e1e6827fc6856d07de16b431"},
+ {file = "catboost-1.2.5-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:a92da61e95919b03d611045f0f3373799deec6f8192d7d1211714a21ff0da65e"},
+ {file = "catboost-1.2.5-cp310-cp310-win_amd64.whl", hash = "sha256:ad6ae9387759ca121042db60f4c73014027cb160a9dde1f52d353ca18b471e7c"},
+ {file = "catboost-1.2.5-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:68dc17e6850f1ad8256fbbfbfac2c26b7be291c78b0961b135adf3aa6ed503bf"},
+ {file = "catboost-1.2.5-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:b6e1617b57deca52c8880ec2439d0fb514d7e9f78479bae8dbfbd2f95bb3b28e"},
+ {file = "catboost-1.2.5-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:9e0aac17d1a25e0f67770ba7362c6275db611ebb5dc6179daed84f55c3db976c"},
+ {file = "catboost-1.2.5-cp311-cp311-win_amd64.whl", hash = "sha256:901bf56e43334ce42f45b5c62fab1d8a14d54160b6da0645c798b7b7ad415da1"},
+ {file = "catboost-1.2.5-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:82a321ba006abdeae9beb6e53c2d407b0eaaeadb4c1b56de1344f693e7512d08"},
+ {file = "catboost-1.2.5-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:4180fe03d110acf44d09df7e3fd8e1ef62bfd3ac22ce90185332f52e24e96ac9"},
+ {file = "catboost-1.2.5-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:e1925714d40a2a0d9fd086c33f2a668610c07630201527018f3f17a3d530c464"},
+ {file = "catboost-1.2.5-cp312-cp312-win_amd64.whl", hash = "sha256:f13acbcf2f3639d3d06808428db3207c7d776314041619cc32578927ec752221"},
+ {file = "catboost-1.2.5-cp37-cp37m-macosx_11_0_universal2.whl", hash = "sha256:1d8b06333495a90192618ddc4b0ea15186a35a53f55b7743e4c9758de1bb785d"},
+ {file = "catboost-1.2.5-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:87a556dfdad702d958b2f7bb1b6fc8bee4b1bf9bf3e7736aac3f70cb9522d53a"},
+ {file = "catboost-1.2.5-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:d0db06d11dd9446bcb1cd1417bced0c4f956abe3f50f72df79f1b2b6789a6bde"},
+ {file = "catboost-1.2.5-cp37-cp37m-win_amd64.whl", hash = "sha256:a1149bedba20fff940ece5ddd8e56420ebe26850b23533dfc6e5e4994049d220"},
+ {file = "catboost-1.2.5-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:6e3a9bd84c3a92f7cab0a9c3451df21d930f4ebb4716f85513b4feac2b0ef209"},
+ {file = "catboost-1.2.5-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:51acfea3bf141d25e3bc43e8dfc505920a8e701cb06c8d4164661a118e3e1178"},
+ {file = "catboost-1.2.5-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:6acfc79e2be02b34caa26a339ace52c5991b1d9862dcb94f5ced1bd9ca9a8c18"},
+ {file = "catboost-1.2.5-cp38-cp38-win_amd64.whl", hash = "sha256:dabd1ea1bda91f72792b7f348d0301e637f98251fc4d50b62ffc872721997f47"},
+ {file = "catboost-1.2.5-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:ed9521ce617f370dd7f8214f6b5ea2cdb2bfb47a2be0fb19a03b7c9d4399b4d1"},
+ {file = "catboost-1.2.5-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:6cd81cb508031cb5feccdecb6f309fc9562b7114bc82fa06c17ffdbdb079198c"},
+ {file = "catboost-1.2.5-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:86e05596a5330de7a8376f344079c3333fd3254e4300549654e343703f7315b0"},
+ {file = "catboost-1.2.5-cp39-cp39-win_amd64.whl", hash = "sha256:c75f57b1df9893d67ed8f04c32d5e8fe3d591ee873a94a2ff8279e32549397b0"},
+ {file = "catboost-1.2.5.tar.gz", hash = "sha256:12c31650fa55944e9ab5863d4eef194533914920c358b52a7a7d7b0b855cba9f"},
+]
+
+[package.dependencies]
+graphviz = "*"
+matplotlib = "*"
+numpy = ">=1.16.0"
+pandas = ">=0.24"
+plotly = "*"
+scipy = "*"
+six = "*"
+
+[package.extras]
+widget = ["ipython", "ipywidgets (>=7.0,<9.0)", "traitlets"]
+
+[[package]]
+name = "category-encoders"
+version = "2.6.3"
+description = "A collection of sklearn transformers to encode categorical variables as numeric"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "category_encoders-2.6.3-py2.py3-none-any.whl", hash = "sha256:117775f1775e53a67c9e91842ac9100bc364cddc9f4058188796532bc5b11f1c"},
+ {file = "category_encoders-2.6.3.tar.gz", hash = "sha256:d9f14705ed4b536eaf9cfc81b76d67a50b2f16f8f3eda498c57d7da19655530c"},
+]
+
+[package.dependencies]
+numpy = ">=1.14.0"
+pandas = ">=1.0.5"
+patsy = ">=0.5.1"
+scikit-learn = ">=0.20.0"
+scipy = ">=1.0.0"
+statsmodels = ">=0.9.0"
+
+[[package]]
+name = "certifi"
+version = "2025.1.31"
+description = "Python package for providing Mozilla's CA Bundle."
+optional = false
+python-versions = ">=3.6"
+groups = ["main", "dev"]
+files = [
+ {file = "certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe"},
+ {file = "certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651"},
+]
+
+[[package]]
+name = "cffi"
+version = "1.17.1"
+description = "Foreign Function Interface for Python calling C code."
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"},
+ {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"},
+ {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"},
+ {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"},
+ {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"},
+ {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"},
+ {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"},
+ {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"},
+ {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"},
+ {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"},
+ {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"},
+ {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"},
+ {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"},
+ {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"},
+ {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"},
+ {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"},
+ {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"},
+ {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"},
+ {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"},
+ {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"},
+ {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"},
+ {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"},
+ {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"},
+ {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"},
+ {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"},
+ {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"},
+ {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"},
+ {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"},
+ {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"},
+ {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"},
+ {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"},
+ {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"},
+ {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"},
+ {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"},
+ {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"},
+ {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"},
+ {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"},
+ {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"},
+ {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"},
+ {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"},
+ {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"},
+ {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"},
+ {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"},
+ {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"},
+ {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"},
+ {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"},
+ {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"},
+ {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"},
+ {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"},
+ {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"},
+ {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"},
+ {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"},
+ {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"},
+ {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"},
+ {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"},
+ {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"},
+ {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"},
+ {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"},
+ {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"},
+ {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"},
+ {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"},
+ {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"},
+ {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"},
+ {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"},
+ {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"},
+ {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"},
+ {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"},
+]
+markers = {main = "platform_python_implementation == \"CPython\" and sys_platform == \"win32\" or implementation_name == \"pypy\""}
+
+[package.dependencies]
+pycparser = "*"
+
+[[package]]
+name = "charset-normalizer"
+version = "3.4.1"
+description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
+optional = false
+python-versions = ">=3.7"
+groups = ["main", "dev"]
+files = [
+ {file = "charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f30bf9fd9be89ecb2360c7d94a711f00c09b976258846efe40db3d05828e8089"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:97f68b8d6831127e4787ad15e6757232e14e12060bec17091b85eb1486b91d8d"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7974a0b5ecd505609e3b19742b60cee7aa2aa2fb3151bc917e6e2646d7667dcf"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc54db6c8593ef7d4b2a331b58653356cf04f67c960f584edb7c3d8c97e8f39e"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:311f30128d7d333eebd7896965bfcfbd0065f1716ec92bd5638d7748eb6f936a"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:7d053096f67cd1241601111b698f5cad775f97ab25d81567d3f59219b5f1adbd"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:807f52c1f798eef6cf26beb819eeb8819b1622ddfeef9d0977a8502d4db6d534"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:dccbe65bd2f7f7ec22c4ff99ed56faa1e9f785482b9bbd7c717e26fd723a1d1e"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:2fb9bd477fdea8684f78791a6de97a953c51831ee2981f8e4f583ff3b9d9687e"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:01732659ba9b5b873fc117534143e4feefecf3b2078b0a6a2e925271bb6f4cfa"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-win32.whl", hash = "sha256:7a4f97a081603d2050bfaffdefa5b02a9ec823f8348a572e39032caa8404a487"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7b1bef6280950ee6c177b326508f86cad7ad4dff12454483b51d8b7d673a2c5d"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ecddf25bee22fe4fe3737a399d0d177d72bc22be6913acfab364b40bce1ba83c"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c60ca7339acd497a55b0ea5d506b2a2612afb2826560416f6894e8b5770d4a9"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b7b2d86dd06bfc2ade3312a83a5c364c7ec2e3498f8734282c6c3d4b07b346b8"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd78cfcda14a1ef52584dbb008f7ac81c1328c0f58184bf9a84c49c605002da6"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e27f48bcd0957c6d4cb9d6fa6b61d192d0b13d5ef563e5f2ae35feafc0d179c"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01ad647cdd609225c5350561d084b42ddf732f4eeefe6e678765636791e78b9a"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:619a609aa74ae43d90ed2e89bdd784765de0a25ca761b93e196d938b8fd1dbbd"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:89149166622f4db9b4b6a449256291dc87a99ee53151c74cbd82a53c8c2f6ccd"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:7709f51f5f7c853f0fb938bcd3bc59cdfdc5203635ffd18bf354f6967ea0f824"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:345b0426edd4e18138d6528aed636de7a9ed169b4aaf9d61a8c19e39d26838ca"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0907f11d019260cdc3f94fbdb23ff9125f6b5d1039b76003b5b0ac9d6a6c9d5b"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-win32.whl", hash = "sha256:ea0d8d539afa5eb2728aa1932a988a9a7af94f18582ffae4bc10b3fbdad0626e"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:329ce159e82018d646c7ac45b01a430369d526569ec08516081727a20e9e4af4"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765"},
+ {file = "charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85"},
+ {file = "charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3"},
+]
+
+[[package]]
+name = "click"
+version = "8.1.8"
+description = "Composable command line interface toolkit"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2"},
+ {file = "click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a"},
+]
+
+[package.dependencies]
+colorama = {version = "*", markers = "platform_system == \"Windows\""}
+
+[[package]]
+name = "cloudpickle"
+version = "2.2.1"
+description = "Extended pickling support for Python objects"
+optional = false
+python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "cloudpickle-2.2.1-py3-none-any.whl", hash = "sha256:61f594d1f4c295fa5cd9014ceb3a1fc4a70b0de1164b94fbc2d854ccba056f9f"},
+ {file = "cloudpickle-2.2.1.tar.gz", hash = "sha256:d89684b8de9e34a2a43b3460fbca07d09d6e25ce858df4d5a44240403b6178f5"},
+]
+
+[[package]]
+name = "cmaes"
+version = "0.11.1"
+description = "Lightweight Covariance Matrix Adaptation Evolution Strategy (CMA-ES) implementation for Python 3."
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "cmaes-0.11.1-py3-none-any.whl", hash = "sha256:1de77d2175045389680619c1e9b6d59d90e7888524d9e440e1704ba001de9fcc"},
+ {file = "cmaes-0.11.1.tar.gz", hash = "sha256:cf71fa3679814723be771f2c9edd85f465b1bc1e409e1ad6d8a9e481efcd5160"},
+]
+
+[package.dependencies]
+numpy = "*"
+
+[package.extras]
+cmawm = ["scipy"]
+
+[[package]]
+name = "colorama"
+version = "0.4.6"
+description = "Cross-platform colored terminal text."
+optional = false
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
+groups = ["main", "dev"]
+files = [
+ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
+ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
+]
+markers = {main = "platform_system == \"Windows\" or sys_platform == \"win32\"", dev = "sys_platform == \"win32\""}
+
+[[package]]
+name = "colorlog"
+version = "6.9.0"
+description = "Add colours to the output of Python's logging module."
+optional = false
+python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "colorlog-6.9.0-py3-none-any.whl", hash = "sha256:5906e71acd67cb07a71e779c47c4bcb45fb8c2993eebe9e5adcd6a6f1b283eff"},
+ {file = "colorlog-6.9.0.tar.gz", hash = "sha256:bfba54a1b93b94f54e1f4fe48395725a3d92fd2a4af702f6bd70946bdc0c6ac2"},
+]
+
+[package.dependencies]
+colorama = {version = "*", markers = "sys_platform == \"win32\""}
+
+[package.extras]
+development = ["black", "flake8", "mypy", "pytest", "types-colorama"]
+
+[[package]]
+name = "comm"
+version = "0.2.2"
+description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc."
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3"},
+ {file = "comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e"},
+]
+
+[package.dependencies]
+traitlets = ">=4"
+
+[package.extras]
+test = ["pytest"]
+
+[[package]]
+name = "contourpy"
+version = "1.2.1"
+description = "Python library for calculating contours of 2D quadrilateral grids"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "contourpy-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bd7c23df857d488f418439686d3b10ae2fbf9bc256cd045b37a8c16575ea1040"},
+ {file = "contourpy-1.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5b9eb0ca724a241683c9685a484da9d35c872fd42756574a7cfbf58af26677fd"},
+ {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c75507d0a55378240f781599c30e7776674dbaf883a46d1c90f37e563453480"},
+ {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11959f0ce4a6f7b76ec578576a0b61a28bdc0696194b6347ba3f1c53827178b9"},
+ {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb3315a8a236ee19b6df481fc5f997436e8ade24a9f03dfdc6bd490fea20c6da"},
+ {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39f3ecaf76cd98e802f094e0d4fbc6dc9c45a8d0c4d185f0f6c2234e14e5f75b"},
+ {file = "contourpy-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:94b34f32646ca0414237168d68a9157cb3889f06b096612afdd296003fdd32fd"},
+ {file = "contourpy-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:457499c79fa84593f22454bbd27670227874cd2ff5d6c84e60575c8b50a69619"},
+ {file = "contourpy-1.2.1-cp310-cp310-win32.whl", hash = "sha256:ac58bdee53cbeba2ecad824fa8159493f0bf3b8ea4e93feb06c9a465d6c87da8"},
+ {file = "contourpy-1.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:9cffe0f850e89d7c0012a1fb8730f75edd4320a0a731ed0c183904fe6ecfc3a9"},
+ {file = "contourpy-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6022cecf8f44e36af10bd9118ca71f371078b4c168b6e0fab43d4a889985dbb5"},
+ {file = "contourpy-1.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef5adb9a3b1d0c645ff694f9bca7702ec2c70f4d734f9922ea34de02294fdf72"},
+ {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6150ffa5c767bc6332df27157d95442c379b7dce3a38dff89c0f39b63275696f"},
+ {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4c863140fafc615c14a4bf4efd0f4425c02230eb8ef02784c9a156461e62c965"},
+ {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:00e5388f71c1a0610e6fe56b5c44ab7ba14165cdd6d695429c5cd94021e390b2"},
+ {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d4492d82b3bc7fbb7e3610747b159869468079fe149ec5c4d771fa1f614a14df"},
+ {file = "contourpy-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:49e70d111fee47284d9dd867c9bb9a7058a3c617274900780c43e38d90fe1205"},
+ {file = "contourpy-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b59c0ffceff8d4d3996a45f2bb6f4c207f94684a96bf3d9728dbb77428dd8cb8"},
+ {file = "contourpy-1.2.1-cp311-cp311-win32.whl", hash = "sha256:7b4182299f251060996af5249c286bae9361fa8c6a9cda5efc29fe8bfd6062ec"},
+ {file = "contourpy-1.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2855c8b0b55958265e8b5888d6a615ba02883b225f2227461aa9127c578a4922"},
+ {file = "contourpy-1.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:62828cada4a2b850dbef89c81f5a33741898b305db244904de418cc957ff05dc"},
+ {file = "contourpy-1.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:309be79c0a354afff9ff7da4aaed7c3257e77edf6c1b448a779329431ee79d7e"},
+ {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e785e0f2ef0d567099b9ff92cbfb958d71c2d5b9259981cd9bee81bd194c9a4"},
+ {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cac0a8f71a041aa587410424ad46dfa6a11f6149ceb219ce7dd48f6b02b87a7"},
+ {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af3f4485884750dddd9c25cb7e3915d83c2db92488b38ccb77dd594eac84c4a0"},
+ {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ce6889abac9a42afd07a562c2d6d4b2b7134f83f18571d859b25624a331c90b"},
+ {file = "contourpy-1.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a1eea9aecf761c661d096d39ed9026574de8adb2ae1c5bd7b33558af884fb2ce"},
+ {file = "contourpy-1.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:187fa1d4c6acc06adb0fae5544c59898ad781409e61a926ac7e84b8f276dcef4"},
+ {file = "contourpy-1.2.1-cp312-cp312-win32.whl", hash = "sha256:c2528d60e398c7c4c799d56f907664673a807635b857df18f7ae64d3e6ce2d9f"},
+ {file = "contourpy-1.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:1a07fc092a4088ee952ddae19a2b2a85757b923217b7eed584fdf25f53a6e7ce"},
+ {file = "contourpy-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bb6834cbd983b19f06908b45bfc2dad6ac9479ae04abe923a275b5f48f1a186b"},
+ {file = "contourpy-1.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1d59e739ab0e3520e62a26c60707cc3ab0365d2f8fecea74bfe4de72dc56388f"},
+ {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd3db01f59fdcbce5b22afad19e390260d6d0222f35a1023d9adc5690a889364"},
+ {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a12a813949e5066148712a0626895c26b2578874e4cc63160bb007e6df3436fe"},
+ {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe0ccca550bb8e5abc22f530ec0466136379c01321fd94f30a22231e8a48d985"},
+ {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1d59258c3c67c865435d8fbeb35f8c59b8bef3d6f46c1f29f6123556af28445"},
+ {file = "contourpy-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f32c38afb74bd98ce26de7cc74a67b40afb7b05aae7b42924ea990d51e4dac02"},
+ {file = "contourpy-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d31a63bc6e6d87f77d71e1abbd7387ab817a66733734883d1fc0021ed9bfa083"},
+ {file = "contourpy-1.2.1-cp39-cp39-win32.whl", hash = "sha256:ddcb8581510311e13421b1f544403c16e901c4e8f09083c881fab2be80ee31ba"},
+ {file = "contourpy-1.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:10a37ae557aabf2509c79715cd20b62e4c7c28b8cd62dd7d99e5ed3ce28c3fd9"},
+ {file = "contourpy-1.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a31f94983fecbac95e58388210427d68cd30fe8a36927980fab9c20062645609"},
+ {file = "contourpy-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef2b055471c0eb466033760a521efb9d8a32b99ab907fc8358481a1dd29e3bd3"},
+ {file = "contourpy-1.2.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:b33d2bc4f69caedcd0a275329eb2198f560b325605810895627be5d4b876bf7f"},
+ {file = "contourpy-1.2.1.tar.gz", hash = "sha256:4d8908b3bee1c889e547867ca4cdc54e5ab6be6d3e078556814a22457f49423c"},
+]
+
+[package.dependencies]
+numpy = ">=1.20"
+
+[package.extras]
+bokeh = ["bokeh", "selenium"]
+docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"]
+mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.8.0)", "types-Pillow"]
+test = ["Pillow", "contourpy[test-no-images]", "matplotlib"]
+test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"]
+
+[[package]]
+name = "cycler"
+version = "0.12.1"
+description = "Composable style cycles"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"},
+ {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"},
+]
+
+[package.extras]
+docs = ["ipython", "matplotlib", "numpydoc", "sphinx"]
+tests = ["pytest", "pytest-cov", "pytest-xdist"]
+
+[[package]]
+name = "dash"
+version = "3.0.2"
+description = "A Python framework for building reactive web-apps. Developed by Plotly."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "dash-3.0.2-py3-none-any.whl", hash = "sha256:fa5b03fe47690eb1785c71402031fd22a8ebb1f4b46d556f36e8d5b0e13a4124"},
+ {file = "dash-3.0.2.tar.gz", hash = "sha256:a9e08479d8dcf4f76e87794ee8d79ed4b58423be5f367f609ac8c24bda2f78b0"},
+]
+
+[package.dependencies]
+Flask = ">=1.0.4,<3.1"
+importlib-metadata = "*"
+nest-asyncio = "*"
+plotly = ">=5.0.0"
+requests = "*"
+retrying = "*"
+setuptools = "*"
+typing-extensions = ">=4.1.1"
+Werkzeug = "<3.1"
+
+[package.extras]
+celery = ["celery[redis] (>=5.1.2)", "redis (>=3.5.3)"]
+ci = ["black (==22.3.0)", "flake8 (==7.0.0)", "flaky (==3.8.1)", "flask-talisman (==1.0.0)", "ipython (<9.0.0)", "jupyterlab (<4.0.0)", "mimesis (<=11.1.0)", "mock (==4.0.3)", "numpy (<=1.26.3)", "openpyxl", "orjson (==3.10.3)", "pandas (>=1.4.0)", "pyarrow", "pylint (==3.0.3)", "pyright (==1.1.376) ; python_version >= \"3.7\"", "pytest-mock", "pytest-rerunfailures", "pytest-sugar (==0.9.6)", "pyzmq (==25.1.2)", "xlrd (>=2.0.1)"]
+compress = ["flask-compress"]
+dev = ["PyYAML (>=5.4.1)", "coloredlogs (>=15.0.1)", "fire (>=0.4.0)"]
+diskcache = ["diskcache (>=5.2.1)", "multiprocess (>=0.70.12)", "psutil (>=5.8.0)"]
+testing = ["beautifulsoup4 (>=4.8.2)", "cryptography", "dash-testing-stub (>=0.0.2)", "lxml (>=4.6.2)", "multiprocess (>=0.70.12)", "percy (>=2.0.2)", "psutil (>=5.8.0)", "pytest (>=6.0.2)", "requests[security] (>=2.21.0)", "selenium (>=3.141.0,<=4.2.0)", "waitress (>=1.4.4)"]
+
+[[package]]
+name = "dash-core-components"
+version = "2.0.0"
+description = "Core component suite for Dash"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "dash_core_components-2.0.0-py3-none-any.whl", hash = "sha256:52b8e8cce13b18d0802ee3acbc5e888cb1248a04968f962d63d070400af2e346"},
+ {file = "dash_core_components-2.0.0.tar.gz", hash = "sha256:c6733874af975e552f95a1398a16c2ee7df14ce43fa60bb3718a3c6e0b63ffee"},
+]
+
+[[package]]
+name = "dash-cytoscape"
+version = "1.0.2"
+description = "A Component Library for Dash aimed at facilitating network visualization in Python, wrapped around Cytoscape.js"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "dash_cytoscape-1.0.2.tar.gz", hash = "sha256:a61019d2184d63a2b3b5c06d056d3b867a04223a674cc3c7cf900a561a9a59aa"},
+]
+
+[package.dependencies]
+dash = "*"
+
+[package.extras]
+leaflet = ["dash-leaflet (>=1.0.16rc3)"]
+
+[[package]]
+name = "dash-html-components"
+version = "2.0.0"
+description = "Vanilla HTML components for Dash"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "dash_html_components-2.0.0-py3-none-any.whl", hash = "sha256:b42cc903713c9706af03b3f2548bda4be7307a7cf89b7d6eae3da872717d1b63"},
+ {file = "dash_html_components-2.0.0.tar.gz", hash = "sha256:8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50"},
+]
+
+[[package]]
+name = "dash-table"
+version = "5.0.0"
+description = "Dash table"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "dash_table-5.0.0-py3-none-any.whl", hash = "sha256:19036fa352bb1c11baf38068ec62d172f0515f73ca3276c79dee49b95ddc16c9"},
+ {file = "dash_table-5.0.0.tar.gz", hash = "sha256:18624d693d4c8ef2ddec99a6f167593437a7ea0bf153aa20f318c170c5bc7308"},
+]
+
+[[package]]
+name = "debugpy"
+version = "1.8.14"
+description = "An implementation of the Debug Adapter Protocol for Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "debugpy-1.8.14-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:93fee753097e85623cab1c0e6a68c76308cd9f13ffdf44127e6fab4fbf024339"},
+ {file = "debugpy-1.8.14-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d937d93ae4fa51cdc94d3e865f535f185d5f9748efb41d0d49e33bf3365bd79"},
+ {file = "debugpy-1.8.14-cp310-cp310-win32.whl", hash = "sha256:c442f20577b38cc7a9aafecffe1094f78f07fb8423c3dddb384e6b8f49fd2987"},
+ {file = "debugpy-1.8.14-cp310-cp310-win_amd64.whl", hash = "sha256:f117dedda6d969c5c9483e23f573b38f4e39412845c7bc487b6f2648df30fe84"},
+ {file = "debugpy-1.8.14-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:1b2ac8c13b2645e0b1eaf30e816404990fbdb168e193322be8f545e8c01644a9"},
+ {file = "debugpy-1.8.14-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf431c343a99384ac7eab2f763980724834f933a271e90496944195318c619e2"},
+ {file = "debugpy-1.8.14-cp311-cp311-win32.whl", hash = "sha256:c99295c76161ad8d507b413cd33422d7c542889fbb73035889420ac1fad354f2"},
+ {file = "debugpy-1.8.14-cp311-cp311-win_amd64.whl", hash = "sha256:7816acea4a46d7e4e50ad8d09d963a680ecc814ae31cdef3622eb05ccacf7b01"},
+ {file = "debugpy-1.8.14-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:8899c17920d089cfa23e6005ad9f22582fd86f144b23acb9feeda59e84405b84"},
+ {file = "debugpy-1.8.14-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6bb5c0dcf80ad5dbc7b7d6eac484e2af34bdacdf81df09b6a3e62792b722826"},
+ {file = "debugpy-1.8.14-cp312-cp312-win32.whl", hash = "sha256:281d44d248a0e1791ad0eafdbbd2912ff0de9eec48022a5bfbc332957487ed3f"},
+ {file = "debugpy-1.8.14-cp312-cp312-win_amd64.whl", hash = "sha256:5aa56ef8538893e4502a7d79047fe39b1dae08d9ae257074c6464a7b290b806f"},
+ {file = "debugpy-1.8.14-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:329a15d0660ee09fec6786acdb6e0443d595f64f5d096fc3e3ccf09a4259033f"},
+ {file = "debugpy-1.8.14-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f920c7f9af409d90f5fd26e313e119d908b0dd2952c2393cd3247a462331f15"},
+ {file = "debugpy-1.8.14-cp313-cp313-win32.whl", hash = "sha256:3784ec6e8600c66cbdd4ca2726c72d8ca781e94bce2f396cc606d458146f8f4e"},
+ {file = "debugpy-1.8.14-cp313-cp313-win_amd64.whl", hash = "sha256:684eaf43c95a3ec39a96f1f5195a7ff3d4144e4a18d69bb66beeb1a6de605d6e"},
+ {file = "debugpy-1.8.14-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:d5582bcbe42917bc6bbe5c12db1bffdf21f6bfc28d4554b738bf08d50dc0c8c3"},
+ {file = "debugpy-1.8.14-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5349b7c3735b766a281873fbe32ca9cca343d4cc11ba4a743f84cb854339ff35"},
+ {file = "debugpy-1.8.14-cp38-cp38-win32.whl", hash = "sha256:7118d462fe9724c887d355eef395fae68bc764fd862cdca94e70dcb9ade8a23d"},
+ {file = "debugpy-1.8.14-cp38-cp38-win_amd64.whl", hash = "sha256:d235e4fa78af2de4e5609073972700523e372cf5601742449970110d565ca28c"},
+ {file = "debugpy-1.8.14-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:413512d35ff52c2fb0fd2d65e69f373ffd24f0ecb1fac514c04a668599c5ce7f"},
+ {file = "debugpy-1.8.14-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c9156f7524a0d70b7a7e22b2e311d8ba76a15496fb00730e46dcdeedb9e1eea"},
+ {file = "debugpy-1.8.14-cp39-cp39-win32.whl", hash = "sha256:b44985f97cc3dd9d52c42eb59ee9d7ee0c4e7ecd62bca704891f997de4cef23d"},
+ {file = "debugpy-1.8.14-cp39-cp39-win_amd64.whl", hash = "sha256:b1528cfee6c1b1c698eb10b6b096c598738a8238822d218173d21c3086de8123"},
+ {file = "debugpy-1.8.14-py2.py3-none-any.whl", hash = "sha256:5cd9a579d553b6cb9759a7908a41988ee6280b961f24f63336835d9418216a20"},
+ {file = "debugpy-1.8.14.tar.gz", hash = "sha256:7cd287184318416850aa8b60ac90105837bb1e59531898c07569d197d2ed5322"},
+]
+
+[[package]]
+name = "decorator"
+version = "5.2.1"
+description = "Decorators for Humans"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a"},
+ {file = "decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360"},
+]
+
+[[package]]
+name = "defusedxml"
+version = "0.7.1"
+description = "XML bomb protection for Python stdlib modules"
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
+groups = ["dev"]
+files = [
+ {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"},
+ {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"},
+]
+
+[[package]]
+name = "dependency-groups"
+version = "1.3.0"
+description = "A tool for resolving PEP 735 Dependency Group data"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "dependency_groups-1.3.0-py3-none-any.whl", hash = "sha256:1abf34d712deda5581e80d507512664d52b35d1c2d7caf16c85e58ca508547e0"},
+ {file = "dependency_groups-1.3.0.tar.gz", hash = "sha256:5b9751d5d98fbd6dfd038a560a69c8382e41afcbf7ffdbcc28a2a3f85498830f"},
+]
+
+[package.dependencies]
+packaging = "*"
+tomli = {version = "*", markers = "python_version < \"3.11\""}
+
+[package.extras]
+cli = ["tomli ; python_version < \"3.11\""]
+
+[[package]]
+name = "dill"
+version = "0.3.9"
+description = "serialize all of Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "dill-0.3.9-py3-none-any.whl", hash = "sha256:468dff3b89520b474c0397703366b7b95eebe6303f108adf9b19da1f702be87a"},
+ {file = "dill-0.3.9.tar.gz", hash = "sha256:81aa267dddf68cbfe8029c42ca9ec6a4ab3b22371d1c450abc54422577b4512c"},
+]
+
+[package.extras]
+graph = ["objgraph (>=1.7.2)"]
+profile = ["gprof2dot (>=2022.7.29)"]
+
+[[package]]
+name = "distlib"
+version = "0.3.9"
+description = "Distribution utilities"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87"},
+ {file = "distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403"},
+]
+
+[[package]]
+name = "entrypoints"
+version = "0.4"
+description = "Discover and load entry points from installed packages."
+optional = false
+python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "entrypoints-0.4-py3-none-any.whl", hash = "sha256:f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f"},
+ {file = "entrypoints-0.4.tar.gz", hash = "sha256:b706eddaa9218a19ebcd67b56818f05bb27589b1ca9e8d797b74affad4ccacd4"},
+]
+
+[[package]]
+name = "exceptiongroup"
+version = "1.2.2"
+description = "Backport of PEP 654 (exception groups)"
+optional = false
+python-versions = ">=3.7"
+groups = ["main", "dev"]
+files = [
+ {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"},
+ {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"},
+]
+
+[package.extras]
+test = ["pytest (>=6)"]
+
+[[package]]
+name = "executing"
+version = "2.2.0"
+description = "Get the currently executing AST node of a frame, and other information"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "executing-2.2.0-py2.py3-none-any.whl", hash = "sha256:11387150cad388d62750327a53d3339fad4888b39a6fe233c3afbb54ecffd3aa"},
+ {file = "executing-2.2.0.tar.gz", hash = "sha256:5d108c028108fe2551d1a7b2e8b713341e2cb4fc0aa7dcf966fa4327a5226755"},
+]
+
+[package.extras]
+tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich ; python_version >= \"3.11\""]
+
+[[package]]
+name = "fastjsonschema"
+version = "2.21.1"
+description = "Fastest Python implementation of JSON schema"
+optional = false
+python-versions = "*"
+groups = ["dev"]
+files = [
+ {file = "fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667"},
+ {file = "fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4"},
+]
+
+[package.extras]
+devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benchmark", "pytest-cache", "validictory"]
+
+[[package]]
+name = "fasttreeshap"
+version = "0.1.6"
+description = "A fast implementation of TreeSHAP algorithm."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "fasttreeshap-0.1.6-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:39c69cbaddba20376a5978a104efac1406e9a27ed3bb0651c7f6b2154e8cca49"},
+ {file = "fasttreeshap-0.1.6.tar.gz", hash = "sha256:96b31e1451bef54faaa996b3d9090df8b11c7a3d49892765913ba491ed5e4c5c"},
+]
+
+[package.dependencies]
+cloudpickle = "*"
+numba = "*"
+numpy = "*"
+packaging = ">20.9"
+pandas = "*"
+psutil = "*"
+scikit-learn = "*"
+scipy = "*"
+shap = "*"
+slicer = "0.0.7"
+tqdm = ">4.25.0"
+
+[package.extras]
+all = ["catboost", "ipython", "lightgbm", "lime", "matplotlib", "nbsphinx", "numpydoc", "opencv-python", "pyod", "pyspark", "pytest", "pytest-cov", "pytest-mpl", "sentencepiece", "sphinx", "sphinx-rtd-theme", "torch", "transformers", "xgboost"]
+docs = ["ipython", "matplotlib", "nbsphinx", "numpydoc", "sphinx", "sphinx-rtd-theme"]
+others = ["lime"]
+plots = ["ipython", "matplotlib"]
+test = ["catboost", "lightgbm", "opencv-python", "pyod", "pyspark", "pytest", "pytest-cov", "pytest-mpl", "sentencepiece", "torch", "transformers", "xgboost"]
+
+[[package]]
+name = "filelock"
+version = "3.18.0"
+description = "A platform independent file lock."
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de"},
+ {file = "filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2"},
+]
+
+[package.extras]
+docs = ["furo (>=2024.8.6)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"]
+testing = ["covdefaults (>=2.3)", "coverage (>=7.6.10)", "diff-cover (>=9.2.1)", "pytest (>=8.3.4)", "pytest-asyncio (>=0.25.2)", "pytest-cov (>=6)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.28.1)"]
+typing = ["typing-extensions (>=4.12.2) ; python_version < \"3.11\""]
+
+[[package]]
+name = "flask"
+version = "3.0.3"
+description = "A simple framework for building complex web applications."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "flask-3.0.3-py3-none-any.whl", hash = "sha256:34e815dfaa43340d1d15a5c3a02b8476004037eb4840b34910c6e21679d288f3"},
+ {file = "flask-3.0.3.tar.gz", hash = "sha256:ceb27b0af3823ea2737928a4d99d125a06175b8512c445cbd9a9ce200ef76842"},
+]
+
+[package.dependencies]
+blinker = ">=1.6.2"
+click = ">=8.1.3"
+itsdangerous = ">=2.1.2"
+Jinja2 = ">=3.1.2"
+Werkzeug = ">=3.0.0"
+
+[package.extras]
+async = ["asgiref (>=3.2)"]
+dotenv = ["python-dotenv"]
+
+[[package]]
+name = "fonttools"
+version = "4.57.0"
+description = "Tools to manipulate font files"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "fonttools-4.57.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:babe8d1eb059a53e560e7bf29f8e8f4accc8b6cfb9b5fd10e485bde77e71ef41"},
+ {file = "fonttools-4.57.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:81aa97669cd726349eb7bd43ca540cf418b279ee3caba5e2e295fb4e8f841c02"},
+ {file = "fonttools-4.57.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0e9618630edd1910ad4f07f60d77c184b2f572c8ee43305ea3265675cbbfe7e"},
+ {file = "fonttools-4.57.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34687a5d21f1d688d7d8d416cb4c5b9c87fca8a1797ec0d74b9fdebfa55c09ab"},
+ {file = "fonttools-4.57.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69ab81b66ebaa8d430ba56c7a5f9abe0183afefd3a2d6e483060343398b13fb1"},
+ {file = "fonttools-4.57.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d639397de852f2ccfb3134b152c741406752640a266d9c1365b0f23d7b88077f"},
+ {file = "fonttools-4.57.0-cp310-cp310-win32.whl", hash = "sha256:cc066cb98b912f525ae901a24cd381a656f024f76203bc85f78fcc9e66ae5aec"},
+ {file = "fonttools-4.57.0-cp310-cp310-win_amd64.whl", hash = "sha256:7a64edd3ff6a7f711a15bd70b4458611fb240176ec11ad8845ccbab4fe6745db"},
+ {file = "fonttools-4.57.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3871349303bdec958360eedb619169a779956503ffb4543bb3e6211e09b647c4"},
+ {file = "fonttools-4.57.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c59375e85126b15a90fcba3443eaac58f3073ba091f02410eaa286da9ad80ed8"},
+ {file = "fonttools-4.57.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:967b65232e104f4b0f6370a62eb33089e00024f2ce143aecbf9755649421c683"},
+ {file = "fonttools-4.57.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39acf68abdfc74e19de7485f8f7396fa4d2418efea239b7061d6ed6a2510c746"},
+ {file = "fonttools-4.57.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9d077f909f2343daf4495ba22bb0e23b62886e8ec7c109ee8234bdbd678cf344"},
+ {file = "fonttools-4.57.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:46370ac47a1e91895d40e9ad48effbe8e9d9db1a4b80888095bc00e7beaa042f"},
+ {file = "fonttools-4.57.0-cp311-cp311-win32.whl", hash = "sha256:ca2aed95855506b7ae94e8f1f6217b7673c929e4f4f1217bcaa236253055cb36"},
+ {file = "fonttools-4.57.0-cp311-cp311-win_amd64.whl", hash = "sha256:17168a4670bbe3775f3f3f72d23ee786bd965395381dfbb70111e25e81505b9d"},
+ {file = "fonttools-4.57.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:889e45e976c74abc7256d3064aa7c1295aa283c6bb19810b9f8b604dfe5c7f31"},
+ {file = "fonttools-4.57.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0425c2e052a5f1516c94e5855dbda706ae5a768631e9fcc34e57d074d1b65b92"},
+ {file = "fonttools-4.57.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44c26a311be2ac130f40a96769264809d3b0cb297518669db437d1cc82974888"},
+ {file = "fonttools-4.57.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84c41ba992df5b8d680b89fd84c6a1f2aca2b9f1ae8a67400c8930cd4ea115f6"},
+ {file = "fonttools-4.57.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ea1e9e43ca56b0c12440a7c689b1350066595bebcaa83baad05b8b2675129d98"},
+ {file = "fonttools-4.57.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:84fd56c78d431606332a0627c16e2a63d243d0d8b05521257d77c6529abe14d8"},
+ {file = "fonttools-4.57.0-cp312-cp312-win32.whl", hash = "sha256:f4376819c1c778d59e0a31db5dc6ede854e9edf28bbfa5b756604727f7f800ac"},
+ {file = "fonttools-4.57.0-cp312-cp312-win_amd64.whl", hash = "sha256:57e30241524879ea10cdf79c737037221f77cc126a8cdc8ff2c94d4a522504b9"},
+ {file = "fonttools-4.57.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:408ce299696012d503b714778d89aa476f032414ae57e57b42e4b92363e0b8ef"},
+ {file = "fonttools-4.57.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bbceffc80aa02d9e8b99f2a7491ed8c4a783b2fc4020119dc405ca14fb5c758c"},
+ {file = "fonttools-4.57.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f022601f3ee9e1f6658ed6d184ce27fa5216cee5b82d279e0f0bde5deebece72"},
+ {file = "fonttools-4.57.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4dea5893b58d4637ffa925536462ba626f8a1b9ffbe2f5c272cdf2c6ebadb817"},
+ {file = "fonttools-4.57.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:dff02c5c8423a657c550b48231d0a48d7e2b2e131088e55983cfe74ccc2c7cc9"},
+ {file = "fonttools-4.57.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:767604f244dc17c68d3e2dbf98e038d11a18abc078f2d0f84b6c24571d9c0b13"},
+ {file = "fonttools-4.57.0-cp313-cp313-win32.whl", hash = "sha256:8e2e12d0d862f43d51e5afb8b9751c77e6bec7d2dc00aad80641364e9df5b199"},
+ {file = "fonttools-4.57.0-cp313-cp313-win_amd64.whl", hash = "sha256:f1d6bc9c23356908db712d282acb3eebd4ae5ec6d8b696aa40342b1d84f8e9e3"},
+ {file = "fonttools-4.57.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:9d57b4e23ebbe985125d3f0cabbf286efa191ab60bbadb9326091050d88e8213"},
+ {file = "fonttools-4.57.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:579ba873d7f2a96f78b2e11028f7472146ae181cae0e4d814a37a09e93d5c5cc"},
+ {file = "fonttools-4.57.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e3e1ec10c29bae0ea826b61f265ec5c858c5ba2ce2e69a71a62f285cf8e4595"},
+ {file = "fonttools-4.57.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1968f2a2003c97c4ce6308dc2498d5fd4364ad309900930aa5a503c9851aec8"},
+ {file = "fonttools-4.57.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:aff40f8ac6763d05c2c8f6d240c6dac4bb92640a86d9b0c3f3fff4404f34095c"},
+ {file = "fonttools-4.57.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:d07f1b64008e39fceae7aa99e38df8385d7d24a474a8c9872645c4397b674481"},
+ {file = "fonttools-4.57.0-cp38-cp38-win32.whl", hash = "sha256:51d8482e96b28fb28aa8e50b5706f3cee06de85cbe2dce80dbd1917ae22ec5a6"},
+ {file = "fonttools-4.57.0-cp38-cp38-win_amd64.whl", hash = "sha256:03290e818782e7edb159474144fca11e36a8ed6663d1fcbd5268eb550594fd8e"},
+ {file = "fonttools-4.57.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7339e6a3283e4b0ade99cade51e97cde3d54cd6d1c3744459e886b66d630c8b3"},
+ {file = "fonttools-4.57.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:05efceb2cb5f6ec92a4180fcb7a64aa8d3385fd49cfbbe459350229d1974f0b1"},
+ {file = "fonttools-4.57.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a97bb05eb24637714a04dee85bdf0ad1941df64fe3b802ee4ac1c284a5f97b7c"},
+ {file = "fonttools-4.57.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:541cb48191a19ceb1a2a4b90c1fcebd22a1ff7491010d3cf840dd3a68aebd654"},
+ {file = "fonttools-4.57.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:cdef9a056c222d0479a1fdb721430f9efd68268014c54e8166133d2643cb05d9"},
+ {file = "fonttools-4.57.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3cf97236b192a50a4bf200dc5ba405aa78d4f537a2c6e4c624bb60466d5b03bd"},
+ {file = "fonttools-4.57.0-cp39-cp39-win32.whl", hash = "sha256:e952c684274a7714b3160f57ec1d78309f955c6335c04433f07d36c5eb27b1f9"},
+ {file = "fonttools-4.57.0-cp39-cp39-win_amd64.whl", hash = "sha256:a2a722c0e4bfd9966a11ff55c895c817158fcce1b2b6700205a376403b546ad9"},
+ {file = "fonttools-4.57.0-py3-none-any.whl", hash = "sha256:3122c604a675513c68bd24c6a8f9091f1c2376d18e8f5fe5a101746c81b3e98f"},
+ {file = "fonttools-4.57.0.tar.gz", hash = "sha256:727ece10e065be2f9dd239d15dd5d60a66e17eac11aea47d447f9f03fdbc42de"},
+]
+
+[package.extras]
+all = ["brotli (>=1.0.1) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\"", "fs (>=2.2.0,<3)", "lxml (>=4.0)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres ; platform_python_implementation == \"PyPy\"", "pycairo", "scipy ; platform_python_implementation != \"PyPy\"", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0) ; python_version <= \"3.12\"", "xattr ; sys_platform == \"darwin\"", "zopfli (>=0.1.4)"]
+graphite = ["lz4 (>=1.7.4.2)"]
+interpolatable = ["munkres ; platform_python_implementation == \"PyPy\"", "pycairo", "scipy ; platform_python_implementation != \"PyPy\""]
+lxml = ["lxml (>=4.0)"]
+pathops = ["skia-pathops (>=0.5.0)"]
+plot = ["matplotlib"]
+repacker = ["uharfbuzz (>=0.23.0)"]
+symfont = ["sympy"]
+type1 = ["xattr ; sys_platform == \"darwin\""]
+ufo = ["fs (>=2.2.0,<3)"]
+unicode = ["unicodedata2 (>=15.1.0) ; python_version <= \"3.12\""]
+woff = ["brotli (>=1.0.1) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\"", "zopfli (>=0.1.4)"]
+
+[[package]]
+name = "formulaic"
+version = "1.1.1"
+description = "An implementation of Wilkinson formulas."
+optional = false
+python-versions = ">=3.7.2"
+groups = ["main"]
+files = [
+ {file = "formulaic-1.1.1-py3-none-any.whl", hash = "sha256:bbb7e38f99e4bcdc62cb0a6a818ad33b370b4e98e9e4f0b276561448482c8268"},
+ {file = "formulaic-1.1.1.tar.gz", hash = "sha256:ddf80e4bef976dd99698aa27512015276c7b86c314b601ae6fd360c7741b7231"},
+]
+
+[package.dependencies]
+interface-meta = ">=1.2.0"
+numpy = ">=1.16.5"
+pandas = ">=1.0"
+scipy = ">=1.6"
+typing-extensions = ">=4.2.0"
+wrapt = {version = ">=1.0", markers = "python_version < \"3.13\""}
+
+[package.extras]
+arrow = ["pyarrow (>=1)"]
+calculus = ["sympy (>=1.3,!=1.10)"]
+
+[[package]]
+name = "fqdn"
+version = "1.5.1"
+description = "Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers"
+optional = false
+python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4"
+groups = ["dev"]
+files = [
+ {file = "fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014"},
+ {file = "fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f"},
+]
+
+[[package]]
+name = "frozenlist"
+version = "1.5.0"
+description = "A list-like structure which implements collections.abc.MutableSequence"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"},
+ {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"},
+ {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"},
+ {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"},
+ {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"},
+ {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"},
+ {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"},
+ {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"},
+ {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"},
+ {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"},
+ {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"},
+ {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"},
+ {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"},
+ {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"},
+ {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"},
+ {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"},
+ {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"},
+ {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"},
+ {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"},
+ {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"},
+ {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"},
+ {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"},
+ {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"},
+ {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"},
+ {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"},
+ {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"},
+ {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"},
+ {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"},
+ {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"},
+ {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"},
+ {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"},
+ {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"},
+ {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"},
+ {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"},
+ {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"},
+ {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"},
+ {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"},
+ {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"},
+ {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"},
+ {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"},
+ {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"},
+ {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"},
+ {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"},
+ {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"},
+ {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"},
+ {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"},
+ {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"},
+ {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"},
+ {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"},
+ {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"},
+ {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"},
+ {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"},
+ {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"},
+ {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"},
+ {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"},
+ {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"},
+ {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"},
+ {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"},
+ {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"},
+ {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"},
+ {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"},
+ {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"},
+ {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"},
+ {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"},
+ {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"},
+ {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"},
+ {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"},
+ {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"},
+ {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"},
+ {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"},
+ {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"},
+ {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"},
+ {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"},
+ {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"},
+ {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"},
+ {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"},
+ {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"},
+ {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"},
+ {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"},
+ {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"},
+ {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"},
+ {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"},
+ {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"},
+ {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"},
+ {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"},
+ {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"},
+ {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"},
+ {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"},
+ {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"},
+ {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"},
+ {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"},
+ {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"},
+]
+
+[[package]]
+name = "fsspec"
+version = "2025.3.2"
+description = "File-system specification"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "fsspec-2025.3.2-py3-none-any.whl", hash = "sha256:2daf8dc3d1dfa65b6aa37748d112773a7a08416f6c70d96b264c96476ecaf711"},
+ {file = "fsspec-2025.3.2.tar.gz", hash = "sha256:e52c77ef398680bbd6a98c0e628fbc469491282981209907bbc8aea76a04fdc6"},
+]
+
+[package.extras]
+abfs = ["adlfs"]
+adl = ["adlfs"]
+arrow = ["pyarrow (>=1)"]
+dask = ["dask", "distributed"]
+dev = ["pre-commit", "ruff"]
+doc = ["numpydoc", "sphinx", "sphinx-design", "sphinx-rtd-theme", "yarl"]
+dropbox = ["dropbox", "dropboxdrivefs", "requests"]
+full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "dask", "distributed", "dropbox", "dropboxdrivefs", "fusepy", "gcsfs", "libarchive-c", "ocifs", "panel", "paramiko", "pyarrow (>=1)", "pygit2", "requests", "s3fs", "smbprotocol", "tqdm"]
+fuse = ["fusepy"]
+gcs = ["gcsfs"]
+git = ["pygit2"]
+github = ["requests"]
+gs = ["gcsfs"]
+gui = ["panel"]
+hdfs = ["pyarrow (>=1)"]
+http = ["aiohttp (!=4.0.0a0,!=4.0.0a1)"]
+libarchive = ["libarchive-c"]
+oci = ["ocifs"]
+s3 = ["s3fs"]
+sftp = ["paramiko"]
+smb = ["smbprotocol"]
+ssh = ["paramiko"]
+test = ["aiohttp (!=4.0.0a0,!=4.0.0a1)", "numpy", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "requests"]
+test-downstream = ["aiobotocore (>=2.5.4,<3.0.0)", "dask[dataframe,test]", "moto[server] (>4,<5)", "pytest-timeout", "xarray"]
+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 = "future"
+version = "1.0.0"
+description = "Clean single-source support for Python 3 and 2"
+optional = false
+python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
+groups = ["main"]
+files = [
+ {file = "future-1.0.0-py3-none-any.whl", hash = "sha256:929292d34f5872e70396626ef385ec22355a1fae8ad29e1a734c3e43f9fbc216"},
+ {file = "future-1.0.0.tar.gz", hash = "sha256:bd2968309307861edae1458a4f8a4f3598c03be43b97521076aebf5d94c07b05"},
+]
+
+[[package]]
+name = "gevent"
+version = "24.11.1"
+description = "Coroutine-based network library"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "gevent-24.11.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:92fe5dfee4e671c74ffaa431fd7ffd0ebb4b339363d24d0d944de532409b935e"},
+ {file = "gevent-24.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7bfcfe08d038e1fa6de458891bca65c1ada6d145474274285822896a858c870"},
+ {file = "gevent-24.11.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7398c629d43b1b6fd785db8ebd46c0a353880a6fab03d1cf9b6788e7240ee32e"},
+ {file = "gevent-24.11.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d7886b63ebfb865178ab28784accd32f287d5349b3ed71094c86e4d3ca738af5"},
+ {file = "gevent-24.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9ca80711e6553880974898d99357fb649e062f9058418a92120ca06c18c3c59"},
+ {file = "gevent-24.11.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e24181d172f50097ac8fc272c8c5b030149b630df02d1c639ee9f878a470ba2b"},
+ {file = "gevent-24.11.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1d4fadc319b13ef0a3c44d2792f7918cf1bca27cacd4d41431c22e6b46668026"},
+ {file = "gevent-24.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:3d882faa24f347f761f934786dde6c73aa6c9187ee710189f12dcc3a63ed4a50"},
+ {file = "gevent-24.11.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:351d1c0e4ef2b618ace74c91b9b28b3eaa0dd45141878a964e03c7873af09f62"},
+ {file = "gevent-24.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5efe72e99b7243e222ba0c2c2ce9618d7d36644c166d63373af239da1036bab"},
+ {file = "gevent-24.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d3b249e4e1f40c598ab8393fc01ae6a3b4d51fc1adae56d9ba5b315f6b2d758"},
+ {file = "gevent-24.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81d918e952954675f93fb39001da02113ec4d5f4921bf5a0cc29719af6824e5d"},
+ {file = "gevent-24.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9c935b83d40c748b6421625465b7308d87c7b3717275acd587eef2bd1c39546"},
+ {file = "gevent-24.11.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff96c5739834c9a594db0e12bf59cb3fa0e5102fc7b893972118a3166733d61c"},
+ {file = "gevent-24.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d6c0a065e31ef04658f799215dddae8752d636de2bed61365c358f9c91e7af61"},
+ {file = "gevent-24.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:97e2f3999a5c0656f42065d02939d64fffaf55861f7d62b0107a08f52c984897"},
+ {file = "gevent-24.11.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:a3d75fa387b69c751a3d7c5c3ce7092a171555126e136c1d21ecd8b50c7a6e46"},
+ {file = "gevent-24.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:beede1d1cff0c6fafae3ab58a0c470d7526196ef4cd6cc18e7769f207f2ea4eb"},
+ {file = "gevent-24.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:85329d556aaedced90a993226d7d1186a539c843100d393f2349b28c55131c85"},
+ {file = "gevent-24.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:816b3883fa6842c1cf9d2786722014a0fd31b6312cca1f749890b9803000bad6"},
+ {file = "gevent-24.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b24d800328c39456534e3bc3e1684a28747729082684634789c2f5a8febe7671"},
+ {file = "gevent-24.11.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a5f1701ce0f7832f333dd2faf624484cbac99e60656bfbb72504decd42970f0f"},
+ {file = "gevent-24.11.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:d740206e69dfdfdcd34510c20adcb9777ce2cc18973b3441ab9767cd8948ca8a"},
+ {file = "gevent-24.11.1-cp312-cp312-win_amd64.whl", hash = "sha256:68bee86b6e1c041a187347ef84cf03a792f0b6c7238378bf6ba4118af11feaae"},
+ {file = "gevent-24.11.1-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:d618e118fdb7af1d6c1a96597a5cd6ac84a9f3732b5be8515c6a66e098d498b6"},
+ {file = "gevent-24.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2142704c2adce9cd92f6600f371afb2860a446bfd0be5bd86cca5b3e12130766"},
+ {file = "gevent-24.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92e0d7759de2450a501effd99374256b26359e801b2d8bf3eedd3751973e87f5"},
+ {file = "gevent-24.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ca845138965c8c56d1550499d6b923eb1a2331acfa9e13b817ad8305dde83d11"},
+ {file = "gevent-24.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:356b73d52a227d3313f8f828025b665deada57a43d02b1cf54e5d39028dbcf8d"},
+ {file = "gevent-24.11.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:58851f23c4bdb70390f10fc020c973ffcf409eb1664086792c8b1e20f25eef43"},
+ {file = "gevent-24.11.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:1ea50009ecb7f1327347c37e9eb6561bdbc7de290769ee1404107b9a9cba7cf1"},
+ {file = "gevent-24.11.1-cp313-cp313-win_amd64.whl", hash = "sha256:ec68e270543ecd532c4c1d70fca020f90aa5486ad49c4f3b8b2e64a66f5c9274"},
+ {file = "gevent-24.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9347690f4e53de2c4af74e62d6fabc940b6d4a6cad555b5a379f61e7d3f2a8e"},
+ {file = "gevent-24.11.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8619d5c888cb7aebf9aec6703e410620ef5ad48cdc2d813dd606f8aa7ace675f"},
+ {file = "gevent-24.11.1-cp39-cp39-win32.whl", hash = "sha256:c6b775381f805ff5faf250e3a07c0819529571d19bb2a9d474bee8c3f90d66af"},
+ {file = "gevent-24.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:1c3443b0ed23dcb7c36a748d42587168672953d368f2956b17fad36d43b58836"},
+ {file = "gevent-24.11.1-pp310-pypy310_pp73-macosx_11_0_universal2.whl", hash = "sha256:f43f47e702d0c8e1b8b997c00f1601486f9f976f84ab704f8f11536e3fa144c9"},
+ {file = "gevent-24.11.1.tar.gz", hash = "sha256:8bd1419114e9e4a3ed33a5bad766afff9a3cf765cb440a582a1b3a9bc80c1aca"},
+]
+
+[package.dependencies]
+cffi = {version = ">=1.17.1", markers = "platform_python_implementation == \"CPython\" and sys_platform == \"win32\""}
+greenlet = {version = ">=3.1.1", markers = "platform_python_implementation == \"CPython\""}
+"zope.event" = "*"
+"zope.interface" = "*"
+
+[package.extras]
+dnspython = ["dnspython (>=1.16.0,<2.0) ; python_version < \"3.10\"", "idna ; python_version < \"3.10\""]
+docs = ["furo", "repoze.sphinx.autointerface", "sphinx", "sphinxcontrib-programoutput", "zope.schema"]
+monitor = ["psutil (>=5.7.0) ; sys_platform != \"win32\" or platform_python_implementation == \"CPython\""]
+recommended = ["cffi (>=1.17.1) ; platform_python_implementation == \"CPython\"", "dnspython (>=1.16.0,<2.0) ; python_version < \"3.10\"", "idna ; python_version < \"3.10\"", "psutil (>=5.7.0) ; sys_platform != \"win32\" or platform_python_implementation == \"CPython\""]
+test = ["cffi (>=1.17.1) ; platform_python_implementation == \"CPython\"", "coverage (>=5.0) ; sys_platform != \"win32\"", "dnspython (>=1.16.0,<2.0) ; python_version < \"3.10\"", "idna ; python_version < \"3.10\"", "objgraph", "psutil (>=5.7.0) ; sys_platform != \"win32\" or platform_python_implementation == \"CPython\"", "requests"]
+
+[[package]]
+name = "graphlib-backport"
+version = "1.1.0"
+description = "Backport of the Python 3.9 graphlib module for Python 3.6+"
+optional = false
+python-versions = ">=3.6,<4.0"
+groups = ["main"]
+files = [
+ {file = "graphlib_backport-1.1.0-py3-none-any.whl", hash = "sha256:eccacf9f2126cdf89ce32a6018c88e1ecd3e4898a07568add6e1907a439055ba"},
+ {file = "graphlib_backport-1.1.0.tar.gz", hash = "sha256:00a7888b21e5393064a133209cb5d3b3ef0a2096cf023914c9d778dff5644125"},
+]
+
+[[package]]
+name = "graphviz"
+version = "0.20.3"
+description = "Simple Python interface for Graphviz"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "graphviz-0.20.3-py3-none-any.whl", hash = "sha256:81f848f2904515d8cd359cc611faba817598d2feaac4027b266aa3eda7b3dde5"},
+ {file = "graphviz-0.20.3.zip", hash = "sha256:09d6bc81e6a9fa392e7ba52135a9d49f1ed62526f96499325930e87ca1b5925d"},
+]
+
+[package.extras]
+dev = ["flake8", "pep8-naming", "tox (>=3)", "twine", "wheel"]
+docs = ["sphinx (>=5,<7)", "sphinx-autodoc-typehints", "sphinx-rtd-theme"]
+test = ["coverage", "pytest (>=7,<8.1)", "pytest-cov", "pytest-mock (>=3)"]
+
+[[package]]
+name = "greenlet"
+version = "3.1.1"
+description = "Lightweight in-process concurrent programming"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "greenlet-3.1.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:0bbae94a29c9e5c7e4a2b7f0aae5c17e8e90acbfd3bf6270eeba60c39fce3563"},
+ {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fde093fb93f35ca72a556cf72c92ea3ebfda3d79fc35bb19fbe685853869a83"},
+ {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36b89d13c49216cadb828db8dfa6ce86bbbc476a82d3a6c397f0efae0525bdd0"},
+ {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:94b6150a85e1b33b40b1464a3f9988dcc5251d6ed06842abff82e42632fac120"},
+ {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93147c513fac16385d1036b7e5b102c7fbbdb163d556b791f0f11eada7ba65dc"},
+ {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:da7a9bff22ce038e19bf62c4dd1ec8391062878710ded0a845bcf47cc0200617"},
+ {file = "greenlet-3.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b2795058c23988728eec1f36a4e5e4ebad22f8320c85f3587b539b9ac84128d7"},
+ {file = "greenlet-3.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ed10eac5830befbdd0c32f83e8aa6288361597550ba669b04c48f0f9a2c843c6"},
+ {file = "greenlet-3.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:77c386de38a60d1dfb8e55b8c1101d68c79dfdd25c7095d51fec2dd800892b80"},
+ {file = "greenlet-3.1.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:e4d333e558953648ca09d64f13e6d8f0523fa705f51cae3f03b5983489958c70"},
+ {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09fc016b73c94e98e29af67ab7b9a879c307c6731a2c9da0db5a7d9b7edd1159"},
+ {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d5e975ca70269d66d17dd995dafc06f1b06e8cb1ec1e9ed54c1d1e4a7c4cf26e"},
+ {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2813dc3de8c1ee3f924e4d4227999285fd335d1bcc0d2be6dc3f1f6a318ec1"},
+ {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e347b3bfcf985a05e8c0b7d462ba6f15b1ee1c909e2dcad795e49e91b152c383"},
+ {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e8f8c9cb53cdac7ba9793c276acd90168f416b9ce36799b9b885790f8ad6c0a"},
+ {file = "greenlet-3.1.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62ee94988d6b4722ce0028644418d93a52429e977d742ca2ccbe1c4f4a792511"},
+ {file = "greenlet-3.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1776fd7f989fc6b8d8c8cb8da1f6b82c5814957264d1f6cf818d475ec2bf6395"},
+ {file = "greenlet-3.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:48ca08c771c268a768087b408658e216133aecd835c0ded47ce955381105ba39"},
+ {file = "greenlet-3.1.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:4afe7ea89de619adc868e087b4d2359282058479d7cfb94970adf4b55284574d"},
+ {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f406b22b7c9a9b4f8aa9d2ab13d6ae0ac3e85c9a809bd590ad53fed2bf70dc79"},
+ {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c3a701fe5a9695b238503ce5bbe8218e03c3bcccf7e204e455e7462d770268aa"},
+ {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2846930c65b47d70b9d178e89c7e1a69c95c1f68ea5aa0a58646b7a96df12441"},
+ {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99cfaa2110534e2cf3ba31a7abcac9d328d1d9f1b95beede58294a60348fba36"},
+ {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1443279c19fca463fc33e65ef2a935a5b09bb90f978beab37729e1c3c6c25fe9"},
+ {file = "greenlet-3.1.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b7cede291382a78f7bb5f04a529cb18e068dd29e0fb27376074b6d0317bf4dd0"},
+ {file = "greenlet-3.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:23f20bb60ae298d7d8656c6ec6db134bca379ecefadb0b19ce6f19d1f232a942"},
+ {file = "greenlet-3.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:7124e16b4c55d417577c2077be379514321916d5790fa287c9ed6f23bd2ffd01"},
+ {file = "greenlet-3.1.1-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:05175c27cb459dcfc05d026c4232f9de8913ed006d42713cb8a5137bd49375f1"},
+ {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:935e943ec47c4afab8965954bf49bfa639c05d4ccf9ef6e924188f762145c0ff"},
+ {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:667a9706c970cb552ede35aee17339a18e8f2a87a51fba2ed39ceeeb1004798a"},
+ {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b8a678974d1f3aa55f6cc34dc480169d58f2e6d8958895d68845fa4ab566509e"},
+ {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efc0f674aa41b92da8c49e0346318c6075d734994c3c4e4430b1c3f853e498e4"},
+ {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0153404a4bb921f0ff1abeb5ce8a5131da56b953eda6e14b88dc6bbc04d2049e"},
+ {file = "greenlet-3.1.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:275f72decf9932639c1c6dd1013a1bc266438eb32710016a1c742df5da6e60a1"},
+ {file = "greenlet-3.1.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c4aab7f6381f38a4b42f269057aee279ab0fc7bf2e929e3d4abfae97b682a12c"},
+ {file = "greenlet-3.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:b42703b1cf69f2aa1df7d1030b9d77d3e584a70755674d60e710f0af570f3761"},
+ {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1695e76146579f8c06c1509c7ce4dfe0706f49c6831a817ac04eebb2fd02011"},
+ {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7876452af029456b3f3549b696bb36a06db7c90747740c5302f74a9e9fa14b13"},
+ {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4ead44c85f8ab905852d3de8d86f6f8baf77109f9da589cb4fa142bd3b57b475"},
+ {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8320f64b777d00dd7ccdade271eaf0cad6636343293a25074cc5566160e4de7b"},
+ {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6510bf84a6b643dabba74d3049ead221257603a253d0a9873f55f6a59a65f822"},
+ {file = "greenlet-3.1.1-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:04b013dc07c96f83134b1e99888e7a79979f1a247e2a9f59697fa14b5862ed01"},
+ {file = "greenlet-3.1.1-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:411f015496fec93c1c8cd4e5238da364e1da7a124bcb293f085bf2860c32c6f6"},
+ {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47da355d8687fd65240c364c90a31569a133b7b60de111c255ef5b606f2ae291"},
+ {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98884ecf2ffb7d7fe6bd517e8eb99d31ff7855a840fa6d0d63cd07c037f6a981"},
+ {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1d4aeb8891338e60d1ab6127af1fe45def5259def8094b9c7e34690c8858803"},
+ {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db32b5348615a04b82240cc67983cb315309e88d444a288934ee6ceaebcad6cc"},
+ {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dcc62f31eae24de7f8dce72134c8651c58000d3b1868e01392baea7c32c247de"},
+ {file = "greenlet-3.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1d3755bcb2e02de341c55b4fca7a745a24a9e7212ac953f6b3a48d117d7257aa"},
+ {file = "greenlet-3.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:b8da394b34370874b4572676f36acabac172602abf054cbc4ac910219f3340af"},
+ {file = "greenlet-3.1.1-cp37-cp37m-win32.whl", hash = "sha256:a0dfc6c143b519113354e780a50381508139b07d2177cb6ad6a08278ec655798"},
+ {file = "greenlet-3.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:54558ea205654b50c438029505def3834e80f0869a70fb15b871c29b4575ddef"},
+ {file = "greenlet-3.1.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:346bed03fe47414091be4ad44786d1bd8bef0c3fcad6ed3dee074a032ab408a9"},
+ {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dfc59d69fc48664bc693842bd57acfdd490acafda1ab52c7836e3fc75c90a111"},
+ {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d21e10da6ec19b457b82636209cbe2331ff4306b54d06fa04b7c138ba18c8a81"},
+ {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37b9de5a96111fc15418819ab4c4432e4f3c2ede61e660b1e33971eba26ef9ba"},
+ {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ef9ea3f137e5711f0dbe5f9263e8c009b7069d8a1acea822bd5e9dae0ae49c8"},
+ {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:85f3ff71e2e60bd4b4932a043fbbe0f499e263c628390b285cb599154a3b03b1"},
+ {file = "greenlet-3.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:95ffcf719966dd7c453f908e208e14cde192e09fde6c7186c8f1896ef778d8cd"},
+ {file = "greenlet-3.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:03a088b9de532cbfe2ba2034b2b85e82df37874681e8c470d6fb2f8c04d7e4b7"},
+ {file = "greenlet-3.1.1-cp38-cp38-win32.whl", hash = "sha256:8b8b36671f10ba80e159378df9c4f15c14098c4fd73a36b9ad715f057272fbef"},
+ {file = "greenlet-3.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:7017b2be767b9d43cc31416aba48aab0d2309ee31b4dbf10a1d38fb7972bdf9d"},
+ {file = "greenlet-3.1.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:396979749bd95f018296af156201d6211240e7a23090f50a8d5d18c370084dc3"},
+ {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca9d0ff5ad43e785350894d97e13633a66e2b50000e8a183a50a88d834752d42"},
+ {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f6ff3b14f2df4c41660a7dec01045a045653998784bf8cfcb5a525bdffffbc8f"},
+ {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:94ebba31df2aa506d7b14866fed00ac141a867e63143fe5bca82a8e503b36437"},
+ {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73aaad12ac0ff500f62cebed98d8789198ea0e6f233421059fa68a5aa7220145"},
+ {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:63e4844797b975b9af3a3fb8f7866ff08775f5426925e1e0bbcfe7932059a12c"},
+ {file = "greenlet-3.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7939aa3ca7d2a1593596e7ac6d59391ff30281ef280d8632fa03d81f7c5f955e"},
+ {file = "greenlet-3.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d0028e725ee18175c6e422797c407874da24381ce0690d6b9396c204c7f7276e"},
+ {file = "greenlet-3.1.1-cp39-cp39-win32.whl", hash = "sha256:5e06afd14cbaf9e00899fae69b24a32f2196c19de08fcb9f4779dd4f004e5e7c"},
+ {file = "greenlet-3.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:3319aa75e0e0639bc15ff54ca327e8dc7a6fe404003496e3c6925cd3142e0e22"},
+ {file = "greenlet-3.1.1.tar.gz", hash = "sha256:4ce3ac6cdb6adf7946475d7ef31777c26d94bccc377e070a7986bd2d5c515467"},
+]
+
+[package.extras]
+docs = ["Sphinx", "furo"]
+test = ["objgraph", "psutil"]
+
+[[package]]
+name = "grpcio"
+version = "1.71.0"
+description = "HTTP/2-based RPC framework"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "grpcio-1.71.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:c200cb6f2393468142eb50ab19613229dcc7829b5ccee8b658a36005f6669fdd"},
+ {file = "grpcio-1.71.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:b2266862c5ad664a380fbbcdbdb8289d71464c42a8c29053820ee78ba0119e5d"},
+ {file = "grpcio-1.71.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:0ab8b2864396663a5b0b0d6d79495657ae85fa37dcb6498a2669d067c65c11ea"},
+ {file = "grpcio-1.71.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c30f393f9d5ff00a71bb56de4aa75b8fe91b161aeb61d39528db6b768d7eac69"},
+ {file = "grpcio-1.71.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f250ff44843d9a0615e350c77f890082102a0318d66a99540f54769c8766ab73"},
+ {file = "grpcio-1.71.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e6d8de076528f7c43a2f576bc311799f89d795aa6c9b637377cc2b1616473804"},
+ {file = "grpcio-1.71.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:9b91879d6da1605811ebc60d21ab6a7e4bae6c35f6b63a061d61eb818c8168f6"},
+ {file = "grpcio-1.71.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f71574afdf944e6652203cd1badcda195b2a27d9c83e6d88dc1ce3cfb73b31a5"},
+ {file = "grpcio-1.71.0-cp310-cp310-win32.whl", hash = "sha256:8997d6785e93308f277884ee6899ba63baafa0dfb4729748200fcc537858a509"},
+ {file = "grpcio-1.71.0-cp310-cp310-win_amd64.whl", hash = "sha256:7d6ac9481d9d0d129224f6d5934d5832c4b1cddb96b59e7eba8416868909786a"},
+ {file = "grpcio-1.71.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:d6aa986318c36508dc1d5001a3ff169a15b99b9f96ef5e98e13522c506b37eef"},
+ {file = "grpcio-1.71.0-cp311-cp311-macosx_10_14_universal2.whl", hash = "sha256:d2c170247315f2d7e5798a22358e982ad6eeb68fa20cf7a820bb74c11f0736e7"},
+ {file = "grpcio-1.71.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:e6f83a583ed0a5b08c5bc7a3fe860bb3c2eac1f03f1f63e0bc2091325605d2b7"},
+ {file = "grpcio-1.71.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4be74ddeeb92cc87190e0e376dbc8fc7736dbb6d3d454f2fa1f5be1dee26b9d7"},
+ {file = "grpcio-1.71.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4dd0dfbe4d5eb1fcfec9490ca13f82b089a309dc3678e2edabc144051270a66e"},
+ {file = "grpcio-1.71.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a2242d6950dc892afdf9e951ed7ff89473aaf744b7d5727ad56bdaace363722b"},
+ {file = "grpcio-1.71.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0fa05ee31a20456b13ae49ad2e5d585265f71dd19fbd9ef983c28f926d45d0a7"},
+ {file = "grpcio-1.71.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3d081e859fb1ebe176de33fc3adb26c7d46b8812f906042705346b314bde32c3"},
+ {file = "grpcio-1.71.0-cp311-cp311-win32.whl", hash = "sha256:d6de81c9c00c8a23047136b11794b3584cdc1460ed7cbc10eada50614baa1444"},
+ {file = "grpcio-1.71.0-cp311-cp311-win_amd64.whl", hash = "sha256:24e867651fc67717b6f896d5f0cac0ec863a8b5fb7d6441c2ab428f52c651c6b"},
+ {file = "grpcio-1.71.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:0ff35c8d807c1c7531d3002be03221ff9ae15712b53ab46e2a0b4bb271f38537"},
+ {file = "grpcio-1.71.0-cp312-cp312-macosx_10_14_universal2.whl", hash = "sha256:b78a99cd1ece4be92ab7c07765a0b038194ded2e0a26fd654591ee136088d8d7"},
+ {file = "grpcio-1.71.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:dc1a1231ed23caac1de9f943d031f1bc38d0f69d2a3b243ea0d664fc1fbd7fec"},
+ {file = "grpcio-1.71.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e6beeea5566092c5e3c4896c6d1d307fb46b1d4bdf3e70c8340b190a69198594"},
+ {file = "grpcio-1.71.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5170929109450a2c031cfe87d6716f2fae39695ad5335d9106ae88cc32dc84c"},
+ {file = "grpcio-1.71.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:5b08d03ace7aca7b2fadd4baf291139b4a5f058805a8327bfe9aece7253b6d67"},
+ {file = "grpcio-1.71.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:f903017db76bf9cc2b2d8bdd37bf04b505bbccad6be8a81e1542206875d0e9db"},
+ {file = "grpcio-1.71.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:469f42a0b410883185eab4689060a20488a1a0a00f8bbb3cbc1061197b4c5a79"},
+ {file = "grpcio-1.71.0-cp312-cp312-win32.whl", hash = "sha256:ad9f30838550695b5eb302add33f21f7301b882937460dd24f24b3cc5a95067a"},
+ {file = "grpcio-1.71.0-cp312-cp312-win_amd64.whl", hash = "sha256:652350609332de6dac4ece254e5d7e1ff834e203d6afb769601f286886f6f3a8"},
+ {file = "grpcio-1.71.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:cebc1b34ba40a312ab480ccdb396ff3c529377a2fce72c45a741f7215bfe8379"},
+ {file = "grpcio-1.71.0-cp313-cp313-macosx_10_14_universal2.whl", hash = "sha256:85da336e3649a3d2171e82f696b5cad2c6231fdd5bad52616476235681bee5b3"},
+ {file = "grpcio-1.71.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:f9a412f55bb6e8f3bb000e020dbc1e709627dcb3a56f6431fa7076b4c1aab0db"},
+ {file = "grpcio-1.71.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:47be9584729534660416f6d2a3108aaeac1122f6b5bdbf9fd823e11fe6fbaa29"},
+ {file = "grpcio-1.71.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7c9c80ac6091c916db81131d50926a93ab162a7e97e4428ffc186b6e80d6dda4"},
+ {file = "grpcio-1.71.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:789d5e2a3a15419374b7b45cd680b1e83bbc1e52b9086e49308e2c0b5bbae6e3"},
+ {file = "grpcio-1.71.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:1be857615e26a86d7363e8a163fade914595c81fec962b3d514a4b1e8760467b"},
+ {file = "grpcio-1.71.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:a76d39b5fafd79ed604c4be0a869ec3581a172a707e2a8d7a4858cb05a5a7637"},
+ {file = "grpcio-1.71.0-cp313-cp313-win32.whl", hash = "sha256:74258dce215cb1995083daa17b379a1a5a87d275387b7ffe137f1d5131e2cfbb"},
+ {file = "grpcio-1.71.0-cp313-cp313-win_amd64.whl", hash = "sha256:22c3bc8d488c039a199f7a003a38cb7635db6656fa96437a8accde8322ce2366"},
+ {file = "grpcio-1.71.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:c6a0a28450c16809f94e0b5bfe52cabff63e7e4b97b44123ebf77f448534d07d"},
+ {file = "grpcio-1.71.0-cp39-cp39-macosx_10_14_universal2.whl", hash = "sha256:a371e6b6a5379d3692cc4ea1cb92754d2a47bdddeee755d3203d1f84ae08e03e"},
+ {file = "grpcio-1.71.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:39983a9245d37394fd59de71e88c4b295eb510a3555e0a847d9965088cdbd033"},
+ {file = "grpcio-1.71.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9182e0063112e55e74ee7584769ec5a0b4f18252c35787f48738627e23a62b97"},
+ {file = "grpcio-1.71.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693bc706c031aeb848849b9d1c6b63ae6bcc64057984bb91a542332b75aa4c3d"},
+ {file = "grpcio-1.71.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:20e8f653abd5ec606be69540f57289274c9ca503ed38388481e98fa396ed0b41"},
+ {file = "grpcio-1.71.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:8700a2a57771cc43ea295296330daaddc0d93c088f0a35cc969292b6db959bf3"},
+ {file = "grpcio-1.71.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d35a95f05a8a2cbe8e02be137740138b3b2ea5f80bd004444e4f9a1ffc511e32"},
+ {file = "grpcio-1.71.0-cp39-cp39-win32.whl", hash = "sha256:f9c30c464cb2ddfbc2ddf9400287701270fdc0f14be5f08a1e3939f1e749b455"},
+ {file = "grpcio-1.71.0-cp39-cp39-win_amd64.whl", hash = "sha256:63e41b91032f298b3e973b3fa4093cbbc620c875e2da7b93e249d4728b54559a"},
+ {file = "grpcio-1.71.0.tar.gz", hash = "sha256:2b85f7820475ad3edec209d3d89a7909ada16caab05d3f2e08a7e8ae3200a55c"},
+]
+
+[package.extras]
+protobuf = ["grpcio-tools (>=1.71.0)"]
+
+[[package]]
+name = "h11"
+version = "0.14.0"
+description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"},
+ {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"},
+]
+
+[[package]]
+name = "httpcore"
+version = "1.0.8"
+description = "A minimal low-level HTTP client."
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "httpcore-1.0.8-py3-none-any.whl", hash = "sha256:5254cf149bcb5f75e9d1b2b9f729ea4a4b883d1ad7379fc632b727cec23674be"},
+ {file = "httpcore-1.0.8.tar.gz", hash = "sha256:86e94505ed24ea06514883fd44d2bc02d90e77e7979c8eb71b90f41d364a1bad"},
+]
+
+[package.dependencies]
+certifi = "*"
+h11 = ">=0.13,<0.15"
+
+[package.extras]
+asyncio = ["anyio (>=4.0,<5.0)"]
+http2 = ["h2 (>=3,<5)"]
+socks = ["socksio (==1.*)"]
+trio = ["trio (>=0.22.0,<1.0)"]
+
+[[package]]
+name = "httpx"
+version = "0.28.1"
+description = "The next generation HTTP client."
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad"},
+ {file = "httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc"},
+]
+
+[package.dependencies]
+anyio = "*"
+certifi = "*"
+httpcore = "==1.*"
+idna = "*"
+
+[package.extras]
+brotli = ["brotli ; platform_python_implementation == \"CPython\"", "brotlicffi ; platform_python_implementation != \"CPython\""]
+cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"]
+http2 = ["h2 (>=3,<5)"]
+socks = ["socksio (==1.*)"]
+zstd = ["zstandard (>=0.18.0)"]
+
+[[package]]
+name = "hyperopt"
+version = "0.2.7"
+description = "Distributed Asynchronous Hyperparameter Optimization"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "hyperopt-0.2.7-py2.py3-none-any.whl", hash = "sha256:f3046d91fe4167dbf104365016596856b2524a609d22f047a066fc1ac796427c"},
+ {file = "hyperopt-0.2.7.tar.gz", hash = "sha256:1bf89ae58050bbd32c7307199046117feee245c2fd9ab6255c7308522b7ca149"},
+]
+
+[package.dependencies]
+cloudpickle = "*"
+future = "*"
+networkx = ">=2.2"
+numpy = "*"
+py4j = "*"
+scipy = "*"
+six = "*"
+tqdm = "*"
+
+[package.extras]
+atpe = ["lightgbm", "scikit-learn"]
+dev = ["black", "nose", "pre-commit", "pytest"]
+mongotrials = ["pymongo"]
+sparktrials = ["pyspark"]
+
+[[package]]
+name = "idna"
+version = "3.10"
+description = "Internationalized Domain Names in Applications (IDNA)"
+optional = false
+python-versions = ">=3.6"
+groups = ["main", "dev"]
+files = [
+ {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"},
+ {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"},
+]
+
+[package.extras]
+all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"]
+
+[[package]]
+name = "imageio"
+version = "2.37.0"
+description = "Library for reading and writing a wide range of image, video, scientific, and volumetric data formats."
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "imageio-2.37.0-py3-none-any.whl", hash = "sha256:11efa15b87bc7871b61590326b2d635439acc321cf7f8ce996f812543ce10eed"},
+ {file = "imageio-2.37.0.tar.gz", hash = "sha256:71b57b3669666272c818497aebba2b4c5f20d5b37c81720e5e1a56d59c492996"},
+]
+
+[package.dependencies]
+numpy = "*"
+pillow = ">=8.3.2"
+
+[package.extras]
+all-plugins = ["astropy", "av", "imageio-ffmpeg", "numpy (>2)", "pillow-heif", "psutil", "rawpy", "tifffile"]
+all-plugins-pypy = ["av", "imageio-ffmpeg", "pillow-heif", "psutil", "tifffile"]
+build = ["wheel"]
+dev = ["black", "flake8", "fsspec[github]", "pytest", "pytest-cov"]
+docs = ["numpydoc", "pydata-sphinx-theme", "sphinx (<6)"]
+ffmpeg = ["imageio-ffmpeg", "psutil"]
+fits = ["astropy"]
+full = ["astropy", "av", "black", "flake8", "fsspec[github]", "gdal", "imageio-ffmpeg", "itk", "numpy (>2)", "numpydoc", "pillow-heif", "psutil", "pydata-sphinx-theme", "pytest", "pytest-cov", "rawpy", "sphinx (<6)", "tifffile", "wheel"]
+gdal = ["gdal"]
+itk = ["itk"]
+linting = ["black", "flake8"]
+pillow-heif = ["pillow-heif"]
+pyav = ["av"]
+rawpy = ["numpy (>2)", "rawpy"]
+test = ["fsspec[github]", "pytest", "pytest-cov"]
+tifffile = ["tifffile"]
+
+[[package]]
+name = "imbalanced-learn"
+version = "0.12.4"
+description = "Toolbox for imbalanced dataset in machine learning."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "imbalanced-learn-0.12.4.tar.gz", hash = "sha256:8153ba385d296b07d97e0901a2624a86c06b48c94c2f92da3a5354827697b7a3"},
+ {file = "imbalanced_learn-0.12.4-py3-none-any.whl", hash = "sha256:d47fc599160d3ea882e712a3a6b02bdd353c1a6436d8d68d41b1922e6ee4a703"},
+]
+
+[package.dependencies]
+joblib = ">=1.1.1"
+numpy = ">=1.17.3"
+scikit-learn = ">=1.0.2"
+scipy = ">=1.5.0"
+threadpoolctl = ">=2.0.0"
+
+[package.extras]
+docs = ["keras (>=2.4.3)", "matplotlib (>=3.1.2)", "memory-profiler (>=0.57.0)", "numpydoc (>=1.5.0)", "pandas (>=1.0.5)", "pydata-sphinx-theme (>=0.13.3)", "seaborn (>=0.9.0)", "sphinx (>=6.0.0)", "sphinx-copybutton (>=0.5.2)", "sphinx-design (>=0.5.0)", "sphinx-gallery (>=0.13.0)", "sphinxcontrib-bibtex (>=2.4.1)", "tensorflow (>=2.4.3)"]
+examples = ["keras (>=2.4.3)", "matplotlib (>=3.1.2)", "pandas (>=1.0.5)", "seaborn (>=0.9.0)", "tensorflow (>=2.4.3)"]
+optional = ["keras (>=2.4.3)", "pandas (>=1.0.5)", "tensorflow (>=2.4.3)"]
+tests = ["black (>=23.3.0)", "flake8 (>=3.8.2)", "keras (>=2.4.3)", "mypy (>=1.3.0)", "pandas (>=1.0.5)", "pytest (>=5.0.1)", "pytest-cov (>=2.9.0)", "tensorflow (>=2.4.3)"]
+
+[[package]]
+name = "imblearn"
+version = "0.0"
+description = "Toolbox for imbalanced dataset in machine learning."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "imblearn-0.0-py2.py3-none-any.whl", hash = "sha256:d42c2d709d22c00d2b9a91e638d57240a8b79b4014122d92181fcd2549a2f79a"},
+ {file = "imblearn-0.0.tar.gz", hash = "sha256:d8fbb662919c1b16f438ad91a8256220e53bcf6815c9ad5502c518b798de34f2"},
+]
+
+[package.dependencies]
+imbalanced-learn = "*"
+
+[[package]]
+name = "importlib-metadata"
+version = "6.7.0"
+description = "Read metadata from Python packages"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "importlib_metadata-6.7.0-py3-none-any.whl", hash = "sha256:cb52082e659e97afc5dac71e79de97d8681de3aa07ff18578330904a9d18e5b5"},
+ {file = "importlib_metadata-6.7.0.tar.gz", hash = "sha256:1aaf550d4f73e5d6783e7acb77aec43d49da8017410afae93822cc9cca98c4d4"},
+]
+
+[package.dependencies]
+zipp = ">=0.5"
+
+[package.extras]
+docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
+perf = ["ipython"]
+testing = ["flufl.flake8", "importlib-resources (>=1.3) ; python_version < \"3.9\"", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7) ; platform_python_implementation != \"PyPy\"", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1) ; platform_python_implementation != \"PyPy\"", "pytest-perf (>=0.9.2)", "pytest-ruff"]
+
+[[package]]
+name = "importlib-resources"
+version = "6.5.2"
+description = "Read resources from Python packages"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+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"},
+]
+
+[package.extras]
+check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
+cover = ["pytest-cov"]
+doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
+enabler = ["pytest-enabler (>=2.2)"]
+test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "zipp (>=3.17)"]
+type = ["pytest-mypy"]
+
+[[package]]
+name = "iniconfig"
+version = "2.1.0"
+description = "brain-dead simple config-ini parsing"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760"},
+ {file = "iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7"},
+]
+
+[[package]]
+name = "interface-meta"
+version = "1.3.0"
+description = "`interface_meta` provides a convenient way to expose an extensible API with enforced method signatures and consistent documentation."
+optional = false
+python-versions = ">=3.7,<4.0"
+groups = ["main"]
+files = [
+ {file = "interface_meta-1.3.0-py3-none-any.whl", hash = "sha256:de35dc5241431886e709e20a14d6597ed07c9f1e8b4bfcffde2190ca5b700ee8"},
+ {file = "interface_meta-1.3.0.tar.gz", hash = "sha256:8a4493f8bdb73fb9655dcd5115bc897e207319e36c8835f39c516a2d7e9d79a1"},
+]
+
+[[package]]
+name = "interpret"
+version = "0.6.6"
+description = "Fit interpretable models. Explain blackbox machine learning."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "interpret-0.6.6-py3-none-any.whl", hash = "sha256:028b10edc031398ad52683a7fbacc17050c77a3b4927ae2aec4dd7110475baca"},
+ {file = "interpret-0.6.6.tar.gz", hash = "sha256:be36208fc21ce03211cb09aa086a7f4f6a97908a27868aab03044d64d8802f26"},
+]
+
+[package.dependencies]
+interpret-core = {version = "0.6.6", extras = ["aplr", "dash", "debug", "linear", "notebook", "plotly", "sensitivity", "shap"]}
+
+[[package]]
+name = "interpret-core"
+version = "0.6.6"
+description = "Fit interpretable models. Explain blackbox machine learning."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "interpret_core-0.6.6-py3-none-any.whl", hash = "sha256:b0f5f20c580afeecb10b7db06fccb0db5dabc401f427d27f54c645d7a2fab7bf"},
+ {file = "interpret_core-0.6.6.tar.gz", hash = "sha256:8641f2b9d2791c8f68445a98952ded1347b0e46d5be28de30bf538a3bba2fbdc"},
+]
+
+[package.dependencies]
+aplr = {version = ">=10.6.1", optional = true, markers = "extra == \"aplr\""}
+dash = {version = ">=1.0.0", optional = true, markers = "extra == \"dash\""}
+dash-core-components = {version = ">=1.0.0", optional = true, markers = "extra == \"dash\""}
+dash-cytoscape = {version = ">=0.1.1", optional = true, markers = "extra == \"dash\""}
+dash-html-components = {version = ">=1.0.0", optional = true, markers = "extra == \"dash\""}
+dash-table = {version = ">=4.1.0", optional = true, markers = "extra == \"dash\""}
+dill = {version = ">=0.2.5", optional = true, markers = "extra == \"shap\""}
+gevent = {version = ">=1.3.6", optional = true, markers = "extra == \"dash\""}
+ipykernel = {version = ">=4.10.0", optional = true, markers = "extra == \"notebook\""}
+ipython = {version = ">=5.5.0", optional = true, markers = "extra == \"notebook\""}
+joblib = ">=0.11"
+numpy = ">=1.11.1"
+pandas = ">=0.19.2"
+plotly = {version = ">=3.8.1", optional = true, markers = "extra == \"plotly\""}
+psutil = {version = ">=5.6.2", optional = true, markers = "extra == \"debug\""}
+requests = {version = ">=2.19.0", optional = true, markers = "extra == \"dash\""}
+SALib = {version = ">=1.3.3", optional = true, markers = "extra == \"sensitivity\""}
+scikit-learn = ">=0.18.1"
+scipy = ">=0.18.1"
+shap = {version = ">=0.28.5", optional = true, markers = "extra == \"shap\""}
+
+[package.extras]
+aplr = ["aplr (>=10.6.1)"]
+dash = ["dash (>=1.0.0)", "dash-core-components (>=1.0.0)", "dash-cytoscape (>=0.1.1)", "dash-html-components (>=1.0.0)", "dash-table (>=4.1.0)", "gevent (>=1.3.6)", "requests (>=2.19.0)"]
+debug = ["psutil (>=5.6.2)"]
+lime = ["lime (>=0.1.1.33)"]
+notebook = ["ipykernel (>=4.10.0)", "ipython (>=5.5.0)"]
+plotly = ["plotly (>=3.8.1)"]
+sensitivity = ["SALib (>=1.3.3)"]
+shap = ["dill (>=0.2.5)", "shap (>=0.28.5)"]
+skoperules = ["skope-rules (>=1.0.1)"]
+testing = ["ipywidgets (>=7.4.2)", "jupyter (>=1.0.0)", "nbconvert (>=5.4.1)", "pytest (>=4.3.0)", "pytest-cov (>=2.6.1)", "pytest-runner (>=4.4)", "pytest-xdist (>=1.29)", "ruff (>=0.1.2)", "scikit-learn (>=1.0.0)", "selenium (>=3.141.0)"]
+treeinterpreter = ["treeinterpreter (>=0.2.2)"]
+
+[[package]]
+name = "ipykernel"
+version = "6.29.5"
+description = "IPython Kernel for Jupyter"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "ipykernel-6.29.5-py3-none-any.whl", hash = "sha256:afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5"},
+ {file = "ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215"},
+]
+
+[package.dependencies]
+appnope = {version = "*", markers = "platform_system == \"Darwin\""}
+comm = ">=0.1.1"
+debugpy = ">=1.6.5"
+ipython = ">=7.23.1"
+jupyter-client = ">=6.1.12"
+jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
+matplotlib-inline = ">=0.1"
+nest-asyncio = "*"
+packaging = "*"
+psutil = "*"
+pyzmq = ">=24"
+tornado = ">=6.1"
+traitlets = ">=5.4.0"
+
+[package.extras]
+cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"]
+pyqt5 = ["pyqt5"]
+pyside6 = ["pyside6"]
+test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.23.5)", "pytest-cov", "pytest-timeout"]
+
+[[package]]
+name = "ipython"
+version = "8.35.0"
+description = "IPython: Productive Interactive Computing"
+optional = false
+python-versions = ">=3.10"
+groups = ["main", "dev"]
+files = [
+ {file = "ipython-8.35.0-py3-none-any.whl", hash = "sha256:e6b7470468ba6f1f0a7b116bb688a3ece2f13e2f94138e508201fad677a788ba"},
+ {file = "ipython-8.35.0.tar.gz", hash = "sha256:d200b7d93c3f5883fc36ab9ce28a18249c7706e51347681f80a0aef9895f2520"},
+]
+
+[package.dependencies]
+colorama = {version = "*", markers = "sys_platform == \"win32\""}
+decorator = "*"
+exceptiongroup = {version = "*", markers = "python_version < \"3.11\""}
+jedi = ">=0.16"
+matplotlib-inline = "*"
+pexpect = {version = ">4.3", markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\""}
+prompt_toolkit = ">=3.0.41,<3.1.0"
+pygments = ">=2.4.0"
+stack_data = "*"
+traitlets = ">=5.13.0"
+typing_extensions = {version = ">=4.6", markers = "python_version < \"3.12\""}
+
+[package.extras]
+all = ["ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]", "ipython[test,test-extra]"]
+black = ["black"]
+doc = ["docrepr", "exceptiongroup", "intersphinx_registry", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "tomli ; python_version < \"3.11\"", "typing_extensions"]
+kernel = ["ipykernel"]
+matplotlib = ["matplotlib"]
+nbconvert = ["nbconvert"]
+nbformat = ["nbformat"]
+notebook = ["ipywidgets", "notebook"]
+parallel = ["ipyparallel"]
+qtconsole = ["qtconsole"]
+test = ["packaging", "pickleshare", "pytest", "pytest-asyncio (<0.22)", "testpath"]
+test-extra = ["curio", "ipython[test]", "jupyter_ai", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"]
+
+[[package]]
+name = "ipywidgets"
+version = "8.1.6"
+description = "Jupyter interactive widgets"
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "ipywidgets-8.1.6-py3-none-any.whl", hash = "sha256:446e7630a1d025bdc7635e1169fcc06f2ce33b5bd41c2003edeb4a47c8d4bbb1"},
+ {file = "ipywidgets-8.1.6.tar.gz", hash = "sha256:d8ace49c66f14419fc66071371b99d01bed230bbc15d8a60233b18bfbd782851"},
+]
+
+[package.dependencies]
+comm = ">=0.1.3"
+ipython = ">=6.1.0"
+jupyterlab_widgets = ">=3.0.14,<3.1.0"
+traitlets = ">=4.3.1"
+widgetsnbextension = ">=4.0.14,<4.1.0"
+
+[package.extras]
+test = ["ipykernel", "jsonschema", "pytest (>=3.6.0)", "pytest-cov", "pytz"]
+
+[[package]]
+name = "isoduration"
+version = "20.11.0"
+description = "Operations with ISO 8601 durations"
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042"},
+ {file = "isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9"},
+]
+
+[package.dependencies]
+arrow = ">=0.15.0"
+
+[[package]]
+name = "isort"
+version = "6.0.1"
+description = "A Python utility / library to sort Python imports."
+optional = false
+python-versions = ">=3.9.0"
+groups = ["main"]
+files = [
+ {file = "isort-6.0.1-py3-none-any.whl", hash = "sha256:2dc5d7f65c9678d94c88dfc29161a320eec67328bc97aad576874cb4be1e9615"},
+ {file = "isort-6.0.1.tar.gz", hash = "sha256:1cb5df28dfbc742e490c5e41bad6da41b805b0a8be7bc93cd0fb2a8a890ac450"},
+]
+
+[package.extras]
+colors = ["colorama"]
+plugins = ["setuptools"]
+
+[[package]]
+name = "itsdangerous"
+version = "2.2.0"
+description = "Safely pass data to untrusted environments and back."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef"},
+ {file = "itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173"},
+]
+
+[[package]]
+name = "jedi"
+version = "0.19.2"
+description = "An autocompletion tool for Python that can be used for text editors."
+optional = false
+python-versions = ">=3.6"
+groups = ["main", "dev"]
+files = [
+ {file = "jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9"},
+ {file = "jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0"},
+]
+
+[package.dependencies]
+parso = ">=0.8.4,<0.9.0"
+
+[package.extras]
+docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"]
+qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"]
+testing = ["Django", "attrs", "colorama", "docopt", "pytest (<9.0.0)"]
+
+[[package]]
+name = "jinja2"
+version = "3.1.6"
+description = "A very fast and expressive template engine."
+optional = false
+python-versions = ">=3.7"
+groups = ["main", "dev"]
+files = [
+ {file = "jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67"},
+ {file = "jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d"},
+]
+
+[package.dependencies]
+MarkupSafe = ">=2.0"
+
+[package.extras]
+i18n = ["Babel (>=2.7)"]
+
+[[package]]
+name = "joblib"
+version = "1.3.2"
+description = "Lightweight pipelining with Python functions"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"},
+ {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"},
+]
+
+[[package]]
+name = "json5"
+version = "0.12.0"
+description = "A Python implementation of the JSON5 data format."
+optional = false
+python-versions = ">=3.8.0"
+groups = ["dev"]
+files = [
+ {file = "json5-0.12.0-py3-none-any.whl", hash = "sha256:6d37aa6c08b0609f16e1ec5ff94697e2cbbfbad5ac112afa05794da9ab7810db"},
+ {file = "json5-0.12.0.tar.gz", hash = "sha256:0b4b6ff56801a1c7dc817b0241bca4ce474a0e6a163bfef3fc594d3fd263ff3a"},
+]
+
+[package.extras]
+dev = ["build (==1.2.2.post1)", "coverage (==7.5.4) ; python_version < \"3.9\"", "coverage (==7.8.0) ; python_version >= \"3.9\"", "mypy (==1.14.1) ; python_version < \"3.9\"", "mypy (==1.15.0) ; python_version >= \"3.9\"", "pip (==25.0.1)", "pylint (==3.2.7) ; python_version < \"3.9\"", "pylint (==3.3.6) ; python_version >= \"3.9\"", "ruff (==0.11.2)", "twine (==6.1.0)", "uv (==0.6.11)"]
+
+[[package]]
+name = "jsonpointer"
+version = "3.0.0"
+description = "Identify specific nodes in a JSON document (RFC 6901)"
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"},
+ {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"},
+]
+
+[[package]]
+name = "jsonschema"
+version = "4.23.0"
+description = "An implementation of JSON Schema validation for Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"},
+ {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"},
+]
+
+[package.dependencies]
+attrs = ">=22.2.0"
+fqdn = {version = "*", optional = true, markers = "extra == \"format-nongpl\""}
+idna = {version = "*", optional = true, markers = "extra == \"format-nongpl\""}
+isoduration = {version = "*", optional = true, markers = "extra == \"format-nongpl\""}
+jsonpointer = {version = ">1.13", optional = true, markers = "extra == \"format-nongpl\""}
+jsonschema-specifications = ">=2023.03.6"
+referencing = ">=0.28.4"
+rfc3339-validator = {version = "*", optional = true, markers = "extra == \"format-nongpl\""}
+rfc3986-validator = {version = ">0.1.0", optional = true, markers = "extra == \"format-nongpl\""}
+rpds-py = ">=0.7.1"
+uri-template = {version = "*", optional = true, markers = "extra == \"format-nongpl\""}
+webcolors = {version = ">=24.6.0", optional = true, markers = "extra == \"format-nongpl\""}
+
+[package.extras]
+format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"]
+format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=24.6.0)"]
+
+[[package]]
+name = "jsonschema-specifications"
+version = "2024.10.1"
+description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry"
+optional = false
+python-versions = ">=3.9"
+groups = ["main", "dev"]
+files = [
+ {file = "jsonschema_specifications-2024.10.1-py3-none-any.whl", hash = "sha256:a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf"},
+ {file = "jsonschema_specifications-2024.10.1.tar.gz", hash = "sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272"},
+]
+
+[package.dependencies]
+referencing = ">=0.31.0"
+
+[[package]]
+name = "jupyter-client"
+version = "8.6.3"
+description = "Jupyter protocol implementation and client libraries"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f"},
+ {file = "jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419"},
+]
+
+[package.dependencies]
+jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
+python-dateutil = ">=2.8.2"
+pyzmq = ">=23.0"
+tornado = ">=6.2"
+traitlets = ">=5.3"
+
+[package.extras]
+docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"]
+test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko ; sys_platform == \"win32\"", "pre-commit", "pytest (<8.2.0)", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"]
+
+[[package]]
+name = "jupyter-core"
+version = "5.7.2"
+description = "Jupyter core package. A base package on which Jupyter projects rely."
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409"},
+ {file = "jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9"},
+]
+
+[package.dependencies]
+platformdirs = ">=2.5"
+pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""}
+traitlets = ">=5.3"
+
+[package.extras]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"]
+test = ["ipykernel", "pre-commit", "pytest (<8)", "pytest-cov", "pytest-timeout"]
+
+[[package]]
+name = "jupyter-events"
+version = "0.12.0"
+description = "Jupyter Event System library"
+optional = false
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "jupyter_events-0.12.0-py3-none-any.whl", hash = "sha256:6464b2fa5ad10451c3d35fabc75eab39556ae1e2853ad0c0cc31b656731a97fb"},
+ {file = "jupyter_events-0.12.0.tar.gz", hash = "sha256:fc3fce98865f6784c9cd0a56a20644fc6098f21c8c33834a8d9fe383c17e554b"},
+]
+
+[package.dependencies]
+jsonschema = {version = ">=4.18.0", extras = ["format-nongpl"]}
+packaging = "*"
+python-json-logger = ">=2.0.4"
+pyyaml = ">=5.3"
+referencing = "*"
+rfc3339-validator = "*"
+rfc3986-validator = ">=0.1.1"
+traitlets = ">=5.3"
+
+[package.extras]
+cli = ["click", "rich"]
+docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme (>=0.16)", "sphinx (>=8)", "sphinxcontrib-spelling"]
+test = ["click", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.19.0)", "pytest-console-scripts", "rich"]
+
+[[package]]
+name = "jupyter-lsp"
+version = "2.2.5"
+description = "Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server"
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "jupyter-lsp-2.2.5.tar.gz", hash = "sha256:793147a05ad446f809fd53ef1cd19a9f5256fd0a2d6b7ce943a982cb4f545001"},
+ {file = "jupyter_lsp-2.2.5-py3-none-any.whl", hash = "sha256:45fbddbd505f3fbfb0b6cb2f1bc5e15e83ab7c79cd6e89416b248cb3c00c11da"},
+]
+
+[package.dependencies]
+jupyter-server = ">=1.1.2"
+
+[[package]]
+name = "jupyter-server"
+version = "2.15.0"
+description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications."
+optional = false
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "jupyter_server-2.15.0-py3-none-any.whl", hash = "sha256:872d989becf83517012ee669f09604aa4a28097c0bd90b2f424310156c2cdae3"},
+ {file = "jupyter_server-2.15.0.tar.gz", hash = "sha256:9d446b8697b4f7337a1b7cdcac40778babdd93ba614b6d68ab1c0c918f1c4084"},
+]
+
+[package.dependencies]
+anyio = ">=3.1.0"
+argon2-cffi = ">=21.1"
+jinja2 = ">=3.0.3"
+jupyter-client = ">=7.4.4"
+jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
+jupyter-events = ">=0.11.0"
+jupyter-server-terminals = ">=0.4.4"
+nbconvert = ">=6.4.4"
+nbformat = ">=5.3.0"
+overrides = ">=5.0"
+packaging = ">=22.0"
+prometheus-client = ">=0.9"
+pywinpty = {version = ">=2.0.1", markers = "os_name == \"nt\""}
+pyzmq = ">=24"
+send2trash = ">=1.8.2"
+terminado = ">=0.8.3"
+tornado = ">=6.2.0"
+traitlets = ">=5.6.0"
+websocket-client = ">=1.7"
+
+[package.extras]
+docs = ["ipykernel", "jinja2", "jupyter-client", "myst-parser", "nbformat", "prometheus-client", "pydata-sphinx-theme", "send2trash", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-openapi (>=0.8.0)", "sphinxcontrib-spelling", "sphinxemoji", "tornado", "typing-extensions"]
+test = ["flaky", "ipykernel", "pre-commit", "pytest (>=7.0,<9)", "pytest-console-scripts", "pytest-jupyter[server] (>=0.7)", "pytest-timeout", "requests"]
+
+[[package]]
+name = "jupyter-server-terminals"
+version = "0.5.3"
+description = "A Jupyter Server Extension Providing Terminals."
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "jupyter_server_terminals-0.5.3-py3-none-any.whl", hash = "sha256:41ee0d7dc0ebf2809c668e0fc726dfaf258fcd3e769568996ca731b6194ae9aa"},
+ {file = "jupyter_server_terminals-0.5.3.tar.gz", hash = "sha256:5ae0295167220e9ace0edcfdb212afd2b01ee8d179fe6f23c899590e9b8a5269"},
+]
+
+[package.dependencies]
+pywinpty = {version = ">=2.0.3", markers = "os_name == \"nt\""}
+terminado = ">=0.8.3"
+
+[package.extras]
+docs = ["jinja2", "jupyter-server", "mistune (<4.0)", "myst-parser", "nbformat", "packaging", "pydata-sphinx-theme", "sphinxcontrib-github-alt", "sphinxcontrib-openapi", "sphinxcontrib-spelling", "sphinxemoji", "tornado"]
+test = ["jupyter-server (>=2.0.0)", "pytest (>=7.0)", "pytest-jupyter[server] (>=0.5.3)", "pytest-timeout"]
+
+[[package]]
+name = "jupyterlab"
+version = "4.4.0"
+description = "JupyterLab computational environment"
+optional = false
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "jupyterlab-4.4.0-py3-none-any.whl", hash = "sha256:61d33991fbb352cc7caac08bd0c34577fea86d8d5d9772600d9d5a6bcbc882c0"},
+ {file = "jupyterlab-4.4.0.tar.gz", hash = "sha256:f1767d5f0104e40f3b4a63bf6892bbef8e4704dcabf0c78408a3bdc411792f04"},
+]
+
+[package.dependencies]
+async-lru = ">=1.0.0"
+httpx = ">=0.25.0"
+ipykernel = ">=6.5.0"
+jinja2 = ">=3.0.3"
+jupyter-core = "*"
+jupyter-lsp = ">=2.0.0"
+jupyter-server = ">=2.4.0,<3"
+jupyterlab-server = ">=2.27.1,<3"
+notebook-shim = ">=0.2"
+packaging = "*"
+setuptools = ">=41.1.0"
+tomli = {version = ">=1.2.2", markers = "python_version < \"3.11\""}
+tornado = ">=6.2.0"
+traitlets = "*"
+
+[package.extras]
+dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.9.9)"]
+docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<8.2.0)", "sphinx-copybutton"]
+docs-screenshots = ["altair (==5.5.0)", "ipython (==8.16.1)", "ipywidgets (==8.1.5)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.3.post1)", "matplotlib (==3.10.0)", "nbconvert (>=7.0.0)", "pandas (==2.2.3)", "scipy (==1.15.1)", "vega-datasets (==0.9.0)"]
+test = ["coverage", "pytest (>=7.0)", "pytest-check-links (>=0.7)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter (>=0.5.3)", "pytest-timeout", "pytest-tornasync", "requests", "requests-cache", "virtualenv"]
+upgrade-extension = ["copier (>=9,<10)", "jinja2-time (<0.3)", "pydantic (<3.0)", "pyyaml-include (<3.0)", "tomli-w (<2.0)"]
+
+[[package]]
+name = "jupyterlab-pygments"
+version = "0.3.0"
+description = "Pygments theme using JupyterLab CSS variables"
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780"},
+ {file = "jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d"},
+]
+
+[[package]]
+name = "jupyterlab-server"
+version = "2.27.3"
+description = "A set of server components for JupyterLab and JupyterLab like applications."
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "jupyterlab_server-2.27.3-py3-none-any.whl", hash = "sha256:e697488f66c3db49df675158a77b3b017520d772c6e1548c7d9bcc5df7944ee4"},
+ {file = "jupyterlab_server-2.27.3.tar.gz", hash = "sha256:eb36caca59e74471988f0ae25c77945610b887f777255aa21f8065def9e51ed4"},
+]
+
+[package.dependencies]
+babel = ">=2.10"
+jinja2 = ">=3.0.3"
+json5 = ">=0.9.0"
+jsonschema = ">=4.18.0"
+jupyter-server = ">=1.21,<3"
+packaging = ">=21.3"
+requests = ">=2.31"
+
+[package.extras]
+docs = ["autodoc-traits", "jinja2 (<3.2.0)", "mistune (<4)", "myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-copybutton", "sphinxcontrib-openapi (>0.8)"]
+openapi = ["openapi-core (>=0.18.0,<0.19.0)", "ruamel-yaml"]
+test = ["hatch", "ipykernel", "openapi-core (>=0.18.0,<0.19.0)", "openapi-spec-validator (>=0.6.0,<0.8.0)", "pytest (>=7.0,<8)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter[server] (>=0.6.2)", "pytest-timeout", "requests-mock", "ruamel-yaml", "sphinxcontrib-spelling", "strict-rfc3339", "werkzeug"]
+
+[[package]]
+name = "jupyterlab-widgets"
+version = "3.0.14"
+description = "Jupyter interactive widgets for JupyterLab"
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "jupyterlab_widgets-3.0.14-py3-none-any.whl", hash = "sha256:54c33e3306b7fca139d165d6190dc6c0627aafa5d14adfc974a4e9a3d26cb703"},
+ {file = "jupyterlab_widgets-3.0.14.tar.gz", hash = "sha256:bad03e59546869f026e537e0d170e454259e6dc7048e14041707ca31e523c8a1"},
+]
+
+[[package]]
+name = "kiwisolver"
+version = "1.4.8"
+description = "A fast implementation of the Cassowary constraint solver"
+optional = false
+python-versions = ">=3.10"
+groups = ["main"]
+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"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce2cf1e5688edcb727fdf7cd1bbd0b6416758996826a8be1d958f91880d0809d"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c8bf637892dc6e6aad2bc6d4d69d08764166e5e3f69d469e55427b6ac001b19d"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:034d2c891f76bd3edbdb3ea11140d8510dca675443da7304205a2eaa45d8334c"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d47b28d1dfe0793d5e96bce90835e17edf9a499b53969b03c6c47ea5985844c3"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb158fe28ca0c29f2260cca8c43005329ad58452c36f0edf298204de32a9a3ed"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5536185fce131780ebd809f8e623bf4030ce1b161353166c49a3c74c287897f"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:369b75d40abedc1da2c1f4de13f3482cb99e3237b38726710f4a793432b1c5ff"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:641f2ddf9358c80faa22e22eb4c9f54bd3f0e442e038728f500e3b978d00aa7d"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d561d2d8883e0819445cfe58d7ddd673e4015c3c57261d7bdcd3710d0d14005c"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:1732e065704b47c9afca7ffa272f845300a4eb959276bf6970dc07265e73b605"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:bcb1ebc3547619c3b58a39e2448af089ea2ef44b37988caf432447374941574e"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-win_amd64.whl", hash = "sha256:89c107041f7b27844179ea9c85d6da275aa55ecf28413e87624d033cf1f6b751"},
+ {file = "kiwisolver-1.4.8-cp310-cp310-win_arm64.whl", hash = "sha256:b5773efa2be9eb9fcf5415ea3ab70fc785d598729fd6057bea38d539ead28271"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a4d3601908c560bdf880f07d94f31d734afd1bb71e96585cace0e38ef44c6d84"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:856b269c4d28a5c0d5e6c1955ec36ebfd1651ac00e1ce0afa3e28da95293b561"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c2b9a96e0f326205af81a15718a9073328df1173a2619a68553decb7097fd5d7"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5020c83e8553f770cb3b5fc13faac40f17e0b205bd237aebd21d53d733adb03"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dace81d28c787956bfbfbbfd72fdcef014f37d9b48830829e488fdb32b49d954"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11e1022b524bd48ae56c9b4f9296bce77e15a2e42a502cceba602f804b32bb79"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b9b4d2892fefc886f30301cdd80debd8bb01ecdf165a449eb6e78f79f0fabd6"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a96c0e790ee875d65e340ab383700e2b4891677b7fcd30a699146f9384a2bb0"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23454ff084b07ac54ca8be535f4174170c1094a4cff78fbae4f73a4bcc0d4dab"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:87b287251ad6488e95b4f0b4a79a6d04d3ea35fde6340eb38fbd1ca9cd35bbbc"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b21dbe165081142b1232a240fc6383fd32cdd877ca6cc89eab93e5f5883e1c25"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:768cade2c2df13db52475bd28d3a3fac8c9eff04b0e9e2fda0f3760f20b3f7fc"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d47cfb2650f0e103d4bf68b0b5804c68da97272c84bb12850d877a95c056bd67"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-win_amd64.whl", hash = "sha256:ed33ca2002a779a2e20eeb06aea7721b6e47f2d4b8a8ece979d8ba9e2a167e34"},
+ {file = "kiwisolver-1.4.8-cp311-cp311-win_arm64.whl", hash = "sha256:16523b40aab60426ffdebe33ac374457cf62863e330a90a0383639ce14bf44b2"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d6af5e8815fd02997cb6ad9bbed0ee1e60014438ee1a5c2444c96f87b8843502"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bade438f86e21d91e0cf5dd7c0ed00cda0f77c8c1616bd83f9fc157fa6760d31"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b83dc6769ddbc57613280118fb4ce3cd08899cc3369f7d0e0fab518a7cf37fdb"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:111793b232842991be367ed828076b03d96202c19221b5ebab421ce8bcad016f"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:257af1622860e51b1a9d0ce387bf5c2c4f36a90594cb9514f55b074bcc787cfc"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69b5637c3f316cab1ec1c9a12b8c5f4750a4c4b71af9157645bf32830e39c03a"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:782bb86f245ec18009890e7cb8d13a5ef54dcf2ebe18ed65f795e635a96a1c6a"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc978a80a0db3a66d25767b03688f1147a69e6237175c0f4ffffaaedf744055a"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:36dbbfd34838500a31f52c9786990d00150860e46cd5041386f217101350f0d3"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:eaa973f1e05131de5ff3569bbba7f5fd07ea0595d3870ed4a526d486fe57fa1b"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a66f60f8d0c87ab7f59b6fb80e642ebb29fec354a4dfad687ca4092ae69d04f4"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:858416b7fb777a53f0c59ca08190ce24e9abbd3cffa18886a5781b8e3e26f65d"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:085940635c62697391baafaaeabdf3dd7a6c3643577dde337f4d66eba021b2b8"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-win_amd64.whl", hash = "sha256:01c3d31902c7db5fb6182832713d3b4122ad9317c2c5877d0539227d96bb2e50"},
+ {file = "kiwisolver-1.4.8-cp312-cp312-win_arm64.whl", hash = "sha256:a3c44cb68861de93f0c4a8175fbaa691f0aa22550c331fefef02b618a9dcb476"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1c8ceb754339793c24aee1c9fb2485b5b1f5bb1c2c214ff13368431e51fc9a09"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a62808ac74b5e55a04a408cda6156f986cefbcf0ada13572696b507cc92fa1"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:68269e60ee4929893aad82666821aaacbd455284124817af45c11e50a4b42e3c"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34d142fba9c464bc3bbfeff15c96eab0e7310343d6aefb62a79d51421fcc5f1b"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc373e0eef45b59197de815b1b28ef89ae3955e7722cc9710fb91cd77b7f47"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77e6f57a20b9bd4e1e2cedda4d0b986ebd0216236f0106e55c28aea3d3d69b16"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08e77738ed7538f036cd1170cbed942ef749137b1311fa2bbe2a7fda2f6bf3cc"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5ce1e481a74b44dd5e92ff03ea0cb371ae7a0268318e202be06c8f04f4f1246"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fc2ace710ba7c1dfd1a3b42530b62b9ceed115f19a1656adefce7b1782a37794"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3452046c37c7692bd52b0e752b87954ef86ee2224e624ef7ce6cb21e8c41cc1b"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7e9a60b50fe8b2ec6f448fe8d81b07e40141bfced7f896309df271a0b92f80f3"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:918139571133f366e8362fa4a297aeba86c7816b7ecf0bc79168080e2bd79957"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e063ef9f89885a1d68dd8b2e18f5ead48653176d10a0e324e3b0030e3a69adeb"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-win_amd64.whl", hash = "sha256:a17b7c4f5b2c51bb68ed379defd608a03954a1845dfed7cc0117f1cc8a9b7fd2"},
+ {file = "kiwisolver-1.4.8-cp313-cp313-win_arm64.whl", hash = "sha256:3cd3bc628b25f74aedc6d374d5babf0166a92ff1317f46267f12d2ed54bc1d30"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:370fd2df41660ed4e26b8c9d6bbcad668fbe2560462cba151a721d49e5b6628c"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:84a2f830d42707de1d191b9490ac186bf7997a9495d4e9072210a1296345f7dc"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a3ad337add5148cf51ce0b55642dc551c0b9d6248458a757f98796ca7348712"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7506488470f41169b86d8c9aeff587293f530a23a23a49d6bc64dab66bedc71e"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f0121b07b356a22fb0414cec4666bbe36fd6d0d759db3d37228f496ed67c880"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d6d6bd87df62c27d4185de7c511c6248040afae67028a8a22012b010bc7ad062"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:291331973c64bb9cce50bbe871fb2e675c4331dab4f31abe89f175ad7679a4d7"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:893f5525bb92d3d735878ec00f781b2de998333659507d29ea4466208df37bed"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b47a465040146981dc9db8647981b8cb96366fbc8d452b031e4f8fdffec3f26d"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:99cea8b9dd34ff80c521aef46a1dddb0dcc0283cf18bde6d756f1e6f31772165"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:151dffc4865e5fe6dafce5480fab84f950d14566c480c08a53c663a0020504b6"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:577facaa411c10421314598b50413aa1ebcf5126f704f1e5d72d7e4e9f020d90"},
+ {file = "kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:be4816dc51c8a471749d664161b434912eee82f2ea66bd7628bd14583a833e85"},
+ {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:e7a019419b7b510f0f7c9dceff8c5eae2392037eae483a7f9162625233802b0a"},
+ {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:286b18e86682fd2217a48fc6be6b0f20c1d0ed10958d8dc53453ad58d7be0bf8"},
+ {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4191ee8dfd0be1c3666ccbac178c5a05d5f8d689bbe3fc92f3c4abec817f8fe0"},
+ {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7cd2785b9391f2873ad46088ed7599a6a71e762e1ea33e87514b1a441ed1da1c"},
+ {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c07b29089b7ba090b6f1a669f1411f27221c3662b3a1b7010e67b59bb5a6f10b"},
+ {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:65ea09a5a3faadd59c2ce96dc7bf0f364986a315949dc6374f04396b0d60e09b"},
+ {file = "kiwisolver-1.4.8.tar.gz", hash = "sha256:23d5f023bdc8c7e54eb65f03ca5d5bb25b601eac4d7f1a042888a1f45237987e"},
+]
+
+[[package]]
+name = "lifelines"
+version = "0.28.0"
+description = "Survival analysis in Python, including Kaplan Meier, Nelson Aalen and regression"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "lifelines-0.28.0-py3-none-any.whl", hash = "sha256:eacade0527a62d6086cb76f7dbf1e94f2f445a696dd7168723bc7a86e4737a99"},
+ {file = "lifelines-0.28.0.tar.gz", hash = "sha256:eecf726453fd409c94fef8a521f8e593bcd09337f920fe885131f01cfe58b25e"},
+]
+
+[package.dependencies]
+autograd = ">=1.5"
+autograd-gamma = ">=0.3"
+formulaic = ">=0.2.2"
+matplotlib = ">=3.0"
+numpy = ">=1.14.0,<2.0"
+pandas = ">=1.2.0"
+scipy = ">=1.2.0"
+
+[[package]]
+name = "lightgbm"
+version = "4.5.0"
+description = "LightGBM Python Package"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "lightgbm-4.5.0-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:2212e2166af6379bc005e6f7041dd2dcba3750238eccbc55d09d3c0717c51187"},
+ {file = "lightgbm-4.5.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:1301aa853e1fe4bf318539aa132f373862b04aa537af502508711ce03dffff09"},
+ {file = "lightgbm-4.5.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7f0a3dded769d83560845f2c3fe1966630ec1ca527c380d9d48d9b35579a796e"},
+ {file = "lightgbm-4.5.0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:960a0e7c077de0ca3053f1325d3edfc92ea815acf5176adcacdea0f635aeef9b"},
+ {file = "lightgbm-4.5.0-py3-none-win_amd64.whl", hash = "sha256:7ccb73ee9fb74fbbf89ad24c57a6edad505aa8f2165d02b999a082dbbbb0ee57"},
+ {file = "lightgbm-4.5.0.tar.gz", hash = "sha256:e1cd7baf0318d4e308a26575a63a4635f08df866ad3622a9d8e3d71d9637a1ba"},
+]
+
+[package.dependencies]
+numpy = ">=1.17.0"
+scipy = "*"
+
+[package.extras]
+arrow = ["cffi (>=1.15.1)", "pyarrow (>=6.0.1)"]
+dask = ["dask[array,dataframe,distributed] (>=2.0.0)", "pandas (>=0.24.0)"]
+pandas = ["pandas (>=0.24.0)"]
+scikit-learn = ["scikit-learn (!=0.22.0)"]
+
+[[package]]
+name = "lime"
+version = "0.2.0.1"
+description = "Local Interpretable Model-Agnostic Explanations for machine learning classifiers"
+optional = false
+python-versions = ">=3.5"
+groups = ["main"]
+files = [
+ {file = "lime-0.2.0.1.tar.gz", hash = "sha256:76960e4f055feb53e89b5022383bafc87b63f25bac6265984b0a333d1a57f781"},
+]
+
+[package.dependencies]
+matplotlib = "*"
+numpy = "*"
+scikit-image = ">=0.12"
+scikit-learn = ">=0.18"
+scipy = "*"
+tqdm = "*"
+
+[package.extras]
+dev = ["flake8", "pytest"]
+
+[[package]]
+name = "llvmlite"
+version = "0.39.1"
+description = "lightweight wrapper around basic LLVM functionality"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "llvmlite-0.39.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6717c7a6e93c9d2c3d07c07113ec80ae24af45cde536b34363d4bcd9188091d9"},
+ {file = "llvmlite-0.39.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ddab526c5a2c4ccb8c9ec4821fcea7606933dc53f510e2a6eebb45a418d3488a"},
+ {file = "llvmlite-0.39.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3f331a323d0f0ada6b10d60182ef06c20a2f01be21699999d204c5750ffd0b4"},
+ {file = "llvmlite-0.39.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2c00ff204afa721b0bb9835b5bf1ba7fba210eefcec5552a9e05a63219ba0dc"},
+ {file = "llvmlite-0.39.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16f56eb1eec3cda3a5c526bc3f63594fc24e0c8d219375afeb336f289764c6c7"},
+ {file = "llvmlite-0.39.1-cp310-cp310-win32.whl", hash = "sha256:d0bfd18c324549c0fec2c5dc610fd024689de6f27c6cc67e4e24a07541d6e49b"},
+ {file = "llvmlite-0.39.1-cp310-cp310-win_amd64.whl", hash = "sha256:7ebf1eb9badc2a397d4f6a6c8717447c81ac011db00064a00408bc83c923c0e4"},
+ {file = "llvmlite-0.39.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6546bed4e02a1c3d53a22a0bced254b3b6894693318b16c16c8e43e29d6befb6"},
+ {file = "llvmlite-0.39.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1578f5000fdce513712e99543c50e93758a954297575610f48cb1fd71b27c08a"},
+ {file = "llvmlite-0.39.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3803f11ad5f6f6c3d2b545a303d68d9fabb1d50e06a8d6418e6fcd2d0df00959"},
+ {file = "llvmlite-0.39.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50aea09a2b933dab7c9df92361b1844ad3145bfb8dd2deb9cd8b8917d59306fb"},
+ {file = "llvmlite-0.39.1-cp37-cp37m-win32.whl", hash = "sha256:b1a0bbdb274fb683f993198775b957d29a6f07b45d184c571ef2a721ce4388cf"},
+ {file = "llvmlite-0.39.1-cp37-cp37m-win_amd64.whl", hash = "sha256:e172c73fccf7d6db4bd6f7de963dedded900d1a5c6778733241d878ba613980e"},
+ {file = "llvmlite-0.39.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e31f4b799d530255aaf0566e3da2df5bfc35d3cd9d6d5a3dcc251663656c27b1"},
+ {file = "llvmlite-0.39.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:62c0ea22e0b9dffb020601bb65cb11dd967a095a488be73f07d8867f4e327ca5"},
+ {file = "llvmlite-0.39.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ffc84ade195abd4abcf0bd3b827b9140ae9ef90999429b9ea84d5df69c9058c"},
+ {file = "llvmlite-0.39.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c0f158e4708dda6367d21cf15afc58de4ebce979c7a1aa2f6b977aae737e2a54"},
+ {file = "llvmlite-0.39.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22d36591cd5d02038912321d9ab8e4668e53ae2211da5523f454e992b5e13c36"},
+ {file = "llvmlite-0.39.1-cp38-cp38-win32.whl", hash = "sha256:4c6ebace910410daf0bebda09c1859504fc2f33d122e9a971c4c349c89cca630"},
+ {file = "llvmlite-0.39.1-cp38-cp38-win_amd64.whl", hash = "sha256:fb62fc7016b592435d3e3a8f680e3ea8897c3c9e62e6e6cc58011e7a4801439e"},
+ {file = "llvmlite-0.39.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fa9b26939ae553bf30a9f5c4c754db0fb2d2677327f2511e674aa2f5df941789"},
+ {file = "llvmlite-0.39.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e4f212c018db951da3e1dc25c2651abc688221934739721f2dad5ff1dd5f90e7"},
+ {file = "llvmlite-0.39.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39dc2160aed36e989610fc403487f11b8764b6650017ff367e45384dff88ffbf"},
+ {file = "llvmlite-0.39.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1ec3d70b3e507515936e475d9811305f52d049281eaa6c8273448a61c9b5b7e2"},
+ {file = "llvmlite-0.39.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60f8dd1e76f47b3dbdee4b38d9189f3e020d22a173c00f930b52131001d801f9"},
+ {file = "llvmlite-0.39.1-cp39-cp39-win32.whl", hash = "sha256:03aee0ccd81735696474dc4f8b6be60774892a2929d6c05d093d17392c237f32"},
+ {file = "llvmlite-0.39.1-cp39-cp39-win_amd64.whl", hash = "sha256:3fc14e757bc07a919221f0cbaacb512704ce5774d7fcada793f1996d6bc75f2a"},
+ {file = "llvmlite-0.39.1.tar.gz", hash = "sha256:b43abd7c82e805261c425d50335be9a6c4f84264e34d6d6e475207300005d572"},
+]
+
+[[package]]
+name = "lohrasb"
+version = "4.2.0"
+description = "This versatile tool streamlines hyperparameter optimization in machine learning workflows.It supports a wide range of search methods, from GridSearchCV and RandomizedSearchCVto advanced techniques like OptunaSearchCV, Ray Tune, and Scikit-Learn Tune.Designed to enhance model performance and efficiency, it's suitable for tasks of any scale."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "lohrasb-4.2.0-py3-none-any.whl", hash = "sha256:52f3e46c5122da06cb9ba9bc6579b91a5ae5ab0c5486e341563f42bcf5e1f15e"},
+ {file = "lohrasb-4.2.0.tar.gz", hash = "sha256:893653808e9568f5e939b92a5e1f5dd8450cf68e786ab51ee34741bcd29b15d3"},
+]
+
+[package.dependencies]
+aiosignal = "*"
+alembic = "*"
+ansi2html = "*"
+appnope = "*"
+argcomplete = "*"
+astor = "*"
+attrs = "*"
+autograd = "*"
+autograd-gamma = "*"
+backcall = "*"
+black = "*"
+cached-property = "*"
+catboost = "*"
+certifi = "*"
+charset-normalizer = "*"
+click = "*"
+cloudpickle = "*"
+cmaes = "*"
+colorlog = "*"
+cycler = "*"
+dash = "*"
+dash-core-components = "*"
+dash-cytoscape = "*"
+dash-html-components = "*"
+dash-table = "*"
+debugpy = "*"
+decorator = "*"
+dill = "*"
+distlib = "*"
+entrypoints = "*"
+exceptiongroup = "*"
+filelock = "*"
+Flask = "*"
+fonttools = "*"
+formulaic = "*"
+frozenlist = "*"
+future = "*"
+gevent = "*"
+graphlib-backport = "*"
+graphviz = "*"
+greenlet = "*"
+grpcio = "*"
+hyperopt = "*"
+idna = "*"
+imageio = "*"
+imbalanced-learn = "*"
+imblearn = "*"
+importlib-metadata = "*"
+importlib-resources = "*"
+iniconfig = "*"
+interface-meta = "*"
+interpret = "*"
+interpret-core = "*"
+ipykernel = "*"
+ipython = "*"
+isort = "*"
+itsdangerous = "*"
+jedi = "*"
+Jinja2 = "*"
+joblib = "*"
+jsonschema = "*"
+jupyter-client = "*"
+jupyter-core = "*"
+kiwisolver = "*"
+lifelines = "*"
+lightgbm = "*"
+lime = "*"
+llvmlite = "*"
+Mako = "*"
+MarkupSafe = "*"
+matplotlib = "*"
+matplotlib-inline = "*"
+mccabe = "*"
+msgpack = "*"
+multiprocess = "*"
+mypy-extensions = "*"
+nest-asyncio = "*"
+networkx = "*"
+nox = "*"
+numba = "*"
+numpy = "*"
+optuna = "*"
+packaging = "*"
+pandas = "*"
+parso = "*"
+pathos = "*"
+pathspec = "*"
+pexpect = "*"
+pickleshare = "*"
+Pillow = "*"
+pkgutil-resolve-name = "*"
+platformdirs = "*"
+plotly = "*"
+pluggy = "*"
+pox = "*"
+ppft = "*"
+prompt-toolkit = "*"
+protobuf = "*"
+psutil = "*"
+ptyprocess = "*"
+py4j = "*"
+pyarrow = "*"
+pycodestyle = "*"
+pyflakes = "*"
+Pygments = "*"
+pyparsing = "*"
+pyrsistent = "*"
+pytest = "*"
+python-dateutil = "*"
+python-dotenv = "*"
+pytz = "*"
+PyWavelets = "*"
+PyYAML = "*"
+pyzmq = "*"
+ray = "*"
+requests = "*"
+retrying = "*"
+"ruamel.yaml" = "*"
+"ruamel.yaml.clib" = "*"
+SALib = "*"
+scikit-image = "*"
+scikit-learn = "*"
+scipy = "*"
+shap = "*"
+six = "*"
+skope-rules = "*"
+slicer = "*"
+SQLAlchemy = "*"
+tenacity = "*"
+tensorboardX = "*"
+threadpoolctl = "*"
+tifffile = "*"
+tomli = "*"
+tornado = "*"
+tqdm = "*"
+traitlets = "*"
+treeinterpreter = "*"
+tune-sklearn = "*"
+typed-ast = "*"
+typing-extensions = "*"
+urllib3 = "*"
+virtualenv = "*"
+wcwidth = "*"
+Werkzeug = "*"
+wrapt = "*"
+xgboost = "*"
+xgbse = "*"
+zipp = "*"
+"zope.event" = "*"
+"zope.interface" = "*"
+
+[[package]]
+name = "mako"
+version = "1.3.10"
+description = "A super-fast templating language that borrows the best ideas from the existing templating languages."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "mako-1.3.10-py3-none-any.whl", hash = "sha256:baef24a52fc4fc514a0887ac600f9f1cff3d82c61d4d700a1fa84d597b88db59"},
+ {file = "mako-1.3.10.tar.gz", hash = "sha256:99579a6f39583fa7e5630a28c3c1f440e4e97a414b80372649c0ce338da2ea28"},
+]
+
+[package.dependencies]
+MarkupSafe = ">=0.9.2"
+
+[package.extras]
+babel = ["Babel"]
+lingua = ["lingua"]
+testing = ["pytest"]
+
+[[package]]
+name = "markupsafe"
+version = "3.0.2"
+description = "Safely add untrusted strings to HTML/XML markup."
+optional = false
+python-versions = ">=3.9"
+groups = ["main", "dev"]
+files = [
+ {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"},
+ {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"},
+]
+
+[[package]]
+name = "matplotlib"
+version = "3.8.4"
+description = "Python plotting package"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "matplotlib-3.8.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:abc9d838f93583650c35eca41cfcec65b2e7cb50fd486da6f0c49b5e1ed23014"},
+ {file = "matplotlib-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f65c9f002d281a6e904976007b2d46a1ee2bcea3a68a8c12dda24709ddc9106"},
+ {file = "matplotlib-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce1edd9f5383b504dbc26eeea404ed0a00656c526638129028b758fd43fc5f10"},
+ {file = "matplotlib-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecd79298550cba13a43c340581a3ec9c707bd895a6a061a78fa2524660482fc0"},
+ {file = "matplotlib-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:90df07db7b599fe7035d2f74ab7e438b656528c68ba6bb59b7dc46af39ee48ef"},
+ {file = "matplotlib-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:ac24233e8f2939ac4fd2919eed1e9c0871eac8057666070e94cbf0b33dd9c338"},
+ {file = "matplotlib-3.8.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:72f9322712e4562e792b2961971891b9fbbb0e525011e09ea0d1f416c4645661"},
+ {file = "matplotlib-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:232ce322bfd020a434caaffbd9a95333f7c2491e59cfc014041d95e38ab90d1c"},
+ {file = "matplotlib-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6addbd5b488aedb7f9bc19f91cd87ea476206f45d7116fcfe3d31416702a82fa"},
+ {file = "matplotlib-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc4ccdc64e3039fc303defd119658148f2349239871db72cd74e2eeaa9b80b71"},
+ {file = "matplotlib-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b7a2a253d3b36d90c8993b4620183b55665a429da8357a4f621e78cd48b2b30b"},
+ {file = "matplotlib-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:8080d5081a86e690d7688ffa542532e87f224c38a6ed71f8fbed34dd1d9fedae"},
+ {file = "matplotlib-3.8.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:6485ac1f2e84676cff22e693eaa4fbed50ef5dc37173ce1f023daef4687df616"},
+ {file = "matplotlib-3.8.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c89ee9314ef48c72fe92ce55c4e95f2f39d70208f9f1d9db4e64079420d8d732"},
+ {file = "matplotlib-3.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50bac6e4d77e4262c4340d7a985c30912054745ec99756ce213bfbc3cb3808eb"},
+ {file = "matplotlib-3.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f51c4c869d4b60d769f7b4406eec39596648d9d70246428745a681c327a8ad30"},
+ {file = "matplotlib-3.8.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b12ba985837e4899b762b81f5b2845bd1a28f4fdd1a126d9ace64e9c4eb2fb25"},
+ {file = "matplotlib-3.8.4-cp312-cp312-win_amd64.whl", hash = "sha256:7a6769f58ce51791b4cb8b4d7642489df347697cd3e23d88266aaaee93b41d9a"},
+ {file = "matplotlib-3.8.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:843cbde2f0946dadd8c5c11c6d91847abd18ec76859dc319362a0964493f0ba6"},
+ {file = "matplotlib-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1c13f041a7178f9780fb61cc3a2b10423d5e125480e4be51beaf62b172413b67"},
+ {file = "matplotlib-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb44f53af0a62dc80bba4443d9b27f2fde6acfdac281d95bc872dc148a6509cc"},
+ {file = "matplotlib-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:606e3b90897554c989b1e38a258c626d46c873523de432b1462f295db13de6f9"},
+ {file = "matplotlib-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9bb0189011785ea794ee827b68777db3ca3f93f3e339ea4d920315a0e5a78d54"},
+ {file = "matplotlib-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:6209e5c9aaccc056e63b547a8152661324404dd92340a6e479b3a7f24b42a5d0"},
+ {file = "matplotlib-3.8.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c7064120a59ce6f64103c9cefba8ffe6fba87f2c61d67c401186423c9a20fd35"},
+ {file = "matplotlib-3.8.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0e47eda4eb2614300fc7bb4657fced3e83d6334d03da2173b09e447418d499f"},
+ {file = "matplotlib-3.8.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:493e9f6aa5819156b58fce42b296ea31969f2aab71c5b680b4ea7a3cb5c07d94"},
+ {file = "matplotlib-3.8.4.tar.gz", hash = "sha256:8aac397d5e9ec158960e31c381c5ffc52ddd52bd9a47717e2a694038167dffea"},
+]
+
+[package.dependencies]
+contourpy = ">=1.0.1"
+cycler = ">=0.10"
+fonttools = ">=4.22.0"
+kiwisolver = ">=1.3.1"
+numpy = ">=1.21"
+packaging = ">=20.0"
+pillow = ">=8"
+pyparsing = ">=2.3.1"
+python-dateutil = ">=2.7"
+
+[[package]]
+name = "matplotlib-inline"
+version = "0.1.7"
+description = "Inline Matplotlib backend for Jupyter"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca"},
+ {file = "matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90"},
+]
+
+[package.dependencies]
+traitlets = "*"
+
+[[package]]
+name = "mccabe"
+version = "0.7.0"
+description = "McCabe checker, plugin for flake8"
+optional = false
+python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"},
+ {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"},
+]
+
+[[package]]
+name = "mistune"
+version = "3.1.3"
+description = "A sane and fast Markdown parser with useful plugins and renderers"
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "mistune-3.1.3-py3-none-any.whl", hash = "sha256:1a32314113cff28aa6432e99e522677c8587fd83e3d51c29b82a52409c842bd9"},
+ {file = "mistune-3.1.3.tar.gz", hash = "sha256:a7035c21782b2becb6be62f8f25d3df81ccb4d6fa477a6525b15af06539f02a0"},
+]
+
+[package.dependencies]
+typing-extensions = {version = "*", markers = "python_version < \"3.11\""}
+
+[[package]]
+name = "msgpack"
+version = "1.1.0"
+description = "MessagePack serializer"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ad442d527a7e358a469faf43fda45aaf4ac3249c8310a82f0ccff9164e5dccd"},
+ {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:74bed8f63f8f14d75eec75cf3d04ad581da6b914001b474a5d3cd3372c8cc27d"},
+ {file = "msgpack-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:914571a2a5b4e7606997e169f64ce53a8b1e06f2cf2c3a7273aa106236d43dd5"},
+ {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c921af52214dcbb75e6bdf6a661b23c3e6417f00c603dd2070bccb5c3ef499f5"},
+ {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8ce0b22b890be5d252de90d0e0d119f363012027cf256185fc3d474c44b1b9e"},
+ {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:73322a6cc57fcee3c0c57c4463d828e9428275fb85a27aa2aa1a92fdc42afd7b"},
+ {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e1f3c3d21f7cf67bcf2da8e494d30a75e4cf60041d98b3f79875afb5b96f3a3f"},
+ {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64fc9068d701233effd61b19efb1485587560b66fe57b3e50d29c5d78e7fef68"},
+ {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:42f754515e0f683f9c79210a5d1cad631ec3d06cea5172214d2176a42e67e19b"},
+ {file = "msgpack-1.1.0-cp310-cp310-win32.whl", hash = "sha256:3df7e6b05571b3814361e8464f9304c42d2196808e0119f55d0d3e62cd5ea044"},
+ {file = "msgpack-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:685ec345eefc757a7c8af44a3032734a739f8c45d1b0ac45efc5d8977aa4720f"},
+ {file = "msgpack-1.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d364a55082fb2a7416f6c63ae383fbd903adb5a6cf78c5b96cc6316dc1cedc7"},
+ {file = "msgpack-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79ec007767b9b56860e0372085f8504db5d06bd6a327a335449508bbee9648fa"},
+ {file = "msgpack-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6ad622bf7756d5a497d5b6836e7fc3752e2dd6f4c648e24b1803f6048596f701"},
+ {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e59bca908d9ca0de3dc8684f21ebf9a690fe47b6be93236eb40b99af28b6ea6"},
+ {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e1da8f11a3dd397f0a32c76165cf0c4eb95b31013a94f6ecc0b280c05c91b59"},
+ {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:452aff037287acb1d70a804ffd022b21fa2bb7c46bee884dbc864cc9024128a0"},
+ {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8da4bf6d54ceed70e8861f833f83ce0814a2b72102e890cbdfe4b34764cdd66e"},
+ {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:41c991beebf175faf352fb940bf2af9ad1fb77fd25f38d9142053914947cdbf6"},
+ {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a52a1f3a5af7ba1c9ace055b659189f6c669cf3657095b50f9602af3a3ba0fe5"},
+ {file = "msgpack-1.1.0-cp311-cp311-win32.whl", hash = "sha256:58638690ebd0a06427c5fe1a227bb6b8b9fdc2bd07701bec13c2335c82131a88"},
+ {file = "msgpack-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fd2906780f25c8ed5d7b323379f6138524ba793428db5d0e9d226d3fa6aa1788"},
+ {file = "msgpack-1.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d46cf9e3705ea9485687aa4001a76e44748b609d260af21c4ceea7f2212a501d"},
+ {file = "msgpack-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5dbad74103df937e1325cc4bfeaf57713be0b4f15e1c2da43ccdd836393e2ea2"},
+ {file = "msgpack-1.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:58dfc47f8b102da61e8949708b3eafc3504509a5728f8b4ddef84bd9e16ad420"},
+ {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4676e5be1b472909b2ee6356ff425ebedf5142427842aa06b4dfd5117d1ca8a2"},
+ {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17fb65dd0bec285907f68b15734a993ad3fc94332b5bb21b0435846228de1f39"},
+ {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a51abd48c6d8ac89e0cfd4fe177c61481aca2d5e7ba42044fd218cfd8ea9899f"},
+ {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2137773500afa5494a61b1208619e3871f75f27b03bcfca7b3a7023284140247"},
+ {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:398b713459fea610861c8a7b62a6fec1882759f308ae0795b5413ff6a160cf3c"},
+ {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:06f5fd2f6bb2a7914922d935d3b8bb4a7fff3a9a91cfce6d06c13bc42bec975b"},
+ {file = "msgpack-1.1.0-cp312-cp312-win32.whl", hash = "sha256:ad33e8400e4ec17ba782f7b9cf868977d867ed784a1f5f2ab46e7ba53b6e1e1b"},
+ {file = "msgpack-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:115a7af8ee9e8cddc10f87636767857e7e3717b7a2e97379dc2054712693e90f"},
+ {file = "msgpack-1.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:071603e2f0771c45ad9bc65719291c568d4edf120b44eb36324dcb02a13bfddf"},
+ {file = "msgpack-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0f92a83b84e7c0749e3f12821949d79485971f087604178026085f60ce109330"},
+ {file = "msgpack-1.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1964df7b81285d00a84da4e70cb1383f2e665e0f1f2a7027e683956d04b734"},
+ {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59caf6a4ed0d164055ccff8fe31eddc0ebc07cf7326a2aaa0dbf7a4001cd823e"},
+ {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0907e1a7119b337971a689153665764adc34e89175f9a34793307d9def08e6ca"},
+ {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65553c9b6da8166e819a6aa90ad15288599b340f91d18f60b2061f402b9a4915"},
+ {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7a946a8992941fea80ed4beae6bff74ffd7ee129a90b4dd5cf9c476a30e9708d"},
+ {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4b51405e36e075193bc051315dbf29168d6141ae2500ba8cd80a522964e31434"},
+ {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b4c01941fd2ff87c2a934ee6055bda4ed353a7846b8d4f341c428109e9fcde8c"},
+ {file = "msgpack-1.1.0-cp313-cp313-win32.whl", hash = "sha256:7c9a35ce2c2573bada929e0b7b3576de647b0defbd25f5139dcdaba0ae35a4cc"},
+ {file = "msgpack-1.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:bce7d9e614a04d0883af0b3d4d501171fbfca038f12c77fa838d9f198147a23f"},
+ {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c40ffa9a15d74e05ba1fe2681ea33b9caffd886675412612d93ab17b58ea2fec"},
+ {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1ba6136e650898082d9d5a5217d5906d1e138024f836ff48691784bbe1adf96"},
+ {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e0856a2b7e8dcb874be44fea031d22e5b3a19121be92a1e098f46068a11b0870"},
+ {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:471e27a5787a2e3f974ba023f9e265a8c7cfd373632247deb225617e3100a3c7"},
+ {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:646afc8102935a388ffc3914b336d22d1c2d6209c773f3eb5dd4d6d3b6f8c1cb"},
+ {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:13599f8829cfbe0158f6456374e9eea9f44eee08076291771d8ae93eda56607f"},
+ {file = "msgpack-1.1.0-cp38-cp38-win32.whl", hash = "sha256:8a84efb768fb968381e525eeeb3d92857e4985aacc39f3c47ffd00eb4509315b"},
+ {file = "msgpack-1.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:879a7b7b0ad82481c52d3c7eb99bf6f0645dbdec5134a4bddbd16f3506947feb"},
+ {file = "msgpack-1.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:53258eeb7a80fc46f62fd59c876957a2d0e15e6449a9e71842b6d24419d88ca1"},
+ {file = "msgpack-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7e7b853bbc44fb03fbdba34feb4bd414322180135e2cb5164f20ce1c9795ee48"},
+ {file = "msgpack-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3e9b4936df53b970513eac1758f3882c88658a220b58dcc1e39606dccaaf01c"},
+ {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46c34e99110762a76e3911fc923222472c9d681f1094096ac4102c18319e6468"},
+ {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a706d1e74dd3dea05cb54580d9bd8b2880e9264856ce5068027eed09680aa74"},
+ {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:534480ee5690ab3cbed89d4c8971a5c631b69a8c0883ecfea96c19118510c846"},
+ {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8cf9e8c3a2153934a23ac160cc4cba0ec035f6867c8013cc6077a79823370346"},
+ {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3180065ec2abbe13a4ad37688b61b99d7f9e012a535b930e0e683ad6bc30155b"},
+ {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c5a91481a3cc573ac8c0d9aace09345d989dc4a0202b7fcb312c88c26d4e71a8"},
+ {file = "msgpack-1.1.0-cp39-cp39-win32.whl", hash = "sha256:f80bc7d47f76089633763f952e67f8214cb7b3ee6bfa489b3cb6a84cfac114cd"},
+ {file = "msgpack-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:4d1b7ff2d6146e16e8bd665ac726a89c74163ef8cd39fa8c1087d4e52d3a2325"},
+ {file = "msgpack-1.1.0.tar.gz", hash = "sha256:dd432ccc2c72b914e4cb77afce64aab761c1137cc698be3984eee260bcb2896e"},
+]
+
+[[package]]
+name = "multiprocess"
+version = "0.70.17"
+description = "better multiprocessing and multithreading in Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "multiprocess-0.70.17-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7ddb24e5bcdb64e90ec5543a1f05a39463068b6d3b804aa3f2a4e16ec28562d6"},
+ {file = "multiprocess-0.70.17-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d729f55198a3579f6879766a6d9b72b42d4b320c0dcb7844afb774d75b573c62"},
+ {file = "multiprocess-0.70.17-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c2c82d0375baed8d8dd0d8c38eb87c5ae9c471f8e384ad203a36f095ee860f67"},
+ {file = "multiprocess-0.70.17-pp38-pypy38_pp73-macosx_10_9_arm64.whl", hash = "sha256:a22a6b1a482b80eab53078418bb0f7025e4f7d93cc8e1f36481477a023884861"},
+ {file = "multiprocess-0.70.17-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:349525099a0c9ac5936f0488b5ee73199098dac3ac899d81d326d238f9fd3ccd"},
+ {file = "multiprocess-0.70.17-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:27b8409c02b5dd89d336107c101dfbd1530a2cd4fd425fc27dcb7adb6e0b47bf"},
+ {file = "multiprocess-0.70.17-pp39-pypy39_pp73-macosx_10_13_arm64.whl", hash = "sha256:2ea0939b0f4760a16a548942c65c76ff5afd81fbf1083c56ae75e21faf92e426"},
+ {file = "multiprocess-0.70.17-pp39-pypy39_pp73-macosx_10_13_x86_64.whl", hash = "sha256:2b12e081df87ab755190e227341b2c3b17ee6587e9c82fecddcbe6aa812cd7f7"},
+ {file = "multiprocess-0.70.17-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:a0f01cd9d079af7a8296f521dc03859d1a414d14c1e2b6e676ef789333421c95"},
+ {file = "multiprocess-0.70.17-py310-none-any.whl", hash = "sha256:38357ca266b51a2e22841b755d9a91e4bb7b937979a54d411677111716c32744"},
+ {file = "multiprocess-0.70.17-py311-none-any.whl", hash = "sha256:2884701445d0177aec5bd5f6ee0df296773e4fb65b11903b94c613fb46cfb7d1"},
+ {file = "multiprocess-0.70.17-py312-none-any.whl", hash = "sha256:2818af14c52446b9617d1b0755fa70ca2f77c28b25ed97bdaa2c69a22c47b46c"},
+ {file = "multiprocess-0.70.17-py313-none-any.whl", hash = "sha256:20c28ca19079a6c879258103a6d60b94d4ffe2d9da07dda93fb1c8bc6243f522"},
+ {file = "multiprocess-0.70.17-py38-none-any.whl", hash = "sha256:1d52f068357acd1e5bbc670b273ef8f81d57863235d9fbf9314751886e141968"},
+ {file = "multiprocess-0.70.17-py39-none-any.whl", hash = "sha256:c3feb874ba574fbccfb335980020c1ac631fbf2a3f7bee4e2042ede62558a021"},
+ {file = "multiprocess-0.70.17.tar.gz", hash = "sha256:4ae2f11a3416809ebc9a48abfc8b14ecce0652a0944731a1493a3c1ba44ff57a"},
+]
+
+[package.dependencies]
+dill = ">=0.3.9"
+
+[[package]]
+name = "mypy-extensions"
+version = "1.0.0"
+description = "Type system extensions for programs checked with the mypy type checker."
+optional = false
+python-versions = ">=3.5"
+groups = ["main"]
+files = [
+ {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"},
+ {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"},
+]
+
+[[package]]
+name = "narwhals"
+version = "1.34.1"
+description = "Extremely lightweight compatibility layer between dataframe libraries"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "narwhals-1.34.1-py3-none-any.whl", hash = "sha256:aee49a30d1624371ad975ede2bab16cd125ab5df0fd185e2f4757e103b074d27"},
+ {file = "narwhals-1.34.1.tar.gz", hash = "sha256:8941a08cf62f39ae67be945090b20a19c51fb9048ac909cad2f95aee23f9e302"},
+]
+
+[package.extras]
+cudf = ["cudf (>=24.10.0)"]
+dask = ["dask[dataframe] (>=2024.8)"]
+duckdb = ["duckdb (>=1.0)"]
+ibis = ["ibis-framework (>=6.0.0)", "packaging", "pyarrow-hotfix", "rich"]
+modin = ["modin"]
+pandas = ["pandas (>=0.25.3)"]
+polars = ["polars (>=0.20.3)"]
+pyarrow = ["pyarrow (>=11.0.0)"]
+pyspark = ["pyspark (>=3.5.0)"]
+sqlframe = ["sqlframe (>=3.22.0)"]
+
+[[package]]
+name = "nbclient"
+version = "0.10.2"
+description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor."
+optional = false
+python-versions = ">=3.9.0"
+groups = ["dev"]
+files = [
+ {file = "nbclient-0.10.2-py3-none-any.whl", hash = "sha256:4ffee11e788b4a27fabeb7955547e4318a5298f34342a4bfd01f2e1faaeadc3d"},
+ {file = "nbclient-0.10.2.tar.gz", hash = "sha256:90b7fc6b810630db87a6d0c2250b1f0ab4cf4d3c27a299b0cde78a4ed3fd9193"},
+]
+
+[package.dependencies]
+jupyter-client = ">=6.1.12"
+jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
+nbformat = ">=5.1"
+traitlets = ">=5.4"
+
+[package.extras]
+dev = ["pre-commit"]
+docs = ["autodoc-traits", "flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "mock", "moto", "myst-parser", "nbconvert (>=7.1.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling", "testpath", "xmltodict"]
+test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.1.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"]
+
+[[package]]
+name = "nbconvert"
+version = "7.16.6"
+description = "Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (`import nbconvert`) or as a command line tool (invoked as `jupyter nbconvert ...`)."
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "nbconvert-7.16.6-py3-none-any.whl", hash = "sha256:1375a7b67e0c2883678c48e506dc320febb57685e5ee67faa51b18a90f3a712b"},
+ {file = "nbconvert-7.16.6.tar.gz", hash = "sha256:576a7e37c6480da7b8465eefa66c17844243816ce1ccc372633c6b71c3c0f582"},
+]
+
+[package.dependencies]
+beautifulsoup4 = "*"
+bleach = {version = "!=5.0.0", extras = ["css"]}
+defusedxml = "*"
+jinja2 = ">=3.0"
+jupyter-core = ">=4.7"
+jupyterlab-pygments = "*"
+markupsafe = ">=2.0"
+mistune = ">=2.0.3,<4"
+nbclient = ">=0.5.0"
+nbformat = ">=5.7"
+packaging = "*"
+pandocfilters = ">=1.4.1"
+pygments = ">=2.4.1"
+traitlets = ">=5.1"
+
+[package.extras]
+all = ["flaky", "ipykernel", "ipython", "ipywidgets (>=7.5)", "myst-parser", "nbsphinx (>=0.2.12)", "playwright", "pydata-sphinx-theme", "pyqtwebengine (>=5.15)", "pytest (>=7)", "sphinx (==5.0.2)", "sphinxcontrib-spelling", "tornado (>=6.1)"]
+docs = ["ipykernel", "ipython", "myst-parser", "nbsphinx (>=0.2.12)", "pydata-sphinx-theme", "sphinx (==5.0.2)", "sphinxcontrib-spelling"]
+qtpdf = ["pyqtwebengine (>=5.15)"]
+qtpng = ["pyqtwebengine (>=5.15)"]
+serve = ["tornado (>=6.1)"]
+test = ["flaky", "ipykernel", "ipywidgets (>=7.5)", "pytest (>=7)"]
+webpdf = ["playwright"]
+
+[[package]]
+name = "nbformat"
+version = "5.10.4"
+description = "The Jupyter Notebook format"
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b"},
+ {file = "nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a"},
+]
+
+[package.dependencies]
+fastjsonschema = ">=2.15"
+jsonschema = ">=2.6"
+jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
+traitlets = ">=5.1"
+
+[package.extras]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"]
+test = ["pep440", "pre-commit", "pytest", "testpath"]
+
+[[package]]
+name = "nest-asyncio"
+version = "1.6.0"
+description = "Patch asyncio to allow nested event loops"
+optional = false
+python-versions = ">=3.5"
+groups = ["main", "dev"]
+files = [
+ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"},
+ {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"},
+]
+
+[[package]]
+name = "networkx"
+version = "3.4.2"
+description = "Python package for creating and manipulating graphs and networks"
+optional = false
+python-versions = ">=3.10"
+groups = ["main"]
+files = [
+ {file = "networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f"},
+ {file = "networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1"},
+]
+
+[package.extras]
+default = ["matplotlib (>=3.7)", "numpy (>=1.24)", "pandas (>=2.0)", "scipy (>=1.10,!=1.11.0,!=1.11.1)"]
+developer = ["changelist (==0.5)", "mypy (>=1.1)", "pre-commit (>=3.2)", "rtoml"]
+doc = ["intersphinx-registry", "myst-nb (>=1.1)", "numpydoc (>=1.8.0)", "pillow (>=9.4)", "pydata-sphinx-theme (>=0.15)", "sphinx (>=7.3)", "sphinx-gallery (>=0.16)", "texext (>=0.6.7)"]
+example = ["cairocffi (>=1.7)", "contextily (>=1.6)", "igraph (>=0.11)", "momepy (>=0.7.2)", "osmnx (>=1.9)", "scikit-learn (>=1.5)", "seaborn (>=0.13)"]
+extra = ["lxml (>=4.6)", "pydot (>=3.0.1)", "pygraphviz (>=1.14)", "sympy (>=1.10)"]
+test = ["pytest (>=7.2)", "pytest-cov (>=4.0)"]
+
+[[package]]
+name = "notebook-shim"
+version = "0.2.4"
+description = "A shim layer for notebook traits and config"
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef"},
+ {file = "notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb"},
+]
+
+[package.dependencies]
+jupyter-server = ">=1.8,<3"
+
+[package.extras]
+test = ["pytest", "pytest-console-scripts", "pytest-jupyter", "pytest-tornasync"]
+
+[[package]]
+name = "nox"
+version = "2025.2.9"
+description = "Flexible test automation."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "nox-2025.2.9-py3-none-any.whl", hash = "sha256:7d1e92d1918c6980d70aee9cf1c1d19d16faa71c4afe338fffd39e8a460e2067"},
+ {file = "nox-2025.2.9.tar.gz", hash = "sha256:d50cd4ca568bd7621c2e6cbbc4845b3b7f7697f25d5fb0190ce8f4600be79768"},
+]
+
+[package.dependencies]
+argcomplete = ">=1.9.4,<4"
+attrs = ">=23.1"
+colorlog = ">=2.6.1,<7"
+dependency-groups = ">=1.1"
+packaging = ">=20.9"
+tomli = {version = ">=1", markers = "python_version < \"3.11\""}
+virtualenv = ">=20.14.1"
+
+[package.extras]
+tox-to-nox = ["importlib-resources ; python_version < \"3.9\"", "jinja2", "tox (>=4)"]
+uv = ["uv (>=0.1.6)"]
+
+[[package]]
+name = "numba"
+version = "0.56.4"
+description = "compiling Python code using LLVM"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "numba-0.56.4-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:9f62672145f8669ec08762895fe85f4cf0ead08ce3164667f2b94b2f62ab23c3"},
+ {file = "numba-0.56.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c602d015478b7958408d788ba00a50272649c5186ea8baa6cf71d4a1c761bba1"},
+ {file = "numba-0.56.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:85dbaed7a05ff96492b69a8900c5ba605551afb9b27774f7f10511095451137c"},
+ {file = "numba-0.56.4-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:f4cfc3a19d1e26448032049c79fc60331b104f694cf570a9e94f4e2c9d0932bb"},
+ {file = "numba-0.56.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4e08e203b163ace08bad500b0c16f6092b1eb34fd1fce4feaf31a67a3a5ecf3b"},
+ {file = "numba-0.56.4-cp310-cp310-win32.whl", hash = "sha256:0611e6d3eebe4cb903f1a836ffdb2bda8d18482bcd0a0dcc56e79e2aa3fefef5"},
+ {file = "numba-0.56.4-cp310-cp310-win_amd64.whl", hash = "sha256:fbfb45e7b297749029cb28694abf437a78695a100e7c2033983d69f0ba2698d4"},
+ {file = "numba-0.56.4-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:3cb1a07a082a61df80a468f232e452d818f5ae254b40c26390054e4e868556e0"},
+ {file = "numba-0.56.4-cp37-cp37m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d69ad934e13c15684e7887100a8f5f0f61d7a8e57e0fd29d9993210089a5b531"},
+ {file = "numba-0.56.4-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:dbcc847bac2d225265d054993a7f910fda66e73d6662fe7156452cac0325b073"},
+ {file = "numba-0.56.4-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8a95ca9cc77ea4571081f6594e08bd272b66060634b8324e99cd1843020364f9"},
+ {file = "numba-0.56.4-cp37-cp37m-win32.whl", hash = "sha256:fcdf84ba3ed8124eb7234adfbb8792f311991cbf8aed1cad4b1b1a7ee08380c1"},
+ {file = "numba-0.56.4-cp37-cp37m-win_amd64.whl", hash = "sha256:42f9e1be942b215df7e6cc9948cf9c15bb8170acc8286c063a9e57994ef82fd1"},
+ {file = "numba-0.56.4-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:553da2ce74e8862e18a72a209ed3b6d2924403bdd0fb341fa891c6455545ba7c"},
+ {file = "numba-0.56.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4373da9757049db7c90591e9ec55a2e97b2b36ba7ae3bf9c956a513374077470"},
+ {file = "numba-0.56.4-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3a993349b90569518739009d8f4b523dfedd7e0049e6838c0e17435c3e70dcc4"},
+ {file = "numba-0.56.4-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:720886b852a2d62619ae3900fe71f1852c62db4f287d0c275a60219e1643fc04"},
+ {file = "numba-0.56.4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e64d338b504c9394a4a34942df4627e1e6cb07396ee3b49fe7b8d6420aa5104f"},
+ {file = "numba-0.56.4-cp38-cp38-win32.whl", hash = "sha256:03fe94cd31e96185cce2fae005334a8cc712fc2ba7756e52dff8c9400718173f"},
+ {file = "numba-0.56.4-cp38-cp38-win_amd64.whl", hash = "sha256:91f021145a8081f881996818474ef737800bcc613ffb1e618a655725a0f9e246"},
+ {file = "numba-0.56.4-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:d0ae9270a7a5cc0ede63cd234b4ff1ce166c7a749b91dbbf45e0000c56d3eade"},
+ {file = "numba-0.56.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c75e8a5f810ce80a0cfad6e74ee94f9fde9b40c81312949bf356b7304ef20740"},
+ {file = "numba-0.56.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a12ef323c0f2101529d455cfde7f4135eaa147bad17afe10b48634f796d96abd"},
+ {file = "numba-0.56.4-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:03634579d10a6129181129de293dd6b5eaabee86881369d24d63f8fe352dd6cb"},
+ {file = "numba-0.56.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0240f9026b015e336069329839208ebd70ec34ae5bfbf402e4fcc8e06197528e"},
+ {file = "numba-0.56.4-cp39-cp39-win32.whl", hash = "sha256:14dbbabf6ffcd96ee2ac827389afa59a70ffa9f089576500434c34abf9b054a4"},
+ {file = "numba-0.56.4-cp39-cp39-win_amd64.whl", hash = "sha256:0da583c532cd72feefd8e551435747e0e0fbb3c0530357e6845fcc11e38d6aea"},
+ {file = "numba-0.56.4.tar.gz", hash = "sha256:32d9fef412c81483d7efe0ceb6cf4d3310fde8b624a9cecca00f790573ac96ee"},
+]
+
+[package.dependencies]
+llvmlite = "==0.39.*"
+numpy = ">=1.18,<1.24"
+setuptools = "*"
+
+[[package]]
+name = "numpy"
+version = "1.21.6"
+description = "NumPy is the fundamental package for array computing with Python."
+optional = false
+python-versions = ">=3.7,<3.11"
+groups = ["main"]
+files = [
+ {file = "numpy-1.21.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8737609c3bbdd48e380d463134a35ffad3b22dc56295eff6f79fd85bd0eeeb25"},
+ {file = "numpy-1.21.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fdffbfb6832cd0b300995a2b08b8f6fa9f6e856d562800fea9182316d99c4e8e"},
+ {file = "numpy-1.21.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3820724272f9913b597ccd13a467cc492a0da6b05df26ea09e78b171a0bb9da6"},
+ {file = "numpy-1.21.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f17e562de9edf691a42ddb1eb4a5541c20dd3f9e65b09ded2beb0799c0cf29bb"},
+ {file = "numpy-1.21.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f30427731561ce75d7048ac254dbe47a2ba576229250fb60f0fb74db96501a1"},
+ {file = "numpy-1.21.6-cp310-cp310-win32.whl", hash = "sha256:d4bf4d43077db55589ffc9009c0ba0a94fa4908b9586d6ccce2e0b164c86303c"},
+ {file = "numpy-1.21.6-cp310-cp310-win_amd64.whl", hash = "sha256:d136337ae3cc69aa5e447e78d8e1514be8c3ec9b54264e680cf0b4bd9011574f"},
+ {file = "numpy-1.21.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6aaf96c7f8cebc220cdfc03f1d5a31952f027dda050e5a703a0d1c396075e3e7"},
+ {file = "numpy-1.21.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:67c261d6c0a9981820c3a149d255a76918278a6b03b6a036800359aba1256d46"},
+ {file = "numpy-1.21.6-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a6be4cb0ef3b8c9250c19cc122267263093eee7edd4e3fa75395dfda8c17a8e2"},
+ {file = "numpy-1.21.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c4068a8c44014b2d55f3c3f574c376b2494ca9cc73d2f1bd692382b6dffe3db"},
+ {file = "numpy-1.21.6-cp37-cp37m-win32.whl", hash = "sha256:7c7e5fa88d9ff656e067876e4736379cc962d185d5cd808014a8a928d529ef4e"},
+ {file = "numpy-1.21.6-cp37-cp37m-win_amd64.whl", hash = "sha256:bcb238c9c96c00d3085b264e5c1a1207672577b93fa666c3b14a45240b14123a"},
+ {file = "numpy-1.21.6-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:82691fda7c3f77c90e62da69ae60b5ac08e87e775b09813559f8901a88266552"},
+ {file = "numpy-1.21.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:643843bcc1c50526b3a71cd2ee561cf0d8773f062c8cbaf9ffac9fdf573f83ab"},
+ {file = "numpy-1.21.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:357768c2e4451ac241465157a3e929b265dfac85d9214074985b1786244f2ef3"},
+ {file = "numpy-1.21.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9f411b2c3f3d76bba0865b35a425157c5dcf54937f82bbeb3d3c180789dd66a6"},
+ {file = "numpy-1.21.6-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4aa48afdce4660b0076a00d80afa54e8a97cd49f457d68a4342d188a09451c1a"},
+ {file = "numpy-1.21.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6a96eef20f639e6a97d23e57dd0c1b1069a7b4fd7027482a4c5c451cd7732f4"},
+ {file = "numpy-1.21.6-cp38-cp38-win32.whl", hash = "sha256:5c3c8def4230e1b959671eb959083661b4a0d2e9af93ee339c7dada6759a9470"},
+ {file = "numpy-1.21.6-cp38-cp38-win_amd64.whl", hash = "sha256:bf2ec4b75d0e9356edea834d1de42b31fe11f726a81dfb2c2112bc1eaa508fcf"},
+ {file = "numpy-1.21.6-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4391bd07606be175aafd267ef9bea87cf1b8210c787666ce82073b05f202add1"},
+ {file = "numpy-1.21.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:67f21981ba2f9d7ba9ade60c9e8cbaa8cf8e9ae51673934480e45cf55e953673"},
+ {file = "numpy-1.21.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ee5ec40fdd06d62fe5d4084bef4fd50fd4bb6bfd2bf519365f569dc470163ab0"},
+ {file = "numpy-1.21.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1dbe1c91269f880e364526649a52eff93ac30035507ae980d2fed33aaee633ac"},
+ {file = "numpy-1.21.6-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d9caa9d5e682102453d96a0ee10c7241b72859b01a941a397fd965f23b3e016b"},
+ {file = "numpy-1.21.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58459d3bad03343ac4b1b42ed14d571b8743dc80ccbf27444f266729df1d6f5b"},
+ {file = "numpy-1.21.6-cp39-cp39-win32.whl", hash = "sha256:7f5ae4f304257569ef3b948810816bc87c9146e8c446053539947eedeaa32786"},
+ {file = "numpy-1.21.6-cp39-cp39-win_amd64.whl", hash = "sha256:e31f0bb5928b793169b87e3d1e070f2342b22d5245c755e2b81caa29756246c3"},
+ {file = "numpy-1.21.6-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dd1c8f6bd65d07d3810b90d02eba7997e32abbdf1277a481d698969e921a3be0"},
+ {file = "numpy-1.21.6.zip", hash = "sha256:ecb55251139706669fdec2ff073c98ef8e9a84473e51e716211b41aa0f18e656"},
+]
+
+[[package]]
+name = "optuna"
+version = "4.2.1"
+description = "A hyperparameter optimization framework"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "optuna-4.2.1-py3-none-any.whl", hash = "sha256:6d38199013441d3f70fac27136e05c0188c5f4ec3848db708ac311cbdeb30dbf"},
+ {file = "optuna-4.2.1.tar.gz", hash = "sha256:2ecd74cdc8aaf5dda1f2b9e267999bab21def9a33e0a4f415ecae0c468c401e0"},
+]
+
+[package.dependencies]
+alembic = ">=1.5.0"
+colorlog = "*"
+numpy = "*"
+packaging = ">=20.0"
+PyYAML = "*"
+sqlalchemy = ">=1.4.2"
+tqdm = "*"
+
+[package.extras]
+benchmark = ["asv (>=0.5.0)", "cma", "virtualenv"]
+checking = ["black", "blackdoc", "flake8", "isort", "mypy", "mypy_boto3_s3", "types-PyYAML", "types-redis", "types-setuptools", "types-tqdm", "typing_extensions (>=3.10.0.0)"]
+document = ["ase", "cmaes (>=0.10.0)", "fvcore", "kaleido (<0.4)", "lightgbm", "matplotlib (!=3.6.0)", "pandas", "pillow", "plotly (>=4.9.0)", "scikit-learn", "sphinx", "sphinx-copybutton", "sphinx-gallery", "sphinx-notfound-page", "sphinx_rtd_theme (>=1.2.0)", "torch", "torchvision"]
+optional = ["boto3", "cmaes (>=0.10.0)", "google-cloud-storage", "grpcio", "matplotlib (!=3.6.0)", "pandas", "plotly (>=4.9.0)", "protobuf (>=5.28.1)", "redis", "scikit-learn (>=0.24.2)", "scipy", "torch ; python_version <= \"3.12\""]
+test = ["coverage", "fakeredis[lua]", "grpcio", "kaleido (<0.4)", "moto", "protobuf (>=5.28.1)", "pytest", "scipy (>=1.9.2)", "torch ; python_version <= \"3.12\""]
+
+[[package]]
+name = "optuna-integration"
+version = "3.6.0"
+description = "Integration libraries of Optuna."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "optuna-integration-3.6.0.tar.gz", hash = "sha256:f261c38586b22cd95639287ca694fc0f788482cfbb7bb83803caf404ce06a55a"},
+ {file = "optuna_integration-3.6.0-py3-none-any.whl", hash = "sha256:e281d4902ab728b4c86a997eb01e7bc54d921ae7cff40ed8f4e083f49d37e033"},
+]
+
+[package.dependencies]
+optuna = "*"
+
+[package.extras]
+all = ["botorch (<0.10.0)", "catalyst", "catboost (>=0.26) ; sys_platform != \"darwin\"", "catboost (>=0.26,<1.2) ; sys_platform == \"darwin\"", "cma", "distributed", "fastai", "gpytorch", "lightgbm", "lightning", "mlflow", "mxnet", "pandas", "pytorch-ignite", "scikit-learn (>=0.24.2)", "scikit-optimize", "scipy (>=1.9.2) ; python_version >= \"3.8\"", "shap", "skorch", "tensorboard", "tensorflow", "torch", "wandb", "xgboost"]
+checking = ["black", "blackdoc", "hacking", "isort", "mypy", "types-PyYAML", "types-redis", "types-setuptools", "typing-extensions (>=3.10.0.0)"]
+document = ["cma", "mlflow", "pandas", "scikit-learn (>=0.24.2)", "scipy (>=1.9.2) ; python_version >= \"3.8\"", "sphinx", "sphinx-rtd-theme"]
+test = ["coverage", "fakeredis[lua]", "pytest"]
+
+[[package]]
+name = "overrides"
+version = "7.7.0"
+description = "A decorator to automatically detect mismatch when overriding a method."
+optional = false
+python-versions = ">=3.6"
+groups = ["dev"]
+files = [
+ {file = "overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49"},
+ {file = "overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a"},
+]
+
+[[package]]
+name = "packaging"
+version = "23.2"
+description = "Core utilities for Python packages"
+optional = false
+python-versions = ">=3.7"
+groups = ["main", "dev"]
+files = [
+ {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"},
+ {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"},
+]
+
+[[package]]
+name = "pandas"
+version = "1.3.5"
+description = "Powerful data structures for data analysis, time series, and statistics"
+optional = false
+python-versions = ">=3.7.1"
+groups = ["main"]
+files = [
+ {file = "pandas-1.3.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:62d5b5ce965bae78f12c1c0df0d387899dd4211ec0bdc52822373f13a3a022b9"},
+ {file = "pandas-1.3.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:adfeb11be2d54f275142c8ba9bf67acee771b7186a5745249c7d5a06c670136b"},
+ {file = "pandas-1.3.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:60a8c055d58873ad81cae290d974d13dd479b82cbb975c3e1fa2cf1920715296"},
+ {file = "pandas-1.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd541ab09e1f80a2a1760032d665f6e032d8e44055d602d65eeea6e6e85498cb"},
+ {file = "pandas-1.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2651d75b9a167cc8cc572cf787ab512d16e316ae00ba81874b560586fa1325e0"},
+ {file = "pandas-1.3.5-cp310-cp310-win_amd64.whl", hash = "sha256:aaf183a615ad790801fa3cf2fa450e5b6d23a54684fe386f7e3208f8b9bfbef6"},
+ {file = "pandas-1.3.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:344295811e67f8200de2390093aeb3c8309f5648951b684d8db7eee7d1c81fb7"},
+ {file = "pandas-1.3.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:552020bf83b7f9033b57cbae65589c01e7ef1544416122da0c79140c93288f56"},
+ {file = "pandas-1.3.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cce0c6bbeb266b0e39e35176ee615ce3585233092f685b6a82362523e59e5b4"},
+ {file = "pandas-1.3.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d28a3c65463fd0d0ba8bbb7696b23073efee0510783340a44b08f5e96ffce0c"},
+ {file = "pandas-1.3.5-cp37-cp37m-win32.whl", hash = "sha256:a62949c626dd0ef7de11de34b44c6475db76995c2064e2d99c6498c3dba7fe58"},
+ {file = "pandas-1.3.5-cp37-cp37m-win_amd64.whl", hash = "sha256:8025750767e138320b15ca16d70d5cdc1886e8f9cc56652d89735c016cd8aea6"},
+ {file = "pandas-1.3.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fe95bae4e2d579812865db2212bb733144e34d0c6785c0685329e5b60fcb85dd"},
+ {file = "pandas-1.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f261553a1e9c65b7a310302b9dbac31cf0049a51695c14ebe04e4bfd4a96f02"},
+ {file = "pandas-1.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b6dbec5f3e6d5dc80dcfee250e0a2a652b3f28663492f7dab9a24416a48ac39"},
+ {file = "pandas-1.3.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3bc49af96cd6285030a64779de5b3688633a07eb75c124b0747134a63f4c05f"},
+ {file = "pandas-1.3.5-cp38-cp38-win32.whl", hash = "sha256:b6b87b2fb39e6383ca28e2829cddef1d9fc9e27e55ad91ca9c435572cdba51bf"},
+ {file = "pandas-1.3.5-cp38-cp38-win_amd64.whl", hash = "sha256:a395692046fd8ce1edb4c6295c35184ae0c2bbe787ecbe384251da609e27edcb"},
+ {file = "pandas-1.3.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bd971a3f08b745a75a86c00b97f3007c2ea175951286cdda6abe543e687e5f2f"},
+ {file = "pandas-1.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37f06b59e5bc05711a518aa10beaec10942188dccb48918bb5ae602ccbc9f1a0"},
+ {file = "pandas-1.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c21778a688d3712d35710501f8001cdbf96eb70a7c587a3d5613573299fdca6"},
+ {file = "pandas-1.3.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3345343206546545bc26a05b4602b6a24385b5ec7c75cb6059599e3d56831da2"},
+ {file = "pandas-1.3.5-cp39-cp39-win32.whl", hash = "sha256:c69406a2808ba6cf580c2255bcf260b3f214d2664a3a4197d0e640f573b46fd3"},
+ {file = "pandas-1.3.5-cp39-cp39-win_amd64.whl", hash = "sha256:32e1a26d5ade11b547721a72f9bfc4bd113396947606e00d5b4a5b79b3dcb006"},
+ {file = "pandas-1.3.5.tar.gz", hash = "sha256:1e4285f5de1012de20ca46b188ccf33521bff61ba5c5ebd78b4fb28e5416a9f1"},
+]
+
+[package.dependencies]
+numpy = {version = ">=1.21.0", markers = "python_version >= \"3.10\""}
+python-dateutil = ">=2.7.3"
+pytz = ">=2017.3"
+
+[package.extras]
+test = ["hypothesis (>=3.58)", "pytest (>=6.0)", "pytest-xdist"]
+
+[[package]]
+name = "pandocfilters"
+version = "1.5.1"
+description = "Utilities for writing pandoc filters in python"
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
+groups = ["dev"]
+files = [
+ {file = "pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc"},
+ {file = "pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e"},
+]
+
+[[package]]
+name = "parso"
+version = "0.8.4"
+description = "A Python Parser"
+optional = false
+python-versions = ">=3.6"
+groups = ["main", "dev"]
+files = [
+ {file = "parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18"},
+ {file = "parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d"},
+]
+
+[package.extras]
+qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"]
+testing = ["docopt", "pytest"]
+
+[[package]]
+name = "pathos"
+version = "0.3.3"
+description = "parallel graph management and execution in heterogeneous computing"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "pathos-0.3.3-py3-none-any.whl", hash = "sha256:e04616c6448608ad1f809360be22e3f2078d949a36a81e6991da6c2dd1f82513"},
+ {file = "pathos-0.3.3.tar.gz", hash = "sha256:dcb2a5f321aa34ca541c1c1861011ea49df357bb908379c21dd5741f666e0a58"},
+]
+
+[package.dependencies]
+dill = ">=0.3.9"
+multiprocess = ">=0.70.17"
+pox = ">=0.3.5"
+ppft = ">=1.7.6.9"
+
+[[package]]
+name = "pathspec"
+version = "0.12.1"
+description = "Utility library for gitignore style pattern matching of file paths."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"},
+ {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"},
+]
+
+[[package]]
+name = "patsy"
+version = "1.0.1"
+description = "A Python package for describing statistical models and for building design matrices."
+optional = false
+python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "patsy-1.0.1-py2.py3-none-any.whl", hash = "sha256:751fb38f9e97e62312e921a1954b81e1bb2bcda4f5eeabaf94db251ee791509c"},
+ {file = "patsy-1.0.1.tar.gz", hash = "sha256:e786a9391eec818c054e359b737bbce692f051aee4c661f4141cc88fb459c0c4"},
+]
+
+[package.dependencies]
+numpy = ">=1.4"
+
+[package.extras]
+test = ["pytest", "pytest-cov", "scipy"]
+
+[[package]]
+name = "pexpect"
+version = "4.9.0"
+description = "Pexpect allows easy control of interactive console applications."
+optional = false
+python-versions = "*"
+groups = ["main", "dev"]
+files = [
+ {file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"},
+ {file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"},
+]
+markers = {dev = "sys_platform != \"win32\" and sys_platform != \"emscripten\""}
+
+[package.dependencies]
+ptyprocess = ">=0.5"
+
+[[package]]
+name = "pickleshare"
+version = "0.7.5"
+description = "Tiny 'shelve'-like database with concurrency support"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"},
+ {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"},
+]
+
+[[package]]
+name = "pillow"
+version = "11.2.1"
+description = "Python Imaging Library (Fork)"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "pillow-11.2.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:d57a75d53922fc20c165016a20d9c44f73305e67c351bbc60d1adaf662e74047"},
+ {file = "pillow-11.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:127bf6ac4a5b58b3d32fc8289656f77f80567d65660bc46f72c0d77e6600cc95"},
+ {file = "pillow-11.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4ba4be812c7a40280629e55ae0b14a0aafa150dd6451297562e1764808bbe61"},
+ {file = "pillow-11.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8bd62331e5032bc396a93609982a9ab6b411c05078a52f5fe3cc59234a3abd1"},
+ {file = "pillow-11.2.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:562d11134c97a62fe3af29581f083033179f7ff435f78392565a1ad2d1c2c45c"},
+ {file = "pillow-11.2.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c97209e85b5be259994eb5b69ff50c5d20cca0f458ef9abd835e262d9d88b39d"},
+ {file = "pillow-11.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0c3e6d0f59171dfa2e25d7116217543310908dfa2770aa64b8f87605f8cacc97"},
+ {file = "pillow-11.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc1c3bc53befb6096b84165956e886b1729634a799e9d6329a0c512ab651e579"},
+ {file = "pillow-11.2.1-cp310-cp310-win32.whl", hash = "sha256:312c77b7f07ab2139924d2639860e084ec2a13e72af54d4f08ac843a5fc9c79d"},
+ {file = "pillow-11.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:9bc7ae48b8057a611e5fe9f853baa88093b9a76303937449397899385da06fad"},
+ {file = "pillow-11.2.1-cp310-cp310-win_arm64.whl", hash = "sha256:2728567e249cdd939f6cc3d1f049595c66e4187f3c34078cbc0a7d21c47482d2"},
+ {file = "pillow-11.2.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35ca289f712ccfc699508c4658a1d14652e8033e9b69839edf83cbdd0ba39e70"},
+ {file = "pillow-11.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0409af9f829f87a2dfb7e259f78f317a5351f2045158be321fd135973fff7bf"},
+ {file = "pillow-11.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4e5c5edee874dce4f653dbe59db7c73a600119fbea8d31f53423586ee2aafd7"},
+ {file = "pillow-11.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b93a07e76d13bff9444f1a029e0af2964e654bfc2e2c2d46bfd080df5ad5f3d8"},
+ {file = "pillow-11.2.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:e6def7eed9e7fa90fde255afaf08060dc4b343bbe524a8f69bdd2a2f0018f600"},
+ {file = "pillow-11.2.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8f4f3724c068be008c08257207210c138d5f3731af6c155a81c2b09a9eb3a788"},
+ {file = "pillow-11.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a0a6709b47019dff32e678bc12c63008311b82b9327613f534e496dacaefb71e"},
+ {file = "pillow-11.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f6b0c664ccb879109ee3ca702a9272d877f4fcd21e5eb63c26422fd6e415365e"},
+ {file = "pillow-11.2.1-cp311-cp311-win32.whl", hash = "sha256:cc5d875d56e49f112b6def6813c4e3d3036d269c008bf8aef72cd08d20ca6df6"},
+ {file = "pillow-11.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:0f5c7eda47bf8e3c8a283762cab94e496ba977a420868cb819159980b6709193"},
+ {file = "pillow-11.2.1-cp311-cp311-win_arm64.whl", hash = "sha256:4d375eb838755f2528ac8cbc926c3e31cc49ca4ad0cf79cff48b20e30634a4a7"},
+ {file = "pillow-11.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:78afba22027b4accef10dbd5eed84425930ba41b3ea0a86fa8d20baaf19d807f"},
+ {file = "pillow-11.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:78092232a4ab376a35d68c4e6d5e00dfd73454bd12b230420025fbe178ee3b0b"},
+ {file = "pillow-11.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25a5f306095c6780c52e6bbb6109624b95c5b18e40aab1c3041da3e9e0cd3e2d"},
+ {file = "pillow-11.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c7b29dbd4281923a2bfe562acb734cee96bbb129e96e6972d315ed9f232bef4"},
+ {file = "pillow-11.2.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:3e645b020f3209a0181a418bffe7b4a93171eef6c4ef6cc20980b30bebf17b7d"},
+ {file = "pillow-11.2.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b2dbea1012ccb784a65349f57bbc93730b96e85b42e9bf7b01ef40443db720b4"},
+ {file = "pillow-11.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:da3104c57bbd72948d75f6a9389e6727d2ab6333c3617f0a89d72d4940aa0443"},
+ {file = "pillow-11.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:598174aef4589af795f66f9caab87ba4ff860ce08cd5bb447c6fc553ffee603c"},
+ {file = "pillow-11.2.1-cp312-cp312-win32.whl", hash = "sha256:1d535df14716e7f8776b9e7fee118576d65572b4aad3ed639be9e4fa88a1cad3"},
+ {file = "pillow-11.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:14e33b28bf17c7a38eede290f77db7c664e4eb01f7869e37fa98a5aa95978941"},
+ {file = "pillow-11.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:21e1470ac9e5739ff880c211fc3af01e3ae505859392bf65458c224d0bf283eb"},
+ {file = "pillow-11.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fdec757fea0b793056419bca3e9932eb2b0ceec90ef4813ea4c1e072c389eb28"},
+ {file = "pillow-11.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b0e130705d568e2f43a17bcbe74d90958e8a16263868a12c3e0d9c8162690830"},
+ {file = "pillow-11.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bdb5e09068332578214cadd9c05e3d64d99e0e87591be22a324bdbc18925be0"},
+ {file = "pillow-11.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d189ba1bebfbc0c0e529159631ec72bb9e9bc041f01ec6d3233d6d82eb823bc1"},
+ {file = "pillow-11.2.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:191955c55d8a712fab8934a42bfefbf99dd0b5875078240943f913bb66d46d9f"},
+ {file = "pillow-11.2.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:ad275964d52e2243430472fc5d2c2334b4fc3ff9c16cb0a19254e25efa03a155"},
+ {file = "pillow-11.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:750f96efe0597382660d8b53e90dd1dd44568a8edb51cb7f9d5d918b80d4de14"},
+ {file = "pillow-11.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fe15238d3798788d00716637b3d4e7bb6bde18b26e5d08335a96e88564a36b6b"},
+ {file = "pillow-11.2.1-cp313-cp313-win32.whl", hash = "sha256:3fe735ced9a607fee4f481423a9c36701a39719252a9bb251679635f99d0f7d2"},
+ {file = "pillow-11.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:74ee3d7ecb3f3c05459ba95eed5efa28d6092d751ce9bf20e3e253a4e497e691"},
+ {file = "pillow-11.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:5119225c622403afb4b44bad4c1ca6c1f98eed79db8d3bc6e4e160fc6339d66c"},
+ {file = "pillow-11.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8ce2e8411c7aaef53e6bb29fe98f28cd4fbd9a1d9be2eeea434331aac0536b22"},
+ {file = "pillow-11.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:9ee66787e095127116d91dea2143db65c7bb1e232f617aa5957c0d9d2a3f23a7"},
+ {file = "pillow-11.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9622e3b6c1d8b551b6e6f21873bdcc55762b4b2126633014cea1803368a9aa16"},
+ {file = "pillow-11.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63b5dff3a68f371ea06025a1a6966c9a1e1ee452fc8020c2cd0ea41b83e9037b"},
+ {file = "pillow-11.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:31df6e2d3d8fc99f993fd253e97fae451a8db2e7207acf97859732273e108406"},
+ {file = "pillow-11.2.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:062b7a42d672c45a70fa1f8b43d1d38ff76b63421cbbe7f88146b39e8a558d91"},
+ {file = "pillow-11.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4eb92eca2711ef8be42fd3f67533765d9fd043b8c80db204f16c8ea62ee1a751"},
+ {file = "pillow-11.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f91ebf30830a48c825590aede79376cb40f110b387c17ee9bd59932c961044f9"},
+ {file = "pillow-11.2.1-cp313-cp313t-win32.whl", hash = "sha256:e0b55f27f584ed623221cfe995c912c61606be8513bfa0e07d2c674b4516d9dd"},
+ {file = "pillow-11.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:36d6b82164c39ce5482f649b437382c0fb2395eabc1e2b1702a6deb8ad647d6e"},
+ {file = "pillow-11.2.1-cp313-cp313t-win_arm64.whl", hash = "sha256:225c832a13326e34f212d2072982bb1adb210e0cc0b153e688743018c94a2681"},
+ {file = "pillow-11.2.1-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:7491cf8a79b8eb867d419648fff2f83cb0b3891c8b36da92cc7f1931d46108c8"},
+ {file = "pillow-11.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8b02d8f9cb83c52578a0b4beadba92e37d83a4ef11570a8688bbf43f4ca50909"},
+ {file = "pillow-11.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:014ca0050c85003620526b0ac1ac53f56fc93af128f7546623cc8e31875ab928"},
+ {file = "pillow-11.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3692b68c87096ac6308296d96354eddd25f98740c9d2ab54e1549d6c8aea9d79"},
+ {file = "pillow-11.2.1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:f781dcb0bc9929adc77bad571b8621ecb1e4cdef86e940fe2e5b5ee24fd33b35"},
+ {file = "pillow-11.2.1-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:2b490402c96f907a166615e9a5afacf2519e28295f157ec3a2bb9bd57de638cb"},
+ {file = "pillow-11.2.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dd6b20b93b3ccc9c1b597999209e4bc5cf2853f9ee66e3fc9a400a78733ffc9a"},
+ {file = "pillow-11.2.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4b835d89c08a6c2ee7781b8dd0a30209a8012b5f09c0a665b65b0eb3560b6f36"},
+ {file = "pillow-11.2.1-cp39-cp39-win32.whl", hash = "sha256:b10428b3416d4f9c61f94b494681280be7686bda15898a3a9e08eb66a6d92d67"},
+ {file = "pillow-11.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:6ebce70c3f486acf7591a3d73431fa504a4e18a9b97ff27f5f47b7368e4b9dd1"},
+ {file = "pillow-11.2.1-cp39-cp39-win_arm64.whl", hash = "sha256:c27476257b2fdcd7872d54cfd119b3a9ce4610fb85c8e32b70b42e3680a29a1e"},
+ {file = "pillow-11.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:9b7b0d4fd2635f54ad82785d56bc0d94f147096493a79985d0ab57aedd563156"},
+ {file = "pillow-11.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:aa442755e31c64037aa7c1cb186e0b369f8416c567381852c63444dd666fb772"},
+ {file = "pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0d3348c95b766f54b76116d53d4cb171b52992a1027e7ca50c81b43b9d9e363"},
+ {file = "pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85d27ea4c889342f7e35f6d56e7e1cb345632ad592e8c51b693d7b7556043ce0"},
+ {file = "pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:bf2c33d6791c598142f00c9c4c7d47f6476731c31081331664eb26d6ab583e01"},
+ {file = "pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e616e7154c37669fc1dfc14584f11e284e05d1c650e1c0f972f281c4ccc53193"},
+ {file = "pillow-11.2.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:39ad2e0f424394e3aebc40168845fee52df1394a4673a6ee512d840d14ab3013"},
+ {file = "pillow-11.2.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:80f1df8dbe9572b4b7abdfa17eb5d78dd620b1d55d9e25f834efdbee872d3aed"},
+ {file = "pillow-11.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ea926cfbc3957090becbcbbb65ad177161a2ff2ad578b5a6ec9bb1e1cd78753c"},
+ {file = "pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:738db0e0941ca0376804d4de6a782c005245264edaa253ffce24e5a15cbdc7bd"},
+ {file = "pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9db98ab6565c69082ec9b0d4e40dd9f6181dab0dd236d26f7a50b8b9bfbd5076"},
+ {file = "pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:036e53f4170e270ddb8797d4c590e6dd14d28e15c7da375c18978045f7e6c37b"},
+ {file = "pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:14f73f7c291279bd65fda51ee87affd7c1e097709f7fdd0188957a16c264601f"},
+ {file = "pillow-11.2.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:208653868d5c9ecc2b327f9b9ef34e0e42a4cdd172c2988fd81d62d2bc9bc044"},
+ {file = "pillow-11.2.1.tar.gz", hash = "sha256:a64dd61998416367b7ef979b73d3a85853ba9bec4c2925f74e588879a58716b6"},
+]
+
+[package.extras]
+docs = ["furo", "olefile", "sphinx (>=8.2)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"]
+fpx = ["olefile"]
+mic = ["olefile"]
+test-arrow = ["pyarrow"]
+tests = ["check-manifest", "coverage (>=7.4.2)", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout", "trove-classifiers (>=2024.10.12)"]
+typing = ["typing-extensions ; python_version < \"3.10\""]
+xmp = ["defusedxml"]
+
+[[package]]
+name = "pkgutil-resolve-name"
+version = "1.3.10"
+description = "Resolve a name to an object."
+optional = false
+python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "pkgutil_resolve_name-1.3.10-py3-none-any.whl", hash = "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e"},
+ {file = "pkgutil_resolve_name-1.3.10.tar.gz", hash = "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174"},
+]
+
+[[package]]
+name = "platformdirs"
+version = "4.3.7"
+description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`."
+optional = false
+python-versions = ">=3.9"
+groups = ["main", "dev"]
+files = [
+ {file = "platformdirs-4.3.7-py3-none-any.whl", hash = "sha256:a03875334331946f13c549dbd8f4bac7a13a50a895a0eb1e8c6a8ace80d40a94"},
+ {file = "platformdirs-4.3.7.tar.gz", hash = "sha256:eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351"},
+]
+
+[package.extras]
+docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"]
+test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.4)", "pytest-cov (>=6)", "pytest-mock (>=3.14)"]
+type = ["mypy (>=1.14.1)"]
+
+[[package]]
+name = "plotly"
+version = "6.0.1"
+description = "An open-source interactive data visualization library for Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "plotly-6.0.1-py3-none-any.whl", hash = "sha256:4714db20fea57a435692c548a4eb4fae454f7daddf15f8d8ba7e1045681d7768"},
+ {file = "plotly-6.0.1.tar.gz", hash = "sha256:dd8400229872b6e3c964b099be699f8d00c489a974f2cfccfad5e8240873366b"},
+]
+
+[package.dependencies]
+narwhals = ">=1.15.1"
+packaging = "*"
+
+[package.extras]
+express = ["numpy"]
+
+[[package]]
+name = "pluggy"
+version = "1.5.0"
+description = "plugin and hook calling mechanisms for python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"},
+ {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"},
+]
+
+[package.extras]
+dev = ["pre-commit", "tox"]
+testing = ["pytest", "pytest-benchmark"]
+
+[[package]]
+name = "pox"
+version = "0.3.5"
+description = "utilities for filesystem exploration and automated builds"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "pox-0.3.5-py3-none-any.whl", hash = "sha256:9e82bcc9e578b43e80a99cad80f0d8f44f4d424f0ee4ee8d4db27260a6aa365a"},
+ {file = "pox-0.3.5.tar.gz", hash = "sha256:8120ee4c94e950e6e0483e050a4f0e56076e590ba0a9add19524c254bd23c2d1"},
+]
+
+[[package]]
+name = "ppft"
+version = "1.7.6.9"
+description = "distributed and parallel Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "ppft-1.7.6.9-py3-none-any.whl", hash = "sha256:dab36548db5ca3055067fbe6b1a17db5fee29f3c366c579a9a27cebb52ed96f0"},
+ {file = "ppft-1.7.6.9.tar.gz", hash = "sha256:73161c67474ea9d81d04bcdad166d399cff3f084d5d2dc21ebdd46c075bbc265"},
+]
+
+[package.extras]
+dill = ["dill (>=0.3.9)"]
+
+[[package]]
+name = "prometheus-client"
+version = "0.21.1"
+description = "Python client for the Prometheus monitoring system."
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "prometheus_client-0.21.1-py3-none-any.whl", hash = "sha256:594b45c410d6f4f8888940fe80b5cc2521b305a1fafe1c58609ef715a001f301"},
+ {file = "prometheus_client-0.21.1.tar.gz", hash = "sha256:252505a722ac04b0456be05c05f75f45d760c2911ffc45f2a06bcaed9f3ae3fb"},
+]
+
+[package.extras]
+twisted = ["twisted"]
+
+[[package]]
+name = "prompt-toolkit"
+version = "3.0.50"
+description = "Library for building powerful interactive command lines in Python"
+optional = false
+python-versions = ">=3.8.0"
+groups = ["main", "dev"]
+files = [
+ {file = "prompt_toolkit-3.0.50-py3-none-any.whl", hash = "sha256:9b6427eb19e479d98acff65196a307c555eb567989e6d88ebbb1b509d9779198"},
+ {file = "prompt_toolkit-3.0.50.tar.gz", hash = "sha256:544748f3860a2623ca5cd6d2795e7a14f3d0e1c3c9728359013f79877fc89bab"},
+]
+
+[package.dependencies]
+wcwidth = "*"
+
+[[package]]
+name = "protobuf"
+version = "6.30.2"
+description = ""
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "protobuf-6.30.2-cp310-abi3-win32.whl", hash = "sha256:b12ef7df7b9329886e66404bef5e9ce6a26b54069d7f7436a0853ccdeb91c103"},
+ {file = "protobuf-6.30.2-cp310-abi3-win_amd64.whl", hash = "sha256:7653c99774f73fe6b9301b87da52af0e69783a2e371e8b599b3e9cb4da4b12b9"},
+ {file = "protobuf-6.30.2-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:0eb523c550a66a09a0c20f86dd554afbf4d32b02af34ae53d93268c1f73bc65b"},
+ {file = "protobuf-6.30.2-cp39-abi3-manylinux2014_aarch64.whl", hash = "sha256:50f32cc9fd9cb09c783ebc275611b4f19dfdfb68d1ee55d2f0c7fa040df96815"},
+ {file = "protobuf-6.30.2-cp39-abi3-manylinux2014_x86_64.whl", hash = "sha256:4f6c687ae8efae6cf6093389a596548214467778146b7245e886f35e1485315d"},
+ {file = "protobuf-6.30.2-cp39-cp39-win32.whl", hash = "sha256:524afedc03b31b15586ca7f64d877a98b184f007180ce25183d1a5cb230ee72b"},
+ {file = "protobuf-6.30.2-cp39-cp39-win_amd64.whl", hash = "sha256:acec579c39c88bd8fbbacab1b8052c793efe83a0a5bd99db4a31423a25c0a0e2"},
+ {file = "protobuf-6.30.2-py3-none-any.whl", hash = "sha256:ae86b030e69a98e08c77beab574cbcb9fff6d031d57209f574a5aea1445f4b51"},
+ {file = "protobuf-6.30.2.tar.gz", hash = "sha256:35c859ae076d8c56054c25b59e5e59638d86545ed6e2b6efac6be0b6ea3ba048"},
+]
+
+[[package]]
+name = "psutil"
+version = "7.0.0"
+description = "Cross-platform lib for process and system monitoring in Python. NOTE: the syntax of this script MUST be kept compatible with Python 2.7."
+optional = false
+python-versions = ">=3.6"
+groups = ["main", "dev"]
+files = [
+ {file = "psutil-7.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:101d71dc322e3cffd7cea0650b09b3d08b8e7c4109dd6809fe452dfd00e58b25"},
+ {file = "psutil-7.0.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:39db632f6bb862eeccf56660871433e111b6ea58f2caea825571951d4b6aa3da"},
+ {file = "psutil-7.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fcee592b4c6f146991ca55919ea3d1f8926497a713ed7faaf8225e174581e91"},
+ {file = "psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b1388a4f6875d7e2aff5c4ca1cc16c545ed41dd8bb596cefea80111db353a34"},
+ {file = "psutil-7.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5f098451abc2828f7dc6b58d44b532b22f2088f4999a937557b603ce72b1993"},
+ {file = "psutil-7.0.0-cp36-cp36m-win32.whl", hash = "sha256:84df4eb63e16849689f76b1ffcb36db7b8de703d1bc1fe41773db487621b6c17"},
+ {file = "psutil-7.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1e744154a6580bc968a0195fd25e80432d3afec619daf145b9e5ba16cc1d688e"},
+ {file = "psutil-7.0.0-cp37-abi3-win32.whl", hash = "sha256:ba3fcef7523064a6c9da440fc4d6bd07da93ac726b5733c29027d7dc95b39d99"},
+ {file = "psutil-7.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:4cf3d4eb1aa9b348dec30105c55cd9b7d4629285735a102beb4441e38db90553"},
+ {file = "psutil-7.0.0.tar.gz", hash = "sha256:7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456"},
+]
+
+[package.extras]
+dev = ["abi3audit", "black (==24.10.0)", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest", "pytest-cov", "pytest-xdist", "requests", "rstcheck", "ruff", "setuptools", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "vulture", "wheel"]
+test = ["pytest", "pytest-xdist", "setuptools"]
+
+[[package]]
+name = "ptyprocess"
+version = "0.7.0"
+description = "Run a subprocess in a pseudo terminal"
+optional = false
+python-versions = "*"
+groups = ["main", "dev"]
+files = [
+ {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
+ {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"},
+]
+markers = {dev = "sys_platform != \"win32\" and sys_platform != \"emscripten\" or os_name != \"nt\""}
+
+[[package]]
+name = "pure-eval"
+version = "0.2.3"
+description = "Safely evaluate AST nodes without side effects"
+optional = false
+python-versions = "*"
+groups = ["main", "dev"]
+files = [
+ {file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"},
+ {file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"},
+]
+
+[package.extras]
+tests = ["pytest"]
+
+[[package]]
+name = "py4j"
+version = "0.10.9.9"
+description = "Enables Python programs to dynamically access arbitrary Java objects"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "py4j-0.10.9.9-py2.py3-none-any.whl", hash = "sha256:c7c26e4158defb37b0bb124933163641a2ff6e3a3913f7811b0ddbe07ed61533"},
+ {file = "py4j-0.10.9.9.tar.gz", hash = "sha256:f694cad19efa5bd1dee4f3e5270eb406613c974394035e5bfc4ec1aba870b879"},
+]
+
+[[package]]
+name = "pyarrow"
+version = "19.0.1"
+description = "Python library for Apache Arrow"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "pyarrow-19.0.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:fc28912a2dc924dddc2087679cc8b7263accc71b9ff025a1362b004711661a69"},
+ {file = "pyarrow-19.0.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:fca15aabbe9b8355800d923cc2e82c8ef514af321e18b437c3d782aa884eaeec"},
+ {file = "pyarrow-19.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad76aef7f5f7e4a757fddcdcf010a8290958f09e3470ea458c80d26f4316ae89"},
+ {file = "pyarrow-19.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d03c9d6f2a3dffbd62671ca070f13fc527bb1867b4ec2b98c7eeed381d4f389a"},
+ {file = "pyarrow-19.0.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:65cf9feebab489b19cdfcfe4aa82f62147218558d8d3f0fc1e9dea0ab8e7905a"},
+ {file = "pyarrow-19.0.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:41f9706fbe505e0abc10e84bf3a906a1338905cbbcf1177b71486b03e6ea6608"},
+ {file = "pyarrow-19.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:c6cb2335a411b713fdf1e82a752162f72d4a7b5dbc588e32aa18383318b05866"},
+ {file = "pyarrow-19.0.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:cc55d71898ea30dc95900297d191377caba257612f384207fe9f8293b5850f90"},
+ {file = "pyarrow-19.0.1-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:7a544ec12de66769612b2d6988c36adc96fb9767ecc8ee0a4d270b10b1c51e00"},
+ {file = "pyarrow-19.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0148bb4fc158bfbc3d6dfe5001d93ebeed253793fff4435167f6ce1dc4bddeae"},
+ {file = "pyarrow-19.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f24faab6ed18f216a37870d8c5623f9c044566d75ec586ef884e13a02a9d62c5"},
+ {file = "pyarrow-19.0.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:4982f8e2b7afd6dae8608d70ba5bd91699077323f812a0448d8b7abdff6cb5d3"},
+ {file = "pyarrow-19.0.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:49a3aecb62c1be1d822f8bf629226d4a96418228a42f5b40835c1f10d42e4db6"},
+ {file = "pyarrow-19.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:008a4009efdb4ea3d2e18f05cd31f9d43c388aad29c636112c2966605ba33466"},
+ {file = "pyarrow-19.0.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:80b2ad2b193e7d19e81008a96e313fbd53157945c7be9ac65f44f8937a55427b"},
+ {file = "pyarrow-19.0.1-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:ee8dec072569f43835932a3b10c55973593abc00936c202707a4ad06af7cb294"},
+ {file = "pyarrow-19.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d5d1ec7ec5324b98887bdc006f4d2ce534e10e60f7ad995e7875ffa0ff9cb14"},
+ {file = "pyarrow-19.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3ad4c0eb4e2a9aeb990af6c09e6fa0b195c8c0e7b272ecc8d4d2b6574809d34"},
+ {file = "pyarrow-19.0.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:d383591f3dcbe545f6cc62daaef9c7cdfe0dff0fb9e1c8121101cabe9098cfa6"},
+ {file = "pyarrow-19.0.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b4c4156a625f1e35d6c0b2132635a237708944eb41df5fbe7d50f20d20c17832"},
+ {file = "pyarrow-19.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:5bd1618ae5e5476b7654c7b55a6364ae87686d4724538c24185bbb2952679960"},
+ {file = "pyarrow-19.0.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:e45274b20e524ae5c39d7fc1ca2aa923aab494776d2d4b316b49ec7572ca324c"},
+ {file = "pyarrow-19.0.1-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:d9dedeaf19097a143ed6da37f04f4051aba353c95ef507764d344229b2b740ae"},
+ {file = "pyarrow-19.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ebfb5171bb5f4a52319344ebbbecc731af3f021e49318c74f33d520d31ae0c4"},
+ {file = "pyarrow-19.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a21d39fbdb948857f67eacb5bbaaf36802de044ec36fbef7a1c8f0dd3a4ab2"},
+ {file = "pyarrow-19.0.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:99bc1bec6d234359743b01e70d4310d0ab240c3d6b0da7e2a93663b0158616f6"},
+ {file = "pyarrow-19.0.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:1b93ef2c93e77c442c979b0d596af45e4665d8b96da598db145b0fec014b9136"},
+ {file = "pyarrow-19.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:d9d46e06846a41ba906ab25302cf0fd522f81aa2a85a71021826f34639ad31ef"},
+ {file = "pyarrow-19.0.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:c0fe3dbbf054a00d1f162fda94ce236a899ca01123a798c561ba307ca38af5f0"},
+ {file = "pyarrow-19.0.1-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:96606c3ba57944d128e8a8399da4812f56c7f61de8c647e3470b417f795d0ef9"},
+ {file = "pyarrow-19.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f04d49a6b64cf24719c080b3c2029a3a5b16417fd5fd7c4041f94233af732f3"},
+ {file = "pyarrow-19.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a9137cf7e1640dce4c190551ee69d478f7121b5c6f323553b319cac936395f6"},
+ {file = "pyarrow-19.0.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:7c1bca1897c28013db5e4c83944a2ab53231f541b9e0c3f4791206d0c0de389a"},
+ {file = "pyarrow-19.0.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:58d9397b2e273ef76264b45531e9d552d8ec8a6688b7390b5be44c02a37aade8"},
+ {file = "pyarrow-19.0.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b9766a47a9cb56fefe95cb27f535038b5a195707a08bf61b180e642324963b46"},
+ {file = "pyarrow-19.0.1-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:6c5941c1aac89a6c2f2b16cd64fe76bcdb94b2b1e99ca6459de4e6f07638d755"},
+ {file = "pyarrow-19.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd44d66093a239358d07c42a91eebf5015aa54fccba959db899f932218ac9cc8"},
+ {file = "pyarrow-19.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:335d170e050bcc7da867a1ed8ffb8b44c57aaa6e0843b156a501298657b1e972"},
+ {file = "pyarrow-19.0.1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:1c7556165bd38cf0cd992df2636f8bcdd2d4b26916c6b7e646101aff3c16f76f"},
+ {file = "pyarrow-19.0.1-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:699799f9c80bebcf1da0983ba86d7f289c5a2a5c04b945e2f2bcf7e874a91911"},
+ {file = "pyarrow-19.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:8464c9fbe6d94a7fe1599e7e8965f350fd233532868232ab2596a71586c5a429"},
+ {file = "pyarrow-19.0.1.tar.gz", hash = "sha256:3bf266b485df66a400f282ac0b6d1b500b9d2ae73314a153dbe97d6d5cc8a99e"},
+]
+
+[package.extras]
+test = ["cffi", "hypothesis", "pandas", "pytest", "pytz"]
+
+[[package]]
+name = "pycodestyle"
+version = "2.13.0"
+description = "Python style guide checker"
+optional = false
+python-versions = ">=3.9"
+groups = ["main", "dev"]
+files = [
+ {file = "pycodestyle-2.13.0-py2.py3-none-any.whl", hash = "sha256:35863c5974a271c7a726ed228a14a4f6daf49df369d8c50cd9a6f58a5e143ba9"},
+ {file = "pycodestyle-2.13.0.tar.gz", hash = "sha256:c8415bf09abe81d9c7f872502a6eee881fbe85d8763dd5b9924bb0a01d67efae"},
+]
+
+[[package]]
+name = "pycparser"
+version = "2.22"
+description = "C parser in Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"},
+ {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"},
+]
+markers = {main = "platform_python_implementation == \"CPython\" and sys_platform == \"win32\" or implementation_name == \"pypy\""}
+
+[[package]]
+name = "pyflakes"
+version = "3.3.2"
+description = "passive checker of Python programs"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "pyflakes-3.3.2-py2.py3-none-any.whl", hash = "sha256:5039c8339cbb1944045f4ee5466908906180f13cc99cc9949348d10f82a5c32a"},
+ {file = "pyflakes-3.3.2.tar.gz", hash = "sha256:6dfd61d87b97fba5dcfaaf781171ac16be16453be6d816147989e7f6e6a9576b"},
+]
+
+[[package]]
+name = "pygments"
+version = "2.19.1"
+description = "Pygments is a syntax highlighting package written in Python."
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c"},
+ {file = "pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f"},
+]
+
+[package.extras]
+windows-terminal = ["colorama (>=0.4.6)"]
+
+[[package]]
+name = "pyparsing"
+version = "3.2.3"
+description = "pyparsing module - Classes and methods to define and execute parsing grammars"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf"},
+ {file = "pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be"},
+]
+
+[package.extras]
+diagrams = ["jinja2", "railroad-diagrams"]
+
+[[package]]
+name = "pyrsistent"
+version = "0.20.0"
+description = "Persistent/Functional/Immutable data structures"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"},
+ {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"},
+ {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"},
+ {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"},
+ {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"},
+ {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"},
+ {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"},
+ {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"},
+ {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"},
+ {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"},
+ {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"},
+ {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"},
+ {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"},
+ {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"},
+ {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"},
+ {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"},
+ {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"},
+ {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"},
+ {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"},
+ {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"},
+ {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"},
+ {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"},
+ {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"},
+ {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"},
+ {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"},
+ {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"},
+ {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"},
+ {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"},
+ {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"},
+ {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"},
+ {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"},
+ {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"},
+]
+
+[[package]]
+name = "pytest"
+version = "8.3.5"
+description = "pytest: simple powerful testing with Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "pytest-8.3.5-py3-none-any.whl", hash = "sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820"},
+ {file = "pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845"},
+]
+
+[package.dependencies]
+colorama = {version = "*", markers = "sys_platform == \"win32\""}
+exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""}
+iniconfig = "*"
+packaging = "*"
+pluggy = ">=1.5,<2"
+tomli = {version = ">=1", markers = "python_version < \"3.11\""}
+
+[package.extras]
+dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"]
+
+[[package]]
+name = "python-dateutil"
+version = "2.8.2"
+description = "Extensions to the standard Python datetime module"
+optional = false
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
+groups = ["main", "dev"]
+files = [
+ {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"},
+ {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"},
+]
+
+[package.dependencies]
+six = ">=1.5"
+
+[[package]]
+name = "python-dotenv"
+version = "1.1.0"
+description = "Read key-value pairs from a .env file and set them as environment variables"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "python_dotenv-1.1.0-py3-none-any.whl", hash = "sha256:d7c01d9e2293916c18baf562d95698754b0dbbb5e74d457c45d4f6561fb9d55d"},
+ {file = "python_dotenv-1.1.0.tar.gz", hash = "sha256:41f90bc6f5f177fb41f53e87666db362025010eb28f60a01c9143bfa33a2b2d5"},
+]
+
+[package.extras]
+cli = ["click (>=5.0)"]
+
+[[package]]
+name = "python-json-logger"
+version = "3.3.0"
+description = "JSON Log Formatter for the Python Logging Package"
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "python_json_logger-3.3.0-py3-none-any.whl", hash = "sha256:dd980fae8cffb24c13caf6e158d3d61c0d6d22342f932cb6e9deedab3d35eec7"},
+ {file = "python_json_logger-3.3.0.tar.gz", hash = "sha256:12b7e74b17775e7d565129296105bbe3910842d9d0eb083fc83a6a617aa8df84"},
+]
+
+[package.extras]
+dev = ["backports.zoneinfo ; python_version < \"3.9\"", "black", "build", "freezegun", "mdx_truly_sane_lists", "mike", "mkdocs", "mkdocs-awesome-pages-plugin", "mkdocs-gen-files", "mkdocs-literate-nav", "mkdocs-material (>=8.5)", "mkdocstrings[python]", "msgspec ; implementation_name != \"pypy\"", "mypy", "orjson ; implementation_name != \"pypy\"", "pylint", "pytest", "tzdata", "validate-pyproject[all]"]
+
+[[package]]
+name = "pytz"
+version = "2025.2"
+description = "World timezone definitions, modern and historical"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00"},
+ {file = "pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3"},
+]
+
+[[package]]
+name = "pywavelets"
+version = "1.4.1"
+description = "PyWavelets, wavelet transform module"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "PyWavelets-1.4.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:d854411eb5ee9cb4bc5d0e66e3634aeb8f594210f6a1bed96dbed57ec70f181c"},
+ {file = "PyWavelets-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:231b0e0b1cdc1112f4af3c24eea7bf181c418d37922a67670e9bf6cfa2d544d4"},
+ {file = "PyWavelets-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:754fa5085768227c4f4a26c1e0c78bc509a266d9ebd0eb69a278be7e3ece943c"},
+ {file = "PyWavelets-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da7b9c006171be1f9ddb12cc6e0d3d703b95f7f43cb5e2c6f5f15d3233fcf202"},
+ {file = "PyWavelets-1.4.1-cp310-cp310-win32.whl", hash = "sha256:67a0d28a08909f21400cb09ff62ba94c064882ffd9e3a6b27880a111211d59bd"},
+ {file = "PyWavelets-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:91d3d393cffa634f0e550d88c0e3f217c96cfb9e32781f2960876f1808d9b45b"},
+ {file = "PyWavelets-1.4.1-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:64c6bac6204327321db30b775060fbe8e8642316e6bff17f06b9f34936f88875"},
+ {file = "PyWavelets-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3f19327f2129fb7977bc59b966b4974dfd72879c093e44a7287500a7032695de"},
+ {file = "PyWavelets-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad987748f60418d5f4138db89d82ba0cb49b086e0cbb8fd5c3ed4a814cfb705e"},
+ {file = "PyWavelets-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:875d4d620eee655346e3589a16a73790cf9f8917abba062234439b594e706784"},
+ {file = "PyWavelets-1.4.1-cp311-cp311-win32.whl", hash = "sha256:7231461d7a8eb3bdc7aa2d97d9f67ea5a9f8902522818e7e2ead9c2b3408eeb1"},
+ {file = "PyWavelets-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:daf0aa79842b571308d7c31a9c43bc99a30b6328e6aea3f50388cd8f69ba7dbc"},
+ {file = "PyWavelets-1.4.1-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:ab7da0a17822cd2f6545626946d3b82d1a8e106afc4b50e3387719ba01c7b966"},
+ {file = "PyWavelets-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:578af438a02a86b70f1975b546f68aaaf38f28fb082a61ceb799816049ed18aa"},
+ {file = "PyWavelets-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb5ca8d11d3f98e89e65796a2125be98424d22e5ada360a0dbabff659fca0fc"},
+ {file = "PyWavelets-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:058b46434eac4c04dd89aeef6fa39e4b6496a951d78c500b6641fd5b2cc2f9f4"},
+ {file = "PyWavelets-1.4.1-cp38-cp38-win32.whl", hash = "sha256:de7cd61a88a982edfec01ea755b0740e94766e00a1ceceeafef3ed4c85c605cd"},
+ {file = "PyWavelets-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:7ab8d9db0fe549ab2ee0bea61f614e658dd2df419d5b75fba47baa761e95f8f2"},
+ {file = "PyWavelets-1.4.1-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:23bafd60350b2b868076d976bdd92f950b3944f119b4754b1d7ff22b7acbf6c6"},
+ {file = "PyWavelets-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d0e56cd7a53aed3cceca91a04d62feb3a0aca6725b1912d29546c26f6ea90426"},
+ {file = "PyWavelets-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:030670a213ee8fefa56f6387b0c8e7d970c7f7ad6850dc048bd7c89364771b9b"},
+ {file = "PyWavelets-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:71ab30f51ee4470741bb55fc6b197b4a2b612232e30f6ac069106f0156342356"},
+ {file = "PyWavelets-1.4.1-cp39-cp39-win32.whl", hash = "sha256:47cac4fa25bed76a45bc781a293c26ac63e8eaae9eb8f9be961758d22b58649c"},
+ {file = "PyWavelets-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:88aa5449e109d8f5e7f0adef85f7f73b1ab086102865be64421a3a3d02d277f4"},
+ {file = "PyWavelets-1.4.1.tar.gz", hash = "sha256:6437af3ddf083118c26d8f97ab43b0724b956c9f958e9ea788659f6a2834ba93"},
+]
+
+[package.dependencies]
+numpy = ">=1.17.3"
+
+[[package]]
+name = "pywin32"
+version = "310"
+description = "Python for Window Extensions"
+optional = false
+python-versions = "*"
+groups = ["main", "dev"]
+markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""
+files = [
+ {file = "pywin32-310-cp310-cp310-win32.whl", hash = "sha256:6dd97011efc8bf51d6793a82292419eba2c71cf8e7250cfac03bba284454abc1"},
+ {file = "pywin32-310-cp310-cp310-win_amd64.whl", hash = "sha256:c3e78706e4229b915a0821941a84e7ef420bf2b77e08c9dae3c76fd03fd2ae3d"},
+ {file = "pywin32-310-cp310-cp310-win_arm64.whl", hash = "sha256:33babed0cf0c92a6f94cc6cc13546ab24ee13e3e800e61ed87609ab91e4c8213"},
+ {file = "pywin32-310-cp311-cp311-win32.whl", hash = "sha256:1e765f9564e83011a63321bb9d27ec456a0ed90d3732c4b2e312b855365ed8bd"},
+ {file = "pywin32-310-cp311-cp311-win_amd64.whl", hash = "sha256:126298077a9d7c95c53823934f000599f66ec9296b09167810eb24875f32689c"},
+ {file = "pywin32-310-cp311-cp311-win_arm64.whl", hash = "sha256:19ec5fc9b1d51c4350be7bb00760ffce46e6c95eaf2f0b2f1150657b1a43c582"},
+ {file = "pywin32-310-cp312-cp312-win32.whl", hash = "sha256:8a75a5cc3893e83a108c05d82198880704c44bbaee4d06e442e471d3c9ea4f3d"},
+ {file = "pywin32-310-cp312-cp312-win_amd64.whl", hash = "sha256:bf5c397c9a9a19a6f62f3fb821fbf36cac08f03770056711f765ec1503972060"},
+ {file = "pywin32-310-cp312-cp312-win_arm64.whl", hash = "sha256:2349cc906eae872d0663d4d6290d13b90621eaf78964bb1578632ff20e152966"},
+ {file = "pywin32-310-cp313-cp313-win32.whl", hash = "sha256:5d241a659c496ada3253cd01cfaa779b048e90ce4b2b38cd44168ad555ce74ab"},
+ {file = "pywin32-310-cp313-cp313-win_amd64.whl", hash = "sha256:667827eb3a90208ddbdcc9e860c81bde63a135710e21e4cb3348968e4bd5249e"},
+ {file = "pywin32-310-cp313-cp313-win_arm64.whl", hash = "sha256:e308f831de771482b7cf692a1f308f8fca701b2d8f9dde6cc440c7da17e47b33"},
+ {file = "pywin32-310-cp38-cp38-win32.whl", hash = "sha256:0867beb8addefa2e3979d4084352e4ac6e991ca45373390775f7084cc0209b9c"},
+ {file = "pywin32-310-cp38-cp38-win_amd64.whl", hash = "sha256:30f0a9b3138fb5e07eb4973b7077e1883f558e40c578c6925acc7a94c34eaa36"},
+ {file = "pywin32-310-cp39-cp39-win32.whl", hash = "sha256:851c8d927af0d879221e616ae1f66145253537bbdd321a77e8ef701b443a9a1a"},
+ {file = "pywin32-310-cp39-cp39-win_amd64.whl", hash = "sha256:96867217335559ac619f00ad70e513c0fcf84b8a3af9fc2bba3b59b97da70475"},
+]
+
+[[package]]
+name = "pywinpty"
+version = "2.0.15"
+description = "Pseudo terminal support for Windows from Python."
+optional = false
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "os_name == \"nt\""
+files = [
+ {file = "pywinpty-2.0.15-cp310-cp310-win_amd64.whl", hash = "sha256:8e7f5de756a615a38b96cd86fa3cd65f901ce54ce147a3179c45907fa11b4c4e"},
+ {file = "pywinpty-2.0.15-cp311-cp311-win_amd64.whl", hash = "sha256:9a6bcec2df2707aaa9d08b86071970ee32c5026e10bcc3cc5f6f391d85baf7ca"},
+ {file = "pywinpty-2.0.15-cp312-cp312-win_amd64.whl", hash = "sha256:83a8f20b430bbc5d8957249f875341a60219a4e971580f2ba694fbfb54a45ebc"},
+ {file = "pywinpty-2.0.15-cp313-cp313-win_amd64.whl", hash = "sha256:ab5920877dd632c124b4ed17bc6dd6ef3b9f86cd492b963ffdb1a67b85b0f408"},
+ {file = "pywinpty-2.0.15-cp313-cp313t-win_amd64.whl", hash = "sha256:a4560ad8c01e537708d2790dbe7da7d986791de805d89dd0d3697ca59e9e4901"},
+ {file = "pywinpty-2.0.15-cp39-cp39-win_amd64.whl", hash = "sha256:d261cd88fcd358cfb48a7ca0700db3e1c088c9c10403c9ebc0d8a8b57aa6a117"},
+ {file = "pywinpty-2.0.15.tar.gz", hash = "sha256:312cf39153a8736c617d45ce8b6ad6cd2107de121df91c455b10ce6bba7a39b2"},
+]
+
+[[package]]
+name = "pyyaml"
+version = "6.0.2"
+description = "YAML parser and emitter for Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"},
+ {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"},
+ {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"},
+ {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"},
+ {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"},
+ {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"},
+ {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"},
+ {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"},
+ {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"},
+ {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"},
+ {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"},
+ {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"},
+ {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"},
+ {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"},
+ {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"},
+ {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"},
+ {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"},
+ {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"},
+ {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"},
+ {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"},
+ {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"},
+ {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"},
+ {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"},
+ {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"},
+ {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"},
+ {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"},
+ {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"},
+ {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"},
+ {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"},
+ {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"},
+ {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"},
+ {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"},
+ {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"},
+ {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"},
+ {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"},
+ {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"},
+ {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"},
+ {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"},
+ {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"},
+ {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"},
+ {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"},
+ {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"},
+ {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"},
+ {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"},
+ {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"},
+ {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"},
+ {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"},
+ {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"},
+ {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"},
+ {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"},
+ {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"},
+ {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"},
+ {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"},
+]
+
+[[package]]
+name = "pyzmq"
+version = "26.4.0"
+description = "Python bindings for 0MQ"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "pyzmq-26.4.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:0329bdf83e170ac133f44a233fc651f6ed66ef8e66693b5af7d54f45d1ef5918"},
+ {file = "pyzmq-26.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:398a825d2dea96227cf6460ce0a174cf7657d6f6827807d4d1ae9d0f9ae64315"},
+ {file = "pyzmq-26.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6d52d62edc96787f5c1dfa6c6ccff9b581cfae5a70d94ec4c8da157656c73b5b"},
+ {file = "pyzmq-26.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1410c3a3705db68d11eb2424d75894d41cff2f64d948ffe245dd97a9debfebf4"},
+ {file = "pyzmq-26.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:7dacb06a9c83b007cc01e8e5277f94c95c453c5851aac5e83efe93e72226353f"},
+ {file = "pyzmq-26.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6bab961c8c9b3a4dc94d26e9b2cdf84de9918931d01d6ff38c721a83ab3c0ef5"},
+ {file = "pyzmq-26.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7a5c09413b924d96af2aa8b57e76b9b0058284d60e2fc3730ce0f979031d162a"},
+ {file = "pyzmq-26.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7d489ac234d38e57f458fdbd12a996bfe990ac028feaf6f3c1e81ff766513d3b"},
+ {file = "pyzmq-26.4.0-cp310-cp310-win32.whl", hash = "sha256:dea1c8db78fb1b4b7dc9f8e213d0af3fc8ecd2c51a1d5a3ca1cde1bda034a980"},
+ {file = "pyzmq-26.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:fa59e1f5a224b5e04dc6c101d7186058efa68288c2d714aa12d27603ae93318b"},
+ {file = "pyzmq-26.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:a651fe2f447672f4a815e22e74630b6b1ec3a1ab670c95e5e5e28dcd4e69bbb5"},
+ {file = "pyzmq-26.4.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:bfcf82644c9b45ddd7cd2a041f3ff8dce4a0904429b74d73a439e8cab1bd9e54"},
+ {file = "pyzmq-26.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9bcae3979b2654d5289d3490742378b2f3ce804b0b5fd42036074e2bf35b030"},
+ {file = "pyzmq-26.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ccdff8ac4246b6fb60dcf3982dfaeeff5dd04f36051fe0632748fc0aa0679c01"},
+ {file = "pyzmq-26.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4550af385b442dc2d55ab7717837812799d3674cb12f9a3aa897611839c18e9e"},
+ {file = "pyzmq-26.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:2f9f7ffe9db1187a253fca95191854b3fda24696f086e8789d1d449308a34b88"},
+ {file = "pyzmq-26.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3709c9ff7ba61589b7372923fd82b99a81932b592a5c7f1a24147c91da9a68d6"},
+ {file = "pyzmq-26.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f8f3c30fb2d26ae5ce36b59768ba60fb72507ea9efc72f8f69fa088450cff1df"},
+ {file = "pyzmq-26.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:382a4a48c8080e273427fc692037e3f7d2851959ffe40864f2db32646eeb3cef"},
+ {file = "pyzmq-26.4.0-cp311-cp311-win32.whl", hash = "sha256:d56aad0517d4c09e3b4f15adebba8f6372c5102c27742a5bdbfc74a7dceb8fca"},
+ {file = "pyzmq-26.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:963977ac8baed7058c1e126014f3fe58b3773f45c78cce7af5c26c09b6823896"},
+ {file = "pyzmq-26.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:c0c8e8cadc81e44cc5088fcd53b9b3b4ce9344815f6c4a03aec653509296fae3"},
+ {file = "pyzmq-26.4.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:5227cb8da4b6f68acfd48d20c588197fd67745c278827d5238c707daf579227b"},
+ {file = "pyzmq-26.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e1c07a7fa7f7ba86554a2b1bef198c9fed570c08ee062fd2fd6a4dcacd45f905"},
+ {file = "pyzmq-26.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae775fa83f52f52de73183f7ef5395186f7105d5ed65b1ae65ba27cb1260de2b"},
+ {file = "pyzmq-26.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66c760d0226ebd52f1e6b644a9e839b5db1e107a23f2fcd46ec0569a4fdd4e63"},
+ {file = "pyzmq-26.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ef8c6ecc1d520debc147173eaa3765d53f06cd8dbe7bd377064cdbc53ab456f5"},
+ {file = "pyzmq-26.4.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3150ef4084e163dec29ae667b10d96aad309b668fac6810c9e8c27cf543d6e0b"},
+ {file = "pyzmq-26.4.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:4448c9e55bf8329fa1dcedd32f661bf611214fa70c8e02fee4347bc589d39a84"},
+ {file = "pyzmq-26.4.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e07dde3647afb084d985310d067a3efa6efad0621ee10826f2cb2f9a31b89d2f"},
+ {file = "pyzmq-26.4.0-cp312-cp312-win32.whl", hash = "sha256:ba034a32ecf9af72adfa5ee383ad0fd4f4e38cdb62b13624278ef768fe5b5b44"},
+ {file = "pyzmq-26.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:056a97aab4064f526ecb32f4343917a4022a5d9efb6b9df990ff72e1879e40be"},
+ {file = "pyzmq-26.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:2f23c750e485ce1eb639dbd576d27d168595908aa2d60b149e2d9e34c9df40e0"},
+ {file = "pyzmq-26.4.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:c43fac689880f5174d6fc864857d1247fe5cfa22b09ed058a344ca92bf5301e3"},
+ {file = "pyzmq-26.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:902aca7eba477657c5fb81c808318460328758e8367ecdd1964b6330c73cae43"},
+ {file = "pyzmq-26.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5e48a830bfd152fe17fbdeaf99ac5271aa4122521bf0d275b6b24e52ef35eb6"},
+ {file = "pyzmq-26.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31be2b6de98c824c06f5574331f805707c667dc8f60cb18580b7de078479891e"},
+ {file = "pyzmq-26.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6332452034be001bbf3206ac59c0d2a7713de5f25bb38b06519fc6967b7cf771"},
+ {file = "pyzmq-26.4.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:da8c0f5dd352136853e6a09b1b986ee5278dfddfebd30515e16eae425c872b30"},
+ {file = "pyzmq-26.4.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f4ccc1a0a2c9806dda2a2dd118a3b7b681e448f3bb354056cad44a65169f6d86"},
+ {file = "pyzmq-26.4.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:1c0b5fceadbab461578daf8d1dcc918ebe7ddd2952f748cf30c7cf2de5d51101"},
+ {file = "pyzmq-26.4.0-cp313-cp313-win32.whl", hash = "sha256:28e2b0ff5ba4b3dd11062d905682bad33385cfa3cc03e81abd7f0822263e6637"},
+ {file = "pyzmq-26.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:23ecc9d241004c10e8b4f49d12ac064cd7000e1643343944a10df98e57bc544b"},
+ {file = "pyzmq-26.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:1edb0385c7f025045d6e0f759d4d3afe43c17a3d898914ec6582e6f464203c08"},
+ {file = "pyzmq-26.4.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:93a29e882b2ba1db86ba5dd5e88e18e0ac6b627026c5cfbec9983422011b82d4"},
+ {file = "pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb45684f276f57110bb89e4300c00f1233ca631f08f5f42528a5c408a79efc4a"},
+ {file = "pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f72073e75260cb301aad4258ad6150fa7f57c719b3f498cb91e31df16784d89b"},
+ {file = "pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be37e24b13026cfedd233bcbbccd8c0bcd2fdd186216094d095f60076201538d"},
+ {file = "pyzmq-26.4.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:237b283044934d26f1eeff4075f751b05d2f3ed42a257fc44386d00df6a270cf"},
+ {file = "pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:b30f862f6768b17040929a68432c8a8be77780317f45a353cb17e423127d250c"},
+ {file = "pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:c80fcd3504232f13617c6ab501124d373e4895424e65de8b72042333316f64a8"},
+ {file = "pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:26a2a7451606b87f67cdeca2c2789d86f605da08b4bd616b1a9981605ca3a364"},
+ {file = "pyzmq-26.4.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:831cc53bf6068d46d942af52fa8b0b9d128fb39bcf1f80d468dc9a3ae1da5bfb"},
+ {file = "pyzmq-26.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:51d18be6193c25bd229524cfac21e39887c8d5e0217b1857998dfbef57c070a4"},
+ {file = "pyzmq-26.4.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:445c97854204119ae2232503585ebb4fa7517142f71092cb129e5ee547957a1f"},
+ {file = "pyzmq-26.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:807b8f4ad3e6084412c0f3df0613269f552110fa6fb91743e3e306223dbf11a6"},
+ {file = "pyzmq-26.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c01d109dd675ac47fa15c0a79d256878d898f90bc10589f808b62d021d2e653c"},
+ {file = "pyzmq-26.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0a294026e28679a8dd64c922e59411cb586dad307661b4d8a5c49e7bbca37621"},
+ {file = "pyzmq-26.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:22c8dd677274af8dfb1efd05006d6f68fb2f054b17066e308ae20cb3f61028cf"},
+ {file = "pyzmq-26.4.0-cp38-cp38-win32.whl", hash = "sha256:14fc678b696bc42c14e2d7f86ac4e97889d5e6b94d366ebcb637a768d2ad01af"},
+ {file = "pyzmq-26.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:d1ef0a536662bbbdc8525f7e2ef19e74123ec9c4578e0582ecd41aedc414a169"},
+ {file = "pyzmq-26.4.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:a88643de8abd000ce99ca72056a1a2ae15881ee365ecb24dd1d9111e43d57842"},
+ {file = "pyzmq-26.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0a744ce209ecb557406fb928f3c8c55ce79b16c3eeb682da38ef5059a9af0848"},
+ {file = "pyzmq-26.4.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9434540f333332224ecb02ee6278b6c6f11ea1266b48526e73c903119b2f420f"},
+ {file = "pyzmq-26.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e6c6f0a23e55cd38d27d4c89add963294ea091ebcb104d7fdab0f093bc5abb1c"},
+ {file = "pyzmq-26.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6145df55dc2309f6ef72d70576dcd5aabb0fd373311613fe85a5e547c722b780"},
+ {file = "pyzmq-26.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2ea81823840ef8c56e5d2f9918e4d571236294fea4d1842b302aebffb9e40997"},
+ {file = "pyzmq-26.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cc2abc385dc37835445abe206524fbc0c9e3fce87631dfaa90918a1ba8f425eb"},
+ {file = "pyzmq-26.4.0-cp39-cp39-win32.whl", hash = "sha256:41a2508fe7bed4c76b4cf55aacfb8733926f59d440d9ae2b81ee8220633b4d12"},
+ {file = "pyzmq-26.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:d4000e8255d6cbce38982e5622ebb90823f3409b7ffe8aeae4337ef7d6d2612a"},
+ {file = "pyzmq-26.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:b4f6919d9c120488246bdc2a2f96662fa80d67b35bd6d66218f457e722b3ff64"},
+ {file = "pyzmq-26.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:98d948288ce893a2edc5ec3c438fe8de2daa5bbbd6e2e865ec5f966e237084ba"},
+ {file = "pyzmq-26.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9f34f5c9e0203ece706a1003f1492a56c06c0632d86cb77bcfe77b56aacf27b"},
+ {file = "pyzmq-26.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80c9b48aef586ff8b698359ce22f9508937c799cc1d2c9c2f7c95996f2300c94"},
+ {file = "pyzmq-26.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3f2a5b74009fd50b53b26f65daff23e9853e79aa86e0aa08a53a7628d92d44a"},
+ {file = "pyzmq-26.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:61c5f93d7622d84cb3092d7f6398ffc77654c346545313a3737e266fc11a3beb"},
+ {file = "pyzmq-26.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4478b14cb54a805088299c25a79f27eaf530564a7a4f72bf432a040042b554eb"},
+ {file = "pyzmq-26.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a28ac29c60e4ba84b5f58605ace8ad495414a724fe7aceb7cf06cd0598d04e1"},
+ {file = "pyzmq-26.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43b03c1ceea27c6520124f4fb2ba9c647409b9abdf9a62388117148a90419494"},
+ {file = "pyzmq-26.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7731abd23a782851426d4e37deb2057bf9410848a4459b5ede4fe89342e687a9"},
+ {file = "pyzmq-26.4.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:a222ad02fbe80166b0526c038776e8042cd4e5f0dec1489a006a1df47e9040e0"},
+ {file = "pyzmq-26.4.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl", hash = "sha256:91c3ffaea475ec8bb1a32d77ebc441dcdd13cd3c4c284a6672b92a0f5ade1917"},
+ {file = "pyzmq-26.4.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d9a78a52668bf5c9e7b0da36aa5760a9fc3680144e1445d68e98df78a25082ed"},
+ {file = "pyzmq-26.4.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b70cab356ff8c860118b89dc86cd910c73ce2127eb986dada4fbac399ef644cf"},
+ {file = "pyzmq-26.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:acae207d4387780838192326b32d373bb286da0b299e733860e96f80728eb0af"},
+ {file = "pyzmq-26.4.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:f928eafd15794aa4be75463d537348b35503c1e014c5b663f206504ec1a90fe4"},
+ {file = "pyzmq-26.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:552b0d2e39987733e1e9e948a0ced6ff75e0ea39ab1a1db2fc36eb60fd8760db"},
+ {file = "pyzmq-26.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd670a8aa843f2ee637039bbd412e0d7294a5e588e1ecc9ad98b0cdc050259a4"},
+ {file = "pyzmq-26.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d367b7b775a0e1e54a59a2ba3ed4d5e0a31566af97cc9154e34262777dab95ed"},
+ {file = "pyzmq-26.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8112af16c406e4a93df2caef49f884f4c2bb2b558b0b5577ef0b2465d15c1abc"},
+ {file = "pyzmq-26.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c76c298683f82669cab0b6da59071f55238c039738297c69f187a542c6d40099"},
+ {file = "pyzmq-26.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:49b6ca2e625b46f499fb081aaf7819a177f41eeb555acb05758aa97f4f95d147"},
+ {file = "pyzmq-26.4.0.tar.gz", hash = "sha256:4bd13f85f80962f91a651a7356fe0472791a5f7a92f227822b5acf44795c626d"},
+]
+
+[package.dependencies]
+cffi = {version = "*", markers = "implementation_name == \"pypy\""}
+
+[[package]]
+name = "ray"
+version = "2.7.1"
+description = "Ray provides a simple, universal API for building distributed applications."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "ray-2.7.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:4a2c98ab42881836894f20408ce40c0fd7fe5da7f0bc69cf22c951ccceda55ed"},
+ {file = "ray-2.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:53800aadfc07152bc8672d5fa91bb4dc17d96b572a9bd436dd00fd2e0d07ef6a"},
+ {file = "ray-2.7.1-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:17a425b4a2c2098f78fd0ab3831a35a53608d36466453e90c30a6495e9dce354"},
+ {file = "ray-2.7.1-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:9681a8a7bf081e2244360206f3cd80d1a6adb4dc6330a507fd8c78ebe6e57365"},
+ {file = "ray-2.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:148c77050ceab3c90739147bb86ac535e9590046cc36364ae9eb15469ea16fbc"},
+ {file = "ray-2.7.1-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:0b0e80e26d6899820c12301626a74a209ab29373f46caf5b48c3ae3f99ec1bc7"},
+ {file = "ray-2.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b5d13e910bb3449ef7b25084dcc4f0b9a763d3aa7b2fdd39e3b4d93d8c266951"},
+ {file = "ray-2.7.1-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:0a6e8a736fe5294a0b0064679e59e393c66942db81fdf95804bdc1495d1f1651"},
+ {file = "ray-2.7.1-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:f4c9f8a813444bd5346756db1a6d6e09a805b28b5fb6831e91b8d1324c12a888"},
+ {file = "ray-2.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:85a8b0f122e4c14d2ee354fce9651834f7ffc9b60ebdce023a5ba8ca5841a6ee"},
+ {file = "ray-2.7.1-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:bfa924bbc4042e83a0f31f058f08818418307252fceeee27c4c02bc0d3c02f3f"},
+ {file = "ray-2.7.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:0f5657abb376eddf6b56489082d2f94ab36597a2f25da2849e2f66476b90dcc0"},
+ {file = "ray-2.7.1-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:d548e1c67a512975c4241be64a8df2153ae6c29ee2f5b08834fadcad7dfc94a4"},
+ {file = "ray-2.7.1-cp37-cp37m-win_amd64.whl", hash = "sha256:1f4c09a81971cc54d95be55b9b413fd12121a37528b402d1861a8fa0b4e85509"},
+ {file = "ray-2.7.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:1f6d2508d117aac0b880d26a4db65a9f90def2d688709b62e0d039879c3afc7a"},
+ {file = "ray-2.7.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:32a6c0866d559d4e6c623ff220cd0790d2da1f3785073a5d0444b8f0486ff541"},
+ {file = "ray-2.7.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:d035642e6033f43551a0c17e2363a392739f01df6b4072c5ed71cf3096936d33"},
+ {file = "ray-2.7.1-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:a366569d1bd220a92af0dbe092821a11d1ff8ad7b00ed4f74b8a5f380e34ccc7"},
+ {file = "ray-2.7.1-cp38-cp38-win_amd64.whl", hash = "sha256:6fe65dc7f83f1c617af3068d84f8c67f3371b1a48776e44ab6af54998891364c"},
+ {file = "ray-2.7.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:3c1501ca56da394e07213efd5be42c2cf0a2eae68d76949d26a3133154d6d9ff"},
+ {file = "ray-2.7.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:57f7e05ad275317158c447680705e046410f68d2a5992e16d07bbc2cc79da2b3"},
+ {file = "ray-2.7.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:b5410ae53c765108c65821fc5e5968509579f98a64d275e103408e1b068e8ca8"},
+ {file = "ray-2.7.1-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:1b096abab78b63db6c1a2633f242dd8b3c51e395b574215f3cb8e47f5d7364b9"},
+ {file = "ray-2.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:c03fe26443598bd7ad1c22de4585daec324bc03eabc04d3c2f805d9697a554d6"},
+]
+
+[package.dependencies]
+aiosignal = "*"
+click = ">=7.0"
+filelock = "*"
+frozenlist = "*"
+fsspec = {version = "*", optional = true, markers = "extra == \"tune\""}
+jsonschema = "*"
+msgpack = ">=1.0.0,<2.0.0"
+numpy = {version = ">=1.19.3", markers = "python_version >= \"3.9\""}
+packaging = "*"
+pandas = {version = "*", optional = true, markers = "extra == \"tune\""}
+protobuf = ">=3.15.3,<3.19.5 || >3.19.5"
+pyarrow = {version = ">=6.0.1", optional = true, markers = "extra == \"tune\""}
+pyyaml = "*"
+requests = "*"
+tensorboardX = {version = ">=1.9", optional = true, markers = "extra == \"tune\""}
+
+[package.extras]
+air = ["aiohttp (>=3.7)", "aiohttp-cors", "aiorwlock", "colorful", "fastapi", "fsspec", "gpustat (>=1.0.0)", "grpcio (>=1.32.0) ; python_version < \"3.10\"", "grpcio (>=1.42.0) ; python_version >= \"3.10\"", "numpy (>=1.20)", "opencensus", "pandas", "pandas (>=1.3)", "prometheus-client (>=0.7.1)", "py-spy (>=0.2.0)", "pyarrow (>=6.0.1)", "pydantic (<2)", "requests", "smart-open", "starlette", "tensorboardX (>=1.9)", "uvicorn", "virtualenv (>=20.0.24,<20.21.1)", "watchfiles"]
+all = ["aiohttp (>=3.7)", "aiohttp-cors", "aiorwlock", "colorful", "dm-tree", "fastapi", "fsspec", "gpustat (>=1.0.0)", "grpcio (!=1.56.0)", "grpcio (>=1.32.0) ; python_version < \"3.10\"", "grpcio (>=1.42.0) ; python_version >= \"3.10\"", "gymnasium (==0.28.1)", "lz4", "numpy (>=1.20)", "opencensus", "opentelemetry-api", "opentelemetry-exporter-otlp", "opentelemetry-sdk", "pandas", "pandas (>=1.3)", "prometheus-client (>=0.7.1)", "py-spy (>=0.2.0)", "pyarrow (>=6.0.1)", "pydantic (<2)", "pyyaml", "ray-cpp (==2.7.1)", "requests", "rich", "scikit-image", "scipy", "smart-open", "starlette", "tensorboardX (>=1.9)", "typer", "uvicorn", "virtualenv (>=20.0.24,<20.21.1)", "watchfiles"]
+client = ["grpcio (!=1.56.0)"]
+cpp = ["ray-cpp (==2.7.1)"]
+data = ["fsspec", "numpy (>=1.20)", "pandas (>=1.3)", "pyarrow (>=6.0.1)"]
+default = ["aiohttp (>=3.7)", "aiohttp-cors", "colorful", "gpustat (>=1.0.0)", "grpcio (>=1.32.0) ; python_version < \"3.10\"", "grpcio (>=1.42.0) ; python_version >= \"3.10\"", "opencensus", "prometheus-client (>=0.7.1)", "py-spy (>=0.2.0)", "pydantic (<2)", "requests", "smart-open", "virtualenv (>=20.0.24,<20.21.1)"]
+observability = ["opentelemetry-api", "opentelemetry-exporter-otlp", "opentelemetry-sdk"]
+rllib = ["dm-tree", "fsspec", "gymnasium (==0.28.1)", "lz4", "pandas", "pyarrow (>=6.0.1)", "pyyaml", "requests", "rich", "scikit-image", "scipy", "tensorboardX (>=1.9)", "typer"]
+serve = ["aiohttp (>=3.7)", "aiohttp-cors", "aiorwlock", "colorful", "fastapi", "gpustat (>=1.0.0)", "grpcio (>=1.32.0) ; python_version < \"3.10\"", "grpcio (>=1.42.0) ; python_version >= \"3.10\"", "opencensus", "prometheus-client (>=0.7.1)", "py-spy (>=0.2.0)", "pydantic (<2)", "requests", "smart-open", "starlette", "uvicorn", "virtualenv (>=20.0.24,<20.21.1)", "watchfiles"]
+serve-grpc = ["aiohttp (>=3.7)", "aiohttp-cors", "aiorwlock", "colorful", "fastapi", "gpustat (>=1.0.0)", "grpcio (>=1.32.0) ; python_version < \"3.10\"", "grpcio (>=1.42.0) ; python_version >= \"3.10\"", "opencensus", "prometheus-client (>=0.7.1)", "py-spy (>=0.2.0)", "pydantic (<2)", "requests", "smart-open", "starlette", "uvicorn", "virtualenv (>=20.0.24,<20.21.1)", "watchfiles"]
+train = ["fsspec", "pandas", "pyarrow (>=6.0.1)", "requests", "tensorboardX (>=1.9)"]
+tune = ["fsspec", "pandas", "pyarrow (>=6.0.1)", "requests", "tensorboardX (>=1.9)"]
+
+[[package]]
+name = "referencing"
+version = "0.36.2"
+description = "JSON Referencing + Python"
+optional = false
+python-versions = ">=3.9"
+groups = ["main", "dev"]
+files = [
+ {file = "referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0"},
+ {file = "referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa"},
+]
+
+[package.dependencies]
+attrs = ">=22.2.0"
+rpds-py = ">=0.7.0"
+typing-extensions = {version = ">=4.4.0", markers = "python_version < \"3.13\""}
+
+[[package]]
+name = "requests"
+version = "2.32.3"
+description = "Python HTTP for Humans."
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"},
+ {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"},
+]
+
+[package.dependencies]
+certifi = ">=2017.4.17"
+charset-normalizer = ">=2,<4"
+idna = ">=2.5,<4"
+urllib3 = ">=1.21.1,<3"
+
+[package.extras]
+socks = ["PySocks (>=1.5.6,!=1.5.7)"]
+use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"]
+
+[[package]]
+name = "retrying"
+version = "1.3.4"
+description = "Retrying"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "retrying-1.3.4-py3-none-any.whl", hash = "sha256:8cc4d43cb8e1125e0ff3344e9de678fefd85db3b750b81b2240dc0183af37b35"},
+ {file = "retrying-1.3.4.tar.gz", hash = "sha256:345da8c5765bd982b1d1915deb9102fd3d1f7ad16bd84a9700b85f64d24e8f3e"},
+]
+
+[package.dependencies]
+six = ">=1.7.0"
+
+[[package]]
+name = "rfc3339-validator"
+version = "0.1.4"
+description = "A pure python RFC3339 validator"
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
+groups = ["dev"]
+files = [
+ {file = "rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa"},
+ {file = "rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b"},
+]
+
+[package.dependencies]
+six = "*"
+
+[[package]]
+name = "rfc3986-validator"
+version = "0.1.1"
+description = "Pure python rfc3986 validator"
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
+groups = ["dev"]
+files = [
+ {file = "rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9"},
+ {file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"},
+]
+
+[[package]]
+name = "rpds-py"
+version = "0.24.0"
+description = "Python bindings to Rust's persistent data structures (rpds)"
+optional = false
+python-versions = ">=3.9"
+groups = ["main", "dev"]
+files = [
+ {file = "rpds_py-0.24.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:006f4342fe729a368c6df36578d7a348c7c716be1da0a1a0f86e3021f8e98724"},
+ {file = "rpds_py-0.24.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2d53747da70a4e4b17f559569d5f9506420966083a31c5fbd84e764461c4444b"},
+ {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8acd55bd5b071156bae57b555f5d33697998752673b9de554dd82f5b5352727"},
+ {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7e80d375134ddb04231a53800503752093dbb65dad8dabacce2c84cccc78e964"},
+ {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:60748789e028d2a46fc1c70750454f83c6bdd0d05db50f5ae83e2db500b34da5"},
+ {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6e1daf5bf6c2be39654beae83ee6b9a12347cb5aced9a29eecf12a2d25fff664"},
+ {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b221c2457d92a1fb3c97bee9095c874144d196f47c038462ae6e4a14436f7bc"},
+ {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:66420986c9afff67ef0c5d1e4cdc2d0e5262f53ad11e4f90e5e22448df485bf0"},
+ {file = "rpds_py-0.24.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:43dba99f00f1d37b2a0265a259592d05fcc8e7c19d140fe51c6e6f16faabeb1f"},
+ {file = "rpds_py-0.24.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a88c0d17d039333a41d9bf4616bd062f0bd7aa0edeb6cafe00a2fc2a804e944f"},
+ {file = "rpds_py-0.24.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc31e13ce212e14a539d430428cd365e74f8b2d534f8bc22dd4c9c55b277b875"},
+ {file = "rpds_py-0.24.0-cp310-cp310-win32.whl", hash = "sha256:fc2c1e1b00f88317d9de6b2c2b39b012ebbfe35fe5e7bef980fd2a91f6100a07"},
+ {file = "rpds_py-0.24.0-cp310-cp310-win_amd64.whl", hash = "sha256:c0145295ca415668420ad142ee42189f78d27af806fcf1f32a18e51d47dd2052"},
+ {file = "rpds_py-0.24.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:2d3ee4615df36ab8eb16c2507b11e764dcc11fd350bbf4da16d09cda11fcedef"},
+ {file = "rpds_py-0.24.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e13ae74a8a3a0c2f22f450f773e35f893484fcfacb00bb4344a7e0f4f48e1f97"},
+ {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf86f72d705fc2ef776bb7dd9e5fbba79d7e1f3e258bf9377f8204ad0fc1c51e"},
+ {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c43583ea8517ed2e780a345dd9960896afc1327e8cf3ac8239c167530397440d"},
+ {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4cd031e63bc5f05bdcda120646a0d32f6d729486d0067f09d79c8db5368f4586"},
+ {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:34d90ad8c045df9a4259c47d2e16a3f21fdb396665c94520dbfe8766e62187a4"},
+ {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e838bf2bb0b91ee67bf2b889a1a841e5ecac06dd7a2b1ef4e6151e2ce155c7ae"},
+ {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04ecf5c1ff4d589987b4d9882872f80ba13da7d42427234fce8f22efb43133bc"},
+ {file = "rpds_py-0.24.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:630d3d8ea77eabd6cbcd2ea712e1c5cecb5b558d39547ac988351195db433f6c"},
+ {file = "rpds_py-0.24.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ebcb786b9ff30b994d5969213a8430cbb984cdd7ea9fd6df06663194bd3c450c"},
+ {file = "rpds_py-0.24.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:174e46569968ddbbeb8a806d9922f17cd2b524aa753b468f35b97ff9c19cb718"},
+ {file = "rpds_py-0.24.0-cp311-cp311-win32.whl", hash = "sha256:5ef877fa3bbfb40b388a5ae1cb00636a624690dcb9a29a65267054c9ea86d88a"},
+ {file = "rpds_py-0.24.0-cp311-cp311-win_amd64.whl", hash = "sha256:e274f62cbd274359eff63e5c7e7274c913e8e09620f6a57aae66744b3df046d6"},
+ {file = "rpds_py-0.24.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:d8551e733626afec514b5d15befabea0dd70a343a9f23322860c4f16a9430205"},
+ {file = "rpds_py-0.24.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0e374c0ce0ca82e5b67cd61fb964077d40ec177dd2c4eda67dba130de09085c7"},
+ {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d69d003296df4840bd445a5d15fa5b6ff6ac40496f956a221c4d1f6f7b4bc4d9"},
+ {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8212ff58ac6dfde49946bea57474a386cca3f7706fc72c25b772b9ca4af6b79e"},
+ {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:528927e63a70b4d5f3f5ccc1fa988a35456eb5d15f804d276709c33fc2f19bda"},
+ {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a824d2c7a703ba6daaca848f9c3d5cb93af0505be505de70e7e66829affd676e"},
+ {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44d51febb7a114293ffd56c6cf4736cb31cd68c0fddd6aa303ed09ea5a48e029"},
+ {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3fab5f4a2c64a8fb64fc13b3d139848817a64d467dd6ed60dcdd6b479e7febc9"},
+ {file = "rpds_py-0.24.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9be4f99bee42ac107870c61dfdb294d912bf81c3c6d45538aad7aecab468b6b7"},
+ {file = "rpds_py-0.24.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:564c96b6076a98215af52f55efa90d8419cc2ef45d99e314fddefe816bc24f91"},
+ {file = "rpds_py-0.24.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:75a810b7664c17f24bf2ffd7f92416c00ec84b49bb68e6a0d93e542406336b56"},
+ {file = "rpds_py-0.24.0-cp312-cp312-win32.whl", hash = "sha256:f6016bd950be4dcd047b7475fdf55fb1e1f59fc7403f387be0e8123e4a576d30"},
+ {file = "rpds_py-0.24.0-cp312-cp312-win_amd64.whl", hash = "sha256:998c01b8e71cf051c28f5d6f1187abbdf5cf45fc0efce5da6c06447cba997034"},
+ {file = "rpds_py-0.24.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:3d2d8e4508e15fc05b31285c4b00ddf2e0eb94259c2dc896771966a163122a0c"},
+ {file = "rpds_py-0.24.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0f00c16e089282ad68a3820fd0c831c35d3194b7cdc31d6e469511d9bffc535c"},
+ {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:951cc481c0c395c4a08639a469d53b7d4afa252529a085418b82a6b43c45c240"},
+ {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c9ca89938dff18828a328af41ffdf3902405a19f4131c88e22e776a8e228c5a8"},
+ {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ed0ef550042a8dbcd657dfb284a8ee00f0ba269d3f2286b0493b15a5694f9fe8"},
+ {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b2356688e5d958c4d5cb964af865bea84db29971d3e563fb78e46e20fe1848b"},
+ {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78884d155fd15d9f64f5d6124b486f3d3f7fd7cd71a78e9670a0f6f6ca06fb2d"},
+ {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6a4a535013aeeef13c5532f802708cecae8d66c282babb5cd916379b72110cf7"},
+ {file = "rpds_py-0.24.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:84e0566f15cf4d769dade9b366b7b87c959be472c92dffb70462dd0844d7cbad"},
+ {file = "rpds_py-0.24.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:823e74ab6fbaa028ec89615ff6acb409e90ff45580c45920d4dfdddb069f2120"},
+ {file = "rpds_py-0.24.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c61a2cb0085c8783906b2f8b1f16a7e65777823c7f4d0a6aaffe26dc0d358dd9"},
+ {file = "rpds_py-0.24.0-cp313-cp313-win32.whl", hash = "sha256:60d9b630c8025b9458a9d114e3af579a2c54bd32df601c4581bd054e85258143"},
+ {file = "rpds_py-0.24.0-cp313-cp313-win_amd64.whl", hash = "sha256:6eea559077d29486c68218178ea946263b87f1c41ae7f996b1f30a983c476a5a"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:d09dc82af2d3c17e7dd17120b202a79b578d79f2b5424bda209d9966efeed114"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5fc13b44de6419d1e7a7e592a4885b323fbc2f46e1f22151e3a8ed3b8b920405"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c347a20d79cedc0a7bd51c4d4b7dbc613ca4e65a756b5c3e57ec84bd43505b47"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:20f2712bd1cc26a3cc16c5a1bfee9ed1abc33d4cdf1aabd297fe0eb724df4272"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aad911555286884be1e427ef0dc0ba3929e6821cbeca2194b13dc415a462c7fd"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0aeb3329c1721c43c58cae274d7d2ca85c1690d89485d9c63a006cb79a85771a"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a0f156e9509cee987283abd2296ec816225145a13ed0391df8f71bf1d789e2d"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aa6800adc8204ce898c8a424303969b7aa6a5e4ad2789c13f8648739830323b7"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a18fc371e900a21d7392517c6f60fe859e802547309e94313cd8181ad9db004d"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:9168764133fd919f8dcca2ead66de0105f4ef5659cbb4fa044f7014bed9a1797"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5f6e3cec44ba05ee5cbdebe92d052f69b63ae792e7d05f1020ac5e964394080c"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-win32.whl", hash = "sha256:8ebc7e65ca4b111d928b669713865f021b7773350eeac4a31d3e70144297baba"},
+ {file = "rpds_py-0.24.0-cp313-cp313t-win_amd64.whl", hash = "sha256:675269d407a257b8c00a6b58205b72eec8231656506c56fd429d924ca00bb350"},
+ {file = "rpds_py-0.24.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a36b452abbf29f68527cf52e181fced56685731c86b52e852053e38d8b60bc8d"},
+ {file = "rpds_py-0.24.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8b3b397eefecec8e8e39fa65c630ef70a24b09141a6f9fc17b3c3a50bed6b50e"},
+ {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdabcd3beb2a6dca7027007473d8ef1c3b053347c76f685f5f060a00327b8b65"},
+ {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5db385bacd0c43f24be92b60c857cf760b7f10d8234f4bd4be67b5b20a7c0b6b"},
+ {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8097b3422d020ff1c44effc40ae58e67d93e60d540a65649d2cdaf9466030791"},
+ {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493fe54318bed7d124ce272fc36adbf59d46729659b2c792e87c3b95649cdee9"},
+ {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8aa362811ccdc1f8dadcc916c6d47e554169ab79559319ae9fae7d7752d0d60c"},
+ {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d8f9a6e7fd5434817526815f09ea27f2746c4a51ee11bb3439065f5fc754db58"},
+ {file = "rpds_py-0.24.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8205ee14463248d3349131bb8099efe15cd3ce83b8ef3ace63c7e976998e7124"},
+ {file = "rpds_py-0.24.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:921ae54f9ecba3b6325df425cf72c074cd469dea843fb5743a26ca7fb2ccb149"},
+ {file = "rpds_py-0.24.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:32bab0a56eac685828e00cc2f5d1200c548f8bc11f2e44abf311d6b548ce2e45"},
+ {file = "rpds_py-0.24.0-cp39-cp39-win32.whl", hash = "sha256:f5c0ed12926dec1dfe7d645333ea59cf93f4d07750986a586f511c0bc61fe103"},
+ {file = "rpds_py-0.24.0-cp39-cp39-win_amd64.whl", hash = "sha256:afc6e35f344490faa8276b5f2f7cbf71f88bc2cda4328e00553bd451728c571f"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:619ca56a5468f933d940e1bf431c6f4e13bef8e688698b067ae68eb4f9b30e3a"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:4b28e5122829181de1898c2c97f81c0b3246d49f585f22743a1246420bb8d399"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8e5ab32cf9eb3647450bc74eb201b27c185d3857276162c101c0f8c6374e098"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:208b3a70a98cf3710e97cabdc308a51cd4f28aa6e7bb11de3d56cd8b74bab98d"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbc4362e06f950c62cad3d4abf1191021b2ffaf0b31ac230fbf0526453eee75e"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ebea2821cdb5f9fef44933617be76185b80150632736f3d76e54829ab4a3b4d1"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9a4df06c35465ef4d81799999bba810c68d29972bf1c31db61bfdb81dd9d5bb"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d3aa13bdf38630da298f2e0d77aca967b200b8cc1473ea05248f6c5e9c9bdb44"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:041f00419e1da7a03c46042453598479f45be3d787eb837af382bfc169c0db33"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:d8754d872a5dfc3c5bf9c0e059e8107451364a30d9fd50f1f1a85c4fb9481164"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:896c41007931217a343eff197c34513c154267636c8056fb409eafd494c3dcdc"},
+ {file = "rpds_py-0.24.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:92558d37d872e808944c3c96d0423b8604879a3d1c86fdad508d7ed91ea547d5"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f9e0057a509e096e47c87f753136c9b10d7a91842d8042c2ee6866899a717c0d"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:d6e109a454412ab82979c5b1b3aee0604eca4bbf9a02693bb9df027af2bfa91a"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc1c892b1ec1f8cbd5da8de287577b455e388d9c328ad592eabbdcb6fc93bee5"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9c39438c55983d48f4bb3487734d040e22dad200dab22c41e331cee145e7a50d"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d7e8ce990ae17dda686f7e82fd41a055c668e13ddcf058e7fb5e9da20b57793"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9ea7f4174d2e4194289cb0c4e172d83e79a6404297ff95f2875cf9ac9bced8ba"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb2954155bb8f63bb19d56d80e5e5320b61d71084617ed89efedb861a684baea"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04f2b712a2206e13800a8136b07aaedc23af3facab84918e7aa89e4be0260032"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:eda5c1e2a715a4cbbca2d6d304988460942551e4e5e3b7457b50943cd741626d"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:9abc80fe8c1f87218db116016de575a7998ab1629078c90840e8d11ab423ee25"},
+ {file = "rpds_py-0.24.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6a727fd083009bc83eb83d6950f0c32b3c94c8b80a9b667c87f4bd1274ca30ba"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e0f3ef95795efcd3b2ec3fe0a5bcfb5dadf5e3996ea2117427e524d4fbf309c6"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:2c13777ecdbbba2077670285dd1fe50828c8742f6a4119dbef6f83ea13ad10fb"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79e8d804c2ccd618417e96720ad5cd076a86fa3f8cb310ea386a3e6229bae7d1"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fd822f019ccccd75c832deb7aa040bb02d70a92eb15a2f16c7987b7ad4ee8d83"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0047638c3aa0dbcd0ab99ed1e549bbf0e142c9ecc173b6492868432d8989a046"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a5b66d1b201cc71bc3081bc2f1fc36b0c1f268b773e03bbc39066651b9e18391"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbcbb6db5582ea33ce46a5d20a5793134b5365110d84df4e30b9d37c6fd40ad3"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:63981feca3f110ed132fd217bf7768ee8ed738a55549883628ee3da75bb9cb78"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:3a55fc10fdcbf1a4bd3c018eea422c52cf08700cf99c28b5cb10fe97ab77a0d3"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:c30ff468163a48535ee7e9bf21bd14c7a81147c0e58a36c1078289a8ca7af0bd"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:369d9c6d4c714e36d4a03957b4783217a3ccd1e222cdd67d464a3a479fc17796"},
+ {file = "rpds_py-0.24.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:24795c099453e3721fda5d8ddd45f5dfcc8e5a547ce7b8e9da06fecc3832e26f"},
+ {file = "rpds_py-0.24.0.tar.gz", hash = "sha256:772cc1b2cd963e7e17e6cc55fe0371fb9c704d63e44cacec7b9b7f523b78919e"},
+]
+
+[[package]]
+name = "ruamel-yaml"
+version = "0.18.10"
+description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "ruamel.yaml-0.18.10-py3-none-any.whl", hash = "sha256:30f22513ab2301b3d2b577adc121c6471f28734d3d9728581245f1e76468b4f1"},
+ {file = "ruamel.yaml-0.18.10.tar.gz", hash = "sha256:20c86ab29ac2153f80a428e1254a8adf686d3383df04490514ca3b79a362db58"},
+]
+
+[package.dependencies]
+"ruamel.yaml.clib" = {version = ">=0.2.7", markers = "platform_python_implementation == \"CPython\" and python_version < \"3.13\""}
+
+[package.extras]
+docs = ["mercurial (>5.7)", "ryd"]
+jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"]
+
+[[package]]
+name = "ruamel-yaml-clib"
+version = "0.2.12"
+description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-macosx_13_0_arm64.whl", hash = "sha256:11f891336688faf5156a36293a9c362bdc7c88f03a8a027c2c1d8e0bcde998e5"},
+ {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:a606ef75a60ecf3d924613892cc603b154178ee25abb3055db5062da811fd969"},
+ {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd5415dded15c3822597455bc02bcd66e81ef8b7a48cb71a33628fc9fdde39df"},
+ {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f66efbc1caa63c088dead1c4170d148eabc9b80d95fb75b6c92ac0aad2437d76"},
+ {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:22353049ba4181685023b25b5b51a574bce33e7f51c759371a7422dcae5402a6"},
+ {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:932205970b9f9991b34f55136be327501903f7c66830e9760a8ffb15b07f05cd"},
+ {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a52d48f4e7bf9005e8f0a89209bf9a73f7190ddf0489eee5eb51377385f59f2a"},
+ {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-win32.whl", hash = "sha256:3eac5a91891ceb88138c113f9db04f3cebdae277f5d44eaa3651a4f573e6a5da"},
+ {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-win_amd64.whl", hash = "sha256:ab007f2f5a87bd08ab1499bdf96f3d5c6ad4dcfa364884cb4549aa0154b13a28"},
+ {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:4a6679521a58256a90b0d89e03992c15144c5f3858f40d7c18886023d7943db6"},
+ {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:d84318609196d6bd6da0edfa25cedfbabd8dbde5140a0a23af29ad4b8f91fb1e"},
+ {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb43a269eb827806502c7c8efb7ae7e9e9d0573257a46e8e952f4d4caba4f31e"},
+ {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:811ea1594b8a0fb466172c384267a4e5e367298af6b228931f273b111f17ef52"},
+ {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cf12567a7b565cbf65d438dec6cfbe2917d3c1bdddfce84a9930b7d35ea59642"},
+ {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7dd5adc8b930b12c8fc5b99e2d535a09889941aa0d0bd06f4749e9a9397c71d2"},
+ {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1492a6051dab8d912fc2adeef0e8c72216b24d57bd896ea607cb90bb0c4981d3"},
+ {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-win32.whl", hash = "sha256:bd0a08f0bab19093c54e18a14a10b4322e1eacc5217056f3c063bd2f59853ce4"},
+ {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-win_amd64.whl", hash = "sha256:a274fb2cb086c7a3dea4322ec27f4cb5cc4b6298adb583ab0e211a4682f241eb"},
+ {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:20b0f8dc160ba83b6dcc0e256846e1a02d044e13f7ea74a3d1d56ede4e48c632"},
+ {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:943f32bc9dedb3abff9879edc134901df92cfce2c3d5c9348f172f62eb2d771d"},
+ {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95c3829bb364fdb8e0332c9931ecf57d9be3519241323c5274bd82f709cebc0c"},
+ {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:749c16fcc4a2b09f28843cda5a193e0283e47454b63ec4b81eaa2242f50e4ccd"},
+ {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bf165fef1f223beae7333275156ab2022cffe255dcc51c27f066b4370da81e31"},
+ {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:32621c177bbf782ca5a18ba4d7af0f1082a3f6e517ac2a18b3974d4edf349680"},
+ {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b82a7c94a498853aa0b272fd5bc67f29008da798d4f93a2f9f289feb8426a58d"},
+ {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-win32.whl", hash = "sha256:e8c4ebfcfd57177b572e2040777b8abc537cdef58a2120e830124946aa9b42c5"},
+ {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-win_amd64.whl", hash = "sha256:0467c5965282c62203273b838ae77c0d29d7638c8a4e3a1c8bdd3602c10904e4"},
+ {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:4c8c5d82f50bb53986a5e02d1b3092b03622c02c2eb78e29bec33fd9593bae1a"},
+ {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux2014_aarch64.whl", hash = "sha256:e7e3736715fbf53e9be2a79eb4db68e4ed857017344d697e8b9749444ae57475"},
+ {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b7e75b4965e1d4690e93021adfcecccbca7d61c7bddd8e22406ef2ff20d74ef"},
+ {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96777d473c05ee3e5e3c3e999f5d23c6f4ec5b0c38c098b3a5229085f74236c6"},
+ {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:3bc2a80e6420ca8b7d3590791e2dfc709c88ab9152c00eeb511c9875ce5778bf"},
+ {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:e188d2699864c11c36cdfdada94d781fd5d6b0071cd9c427bceb08ad3d7c70e1"},
+ {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4f6f3eac23941b32afccc23081e1f50612bdbe4e982012ef4f5797986828cd01"},
+ {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-win32.whl", hash = "sha256:6442cb36270b3afb1b4951f060eccca1ce49f3d087ca1ca4563a6eb479cb3de6"},
+ {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-win_amd64.whl", hash = "sha256:e5b8daf27af0b90da7bb903a876477a9e6d7270be6146906b276605997c7e9a3"},
+ {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:fc4b630cd3fa2cf7fce38afa91d7cfe844a9f75d7f0f36393fa98815e911d987"},
+ {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:bc5f1e1c28e966d61d2519f2a3d451ba989f9ea0f2307de7bc45baa526de9e45"},
+ {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a0e060aace4c24dcaf71023bbd7d42674e3b230f7e7b97317baf1e953e5b519"},
+ {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2f1c3765db32be59d18ab3953f43ab62a761327aafc1594a2a1fbe038b8b8a7"},
+ {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d85252669dc32f98ebcd5d36768f5d4faeaeaa2d655ac0473be490ecdae3c285"},
+ {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e143ada795c341b56de9418c58d028989093ee611aa27ffb9b7f609c00d813ed"},
+ {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2c59aa6170b990d8d2719323e628aaf36f3bfbc1c26279c0eeeb24d05d2d11c7"},
+ {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-win32.whl", hash = "sha256:beffaed67936fbbeffd10966a4eb53c402fafd3d6833770516bf7314bc6ffa12"},
+ {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-win_amd64.whl", hash = "sha256:040ae85536960525ea62868b642bdb0c2cc6021c9f9d507810c0c604e66f5a7b"},
+ {file = "ruamel.yaml.clib-0.2.12.tar.gz", hash = "sha256:6c8fbb13ec503f99a91901ab46e0b07ae7941cd527393187039aec586fdfd36f"},
+]
+
+[[package]]
+name = "ruff"
+version = "0.3.7"
+description = "An extremely fast Python linter and code formatter, written in Rust."
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "ruff-0.3.7-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:0e8377cccb2f07abd25e84fc5b2cbe48eeb0fea9f1719cad7caedb061d70e5ce"},
+ {file = "ruff-0.3.7-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:15a4d1cc1e64e556fa0d67bfd388fed416b7f3b26d5d1c3e7d192c897e39ba4b"},
+ {file = "ruff-0.3.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d28bdf3d7dc71dd46929fafeec98ba89b7c3550c3f0978e36389b5631b793663"},
+ {file = "ruff-0.3.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:379b67d4f49774ba679593b232dcd90d9e10f04d96e3c8ce4a28037ae473f7bb"},
+ {file = "ruff-0.3.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c060aea8ad5ef21cdfbbe05475ab5104ce7827b639a78dd55383a6e9895b7c51"},
+ {file = "ruff-0.3.7-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:ebf8f615dde968272d70502c083ebf963b6781aacd3079081e03b32adfe4d58a"},
+ {file = "ruff-0.3.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d48098bd8f5c38897b03604f5428901b65e3c97d40b3952e38637b5404b739a2"},
+ {file = "ruff-0.3.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:da8a4fda219bf9024692b1bc68c9cff4b80507879ada8769dc7e985755d662ea"},
+ {file = "ruff-0.3.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c44e0149f1d8b48c4d5c33d88c677a4aa22fd09b1683d6a7ff55b816b5d074f"},
+ {file = "ruff-0.3.7-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:3050ec0af72b709a62ecc2aca941b9cd479a7bf2b36cc4562f0033d688e44fa1"},
+ {file = "ruff-0.3.7-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:a29cc38e4c1ab00da18a3f6777f8b50099d73326981bb7d182e54a9a21bb4ff7"},
+ {file = "ruff-0.3.7-py3-none-musllinux_1_2_i686.whl", hash = "sha256:5b15cc59c19edca917f51b1956637db47e200b0fc5e6e1878233d3a938384b0b"},
+ {file = "ruff-0.3.7-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:e491045781b1e38b72c91247cf4634f040f8d0cb3e6d3d64d38dcf43616650b4"},
+ {file = "ruff-0.3.7-py3-none-win32.whl", hash = "sha256:bc931de87593d64fad3a22e201e55ad76271f1d5bfc44e1a1887edd0903c7d9f"},
+ {file = "ruff-0.3.7-py3-none-win_amd64.whl", hash = "sha256:5ef0e501e1e39f35e03c2acb1d1238c595b8bb36cf7a170e7c1df1b73da00e74"},
+ {file = "ruff-0.3.7-py3-none-win_arm64.whl", hash = "sha256:789e144f6dc7019d1f92a812891c645274ed08af6037d11fc65fcbc183b7d59f"},
+ {file = "ruff-0.3.7.tar.gz", hash = "sha256:d5c1aebee5162c2226784800ae031f660c350e7a3402c4d1f8ea4e97e232e3ba"},
+]
+
+[[package]]
+name = "salib"
+version = "1.4.8"
+description = "Tools for global sensitivity analysis. Contains Sobol', Morris, FAST, DGSM, PAWN, HDMR, Moment Independent and fractional factorial methods"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "salib-1.4.8-py3-none-any.whl", hash = "sha256:fef0f0637a97f1adca35a435e41274add6275ea42428f04d3e83deb720cc0234"},
+ {file = "salib-1.4.8.tar.gz", hash = "sha256:86e7cca79f73f3c52825101cacfb2d51d95adfb7771e7e0ebcd632bffa2cab82"},
+]
+
+[package.dependencies]
+matplotlib = ">=3.2.2"
+multiprocess = "*"
+numpy = ">=1.20.3"
+pandas = ">=1.2"
+scipy = ">=1.7.3"
+
+[package.extras]
+dev = ["hatch", "pre-commit", "salib[distributed]", "salib[doc]", "salib[test]"]
+distributed = ["pathos (>=0.2.5)"]
+doc = ["myst-parser", "numpydoc", "pydata-sphinx-theme (>=0.10)", "sphinx"]
+test = ["pytest", "pytest-cov", "salib[distributed]"]
+
+[[package]]
+name = "scikit-image"
+version = "0.19.3"
+description = "Image processing in Python"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "scikit-image-0.19.3.tar.gz", hash = "sha256:24b5367de1762da6ee126dd8f30cc4e7efda474e0d7d70685433f0e3aa2ec450"},
+ {file = "scikit_image-0.19.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:3a01372ae4bca223873304b0bff79b9d92446ac6d6177f73d89b45561e2d09d8"},
+ {file = "scikit_image-0.19.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:fdf48d9b1f13af69e4e2c78e05067e322e9c8c97463c315cd0ecb47a94e259fc"},
+ {file = "scikit_image-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b6a8f98f2ac9bb73706461fd1dec875f6a5141759ed526850a5a49e90003d19"},
+ {file = "scikit_image-0.19.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfbb073f23deb48e0e60c47f8741d8089121d89cc78629ea8c5b51096efc5be7"},
+ {file = "scikit_image-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:cc24177de3fdceca5d04807ad9c87d665f0bf01032ed94a9055cd1ed2b3f33e9"},
+ {file = "scikit_image-0.19.3-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:fd9dd3994bb6f9f7a35f228323f3c4dc44b3cf2ff15fd72d895216e9333550c6"},
+ {file = "scikit_image-0.19.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ad5d8000207a264d1a55681a9276e6a739d3f05cf4429004ad00d61d1892235f"},
+ {file = "scikit_image-0.19.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:84baa3179f3ae983c3a5d81c1e404bc92dcf7daeb41bfe9369badcda3fb22b92"},
+ {file = "scikit_image-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f9f8a1387afc6c70f2bed007c3854a2d7489f9f7713c242f16f32ee05934bc2"},
+ {file = "scikit_image-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:9fb0923a3bfa99457c5e17888f27b3b8a83a3600b4fef317992e7b7234764732"},
+ {file = "scikit_image-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:ce3d2207f253b8eb2c824e30d145a9f07a34a14212d57f3beca9f7e03c383cbe"},
+ {file = "scikit_image-0.19.3-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:2a02d1bd0e2b53e36b952bd5fd6118d9ccc3ee51de35705d63d8eb1f2e86adef"},
+ {file = "scikit_image-0.19.3-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:03779a7e1736fdf89d83c0ba67d44110496edd736a3bfce61a2b5177a1c8a099"},
+ {file = "scikit_image-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19a21a101a20c587a3b611a2cf6f86c35aae9f8d9563279b987e83ee1c9a9790"},
+ {file = "scikit_image-0.19.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2f50b923f8099c1045fcde7418d86b206c87e333e43da980f41d8577b9605245"},
+ {file = "scikit_image-0.19.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e207c6ce5ce121d7d9b9d2b61b9adca57d1abed112c902d8ffbfdc20fb42c12b"},
+ {file = "scikit_image-0.19.3-cp38-cp38-win32.whl", hash = "sha256:a7c3985c68bfe05f7571167ee021d14f5b8d1a4a250c91f0b13be7fb07e6af34"},
+ {file = "scikit_image-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:651de1c2ce1fbee834753b46b8e7d81cb12a5594898babba63ac82b30ddad49d"},
+ {file = "scikit_image-0.19.3-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:8d8917fcf85b987b1f287f823f3a1a7dac38b70aaca759bc0200f3bc292d5ced"},
+ {file = "scikit_image-0.19.3-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:0b0a199157ce8487c77de4fde0edc0b42d6d42818881c11f459262351d678b2d"},
+ {file = "scikit_image-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33dfd463ee6cc509defa279b963829f2230c9e0639ccd3931045be055878eea6"},
+ {file = "scikit_image-0.19.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a8714348ddd671f819457a797c97d4c672166f093def66d66c3254cbd1d43f83"},
+ {file = "scikit_image-0.19.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff3b1025356508d41f4fe48528e509d95f9e4015e90cf158cd58c56dc63e0ac5"},
+ {file = "scikit_image-0.19.3-cp39-cp39-win32.whl", hash = "sha256:9439e5294de3f18d6e82ec8eee2c46590231cf9c690da80545e83a0733b7a69e"},
+ {file = "scikit_image-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:32fb88cc36203b99c9672fb972c9ef98635deaa5fc889fe969f3e11c44f22919"},
+]
+
+[package.dependencies]
+imageio = ">=2.4.1"
+networkx = ">=2.2"
+numpy = ">=1.17.0"
+packaging = ">=20.0"
+pillow = ">=6.1.0,<7.1.0 || >7.1.0,<7.1.1 || >7.1.1,<8.3.0 || >8.3.0"
+PyWavelets = ">=1.1.1"
+scipy = ">=1.4.1"
+tifffile = ">=2019.7.26"
+
+[package.extras]
+data = ["pooch (>=1.3.0)"]
+docs = ["cloudpickle (>=0.2.1)", "dask[array] (>=0.15.0,!=2.17.0)", "ipywidgets", "kaleido", "matplotlib (>=3.3)", "myst-parser", "numpydoc (>=1.0)", "pandas (>=0.23.0)", "plotly (>=4.14.0)", "pooch (>=1.3.0)", "pytest-runner", "scikit-learn", "seaborn (>=0.7.1)", "sphinx (>=1.8)", "sphinx-copybutton", "sphinx-gallery (>=0.10.1)", "tifffile (>=2020.5.30)"]
+optional = ["SimpleITK", "astropy (>=3.1.2)", "cloudpickle (>=0.2.1)", "dask[array] (>=1.0.0,!=2.17.0)", "matplotlib (>=3.0.3)", "pooch (>=1.3.0)", "pyamg", "qtpy"]
+test = ["asv", "codecov", "flake8", "matplotlib (>=3.0.3)", "pooch (>=1.3.0)", "pytest (>=5.2.0)", "pytest-cov (>=2.7.0)", "pytest-faulthandler", "pytest-localserver"]
+
+[[package]]
+name = "scikit-learn"
+version = "1.0.2"
+description = "A set of python modules for machine learning and data mining"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "scikit-learn-1.0.2.tar.gz", hash = "sha256:b5870959a5484b614f26d31ca4c17524b1b0317522199dc985c3b4256e030767"},
+ {file = "scikit_learn-1.0.2-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:da3c84694ff693b5b3194d8752ccf935a665b8b5edc33a283122f4273ca3e687"},
+ {file = "scikit_learn-1.0.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:75307d9ea39236cad7eea87143155eea24d48f93f3a2f9389c817f7019f00705"},
+ {file = "scikit_learn-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f14517e174bd7332f1cca2c959e704696a5e0ba246eb8763e6c24876d8710049"},
+ {file = "scikit_learn-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9aac97e57c196206179f674f09bc6bffcd0284e2ba95b7fe0b402ac3f986023"},
+ {file = "scikit_learn-1.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:d93d4c28370aea8a7cbf6015e8a669cd5d69f856cc2aa44e7a590fb805bb5583"},
+ {file = "scikit_learn-1.0.2-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:85260fb430b795d806251dd3bb05e6f48cdc777ac31f2bcf2bc8bbed3270a8f5"},
+ {file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a053a6a527c87c5c4fa7bf1ab2556fa16d8345cf99b6c5a19030a4a7cd8fd2c0"},
+ {file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:245c9b5a67445f6f044411e16a93a554edc1efdcce94d3fc0bc6a4b9ac30b752"},
+ {file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:158faf30684c92a78e12da19c73feff9641a928a8024b4fa5ec11d583f3d8a87"},
+ {file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:08ef968f6b72033c16c479c966bf37ccd49b06ea91b765e1cc27afefe723920b"},
+ {file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16455ace947d8d9e5391435c2977178d0ff03a261571e67f627c8fee0f9d431a"},
+ {file = "scikit_learn-1.0.2-cp37-cp37m-win32.whl", hash = "sha256:2f3b453e0b149898577e301d27e098dfe1a36943f7bb0ad704d1e548efc3b448"},
+ {file = "scikit_learn-1.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:46f431ec59dead665e1370314dbebc99ead05e1c0a9df42f22d6a0e00044820f"},
+ {file = "scikit_learn-1.0.2-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:ff3fa8ea0e09e38677762afc6e14cad77b5e125b0ea70c9bba1992f02c93b028"},
+ {file = "scikit_learn-1.0.2-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:9369b030e155f8188743eb4893ac17a27f81d28a884af460870c7c072f114243"},
+ {file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:7d6b2475f1c23a698b48515217eb26b45a6598c7b1840ba23b3c5acece658dbb"},
+ {file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:285db0352e635b9e3392b0b426bc48c3b485512d3b4ac3c7a44ec2a2ba061e66"},
+ {file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cb33fe1dc6f73dc19e67b264dbb5dde2a0539b986435fdd78ed978c14654830"},
+ {file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b1391d1a6e2268485a63c3073111fe3ba6ec5145fc957481cfd0652be571226d"},
+ {file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c"},
+ {file = "scikit_learn-1.0.2-cp38-cp38-win32.whl", hash = "sha256:a999c9f02ff9570c783069f1074f06fe7386ec65b84c983db5aeb8144356a355"},
+ {file = "scikit_learn-1.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:7626a34eabbf370a638f32d1a3ad50526844ba58d63e3ab81ba91e2a7c6d037e"},
+ {file = "scikit_learn-1.0.2-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:a90b60048f9ffdd962d2ad2fb16367a87ac34d76e02550968719eb7b5716fd10"},
+ {file = "scikit_learn-1.0.2-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:7a93c1292799620df90348800d5ac06f3794c1316ca247525fa31169f6d25855"},
+ {file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:eabceab574f471de0b0eb3f2ecf2eee9f10b3106570481d007ed1c84ebf6d6a1"},
+ {file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:55f2f3a8414e14fbee03782f9fe16cca0f141d639d2b1c1a36779fa069e1db57"},
+ {file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80095a1e4b93bd33261ef03b9bc86d6db649f988ea4dbcf7110d0cded8d7213d"},
+ {file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fa38a1b9b38ae1fad2863eff5e0d69608567453fdfc850c992e6e47eb764e846"},
+ {file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff746a69ff2ef25f62b36338c615dd15954ddc3ab8e73530237dd73235e76d62"},
+ {file = "scikit_learn-1.0.2-cp39-cp39-win32.whl", hash = "sha256:e174242caecb11e4abf169342641778f68e1bfaba80cd18acd6bc84286b9a534"},
+ {file = "scikit_learn-1.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:b54a62c6e318ddbfa7d22c383466d38d2ee770ebdb5ddb668d56a099f6eaf75f"},
+]
+
+[package.dependencies]
+joblib = ">=0.11"
+numpy = ">=1.14.6"
+scipy = ">=1.1.0"
+threadpoolctl = ">=2.0.0"
+
+[package.extras]
+benchmark = ["matplotlib (>=2.2.3)", "memory-profiler (>=0.57.0)", "pandas (>=0.25.0)"]
+docs = ["Pillow (>=7.1.2)", "matplotlib (>=2.2.3)", "memory-profiler (>=0.57.0)", "numpydoc (>=1.0.0)", "pandas (>=0.25.0)", "scikit-image (>=0.14.5)", "seaborn (>=0.9.0)", "sphinx (>=4.0.1)", "sphinx-gallery (>=0.7.0)", "sphinx-prompt (>=1.3.0)", "sphinxext-opengraph (>=0.4.2)"]
+examples = ["matplotlib (>=2.2.3)", "pandas (>=0.25.0)", "scikit-image (>=0.14.5)", "seaborn (>=0.9.0)"]
+tests = ["black (>=21.6b0)", "flake8 (>=3.8.2)", "matplotlib (>=2.2.3)", "mypy (>=0.770)", "pandas (>=0.25.0)", "pyamg (>=4.0.0)", "pytest (>=5.0.1)", "pytest-cov (>=2.9.0)", "scikit-image (>=0.14.5)"]
+
+[[package]]
+name = "scipy"
+version = "1.7.3"
+description = "SciPy: Scientific Library for Python"
+optional = false
+python-versions = ">=3.7,<3.11"
+groups = ["main"]
+files = [
+ {file = "scipy-1.7.3-1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:c9e04d7e9b03a8a6ac2045f7c5ef741be86727d8f49c45db45f244bdd2bcff17"},
+ {file = "scipy-1.7.3-1-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:b0e0aeb061a1d7dcd2ed59ea57ee56c9b23dd60100825f98238c06ee5cc4467e"},
+ {file = "scipy-1.7.3-1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b78a35c5c74d336f42f44106174b9851c783184a85a3fe3e68857259b37b9ffb"},
+ {file = "scipy-1.7.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:173308efba2270dcd61cd45a30dfded6ec0085b4b6eb33b5eb11ab443005e088"},
+ {file = "scipy-1.7.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:21b66200cf44b1c3e86495e3a436fc7a26608f92b8d43d344457c54f1c024cbc"},
+ {file = "scipy-1.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ceebc3c4f6a109777c0053dfa0282fddb8893eddfb0d598574acfb734a926168"},
+ {file = "scipy-1.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7eaea089345a35130bc9a39b89ec1ff69c208efa97b3f8b25ea5d4c41d88094"},
+ {file = "scipy-1.7.3-cp310-cp310-win_amd64.whl", hash = "sha256:304dfaa7146cffdb75fbf6bb7c190fd7688795389ad060b970269c8576d038e9"},
+ {file = "scipy-1.7.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:033ce76ed4e9f62923e1f8124f7e2b0800db533828c853b402c7eec6e9465d80"},
+ {file = "scipy-1.7.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4d242d13206ca4302d83d8a6388c9dfce49fc48fdd3c20efad89ba12f785bf9e"},
+ {file = "scipy-1.7.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8499d9dd1459dc0d0fe68db0832c3d5fc1361ae8e13d05e6849b358dc3f2c279"},
+ {file = "scipy-1.7.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca36e7d9430f7481fc7d11e015ae16fbd5575615a8e9060538104778be84addf"},
+ {file = "scipy-1.7.3-cp37-cp37m-win32.whl", hash = "sha256:e2c036492e673aad1b7b0d0ccdc0cb30a968353d2c4bf92ac8e73509e1bf212c"},
+ {file = "scipy-1.7.3-cp37-cp37m-win_amd64.whl", hash = "sha256:866ada14a95b083dd727a845a764cf95dd13ba3dc69a16b99038001b05439709"},
+ {file = "scipy-1.7.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:65bd52bf55f9a1071398557394203d881384d27b9c2cad7df9a027170aeaef93"},
+ {file = "scipy-1.7.3-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:f99d206db1f1ae735a8192ab93bd6028f3a42f6fa08467d37a14eb96c9dd34a3"},
+ {file = "scipy-1.7.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5f2cfc359379c56b3a41b17ebd024109b2049f878badc1e454f31418c3a18436"},
+ {file = "scipy-1.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb7ae2c4dbdb3c9247e07acc532f91077ae6dbc40ad5bd5dca0bb5a176ee9bda"},
+ {file = "scipy-1.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95c2d250074cfa76715d58830579c64dff7354484b284c2b8b87e5a38321672c"},
+ {file = "scipy-1.7.3-cp38-cp38-win32.whl", hash = "sha256:87069cf875f0262a6e3187ab0f419f5b4280d3dcf4811ef9613c605f6e4dca95"},
+ {file = "scipy-1.7.3-cp38-cp38-win_amd64.whl", hash = "sha256:7edd9a311299a61e9919ea4192dd477395b50c014cdc1a1ac572d7c27e2207fa"},
+ {file = "scipy-1.7.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eef93a446114ac0193a7b714ce67659db80caf940f3232bad63f4c7a81bc18df"},
+ {file = "scipy-1.7.3-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:eb326658f9b73c07081300daba90a8746543b5ea177184daed26528273157294"},
+ {file = "scipy-1.7.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:93378f3d14fff07572392ce6a6a2ceb3a1f237733bd6dcb9eb6a2b29b0d19085"},
+ {file = "scipy-1.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edad1cf5b2ce1912c4d8ddad20e11d333165552aba262c882e28c78bbc09dbf6"},
+ {file = "scipy-1.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d1cc2c19afe3b5a546ede7e6a44ce1ff52e443d12b231823268019f608b9b12"},
+ {file = "scipy-1.7.3-cp39-cp39-win32.whl", hash = "sha256:2c56b820d304dffcadbbb6cbfbc2e2c79ee46ea291db17e288e73cd3c64fefa9"},
+ {file = "scipy-1.7.3-cp39-cp39-win_amd64.whl", hash = "sha256:3f78181a153fa21c018d346f595edd648344751d7f03ab94b398be2ad083ed3e"},
+ {file = "scipy-1.7.3.tar.gz", hash = "sha256:ab5875facfdef77e0a47d5fd39ea178b58e60e454a4c85aa1e52fcb80db7babf"},
+]
+
+[package.dependencies]
+numpy = ">=1.16.5,<1.23.0"
+
+[[package]]
+name = "seaborn"
+version = "0.13.2"
+description = "Statistical data visualization"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987"},
+ {file = "seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7"},
+]
+
+[package.dependencies]
+matplotlib = ">=3.4,<3.6.1 || >3.6.1"
+numpy = ">=1.20,<1.24.0 || >1.24.0"
+pandas = ">=1.2"
+
+[package.extras]
+dev = ["flake8", "flit", "mypy", "pandas-stubs", "pre-commit", "pytest", "pytest-cov", "pytest-xdist"]
+docs = ["ipykernel", "nbconvert", "numpydoc", "pydata_sphinx_theme (==0.10.0rc2)", "pyyaml", "sphinx (<6.0.0)", "sphinx-copybutton", "sphinx-design", "sphinx-issues"]
+stats = ["scipy (>=1.7)", "statsmodels (>=0.12)"]
+
+[[package]]
+name = "send2trash"
+version = "1.8.3"
+description = "Send file to trash natively under Mac OS X, Windows and Linux"
+optional = false
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7"
+groups = ["dev"]
+files = [
+ {file = "Send2Trash-1.8.3-py3-none-any.whl", hash = "sha256:0c31227e0bd08961c7665474a3d1ef7193929fedda4233843689baa056be46c9"},
+ {file = "Send2Trash-1.8.3.tar.gz", hash = "sha256:b18e7a3966d99871aefeb00cfbcfdced55ce4871194810fc71f4aa484b953abf"},
+]
+
+[package.extras]
+nativelib = ["pyobjc-framework-Cocoa ; sys_platform == \"darwin\"", "pywin32 ; sys_platform == \"win32\""]
+objc = ["pyobjc-framework-Cocoa ; sys_platform == \"darwin\""]
+win32 = ["pywin32 ; sys_platform == \"win32\""]
+
+[[package]]
+name = "setuptools"
+version = "78.1.0"
+description = "Easily download, build, install, upgrade, and uninstall Python packages"
+optional = false
+python-versions = ">=3.9"
+groups = ["main", "dev"]
+files = [
+ {file = "setuptools-78.1.0-py3-none-any.whl", hash = "sha256:3e386e96793c8702ae83d17b853fb93d3e09ef82ec62722e61da5cd22376dcd8"},
+ {file = "setuptools-78.1.0.tar.gz", hash = "sha256:18fd474d4a82a5f83dac888df697af65afa82dec7323d09c3e37d1f14288da54"},
+]
+
+[package.extras]
+check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\"", "ruff (>=0.8.0) ; sys_platform != \"cygwin\""]
+core = ["importlib_metadata (>=6) ; python_version < \"3.10\"", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1) ; python_version < \"3.11\"", "wheel (>=0.43.0)"]
+cover = ["pytest-cov"]
+doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"]
+enabler = ["pytest-enabler (>=2.2)"]
+test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21) ; python_version >= \"3.9\" and sys_platform != \"cygwin\"", "jaraco.envs (>=2.2)", "jaraco.path (>=3.7.2)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf ; sys_platform != \"cygwin\"", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"]
+type = ["importlib_metadata (>=7.0.2) ; python_version < \"3.10\"", "jaraco.develop (>=7.21) ; sys_platform != \"cygwin\"", "mypy (==1.14.*)", "pytest-mypy"]
+
+[[package]]
+name = "shap"
+version = "0.42.1"
+description = "A unified approach to explain the output of any machine learning model."
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "shap-0.42.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4c6106e59dbd446114bb5f7f0762ae0fa4ffa28bdf79a860d287e37ac5233d48"},
+ {file = "shap-0.42.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:46cf52ce701eeee554d7b773b09ff907838f1210013c1cee5ddbee021a7f2c72"},
+ {file = "shap-0.42.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5d4e6c8d63a1e3535c2f3fc64f47f09862d1cc437ad434e9cdc50225d360266"},
+ {file = "shap-0.42.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:60d272e133f28cce322049dadec8909d2912c12c31ba38cb2eb861c01e3d16b8"},
+ {file = "shap-0.42.1-cp310-cp310-win_amd64.whl", hash = "sha256:c6d1b381a365a4a8582ac0fe1800282a89479757e20fb5f8d8db2ec8e853461c"},
+ {file = "shap-0.42.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b6bfe78edf8478c5f0bc2ae1f4150ab1ae3065b5655fcce580fd99ef30601db7"},
+ {file = "shap-0.42.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:53f6b6ab79f67dabb6fbc6613b373ebd726c200f8136f1f7e43d8a8068edcad1"},
+ {file = "shap-0.42.1-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce0fc9654ab62c6edeaf375c235a781bb280a40ffbbdbce35102d3b2d1a323a4"},
+ {file = "shap-0.42.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c570de5b91e26d26c93e6c028d13636845ef86619a3559145de98b7ec1148f1"},
+ {file = "shap-0.42.1-cp311-cp311-win_amd64.whl", hash = "sha256:b32b13a5a5fc089594b676f32565d5c5ea3abf5f0755b0fa0d25ffc9d53cb6ea"},
+ {file = "shap-0.42.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:34bc359b7c60f873d589133a54640929f76ead7cbe036d5faa35ddb96d2a8168"},
+ {file = "shap-0.42.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f14bcad9dcc3b48082c3b9a93ca3577610d110a768674b1ce209ada18619c133"},
+ {file = "shap-0.42.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56b1d4aa0c9bba4050279a2bfcc3efcabb1af45cb1657e6c57d629810b4b360f"},
+ {file = "shap-0.42.1-cp37-cp37m-win_amd64.whl", hash = "sha256:26a3c8321852f12c650f685973159fbdcef75aae47405c4ceb702e3dbf49dcac"},
+ {file = "shap-0.42.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:93c97525068868bd84a13a68f853b6286fafc035bbc308291e3a6497677c5d89"},
+ {file = "shap-0.42.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8d9b55b34e9027157f02f996bab71cc5e286ed246c031112a700461a1e2acb4f"},
+ {file = "shap-0.42.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6acc29bd3e1bd8eebf94d22ec35421a791fce62d35260e34468e6e6cf008a7c5"},
+ {file = "shap-0.42.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6bb4e3044240b300690d7e0282b512d4ffa4def49816e03fe0d6a06dcbde957"},
+ {file = "shap-0.42.1-cp38-cp38-win_amd64.whl", hash = "sha256:00cf2878c4a5fa5a6fcb72520ace9d17a027d64dd49272bd2072c20f2f97121d"},
+ {file = "shap-0.42.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:48511486c568a09d469381278bb40982cb0f74c1cf8a391dfb79d81e53843beb"},
+ {file = "shap-0.42.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d43d31adeae9b1f628f49917179777580c7deceefa6156b5cf488a298287eabd"},
+ {file = "shap-0.42.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d0b2e82bb3a5938b41fa640bb86894dc14b4935d419597d33b7d04392cd6ad0"},
+ {file = "shap-0.42.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de4bf0035265cbc127b39ad8ecd1272acb5619e89cae666808d87d17cf6a0b28"},
+ {file = "shap-0.42.1-cp39-cp39-win_amd64.whl", hash = "sha256:dfc77a2a4c37ac1c74c54af60d92732991386bd60da8763660846225384fe592"},
+ {file = "shap-0.42.1.tar.gz", hash = "sha256:64403915e4a07d2951e7eee4af0e835b1b519367b11806fe1aa4bd6d81adb626"},
+]
+
+[package.dependencies]
+cloudpickle = "*"
+numba = "*"
+numpy = "*"
+packaging = ">20.9"
+pandas = "*"
+scikit-learn = "*"
+scipy = "*"
+slicer = "0.0.7"
+tqdm = ">=4.27.0"
+
+[package.extras]
+docs = ["ipython", "matplotlib", "nbsphinx", "numpydoc", "sphinx", "sphinx-rtd-theme"]
+others = ["lime"]
+plots = ["ipython", "matplotlib"]
+test = ["catboost", "lightgbm", "opencv-python", "protobuf (==3.20.3)", "pyod", "pyspark", "pytest", "pytest-cov", "pytest-mpl", "sentencepiece", "tensorflow", "torch", "torchvision", "transformers", "xgboost"]
+test-core = ["pytest", "pytest-cov", "pytest-mpl"]
+
+[[package]]
+name = "six"
+version = "1.16.0"
+description = "Python 2 and 3 compatibility utilities"
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
+groups = ["main", "dev"]
+files = [
+ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
+ {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
+]
+
+[[package]]
+name = "skope-rules"
+version = "1.0.1"
+description = "Machine Learning with Interpretable Rules"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "skope_rules-1.0.1-py3-none-any.whl", hash = "sha256:c03565989869f26262dc4299b49aca6ae297cbcfccf62eed8d69d5c0c0605798"},
+]
+
+[package.dependencies]
+numpy = ">=1.10.4"
+pandas = ">=0.18.1"
+scikit-learn = ">=0.17.1"
+scipy = ">=0.17.0"
+
+[[package]]
+name = "slicer"
+version = "0.0.7"
+description = "A small package for big slicing."
+optional = false
+python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "slicer-0.0.7-py3-none-any.whl", hash = "sha256:0b94faa5251c0f23782c03f7b7eedda91d80144059645f452c4bc80fab875976"},
+ {file = "slicer-0.0.7.tar.gz", hash = "sha256:f5d5f7b45f98d155b9c0ba6554fa9770c6b26d5793a3e77a1030fb56910ebeec"},
+]
+
+[[package]]
+name = "sniffio"
+version = "1.3.1"
+description = "Sniff out which async library your code is running under"
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"},
+ {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"},
+]
+
+[[package]]
+name = "soupsieve"
+version = "2.6"
+description = "A modern CSS selector implementation for Beautiful Soup."
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9"},
+ {file = "soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb"},
+]
+
+[[package]]
+name = "sqlalchemy"
+version = "2.0.40"
+description = "Database Abstraction Library"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "SQLAlchemy-2.0.40-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:ae9597cab738e7cc823f04a704fb754a9249f0b6695a6aeb63b74055cd417a96"},
+ {file = "SQLAlchemy-2.0.40-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37a5c21ab099a83d669ebb251fddf8f5cee4d75ea40a5a1653d9c43d60e20867"},
+ {file = "SQLAlchemy-2.0.40-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bece9527f5a98466d67fb5d34dc560c4da964240d8b09024bb21c1246545e04e"},
+ {file = "SQLAlchemy-2.0.40-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:8bb131ffd2165fae48162c7bbd0d97c84ab961deea9b8bab16366543deeab625"},
+ {file = "SQLAlchemy-2.0.40-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:9408fd453d5f8990405cc9def9af46bfbe3183e6110401b407c2d073c3388f47"},
+ {file = "SQLAlchemy-2.0.40-cp37-cp37m-win32.whl", hash = "sha256:00a494ea6f42a44c326477b5bee4e0fc75f6a80c01570a32b57e89cf0fbef85a"},
+ {file = "SQLAlchemy-2.0.40-cp37-cp37m-win_amd64.whl", hash = "sha256:c7b927155112ac858357ccf9d255dd8c044fd9ad2dc6ce4c4149527c901fa4c3"},
+ {file = "sqlalchemy-2.0.40-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f1ea21bef99c703f44444ad29c2c1b6bd55d202750b6de8e06a955380f4725d7"},
+ {file = "sqlalchemy-2.0.40-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:afe63b208153f3a7a2d1a5b9df452b0673082588933e54e7c8aac457cf35e758"},
+ {file = "sqlalchemy-2.0.40-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8aae085ea549a1eddbc9298b113cffb75e514eadbb542133dd2b99b5fb3b6af"},
+ {file = "sqlalchemy-2.0.40-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ea9181284754d37db15156eb7be09c86e16e50fbe77610e9e7bee09291771a1"},
+ {file = "sqlalchemy-2.0.40-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5434223b795be5c5ef8244e5ac98056e290d3a99bdcc539b916e282b160dda00"},
+ {file = "sqlalchemy-2.0.40-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:15d08d5ef1b779af6a0909b97be6c1fd4298057504eb6461be88bd1696cb438e"},
+ {file = "sqlalchemy-2.0.40-cp310-cp310-win32.whl", hash = "sha256:cd2f75598ae70bcfca9117d9e51a3b06fe29edd972fdd7fd57cc97b4dbf3b08a"},
+ {file = "sqlalchemy-2.0.40-cp310-cp310-win_amd64.whl", hash = "sha256:2cbafc8d39ff1abdfdda96435f38fab141892dc759a2165947d1a8fffa7ef596"},
+ {file = "sqlalchemy-2.0.40-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f6bacab7514de6146a1976bc56e1545bee247242fab030b89e5f70336fc0003e"},
+ {file = "sqlalchemy-2.0.40-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5654d1ac34e922b6c5711631f2da497d3a7bffd6f9f87ac23b35feea56098011"},
+ {file = "sqlalchemy-2.0.40-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35904d63412db21088739510216e9349e335f142ce4a04b69e2528020ee19ed4"},
+ {file = "sqlalchemy-2.0.40-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c7a80ed86d6aaacb8160a1caef6680d4ddd03c944d985aecee940d168c411d1"},
+ {file = "sqlalchemy-2.0.40-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:519624685a51525ddaa7d8ba8265a1540442a2ec71476f0e75241eb8263d6f51"},
+ {file = "sqlalchemy-2.0.40-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2ee5f9999a5b0e9689bed96e60ee53c3384f1a05c2dd8068cc2e8361b0df5b7a"},
+ {file = "sqlalchemy-2.0.40-cp311-cp311-win32.whl", hash = "sha256:c0cae71e20e3c02c52f6b9e9722bca70e4a90a466d59477822739dc31ac18b4b"},
+ {file = "sqlalchemy-2.0.40-cp311-cp311-win_amd64.whl", hash = "sha256:574aea2c54d8f1dd1699449f332c7d9b71c339e04ae50163a3eb5ce4c4325ee4"},
+ {file = "sqlalchemy-2.0.40-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9d3b31d0a1c44b74d3ae27a3de422dfccd2b8f0b75e51ecb2faa2bf65ab1ba0d"},
+ {file = "sqlalchemy-2.0.40-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:37f7a0f506cf78c80450ed1e816978643d3969f99c4ac6b01104a6fe95c5490a"},
+ {file = "sqlalchemy-2.0.40-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bb933a650323e476a2e4fbef8997a10d0003d4da996aad3fd7873e962fdde4d"},
+ {file = "sqlalchemy-2.0.40-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6959738971b4745eea16f818a2cd086fb35081383b078272c35ece2b07012716"},
+ {file = "sqlalchemy-2.0.40-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:110179728e442dae85dd39591beb74072ae4ad55a44eda2acc6ec98ead80d5f2"},
+ {file = "sqlalchemy-2.0.40-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e8040680eaacdce4d635f12c55c714f3d4c7f57da2bc47a01229d115bd319191"},
+ {file = "sqlalchemy-2.0.40-cp312-cp312-win32.whl", hash = "sha256:650490653b110905c10adac69408380688cefc1f536a137d0d69aca1069dc1d1"},
+ {file = "sqlalchemy-2.0.40-cp312-cp312-win_amd64.whl", hash = "sha256:2be94d75ee06548d2fc591a3513422b873490efb124048f50556369a834853b0"},
+ {file = "sqlalchemy-2.0.40-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:915866fd50dd868fdcc18d61d8258db1bf9ed7fbd6dfec960ba43365952f3b01"},
+ {file = "sqlalchemy-2.0.40-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a4c5a2905a9ccdc67a8963e24abd2f7afcd4348829412483695c59e0af9a705"},
+ {file = "sqlalchemy-2.0.40-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55028d7a3ebdf7ace492fab9895cbc5270153f75442a0472d8516e03159ab364"},
+ {file = "sqlalchemy-2.0.40-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6cfedff6878b0e0d1d0a50666a817ecd85051d12d56b43d9d425455e608b5ba0"},
+ {file = "sqlalchemy-2.0.40-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bb19e30fdae77d357ce92192a3504579abe48a66877f476880238a962e5b96db"},
+ {file = "sqlalchemy-2.0.40-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:16d325ea898f74b26ffcd1cf8c593b0beed8714f0317df2bed0d8d1de05a8f26"},
+ {file = "sqlalchemy-2.0.40-cp313-cp313-win32.whl", hash = "sha256:a669cbe5be3c63f75bcbee0b266779706f1a54bcb1000f302685b87d1b8c1500"},
+ {file = "sqlalchemy-2.0.40-cp313-cp313-win_amd64.whl", hash = "sha256:641ee2e0834812d657862f3a7de95e0048bdcb6c55496f39c6fa3d435f6ac6ad"},
+ {file = "sqlalchemy-2.0.40-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:50f5885bbed261fc97e2e66c5156244f9704083a674b8d17f24c72217d29baf5"},
+ {file = "sqlalchemy-2.0.40-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cf0e99cdb600eabcd1d65cdba0d3c91418fee21c4aa1d28db47d095b1064a7d8"},
+ {file = "sqlalchemy-2.0.40-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fe147fcd85aaed53ce90645c91ed5fca0cc88a797314c70dfd9d35925bd5d106"},
+ {file = "sqlalchemy-2.0.40-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baf7cee56bd552385c1ee39af360772fbfc2f43be005c78d1140204ad6148438"},
+ {file = "sqlalchemy-2.0.40-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4aeb939bcac234b88e2d25d5381655e8353fe06b4e50b1c55ecffe56951d18c2"},
+ {file = "sqlalchemy-2.0.40-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c268b5100cfeaa222c40f55e169d484efa1384b44bf9ca415eae6d556f02cb08"},
+ {file = "sqlalchemy-2.0.40-cp38-cp38-win32.whl", hash = "sha256:46628ebcec4f23a1584fb52f2abe12ddb00f3bb3b7b337618b80fc1b51177aff"},
+ {file = "sqlalchemy-2.0.40-cp38-cp38-win_amd64.whl", hash = "sha256:7e0505719939e52a7b0c65d20e84a6044eb3712bb6f239c6b1db77ba8e173a37"},
+ {file = "sqlalchemy-2.0.40-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c884de19528e0fcd9dc34ee94c810581dd6e74aef75437ff17e696c2bfefae3e"},
+ {file = "sqlalchemy-2.0.40-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1abb387710283fc5983d8a1209d9696a4eae9db8d7ac94b402981fe2fe2e39ad"},
+ {file = "sqlalchemy-2.0.40-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cfa124eda500ba4b0d3afc3e91ea27ed4754e727c7f025f293a22f512bcd4c9"},
+ {file = "sqlalchemy-2.0.40-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b6b28d303b9d57c17a5164eb1fd2d5119bb6ff4413d5894e74873280483eeb5"},
+ {file = "sqlalchemy-2.0.40-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:b5a5bbe29c10c5bfd63893747a1bf6f8049df607638c786252cb9243b86b6706"},
+ {file = "sqlalchemy-2.0.40-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f0fda83e113bb0fb27dc003685f32a5dcb99c9c4f41f4fa0838ac35265c23b5c"},
+ {file = "sqlalchemy-2.0.40-cp39-cp39-win32.whl", hash = "sha256:957f8d85d5e834397ef78a6109550aeb0d27a53b5032f7a57f2451e1adc37e98"},
+ {file = "sqlalchemy-2.0.40-cp39-cp39-win_amd64.whl", hash = "sha256:1ffdf9c91428e59744f8e6f98190516f8e1d05eec90e936eb08b257332c5e870"},
+ {file = "sqlalchemy-2.0.40-py3-none-any.whl", hash = "sha256:32587e2e1e359276957e6fe5dad089758bc042a971a8a09ae8ecf7a8fe23d07a"},
+ {file = "sqlalchemy-2.0.40.tar.gz", hash = "sha256:d827099289c64589418ebbcaead0145cd19f4e3e8a93919a0100247af245fa00"},
+]
+
+[package.dependencies]
+greenlet = {version = ">=1", markers = "python_version < \"3.14\" and (platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\")"}
+typing-extensions = ">=4.6.0"
+
+[package.extras]
+aiomysql = ["aiomysql (>=0.2.0)", "greenlet (>=1)"]
+aioodbc = ["aioodbc", "greenlet (>=1)"]
+aiosqlite = ["aiosqlite", "greenlet (>=1)", "typing_extensions (!=3.10.0.1)"]
+asyncio = ["greenlet (>=1)"]
+asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (>=1)"]
+mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5,!=1.1.10)"]
+mssql = ["pyodbc"]
+mssql-pymssql = ["pymssql"]
+mssql-pyodbc = ["pyodbc"]
+mypy = ["mypy (>=0.910)"]
+mysql = ["mysqlclient (>=1.4.0)"]
+mysql-connector = ["mysql-connector-python"]
+oracle = ["cx_oracle (>=8)"]
+oracle-oracledb = ["oracledb (>=1.0.1)"]
+postgresql = ["psycopg2 (>=2.7)"]
+postgresql-asyncpg = ["asyncpg", "greenlet (>=1)"]
+postgresql-pg8000 = ["pg8000 (>=1.29.1)"]
+postgresql-psycopg = ["psycopg (>=3.0.7)"]
+postgresql-psycopg2binary = ["psycopg2-binary"]
+postgresql-psycopg2cffi = ["psycopg2cffi"]
+postgresql-psycopgbinary = ["psycopg[binary] (>=3.0.7)"]
+pymysql = ["pymysql"]
+sqlcipher = ["sqlcipher3_binary"]
+
+[[package]]
+name = "stack-data"
+version = "0.6.3"
+description = "Extract data from python stack frames and tracebacks for informative displays"
+optional = false
+python-versions = "*"
+groups = ["main", "dev"]
+files = [
+ {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"},
+ {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"},
+]
+
+[package.dependencies]
+asttokens = ">=2.1.0"
+executing = ">=1.2.0"
+pure-eval = "*"
+
+[package.extras]
+tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"]
+
+[[package]]
+name = "statsmodels"
+version = "0.13.2"
+description = "Statistical computations and models for Python"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+markers = "platform_system == \"Windows\" and platform_python_implementation != \"PyPy\""
+files = [
+ {file = "statsmodels-0.13.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3e7ca5b7e678c0bb7a24f5c735d58ac104a50eb61b17c484cce0e221a095560f"},
+ {file = "statsmodels-0.13.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:066a75d5585378b2df972f81a90b9a3da5e567b7d4833300c1597438c1a35e29"},
+ {file = "statsmodels-0.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f15f38dfc9c5c091662cb619e12322047368c67aef449c7554d9b324a15f7a94"},
+ {file = "statsmodels-0.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c4ccc6b4744613367e8a233bd952c8a838db8f528f9fe033bda25aa13fc7d08"},
+ {file = "statsmodels-0.13.2-cp310-cp310-win_amd64.whl", hash = "sha256:855b1cc2a91ab140b9bcf304b1731705805ce73223bf500b988804968554c0ed"},
+ {file = "statsmodels-0.13.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b69c9af7606325095f7c40c581957bad9f28775653d41537c1ec4cd1b185ff5b"},
+ {file = "statsmodels-0.13.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab31bac0f72b83bca1f217a12ec6f309a56485a50c4a705fbdd63112213d4da4"},
+ {file = "statsmodels-0.13.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d680b910b57fc0aa87472662cdfe09aae0e21db4bdf19ccd6420fd4dffda892"},
+ {file = "statsmodels-0.13.2-cp37-cp37m-win32.whl", hash = "sha256:9e9a3f661d372431850d55157d049e079493c97fc06f550d23d8c8c70805cc48"},
+ {file = "statsmodels-0.13.2-cp37-cp37m-win_amd64.whl", hash = "sha256:c9f6326870c095ef688f072cd476b932aff0906d60193eaa08e93ec23b29ca83"},
+ {file = "statsmodels-0.13.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5bc050f25f1ba1221efef9ea01b751c60935ad787fcd4259f4ece986f2da9141"},
+ {file = "statsmodels-0.13.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:426b1c8ea3918d3d27dbfa38f2bee36cabf41d32163e2cbb3adfb0178b24626a"},
+ {file = "statsmodels-0.13.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45b80fac4a63308b1e93fa9dc27a8598930fd5dfd77c850ca077bb850254c6d7"},
+ {file = "statsmodels-0.13.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78ee69ec0e0f79f627245c65f8a495b8581c2ea19084aac63941815feb15dcf3"},
+ {file = "statsmodels-0.13.2-cp38-cp38-win32.whl", hash = "sha256:20483cc30e11aa072b30d307bb80470f86a23ae8fffa51439ca54509d7aa9b05"},
+ {file = "statsmodels-0.13.2-cp38-cp38-win_amd64.whl", hash = "sha256:bf43051a92231ccb9de95e4b6d22d3b15e499ee5ee9bff0a20e6b6ad293e34cb"},
+ {file = "statsmodels-0.13.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6bf0dfed5f5edb59b5922b295392cd276463b10a5e730f7e57ee4ff2d8e9a87e"},
+ {file = "statsmodels-0.13.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a403b559c5586dab7ac0fc9e754c737b017c96cce0ddd66ff9094764cdaf293d"},
+ {file = "statsmodels-0.13.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f23554dd025ea354ce072ba32bfaa840d2b856372e5734290e181d27a1f9e0c"},
+ {file = "statsmodels-0.13.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:815f4df713e3eb6f40ae175c71f2a70d32f9219b5b4d23d4e0faab1171ba93ba"},
+ {file = "statsmodels-0.13.2-cp39-cp39-win32.whl", hash = "sha256:461c82ab2265fa8457b96afc23ef3ca19f42eb070436e0241b57e58a38863901"},
+ {file = "statsmodels-0.13.2-cp39-cp39-win_amd64.whl", hash = "sha256:39daab5a8a9332c8ea83d6464d065080c9ba65f236daf6a64aa18f64ef776fad"},
+ {file = "statsmodels-0.13.2.tar.gz", hash = "sha256:77dc292c9939c036a476f1770f9d08976b05437daa229928da73231147cde7d4"},
+]
+
+[package.dependencies]
+numpy = ">=1.17"
+packaging = ">=21.3"
+pandas = ">=0.25"
+patsy = ">=0.5.2"
+scipy = ">=1.3"
+
+[package.extras]
+build = ["cython (>=0.29.26)"]
+develop = ["cython (>=0.29.26)"]
+docs = ["ipykernel", "jupyter-client", "matplotlib", "nbconvert", "nbformat", "numpydoc", "pandas-datareader", "sphinx"]
+
+[[package]]
+name = "statsmodels"
+version = "0.14.1"
+description = "Statistical computations and models for Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+markers = "platform_system != \"Windows\" or platform_python_implementation == \"PyPy\""
+files = [
+ {file = "statsmodels-0.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:43af9c0b07c9d72f275cf14ea54a481a3f20911f0b443181be4769def258fdeb"},
+ {file = "statsmodels-0.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a16975ab6ad505d837ba9aee11f92a8c5b49c4fa1ff45b60fe23780b19e5705e"},
+ {file = "statsmodels-0.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e278fe74da5ed5e06c11a30851eda1af08ef5af6be8507c2c45d2e08f7550dde"},
+ {file = "statsmodels-0.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0564d92cb05b219b4538ed09e77d96658a924a691255e1f7dd23ee338df441b"},
+ {file = "statsmodels-0.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5385e22e72159a09c099c4fb975f350a9f3afeb57c1efce273b89dcf1fe44c0f"},
+ {file = "statsmodels-0.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:0a8aae75a2e08ebd990e5fa394f8e32738b55785cb70798449a3f4207085e667"},
+ {file = "statsmodels-0.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b69a63ad6c979a6e4cde11870ffa727c76a318c225a7e509f031fbbdfb4e416a"},
+ {file = "statsmodels-0.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7562cb18a90a114f39fab6f1c25b9c7b39d9cd5f433d0044b430ca9d44a8b52c"},
+ {file = "statsmodels-0.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b3abaca4b963259a2bf349c7609cfbb0ce64ad5fb3d92d6f08e21453e4890248"},
+ {file = "statsmodels-0.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0f727fe697f6406d5f677b67211abe5a55101896abdfacdb3f38410405f6ad8"},
+ {file = "statsmodels-0.14.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b6838ac6bdb286daabb5e91af90fd4258f09d0cec9aace78cc441cb2b17df428"},
+ {file = "statsmodels-0.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:709bfcef2dbe66f705b17e56d1021abad02243ee1a5d1efdb90f9bad8b06a329"},
+ {file = "statsmodels-0.14.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f32a7cd424cf33304a54daee39d32cccf1d0265e652c920adeaeedff6d576457"},
+ {file = "statsmodels-0.14.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f8c30181c084173d662aaf0531867667be2ff1bee103b84feb64f149f792dbd2"},
+ {file = "statsmodels-0.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2de2b97413913d52ad6342dece2d653e77f78620013b7705fad291d4e4266ccb"},
+ {file = "statsmodels-0.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3420f88289c593ba2bca33619023059c476674c160733bd7d858564787c83d3"},
+ {file = "statsmodels-0.14.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:c008e16096f24f0514e53907890ccac6589a16ad6c81c218f2ee6752fdada555"},
+ {file = "statsmodels-0.14.1-cp312-cp312-win_amd64.whl", hash = "sha256:bc0351d279c4e080f0ce638a3d886d312aa29eade96042e3ba0a73771b1abdfb"},
+ {file = "statsmodels-0.14.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bf293ada63b2859d95210165ad1dfcd97bd7b994a5266d6fbeb23659d8f0bf68"},
+ {file = "statsmodels-0.14.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44ca8cb88fa3d3a4ffaff1fb8eb0e98bbf83fc936fcd9b9eedee258ecc76696a"},
+ {file = "statsmodels-0.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d5373d176239993c095b00d06036690a50309a4e00c2da553b65b840f956ae6"},
+ {file = "statsmodels-0.14.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a532dfe899f8b6632cd8caa0b089b403415618f51e840d1817a1e4b97e200c73"},
+ {file = "statsmodels-0.14.1-cp38-cp38-win_amd64.whl", hash = "sha256:4fe0a60695952b82139ae8750952786a700292f9e0551d572d7685070944487b"},
+ {file = "statsmodels-0.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:04293890f153ffe577e60a227bd43babd5f6c1fc50ea56a3ab1862ae85247a95"},
+ {file = "statsmodels-0.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e70a2e93d54d40b2cb6426072acbc04f35501b1ea2569f6786964adde6ca572"},
+ {file = "statsmodels-0.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab3a73d16c0569adbba181ebb967e5baaa74935f6d2efe86ac6fc5857449b07d"},
+ {file = "statsmodels-0.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eefa5bcff335440ee93e28745eab63559a20cd34eea0375c66d96b016de909b3"},
+ {file = "statsmodels-0.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:bc43765710099ca6a942b5ffa1bac7668965052542ba793dd072d26c83453572"},
+ {file = "statsmodels-0.14.1.tar.gz", hash = "sha256:2260efdc1ef89f39c670a0bd8151b1d0843567781bcafec6cda0534eb47a94f6"},
+]
+
+[package.dependencies]
+numpy = {version = ">=1.18,<2", markers = "python_version != \"3.10\" or platform_system != \"Windows\" or platform_python_implementation == \"PyPy\""}
+packaging = ">=21.3"
+pandas = ">=1.0,<2.1.0 || >2.1.0"
+patsy = ">=0.5.4"
+scipy = ">=1.4,<1.9.2 || >1.9.2"
+
+[package.extras]
+build = ["cython (>=0.29.33)"]
+develop = ["colorama", "cython (>=0.29.33)", "cython (>=0.29.33,<4.0.0)", "flake8", "isort", "joblib", "matplotlib (>=3)", "oldest-supported-numpy (>=2022.4.18)", "pytest (>=7.3.0)", "pytest-cov", "pytest-randomly", "pytest-xdist", "pywinpty ; os_name == \"nt\"", "setuptools-scm[toml] (>=8.0,<9.0)"]
+docs = ["ipykernel", "jupyter-client", "matplotlib", "nbconvert", "nbformat", "numpydoc", "pandas-datareader", "sphinx"]
+
+[[package]]
+name = "tenacity"
+version = "9.1.2"
+description = "Retry code until it succeeds"
+optional = false
+python-versions = ">=3.9"
+groups = ["main"]
+files = [
+ {file = "tenacity-9.1.2-py3-none-any.whl", hash = "sha256:f77bf36710d8b73a50b2dd155c97b870017ad21afe6ab300326b0371b3b05138"},
+ {file = "tenacity-9.1.2.tar.gz", hash = "sha256:1169d376c297e7de388d18b4481760d478b0e99a777cad3a9c86e556f4b697cb"},
+]
+
+[package.extras]
+doc = ["reno", "sphinx"]
+test = ["pytest", "tornado (>=4.5)", "typeguard"]
+
+[[package]]
+name = "tensorboardx"
+version = "2.6.2.2"
+description = "TensorBoardX lets you watch Tensors Flow without Tensorflow"
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "tensorboardX-2.6.2.2-py2.py3-none-any.whl", hash = "sha256:160025acbf759ede23fd3526ae9d9bfbfd8b68eb16c38a010ebe326dc6395db8"},
+ {file = "tensorboardX-2.6.2.2.tar.gz", hash = "sha256:c6476d7cd0d529b0b72f4acadb1269f9ed8b22f441e87a84f2a3b940bb87b666"},
+]
+
+[package.dependencies]
+numpy = "*"
+packaging = "*"
+protobuf = ">=3.20"
+
+[[package]]
+name = "terminado"
+version = "0.18.1"
+description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library."
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0"},
+ {file = "terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e"},
+]
+
+[package.dependencies]
+ptyprocess = {version = "*", markers = "os_name != \"nt\""}
+pywinpty = {version = ">=1.1.0", markers = "os_name == \"nt\""}
+tornado = ">=6.1.0"
+
+[package.extras]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"]
+test = ["pre-commit", "pytest (>=7.0)", "pytest-timeout"]
+typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"]
+
+[[package]]
+name = "threadpoolctl"
+version = "3.1.0"
+description = "threadpoolctl"
+optional = false
+python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "threadpoolctl-3.1.0-py3-none-any.whl", hash = "sha256:8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b"},
+ {file = "threadpoolctl-3.1.0.tar.gz", hash = "sha256:a335baacfaa4400ae1f0d8e3a58d6674d2f8828e3716bb2802c44955ad391380"},
+]
+
+[[package]]
+name = "tifffile"
+version = "2025.3.30"
+description = "Read and write TIFF files"
+optional = false
+python-versions = ">=3.10"
+groups = ["main"]
+files = [
+ {file = "tifffile-2025.3.30-py3-none-any.whl", hash = "sha256:0ed6eee7b66771db2d1bfc42262a51b01887505d35539daef118f4ff8c0f629c"},
+ {file = "tifffile-2025.3.30.tar.gz", hash = "sha256:3cdee47fe06cd75367c16bc3ff34523713156dae6cd498e3a392e5b39a51b789"},
+]
+
+[package.dependencies]
+numpy = "*"
+
+[package.extras]
+all = ["defusedxml", "fsspec", "imagecodecs (>=2024.12.30)", "lxml", "matplotlib", "zarr (<3)"]
+codecs = ["imagecodecs (>=2024.12.30)"]
+plot = ["matplotlib"]
+test = ["cmapfile", "czifile", "dask", "defusedxml", "fsspec", "imagecodecs", "lfdfiles", "lxml", "ndtiff", "oiffile", "psdtags", "pytest", "roifile", "xarray", "zarr (<3)"]
+xml = ["defusedxml", "lxml"]
+zarr = ["fsspec", "zarr (<3)"]
+
+[[package]]
+name = "tinycss2"
+version = "1.4.0"
+description = "A tiny CSS parser"
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289"},
+ {file = "tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7"},
+]
+
+[package.dependencies]
+webencodings = ">=0.4"
+
+[package.extras]
+doc = ["sphinx", "sphinx_rtd_theme"]
+test = ["pytest", "ruff"]
+
+[[package]]
+name = "tomli"
+version = "2.2.1"
+description = "A lil' TOML parser"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249"},
+ {file = "tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6"},
+ {file = "tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a"},
+ {file = "tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee"},
+ {file = "tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e"},
+ {file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4"},
+ {file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106"},
+ {file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8"},
+ {file = "tomli-2.2.1-cp311-cp311-win32.whl", hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff"},
+ {file = "tomli-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b"},
+ {file = "tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea"},
+ {file = "tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8"},
+ {file = "tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192"},
+ {file = "tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222"},
+ {file = "tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77"},
+ {file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6"},
+ {file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd"},
+ {file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e"},
+ {file = "tomli-2.2.1-cp312-cp312-win32.whl", hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98"},
+ {file = "tomli-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4"},
+ {file = "tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7"},
+ {file = "tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c"},
+ {file = "tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13"},
+ {file = "tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281"},
+ {file = "tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272"},
+ {file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140"},
+ {file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2"},
+ {file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744"},
+ {file = "tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec"},
+ {file = "tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69"},
+ {file = "tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc"},
+ {file = "tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff"},
+]
+
+[[package]]
+name = "tornado"
+version = "6.4.2"
+description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed."
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e828cce1123e9e44ae2a50a9de3055497ab1d0aeb440c5ac23064d9e44880da1"},
+ {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:072ce12ada169c5b00b7d92a99ba089447ccc993ea2143c9ede887e0937aa803"},
+ {file = "tornado-6.4.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a017d239bd1bb0919f72af256a970624241f070496635784d9bf0db640d3fec"},
+ {file = "tornado-6.4.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c36e62ce8f63409301537222faffcef7dfc5284f27eec227389f2ad11b09d946"},
+ {file = "tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca9eb02196e789c9cb5c3c7c0f04fb447dc2adffd95265b2c7223a8a615ccbf"},
+ {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:304463bd0772442ff4d0f5149c6f1c2135a1fae045adf070821c6cdc76980634"},
+ {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:c82c46813ba483a385ab2a99caeaedf92585a1f90defb5693351fa7e4ea0bf73"},
+ {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:932d195ca9015956fa502c6b56af9eb06106140d844a335590c1ec7f5277d10c"},
+ {file = "tornado-6.4.2-cp38-abi3-win32.whl", hash = "sha256:2876cef82e6c5978fde1e0d5b1f919d756968d5b4282418f3146b79b58556482"},
+ {file = "tornado-6.4.2-cp38-abi3-win_amd64.whl", hash = "sha256:908b71bf3ff37d81073356a5fadcc660eb10c1476ee6e2725588626ce7e5ca38"},
+ {file = "tornado-6.4.2.tar.gz", hash = "sha256:92bad5b4746e9879fd7bf1eb21dce4e3fc5128d71601f80005afa39237ad620b"},
+]
+
+[[package]]
+name = "tqdm"
+version = "4.66.1"
+description = "Fast, Extensible Progress Meter"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "tqdm-4.66.1-py3-none-any.whl", hash = "sha256:d302b3c5b53d47bce91fea46679d9c3c6508cf6332229aa1e7d8653723793386"},
+ {file = "tqdm-4.66.1.tar.gz", hash = "sha256:d88e651f9db8d8551a62556d3cff9e3034274ca5d66e93197cf2490e2dcb69c7"},
+]
+
+[package.dependencies]
+colorama = {version = "*", markers = "platform_system == \"Windows\""}
+
+[package.extras]
+dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"]
+notebook = ["ipywidgets (>=6)"]
+slack = ["slack-sdk"]
+telegram = ["requests"]
+
+[[package]]
+name = "traitlets"
+version = "5.14.3"
+description = "Traitlets Python configuration system"
+optional = false
+python-versions = ">=3.8"
+groups = ["main", "dev"]
+files = [
+ {file = "traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f"},
+ {file = "traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7"},
+]
+
+[package.extras]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"]
+test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,<8.2)", "pytest-mock", "pytest-mypy-testing"]
+
+[[package]]
+name = "treeinterpreter"
+version = "0.2.3"
+description = "Package for interpreting scikit-learn's decision tree and random forest predictions."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "treeinterpreter-0.2.3-py2.py3-none-any.whl", hash = "sha256:48660bbddd4577e28655abf0ffb77eb8b8e57d771e32503be56737103aa457a4"},
+ {file = "treeinterpreter-0.2.3.tar.gz", hash = "sha256:da5c24f802f7d072bc457b6e4b289d5ee41961ce33437e8dc439a2cfd9c6d994"},
+]
+
+[[package]]
+name = "tune-sklearn"
+version = "0.5.0"
+description = "A drop-in replacement for Scikit-Learn's GridSearchCV / RandomizedSearchCV with cutting edge hyperparameter tuning techniques."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "tune_sklearn-0.5.0-py3-none-any.whl", hash = "sha256:5cff40ca19198f4cb10904ab397bf80d654e549082e831333e0c342cdd20f4c9"},
+]
+
+[package.dependencies]
+numpy = ">=1.16"
+ray = {version = ">=2.7.1", extras = ["tune"]}
+scikit-learn = "*"
+scipy = "*"
+
+[[package]]
+name = "typed-ast"
+version = "1.5.5"
+description = "a fork of Python 2 and 3 ast modules with type comment support"
+optional = false
+python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "typed_ast-1.5.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4bc1efe0ce3ffb74784e06460f01a223ac1f6ab31c6bc0376a21184bf5aabe3b"},
+ {file = "typed_ast-1.5.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5f7a8c46a8b333f71abd61d7ab9255440d4a588f34a21f126bbfc95f6049e686"},
+ {file = "typed_ast-1.5.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:597fc66b4162f959ee6a96b978c0435bd63791e31e4f410622d19f1686d5e769"},
+ {file = "typed_ast-1.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d41b7a686ce653e06c2609075d397ebd5b969d821b9797d029fccd71fdec8e04"},
+ {file = "typed_ast-1.5.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5fe83a9a44c4ce67c796a1b466c270c1272e176603d5e06f6afbc101a572859d"},
+ {file = "typed_ast-1.5.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d5c0c112a74c0e5db2c75882a0adf3133adedcdbfd8cf7c9d6ed77365ab90a1d"},
+ {file = "typed_ast-1.5.5-cp310-cp310-win_amd64.whl", hash = "sha256:e1a976ed4cc2d71bb073e1b2a250892a6e968ff02aa14c1f40eba4f365ffec02"},
+ {file = "typed_ast-1.5.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c631da9710271cb67b08bd3f3813b7af7f4c69c319b75475436fcab8c3d21bee"},
+ {file = "typed_ast-1.5.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b445c2abfecab89a932b20bd8261488d574591173d07827c1eda32c457358b18"},
+ {file = "typed_ast-1.5.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc95ffaaab2be3b25eb938779e43f513e0e538a84dd14a5d844b8f2932593d88"},
+ {file = "typed_ast-1.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61443214d9b4c660dcf4b5307f15c12cb30bdfe9588ce6158f4a005baeb167b2"},
+ {file = "typed_ast-1.5.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6eb936d107e4d474940469e8ec5b380c9b329b5f08b78282d46baeebd3692dc9"},
+ {file = "typed_ast-1.5.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e48bf27022897577d8479eaed64701ecaf0467182448bd95759883300ca818c8"},
+ {file = "typed_ast-1.5.5-cp311-cp311-win_amd64.whl", hash = "sha256:83509f9324011c9a39faaef0922c6f720f9623afe3fe220b6d0b15638247206b"},
+ {file = "typed_ast-1.5.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:44f214394fc1af23ca6d4e9e744804d890045d1643dd7e8229951e0ef39429b5"},
+ {file = "typed_ast-1.5.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:118c1ce46ce58fda78503eae14b7664163aa735b620b64b5b725453696f2a35c"},
+ {file = "typed_ast-1.5.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be4919b808efa61101456e87f2d4c75b228f4e52618621c77f1ddcaae15904fa"},
+ {file = "typed_ast-1.5.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:fc2b8c4e1bc5cd96c1a823a885e6b158f8451cf6f5530e1829390b4d27d0807f"},
+ {file = "typed_ast-1.5.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:16f7313e0a08c7de57f2998c85e2a69a642e97cb32f87eb65fbfe88381a5e44d"},
+ {file = "typed_ast-1.5.5-cp36-cp36m-win_amd64.whl", hash = "sha256:2b946ef8c04f77230489f75b4b5a4a6f24c078be4aed241cfabe9cbf4156e7e5"},
+ {file = "typed_ast-1.5.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2188bc33d85951ea4ddad55d2b35598b2709d122c11c75cffd529fbc9965508e"},
+ {file = "typed_ast-1.5.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0635900d16ae133cab3b26c607586131269f88266954eb04ec31535c9a12ef1e"},
+ {file = "typed_ast-1.5.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57bfc3cf35a0f2fdf0a88a3044aafaec1d2f24d8ae8cd87c4f58d615fb5b6311"},
+ {file = "typed_ast-1.5.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:fe58ef6a764de7b4b36edfc8592641f56e69b7163bba9f9c8089838ee596bfb2"},
+ {file = "typed_ast-1.5.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d09d930c2d1d621f717bb217bf1fe2584616febb5138d9b3e8cdd26506c3f6d4"},
+ {file = "typed_ast-1.5.5-cp37-cp37m-win_amd64.whl", hash = "sha256:d40c10326893ecab8a80a53039164a224984339b2c32a6baf55ecbd5b1df6431"},
+ {file = "typed_ast-1.5.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fd946abf3c31fb50eee07451a6aedbfff912fcd13cf357363f5b4e834cc5e71a"},
+ {file = "typed_ast-1.5.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ed4a1a42df8a3dfb6b40c3d2de109e935949f2f66b19703eafade03173f8f437"},
+ {file = "typed_ast-1.5.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:045f9930a1550d9352464e5149710d56a2aed23a2ffe78946478f7b5416f1ede"},
+ {file = "typed_ast-1.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:381eed9c95484ceef5ced626355fdc0765ab51d8553fec08661dce654a935db4"},
+ {file = "typed_ast-1.5.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:bfd39a41c0ef6f31684daff53befddae608f9daf6957140228a08e51f312d7e6"},
+ {file = "typed_ast-1.5.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8c524eb3024edcc04e288db9541fe1f438f82d281e591c548903d5b77ad1ddd4"},
+ {file = "typed_ast-1.5.5-cp38-cp38-win_amd64.whl", hash = "sha256:7f58fabdde8dcbe764cef5e1a7fcb440f2463c1bbbec1cf2a86ca7bc1f95184b"},
+ {file = "typed_ast-1.5.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:042eb665ff6bf020dd2243307d11ed626306b82812aba21836096d229fdc6a10"},
+ {file = "typed_ast-1.5.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:622e4a006472b05cf6ef7f9f2636edc51bda670b7bbffa18d26b255269d3d814"},
+ {file = "typed_ast-1.5.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1efebbbf4604ad1283e963e8915daa240cb4bf5067053cf2f0baadc4d4fb51b8"},
+ {file = "typed_ast-1.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0aefdd66f1784c58f65b502b6cf8b121544680456d1cebbd300c2c813899274"},
+ {file = "typed_ast-1.5.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:48074261a842acf825af1968cd912f6f21357316080ebaca5f19abbb11690c8a"},
+ {file = "typed_ast-1.5.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:429ae404f69dc94b9361bb62291885894b7c6fb4640d561179548c849f8492ba"},
+ {file = "typed_ast-1.5.5-cp39-cp39-win_amd64.whl", hash = "sha256:335f22ccb244da2b5c296e6f96b06ee9bed46526db0de38d2f0e5a6597b81155"},
+ {file = "typed_ast-1.5.5.tar.gz", hash = "sha256:94282f7a354f36ef5dbce0ef3467ebf6a258e370ab33d5b40c249fa996e590dd"},
+]
+
+[[package]]
+name = "types-python-dateutil"
+version = "2.9.0.20241206"
+description = "Typing stubs for python-dateutil"
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "types_python_dateutil-2.9.0.20241206-py3-none-any.whl", hash = "sha256:e248a4bc70a486d3e3ec84d0dc30eec3a5f979d6e7ee4123ae043eedbb987f53"},
+ {file = "types_python_dateutil-2.9.0.20241206.tar.gz", hash = "sha256:18f493414c26ffba692a72369fea7a154c502646301ebfe3d56a04b3767284cb"},
+]
+
+[[package]]
+name = "typing-extensions"
+version = "4.7.1"
+description = "Backported and Experimental Type Hints for Python 3.7+"
+optional = false
+python-versions = ">=3.7"
+groups = ["main", "dev"]
+files = [
+ {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"},
+ {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"},
+]
+
+[[package]]
+name = "uri-template"
+version = "1.3.0"
+description = "RFC 6570 URI Template Processor"
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7"},
+ {file = "uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363"},
+]
+
+[package.extras]
+dev = ["flake8", "flake8-annotations", "flake8-bandit", "flake8-bugbear", "flake8-commas", "flake8-comprehensions", "flake8-continuation", "flake8-datetimez", "flake8-docstrings", "flake8-import-order", "flake8-literal", "flake8-modern-annotations", "flake8-noqa", "flake8-pyproject", "flake8-requirements", "flake8-typechecking-import", "flake8-use-fstring", "mypy", "pep8-naming", "types-PyYAML"]
+
+[[package]]
+name = "urllib3"
+version = "2.4.0"
+description = "HTTP library with thread-safe connection pooling, file post, and more."
+optional = false
+python-versions = ">=3.9"
+groups = ["main", "dev"]
+files = [
+ {file = "urllib3-2.4.0-py3-none-any.whl", hash = "sha256:4e16665048960a0900c702d4a66415956a584919c03361cac9f1df5c5dd7e813"},
+ {file = "urllib3-2.4.0.tar.gz", hash = "sha256:414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466"},
+]
+
+[package.extras]
+brotli = ["brotli (>=1.0.9) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\""]
+h2 = ["h2 (>=4,<5)"]
+socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
+zstd = ["zstandard (>=0.18.0)"]
+
+[[package]]
+name = "virtualenv"
+version = "20.30.0"
+description = "Virtual Python Environment builder"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "virtualenv-20.30.0-py3-none-any.whl", hash = "sha256:e34302959180fca3af42d1800df014b35019490b119eba981af27f2fa486e5d6"},
+ {file = "virtualenv-20.30.0.tar.gz", hash = "sha256:800863162bcaa5450a6e4d721049730e7f2dae07720e0902b0e4040bd6f9ada8"},
+]
+
+[package.dependencies]
+distlib = ">=0.3.7,<1"
+filelock = ">=3.12.2,<4"
+platformdirs = ">=3.9.1,<5"
+
+[package.extras]
+docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2,!=7.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"]
+test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8) ; platform_python_implementation == \"PyPy\" or platform_python_implementation == \"GraalVM\" or platform_python_implementation == \"CPython\" and sys_platform == \"win32\" and python_version >= \"3.13\"", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10) ; platform_python_implementation == \"CPython\""]
+
+[[package]]
+name = "wcwidth"
+version = "0.2.13"
+description = "Measures the displayed width of unicode strings in a terminal"
+optional = false
+python-versions = "*"
+groups = ["main", "dev"]
+files = [
+ {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"},
+ {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"},
+]
+
+[[package]]
+name = "webcolors"
+version = "24.11.1"
+description = "A library for working with the color formats defined by HTML and CSS."
+optional = false
+python-versions = ">=3.9"
+groups = ["dev"]
+files = [
+ {file = "webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9"},
+ {file = "webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6"},
+]
+
+[[package]]
+name = "webencodings"
+version = "0.5.1"
+description = "Character encoding aliases for legacy web content"
+optional = false
+python-versions = "*"
+groups = ["dev"]
+files = [
+ {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
+ {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
+]
+
+[[package]]
+name = "websocket-client"
+version = "1.8.0"
+description = "WebSocket client for Python with low level API options"
+optional = false
+python-versions = ">=3.8"
+groups = ["dev"]
+files = [
+ {file = "websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526"},
+ {file = "websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da"},
+]
+
+[package.extras]
+docs = ["Sphinx (>=6.0)", "myst-parser (>=2.0.0)", "sphinx-rtd-theme (>=1.1.0)"]
+optional = ["python-socks", "wsaccel"]
+test = ["websockets"]
+
+[[package]]
+name = "werkzeug"
+version = "3.0.6"
+description = "The comprehensive WSGI web application library."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "werkzeug-3.0.6-py3-none-any.whl", hash = "sha256:1bc0c2310d2fbb07b1dd1105eba2f7af72f322e1e455f2f93c993bee8c8a5f17"},
+ {file = "werkzeug-3.0.6.tar.gz", hash = "sha256:a8dd59d4de28ca70471a34cba79bed5f7ef2e036a76b3ab0835474246eb41f8d"},
+]
+
+[package.dependencies]
+MarkupSafe = ">=2.1.1"
+
+[package.extras]
+watchdog = ["watchdog (>=2.3)"]
+
+[[package]]
+name = "widgetsnbextension"
+version = "4.0.14"
+description = "Jupyter interactive widgets for Jupyter Notebook"
+optional = false
+python-versions = ">=3.7"
+groups = ["dev"]
+files = [
+ {file = "widgetsnbextension-4.0.14-py3-none-any.whl", hash = "sha256:4875a9eaf72fbf5079dc372a51a9f268fc38d46f767cbf85c43a36da5cb9b575"},
+ {file = "widgetsnbextension-4.0.14.tar.gz", hash = "sha256:a3629b04e3edb893212df862038c7232f62973373869db5084aed739b437b5af"},
+]
+
+[[package]]
+name = "wrapt"
+version = "1.17.2"
+description = "Module for decorators, wrappers and monkey patching."
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "wrapt-1.17.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3d57c572081fed831ad2d26fd430d565b76aa277ed1d30ff4d40670b1c0dd984"},
+ {file = "wrapt-1.17.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b5e251054542ae57ac7f3fba5d10bfff615b6c2fb09abeb37d2f1463f841ae22"},
+ {file = "wrapt-1.17.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:80dd7db6a7cb57ffbc279c4394246414ec99537ae81ffd702443335a61dbf3a7"},
+ {file = "wrapt-1.17.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a6e821770cf99cc586d33833b2ff32faebdbe886bd6322395606cf55153246c"},
+ {file = "wrapt-1.17.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b60fb58b90c6d63779cb0c0c54eeb38941bae3ecf7a73c764c52c88c2dcb9d72"},
+ {file = "wrapt-1.17.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b870b5df5b71d8c3359d21be8f0d6c485fa0ebdb6477dda51a1ea54a9b558061"},
+ {file = "wrapt-1.17.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4011d137b9955791f9084749cba9a367c68d50ab8d11d64c50ba1688c9b457f2"},
+ {file = "wrapt-1.17.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1473400e5b2733e58b396a04eb7f35f541e1fb976d0c0724d0223dd607e0f74c"},
+ {file = "wrapt-1.17.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3cedbfa9c940fdad3e6e941db7138e26ce8aad38ab5fe9dcfadfed9db7a54e62"},
+ {file = "wrapt-1.17.2-cp310-cp310-win32.whl", hash = "sha256:582530701bff1dec6779efa00c516496968edd851fba224fbd86e46cc6b73563"},
+ {file = "wrapt-1.17.2-cp310-cp310-win_amd64.whl", hash = "sha256:58705da316756681ad3c9c73fd15499aa4d8c69f9fd38dc8a35e06c12468582f"},
+ {file = "wrapt-1.17.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ff04ef6eec3eee8a5efef2401495967a916feaa353643defcc03fc74fe213b58"},
+ {file = "wrapt-1.17.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4db983e7bca53819efdbd64590ee96c9213894272c776966ca6306b73e4affda"},
+ {file = "wrapt-1.17.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9abc77a4ce4c6f2a3168ff34b1da9b0f311a8f1cfd694ec96b0603dff1c79438"},
+ {file = "wrapt-1.17.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b929ac182f5ace000d459c59c2c9c33047e20e935f8e39371fa6e3b85d56f4a"},
+ {file = "wrapt-1.17.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f09b286faeff3c750a879d336fb6d8713206fc97af3adc14def0cdd349df6000"},
+ {file = "wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7ed2d9d039bd41e889f6fb9364554052ca21ce823580f6a07c4ec245c1f5d6"},
+ {file = "wrapt-1.17.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:129a150f5c445165ff941fc02ee27df65940fcb8a22a61828b1853c98763a64b"},
+ {file = "wrapt-1.17.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1fb5699e4464afe5c7e65fa51d4f99e0b2eadcc176e4aa33600a3df7801d6662"},
+ {file = "wrapt-1.17.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9a2bce789a5ea90e51a02dfcc39e31b7f1e662bc3317979aa7e5538e3a034f72"},
+ {file = "wrapt-1.17.2-cp311-cp311-win32.whl", hash = "sha256:4afd5814270fdf6380616b321fd31435a462019d834f83c8611a0ce7484c7317"},
+ {file = "wrapt-1.17.2-cp311-cp311-win_amd64.whl", hash = "sha256:acc130bc0375999da18e3d19e5a86403667ac0c4042a094fefb7eec8ebac7cf3"},
+ {file = "wrapt-1.17.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d5e2439eecc762cd85e7bd37161d4714aa03a33c5ba884e26c81559817ca0925"},
+ {file = "wrapt-1.17.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fc7cb4c1c744f8c05cd5f9438a3caa6ab94ce8344e952d7c45a8ed59dd88392"},
+ {file = "wrapt-1.17.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fdbdb757d5390f7c675e558fd3186d590973244fab0c5fe63d373ade3e99d40"},
+ {file = "wrapt-1.17.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb1d0dbf99411f3d871deb6faa9aabb9d4e744d67dcaaa05399af89d847a91d"},
+ {file = "wrapt-1.17.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d18a4865f46b8579d44e4fe1e2bcbc6472ad83d98e22a26c963d46e4c125ef0b"},
+ {file = "wrapt-1.17.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc570b5f14a79734437cb7b0500376b6b791153314986074486e0b0fa8d71d98"},
+ {file = "wrapt-1.17.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6d9187b01bebc3875bac9b087948a2bccefe464a7d8f627cf6e48b1bbae30f82"},
+ {file = "wrapt-1.17.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9e8659775f1adf02eb1e6f109751268e493c73716ca5761f8acb695e52a756ae"},
+ {file = "wrapt-1.17.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e8b2816ebef96d83657b56306152a93909a83f23994f4b30ad4573b00bd11bb9"},
+ {file = "wrapt-1.17.2-cp312-cp312-win32.whl", hash = "sha256:468090021f391fe0056ad3e807e3d9034e0fd01adcd3bdfba977b6fdf4213ea9"},
+ {file = "wrapt-1.17.2-cp312-cp312-win_amd64.whl", hash = "sha256:ec89ed91f2fa8e3f52ae53cd3cf640d6feff92ba90d62236a81e4e563ac0e991"},
+ {file = "wrapt-1.17.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6ed6ffac43aecfe6d86ec5b74b06a5be33d5bb9243d055141e8cabb12aa08125"},
+ {file = "wrapt-1.17.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:35621ae4c00e056adb0009f8e86e28eb4a41a4bfa8f9bfa9fca7d343fe94f998"},
+ {file = "wrapt-1.17.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a604bf7a053f8362d27eb9fefd2097f82600b856d5abe996d623babd067b1ab5"},
+ {file = "wrapt-1.17.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cbabee4f083b6b4cd282f5b817a867cf0b1028c54d445b7ec7cfe6505057cf8"},
+ {file = "wrapt-1.17.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49703ce2ddc220df165bd2962f8e03b84c89fee2d65e1c24a7defff6f988f4d6"},
+ {file = "wrapt-1.17.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8112e52c5822fc4253f3901b676c55ddf288614dc7011634e2719718eaa187dc"},
+ {file = "wrapt-1.17.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9fee687dce376205d9a494e9c121e27183b2a3df18037f89d69bd7b35bcf59e2"},
+ {file = "wrapt-1.17.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:18983c537e04d11cf027fbb60a1e8dfd5190e2b60cc27bc0808e653e7b218d1b"},
+ {file = "wrapt-1.17.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:703919b1633412ab54bcf920ab388735832fdcb9f9a00ae49387f0fe67dad504"},
+ {file = "wrapt-1.17.2-cp313-cp313-win32.whl", hash = "sha256:abbb9e76177c35d4e8568e58650aa6926040d6a9f6f03435b7a522bf1c487f9a"},
+ {file = "wrapt-1.17.2-cp313-cp313-win_amd64.whl", hash = "sha256:69606d7bb691b50a4240ce6b22ebb319c1cfb164e5f6569835058196e0f3a845"},
+ {file = "wrapt-1.17.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:4a721d3c943dae44f8e243b380cb645a709ba5bd35d3ad27bc2ed947e9c68192"},
+ {file = "wrapt-1.17.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:766d8bbefcb9e00c3ac3b000d9acc51f1b399513f44d77dfe0eb026ad7c9a19b"},
+ {file = "wrapt-1.17.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e496a8ce2c256da1eb98bd15803a79bee00fc351f5dfb9ea82594a3f058309e0"},
+ {file = "wrapt-1.17.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d615e4fe22f4ad3528448c193b218e077656ca9ccb22ce2cb20db730f8d306"},
+ {file = "wrapt-1.17.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a5aaeff38654462bc4b09023918b7f21790efb807f54c000a39d41d69cf552cb"},
+ {file = "wrapt-1.17.2-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a7d15bbd2bc99e92e39f49a04653062ee6085c0e18b3b7512a4f2fe91f2d681"},
+ {file = "wrapt-1.17.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e3890b508a23299083e065f435a492b5435eba6e304a7114d2f919d400888cc6"},
+ {file = "wrapt-1.17.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8c8b293cd65ad716d13d8dd3624e42e5a19cc2a2f1acc74b30c2c13f15cb61a6"},
+ {file = "wrapt-1.17.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c82b8785d98cdd9fed4cac84d765d234ed3251bd6afe34cb7ac523cb93e8b4f"},
+ {file = "wrapt-1.17.2-cp313-cp313t-win32.whl", hash = "sha256:13e6afb7fe71fe7485a4550a8844cc9ffbe263c0f1a1eea569bc7091d4898555"},
+ {file = "wrapt-1.17.2-cp313-cp313t-win_amd64.whl", hash = "sha256:eaf675418ed6b3b31c7a989fd007fa7c3be66ce14e5c3b27336383604c9da85c"},
+ {file = "wrapt-1.17.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5c803c401ea1c1c18de70a06a6f79fcc9c5acfc79133e9869e730ad7f8ad8ef9"},
+ {file = "wrapt-1.17.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f917c1180fdb8623c2b75a99192f4025e412597c50b2ac870f156de8fb101119"},
+ {file = "wrapt-1.17.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ecc840861360ba9d176d413a5489b9a0aff6d6303d7e733e2c4623cfa26904a6"},
+ {file = "wrapt-1.17.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb87745b2e6dc56361bfde481d5a378dc314b252a98d7dd19a651a3fa58f24a9"},
+ {file = "wrapt-1.17.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58455b79ec2661c3600e65c0a716955adc2410f7383755d537584b0de41b1d8a"},
+ {file = "wrapt-1.17.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4e42a40a5e164cbfdb7b386c966a588b1047558a990981ace551ed7e12ca9c2"},
+ {file = "wrapt-1.17.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:91bd7d1773e64019f9288b7a5101f3ae50d3d8e6b1de7edee9c2ccc1d32f0c0a"},
+ {file = "wrapt-1.17.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:bb90fb8bda722a1b9d48ac1e6c38f923ea757b3baf8ebd0c82e09c5c1a0e7a04"},
+ {file = "wrapt-1.17.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:08e7ce672e35efa54c5024936e559469436f8b8096253404faeb54d2a878416f"},
+ {file = "wrapt-1.17.2-cp38-cp38-win32.whl", hash = "sha256:410a92fefd2e0e10d26210e1dfb4a876ddaf8439ef60d6434f21ef8d87efc5b7"},
+ {file = "wrapt-1.17.2-cp38-cp38-win_amd64.whl", hash = "sha256:95c658736ec15602da0ed73f312d410117723914a5c91a14ee4cdd72f1d790b3"},
+ {file = "wrapt-1.17.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99039fa9e6306880572915728d7f6c24a86ec57b0a83f6b2491e1d8ab0235b9a"},
+ {file = "wrapt-1.17.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2696993ee1eebd20b8e4ee4356483c4cb696066ddc24bd70bcbb80fa56ff9061"},
+ {file = "wrapt-1.17.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:612dff5db80beef9e649c6d803a8d50c409082f1fedc9dbcdfde2983b2025b82"},
+ {file = "wrapt-1.17.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62c2caa1585c82b3f7a7ab56afef7b3602021d6da34fbc1cf234ff139fed3cd9"},
+ {file = "wrapt-1.17.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c958bcfd59bacc2d0249dcfe575e71da54f9dcf4a8bdf89c4cb9a68a1170d73f"},
+ {file = "wrapt-1.17.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc78a84e2dfbc27afe4b2bd7c80c8db9bca75cc5b85df52bfe634596a1da846b"},
+ {file = "wrapt-1.17.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ba0f0eb61ef00ea10e00eb53a9129501f52385c44853dbd6c4ad3f403603083f"},
+ {file = "wrapt-1.17.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1e1fe0e6ab7775fd842bc39e86f6dcfc4507ab0ffe206093e76d61cde37225c8"},
+ {file = "wrapt-1.17.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c86563182421896d73858e08e1db93afdd2b947a70064b813d515d66549e15f9"},
+ {file = "wrapt-1.17.2-cp39-cp39-win32.whl", hash = "sha256:f393cda562f79828f38a819f4788641ac7c4085f30f1ce1a68672baa686482bb"},
+ {file = "wrapt-1.17.2-cp39-cp39-win_amd64.whl", hash = "sha256:36ccae62f64235cf8ddb682073a60519426fdd4725524ae38874adf72b5f2aeb"},
+ {file = "wrapt-1.17.2-py3-none-any.whl", hash = "sha256:b18f2d1533a71f069c7f82d524a52599053d4c7166e9dd374ae2136b7f40f7c8"},
+ {file = "wrapt-1.17.2.tar.gz", hash = "sha256:41388e9d4d1522446fe79d3213196bd9e3b301a336965b9e27ca2788ebd122f3"},
+]
+
+[[package]]
+name = "xgboost"
+version = "1.7.5"
+description = "XGBoost Python Package"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "xgboost-1.7.5-py3-none-macosx_10_15_x86_64.macosx_11_0_x86_64.macosx_12_0_x86_64.whl", hash = "sha256:ca9e8455343cc3f1fddc825209ad00623bc82de0364097b31d649bca6a5f8fb4"},
+ {file = "xgboost-1.7.5-py3-none-macosx_12_0_arm64.whl", hash = "sha256:9eed5629c9008c36d65db6869defac31de635f766f215fc4b09b6a389c637f27"},
+ {file = "xgboost-1.7.5-py3-none-manylinux2014_aarch64.whl", hash = "sha256:af3227dbd839a8e2a215844a6276eae027d5f83a9cb501148dfcdb047a195411"},
+ {file = "xgboost-1.7.5-py3-none-manylinux2014_x86_64.whl", hash = "sha256:1d1dda6b84ea50a2ea1ed18390e93e275d57dc4cffd682014dc30ae5a116c92b"},
+ {file = "xgboost-1.7.5-py3-none-win_amd64.whl", hash = "sha256:ac17664ff24ea1c160a0d50aff521b654f0911f4684a88bbb46a074c46c9e3f1"},
+ {file = "xgboost-1.7.5.tar.gz", hash = "sha256:63474265a0194f27889c6fb54e5939ad21bcd5fcfaca7b6a89e143be42ed7ad1"},
+]
+
+[package.dependencies]
+numpy = "*"
+scipy = "*"
+
+[package.extras]
+dask = ["dask", "distributed", "pandas"]
+datatable = ["datatable"]
+pandas = ["pandas"]
+plotting = ["graphviz", "matplotlib"]
+pyspark = ["cloudpickle", "pyspark", "scikit-learn"]
+scikit-learn = ["scikit-learn"]
+
+[[package]]
+name = "xgbse"
+version = "0.2.3"
+description = "Improving XGBoost survival analysis with embeddings and debiased estimators"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "xgbse-0.2.3-py3-none-any.whl", hash = "sha256:9945ff39686a7ea2e3b7e799f621692b43b5a3ff786e72ae4c22f27992cc4314"},
+ {file = "xgbse-0.2.3.tar.gz", hash = "sha256:c9a90c7867b18ec5ddc3d28ed6ac26e0facdfe7ca5445d405732780a86fc5842"},
+]
+
+[package.dependencies]
+joblib = ">=0.15.1"
+lifelines = ">=0.25.4"
+numpy = ">=1.18.4"
+pandas = ">=1.0"
+scikit-learn = ">=0.22.2"
+xgboost = ">=1.4.0"
+
+[package.extras]
+all = ["black (>=19.10b0)", "flake8 (>=3.7.9)", "joblib (>=0.15.1)", "lifelines (>=0.25.4)", "mkdocs (>=1.1)", "mkdocs-material (>=4.6.3)", "mkdocstrings (>=0.8.0)", "numpy (>=1.18.4)", "pandas (>=1.0)", "pre-commit (>=2.7.1)", "pycox (==0.2.1)", "pytest (>=6.1.0)", "pytest-cov (==2.10.1)", "scikit-learn (>=0.22.2)", "xgboost (>=1.4.0)"]
+dev = ["black (>=19.10b0)", "flake8 (>=3.7.9)", "mkdocs (>=1.1)", "mkdocs-material (>=4.6.3)", "mkdocstrings (>=0.8.0)", "pre-commit (>=2.7.1)", "pytest (>=6.1.0)", "pytest-cov (==2.10.1)"]
+docs = ["mkdocs (>=1.1)", "mkdocs-material (>=4.6.3)", "mkdocstrings (>=0.8.0)"]
+
+[[package]]
+name = "zipp"
+version = "3.15.0"
+description = "Backport of pathlib-compatible object wrapper for zip files"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "zipp-3.15.0-py3-none-any.whl", hash = "sha256:48904fc76a60e542af151aded95726c1a5c34ed43ab4134b597665c86d7ad556"},
+ {file = "zipp-3.15.0.tar.gz", hash = "sha256:112929ad649da941c23de50f356a2b5570c954b65150642bccdd66bf194d224b"},
+]
+
+[package.extras]
+docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
+testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7) ; platform_python_implementation != \"PyPy\"", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8 ; python_version < \"3.12\"", "pytest-mypy (>=0.9.1) ; platform_python_implementation != \"PyPy\""]
+
+[[package]]
+name = "zoish"
+version = "5.0.4"
+description = "Zoish is a Python package that streamlines machine learning by leveraging SHAP values for feature selection and interpretability, making model development more efficient and user-friendly."
+optional = false
+python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "zoish-5.0.4-py3-none-any.whl", hash = "sha256:7712d3efc2861712201493754f095d56dedaec1a644061bc0f2158a1603721a5"},
+ {file = "zoish-5.0.4.tar.gz", hash = "sha256:4f93f67fda9b6ce6058b1ccaee69e555791499cf12c6f479ac5b284b46e5152f"},
+]
+
+[package.dependencies]
+cloudpickle = "2.2.1"
+fasttreeshap = "0.1.6"
+importlib-metadata = "6.7.0"
+joblib = "1.3.2"
+llvmlite = "0.39.1"
+matplotlib = "*"
+numba = "0.56.4"
+numpy = "1.21.6"
+packaging = "23.2"
+pandas = "1.3.5"
+psutil = "*"
+python-dateutil = "2.8.2"
+pytz = "*"
+scikit-learn = "1.0.2"
+scipy = "1.7.3"
+shap = "0.42.1"
+six = "1.16.0"
+slicer = "0.0.7"
+threadpoolctl = "3.1.0"
+tqdm = "4.66.1"
+typing-extensions = "4.7.1"
+zipp = "3.15.0"
+
+[[package]]
+name = "zope-event"
+version = "5.0"
+description = "Very basic event publishing system"
+optional = false
+python-versions = ">=3.7"
+groups = ["main"]
+files = [
+ {file = "zope.event-5.0-py3-none-any.whl", hash = "sha256:2832e95014f4db26c47a13fdaef84cef2f4df37e66b59d8f1f4a8f319a632c26"},
+ {file = "zope.event-5.0.tar.gz", hash = "sha256:bac440d8d9891b4068e2b5a2c5e2c9765a9df762944bda6955f96bb9b91e67cd"},
+]
+
+[package.dependencies]
+setuptools = "*"
+
+[package.extras]
+docs = ["Sphinx"]
+test = ["zope.testrunner"]
+
+[[package]]
+name = "zope-interface"
+version = "7.2"
+description = "Interfaces for Python"
+optional = false
+python-versions = ">=3.8"
+groups = ["main"]
+files = [
+ {file = "zope.interface-7.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ce290e62229964715f1011c3dbeab7a4a1e4971fd6f31324c4519464473ef9f2"},
+ {file = "zope.interface-7.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:05b910a5afe03256b58ab2ba6288960a2892dfeef01336dc4be6f1b9ed02ab0a"},
+ {file = "zope.interface-7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:550f1c6588ecc368c9ce13c44a49b8d6b6f3ca7588873c679bd8fd88a1b557b6"},
+ {file = "zope.interface-7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0ef9e2f865721553c6f22a9ff97da0f0216c074bd02b25cf0d3af60ea4d6931d"},
+ {file = "zope.interface-7.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27f926f0dcb058211a3bb3e0e501c69759613b17a553788b2caeb991bed3b61d"},
+ {file = "zope.interface-7.2-cp310-cp310-win_amd64.whl", hash = "sha256:144964649eba4c5e4410bb0ee290d338e78f179cdbfd15813de1a664e7649b3b"},
+ {file = "zope.interface-7.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1909f52a00c8c3dcab6c4fad5d13de2285a4b3c7be063b239b8dc15ddfb73bd2"},
+ {file = "zope.interface-7.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:80ecf2451596f19fd607bb09953f426588fc1e79e93f5968ecf3367550396b22"},
+ {file = "zope.interface-7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:033b3923b63474800b04cba480b70f6e6243a62208071fc148354f3f89cc01b7"},
+ {file = "zope.interface-7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a102424e28c6b47c67923a1f337ede4a4c2bba3965b01cf707978a801fc7442c"},
+ {file = "zope.interface-7.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:25e6a61dcb184453bb00eafa733169ab6d903e46f5c2ace4ad275386f9ab327a"},
+ {file = "zope.interface-7.2-cp311-cp311-win_amd64.whl", hash = "sha256:3f6771d1647b1fc543d37640b45c06b34832a943c80d1db214a37c31161a93f1"},
+ {file = "zope.interface-7.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:086ee2f51eaef1e4a52bd7d3111a0404081dadae87f84c0ad4ce2649d4f708b7"},
+ {file = "zope.interface-7.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:21328fcc9d5b80768bf051faa35ab98fb979080c18e6f84ab3f27ce703bce465"},
+ {file = "zope.interface-7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6dd02ec01f4468da0f234da9d9c8545c5412fef80bc590cc51d8dd084138a89"},
+ {file = "zope.interface-7.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e7da17f53e25d1a3bde5da4601e026adc9e8071f9f6f936d0fe3fe84ace6d54"},
+ {file = "zope.interface-7.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cab15ff4832580aa440dc9790b8a6128abd0b88b7ee4dd56abacbc52f212209d"},
+ {file = "zope.interface-7.2-cp312-cp312-win_amd64.whl", hash = "sha256:29caad142a2355ce7cfea48725aa8bcf0067e2b5cc63fcf5cd9f97ad12d6afb5"},
+ {file = "zope.interface-7.2-cp313-cp313-macosx_10_9_x86_64.whl", hash = "sha256:3e0350b51e88658d5ad126c6a57502b19d5f559f6cb0a628e3dc90442b53dd98"},
+ {file = "zope.interface-7.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:15398c000c094b8855d7d74f4fdc9e73aa02d4d0d5c775acdef98cdb1119768d"},
+ {file = "zope.interface-7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:802176a9f99bd8cc276dcd3b8512808716492f6f557c11196d42e26c01a69a4c"},
+ {file = "zope.interface-7.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb23f58a446a7f09db85eda09521a498e109f137b85fb278edb2e34841055398"},
+ {file = "zope.interface-7.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a71a5b541078d0ebe373a81a3b7e71432c61d12e660f1d67896ca62d9628045b"},
+ {file = "zope.interface-7.2-cp313-cp313-win_amd64.whl", hash = "sha256:4893395d5dd2ba655c38ceb13014fd65667740f09fa5bb01caa1e6284e48c0cd"},
+ {file = "zope.interface-7.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d3a8ffec2a50d8ec470143ea3d15c0c52d73df882eef92de7537e8ce13475e8a"},
+ {file = "zope.interface-7.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:31d06db13a30303c08d61d5fb32154be51dfcbdb8438d2374ae27b4e069aac40"},
+ {file = "zope.interface-7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e204937f67b28d2dca73ca936d3039a144a081fc47a07598d44854ea2a106239"},
+ {file = "zope.interface-7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:224b7b0314f919e751f2bca17d15aad00ddbb1eadf1cb0190fa8175edb7ede62"},
+ {file = "zope.interface-7.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baf95683cde5bc7d0e12d8e7588a3eb754d7c4fa714548adcd96bdf90169f021"},
+ {file = "zope.interface-7.2-cp38-cp38-win_amd64.whl", hash = "sha256:7dc5016e0133c1a1ec212fc87a4f7e7e562054549a99c73c8896fa3a9e80cbc7"},
+ {file = "zope.interface-7.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7bd449c306ba006c65799ea7912adbbfed071089461a19091a228998b82b1fdb"},
+ {file = "zope.interface-7.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a19a6cc9c6ce4b1e7e3d319a473cf0ee989cbbe2b39201d7c19e214d2dfb80c7"},
+ {file = "zope.interface-7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:72cd1790b48c16db85d51fbbd12d20949d7339ad84fd971427cf00d990c1f137"},
+ {file = "zope.interface-7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:52e446f9955195440e787596dccd1411f543743c359eeb26e9b2c02b077b0519"},
+ {file = "zope.interface-7.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ad9913fd858274db8dd867012ebe544ef18d218f6f7d1e3c3e6d98000f14b75"},
+ {file = "zope.interface-7.2-cp39-cp39-win_amd64.whl", hash = "sha256:1090c60116b3da3bfdd0c03406e2f14a1ff53e5771aebe33fec1edc0a350175d"},
+ {file = "zope.interface-7.2.tar.gz", hash = "sha256:8b49f1a3d1ee4cdaf5b32d2e738362c7f5e40ac8b46dd7d1a65e82a4872728fe"},
+]
+
+[package.dependencies]
+setuptools = "*"
+
+[package.extras]
+docs = ["Sphinx", "furo", "repoze.sphinx.autointerface"]
+test = ["coverage[toml]", "zope.event", "zope.testing"]
+testing = ["coverage[toml]", "zope.event", "zope.testing"]
+
+[metadata]
+lock-version = "2.1"
+python-versions = ">=3.10,<3.11"
+content-hash = "56d7cd43d937aa6025866d024609e668a24ff2a41033fe2b75a7f7fa8b07d756"
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..9f389b3
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,42 @@
+[tool.poetry]
+name = "cad-meta-prediction"
+version = "0.1.0"
+description = "meta-prediction of coronary artery disease risk"
+authors = ["Shaun Chen "]
+license = "MIT"
+package-mode = false
+packages = [{ include = "src" }]
+
+[tool.poetry.dependencies]
+python = ">=3.10"
+catboost = "1.2.5"
+category-encoders = "2.6.3"
+fasttreeshap = "0.1.6"
+lightgbm = "4.5.0"
+lohrasb = "4.2.0"
+matplotlib = "3.8.4"
+numpy = "1.21.6"
+optuna-integration = "3.6.0"
+pandas = ">=1.3.5"
+ray = "2.7.1"
+scikit-learn = "1.0.2"
+seaborn = "*"
+shap = "0.42.1"
+tune-sklearn = "0.5.0"
+xgboost = "1.7.5"
+zoish = "5.0.4"
+
+[tool.poetry.group.dev.dependencies]
+ruff = "^0.3.7"
+pytest = "^8.1.1"
+autopep8 = "^2.3.2"
+jupyterlab = "^4.1.8"
+ipykernel = "^6.29.4"
+ipywidgets = "^8.1.2"
+
+[tool.poetry.requires-plugins]
+poetry-plugin-export = ">=1.8"
+
+[build-system]
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..b36c300
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,178 @@
+aiosignal==1.3.2 ; python_version == "3.10"
+alembic==1.14.1 ; python_version == "3.10"
+ansi2html==1.9.2 ; python_version == "3.10"
+aplr==10.8.0 ; python_version == "3.10"
+appnope==0.1.4 ; python_version == "3.10"
+argcomplete==3.6.2 ; python_version == "3.10"
+astor==0.8.1 ; python_version == "3.10"
+asttokens==3.0.0 ; python_version == "3.10"
+attrs==25.3.0 ; python_version == "3.10"
+autograd-gamma==0.5.0 ; python_version == "3.10"
+autograd==1.7.0 ; python_version == "3.10"
+backcall==0.2.0 ; python_version == "3.10"
+black==25.1.0 ; python_version == "3.10"
+blinker==1.9.0 ; python_version == "3.10"
+cached-property==2.0.1 ; python_version == "3.10"
+catboost==1.2.5 ; python_version == "3.10"
+category-encoders==2.6.3 ; python_version == "3.10"
+certifi==2025.1.31 ; python_version == "3.10"
+cffi==1.17.1 ; platform_python_implementation == "CPython" and python_version == "3.10" and sys_platform == "win32" or implementation_name == "pypy" and python_version == "3.10"
+charset-normalizer==3.4.1 ; python_version == "3.10"
+click==8.1.8 ; python_version == "3.10"
+cloudpickle==2.2.1 ; python_version == "3.10"
+cmaes==0.11.1 ; python_version == "3.10"
+colorama==0.4.6 ; (platform_system == "Windows" or sys_platform == "win32") and python_version == "3.10"
+colorlog==6.9.0 ; python_version == "3.10"
+comm==0.2.2 ; python_version == "3.10"
+contourpy==1.2.1 ; python_version == "3.10"
+cycler==0.12.1 ; python_version == "3.10"
+dash-core-components==2.0.0 ; python_version == "3.10"
+dash-cytoscape==1.0.2 ; python_version == "3.10"
+dash-html-components==2.0.0 ; python_version == "3.10"
+dash-table==5.0.0 ; python_version == "3.10"
+dash==3.0.2 ; python_version == "3.10"
+debugpy==1.8.14 ; python_version == "3.10"
+decorator==5.2.1 ; python_version == "3.10"
+dependency-groups==1.3.0 ; python_version == "3.10"
+dill==0.3.9 ; python_version == "3.10"
+distlib==0.3.9 ; python_version == "3.10"
+entrypoints==0.4 ; python_version == "3.10"
+exceptiongroup==1.2.2 ; python_version == "3.10"
+executing==2.2.0 ; python_version == "3.10"
+fasttreeshap==0.1.6 ; python_version == "3.10"
+filelock==3.18.0 ; python_version == "3.10"
+flask==3.0.3 ; python_version == "3.10"
+fonttools==4.57.0 ; python_version == "3.10"
+formulaic==1.1.1 ; python_version == "3.10"
+frozenlist==1.5.0 ; python_version == "3.10"
+fsspec==2025.3.2 ; python_version == "3.10"
+future==1.0.0 ; python_version == "3.10"
+gevent==24.11.1 ; python_version == "3.10"
+graphlib-backport==1.1.0 ; python_version == "3.10"
+graphviz==0.20.3 ; python_version == "3.10"
+greenlet==3.1.1 ; python_version == "3.10"
+grpcio==1.71.0 ; python_version == "3.10"
+hyperopt==0.2.7 ; python_version == "3.10"
+idna==3.10 ; python_version == "3.10"
+imageio==2.37.0 ; python_version == "3.10"
+imbalanced-learn==0.12.4 ; python_version == "3.10"
+imblearn==0.0 ; python_version == "3.10"
+importlib-metadata==6.7.0 ; python_version == "3.10"
+importlib-resources==6.5.2 ; python_version == "3.10"
+iniconfig==2.1.0 ; python_version == "3.10"
+interface-meta==1.3.0 ; python_version == "3.10"
+interpret-core==0.6.6 ; python_version == "3.10"
+interpret==0.6.6 ; python_version == "3.10"
+ipykernel==6.29.5 ; python_version == "3.10"
+ipython==8.35.0 ; python_version == "3.10"
+isort==6.0.1 ; python_version == "3.10"
+itsdangerous==2.2.0 ; python_version == "3.10"
+jedi==0.19.2 ; python_version == "3.10"
+jinja2==3.1.6 ; python_version == "3.10"
+joblib==1.3.2 ; python_version == "3.10"
+jsonschema-specifications==2024.10.1 ; python_version == "3.10"
+jsonschema==4.23.0 ; python_version == "3.10"
+jupyter-client==8.6.3 ; python_version == "3.10"
+jupyter-core==5.7.2 ; python_version == "3.10"
+kiwisolver==1.4.8 ; python_version == "3.10"
+lifelines==0.28.0 ; python_version == "3.10"
+lightgbm==4.5.0 ; python_version == "3.10"
+lime==0.2.0.1 ; python_version == "3.10"
+llvmlite==0.39.1 ; python_version == "3.10"
+lohrasb==4.2.0 ; python_version == "3.10"
+mako==1.3.10 ; python_version == "3.10"
+markupsafe==3.0.2 ; python_version == "3.10"
+matplotlib-inline==0.1.7 ; python_version == "3.10"
+matplotlib==3.8.4 ; python_version == "3.10"
+mccabe==0.7.0 ; python_version == "3.10"
+msgpack==1.1.0 ; python_version == "3.10"
+multiprocess==0.70.17 ; python_version == "3.10"
+mypy-extensions==1.0.0 ; python_version == "3.10"
+narwhals==1.34.1 ; python_version == "3.10"
+nest-asyncio==1.6.0 ; python_version == "3.10"
+networkx==3.4.2 ; python_version == "3.10"
+nox==2025.2.9 ; python_version == "3.10"
+numba==0.56.4 ; python_version == "3.10"
+numpy==1.21.6 ; python_version == "3.10"
+optuna-integration==3.6.0 ; python_version == "3.10"
+optuna==4.2.1 ; python_version == "3.10"
+packaging==23.2 ; python_version == "3.10"
+pandas==1.3.5 ; python_version == "3.10"
+parso==0.8.4 ; python_version == "3.10"
+pathos==0.3.3 ; python_version == "3.10"
+pathspec==0.12.1 ; python_version == "3.10"
+patsy==1.0.1 ; python_version == "3.10"
+pexpect==4.9.0 ; python_version == "3.10"
+pickleshare==0.7.5 ; python_version == "3.10"
+pillow==11.2.1 ; python_version == "3.10"
+pkgutil-resolve-name==1.3.10 ; python_version == "3.10"
+platformdirs==4.3.7 ; python_version == "3.10"
+plotly==6.0.1 ; python_version == "3.10"
+pluggy==1.5.0 ; python_version == "3.10"
+pox==0.3.5 ; python_version == "3.10"
+ppft==1.7.6.9 ; python_version == "3.10"
+prompt-toolkit==3.0.50 ; python_version == "3.10"
+protobuf==6.30.2 ; python_version == "3.10"
+psutil==7.0.0 ; python_version == "3.10"
+ptyprocess==0.7.0 ; python_version == "3.10"
+pure-eval==0.2.3 ; python_version == "3.10"
+py4j==0.10.9.9 ; python_version == "3.10"
+pyarrow==19.0.1 ; python_version == "3.10"
+pycodestyle==2.13.0 ; python_version == "3.10"
+pycparser==2.22 ; platform_python_implementation == "CPython" and python_version == "3.10" and sys_platform == "win32" or implementation_name == "pypy" and python_version == "3.10"
+pyflakes==3.3.2 ; python_version == "3.10"
+pygments==2.19.1 ; python_version == "3.10"
+pyparsing==3.2.3 ; python_version == "3.10"
+pyrsistent==0.20.0 ; python_version == "3.10"
+pytest==8.3.5 ; python_version == "3.10"
+python-dateutil==2.8.2 ; python_version == "3.10"
+python-dotenv==1.1.0 ; python_version == "3.10"
+pytz==2025.2 ; python_version == "3.10"
+pywavelets==1.4.1 ; python_version == "3.10"
+pywin32==310 ; sys_platform == "win32" and platform_python_implementation != "PyPy" and python_version == "3.10"
+pyyaml==6.0.2 ; python_version == "3.10"
+pyzmq==26.4.0 ; python_version == "3.10"
+ray==2.7.1 ; python_version == "3.10"
+referencing==0.36.2 ; python_version == "3.10"
+requests==2.32.3 ; python_version == "3.10"
+retrying==1.3.4 ; python_version == "3.10"
+rpds-py==0.24.0 ; python_version == "3.10"
+ruamel-yaml-clib==0.2.12 ; python_version == "3.10"
+ruamel-yaml==0.18.10 ; python_version == "3.10"
+salib==1.4.8 ; python_version == "3.10"
+scikit-image==0.19.3 ; python_version == "3.10"
+scikit-learn==1.0.2 ; python_version == "3.10"
+scipy==1.7.3 ; python_version == "3.10"
+seaborn==0.13.2 ; python_version == "3.10"
+setuptools==78.1.0 ; python_version == "3.10"
+shap==0.42.1 ; python_version == "3.10"
+six==1.16.0 ; python_version == "3.10"
+skope-rules==1.0.1 ; python_version == "3.10"
+slicer==0.0.7 ; python_version == "3.10"
+sqlalchemy==2.0.40 ; python_version == "3.10"
+stack-data==0.6.3 ; python_version == "3.10"
+statsmodels==0.13.2 ; platform_system == "Windows" and platform_python_implementation != "PyPy" and python_version == "3.10"
+statsmodels==0.14.1 ; (platform_system != "Windows" or platform_python_implementation == "PyPy") and python_version == "3.10"
+tenacity==9.1.2 ; python_version == "3.10"
+tensorboardx==2.6.2.2 ; python_version == "3.10"
+threadpoolctl==3.1.0 ; python_version == "3.10"
+tifffile==2025.3.30 ; python_version == "3.10"
+tomli==2.2.1 ; python_version == "3.10"
+tornado==6.4.2 ; python_version == "3.10"
+tqdm==4.66.1 ; python_version == "3.10"
+traitlets==5.14.3 ; python_version == "3.10"
+treeinterpreter==0.2.3 ; python_version == "3.10"
+tune-sklearn==0.5.0 ; python_version == "3.10"
+typed-ast==1.5.5 ; python_version == "3.10"
+typing-extensions==4.7.1 ; python_version == "3.10"
+urllib3==2.4.0 ; python_version == "3.10"
+virtualenv==20.30.0 ; python_version == "3.10"
+wcwidth==0.2.13 ; python_version == "3.10"
+werkzeug==3.0.6 ; python_version == "3.10"
+wrapt==1.17.2 ; python_version == "3.10"
+xgboost==1.7.5 ; python_version == "3.10"
+xgbse==0.2.3 ; python_version == "3.10"
+zipp==3.15.0 ; python_version == "3.10"
+zoish==5.0.4 ; python_version == "3.10"
+zope-event==5.0 ; python_version == "3.10"
+zope-interface==7.2 ; python_version == "3.10"
diff --git a/src/__init__.py b/src/__init__.py
new file mode 100644
index 0000000..e5a0d9b
--- /dev/null
+++ b/src/__init__.py
@@ -0,0 +1 @@
+#!/usr/bin/env python3
diff --git a/src/hyperparams.py b/src/hyperparams.py
new file mode 100644
index 0000000..c4e4774
--- /dev/null
+++ b/src/hyperparams.py
@@ -0,0 +1,93 @@
+#!/usr/bin/env python3
+
+import lightgbm as lgb
+import xgboost as xgb
+from catboost import CatBoostClassifier, CatBoostRegressor
+
+# classifiers = [("xgb", "classifier"), ("lgb", "classifier"), ("cat", "classifier")]
+# regressors = [("xgb", "regressor"), ("lgb", "regressor"), ("cat", "regressor")]
+
+ESTIMATORS_DICT = {
+ # classifer
+ ("xgb", "classifier"): xgb.XGBClassifier(),
+ ("lgb", "classifier"): lgb.LGBMClassifier(),
+ ("cat", "classifier"): CatBoostClassifier(),
+ # regressor
+ ("xgb", "regressor"): xgb.XGBRegressor(),
+ ("lgb", "regressor"): lgb.LGBMRegressor(),
+ ("cat", "regressor"): CatBoostRegressor(),
+}
+
+PARAMS_DICT = {
+ # classifier
+ ("xgb", "classifier"): {
+ "objective": ["binary:logistic"],
+ "eval_metric": ["auc"],
+ "gamma": [0, 8],
+ "learning_rate": [0.001, 0.3],
+ "max_bin": [2, 20],
+ "max_depth": [3, 15],
+ "min_child_weight": [1, 12],
+ # https://machinelearningmastery.com/tune-number-size-decision-trees-xgboost-python/
+ # https://stackoverflow.com/questions/65983344/how-to-choose-the-values-of-n-estimators-and-seed-in-xgbregressor
+ "n_estimators": [100, 400],
+ "n_jobs": [-1, -1],
+ "random_state": [19920722, 19920722],
+ "reg_alpha": [0, 5],
+ "reg_lambda": [0, 5],
+ "scale_pos_weight": [0.05, 20], ## 95/5 = 19, 5/95 = 0.05
+ },
+ ("lgb", "classifier"): {
+ "boosting_type": ["gbdt"],
+ "num_leaves": [20, 80],
+ "learning_rate": [0.001, 0.3],
+ "n_estimators": [100, 400],
+ "reg_alpha": [0, 5],
+ "reg_lambda": [0, 5],
+ "random_state": [19920722, 19920722],
+ "n_jobs": [-1, -1],
+ "verbose": [-1, -1],
+ },
+ ("cat", "classifier"): {
+ "eval_metric": ["Logloss"],
+ "random_seed": [19920722, 19920722],
+ "depth": [4, 12],
+ "loss_function": ["Logloss"],
+ "learning_rate": [0.001, 0.3],
+ "verbose": [False, False],
+ },
+ # regressor
+ ("xgb", "regressor"): {
+ "objective": ["reg:squarederror"],
+ "gamma": [0, 8],
+ "learning_rate": [0.001, 0.3],
+ "max_bin": [2, 20],
+ "max_depth": [3, 15],
+ "min_child_weight": [1, 12],
+ "n_estimators": [100, 400],
+ "n_jobs": [-1, -1],
+ "random_state": [19920722, 19920722],
+ "reg_alpha": [0, 5],
+ "reg_lambda": [0, 5],
+ "scale_pos_weight": [0.05, 20],
+ },
+ ("lgb", "regressor"): {
+ "boosting_type": ["gbdt"],
+ "num_leaves": [20, 80],
+ "learning_rate": [0.001, 0.3],
+ "n_estimators": [100, 400],
+ "reg_alpha": [0, 5],
+ "reg_lambda": [0, 5],
+ "random_state": [19920722, 19920722],
+ "n_jobs": [-1, -1],
+ "verbose": [-1, -1],
+ },
+ ("cat", "regressor"): {
+ "eval_metric": ["RMSE"],
+ "random_seed": [19920722, 19920722],
+ "depth": [4, 12],
+ "loss_function": ["RMSE"],
+ "learning_rate": [0.001, 0.3],
+ "verbose": [False, False],
+ },
+}
diff --git a/src/utils.py b/src/utils.py
new file mode 100644
index 0000000..c579deb
--- /dev/null
+++ b/src/utils.py
@@ -0,0 +1,499 @@
+#!/usr/bin/env python3
+
+import random
+import time
+import warnings
+from pathlib import Path
+
+import category_encoders as cen
+import numpy as np
+import pandas as pd
+from joblib import dump
+from lohrasb.best_estimator import BaseModel
+from optuna.pruners import HyperbandPruner
+from optuna.samplers._tpe.sampler import TPESampler
+from sklearn.base import BaseEstimator, TransformerMixin
+from sklearn.metrics import classification_report, confusion_matrix, f1_score, r2_score, roc_auc_score
+from sklearn.model_selection import KFold, StratifiedKFold, train_test_split
+from sklearn.pipeline import Pipeline
+from zoish.feature_selectors.shap_selectors import ShapFeatureSelector
+
+from src.hyperparams import ESTIMATORS_DICT, PARAMS_DICT
+
+random.seed(19920722)
+np.random.seed(19920722)
+warnings.filterwarnings("ignore", message=".*The 'nopython' keyword.*")
+
+
+class ColumnSelector(BaseEstimator, TransformerMixin):
+ # https://towardsdatascience.com/customizing-sklearn-pipelines-transformermixin-a54341d8d624
+ def __init__(self, selected_cols):
+ if not isinstance(selected_cols, list):
+ self.selected_cols = [selected_cols]
+ else:
+ self.selected_cols = selected_cols
+
+ def fit(self, X: pd.DataFrame, y: pd.Series):
+ # there is nothing to fit
+ return self
+
+ def transform(self, X: pd.DataFrame):
+ X = X.copy()
+ return X[self.selected_cols]
+
+
+def _get_acc_metric(y, y_pred, trainer, classifier_metric="F1"):
+ if trainer[1] == "classifier":
+ try:
+ if classifier_metric == "AUC":
+ auc = roc_auc_score(y, y_pred)
+ print(f"AUC score : {auc}")
+ out = auc
+ else:
+ pred_labels = np.rint(y_pred)
+ f1 = f1_score(y, pred_labels, average="macro")
+ print(f"F1 score : {f1}")
+ print(f"Classification report : ")
+ print(classification_report(y, pred_labels))
+ print(f"Confusion matrix : ")
+ print(confusion_matrix(y, pred_labels))
+ out = f1
+ except Exception as e:
+ print(f"Exception during metric calculation: {e}")
+ out = "None"
+ else:
+ r2 = r2_score(y, y_pred)
+ print(f"r2 score : {r2}")
+ out = r2
+ return out
+
+
+def _set_opt_params(trainer):
+ # set classification / regression
+ if trainer[1] == "classifier":
+ measure_of_accuracy = f"f1_score(y_true, y_pred, average='macro')"
+ print(f"measure_of_accuracy = {measure_of_accuracy}")
+ with_stratified = True
+ else:
+ measure_of_accuracy = f"r2_score(y_true, y_pred)"
+ with_stratified = False
+ return measure_of_accuracy, with_stratified
+
+
+def _make_lohrasb_obj(y_train, trainer, n_trials, measure_of_accuracy, study_name, with_stratified):
+ estimator = ESTIMATORS_DICT[trainer]
+ estimator_params = PARAMS_DICT[trainer]
+
+ stratify = y_train[y_train.columns.to_list()[0]] if with_stratified else None
+
+ kwargs = {
+ "fit_optuna_kwargs": {"sample_weight": None},
+ "main_optuna_kwargs": {
+ "estimator": estimator,
+ "estimator_params": estimator_params,
+ "refit": True,
+ "measure_of_accuracy": measure_of_accuracy,
+ },
+ "train_test_split_kwargs": {"stratify": stratify, "test_size": 0.10},
+ "study_search_kwargs": {
+ "storage": None,
+ "sampler": TPESampler(seed=19920722),
+ "pruner": HyperbandPruner(),
+ "study_name": study_name,
+ "direction": "maximize",
+ "load_if_exists": False,
+ },
+ "optimize_kwargs": {
+ "n_trials": n_trials,
+ "timeout": 3600,
+ "n_jobs": 1,
+ "catch": (),
+ "callbacks": None,
+ "gc_after_trial": True,
+ "show_progress_bar": False,
+ },
+ }
+
+ lohrasb_opt = BaseModel().optimize_by_optuna(kwargs=kwargs)
+
+ return lohrasb_opt
+
+
+def _execute_zoish_shap_selector(
+ X_train: pd.DataFrame,
+ y_train: pd.DataFrame,
+ trainer: tuple[str, str],
+ n_trials: int,
+ n_features: int,
+ measure_of_accuracy: str,
+ with_stratified: bool,
+ study_name: str,
+ feature_list: list | None = None,
+ shap_n_jobs: int = -1,
+ approximate: bool = False,
+):
+ # https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.cross_val_score.html
+ # https://scikit-learn.org/stable/modules/model_evaluation.html
+ if trainer[1] == "classifier":
+ cv = StratifiedKFold(n_splits=5, shuffle=True, random_state=19920722)
+ cv_scoring = "f1_macro"
+ else:
+ cv = KFold(n_splits=5, shuffle=True, random_state=19920722)
+ cv_scoring = "r2"
+
+ # Initiate from all columns if no assigned
+ if feature_list is None:
+ feature_list = X_train.columns.tolist()
+
+ # Form sklearn pipeline
+ # int_cols = X_train.select_dtypes(include=['int']).columns.tolist()
+ # float_cols = X_train.select_dtypes(include=['float']).columns.tolist()
+ cat_cols = X_train.select_dtypes(include=["object"]).columns.tolist()
+ transformers = []
+ if len(cat_cols) > 0:
+ transformers.append(("CatBoostEncoder", cen.CatBoostEncoder(random_state=19920722)))
+ lohrasb_opt = _make_lohrasb_obj(y_train, trainer, n_trials, measure_of_accuracy, study_name, with_stratified)
+ pre_shap_pip = Pipeline(
+ [("ALLColumn", ColumnSelector(feature_list))]
+ + transformers
+ + [(f"LohrasbOptimizer_{trainer[0]}_{trainer[1]}", lohrasb_opt)]
+ )
+
+ print(f"\npre-SHAP init:")
+ print(f"- X_train.shape:{X_train.shape}")
+ print(f"- y_train.shape{y_train.shape}")
+ start_time = time.time()
+ pre_shap_pip.fit(X_train, y_train)
+ pre_SHAP_best_estimator = pre_shap_pip[-1].best_estimator
+ end_time = time.time()
+ print(f"pre-SHAP done - {end_time - start_time} seconds")
+
+ # Use the best estimator for SHAP feature selection
+ shap_feature_selector = ShapFeatureSelector(
+ model=pre_SHAP_best_estimator,
+ num_features=n_features,
+ scoring=cv_scoring,
+ direction="maximum",
+ cv=cv,
+ n_iter=5,
+ algorithm="auto",
+ random_state=19920722,
+ use_faster_algorithm=True,
+ shap_fast_tree_explainer_kwargs={
+ # "model_output": "raw", # default
+ "algorithm": "v2",
+ "feature_perturbation": "interventional",
+ "n_jobs": shap_n_jobs,
+ # "memory_tolerance": -1, # default
+ "random_state": 19920722,
+ "approximate": approximate,
+ "shortcut": True,
+ },
+ )
+
+ print(f"\nSHAP init:")
+ print(f"- X_train.shape:{X_train.shape}")
+ print(f"- y_train.shape{y_train.shape}")
+ start_time = time.time()
+ # Feed the scaled input for SHAP explainer
+ scaled_X_train = pre_shap_pip[:-1].transform(X_train)
+ shap_feature_selector.fit(scaled_X_train, y_train)
+ end_time = time.time()
+ print(f"SHAP done - {end_time - start_time} seconds")
+
+ # Output feature selection results
+ shap_df = pd.DataFrame(
+ {
+ "column_name": shap_feature_selector.feature_names,
+ "abs_mean_shap": np.abs(shap_feature_selector.shap_values).mean(axis=0),
+ }
+ ).sort_values(by="abs_mean_shap", ascending=False)
+
+ return shap_df
+
+
+def _make_zoish_lohrasb_pipeline(
+ X_train: pd.DataFrame,
+ y_train: pd.DataFrame,
+ trainer: tuple[str, str],
+ n_features: int,
+ n_trials: int,
+ n_approx=100,
+):
+ all_features = X_train.columns.tolist()
+
+ # get int/float/cat colnames
+ # int_cols = X_train.select_dtypes(include=['int']).columns.tolist()
+ # float_cols = X_train.select_dtypes(include=['float']).columns.tolist()
+ cat_cols = X_train.select_dtypes(include=["object"]).columns.tolist()
+
+ # get transformer
+ transformers = []
+ if len(cat_cols) > 0:
+ transformers.append(("CatBoostEncoder", cen.CatBoostEncoder(random_state=19920722)))
+
+ measure_of_accuracy, with_stratified = _set_opt_params(trainer)
+
+ feature_selectors = []
+ # shap approximate cannot work with catboost
+ if trainer[0] == "cat":
+ if X_train.shape[1] <= n_approx and n_features >= X_train.shape[1]:
+ print("Skip feature selection for Catboost - Select more features than provided.")
+ shap_df = pd.DataFrame({"column_name": X_train.columns, "abs_mean_shap": [0] * len(X_train.columns)})
+ else:
+ shap_df = _execute_zoish_shap_selector(
+ X_train,
+ y_train,
+ trainer,
+ n_trials,
+ n_features,
+ measure_of_accuracy,
+ with_stratified,
+ "catboost_feature_selection",
+ shap_n_jobs=1,
+ ) # detailed shap values for all features (saved for catboost)
+ feature_selectors.append(("ColumnSelector", ColumnSelector(list(shap_df["column_name"].head(n_features)))))
+
+ # approx would introduce variability for final feauture selection; 200 will trigger additivity issue without approx
+ # this would keep the consistency for feature selection and avoid additivity issue
+ elif X_train.shape[1] > n_approx and n_features > n_approx:
+ shap_df = _execute_zoish_shap_selector(
+ X_train,
+ y_train,
+ trainer,
+ n_trials,
+ n_features,
+ measure_of_accuracy,
+ with_stratified,
+ "approx_feature_selection",
+ shap_n_jobs=-1,
+ approximate=True,
+ ) # approx shap values for top (approx+) N features (saved but not reuse)
+ feature_selectors.append(("ColumnSelector", ColumnSelector(list(shap_df["column_name"].head(n_features)))))
+
+ # approx first and further narrow down toward target number
+ elif X_train.shape[1] > n_approx and n_features <= n_approx:
+ approx_shap_df = _execute_zoish_shap_selector(
+ X_train,
+ y_train,
+ trainer,
+ n_trials,
+ n_approx,
+ measure_of_accuracy,
+ with_stratified,
+ "approx_feature_selection",
+ shap_n_jobs=-1,
+ approximate=True,
+ ) # approx shap values for all features
+ shap_df = _execute_zoish_shap_selector(
+ X_train[list(approx_shap_df["column_name"].head(n_approx))],
+ y_train,
+ trainer,
+ n_trials,
+ n_features,
+ measure_of_accuracy,
+ with_stratified,
+ "feature_selection",
+ shap_n_jobs=1,
+ ) # detailed shap values for top (approx) N features (saved for reuse)
+ feature_selectors.append(("ColumnSelector", ColumnSelector(list(shap_df["column_name"].head(n_features)))))
+
+ # if the init feature number low enough, then skip approx
+ # this would keep the consistency for feature selection (additivity comes)
+ elif X_train.shape[1] <= n_approx and n_features < X_train.shape[1]:
+ shap_df = _execute_zoish_shap_selector(
+ X_train,
+ y_train,
+ trainer,
+ n_trials,
+ n_features,
+ measure_of_accuracy,
+ with_stratified,
+ "feature_selection",
+ shap_n_jobs=1,
+ ) # detailed shap values for (approx-) all features (saved for reuse)
+ feature_selectors.append(("ColumnSelector", ColumnSelector(list(shap_df["column_name"].head(n_features)))))
+
+ # if the init feature number less than selected number, then no feature selection is needed. (Ex. age_sex_only)
+ # this would avoid segmental fault due to estimators can't converge throughout optuna trials
+ # elif X_train.shape[1] <= n_approx and n_features >= X_train.shape[1]:
+ else:
+ print(
+ f"Skip feature selection - Select more features than provided. {X_train.shape[1]} {n_approx} {n_features}"
+ )
+ shap_df = pd.DataFrame(
+ { # age+sex don't need further shap feature ranking
+ "column_name": X_train.columns,
+ "abs_mean_shap": [0] * len(X_train.columns),
+ }
+ )
+
+ lohrasb_opt = _make_lohrasb_obj(
+ y_train, trainer, n_trials, measure_of_accuracy, f"LohrasbOptimizer_{trainer[0]}_{trainer[1]}", with_stratified
+ )
+
+ # make pipeline
+ pip = Pipeline(
+ [("ALLColumn", ColumnSelector(all_features))]
+ + transformers
+ + feature_selectors
+ + [(f"LohrasbOptimizer_{trainer[0]}_{trainer[1]}", lohrasb_opt)]
+ )
+
+ return pip, shap_df
+
+
+def _fit_pipeline(
+ *,
+ X_train,
+ y_train,
+ trainer,
+ fname,
+ n_features=0,
+ n_trials=0,
+ n_approx=200,
+):
+ joblib_fp = f"final_pipeline__{fname}.joblib"
+
+ if n_features > n_approx:
+ shap_path = f"shap.{fname}__preselect.tsv"
+ else:
+ if trainer[0] == "cat":
+ shap_path = f"shap__{fname}__preselect.tsv".replace(f"top_{n_features}", f"top_N")
+ else:
+ shap_path = f"shap__{fname}__preselect.tsv".replace(f"top_{n_features}", f"top_{n_approx}")
+
+ pip, shap_df = _make_zoish_lohrasb_pipeline(
+ X_train,
+ y_train,
+ trainer,
+ n_features,
+ n_trials,
+ n_approx=n_approx,
+ )
+ pip.fit(X_train, y_train)
+ shap_df.to_csv(shap_path, sep="\t", index=False)
+
+ dump(pip, joblib_fp)
+ print(f"######################################")
+ print(f"- {joblib_fp} saved.")
+ print(f"######################################")
+
+ return pip
+
+
+def _get_X_y_idx(
+ *,
+ df: pd.DataFrame,
+ id_col: str,
+ y_label: str,
+ trainer: tuple[str, str],
+) -> tuple[pd.DataFrame, pd.DataFrame, pd.Series]:
+ idx = df[id_col]
+ df = df.reindex(sorted(df.columns), axis=1)
+ if trainer[1] == "classifier":
+ y = df.loc[:, df.columns == y_label].astype(int)
+ else:
+ y = df.loc[:, df.columns == y_label].astype(float)
+ X = df.loc[:, df.columns != y_label]
+ print(f"input data shape: {X.shape}")
+ print(f"input outcome shape: {y.shape}")
+ return X, y, idx
+
+
+def _check_df(
+ df: pd.DataFrame,
+ y_label: str,
+ trainer: tuple[str, str],
+) -> None:
+ print(f" - preview {y_label}")
+ if trainer[1] == "classifier":
+ print(df[y_label].value_counts())
+ else:
+ print(df[y_label].describe())
+
+
+def _set_train_test(
+ trainer: tuple[str, str],
+ X: pd.DataFrame,
+ y: pd.DataFrame,
+ idx: pd.Series,
+ test_size: float = 0.20,
+ random_state: int = 19920722,
+):
+ if trainer[1] == "classifier":
+ X_train, X_test, y_train, y_test, idx_train, idx_test = train_test_split(
+ X, y, idx, test_size=test_size, random_state=random_state, stratify=y
+ )
+ else:
+ X_train, X_test, y_train, y_test, idx_train, idx_test = train_test_split(
+ X, y, idx, test_size=test_size, random_state=random_state
+ )
+ return X_train, X_test, y_train, y_test, idx_train, idx_test
+
+
+def _eval_pred(
+ *,
+ pip: Pipeline,
+ trainer: tuple[str, str],
+ X: pd.DataFrame,
+ y: pd.Series,
+) -> tuple[np.ndarray, float]:
+ y_pred = pip.predict_proba(X)[:, 1] if trainer[1] == "classifier" else pip.predict(X)
+ acc = _get_acc_metric(y, y_pred, trainer)
+ return y_pred, acc
+
+
+def _save_preds(
+ pred_fp: str,
+ trainer: tuple[str, str],
+ fname: str,
+ idx,
+ y_pred,
+ acc_lbl: str,
+ acc: float,
+):
+ my_pred = Path(pred_fp)
+ if my_pred.is_file():
+ print(f"found {pred_fp}: found existed predicts!!!")
+ else:
+ acc_metric = "AUC" if trainer[1] == "classifier" else "R2"
+
+ pred_df = pd.DataFrame({f"eid": idx, f"{fname}({acc_lbl}-{acc_metric}={acc:.8f})": y_pred})
+ pred_df.to_pickle(pred_fp)
+ print(f"######################################")
+ print(f"- {pred_fp} saved.")
+ print(f"######################################")
+
+
+def execute_model(
+ *,
+ y_label: str,
+ input_pickle_fp: str,
+ id_col: str,
+ n_features: int,
+ n_trials: int,
+ trainer: tuple[str],
+):
+ fname = f"{trainer[0]}_{trainer[1]}__{y_label}"
+
+ df = pd.read_pickle(input_pickle_fp)
+ _check_df(df, y_label, trainer)
+
+ X, y, idx = _get_X_y_idx(df=df, id_col=id_col, y_label=y_label, trainer=trainer)
+
+ X_train, X_test, y_train, y_test, _, idx_test = _set_train_test(trainer, X, y, idx)
+
+ fitted_pipeline = _fit_pipeline(
+ X_train=X_train,
+ y_train=y_train,
+ trainer=trainer,
+ fname=fname,
+ n_features=n_features,
+ n_trials=n_trials,
+ )
+ y_pred, acc = _eval_pred(pip=fitted_pipeline, trainer=trainer, X=X_test, y=y_test)
+
+ _save_preds(f"final_pred.{fname}.pkl", trainer, fname, idx_test, y_pred, "test", acc)
+
+ return y_pred, acc
diff --git a/utils.py b/utils.py
deleted file mode 100644
index 158756b..0000000
--- a/utils.py
+++ /dev/null
@@ -1,1013 +0,0 @@
-#!/usr/bin/env python3
-
-# import faulthandler
-# faulthandler.enable()
-
-import warnings
-warnings.filterwarnings("ignore", message=".*The 'nopython' keyword.*")
-
-import psutil
-import gc
-import random
-random.seed(19920722)
-
-import glob
-import itertools
-from pathlib import Path
-from functools import reduce
-from joblib import dump, load
-
-
-import sys
-sys.path.insert(0, '/gpfs/home/sfchen/.local/lib/python3.8/site-packages/')
-
-import re
-import seaborn as sns
-import matplotlib.pyplot as plt
-
-import scipy
-import sklearn
-import pandas as pd
-import numpy as np
-np.random.seed(19920722)
-
-from xgboost import *
-from catboost import *
-from lightgbm import *
-import xgboost as xgb
-import catboost as cb
-import lightgbm as lgb
-
-from sklearn.svm import *
-from sklearn.ensemble import * # RandomForestClassifier, RandomForestRegressor
-from sklearn.linear_model import * # LogisticRegression, LinearRegression
-from sklearn.neural_network import *
-from sklearn.utils.class_weight import compute_sample_weight
-
-import category_encoders as cen
-
-from sklearn.model_selection import train_test_split, KFold, StratifiedKFold, GridSearchCV, RandomizedSearchCV
-from sklearn.metrics import * # classification_report, confusion_matrix, f1_score, r2_score
-from sklearn.pipeline import Pipeline
-from sklearn.base import BaseEstimator, TransformerMixin
-
-import optuna
-from optuna.pruners import HyperbandPruner
-from optuna.samplers._tpe.sampler import TPESampler
-
-
-####################
-## Under conflict ##
-####################
-import zoish
-from zoish.feature_selectors.shap_selectors import ShapFeatureSelector
-import lohrasb
-from lohrasb.best_estimator import BaseModel
-
-import shap
-import fasttreeshap
-
-from hyperparams import *
-
-
-#############
-## No need ##
-#############
-# import feature_engine.selection as fts
-# from feature_engine import transformation as vt
-# from feature_engine.imputation import CategoricalImputer, MeanMedianImputer
-# from feature_engine.outliers import Winsorizer, OutlierTrimmer
-
-
-
-print(f"shap: {shap.__version__}")
-print(f"fasttreeshap: {fasttreeshap.__version__}")
-print(f"scipy: {scipy.__version__}")
-print(f"numpy: {np.__version__}")
-print(f"pandas: {pd.__version__}")
-print(f"xgboost: {xgb.__version__}")
-print(f"sklearn: {sklearn.__version__}")
-print(f"optuna: {optuna.__version__}")
-print(f"zoish: {zoish.__version__}")
-print(f"lohrasb: {lohrasb.__version__}")
-# print(f"torch: {torch.__version__}")
-# print(f"catboost: {cb.__version__}")
-
-
-
-def set_dtype(df, pheno_df, new_numeric_cols):
- for col in df.columns:
- # check if col included in pheno_df
- query = pheno_df.loc[(pheno_df['Name'] == col), ]['ValueType']
- value_type = (None if query.empty else query.values[0])
-
- if col in new_numeric_cols:
- df[col] = df[col].astype(float)
- elif col == 'eid':
- df[col] = df[col].astype(int)
- else:
- if value_type is not None:
- if value_type == 'Continuous':
- df[col] = df[col].astype(float)
- elif value_type == 'Integer':
- df[col] = df[col].astype(int)
- else:
- df[col] = df[col].astype(str)
- else:
- df[col] = df[col].astype(str)
- return(df)
-
-
-
-def merge_data(pre_fp, pgs_fp, dur_dx_fp, admixture_fp, pheno_df):
- pre_df = pd.read_csv(pre_fp).astype({"eid": int})
- print(f"load pre from {pre_fp}:\t{pre_df.shape} | {round(sys.getsizeof(pre_df) / (1024**3), 2)}GB")
- dur_dx_df = pd.read_csv(dur_dx_fp).astype(int)
- print(f"load dur_dx from {dur_dx_fp}:\t{dur_dx_df.shape} | {round(sys.getsizeof(dur_dx_df) / (1024**3), 2)}GB")
-
- pgs_df = pd.read_pickle(pgs_fp) #.astype({"eid": int})
- # pgs_df = pgs_df[[i for i in pgs_df.columns if i == "eid" or int(i.split("(")[1].split("|")[0]) >= 10]] #ADJUSTED
- print(f"load pgs from {pgs_fp}:\t{pgs_df.shape} | {round(sys.getsizeof(pgs_df) / (1024**3), 2)}GB")
- admixture_df = pd.read_csv(admixture_fp, sep = ' ', header = None)
- admixture_df.columns = ['eid', 'EUR', 'EAS', 'AMR', 'SAS', 'AFR']
- admixture_df = admixture_df.astype({"EUR": int, "EAS": int, "AMR": int, "SAS": int, "AFR": int}) # float #ADJUSTED
- admixture_df['eid'] = admixture_df['eid'].str.split('_').str[0].astype(int)
- print(f"load admix from {admixture_fp}:\t{admixture_df.shape} | {round(sys.getsizeof(admixture_df) / (1024**3), 2)}GB")
-
- print(f"")
- print(f"######################################")
- print(f"Merging...")
- print(f"######################################")
- qrisk_cols = pre_df.columns[pre_df.columns.str.contains(pat = 'QRISK')].tolist()
- ascvd_cols = pre_df.columns[pre_df.columns.str.contains(pat = 'ascvd')].tolist()
- age_of_dx_cols = pre_df.columns[pre_df.columns.str.contains(pat = '^AGE_')].tolist()
-
- pre_df = set_dtype(pre_df, pheno_df, qrisk_cols + ascvd_cols + age_of_dx_cols)
- pre_df = reduce(lambda left,right: pd.merge(left,right,on='eid'), [pre_df, pgs_df, dur_dx_df, admixture_df])
-
- all_cols = pre_df.columns[1:].tolist() # excluding eid
- age_gender_cols = pre_df.columns[pre_df.columns.str.contains(pat = '_f21003$|_f31$')].tolist()
- treatment_cols = pre_df.columns[pre_df.columns.str.contains(pat = '_f20003$|medication|Medication')].tolist()
- ancestry_family_history_cols = pre_df.columns[pre_df.columns.str.contains(pat = 'EUR|SAS|EAS|AMR|AFR|ethnic|Family_illness')].tolist()
- ancestry_family_history_cols = pre_df.columns[pre_df.columns.str.contains(pat = 'EUR|SAS|EAS|AMR|AFR|ethnic|Family_illness')].tolist()
- non_ukb_pgs_cols = [col for col in pgs_df.columns.tolist() if "JoinUKB" not in col and "eid" not in col]
- join_ukb_pgs_cols = [col for col in pgs_df.columns.tolist() if "JoinUKB" in col]
- unmodifiable_cols = age_gender_cols + ancestry_family_history_cols + non_ukb_pgs_cols + join_ukb_pgs_cols
- dur_dx_cols = pre_df.columns[pre_df.columns.str.contains(pat = '^DUR_')].tolist()
-
- print(f" - age and gender counts: {len(age_gender_cols)}")
- print(f" - total qrisk counts: {len(qrisk_cols)}")
- print(f" - total ascvd counts: {len(ascvd_cols)}")
- print(f" - total treatment counts: {len(treatment_cols)}")
- print(f" - age of event counts: {len(age_of_dx_cols)}")
- print(f" - ancestry and history counts: {len(ancestry_family_history_cols)}")
- print(f" - non-UKBB-derived PGS counts: {len(non_ukb_pgs_cols)}")
- print(f" - join-UKBB-derived PGS counts: {len(join_ukb_pgs_cols)}")
- print(f" - total duration of diagnosis counts: {len(dur_dx_cols)}")
-
- print(f"\nTotal feature counts: {len(all_cols)}")
- print(f" -- Total unmodifiable counts: {len(unmodifiable_cols)}")
- print(f" -- Total modifiable counts: {len(all_cols) - len(unmodifiable_cols)}")
-
- # cols dictionary
- col_dict = {
- "age_gender": age_gender_cols,
- "qrisk": qrisk_cols,
- "ascvd": ascvd_cols,
- "treatment": treatment_cols,
- "age_of_dx": age_of_dx_cols,
- "ancestry_family_history": ancestry_family_history_cols,
- "non_ukb_prs": non_ukb_pgs_cols,
- "join_ukb_prs": join_ukb_pgs_cols,
- "unmodifiable": unmodifiable_cols,
- "duration_of_dx": dur_dx_cols,
- }
-
- # excluded columns
- base_excluded = ['eid', '#sampleID', 'ANCESTRY',
- 'home_location_at_assessment_east_coordinate_rounded_f20074',
- 'home_location_at_assessment_north_coordinate_rounded_f20075',
- 'uk_biobank_assessment_centre_f54',
- ] + age_of_dx_cols + pre_df.columns[pre_df.isnull().all()].tolist()
- print(f"\nBasic exclusion counts: {len(base_excluded)}")
- print(f"{base_excluded}")
-
- return pre_df, col_dict, base_excluded
-
-
-
-def load_data(step, my_pkg = None, my_test = None, base_n_features = 0, my_final_round = None):
- print(f"")
- print(f"######################################")
- print(f"Loading...")
- print(f"######################################")
- pheno_fp = "/gpfs/home/sfchen/stsi1/210430_ukbb_pheno_harmonization/seventh_data_request_basket/supplementary_table.csv"
- pgs_fp = "/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/csv/230610_non_ukb_join_ukb_prs_std.pkl"
- dur_dx_fp = "/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/csv/230404_prevalent_dx_duration.csv"
- admixture_fp = "/mnt/stsi/stsi3/Internal/UKBB/imputed_HRC_minimac4/hg19/2_merge/ukb_hap_v2.lifted_already_GRCh37.GH.pruned.intersect1KG.5.Q.IDs"
- prevalent_merged_ukbb_fp = "/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/csv/230916_prevalence_merged_ukbb.csv" # 230404
- DX_pred_fp = f"/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/{my_test}/DX_{my_pkg}_preds.n_feature_{base_n_features}.pkl"
- non_DX_pred_fp = f"/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/{my_test}/non_DX_{my_pkg}_preds.n_feature_{base_n_features}.pkl"
-
- pheno_df = pd.read_csv(pheno_fp)
-
- pre_df, col_dict, base_excluded = merge_data(prevalent_merged_ukbb_fp, pgs_fp, dur_dx_fp, admixture_fp, pheno_df)
-
- # get colname of meta features
- if step == "final":
- DX_pred_df = pd.read_pickle(DX_pred_fp) # csv(DX_pred_fp) #.astype({"eid": int}).round(16)
- print(f"load DX_pred from {DX_pred_fp}: {DX_pred_df.shape} | {round(sys.getsizeof(DX_pred_df) / (1024**3), 2)}GB")
- non_DX_pred_df = pd.read_pickle(non_DX_pred_fp) # csv(non_DX_pred_fp) #.astype({"eid": int}).round(16)
- print(f"load non_DX_pred from {non_DX_pred_fp}: {non_DX_pred_df.shape} | {round(sys.getsizeof(non_DX_pred_df) / (1024**3), 2)}GB")
- print(f"predicted diagnosis counts: {len(DX_pred_df.columns[1:].tolist())}")
- print(f"predicted non-diagnosis counts: {len(non_DX_pred_df.columns[1:].tolist())}")
- preds_cols = [col for col in DX_pred_df.columns.tolist() + non_DX_pred_df.columns.tolist() if col != 'eid']
- contemps_preds_cols = [col for col in preds_cols if ".all(" in col]
- no_contemps_preds_cols = [col for col in preds_cols if "no_contemps" in col]
- pre_df = reduce(lambda left,right: pd.merge(left,right,on='eid'), [pre_df, DX_pred_df, non_DX_pred_df])
- else:
- preds_cols = []
- contemps_preds_cols = []
- no_contemps_preds_cols = []
-
- col_dict["preds"] = preds_cols
- col_dict["contemps_preds"] = contemps_preds_cols
- col_dict["no_contemps_preds"] = no_contemps_preds_cols
-
- return pre_df, pheno_df, col_dict, base_excluded
-
-
-
-def get_model_design(my_step, my_y_lbl, my_pkg, pre_df, col_dict):
- model_design_fp = "/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis//UKBB_phenotyping_Model_design.tsv"
- model_design_df = pd.read_csv(model_design_fp, sep = "\t", doublequote=True, quotechar='"',quoting=3)
-
- model_design_df = model_design_df.fillna(value={"In_ASCVD": "F", "In_QRISK3": "F"})
- config_df = model_design_df.loc[model_design_df['Type'].isin(['binary', 'num', 'diagnosis']), ][["Type", "Trait", "In_ASCVD", "In_QRISK3", "Exclusion"]]
- target_trait_config = config_df.loc[config_df["Trait"] == my_y_lbl, ].squeeze()
- if target_trait_config.shape[0] == 0:
- sys.exit(f"Invalid target outcome not found in the model designs {my_y_lbl}")
- target_type = target_trait_config["Type"]
- target_ascvd = target_trait_config["In_ASCVD"]
- target_qrisk = target_trait_config["In_QRISK3"]
-
- if str(target_trait_config["Exclusion"]) == 'nan':
- target_exclusion = ""
- else:
- if my_step != "final":
- target_exclusion_str = target_trait_config["Exclusion"]
- target_exclusion_pt = target_exclusion_str.replace('"', '').replace(", ", "|")
- target_exclusion = pre_df.columns[pre_df.columns.str.contains(pat = target_exclusion_pt)].tolist()
- else:
- target_exclusion = []
-
- if target_type == "binary":
- trainer = (my_pkg, "classifier")
- elif target_type == "num":
- trainer = (my_pkg, "regressor")
- elif target_type == "diagnosis":
- trainer = (my_pkg, "classifier")
- else:
- print(f"{my_y_lbl} not included.")
- sys.exit()
-
- cus_drop_cols = [target_exclusion]
- cus_drop_cols = cus_drop_cols + [col_dict['ascvd']] if target_ascvd == 'T' else cus_drop_cols
- cus_drop_cols = cus_drop_cols + [col_dict['qrisk']] if target_qrisk == 'T' else cus_drop_cols
- cus_drop_cols = list(itertools.chain(*cus_drop_cols)) # flatten list
-
- print(f" - trainer: {trainer}")
- print(f" - cus_drop_cols: {cus_drop_cols}")
-
- return trainer, cus_drop_cols, target_type
-
-
-
-def split_ukbb(stratify_fp, ukbb_df, dx, lbls):
- split_dict = {}
- stratify_df = pd.read_csv(stratify_fp).astype({"eid": int})
- sub_ids = stratify_df[stratify_df[dx].isin(lbls)]['eid']
- sub_df = ukbb_df[(ukbb_df['eid'].isin(sub_ids))]
- return sub_df
-
-
-
-def update_y(df, y_label, fp, ex_fp = None):
- updated_df = df.copy()
- updated_df = updated_df.drop(y_label, errors='ignore', axis = 1)
- y_df = pd.read_csv(fp, usecols=["eid", y_label]).astype({"eid": int})
- if ex_fp != None:
- ex_y_df = pd.read_csv(ex_fp, usecols=["eid", y_label]).astype({"eid": int})
- ex_y = ex_y_df[y_label] * (-1)
- y_df[y_label] = y_df[y_label] + ex_y
- updated_df = pd.merge(updated_df, y_df, on = "eid")
- return updated_df
-
-
-
-def load_config(my_step, my_y_lbl, my_pkg, my_final_round, pre_df, col_dict):
- print(f"")
- print(f"")
- print(f"")
- print(f"########################################################################################################################################################")
- print(f"########################################################################################################################################################")
- print(f"Load {my_step} config...")
- print(f"########################################################################################################################################################")
- print(f"########################################################################################################################################################")
-
- # load model design
- trainer, cus_drop_cols, target_type = get_model_design(my_step, my_y_lbl, my_pkg, pre_df, col_dict)
-
- # manage categorical outcome
- if "." in my_y_lbl:
- y_cat = my_y_lbl.split(".")[1]
- y_label = my_y_lbl.split(".")[0]
- print(f"Multi-categorical outcomes in {y_label}: set {y_cat} as positive.")
- pre_df[y_label] = np.where(pre_df[y_label] == y_cat, '1', '0')
- print(f"recode multi-categorical outcome: set {y_cat} as 1; the rest as 0.")
- else:
- y_label = my_y_lbl
-
- print(f"")
- print(f"##################################################################################################################")
- print(f"Split dataset...")
- print(f"##################################################################################################################")
- # split ukbb into baseline and observed cohorts
- ukbb_stratify_fp = "/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/csv/230404_ukbb_stratification.csv"
- base_stratify_fp = "/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/csv/230404_base_stratification.csv"
- baseline_df = split_ukbb(ukbb_stratify_fp, pre_df, "DX_Coronary_artery_disease", ["baseline"])
- observed_df = split_ukbb(ukbb_stratify_fp, pre_df, "DX_Coronary_artery_disease", ["observed"])
-
- if my_step == "base_fit":
- print(f"base model training - using baseline cohort.")
- input_df = baseline_df
- elif my_step == "base_predict":
- print(f"base model predicting - using observed cohort.")
- input_df = observed_df
- elif my_step == "final":
- print(f"final train/test - using observed cohort.")
- input_df = observed_df
- else:
- sys.exit(f"invalid step: {my_step}")
-
- # update the outcome with additional time point
- prevalent_early_merged_ukbb_fp = "/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/csv/230916_early_onset_merged_ukbb.csv" # 0404
- prevalent_merged_ukbb_fp = "/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/csv/230916_prevalence_merged_ukbb.csv" # 0404
- incident_10yr_merged_ukbb_fp = "/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/csv/230916_incidence_10yr_merged_ukbb.csv" # 0404
- tot_merged_ukbb_fp = "/mnt/stsi/stsi1/sfchen/210430_ukbb_pheno_harmonization/analysis/csv/230916_lifetime_merged_ukbb.csv" # 0404
-
- dfs = {}
- # base
- if my_step in ["base_fit", "base_predict"]:
- dfs["base"] = input_df
- if target_type != 'diagnosis':
- training_configs = {
- ("base", "age_gender_only"): list(set(["eid", y_label] + col_dict["age_gender"])),
- ("base", "unmodifiable"): list(set(["eid", y_label] + col_dict["unmodifiable"])),
- ("base", "no_contemps"): [n for n in dfs["base"].columns if n not in col_dict["ascvd"] + col_dict["qrisk"]],
- }
-
- if target_type == 'diagnosis':
- if my_step in "base_fit": # fit
- tot_y_df = update_y(input_df, y_label, tot_merged_ukbb_fp)
-
- dfs["earlyonset"] = split_ukbb(base_stratify_fp, tot_y_df, y_label, ["control", "prevonlycontrol", "death", "earlyonset"])
- dfs["lateonset"] = split_ukbb(base_stratify_fp, tot_y_df, y_label, ["control", "prevonlycontrol", "death", "lateonset"])
- dfs["prediagnosis"] = split_ukbb(base_stratify_fp, tot_y_df, y_label, ["control", "prevonlycontrol", "death", "earlyonset", "lateonset"])
- dfs["10yr_risk"] = split_ukbb(base_stratify_fp, tot_y_df, y_label, ["control", "10yr"])
- dfs["20yr_risk"] = split_ukbb(base_stratify_fp, tot_y_df, y_label, ["control", "10yr", "20yr"])
-
- else: # transform
- # all will be used to generate/test predictions from pre-trained models
- dfs["earlyonset"] = update_y(input_df, y_label, prevalent_early_merged_ukbb_fp)
- dfs["lateonset"] = update_y(input_df, y_label, prevalent_merged_ukbb_fp)
- dfs["prediagnosis"] = update_y(input_df, y_label, prevalent_merged_ukbb_fp)
- dfs["10yr_risk"] = update_y(input_df, y_label, incident_10yr_merged_ukbb_fp)
- dfs["20yr_risk"] = update_y(input_df, y_label, tot_merged_ukbb_fp)
-
- exclude_dx_duration = [n for n in col_dict["duration_of_dx"] if y_label in n]
-
- training_configs = {
- ("earlyonset", "age_gender_only"): list(set(["eid", y_label] + col_dict["age_gender"])),
- ("earlyonset", "unmodifiable"): list(set(["eid", y_label] + col_dict["unmodifiable"])),
- # ("earlyonset", "no_contemps"): [n for n in dfs["earlyonset"].columns if n not in exclude_dx_duration + col_dict["ascvd"] + col_dict["qrisk"]],
- # ("earlyonset", "all"): [n for n in dfs["earlyonset"].columns if n not in exclude_dx_duration],
-
- ("lateonset", "age_gender_only"): list(set(["eid", y_label] + col_dict["age_gender"])),
- ("lateonset", "unmodifiable"): list(set(["eid", y_label] + col_dict["unmodifiable"])),
- # ("lateonset", "no_contemps"): [n for n in dfs["lateonset"].columns if n not in exclude_dx_duration + col_dict["ascvd"] + col_dict["qrisk"]],
- # ("lateonset", "all"): [n for n in dfs["lateonset"].columns if n not in exclude_dx_duration],
-
- ("prediagnosis", "age_gender_only"): list(set(["eid", y_label] + col_dict["age_gender"])),
- ("prediagnosis", "unmodifiable"): list(set(["eid", y_label] + col_dict["unmodifiable"])),
- # ("prediagnosis", "no_contemps"): [n for n in dfs["prediagnosis"].columns if n not in exclude_dx_duration + col_dict["ascvd"] + col_dict["qrisk"]],
- # ("prediagnosis", "all"): [n for n in dfs["prediagnosis"].columns if n not in exclude_dx_duration],
-
- ("10yr_risk", "age_gender_only"): list(set(["eid", y_label] + col_dict["age_gender"])),
- # ("10yr_risk", "unmodifiable"): list(set(["eid", y_label] + col_dict["unmodifiable"])),
- ("10yr_risk", "no_contemps"): [n for n in dfs["10yr_risk"].columns if n not in exclude_dx_duration + col_dict["ascvd"] + col_dict["qrisk"]],
- # ("10yr_risk", "all"): [n for n in dfs["10yr_risk"].columns if n not in exclude_dx_duration],
-
- ("20yr_risk", "age_gender_only"): list(set(["eid", y_label] + col_dict["age_gender"])),
- # ("20yr_risk", "unmodifiable"): list(set(["eid", y_label] + col_dict["unmodifiable"])),
- ("20yr_risk", "no_contemps"): [n for n in dfs["20yr_risk"].columns if n not in exclude_dx_duration + col_dict["ascvd"] + col_dict["qrisk"]],
- # ("20yr_risk", "all"): [n for n in dfs["20yr_risk"].columns if n not in exclude_dx_duration]
- }
-
- # final
- elif my_step == "final":
- # we only predict 10yr CAD risk
- dfs["final"] = update_y(input_df, y_label, incident_10yr_merged_ukbb_fp)
- training_configs = {
- ("final", "age_gender_only"): list(set(["eid", y_label] + col_dict["age_gender"])),
- ("final", "unmodifiable"): list(set(["eid", y_label] + col_dict["unmodifiable"])),
- ("final", "modifiable"): [n for n in dfs["final"].columns if n not in col_dict["ascvd"] + col_dict["qrisk"] + col_dict["preds"] + col_dict["unmodifiable"]],
- ("final", "ascvd_only"): list(set(["eid", y_label] + col_dict["ascvd"])),
- ("final", "qrisk_only"): list(set(["eid", y_label] + col_dict["qrisk"])),
- ("final", "contemps"): list(set(["eid", y_label] + col_dict["ascvd"] + col_dict["qrisk"])),
- ("final", "preds"): list(set(["eid", y_label] + col_dict["preds"])),
- ("final", "no_contemps"): [n for n in dfs["final"].columns if n not in col_dict["ascvd"] + col_dict["qrisk"] + col_dict["contemps_preds"]],
- ("final", "no_preds"): [n for n in dfs["final"].columns if n not in col_dict["ascvd"] + col_dict["qrisk"] + col_dict["preds"]],
- ("final", "all"): dfs["final"].columns
- }
-
- config_keys = list(training_configs.keys())
- print(f"All training setting: {config_keys}")
-
- if my_step != "final":
- training_rounds = config_keys
- elif my_step == "final":
- training_rounds = [("final", my_final_round)]
- if training_rounds[0] not in config_keys:
- sys.exit(f"unknown final training_config {training_config}")
-
- return dfs, y_label, cus_drop_cols, trainer, training_rounds, training_configs
-
-
-
-def get_df(dfs, y_label, training_round, my_step, trainer, training_configs, debug):
- y_title = y_label + "." + ".".join(training_round)
- df = dfs[training_round[0]][training_configs[training_round]]
-
- if debug == True:
- df = df.head(20000)
-
- df = df.rename(columns = {y_label: y_title})
- print(f" - {training_round[0]} dataset: {df.shape}")
- print(f" - preview {y_title}")
- if trainer[1] == "classifier":
- print(df[y_title].value_counts())
- else:
- print(df[y_title].describe())
-
- return df, y_title
-
-
-
-class ColumnSelector(BaseEstimator, TransformerMixin):
- # https://towardsdatascience.com/customizing-sklearn-pipelines-transformermixin-a54341d8d624
- def __init__(self, selected_cols):
- if not isinstance(selected_cols, list):
- self.selected_cols = [selected_cols]
- else:
- self.selected_cols = selected_cols
-
- def fit(self, X: pd.DataFrame, y: pd.Series):
- # there is nothing to fit
- return self
-
- def transform(self, X:pd.DataFrame):
- X = X.copy()
- return X[self.selected_cols]
-
-
-
-def make_zoish_selector(X_train, y_train, estimators_dict, params_dict, trainer, n_trials, n_features, shap_n_jobs, measure_of_accuracy, with_stratified, fname, approximate = False):
-
- feature_selector = ShapFeatureSelector.shap_feature_selector_factory.set_model_params(
- X = X_train,
- y = y_train,
- verbose = 0,
- random_state = 19920722,
- estimator = estimators_dict[trainer],
- estimator_params = params_dict[trainer],
- fit_params = {}, # fit_params,
- method = "optuna", # "optuna", "tunesearch"
- # if n_features=None only the threshold will be considered as a cut-off of features grades.
- # if threshold=None only n_features will be considered to select the top n features.
- # if both of them are set to some values, the threshold has the priority for selecting features.
- n_features = n_features,
- threshold = None,
- list_of_obligatory_features_that_must_be_in_model = [],
- list_of_features_to_drop_before_any_selection = [],
- ).set_shap_params(
- model_output = "raw",
- feature_perturbation = "interventional",
- algorithm = "v2",
- shap_n_jobs = shap_n_jobs,
- memory_tolerance = -1,
- feature_names = None,
- approximate = approximate,
- shortcut = False,
- ).set_optuna_params(
- measure_of_accuracy = measure_of_accuracy,
- # optuna params
- with_stratified = with_stratified,
- test_size = 0.10,
- n_jobs = -1,
- # optuna params
- # optuna study init params
- study = optuna.create_study(
- storage = None,
- sampler = TPESampler(seed = 19920722),
- pruner = HyperbandPruner(),
- study_name = None,
- direction = "maximize",
- load_if_exists = False,
- directions = None,
- ),
- # optuna optimization params
- study_optimize_objective = None,
- study_optimize_objective_n_trials = n_trials,
- study_optimize_objective_timeout = 600,
- study_optimize_n_jobs = 1,
- study_optimize_catch = (),
- study_optimize_callbacks = None,
- study_optimize_gc_after_trial = True,
- study_optimize_show_progress_bar = False,
- )
- return feature_selector
-
-
-
-def set_opt_params(my_step, trainer):
- # set classification / regression
- if trainer[1] == "classifier":
- if my_step != "final": #ADJUSTED
- measure_of_accuracy = f"f1_score(y_true, y_pred, average='macro')"
- else:
- measure_of_accuracy = f"f1_score(y_true, y_pred, average='macro')"
- print(f"measure_of_accuracy USED {measure_of_accuracy}")
- with_stratified = True
- else:
- measure_of_accuracy = f"r2_score(y_true, y_pred)"
- with_stratified = False
- return measure_of_accuracy, with_stratified
-
-
-
-def make_zoish_lohrasb_pipeline(my_step, X_train, y_train, trainer, fname, n_features, n_trials, n_approx = 100, shap_df = None):
-
- all_features = X_train.columns.tolist()
-
- # get int/float/cat colnames
- # int_cols = X_train.select_dtypes(include=['int']).columns.tolist()
- # float_cols = X_train.select_dtypes(include=['float']).columns.tolist()
- cat_cols = X_train.select_dtypes(include=['object']).columns.tolist()
-
- # get transformer
- transformers = []
- if len(cat_cols) > 0:
- transformers.append(("CatBoostEncoder", cen.CatBoostEncoder(random_state = 19920722),))
-
- measure_of_accuracy, with_stratified = set_opt_params(my_step, trainer)
-
- feature_selectors = []
- if shap_df is None:
- # shap approximate cannot work with catboost
- if trainer[0] == "cat":
- if X_train.shape[1] <= n_approx and n_features >= X_train.shape[1]:
- pass
- else:
- feature_selectors.append(("ZoishSelector", make_zoish_selector(X_train, y_train, estimators_dict, params_dict, trainer, n_trials, n_features, 1, measure_of_accuracy, with_stratified, fname)))
- # approx would introduce variability for final feauture selection; 200 will trigger additivity issue without approx
- # this would keep the consistency for feature selection and avoid additivity issue
- elif X_train.shape[1] > n_approx and n_features > n_approx:
- feature_selectors.append(("ApproxZoishSelector", make_zoish_selector(X_train, y_train, estimators_dict, params_dict, trainer, n_trials, n_features, -1, measure_of_accuracy, with_stratified, fname, approximate = True)))
-
- # approx first and further narrow down toward target number
- elif X_train.shape[1] > n_approx and n_features <= n_approx:
- feature_selectors.append(("ApproxZoishSelector", make_zoish_selector(X_train, y_train, estimators_dict, params_dict, trainer, n_trials, n_approx, -1, measure_of_accuracy, with_stratified, fname, approximate = True)))
- feature_selectors.append(("ZoishSelector", make_zoish_selector(X_train, y_train, estimators_dict, params_dict, trainer, n_trials, n_features, 1, measure_of_accuracy, with_stratified, fname)))
-
- # if the init feature number low enough, then skip approx
- # this would keep the consistency for feature selection (additivity comes)
- elif X_train.shape[1] <= n_approx and n_features < X_train.shape[1]:
- feature_selectors.append(("ZoishSelector", make_zoish_selector(X_train, y_train, estimators_dict, params_dict, trainer, n_trials, n_features, 1, measure_of_accuracy, with_stratified, fname)))
-
- # if the init feature number less than selected number, then no feature selection is needed. (Ex. age_gender_only)
- # this would avoid segmental fault due to estimators can't converge throughout optuna trials
- # elif X_train.shape[1] <= n_approx and n_features >= X_train.shape[1]:
- else:
- pass
- else:
- # select top N features from the pre-calcualted SHAP importance df; no redo to avoid variaiblity
- feature_selectors.append(("ColumnSelector", ColumnSelector(list(shap_df['column_name'].head(n_features)))))
-
-
- lohrasb_opt = BaseModel().optimize_by_optuna(
- estimator = estimators_dict[trainer],
- estimator_params = params_dict[trainer],
- measure_of_accuracy = measure_of_accuracy,
- with_stratified = with_stratified,
- fit_params = {},
- test_size = 0.10,
- verbose = 0,
- n_jobs = 1,
- random_state = 19920722,
- # optuna params
- # optuna study init params
- study = optuna.create_study(
- storage = None,
- sampler = TPESampler(seed = 19920722),
- pruner = HyperbandPruner(),
- study_name = None,
- direction = "maximize",
- load_if_exists = False,
- directions = None
- ),
- # optuna optimization params
- study_optimize_objective = None,
- study_optimize_objective_n_trials = n_trials,
- study_optimize_objective_timeout = 600,
- study_optimize_n_jobs = 1,
- study_optimize_catch = (),
- study_optimize_callbacks = None,
- study_optimize_gc_after_trial = True,
- study_optimize_show_progress_bar = False
- )
-
- # make pipeline
- SHAP_PIP = Pipeline(
- [("ALLColumn", ColumnSelector(all_features))] +
- transformers +
- feature_selectors +
- [(f"LohrasbOptimizer_{trainer[0]}_{trainer[1]}", lohrasb_opt)]
- )
-
- return SHAP_PIP
-
-
-def make_mini_pipeline(pre_PIP, re_X_train, re_y_train, trainer, fname):
-
- cat_cols = re_X_train.select_dtypes(include=['object']).columns.tolist()
-
- transformer_list = []
- if len(cat_cols) > 0:
- transformer_list.append(("CatBoostEncoder", cen.CatBoostEncoder(random_state = 19920722),))
-
- if any("Selector" in step for step in list(pre_PIP.named_steps.keys())):
- selector_step = max(loc for loc, val in enumerate(list(pre_PIP.named_steps.keys())) if 'Selector' in val)
- selected_cols = sorted(pre_PIP[selector_step].selected_cols)
- else:
- selected_cols = sorted(list(re_X_train.columns))
- print(f"re-training selected cols: {len(selected_cols)}")
-
- if trainer[0] == "cat":
- estimator = pre_PIP[-1].best_estimator # to avoid "CatBoostError: You can't change params of fitted model."
- else:
- estimator = estimators_dict[trainer]
- best_params = pre_PIP[-1].best_estimator.get_params()
- estimator.set_params(**best_params)
-
- # make piepline
- if trainer[0] == "ebm":
- RE_PIP = Pipeline(
- [("ColumnSelector", ColumnSelector(selected_cols))] +
- [(f"BestEstimator_{trainer[0]}_{trainer[1]}", estimator)]
- )
- else:
- RE_PIP = Pipeline(
- [("ColumnSelector", ColumnSelector(selected_cols))] +
- transformer_list +
- [(f"BestEstimator_{trainer[0]}_{trainer[1]}", estimator)]
- )
-
- return RE_PIP
-
-
-
-def importance_review(X_test, y_title, PIP, trainer, n_features, fname, review_cohort, retrain = False, show = False, n_approx = 50):
-
- if n_features > n_approx:
- pass
- if retrain == False:
- shap_fp = f"shap.{fname}.{review_cohort}.png"
- else:
- shap_fp = f"retrain_shap.{fname}.{review_cohort}.png"
-
- try:
- my_shap = Path(shap_fp)
- if my_shap.is_file():
- print(f"found {shap_fp}: found pre-examined shap!!!")
- else:
- plt.cla()
- plt.clf()
- fig = plt.gcf()
-
- if len(PIP.steps) == 1:
- scaled_X_test = X_test
- estimator = PIP[0]
- else:
- scaled_X_test = PIP[:-1].transform(X_test)
- if "best_estimator" in dir(PIP[-1]):
- estimator = PIP[-1].best_estimator
- else:
- estimator = PIP[-1]
-
- explainer = fasttreeshap.TreeExplainer(estimator, algorithm = "v2", n_jobs = -1)
- shap_values = explainer.shap_values(scaled_X_test)
-
- if show != True:
- shap.summary_plot(shap_values, scaled_X_test, max_display = n_features, show = False)
- plt.title(f"{y_title}")
- fig.savefig(shap_fp, dpi=300, bbox_inches='tight', transparent="True", pad_inches=0)
- else:
- shap.summary_plot(shap_values, scaled_X_test, max_display = n_features, show = show)
- plt.title(f"{y_title}")
- plt.close()
- plt.cla()
- plt.clf()
-
- except:
- print("model too complicated to review the shap...")
-
-
-
-def get_acc_metric(y, y_pred, trainer, classifier_metric = "F1"):
- if trainer[1] == "classifier":
- try:
- if classifier_metric == "AUC":
- auc = roc_auc_score(y, y_pred)
- print(f"AUC score : {auc}")
- out = auc
- else:
- pred_labels = np.rint(y_pred)
- f1 = f1_score(y, pred_labels, average = 'macro')
- print(f"F1 score : {f1}")
- print(f"Classification report : ")
- print(classification_report(y, pred_labels))
- print(f"Confusion matrix : ")
- print(confusion_matrix(y, pred_labels))
- out = f1
- except:
- out = "None"
- else:
- r2 = r2_score(y, y_pred)
- print(f"r2 score : {r2}")
- out = r2
- return out
-
-
-
-def eval_pred(PIP, trainer, X, y):
- if trainer[1] == "classifier":
- y_pred = PIP.predict_proba(X)[:,1]
- else:
- y_pred = PIP.predict(X)
- acc = get_acc_metric(y, y_pred, trainer)
- return y_pred, acc
-
-
-
-def save_preds(pred_fp, trainer, fname, idx, y_pred, acc_lbl, acc, classifier_metric = "F1"):
- my_pred = Path(pred_fp)
- if my_pred.is_file():
- print(f"found {pred_fp}: found existed predicts!!!")
- else:
- if trainer[1] == "classifier":
- acc_metric = "F1" if classifier_metric == "F1" else "AUC"
- else:
- acc_metric = "R2"
-
- pred_df = pd.DataFrame({f"eid": idx, f"{fname}({acc_lbl}-{acc_metric}={acc})": y_pred})
- pred_df.to_pickle(pred_fp)
- print(f"######################################")
- print(f"- {pred_fp} saved.")
- print(f"######################################")
-
-
-
-def save_joblib(PIP, joblib_fp):
- dump(PIP, joblib_fp)
- print(f"######################################")
- print(f"- {joblib_fp} saved.")
- print(f"######################################")
-
-
-
-def get_X_y_idx(df, y_title, drop_cols, trainer, selected_cols = []):
- idx = df['eid']
- df = df.reindex(sorted(df.columns), axis=1)
- drop_cols = drop_cols + df.columns[df.isna().any()].tolist()
- if trainer[1] == "classifier":
- y = df.loc[:,df.columns == y_title].astype(int)
- else:
- y = df.loc[:,df.columns == y_title].astype(float)
- df = df.drop(drop_cols, errors='ignore', axis = 1)
- X = df.loc[:,df.columns != y_title]
- print(f"training data size: {X.shape}")
- print(f"training outcome size: {y.shape}")
- return X, y, idx
-
-
-
-def set_train_test(trainer, X, y, idx, test_size = 0.20, random_state = 19920722):
- if trainer[1] == "classifier":
- X_train, X_test, y_train, y_test, idx_train, idx_test = train_test_split(X, y, idx, test_size = test_size, random_state = random_state, stratify = y)
- else:
- X_train, X_test, y_train, y_test, idx_train, idx_test = train_test_split(X, y, idx, test_size = test_size, random_state = random_state)
- return X_train, X_test, y_train, y_test, idx_train, idx_test
-
-
-
-def fit_pipeline(my_step, joblib_fp, X_train, y_train, trainer, fname, n_features = 0, n_trials = 0, RE_PIP = None, with_sample_weight = False):
- my_joblib = Path(joblib_fp)
-
- if my_joblib.is_file():
- print(f"found {joblib_fp}: load pre-trained model!!!")
- PIP = load(joblib_fp)
-
- elif not my_joblib.is_file():
-
- if my_step == "final":
- n_approx = 200
- else:
- n_approx = 100
-
- if n_features > n_approx:
- my_shap_path = f"shap.{fname}.preselect.tsv"
- else:
- if trainer[0] == "cat":
- my_shap_path = f"shap.{fname}.preselect.tsv".replace(f"top_{n_features}", f"top_N")
- else:
- my_shap_path = f"shap.{fname}.preselect.tsv".replace(f"top_{n_features}", f"top_{n_approx}")
- my_shap = Path(my_shap_path)
-
- if RE_PIP == None:
- if my_shap.is_file():
- print(f"found {my_shap_path}: load pre-selected shap importance scores!!!")
- shap_df = pd.read_csv(my_shap_path, sep = '\t')
- pre_PIP = make_zoish_lohrasb_pipeline(my_step, X_train, y_train, trainer, fname, n_features, n_trials, shap_df = shap_df)
- else:
- pre_PIP = make_zoish_lohrasb_pipeline(my_step, X_train, y_train, trainer, fname, n_features, n_trials, n_approx = n_approx)
- pre_PIP.fit(X_train, y_train)
-
- if any("ZoishSelector" in step for step in list(pre_PIP.named_steps.keys())):
- pre_PIP[-2].importance_df.to_csv(my_shap_path, sep = '\t', index=False)
-
- PIP = make_mini_pipeline(pre_PIP, X_train, y_train, trainer, fname)
- else:
- PIP = RE_PIP
-
-
- if with_sample_weight == True and trainer[1] == "classifier":
- # https://stackoverflow.com/questions/47399350/how-does-sample-weight-compare-to-class-weight-in-scikit-learn
- # https://stackoverflow.com/questions/67868420/xgboost-for-multiclassification-and-imbalanced-data
- print(">>> apply sample_weight <<<")
- sample_weight = compute_sample_weight(class_weight = 'balanced', y = y_train)
- else:
- sample_weight = None
-
- # ValueError: Pipeline.fit does not accept the sample_weight parameter.
- # You can pass parameters to specific steps of your pipeline using the stepname__parameter format,
- # e.g. `Pipeline.fit(X, y, logisticregression__sample_weight=sample_weight)`.
- PIP.fit(X_train, y_train, **{f"BestEstimator_{trainer[0]}_{trainer[1]}__sample_weight": sample_weight})
-
- save_joblib(PIP, joblib_fp)
-
- else:
- sys.exit(f"Can't find {joblib_fp}")
-
- return PIP
-
-
-
-def train_opt_pipeline(my_step, df, y_title, drop_cols, trainer, fname, n_features, n_trials, PIP = None, test_acc = 0):
- print(f"\n==== train_opt_pipeline ==== {my_step} ====")
-
- X, y, idx = get_X_y_idx(df, y_title, drop_cols, trainer)
-
- if my_step == "base_fit":
- X_train, X_test, y_train, y_test, idx_train, idx_test = set_train_test(trainer, X, y, idx)
- PIP = fit_pipeline(my_step, f"base_pipeline.{fname}.joblib", X_train, y_train, trainer, fname, n_features, n_trials)
- y_pred, acc = eval_pred(PIP, trainer, X_test, y_test)
-
- elif my_step == "base_predict":
- X_train, X_test, y_train, y_test, idx_train, idx_test = X, X, y, y, idx, idx
- y_pred, acc = eval_pred(PIP, trainer, X_test, y_test)
- print("save base_predict first time.")
- save_preds(f"base_pred.{fname}.pkl", trainer, fname, idx_test, y_pred, "test/validate", f"{test_acc}/{acc}")
-
- elif my_step == "final": # for now it's always CAD
- X_train, X_test, y_train, y_test, idx_train, idx_test = set_train_test(trainer, X, y, idx)
- PIP = fit_pipeline(my_step, f"final_pipeline.{fname}.joblib", X_train, y_train, trainer, fname, n_features, n_trials)
- y_pred, acc = eval_pred(PIP, trainer, X_test, y_test)
- print("save final_predict first time.")
- save_preds(f"final_pred.{fname}.pkl", trainer, fname, idx_test, y_pred, "test", acc)
-
- else:
- sys.exit(f"invalid step: {my_step}")
- return PIP, y_pred, acc
-
-
-
-def retrain_best_pipeline(my_step, df, y_title, drop_cols, trainer, fname, PIP, test_acc = 0):
- print(f"\n==== retrain_best_pipeline ==== {my_step} ====")
-
- re_X, re_y, re_idx = get_X_y_idx(df, y_title, drop_cols, trainer)
-
- if my_step == "base_fit":
- REFIT_PIP = fit_pipeline(my_step, f"retrain_base_pipeline.{fname}.joblib", re_X, re_y, trainer, fname, RE_PIP = PIP, with_sample_weight = True)
- re_y_pred, re_acc = eval_pred(REFIT_PIP, trainer, re_X, re_y)
-
- elif my_step == "base_predict":
- REFIT_PIP = PIP
- re_y_pred, re_acc = eval_pred(REFIT_PIP, trainer, re_X, re_y)
- save_preds(f"retrain_base_pred.{fname}.pkl", trainer, fname, re_idx, re_y_pred, "test/validate", f"{test_acc}/{re_acc}")
-
- elif my_step == "final":
- re_X_train, re_X_test, re_y_train, re_y_test, re_idx_train, re_idx_test = set_train_test(trainer, re_X, re_y, re_idx)
- REFIT_PIP = fit_pipeline(my_step, f"retrain_final_pipeline.{fname}.joblib", re_X_train, re_y_train, trainer, fname, RE_PIP = PIP, with_sample_weight = True)
- re_y_pred, re_acc = eval_pred(REFIT_PIP, trainer, re_X_test, re_y_test)
- save_preds(f"retrain_final_pred.{fname}.pkl", trainer, fname, re_idx_test, re_y_pred, "final_retrain_test", re_acc)
-
- else:
- sys.exit(f"invalid step: {my_step}")
- return REFIT_PIP, re_y_pred, re_acc
-
-
-
-def execute_model_workflow(my_n_features, my_n_trials, dfs, base_excluded, cus_drop_cols, y_label, training_round, my_step, trainer, training_configs, debug = False, base_n_features = 0, test_acc = 0):
-
- print(f"")
- print(f"")
- print(f"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@")
- df, y_title = get_df(dfs, y_label, training_round, my_step, trainer, training_configs, debug)
- # make filename contains top_{selected feature N}.{trainer algorithm}.{outcome label}_{base/final}_{predictor set}
- if debug == True:
- fname = f"debug_{my_n_features}.{'_'.join(trainer)}.{y_title}"
- else:
- if my_step != "final":
- fname = f"top_{my_n_features}.{'_'.join(trainer)}.{y_title}"
- else:
- fname = f"final_top_{my_n_features}.{'_'.join(trainer)}.{y_title}.base_{base_n_features}"
- print(f"Execute {my_step}: {fname}")
- print(f"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@")
-
- drop_cols = base_excluded + cus_drop_cols
- print(f" - preview drop_cols: {drop_cols}")
-
- if df.shape[0] == 0:
- print(f"Zero individual in the cohort - aborted.")
- return None, None
- if trainer[1] == "classifier" and my_step == "base_fit":
- if df[y_title].value_counts().shape[0] == 1:
- print(f"Monomorphic - training aborted")
- return None, None
- if sum(df[y_title].astype(int) == 1) < 3:
- print(f"Cases less than 3 - training abored")
- return None, None
-
- if my_step == "base_fit":
- PIP, y_pred, acc = train_opt_pipeline(my_step, df, y_title, drop_cols, trainer, fname, my_n_features, my_n_trials)
- RE_PIP, re_y_pred, re_acc = retrain_best_pipeline(my_step, df, y_title, drop_cols, trainer, fname, PIP = PIP)
- return None, acc
-
- elif my_step == "base_predict":
- joblib_fp = f"base_pipeline.{fname}.joblib"
- my_joblib = Path(joblib_fp)
- if my_joblib.is_file():
- PIP = load(joblib_fp)
- PIP, y_pred, acc = train_opt_pipeline(my_step, df, y_title, drop_cols, trainer, fname, my_n_features, my_n_trials, PIP = PIP, test_acc = test_acc)
- else:
- print(f"######################################")
- print(f"- {my_step} train_opt_pipeline incompleted: {joblib_fp} not found.")
- print(f"######################################")
- print(f"")
- return None, None
-
- retrain_joblib_fp = f"retrain_base_pipeline.{fname}.joblib"
- my_retrain_joblib = Path(retrain_joblib_fp)
- if my_retrain_joblib.is_file():
- PIP = load(retrain_joblib_fp)
- RE_PIP, re_y_pred, re_acc = retrain_best_pipeline(my_step, df, y_title, drop_cols, trainer, fname, PIP = PIP, test_acc = test_acc)
- else:
- print(f"######################################")
- print(f"- {my_step} retrain_best_pipeline incompleted: {retrain_joblib_fp} not found.")
- print(f"######################################")
- print(f"")
- return None, None
-
- return re_y_pred, re_acc
-
- elif my_step == "final":
- PIP, y_pred, acc = train_opt_pipeline(my_step, df, y_title, drop_cols, trainer, fname, my_n_features, my_n_trials)
- RE_PIP, re_y_pred, re_acc = retrain_best_pipeline(my_step, df, y_title, drop_cols, trainer, fname, PIP = PIP)
- return re_y_pred, re_acc
-
- else:
- sys.exit(f"invalid step: {my_step}")
-
-
-
\ No newline at end of file