#
tokens: 151434/50000 1/208 files (page 13/16)
lines: off (toggle) GitHub
raw markdown copy
This is page 13 of 16. Use http://codebase.md/mljar/mljar-supervised?lines=false&page={x} to view the full context.

# Directory Structure

```
├── .github
│   └── workflows
│       ├── run-tests.yml
│       ├── test-installation-with-conda.yml
│       └── test-installation-with-pip-on-windows.yml
├── .gitignore
├── CITATION
├── examples
│   ├── notebooks
│   │   ├── basic_run.ipynb
│   │   └── Titanic.ipynb
│   └── scripts
│       ├── binary_classifier_adult_fairness.py
│       ├── binary_classifier_ensemble.py
│       ├── binary_classifier_marketing.py
│       ├── binary_classifier_random.py
│       ├── binary_classifier_Titanic.py
│       ├── binary_classifier.py
│       ├── multi_class_classifier_digits.py
│       ├── multi_class_classifier_MNIST.py
│       ├── multi_class_classifier.py
│       ├── multi_class_drug_fairness.py
│       ├── regression_acs_fairness.py
│       ├── regression_crime_fairness.py
│       ├── regression_housing_fairness.py
│       ├── regression_law_school_fairness.py
│       ├── regression.py
│       └── tabular_mar_2021.py
├── LICENSE
├── MANIFEST.in
├── pytest.ini
├── README.md
├── requirements_dev.txt
├── requirements.txt
├── setup.py
├── supervised
│   ├── __init__.py
│   ├── algorithms
│   │   ├── __init__.py
│   │   ├── algorithm.py
│   │   ├── baseline.py
│   │   ├── catboost.py
│   │   ├── decision_tree.py
│   │   ├── extra_trees.py
│   │   ├── factory.py
│   │   ├── knn.py
│   │   ├── lightgbm.py
│   │   ├── linear.py
│   │   ├── nn.py
│   │   ├── random_forest.py
│   │   ├── registry.py
│   │   ├── sklearn.py
│   │   └── xgboost.py
│   ├── automl.py
│   ├── base_automl.py
│   ├── callbacks
│   │   ├── __init__.py
│   │   ├── callback_list.py
│   │   ├── callback.py
│   │   ├── early_stopping.py
│   │   ├── learner_time_constraint.py
│   │   ├── max_iters_constraint.py
│   │   ├── metric_logger.py
│   │   ├── terminate_on_nan.py
│   │   └── total_time_constraint.py
│   ├── ensemble.py
│   ├── exceptions.py
│   ├── fairness
│   │   ├── __init__.py
│   │   ├── metrics.py
│   │   ├── optimization.py
│   │   ├── plots.py
│   │   ├── report.py
│   │   └── utils.py
│   ├── model_framework.py
│   ├── preprocessing
│   │   ├── __init__.py
│   │   ├── datetime_transformer.py
│   │   ├── encoding_selector.py
│   │   ├── exclude_missing_target.py
│   │   ├── goldenfeatures_transformer.py
│   │   ├── kmeans_transformer.py
│   │   ├── label_binarizer.py
│   │   ├── label_encoder.py
│   │   ├── preprocessing_categorical.py
│   │   ├── preprocessing_missing.py
│   │   ├── preprocessing_utils.py
│   │   ├── preprocessing.py
│   │   ├── scale.py
│   │   └── text_transformer.py
│   ├── tuner
│   │   ├── __init__.py
│   │   ├── data_info.py
│   │   ├── hill_climbing.py
│   │   ├── mljar_tuner.py
│   │   ├── optuna
│   │   │   ├── __init__.py
│   │   │   ├── catboost.py
│   │   │   ├── extra_trees.py
│   │   │   ├── knn.py
│   │   │   ├── lightgbm.py
│   │   │   ├── nn.py
│   │   │   ├── random_forest.py
│   │   │   ├── tuner.py
│   │   │   └── xgboost.py
│   │   ├── preprocessing_tuner.py
│   │   ├── random_parameters.py
│   │   └── time_controller.py
│   ├── utils
│   │   ├── __init__.py
│   │   ├── additional_metrics.py
│   │   ├── additional_plots.py
│   │   ├── automl_plots.py
│   │   ├── common.py
│   │   ├── config.py
│   │   ├── constants.py
│   │   ├── data_validation.py
│   │   ├── importance.py
│   │   ├── jsonencoder.py
│   │   ├── leaderboard_plots.py
│   │   ├── learning_curves.py
│   │   ├── metric.py
│   │   ├── shap.py
│   │   ├── subsample.py
│   │   └── utils.py
│   └── validation
│       ├── __init__.py
│       ├── validation_step.py
│       ├── validator_base.py
│       ├── validator_custom.py
│       ├── validator_kfold.py
│       └── validator_split.py
└── tests
    ├── __init__.py
    ├── checks
    │   ├── __init__.py
    │   ├── check_automl_with_regression.py
    │   ├── run_ml_tests.py
    │   └── run_performance_tests.py
    ├── conftest.py
    ├── data
    │   ├── 179.csv
    │   ├── 24.csv
    │   ├── 3.csv
    │   ├── 31.csv
    │   ├── 38.csv
    │   ├── 44.csv
    │   ├── 720.csv
    │   ├── 737.csv
    │   ├── acs_income_1k.csv
    │   ├── adult_missing_values_missing_target_500rows.csv
    │   ├── boston_housing.csv
    │   ├── CrimeData
    │   │   ├── cities.json
    │   │   ├── crimedata.csv
    │   │   └── README.md
    │   ├── Drug
    │   │   ├── Drug_Consumption.csv
    │   │   └── README.md
    │   ├── housing_regression_missing_values_missing_target.csv
    │   ├── iris_classes_missing_values_missing_target.csv
    │   ├── iris_missing_values_missing_target.csv
    │   ├── LawSchool
    │   │   ├── bar_pass_prediction.csv
    │   │   └── README.md
    │   ├── PortugeseBankMarketing
    │   │   └── Data_FinalProject.csv
    │   └── Titanic
    │       ├── test_with_Survived.csv
    │       └── train.csv
    ├── README.md
    ├── tests_algorithms
    │   ├── __init__.py
    │   ├── test_baseline.py
    │   ├── test_catboost.py
    │   ├── test_decision_tree.py
    │   ├── test_extra_trees.py
    │   ├── test_factory.py
    │   ├── test_knn.py
    │   ├── test_lightgbm.py
    │   ├── test_linear.py
    │   ├── test_nn.py
    │   ├── test_random_forest.py
    │   ├── test_registry.py
    │   └── test_xgboost.py
    ├── tests_automl
    │   ├── __init__.py
    │   ├── test_adjust_validation.py
    │   ├── test_automl_init.py
    │   ├── test_automl_report.py
    │   ├── test_automl_sample_weight.py
    │   ├── test_automl_time_constraints.py
    │   ├── test_automl.py
    │   ├── test_data_types.py
    │   ├── test_dir_change.py
    │   ├── test_explain_levels.py
    │   ├── test_golden_features.py
    │   ├── test_handle_imbalance.py
    │   ├── test_integration.py
    │   ├── test_joblib_version.py
    │   ├── test_models_needed_for_predict.py
    │   ├── test_prediction_after_load.py
    │   ├── test_repeated_validation.py
    │   ├── test_restore.py
    │   ├── test_stack_models_constraints.py
    │   ├── test_targets.py
    │   └── test_update_errors_report.py
    ├── tests_callbacks
    │   ├── __init__.py
    │   └── test_total_time_constraint.py
    ├── tests_ensemble
    │   ├── __init__.py
    │   └── test_save_load.py
    ├── tests_fairness
    │   ├── __init__.py
    │   ├── test_binary_classification.py
    │   ├── test_multi_class_classification.py
    │   └── test_regression.py
    ├── tests_preprocessing
    │   ├── __init__.py
    │   ├── disable_eda.py
    │   ├── test_categorical_integers.py
    │   ├── test_datetime_transformer.py
    │   ├── test_encoding_selector.py
    │   ├── test_exclude_missing.py
    │   ├── test_goldenfeatures_transformer.py
    │   ├── test_label_binarizer.py
    │   ├── test_label_encoder.py
    │   ├── test_preprocessing_missing.py
    │   ├── test_preprocessing_utils.py
    │   ├── test_preprocessing.py
    │   ├── test_scale.py
    │   └── test_text_transformer.py
    ├── tests_tuner
    │   ├── __init__.py
    │   ├── test_hill_climbing.py
    │   ├── test_time_controller.py
    │   └── test_tuner.py
    ├── tests_utils
    │   ├── __init__.py
    │   ├── test_compute_additional_metrics.py
    │   ├── test_importance.py
    │   ├── test_learning_curves.py
    │   ├── test_metric.py
    │   ├── test_shap.py
    │   └── test_subsample.py
    └── tests_validation
        ├── __init__.py
        ├── test_validator_kfold.py
        └── test_validator_split.py
```

# Files

--------------------------------------------------------------------------------
/tests/data/720.csv:
--------------------------------------------------------------------------------

```
Diameter,Height,Length,Sex,Shell weight,Shucked weight,Viscera weight,Whole weight,target
0.365,0.095,0.455,0.0,0.15,0.2245,0.101,0.514,1
0.265,0.09,0.35,0.0,0.07,0.0995,0.0485,0.2255,0
0.42,0.135,0.53,1.0,0.21,0.2565,0.1415,0.677,0
0.365,0.125,0.44,0.0,0.155,0.2155,0.114,0.516,1
0.255,0.08,0.33,2.0,0.055,0.0895,0.0395,0.205,0
0.3,0.095,0.425,2.0,0.12,0.141,0.0775,0.3515,0
0.415,0.15,0.53,1.0,0.33,0.237,0.1415,0.7775,1
0.425,0.125,0.545,1.0,0.26,0.294,0.1495,0.768,1
0.37,0.125,0.475,0.0,0.165,0.2165,0.1125,0.5095,0
0.44,0.15,0.55,1.0,0.32,0.3145,0.151,0.8945,1
0.38,0.14,0.525,1.0,0.21,0.194,0.1475,0.6065,1
0.35,0.11,0.43,0.0,0.135,0.1675,0.081,0.406,1
0.38,0.135,0.49,0.0,0.19,0.2175,0.095,0.5415,1
0.405,0.145,0.535,1.0,0.205,0.2725,0.171,0.6845,1
0.355,0.1,0.47,1.0,0.185,0.1675,0.0805,0.4755,1
0.4,0.13,0.5,0.0,0.24,0.258,0.133,0.6645,1
0.28,0.085,0.355,2.0,0.115,0.095,0.0395,0.2905,0
0.34,0.1,0.44,1.0,0.13,0.188,0.087,0.451,1
0.295,0.08,0.365,0.0,0.1,0.097,0.043,0.2555,0
0.32,0.1,0.45,0.0,0.115,0.1705,0.075,0.381,0
0.28,0.095,0.355,0.0,0.075,0.0955,0.062,0.2455,1
0.275,0.1,0.38,2.0,0.085,0.08,0.049,0.2255,1
0.44,0.155,0.565,1.0,0.27,0.4275,0.214,0.9395,1
0.415,0.135,0.55,1.0,0.2,0.318,0.21,0.7635,0
0.48,0.165,0.615,1.0,0.305,0.513,0.301,1.1615,1
0.44,0.14,0.56,1.0,0.3,0.3825,0.188,0.9285,1
0.45,0.185,0.58,1.0,0.285,0.3945,0.272,0.9955,1
0.445,0.14,0.59,0.0,0.28,0.356,0.234,0.931,1
0.475,0.18,0.605,0.0,0.295,0.394,0.219,0.9365,1
0.425,0.14,0.575,0.0,0.2,0.393,0.227,0.8635,1
0.47,0.165,0.58,0.0,0.33,0.3935,0.242,0.9975,1
0.56,0.165,0.68,1.0,0.46,0.6055,0.2805,1.639,1
0.525,0.165,0.665,0.0,0.35,0.5515,0.3575,1.338,1
0.55,0.175,0.68,1.0,0.455,0.815,0.3925,1.798,1
0.55,0.2,0.705,1.0,0.49,0.633,0.4115,1.7095,1
0.355,0.105,0.465,0.0,0.125,0.227,0.124,0.4795,0
0.475,0.155,0.54,1.0,0.34,0.5305,0.3075,1.217,1
0.355,0.105,0.45,1.0,0.145,0.237,0.1165,0.5225,0
0.445,0.135,0.575,1.0,0.26,0.381,0.2035,0.883,1
0.29,0.09,0.355,0.0,0.09,0.134,0.086,0.3275,0
0.335,0.105,0.45,1.0,0.115,0.1865,0.091,0.425,0
0.425,0.135,0.55,1.0,0.27,0.362,0.196,0.8515,1
0.175,0.045,0.24,2.0,0.02,0.0315,0.0235,0.07,0
0.15,0.055,0.205,2.0,0.012,0.0255,0.015,0.042,0
0.15,0.05,0.21,2.0,0.015,0.0175,0.0125,0.042,0
0.295,0.095,0.39,2.0,0.075,0.0875,0.045,0.203,0
0.37,0.12,0.47,0.0,0.14,0.293,0.227,0.5795,0
0.375,0.12,0.46,1.0,0.15,0.1775,0.11,0.4605,0
0.245,0.07,0.325,2.0,0.045,0.0755,0.0255,0.161,0
0.425,0.16,0.525,1.0,0.245,0.3545,0.2135,0.8355,0
0.41,0.12,0.52,2.0,0.19,0.2385,0.111,0.595,0
0.32,0.095,0.4,0.0,0.1,0.1335,0.06,0.303,0
0.36,0.13,0.485,0.0,0.16,0.2595,0.096,0.5415,1
0.36,0.12,0.47,1.0,0.15,0.2105,0.1055,0.4775,1
0.31,0.1,0.405,0.0,0.11,0.173,0.0915,0.385,0
0.4,0.14,0.5,1.0,0.22,0.2565,0.1755,0.6615,0
0.35,0.12,0.445,0.0,0.135,0.192,0.0955,0.4425,0
0.385,0.135,0.47,0.0,0.17,0.2765,0.12,0.5895,0
0.19,0.06,0.245,2.0,0.025,0.042,0.014,0.086,0
0.4,0.125,0.505,1.0,0.175,0.246,0.13,0.583,0
0.345,0.105,0.45,0.0,0.135,0.18,0.1125,0.4115,0
0.405,0.11,0.505,0.0,0.175,0.305,0.16,0.625,0
0.41,0.13,0.53,1.0,0.2,0.302,0.1935,0.6965,1
0.325,0.095,0.425,0.0,0.1,0.1705,0.08,0.3785,0
0.4,0.12,0.52,0.0,0.185,0.234,0.1315,0.58,0
0.355,0.12,0.475,0.0,0.135,0.234,0.1015,0.48,0
0.44,0.16,0.565,1.0,0.32,0.354,0.1935,0.915,1
0.495,0.185,0.595,1.0,0.485,0.416,0.224,1.285,1
0.39,0.12,0.475,1.0,0.17,0.2135,0.1155,0.5305,1
0.235,0.07,0.31,2.0,0.045,0.063,0.0405,0.151,0
0.425,0.13,0.555,0.0,0.275,0.264,0.168,0.7665,1
0.32,0.11,0.4,1.0,0.1,0.1405,0.0985,0.353,0
0.475,0.17,0.595,1.0,0.425,0.48,0.225,1.247,1
0.48,0.175,0.57,0.0,0.38,0.474,0.261,1.185,1
0.45,0.195,0.605,1.0,0.315,0.481,0.2895,1.098,1
0.475,0.15,0.6,1.0,0.28,0.4425,0.221,1.0075,1
0.475,0.14,0.595,0.0,0.315,0.3625,0.189,0.944,0
0.47,0.15,0.6,1.0,0.305,0.363,0.194,0.922,1
0.425,0.14,0.555,1.0,0.285,0.282,0.1595,0.788,1
0.475,0.17,0.615,1.0,0.345,0.4695,0.2355,1.1025,1
0.445,0.14,0.575,1.0,0.285,0.3845,0.252,0.941,0
0.51,0.175,0.62,0.0,0.675,0.5105,0.192,1.615,1
0.425,0.165,0.52,1.0,0.32,0.396,0.225,0.9885,1
0.475,0.16,0.595,0.0,0.58,0.408,0.234,1.3175,1
0.45,0.14,0.58,0.0,0.36,0.38,0.216,1.013,1
0.465,0.18,0.57,1.0,0.44,0.339,0.2225,1.295,1
0.465,0.14,0.625,0.0,0.4,0.4825,0.205,1.195,1
0.44,0.16,0.56,0.0,0.26,0.3305,0.2075,0.8645,1
0.355,0.13,0.46,1.0,0.165,0.2205,0.114,0.517,0
0.45,0.16,0.575,1.0,0.33,0.3135,0.231,0.9775,1
0.425,0.135,0.565,0.0,0.255,0.341,0.1675,0.8115,1
0.44,0.15,0.555,0.0,0.26,0.307,0.1525,0.755,1
0.465,0.175,0.595,0.0,0.39,0.4015,0.254,1.115,1
0.495,0.165,0.625,1.0,0.39,0.507,0.318,1.262,1
0.56,0.19,0.695,0.0,0.485,0.588,0.3425,1.494,1
0.535,0.195,0.665,0.0,0.48,0.5755,0.388,1.606,1
0.435,0.15,0.535,0.0,0.25,0.269,0.1385,0.725,0
0.375,0.13,0.47,0.0,0.145,0.214,0.132,0.523,0
0.37,0.13,0.47,0.0,0.165,0.201,0.133,0.5225,0
0.375,0.125,0.475,1.0,0.155,0.2775,0.085,0.5785,1
0.265,0.095,0.36,2.0,0.075,0.105,0.046,0.2315,0
0.435,0.145,0.55,0.0,0.255,0.328,0.1915,0.843,1
0.435,0.16,0.53,0.0,0.335,0.316,0.164,0.883,1
0.415,0.14,0.53,0.0,0.205,0.3105,0.1675,0.724,1
0.47,0.16,0.605,0.0,0.345,0.4975,0.2405,1.1735,1
0.41,0.155,0.52,1.0,0.235,0.291,0.1835,0.727,1
0.43,0.165,0.545,1.0,0.28,0.2935,0.183,0.802,1
0.4,0.125,0.5,1.0,0.22,0.261,0.1315,0.6675,1
0.39,0.135,0.51,1.0,0.2,0.231,0.179,0.6335,0
0.395,0.105,0.435,1.0,0.13,0.136,0.098,0.3635,0
0.395,0.125,0.495,0.0,0.155,0.2375,0.1345,0.5415,0
0.36,0.105,0.465,0.0,0.175,0.172,0.107,0.431,0
0.32,0.08,0.435,2.0,0.105,0.1485,0.0635,0.3325,0
0.35,0.105,0.425,0.0,0.165,0.13,0.063,0.393,0
0.41,0.125,0.545,1.0,0.21,0.2975,0.146,0.6935,1
0.415,0.115,0.53,1.0,0.18,0.233,0.1585,0.5915,1
0.375,0.135,0.49,1.0,0.22,0.2555,0.102,0.6125,1
0.34,0.105,0.44,0.0,0.165,0.1305,0.0955,0.402,1
0.43,0.15,0.56,1.0,0.31,0.3465,0.172,0.8825,0
0.305,0.085,0.405,0.0,0.085,0.1145,0.0595,0.2605,0
0.365,0.105,0.47,1.0,0.14,0.163,0.1035,0.4205,0
0.295,0.085,0.385,2.0,0.085,0.103,0.0575,0.2535,0
0.425,0.14,0.515,1.0,0.255,0.304,0.1725,0.766,1
0.265,0.075,0.37,0.0,0.07,0.09,0.051,0.214,0
0.28,0.08,0.36,2.0,0.07,0.081,0.0505,0.1755,0
0.195,0.06,0.27,2.0,0.03,0.0285,0.0235,0.073,0
0.275,0.09,0.375,2.0,0.07,0.1075,0.0545,0.238,0
0.29,0.085,0.385,2.0,0.08,0.112,0.061,0.2505,0
0.535,0.16,0.7,0.0,0.54,0.63,0.2635,1.7255,1
0.54,0.165,0.71,0.0,0.78,0.7665,0.261,1.959,1
0.48,0.165,0.595,0.0,0.41,0.4835,0.283,1.262,1
0.35,0.125,0.44,1.0,0.129,0.175,0.063,0.4035,0
0.26,0.09,0.325,1.0,0.062,0.085,0.036,0.1915,0
0.26,0.095,0.35,2.0,0.068,0.086,0.056,0.211,0
0.2,0.065,0.265,2.0,0.028,0.04,0.0205,0.0975,0
0.33,0.115,0.425,1.0,0.1355,0.1635,0.081,0.406,0
0.23,0.08,0.305,1.0,0.048,0.0675,0.0345,0.156,0
0.255,0.09,0.345,0.0,0.063,0.094,0.0295,0.2005,0
0.325,0.11,0.405,1.0,0.117,0.151,0.063,0.3555,0
0.285,0.095,0.375,0.0,0.0925,0.096,0.0575,0.253,0
0.445,0.155,0.565,1.0,0.2475,0.341,0.2055,0.826,1
0.45,0.145,0.55,1.0,0.2665,0.295,0.1435,0.741,1
0.52,0.19,0.65,0.0,0.4465,0.519,0.306,1.3445,1
0.455,0.155,0.56,0.0,0.2425,0.34,0.19,0.797,1
0.375,0.13,0.475,0.0,0.17,0.2075,0.1165,0.5175,1
0.38,0.125,0.49,1.0,0.174,0.245,0.1075,0.549,1
0.35,0.12,0.46,0.0,0.1565,0.224,0.108,0.515,1
0.205,0.08,0.28,2.0,0.042,0.052,0.039,0.127,0
0.13,0.055,0.175,2.0,0.0125,0.0105,0.0065,0.0315,0
0.13,0.095,0.17,2.0,0.01,0.013,0.008,0.03,0
0.475,0.145,0.59,0.0,0.325,0.4415,0.262,1.053,1
0.5,0.185,0.605,1.0,0.335,0.469,0.2585,1.1185,0
0.515,0.19,0.635,1.0,0.45,0.5065,0.305,1.3715,1
0.485,0.16,0.605,1.0,0.355,0.37,0.2355,1.0565,1
0.45,0.135,0.565,1.0,0.31,0.387,0.1495,0.9885,1
0.405,0.13,0.515,0.0,0.21,0.32,0.131,0.722,1
0.46,0.19,0.575,1.0,0.34,0.392,0.2425,0.994,1
0.485,0.215,0.645,0.0,0.635,0.546,0.2615,1.514,1
0.455,0.17,0.58,1.0,0.285,0.374,0.2135,0.9075,1
0.46,0.165,0.575,1.0,0.44,0.2985,0.1785,1.124,1
0.465,0.165,0.605,0.0,0.34,0.4215,0.2475,1.056,1
0.485,0.16,0.605,1.0,0.28,0.53,0.2575,1.222,1
0.485,0.175,0.61,0.0,0.345,0.544,0.297,1.2445,1
0.56,0.21,0.725,1.0,1.005,0.65,0.398,2.141,1
0.545,0.23,0.65,1.0,0.815,0.5605,0.2895,1.752,1
0.57,0.19,0.725,0.0,0.725,1.0705,0.483,2.55,1
0.575,0.175,0.725,1.0,0.85,0.765,0.4515,2.124,1
0.57,0.205,0.68,1.0,0.65,0.625,0.408,1.842,1
0.56,0.22,0.705,0.0,0.76,0.8175,0.3085,1.981,1
0.515,0.175,0.68,1.0,0.62,0.5125,0.409,1.6185,1
0.55,0.215,0.695,0.0,0.59,0.7125,0.541,1.9565,1
0.395,0.145,0.53,1.0,0.255,0.308,0.169,0.775,0
0.435,0.155,0.525,0.0,0.285,0.486,0.233,1.065,0
0.405,0.115,0.52,1.0,0.22,0.32,0.1845,0.776,0
0.16,0.04,0.235,2.0,0.015,0.0185,0.018,0.048,0
0.26,0.09,0.36,2.0,0.075,0.0645,0.037,0.1785,0
0.21,0.06,0.315,2.0,0.035,0.06,0.0375,0.125,0
0.245,0.085,0.315,2.0,0.05,0.053,0.0475,0.1435,0
0.16,0.045,0.225,2.0,0.015,0.025,0.015,0.0465,0
0.475,0.15,0.58,0.0,0.35,0.385,0.2165,0.97,1
0.48,0.18,0.57,0.0,0.295,0.399,0.2,0.9395,1
0.51,0.175,0.64,0.0,0.57,0.515,0.266,1.368,1
0.45,0.16,0.56,1.0,0.3,0.429,0.268,1.0235,1
0.475,0.175,0.62,1.0,0.325,0.4355,0.214,1.0165,1
0.51,0.2,0.645,1.0,0.46,0.621,0.367,1.5675,1
0.49,0.19,0.62,0.0,0.355,0.5455,0.2965,1.218,1
0.48,0.15,0.63,1.0,0.285,0.392,0.336,1.0525,1
0.5,0.185,0.63,1.0,0.38,0.54,0.3315,1.383,1
0.48,0.16,0.63,1.0,0.315,0.5265,0.335,1.199,1
0.46,0.17,0.585,1.0,0.29,0.365,0.271,0.9325,0
0.48,0.18,0.615,0.0,0.325,0.4845,0.2165,1.1595,1
0.485,0.17,0.61,0.0,0.36,0.419,0.2405,1.0225,1
0.45,0.15,0.58,0.0,0.36,0.276,0.1815,0.927,1
0.275,0.085,0.355,2.0,0.15,0.092,0.06,0.22,0
0.4,0.14,0.51,1.0,0.195,0.459,0.1965,0.8145,1
0.405,0.155,0.5,0.0,0.245,0.346,0.1535,0.772,1
0.41,0.15,0.505,1.0,0.21,0.285,0.145,0.644,1
0.5,0.185,0.64,0.0,0.465,0.4445,0.2635,1.3035,1
0.45,0.16,0.56,0.0,0.26,0.432,0.178,0.922,1
0.46,0.185,0.585,0.0,0.285,0.3635,0.213,0.922,1
0.345,0.12,0.45,1.0,0.135,0.1655,0.095,0.4165,0
0.4,0.165,0.5,0.0,0.285,0.254,0.205,0.825,1
0.4,0.145,0.5,1.0,0.23,0.234,0.1465,0.63,1
0.435,0.17,0.53,1.0,0.275,0.2985,0.155,0.8155,1
0.335,0.115,0.42,0.0,0.12,0.171,0.071,0.369,0
0.34,0.14,0.44,1.0,0.16,0.186,0.1085,0.482,0
0.3,0.11,0.4,2.0,0.12,0.109,0.067,0.315,0
0.34,0.11,0.435,2.0,0.12,0.1495,0.085,0.3795,0
0.415,0.17,0.525,1.0,0.31,0.2755,0.1685,0.8325,1
0.28,0.095,0.37,2.0,0.08,0.122,0.052,0.2655,0
0.365,0.145,0.49,1.0,0.22,0.1995,0.1625,0.6345,1
0.25,0.09,0.335,0.0,0.06,0.0755,0.0415,0.181,0
0.325,0.105,0.415,1.0,0.12,0.1595,0.0785,0.38,1
0.405,0.14,0.5,0.0,0.205,0.241,0.1355,0.6155,0
0.395,0.16,0.485,1.0,0.235,0.2475,0.128,0.66,1
0.405,0.14,0.55,0.0,0.255,0.244,0.1635,0.8025,1
0.35,0.13,0.45,0.0,0.135,0.174,0.111,0.46,0
0.3,0.12,0.405,2.0,0.11,0.1265,0.07,0.324,0
0.36,0.135,0.47,0.0,0.165,0.1665,0.115,0.501,1
0.305,0.13,0.415,1.0,0.105,0.1305,0.0755,0.32,0
0.325,0.125,0.445,1.0,0.14,0.1785,0.1125,0.455,0
0.35,0.145,0.47,1.0,0.18,0.187,0.1235,0.5175,1
0.375,0.15,0.49,1.0,0.19,0.22,0.144,0.5755,0
0.355,0.15,0.445,1.0,0.155,0.181,0.125,0.485,1
0.38,0.105,0.425,2.0,0.1,0.1285,0.0785,0.3265,1
0.37,0.135,0.5,1.0,0.155,0.1715,0.1055,0.45,0
0.29,0.125,0.39,1.0,0.09,0.121,0.082,0.3055,0
0.27,0.085,0.365,2.0,0.07,0.078,0.0485,0.205,0
0.465,0.165,0.58,1.0,0.35,0.404,0.2095,1.1015,1
0.415,0.16,0.53,1.0,0.245,0.2935,0.158,0.783,1
0.445,0.135,0.555,0.0,0.275,0.336,0.1625,0.836,1
0.44,0.175,0.565,0.0,0.325,0.31,0.193,0.9025,1
0.505,0.215,0.625,0.0,0.435,0.496,0.287,1.4455,1
0.215,0.075,0.275,2.0,0.035,0.0485,0.029,0.1155,0
0.35,0.135,0.44,2.0,0.125,0.1815,0.083,0.435,1
0.225,0.08,0.295,2.0,0.04,0.0485,0.032,0.124,0
0.055,0.01,0.075,2.0,0.0015,0.001,0.0005,0.002,0
0.1,0.03,0.13,2.0,0.004,0.0045,0.003,0.013,0
0.09,0.03,0.11,2.0,0.003,0.0025,0.002,0.008,0
0.12,0.035,0.16,2.0,0.005,0.0075,0.0045,0.021,0
0.425,0.16,0.565,0.0,0.275,0.3495,0.2185,0.9425,1
0.2,0.07,0.27,2.0,0.035,0.034,0.0245,0.1,0
0.175,0.065,0.23,2.0,0.02,0.026,0.0105,0.0645,0
0.23,0.08,0.3,2.0,0.04,0.0435,0.0265,0.1275,0
0.255,0.085,0.33,2.0,0.06,0.063,0.039,0.1655,0
0.26,0.085,0.35,2.0,0.06,0.0705,0.0345,0.174,1
0.245,0.08,0.32,2.0,0.05,0.0635,0.0325,0.1585,1
0.275,0.085,0.36,2.0,0.07,0.0745,0.0415,0.1975,0
0.245,0.075,0.305,2.0,0.045,0.0675,0.038,0.156,0
0.27,0.11,0.345,2.0,0.07,0.082,0.0545,0.2135,0
0.25,0.105,0.33,2.0,0.06,0.0655,0.035,0.1715,0
0.47,0.18,0.59,0.0,0.36,0.4205,0.2805,1.1235,1
0.455,0.155,0.595,1.0,0.3,0.5135,0.2165,1.0605,1
0.46,0.185,0.575,1.0,0.345,0.4485,0.217,1.094,1
0.495,0.165,0.6,0.0,0.34,0.485,0.2775,1.2415,1
0.45,0.175,0.56,0.0,0.37,0.3835,0.2065,1.011,1
0.45,0.185,0.56,0.0,0.41,0.3805,0.175,1.07,1
0.46,0.16,0.545,0.0,0.345,0.341,0.1655,0.8975,1
0.505,0.17,0.635,1.0,0.365,0.605,0.297,1.415,1
0.475,0.16,0.59,1.0,0.295,0.4775,0.2555,1.1015,1
0.475,0.155,0.54,1.0,0.26,0.394,0.194,0.928,1
0.44,0.125,0.57,1.0,0.27,0.3675,0.1725,0.865,1
0.42,0.165,0.53,0.0,0.245,0.319,0.239,0.8945,1
0.195,0.06,0.245,2.0,0.026,0.0445,0.0245,0.095,0
0.2,0.08,0.27,0.0,0.04,0.0465,0.028,0.1205,0
0.38,0.13,0.46,1.0,0.16,0.3,0.1525,0.639,1
0.45,0.15,0.52,0.0,0.235,0.3615,0.186,0.895,1
0.275,0.11,0.35,0.0,0.0905,0.1225,0.0635,0.2925,0
0.39,0.15,0.47,0.0,0.255,0.2185,0.0885,0.6355,0
0.36,0.125,0.45,1.0,0.17,0.2035,0.1,0.4995,1
0.525,0.215,0.64,1.0,0.55,0.4535,0.2855,1.779,1
0.5,0.2,0.59,0.0,0.37,0.412,0.2705,1.187,1
0.485,0.205,0.62,0.0,0.385,0.3875,0.2505,1.219,1
0.505,0.225,0.63,0.0,0.45,0.56,0.3335,1.525,1
0.515,0.155,0.63,0.0,0.41,0.4105,0.197,1.259,1
0.54,0.215,0.655,0.0,0.585,0.7425,0.327,1.844,1
0.53,0.185,0.66,1.0,0.49,0.493,0.245,1.3485,1
0.5,0.24,0.61,0.0,0.69,0.532,0.3345,1.642,1
0.525,0.205,0.635,0.0,0.43,0.55,0.3115,1.484,1
0.425,0.135,0.515,1.0,0.25,0.2665,0.1605,0.712,1
0.415,0.185,0.535,1.0,0.3,0.314,0.1585,0.8415,1
0.285,0.105,0.36,2.0,0.075,0.0915,0.057,0.2415,0
0.355,0.12,0.455,1.0,0.15,0.177,0.104,0.4495,0
0.395,0.14,0.485,0.0,0.225,0.2285,0.127,0.6295,1
0.38,0.175,0.515,0.0,0.31,0.325,0.158,0.9565,1
0.415,0.17,0.535,1.0,0.285,0.295,0.1965,0.879,1
0.435,0.155,0.53,0.0,0.205,0.288,0.1595,0.699,1
0.4,0.155,0.495,1.0,0.205,0.242,0.1325,0.6445,1
0.355,0.125,0.44,0.0,0.19,0.132,0.0815,0.4775,0
0.435,0.16,0.535,1.0,0.24,0.3155,0.1795,0.8105,1
0.435,0.18,0.54,0.0,0.325,0.3835,0.226,0.996,1
0.505,0.21,0.565,1.0,0.355,0.501,0.279,1.2765,1
0.475,0.165,0.61,0.0,0.315,0.428,0.2205,1.116,1
0.455,0.175,0.565,1.0,0.35,0.342,0.207,1.013,1
0.495,0.195,0.6,0.0,0.375,0.384,0.19,1.0575,1
0.215,0.085,0.295,2.0,0.04,0.049,0.034,0.128,0
0.205,0.075,0.275,2.0,0.035,0.045,0.0285,0.1105,0
0.21,0.085,0.28,2.0,0.03,0.039,0.0295,0.1065,0
0.395,0.14,0.49,0.0,0.15,0.2215,0.1275,0.549,1
0.28,0.105,0.37,0.0,0.075,0.0905,0.0585,0.234,0
0.305,0.095,0.405,1.0,0.1,0.1455,0.0895,0.3485,0
0.435,0.175,0.54,1.0,0.335,0.322,0.174,0.892,1
0.28,0.1,0.37,0.0,0.074,0.1065,0.0595,0.252,0
0.27,0.1,0.36,0.0,0.0715,0.0885,0.0495,0.217,0
0.36,0.13,0.47,1.0,0.15,0.182,0.114,0.472,1
0.145,0.06,0.2,2.0,0.011,0.0125,0.0095,0.037,0
0.12,0.03,0.165,2.0,0.005,0.007,0.005,0.0215,0
0.515,0.24,0.645,0.0,0.535,0.471,0.369,1.5415,1
0.41,0.125,0.55,0.0,0.195,0.2505,0.1635,0.7605,1
0.435,0.145,0.57,0.0,0.275,0.3925,0.2355,0.9055,1
0.485,0.19,0.63,1.0,0.39,0.4635,0.3055,1.2435,1
0.44,0.14,0.56,0.0,0.265,0.443,0.2045,0.971,1
0.455,0.195,0.595,0.0,0.345,0.4595,0.3235,1.3305,1
0.47,0.2,0.62,1.0,0.435,0.381,0.27,1.2255,1
0.485,0.175,0.63,0.0,0.46,0.4335,0.2945,1.3,1
0.355,0.11,0.45,2.0,0.14,0.194,0.067,0.4585,0
0.535,0.19,0.635,1.0,0.39,0.576,0.2475,1.242,1
0.35,0.1,0.45,0.0,0.12,0.1465,0.1015,0.3675,1
0.455,0.155,0.58,1.0,0.32,0.315,0.1385,0.8365,1
0.255,0.095,0.33,2.0,0.06,0.066,0.0255,0.172,0
0.21,0.06,0.265,2.0,0.03,0.0425,0.022,0.0965,0
0.145,0.04,0.19,2.0,0.015,0.0165,0.0065,0.038,0
0.31,0.1,0.385,0.0,0.1,0.1065,0.075,0.2845,1
0.205,0.07,0.265,2.0,0.035,0.039,0.041,0.1055,0
0.265,0.105,0.335,0.0,0.075,0.0935,0.056,0.222,0
0.275,0.09,0.355,2.0,0.08,0.097,0.053,0.251,0
0.255,0.1,0.32,2.0,0.065,0.073,0.0415,0.1755,0
0.4,0.13,0.51,0.0,0.205,0.27,0.1665,0.6435,1
0.295,0.105,0.36,0.0,0.095,0.0865,0.053,0.241,0
0.28,0.09,0.36,2.0,0.09,0.0885,0.04,0.2255,0
0.38,0.155,0.5,0.0,0.2,0.2135,0.161,0.5955,1
0.325,0.12,0.4,1.0,0.095,0.134,0.0565,0.3185,0
0.22,0.08,0.3,2.0,0.035,0.0475,0.042,0.121,0
0.175,0.04,0.235,2.0,0.02,0.0335,0.015,0.0705,0
0.6,0.195,0.74,1.0,0.71,0.598,0.4085,1.974,1
0.465,0.19,0.62,0.0,0.355,0.5705,0.3175,1.3415,1
0.475,0.19,0.6,0.0,0.325,0.403,0.2655,1.0875,1
0.45,0.185,0.59,0.0,0.425,0.473,0.276,1.283,1
0.475,0.185,0.62,0.0,0.33,0.6045,0.325,1.325,1
0.45,0.195,0.565,1.0,0.285,0.406,0.2505,1.0035,1
0.455,0.145,0.575,0.0,0.3,0.581,0.2275,1.165,1
0.51,0.205,0.62,1.0,0.48,0.4775,0.2565,1.3475,1
0.465,0.185,0.62,0.0,0.32,0.579,0.3065,1.274,1
0.375,0.18,0.505,1.0,0.17,0.2325,0.1495,0.568,1
0.425,0.155,0.46,1.0,0.24,0.3005,0.152,0.746,0
0.39,0.14,0.49,0.0,0.18,0.2795,0.2185,0.707,1
0.42,0.16,0.525,1.0,0.275,0.2745,0.173,0.756,0
0.26,0.08,0.34,2.0,0.055,0.08,0.0555,0.2,0
0.305,0.115,0.375,2.0,0.09,0.092,0.074,0.2715,0
0.48,0.15,0.61,0.0,0.28,0.56,0.2455,1.2,1
0.495,0.185,0.61,1.0,0.245,0.536,0.2905,1.153,0
0.45,0.17,0.585,1.0,0.27,0.3325,0.1635,0.8685,1
0.46,0.14,0.57,0.0,0.245,0.4465,0.2065,0.9535,1
0.455,0.17,0.58,0.0,0.22,0.408,0.259,0.93,0
0.515,0.17,0.635,0.0,0.34,0.509,0.286,1.275,1
0.58,0.205,0.7,0.0,0.58,0.7415,0.49,2.13,1
0.525,0.185,0.675,0.0,0.395,0.6935,0.336,1.587,1
0.525,0.19,0.645,1.0,0.395,0.7035,0.3885,1.8085,1
0.585,0.215,0.745,0.0,0.7,0.9265,0.472,2.499,1
0.545,0.18,0.685,1.0,0.485,0.7495,0.392,1.768,1
0.49,0.18,0.605,0.0,0.35,0.48,0.287,1.227,1
0.465,0.15,0.59,1.0,0.34,0.392,0.246,0.997,1
0.525,0.175,0.65,1.0,0.445,0.61,0.2995,1.4225,1
0.48,0.15,0.6,1.0,0.295,0.4085,0.2705,1.029,1
0.5,0.175,0.62,1.0,0.35,0.4985,0.3015,1.186,1
0.515,0.16,0.63,0.0,0.355,0.4215,0.244,1.016,1
0.465,0.145,0.58,0.0,0.265,0.4405,0.1655,0.887,1
0.455,0.12,0.58,1.0,0.265,0.479,0.2735,1.0735,1
0.49,0.18,0.63,0.0,0.315,0.458,0.2765,1.13,1
0.56,0.215,0.69,1.0,0.47,0.68,0.299,1.719,1
0.545,0.165,0.65,1.0,0.415,0.6645,0.3455,1.566,1
0.565,0.195,0.66,1.0,0.5,0.692,0.3265,1.7605,1
0.58,0.2,0.68,1.0,0.6,0.585,0.453,1.787,1
0.575,0.17,0.7,1.0,0.42,0.5095,0.314,1.31,1
0.52,0.15,0.685,0.0,0.4,0.4635,0.292,1.343,1
0.545,0.195,0.675,1.0,0.605,0.6845,0.3695,1.7345,1
0.49,0.19,0.63,0.0,0.285,0.4935,0.3365,1.1775,1
0.45,0.16,0.585,1.0,0.25,0.4995,0.2875,1.077,1
0.465,0.175,0.565,0.0,0.37,0.3895,0.183,0.995,1
0.495,0.185,0.61,1.0,0.33,0.3705,0.3135,1.1085,1
0.47,0.18,0.605,0.0,0.385,0.3755,0.2805,1.1405,1
0.42,0.145,0.535,0.0,0.25,0.33,0.189,0.791,1
0.4,0.135,0.485,0.0,0.2,0.313,0.137,0.663,1
0.375,0.12,0.47,0.0,0.195,0.226,0.122,0.5565,1
0.425,0.135,0.545,0.0,0.235,0.373,0.21,0.8445,1
0.37,0.105,0.455,1.0,0.135,0.216,0.1245,0.4925,0
0.42,0.155,0.54,0.0,0.215,0.3515,0.152,0.7385,1
0.38,0.135,0.46,0.0,0.145,0.207,0.1225,0.482,1
0.42,0.125,0.49,0.0,0.22,0.239,0.1435,0.609,1
0.375,0.12,0.465,2.0,0.14,0.222,0.119,0.471,0
0.325,0.1,0.415,2.0,0.105,0.1535,0.0595,0.3215,1
0.375,0.125,0.475,0.0,0.18,0.277,0.115,0.593,1
0.375,0.125,0.47,1.0,0.18,0.252,0.137,0.5615,1
0.295,0.095,0.365,2.0,0.08,0.1075,0.0545,0.25,0
0.275,0.095,0.345,2.0,0.07,0.0755,0.0535,0.1995,0
0.31,0.1,0.39,2.0,0.115,0.116,0.064,0.302,1
0.395,0.14,0.5,1.0,0.24,0.3165,0.176,0.7155,1
0.38,0.145,0.47,0.0,0.185,0.2385,0.144,0.5865,0
0.44,0.15,0.535,0.0,0.26,0.256,0.139,0.6765,1
0.455,0.15,0.585,0.0,0.31,0.4355,0.2075,0.987,1
0.365,0.12,0.485,1.0,0.175,0.27,0.131,0.5885,0
0.455,0.135,0.515,0.0,0.235,0.295,0.1625,0.7225,0
0.325,0.11,0.435,1.0,0.155,0.178,0.0985,0.4335,0
0.415,0.14,0.515,1.0,0.2,0.3115,0.152,0.6935,1
0.345,0.12,0.44,2.0,0.11,0.1655,0.083,0.365,0
0.44,0.15,0.525,1.0,0.24,0.3685,0.1985,0.8425,1
0.355,0.115,0.45,0.0,0.15,0.2125,0.1045,0.479,0
0.485,0.12,0.59,0.0,0.29,0.39,0.182,0.911,1
0.45,0.145,0.555,0.0,0.285,0.4,0.246,0.915,1
0.44,0.095,0.57,0.0,0.235,0.3395,0.2215,0.827,0
0.5,0.165,0.59,0.0,0.34,0.4565,0.2425,1.1045,1
0.475,0.12,0.585,0.0,0.28,0.41,0.2115,0.945,1
0.46,0.12,0.58,1.0,0.28,0.4625,0.2385,0.9935,1
0.44,0.12,0.545,0.0,0.24,0.3475,0.1715,0.8565,1
0.495,0.17,0.605,1.0,0.39,0.528,0.2465,1.2385,1
0.47,0.14,0.62,1.0,0.36,0.3605,0.224,1.0325,1
0.5,0.17,0.63,1.0,0.4,0.5595,0.267,1.3135,1
0.515,0.165,0.63,0.0,0.45,0.488,0.349,1.352,1
0.5,0.155,0.63,1.0,0.36,0.367,0.199,1.005,1
0.41,0.14,0.545,0.0,0.235,0.223,0.16,0.625,1
0.54,0.165,0.67,1.0,0.505,0.518,0.358,1.5015,1
0.38,0.12,0.49,2.0,0.155,0.2165,0.139,0.529,1
0.39,0.135,0.49,1.0,0.2,0.2465,0.123,0.5785,1
0.225,0.07,0.29,2.0,0.035,0.036,0.0235,0.101,0
0.2,0.07,0.26,2.0,0.03,0.037,0.02,0.092,0
0.45,0.175,0.58,0.0,0.32,0.425,0.203,1.068,1
0.485,0.165,0.61,1.0,0.33,0.3935,0.2435,1.0915,1
0.5,0.16,0.6,0.0,0.33,0.3995,0.1735,1.015,1
0.455,0.125,0.56,1.0,0.375,0.344,0.129,0.943,1
0.45,0.17,0.575,1.0,0.385,0.3775,0.1705,1.0475,1
0.45,0.175,0.57,1.0,0.295,0.38,0.1665,0.9555,1
0.47,0.155,0.6,0.0,0.325,0.4375,0.196,1.036,1
0.455,0.17,0.565,0.0,0.32,0.342,0.156,0.9065,1
0.42,0.14,0.545,0.0,0.255,0.2475,0.13,0.7505,1
0.345,0.1,0.44,2.0,0.12,0.122,0.0905,0.366,1
0.41,0.15,0.5,0.0,0.22,0.2815,0.137,0.662,1
0.275,0.095,0.36,2.0,0.09,0.084,0.0435,0.217,0
0.305,0.095,0.385,2.0,0.09,0.0915,0.055,0.252,1
0.3,0.09,0.39,0.0,0.085,0.143,0.0645,0.3055,0
0.415,0.165,0.5,0.0,0.25,0.249,0.138,0.6885,1
0.275,0.11,0.36,2.0,0.085,0.095,0.0525,0.2335,1
0.26,0.1,0.335,2.0,0.07,0.0785,0.0585,0.192,0
0.425,0.14,0.505,1.0,0.285,0.275,0.1625,0.85,1
0.295,0.1,0.395,2.0,0.085,0.134,0.0325,0.2715,1
0.325,0.105,0.41,1.0,0.12,0.159,0.077,0.3635,1
0.455,0.19,0.56,1.0,0.275,0.283,0.129,0.714,0
0.435,0.185,0.565,0.0,0.39,0.329,0.136,0.9815,1
0.455,0.185,0.565,0.0,0.375,0.354,0.1575,0.9265,1
0.5,0.175,0.605,0.0,0.375,0.4765,0.232,1.098,1
0.455,0.15,0.565,1.0,0.26,0.365,0.159,0.8205,1
0.565,0.215,0.725,0.0,0.58,0.6975,0.4725,1.891,1
0.535,0.16,0.675,1.0,0.42,0.592,0.3175,1.41,1
0.555,0.195,0.665,1.0,0.36,0.581,0.354,1.4385,1
0.49,0.155,0.565,1.0,0.255,0.405,0.2195,0.9245,1
0.55,0.175,0.645,1.0,0.33,0.57,0.3045,1.2915,1
0.47,0.14,0.575,0.0,0.24,0.3485,0.1735,0.8375,1
0.54,0.175,0.64,1.0,0.39,0.51,0.259,1.221,1
0.28,0.105,0.36,2.0,0.08,0.0695,0.045,0.199,0
0.31,0.11,0.415,2.0,0.0995,0.123,0.057,0.2965,1
0.41,0.135,0.525,1.0,0.235,0.293,0.1525,0.7085,1
0.285,0.1,0.38,0.0,0.075,0.115,0.061,0.2665,1
0.465,0.17,0.585,1.0,0.265,0.3865,0.224,0.9915,1
0.185,0.07,0.24,2.0,0.025,0.026,0.018,0.0715,0
0.165,0.055,0.22,2.0,0.02,0.0215,0.012,0.0545,0
0.195,0.07,0.255,2.0,0.025,0.0255,0.02,0.0735,0
0.125,0.05,0.175,2.0,0.008,0.008,0.0035,0.0235,0
0.55,0.19,0.67,1.0,0.4,0.5425,0.3035,1.3905,1
0.53,0.195,0.655,0.0,0.41,0.567,0.2735,1.388,1
0.55,0.21,0.68,1.0,0.625,0.5975,0.305,1.7445,1
0.555,0.2,0.675,0.0,0.465,0.545,0.2665,1.4385,1
0.44,0.135,0.53,1.0,0.2185,0.313,0.1715,0.7835,0
0.405,0.12,0.515,1.0,0.177,0.2895,0.1405,0.646,1
0.34,0.12,0.43,2.0,0.1045,0.151,0.0645,0.3575,0
0.405,0.12,0.52,1.0,0.181,0.2645,0.1415,0.627,1
0.415,0.16,0.545,1.0,0.2765,0.272,0.1455,0.7715,1
0.415,0.175,0.53,0.0,0.2645,0.261,0.1395,0.7395,1
0.35,0.115,0.465,1.0,0.1345,0.1565,0.091,0.421,0
0.54,0.175,0.665,0.0,0.415,0.4955,0.254,1.347,1
0.59,0.225,0.735,0.0,0.58,0.637,0.3405,1.756,1
0.545,0.185,0.66,0.0,0.455,0.5305,0.2635,1.32,1
0.585,0.185,0.7,1.0,0.475,0.7055,0.3215,1.8075,1
0.4,0.155,0.575,0.0,0.3,0.3605,0.2445,0.9325,1
0.465,0.125,0.57,0.0,0.24,0.3785,0.1765,0.849,1
0.46,0.15,0.58,1.0,0.26,0.429,0.212,0.9955,1
0.48,0.145,0.63,0.0,0.305,0.4235,0.237,1.0115,1
0.465,0.14,0.585,1.0,0.315,0.381,0.1615,0.908,1
0.45,0.13,0.55,0.0,0.29,0.378,0.2385,0.92,1
0.515,0.15,0.625,1.0,0.36,0.5235,0.3065,1.2415,1
0.42,0.135,0.54,0.0,0.235,0.3485,0.1795,0.8075,1
0.455,0.165,0.57,1.0,0.285,0.44,0.2195,1.0595,1
0.455,0.145,0.59,0.0,0.285,0.475,0.19,1.073,1
0.46,0.13,0.58,0.0,0.29,0.357,0.181,0.921,1
0.51,0.155,0.655,1.0,0.41,0.5345,0.2855,1.2895,1
0.53,0.175,0.655,0.0,0.415,0.486,0.2635,1.2635,1
0.5,0.195,0.625,0.0,0.37,0.5875,0.2185,1.369,1
0.5,0.15,0.625,1.0,0.305,0.3445,0.2235,0.953,1
0.52,0.175,0.64,1.0,0.48,0.4245,0.2595,1.248,1
0.485,0.165,0.605,1.0,0.3,0.435,0.209,1.0105,1
0.525,0.155,0.615,1.0,0.345,0.427,0.2315,1.0385,1
0.45,0.175,0.555,0.0,0.305,0.3275,0.202,0.874,1
0.44,0.18,0.58,1.0,0.245,0.3665,0.1635,0.854,1
0.52,0.225,0.62,1.0,0.395,0.378,0.27,1.1835,1
0.47,0.225,0.62,1.0,0.36,0.378,0.2145,1.115,1
0.505,0.19,0.6,1.0,0.36,0.4385,0.256,1.129,1
0.485,0.19,0.625,1.0,0.42,0.4385,0.2305,1.1745,1
0.47,0.175,0.6,0.0,0.315,0.4865,0.247,1.105,1
0.46,0.235,0.56,0.0,0.305,0.3325,0.157,0.8395,1
0.455,0.225,0.585,0.0,0.365,0.3815,0.221,1.055,1
0.435,0.18,0.56,0.0,0.25,0.36,0.204,0.889,1
0.445,0.155,0.56,2.0,0.275,0.3005,0.209,0.8735,1
0.53,0.185,0.68,2.0,0.34,0.439,0.245,1.1095,1
0.35,0.14,0.455,1.0,0.135,0.221,0.1265,0.5185,1
0.38,0.145,0.49,1.0,0.21,0.249,0.181,0.6725,1
0.22,0.085,0.31,0.0,0.045,0.061,0.0365,0.146,0
0.195,0.07,0.275,1.0,0.025,0.031,0.0215,0.08,0
0.195,0.08,0.27,0.0,0.03,0.0385,0.0195,0.1,0
0.29,0.115,0.4,0.0,0.075,0.1115,0.0575,0.2795,0
0.2,0.08,0.28,0.0,0.03,0.033,0.0215,0.0915,0
0.23,0.09,0.325,0.0,0.045,0.06,0.034,0.147,0
0.25,0.09,0.345,1.0,0.055,0.078,0.059,0.203,0
0.15,0.05,0.21,0.0,0.01,0.0155,0.0085,0.0385,0
0.27,0.09,0.36,1.0,0.055,0.0845,0.0385,0.1885,0
0.26,0.115,0.365,2.0,0.07,0.0935,0.0445,0.218,0
0.14,0.055,0.2,0.0,0.01,0.0145,0.008,0.035,0
0.16,0.06,0.235,0.0,0.015,0.0265,0.0095,0.0545,0
0.125,0.04,0.175,0.0,0.005,0.0095,0.006,0.024,0
0.11,0.04,0.155,0.0,0.005,0.0065,0.003,0.0155,0
0.445,0.155,0.57,1.0,0.235,0.282,0.159,0.733,1
0.45,0.16,0.57,1.0,0.26,0.3965,0.255,0.9715,1
0.3,0.095,0.385,0.0,0.085,0.0885,0.059,0.24,0
0.42,0.185,0.53,2.0,0.205,0.299,0.156,0.752,1
0.355,0.13,0.46,1.0,0.13,0.192,0.1055,0.458,1
0.37,0.12,0.47,2.0,0.155,0.1845,0.1055,0.4705,1
0.335,0.11,0.435,1.0,0.11,0.1695,0.086,0.38,0
0.37,0.14,0.47,2.0,0.145,0.2095,0.1225,0.4985,1
0.38,0.13,0.465,2.0,0.155,0.1895,0.08,0.454,1
0.405,0.14,0.52,2.0,0.179,0.2,0.145,0.5775,1
0.23,0.075,0.29,0.0,0.04,0.043,0.0255,0.1165,0
0.205,0.07,0.275,0.0,0.0325,0.0335,0.02,0.094,0
0.29,0.115,0.375,1.0,0.0885,0.093,0.066,0.2705,1
0.375,0.14,0.5,1.0,0.179,0.242,0.1415,0.604,1
0.355,0.115,0.44,1.0,0.131,0.1585,0.0925,0.415,1
0.325,0.115,0.42,0.0,0.1135,0.1,0.057,0.2885,1
0.35,0.115,0.445,0.0,0.117,0.1565,0.0695,0.3615,0
0.29,0.105,0.38,1.0,0.085,0.099,0.051,0.257,1
0.245,0.075,0.32,0.0,0.049,0.0585,0.038,0.1555,1
0.195,0.065,0.255,0.0,0.027,0.0315,0.018,0.08,0
0.155,0.045,0.205,0.0,0.0155,0.017,0.0055,0.0425,0
0.45,0.16,0.565,1.0,0.23,0.3605,0.1555,0.795,1
0.425,0.18,0.555,2.0,0.255,0.3695,0.2005,0.875,1
0.515,0.16,0.65,2.0,0.33,0.495,0.203,1.1625,1
0.49,0.155,0.615,2.0,0.345,0.4145,0.195,0.9885,1
0.44,0.165,0.56,2.0,0.25,0.335,0.1735,0.8,1
0.37,0.12,0.48,2.0,0.155,0.2075,0.131,0.514,1
0.39,0.125,0.485,2.0,0.12,0.287,0.141,0.591,0
0.385,0.15,0.5,2.0,0.16,0.2605,0.1665,0.6265,1
0.405,0.15,0.525,2.0,0.255,0.3075,0.205,0.795,1
0.5,0.165,0.66,1.0,0.37,0.4585,0.298,1.1905,1
0.53,0.17,0.66,1.0,0.44,0.519,0.2625,1.326,1
0.4,0.145,0.52,2.0,0.22,0.267,0.1055,0.66,1
0.34,0.105,0.44,1.0,0.1175,0.148,0.0805,0.364,0
0.4,0.12,0.515,2.0,0.17,0.2705,0.179,0.659,1
0.35,0.115,0.475,1.0,0.155,0.1715,0.092,0.452,1
0.415,0.15,0.545,1.0,0.2185,0.2795,0.163,0.7335,1
0.355,0.13,0.47,1.0,0.185,0.2005,0.126,0.5465,1
0.255,0.065,0.35,0.0,0.06,0.0705,0.0385,0.179,1
0.355,0.13,0.485,2.0,0.168,0.245,0.132,0.581,1
0.33,0.125,0.435,2.0,0.096,0.1685,0.1055,0.406,1
0.21,0.08,0.28,0.0,0.0345,0.041,0.0265,0.1085,0
0.32,0.115,0.41,1.0,0.0985,0.165,0.1005,0.387,1
0.35,0.14,0.45,2.0,0.1275,0.21,0.109,0.474,1
0.345,0.135,0.45,2.0,0.1175,0.1975,0.0875,0.443,1
0.455,0.155,0.59,1.0,0.415,0.382,0.2275,1.066,1
0.44,0.14,0.57,1.0,0.305,0.3785,0.201,0.9535,1
0.475,0.15,0.61,2.0,0.345,0.4145,0.2,0.9665,1
0.475,0.14,0.61,1.0,0.35,0.5275,0.2355,1.133,1
0.425,0.14,0.56,2.0,0.26,0.4005,0.1975,0.9175,1
0.435,0.175,0.585,1.0,0.27,0.4055,0.2495,0.982,1
0.445,0.15,0.58,2.0,0.255,0.383,0.209,0.8865,1
0.48,0.175,0.63,1.0,0.515,0.5015,0.3035,1.3675,1
0.49,0.175,0.625,1.0,0.365,0.5565,0.247,1.233,1
0.425,0.15,0.55,2.0,0.245,0.376,0.171,0.806,1
0.525,0.19,0.645,1.0,0.435,0.6615,0.3435,1.4635,1
0.355,0.14,0.46,2.0,0.115,0.216,0.133,0.4935,1
0.305,0.1,0.41,1.0,0.11,0.1735,0.065,0.363,1
0.39,0.125,0.495,2.0,0.2,0.284,0.162,0.6655,1
0.425,0.17,0.52,2.0,0.195,0.28,0.174,0.6805,1
0.41,0.145,0.55,1.0,0.25,0.3095,0.1905,0.8285,1
0.335,0.14,0.45,0.0,0.15,0.164,0.076,0.4625,1
0.31,0.12,0.405,1.0,0.095,0.138,0.058,0.3095,1
0.4,0.15,0.51,2.0,0.235,0.2865,0.1675,0.745,1
0.29,0.115,0.37,1.0,0.075,0.111,0.057,0.25,0
0.41,0.175,0.525,2.0,0.205,0.3585,0.207,0.874,1
0.52,0.18,0.66,1.0,0.42,0.526,0.2975,1.514,1
0.42,0.15,0.535,0.0,0.24,0.2575,0.153,0.6995,1
0.455,0.18,0.575,2.0,0.3,0.3015,0.1825,0.8525,1
0.43,0.14,0.55,1.0,0.225,0.2565,0.186,0.7135,0
0.47,0.14,0.605,2.0,0.32,0.3385,0.201,0.939,1
0.495,0.145,0.605,2.0,0.36,0.369,0.2255,1.054,1
0.445,0.195,0.56,1.0,0.335,0.305,0.2245,0.981,1
0.42,0.145,0.535,2.0,0.25,0.398,0.1965,0.926,1
0.315,0.11,0.385,1.0,0.0835,0.1225,0.0635,0.286,1
0.3,0.1,0.39,1.0,0.0865,0.1075,0.06,0.265,1
0.345,0.115,0.47,2.0,0.166,0.2005,0.108,0.4885,1
0.39,0.14,0.515,2.0,0.2235,0.2,0.1135,0.5555,1
0.345,0.125,0.425,2.0,0.154,0.16,0.0795,0.425,1
0.27,0.09,0.345,0.0,0.059,0.078,0.0455,0.195,0
0.37,0.13,0.485,2.0,0.136,0.181,0.113,0.458,1
0.285,0.1,0.37,0.0,0.081,0.0675,0.0675,0.228,1
0.265,0.09,0.35,0.0,0.068,0.0575,0.042,0.1775,1
0.345,0.17,0.44,1.0,0.1515,0.15,0.0825,0.4085,1
0.145,0.05,0.195,0.0,0.012,0.01,0.008,0.032,0
0.24,0.075,0.325,0.0,0.06,0.0475,0.0355,0.155,0
0.37,0.125,0.495,2.0,0.169,0.185,0.0705,0.4775,1
0.35,0.145,0.45,2.0,0.1655,0.2085,0.1,0.525,1
0.345,0.135,0.415,0.0,0.148,0.128,0.07,0.3865,1
0.355,0.14,0.47,1.0,0.152,0.1525,0.095,0.433,1
0.24,0.085,0.32,0.0,0.049,0.0655,0.047,0.17,0
0.225,0.075,0.31,0.0,0.044,0.0455,0.0335,0.1295,0
0.17,0.055,0.235,0.0,0.0195,0.018,0.0105,0.0515,0
0.255,0.08,0.345,0.0,0.054,0.06,0.0425,0.169,1
0.38,0.14,0.485,2.0,0.195,0.2175,0.13,0.673,1
0.385,0.115,0.5,1.0,0.195,0.2945,0.138,0.6785,1
0.385,0.105,0.5,1.0,0.17,0.1795,0.1095,0.498,1
0.36,0.105,0.465,2.0,0.14,0.214,0.116,0.498,1
0.405,0.16,0.525,1.0,0.225,0.2655,0.1125,0.658,1
0.335,0.095,0.425,1.0,0.125,0.1205,0.061,0.322,1
0.305,0.095,0.38,1.0,0.09,0.1255,0.0525,0.2815,0
0.415,0.145,0.53,2.0,0.265,0.3845,0.185,0.944,1
0.265,0.085,0.34,0.0,0.065,0.077,0.046,0.1835,1
0.365,0.115,0.475,2.0,0.1335,0.223,0.1235,0.49,0
0.34,0.12,0.43,1.0,0.1405,0.1555,0.095,0.391,0
0.365,0.125,0.46,0.0,0.158,0.1895,0.0945,0.467,1
0.36,0.13,0.47,2.0,0.165,0.198,0.1065,0.5225,0
0.295,0.1,0.36,0.0,0.075,0.066,0.0525,0.2105,0
0.265,0.09,0.355,0.0,0.063,0.05,0.041,0.168,0
0.235,0.1,0.38,0.0,0.08,0.1055,0.054,0.258,0
0.26,0.085,0.355,0.0,0.055,0.081,0.0485,0.1905,0
0.345,0.12,0.44,2.0,0.16,0.1965,0.108,0.487,1
0.4,0.13,0.51,1.0,0.195,0.219,0.1365,0.5735,1
0.24,0.085,0.325,0.0,0.05,0.0795,0.038,0.173,0
0.485,0.18,0.62,2.0,0.39,0.4675,0.2655,1.1785,1
0.45,0.16,0.59,1.0,0.315,0.358,0.156,0.9,1
0.255,0.095,0.33,0.0,0.06,0.0735,0.045,0.1875,0
0.34,0.13,0.45,0.0,0.105,0.1605,0.0795,0.3715,0
0.33,0.12,0.445,2.0,0.105,0.12,0.084,0.347,1
0.215,0.075,0.33,0.0,0.035,0.045,0.0265,0.1145,0
0.375,0.145,0.48,0.0,0.17,0.216,0.13,0.777,0
0.35,0.12,0.46,2.0,0.155,0.193,0.105,0.4885,1
0.36,0.125,0.475,1.0,0.14,0.1695,0.081,0.447,0
0.18,0.065,0.255,0.0,0.025,0.034,0.014,0.079,0
0.245,0.09,0.335,2.0,0.06,0.0595,0.04,0.1665,0
0.35,0.13,0.47,2.0,0.145,0.1845,0.099,0.466,1
0.225,0.08,0.31,0.0,0.05,0.054,0.024,0.1345,0
0.28,0.11,0.37,1.0,0.075,0.0945,0.0465,0.2305,1
0.215,0.075,0.295,0.0,0.04,0.05,0.0295,0.129,0
0.435,0.165,0.555,1.0,0.295,0.336,0.2315,0.97,1
0.515,0.17,0.615,1.0,0.42,0.4305,0.2245,1.14,1
0.49,0.195,0.58,2.0,0.41,0.5305,0.254,1.3165,1
0.475,0.185,0.585,1.0,0.33,0.4145,0.1615,0.9585,1
0.525,0.18,0.65,2.0,0.53,0.597,0.3445,1.626,1
0.45,0.17,0.535,2.0,0.295,0.3055,0.1555,0.781,1
0.34,0.13,0.415,1.0,0.12,0.146,0.0885,0.3675,1
0.305,0.105,0.38,1.0,0.09,0.1045,0.0615,0.281,1
0.355,0.12,0.45,2.0,0.16,0.1145,0.0665,0.412,1
0.295,0.095,0.395,1.0,0.08,0.078,0.054,0.2245,1
0.35,0.12,0.455,0.0,0.16,0.1815,0.144,0.4835,1
0.38,0.15,0.485,1.0,0.18,0.2155,0.14,0.605,1
0.425,0.155,0.55,0.0,0.335,0.2775,0.243,0.9175,1
0.35,0.145,0.45,1.0,0.175,0.1765,0.123,0.5425,1
0.385,0.145,0.475,0.0,0.215,0.235,0.108,0.6175,1
0.38,0.155,0.5,1.0,0.205,0.2405,0.143,0.655,1
0.41,0.165,0.53,1.0,0.24,0.24,0.169,0.8115,1
0.39,0.15,0.49,0.0,0.17,0.225,0.124,0.573,1
0.385,0.15,0.49,1.0,0.24,0.241,0.14,0.7865,1
0.395,0.18,0.52,1.0,0.245,0.158,0.11,0.64,1
0.415,0.145,0.54,0.0,0.245,0.2635,0.168,0.74,1
0.375,0.115,0.5,1.0,0.19,0.185,0.148,0.5945,1
0.38,0.165,0.45,1.0,0.265,0.25,0.1915,0.8165,1
0.275,0.1,0.37,1.0,0.08,0.093,0.026,0.2225,0
0.275,0.1,0.37,2.0,0.07,0.0885,0.0465,0.2295,0
0.37,0.14,0.485,0.0,0.175,0.204,0.1415,0.5725,1
0.325,0.115,0.435,1.0,0.12,0.154,0.094,0.3915,0
0.405,0.185,0.535,0.0,0.29,0.3175,0.1725,0.8345,1
0.4,0.14,0.51,0.0,0.185,0.2455,0.1665,0.6515,1
0.44,0.185,0.565,0.0,0.255,0.344,0.2325,0.909,1
0.4,0.15,0.535,1.0,0.21,0.3345,0.2125,0.8045,1
0.405,0.125,0.535,1.0,0.345,0.26,0.1425,0.927,1
0.4,0.17,0.525,0.0,0.195,0.279,0.2055,0.7305,1
0.44,0.15,0.59,0.0,0.295,0.366,0.2425,0.9555,1
0.375,0.15,0.5,0.0,0.19,0.2535,0.145,0.636,1
0.19,0.075,0.255,2.0,0.025,0.0345,0.0205,0.0865,0
0.325,0.115,0.43,1.0,0.11,0.1475,0.1065,0.3865,1
0.29,0.12,0.38,0.0,0.085,0.1175,0.0655,0.283,0
0.11,0.02,0.165,2.0,0.005,0.0065,0.0025,0.019,0
0.23,0.09,0.315,2.0,0.04,0.043,0.04,0.1285,0
0.105,0.05,0.155,2.0,0.005,0.005,0.0035,0.0175,0
0.205,0.1,0.28,0.0,0.03,0.0545,0.0285,0.1165,0
0.335,0.12,0.43,1.0,0.14,0.155,0.1145,0.444,1
0.315,0.105,0.395,1.0,0.1195,0.1185,0.091,0.3515,1
0.285,0.105,0.385,0.0,0.0875,0.1215,0.0685,0.2905,1
0.385,0.135,0.48,1.0,0.173,0.1895,0.142,0.536,1
0.33,0.105,0.445,1.0,0.123,0.18,0.103,0.4525,0
0.295,0.115,0.395,0.0,0.1105,0.1205,0.0595,0.316,1
0.3,0.125,0.4,0.0,0.1175,0.191,0.09,0.417,0
0.325,0.14,0.415,0.0,0.144,0.1535,0.1015,0.417,1
0.25,0.09,0.315,0.0,0.0795,0.0615,0.037,0.203,1
0.26,0.09,0.345,1.0,0.0765,0.0775,0.0435,0.207,1
0.295,0.13,0.36,0.0,0.1005,0.0895,0.057,0.2765,1
0.225,0.09,0.295,2.0,0.032,0.0405,0.0245,0.1105,0
0.25,0.08,0.325,2.0,0.063,0.0595,0.0355,0.176,0
0.3,0.1,0.375,0.0,0.083,0.104,0.0475,0.2465,1
0.205,0.055,0.28,2.0,0.0335,0.045,0.0275,0.1135,0
0.265,0.085,0.355,0.0,0.0695,0.069,0.053,0.201,0
0.255,0.08,0.35,0.0,0.063,0.08,0.0385,0.1915,0
0.2,0.065,0.275,2.0,0.03,0.0475,0.0205,0.1035,0
0.205,0.07,0.29,2.0,0.035,0.036,0.019,0.0975,0
0.19,0.06,0.25,2.0,0.0245,0.036,0.0115,0.0765,0
0.125,0.035,0.18,2.0,0.0085,0.0095,0.0055,0.0265,0
0.1,0.025,0.15,2.0,0.005,0.0045,0.004,0.015,0
0.11,0.025,0.16,2.0,0.005,0.0065,0.0055,0.018,0
0.455,0.16,0.555,0.0,0.293,0.3925,0.228,1.0575,1
0.44,0.15,0.555,0.0,0.4405,0.416,0.212,1.092,1
0.41,0.13,0.525,0.0,0.295,0.3865,0.243,0.99,1
0.36,0.08,0.465,0.0,0.155,0.191,0.125,0.488,1
0.36,0.11,0.49,1.0,0.195,0.161,0.107,0.5005,1
0.305,0.085,0.4,0.0,0.1,0.108,0.0705,0.297,1
0.375,0.105,0.48,1.0,0.155,0.2185,0.1195,0.525,1
0.4,0.125,0.505,0.0,0.255,0.2735,0.159,0.77,1
0.4,0.12,0.52,1.0,0.165,0.261,0.2015,0.6515,1
0.4,0.13,0.525,0.0,0.275,0.2405,0.1825,0.8295,1
0.42,0.13,0.545,0.0,0.23,0.374,0.1695,0.879,1
0.4,0.12,0.52,0.0,0.265,0.298,0.1805,0.823,1
0.38,0.13,0.505,0.0,0.22,0.227,0.1785,0.656,1
0.425,0.12,0.525,0.0,0.29,0.2825,0.176,0.8665,1
0.39,0.125,0.51,0.0,0.175,0.262,0.1835,0.6565,1
0.385,0.115,0.52,0.0,0.205,0.2385,0.172,0.669,1
0.405,0.125,0.52,1.0,0.21,0.2415,0.1735,0.6435,1
0.41,0.135,0.535,0.0,0.32,0.2855,0.1525,0.862,1
0.345,0.09,0.445,0.0,0.125,0.143,0.074,0.3795,1
0.44,0.205,0.53,0.0,0.245,0.32,0.2175,0.835,1
0.265,0.09,0.36,1.0,0.06,0.078,0.057,0.2065,0
0.42,0.15,0.535,1.0,0.215,0.2785,0.186,0.7365,1
0.405,0.14,0.52,1.0,0.26,0.2795,0.183,0.8175,1
0.415,0.13,0.53,0.0,0.265,0.275,0.1945,0.8425,1
0.42,0.13,0.53,1.0,0.265,0.34,0.226,1.001,1
0.52,0.2,0.66,1.0,0.45,0.673,0.4805,1.676,1
0.385,0.14,0.52,0.0,0.16,0.2485,0.2035,0.6595,0
0.42,0.13,0.535,0.0,0.28,0.301,0.181,0.8055,1
0.515,0.175,0.695,0.0,0.39,0.578,0.4105,1.5165,1
0.39,0.105,0.51,1.0,0.195,0.187,0.15,0.612,1
0.355,0.12,0.485,0.0,0.14,0.215,0.1615,0.547,1
0.46,0.17,0.605,1.0,0.315,0.347,0.3045,1.122,1
0.455,0.165,0.58,1.0,0.275,0.369,0.3005,1.1365,1
0.515,0.175,0.65,0.0,0.525,0.5295,0.272,1.4805,1
0.505,0.185,0.62,0.0,0.35,0.69,0.368,1.5275,1
0.525,0.155,0.615,0.0,0.37,0.367,0.236,1.1375,1
0.495,0.19,0.605,1.0,0.41,0.469,0.2655,1.437,1
0.44,0.155,0.57,0.0,0.27,0.4775,0.2315,1.116,1
0.43,0.12,0.57,0.0,0.31,0.348,0.167,1.0615,1
0.405,0.15,0.585,0.0,0.325,0.435,0.202,1.2565,1
0.44,0.155,0.55,1.0,0.335,0.313,0.1825,0.946,1
0.44,0.135,0.54,1.0,0.3,0.2385,0.221,0.959,1
0.51,0.19,0.64,0.0,0.47,0.6215,0.361,1.613,1
0.47,0.145,0.61,1.0,0.32,0.403,0.296,1.153,1
0.45,0.15,0.545,0.0,0.3,0.3365,0.1905,0.978,1
0.445,0.13,0.59,1.0,0.32,0.3825,0.234,1.1325,1
0.27,0.095,0.345,0.0,0.07,0.0665,0.05,0.197,0
0.43,0.155,0.55,1.0,0.233,0.289,0.227,0.785,1
0.425,0.17,0.53,1.0,0.278,0.3485,0.2395,0.949,1
0.455,0.165,0.53,1.0,0.2965,0.3155,0.2815,0.9805,1
0.375,0.14,0.485,2.0,0.17,0.2,0.123,0.521,0
0.275,0.115,0.385,0.0,0.085,0.0975,0.0825,0.2685,0
0.34,0.135,0.455,0.0,0.12,0.1675,0.158,0.462,0
0.38,0.14,0.49,0.0,0.185,0.245,0.167,0.7605,1
0.41,0.165,0.53,0.0,0.31,0.189,0.17,0.732,1
0.385,0.145,0.505,0.0,0.2,0.236,0.179,0.6775,1
0.38,0.14,0.49,0.0,0.195,0.2305,0.142,0.6385,1
0.35,0.14,0.465,0.0,0.19,0.2015,0.1505,0.5755,1
0.36,0.145,0.47,1.0,0.195,0.1725,0.1375,0.537,1
0.41,0.165,0.56,0.0,0.3,0.3505,0.237,0.93,1
0.385,0.15,0.505,0.0,0.215,0.246,0.152,0.6415,1
0.435,0.145,0.515,0.0,0.255,0.292,0.206,0.8815,1
0.28,0.125,0.385,2.0,0.085,0.102,0.038,0.244,0
0.155,0.06,0.215,2.0,0.015,0.021,0.0165,0.0525,0
0.415,0.175,0.55,0.0,0.2905,0.3295,0.2325,1.042,1
0.39,0.13,0.515,1.0,0.1845,0.1975,0.13,0.5755,0
0.385,0.135,0.495,0.0,0.262,0.211,0.1375,0.709,1
0.39,0.16,0.505,1.0,0.1635,0.2475,0.2025,0.644,0
0.465,0.165,0.6,1.0,0.262,0.309,0.246,0.8875,1
0.465,0.16,0.57,1.0,0.263,0.3145,0.2575,0.8935,1
0.375,0.135,0.485,1.0,0.1685,0.1925,0.1315,0.556,1
0.37,0.18,0.47,0.0,0.1625,0.1915,0.1285,0.51,0
0.45,0.165,0.575,0.0,0.256,0.3275,0.225,0.9215,1
0.465,0.16,0.58,0.0,0.3635,0.315,0.26,1.0345,1
0.405,0.145,0.515,0.0,0.234,0.215,0.1635,0.695,1
0.41,0.155,0.53,0.0,0.214,0.2805,0.1685,0.7155,1
0.335,0.11,0.44,0.0,0.122,0.157,0.096,0.394,0
0.42,0.16,0.52,0.0,0.2885,0.255,0.157,0.745,1
0.345,0.11,0.425,1.0,0.117,0.125,0.081,0.3665,1
0.34,0.135,0.46,0.0,0.185,0.1655,0.117,0.495,1
0.335,0.125,0.45,0.0,0.115,0.119,0.1055,0.349,1
0.33,0.13,0.425,0.0,0.155,0.152,0.0935,0.4405,0
0.275,0.1,0.37,2.0,0.065,0.094,0.045,0.22,0
0.38,0.135,0.515,0.0,0.155,0.2875,0.2095,0.6615,1
0.305,0.12,0.405,0.0,0.095,0.1235,0.0905,0.3185,0
0.205,0.07,0.28,2.0,0.03,0.041,0.03,0.1015,0
0.4,0.125,0.48,1.0,0.24,0.2125,0.179,0.759,1
0.34,0.13,0.44,1.0,0.13,0.153,0.1155,0.4195,1
0.41,0.115,0.52,1.0,0.235,0.2855,0.179,0.807,1
0.405,0.14,0.505,0.0,0.285,0.2665,0.174,0.875,1
0.365,0.13,0.49,1.0,0.205,0.165,0.1315,0.6835,1
0.175,0.055,0.235,2.0,0.018,0.027,0.0125,0.067,0
0.185,0.06,0.255,2.0,0.023,0.0365,0.021,0.088,0
0.24,0.085,0.315,2.0,0.0535,0.071,0.0345,0.1715,0
0.25,0.08,0.325,2.0,0.049,0.0765,0.0345,0.1735,0
0.25,0.08,0.335,2.0,0.0575,0.0735,0.04,0.183,0
0.27,0.09,0.35,2.0,0.062,0.075,0.0575,0.2055,0
0.25,0.07,0.35,2.0,0.054,0.0655,0.048,0.18,0
0.3,0.085,0.36,2.0,0.0745,0.1185,0.064,0.27,0
0.275,0.135,0.365,2.0,0.0735,0.108,0.0445,0.24,0
0.275,0.14,0.37,2.0,0.0615,0.097,0.0455,0.2215,0
0.275,0.095,0.38,2.0,0.0605,0.086,0.0585,0.1375,0
0.29,0.095,0.385,2.0,0.086,0.143,0.0635,0.312,0
0.3,0.1,0.385,2.0,0.09,0.1215,0.063,0.2895,0
0.29,0.095,0.395,2.0,0.082,0.138,0.08,0.319,0
0.29,0.095,0.395,2.0,0.077,0.127,0.084,0.304,0
0.31,0.1,0.4,2.0,0.094,0.13,0.06,0.306,0
0.325,0.1,0.41,2.0,0.106,0.208,0.0655,0.394,0
0.32,0.11,0.415,2.0,0.109,0.175,0.0755,0.3735,0
0.305,0.1,0.415,0.0,0.091,0.156,0.0505,0.325,0
0.325,0.1,0.425,2.0,0.0945,0.1185,0.0645,0.398,0
0.365,0.115,0.44,2.0,0.1465,0.2435,0.084,0.501,0
0.335,0.1,0.445,2.0,0.1105,0.2745,0.086,0.4895,0
0.325,0.1,0.445,2.0,0.089,0.1795,0.1,0.378,0
0.35,0.13,0.45,2.0,0.1405,0.245,0.1405,0.547,0
0.375,0.12,0.47,0.0,0.169,0.266,0.0935,0.5805,0
0.365,0.125,0.475,2.0,0.172,0.229,0.1185,0.5465,0
0.365,0.135,0.48,1.0,0.175,0.2945,0.113,0.6395,0
0.355,0.105,0.485,2.0,0.1525,0.2175,0.096,0.498,0
0.385,0.125,0.49,0.0,0.1775,0.3065,0.096,0.609,0
0.41,0.125,0.495,1.0,0.214,0.3355,0.129,0.7555,0
0.4,0.125,0.5,0.0,0.166,0.27,0.1275,0.5975,0
0.44,0.14,0.505,0.0,0.239,0.3415,0.1855,0.8275,0
0.395,0.13,0.525,0.0,0.225,0.3375,0.1425,0.7635,0
0.405,0.125,0.54,0.0,0.202,0.4815,0.1915,0.891,0
0.42,0.14,0.54,1.0,0.21,0.369,0.1725,0.805,1
0.44,0.135,0.545,1.0,0.2375,0.429,0.2015,0.9185,1
0.43,0.125,0.55,1.0,0.283,0.4035,0.175,0.923,0
0.45,0.15,0.55,0.0,0.2875,0.407,0.2015,1.0145,1
0.45,0.15,0.55,1.0,0.2765,0.362,0.1755,0.875,1
0.435,0.145,0.555,0.0,0.2385,0.4985,0.168,0.9685,0
0.45,0.155,0.565,0.0,0.265,0.4735,0.24,1.0595,1
0.455,0.15,0.57,0.0,0.2745,0.3895,0.2155,0.952,0
0.435,0.13,0.57,0.0,0.194,0.349,0.1755,0.7535,1
0.465,0.14,0.575,1.0,0.2705,0.442,0.1815,0.958,0
0.475,0.165,0.59,0.0,0.3095,0.4545,0.244,1.077,0
0.46,0.13,0.59,0.0,0.33,0.455,0.2055,1.102,1
0.48,0.15,0.595,1.0,0.33,0.498,0.228,1.11,1
0.48,0.16,0.595,1.0,0.32,0.5225,0.296,1.2095,0
0.475,0.16,0.595,1.0,0.271,0.547,0.231,1.1405,0
0.465,0.14,0.595,1.0,0.305,0.5175,0.244,1.113,1
0.475,0.175,0.6,0.0,0.36,0.549,0.2875,1.3445,1
0.475,0.155,0.6,1.0,0.3205,0.653,0.1695,1.21,1
0.495,0.175,0.6,0.0,0.3445,0.606,0.276,1.29,1
0.475,0.175,0.605,1.0,0.3985,0.609,0.2325,1.382,1
0.455,0.16,0.605,0.0,0.325,0.421,0.3015,1.1035,0
0.5,0.175,0.615,1.0,0.292,0.5585,0.33,1.377,1
0.52,0.15,0.615,1.0,0.345,0.629,0.2605,1.3435,1
0.51,0.15,0.615,0.0,0.32,0.545,0.3315,1.296,0
0.505,0.165,0.615,0.0,0.41,0.5315,0.2815,1.34,1
0.505,0.16,0.62,1.0,0.3685,0.6285,0.275,1.3725,1
0.5,0.165,0.62,0.0,0.315,0.6355,0.2545,1.307,0
0.49,0.155,0.625,1.0,0.411,0.465,0.162,1.2085,1
0.49,0.2,0.625,1.0,0.381,0.5895,0.285,1.3825,1
0.505,0.165,0.63,0.0,0.406,0.4525,0.2755,1.26,1
0.51,0.17,0.635,0.0,0.39,0.619,0.305,1.3555,0
0.5,0.15,0.635,1.0,0.31,0.6495,0.361,1.376,1
0.485,0.165,0.635,1.0,0.2715,0.668,0.2605,1.2945,0
0.51,0.165,0.64,1.0,0.321,0.7595,0.332,1.486,0
0.525,0.175,0.65,0.0,0.399,0.675,0.315,1.4715,1
0.52,0.165,0.655,0.0,0.405,0.586,0.291,1.4095,0
0.58,0.205,0.655,0.0,0.601,0.959,0.3415,2.0805,1
0.53,0.17,0.66,0.0,0.453,0.5905,0.212,1.3905,1
0.52,0.19,0.66,0.0,0.4,0.755,0.298,1.558,1
0.585,0.16,0.67,1.0,0.413,0.5445,0.2945,1.309,1
0.525,0.17,0.675,1.0,0.455,0.784,0.391,1.8095,1
0.525,0.155,0.675,1.0,0.42,0.628,0.3405,1.4785,0
0.56,0.195,0.68,1.0,0.415,0.861,0.322,1.7775,1
0.54,0.16,0.685,1.0,0.475,0.833,0.3775,1.6675,1
0.56,0.22,0.695,1.0,0.455,0.8455,0.422,1.834,1
0.595,0.23,0.73,0.0,0.897,1.1465,0.419,2.8255,1
0.14,0.05,0.205,2.0,0.0135,0.0165,0.012,0.046,0
0.175,0.055,0.24,2.0,0.021,0.025,0.014,0.0705,0
0.175,0.065,0.24,2.0,0.017,0.031,0.0135,0.0665,0
0.19,0.05,0.255,2.0,0.027,0.0295,0.0215,0.083,0
0.18,0.055,0.255,2.0,0.02,0.031,0.0215,0.083,0
0.195,0.06,0.265,2.0,0.0245,0.0345,0.025,0.092,0
0.12,0.075,0.28,2.0,0.0345,0.0455,0.029,0.117,0
0.23,0.08,0.295,2.0,0.0385,0.065,0.05,0.1625,0
0.235,0.08,0.3,2.0,0.043,0.05,0.0265,0.131,0
0.23,0.095,0.3,2.0,0.037,0.056,0.0365,0.1385,0
0.22,0.07,0.305,2.0,0.037,0.062,0.031,0.141,0
0.235,0.075,0.315,2.0,0.0425,0.0585,0.0375,0.1485,0
0.23,0.07,0.315,2.0,0.04,0.053,0.0305,0.144,0
0.24,0.09,0.32,2.0,0.0425,0.07,0.0265,0.1575,0
0.24,0.075,0.325,2.0,0.05,0.0825,0.0445,0.187,0
0.265,0.085,0.33,2.0,0.0445,0.0775,0.0305,0.196,0
0.25,0.075,0.335,2.0,0.055,0.0705,0.044,0.1825,0
0.25,0.075,0.335,2.0,0.0445,0.0945,0.038,0.186,0
0.25,0.075,0.34,2.0,0.045,0.0665,0.0455,0.1785,0
0.25,0.07,0.34,2.0,0.055,0.104,0.0425,0.2225,0
0.265,0.1,0.345,2.0,0.065,0.111,0.0535,0.2455,0
0.29,0.095,0.37,2.0,0.067,0.1045,0.058,0.249,0
0.28,0.095,0.37,2.0,0.0795,0.1505,0.069,0.2865,0
0.28,0.09,0.375,2.0,0.055,0.084,0.06,0.215,0
0.265,0.08,0.385,2.0,0.07,0.124,0.037,0.251,0
0.31,0.09,0.41,2.0,0.09,0.155,0.0695,0.339,0
0.305,0.09,0.41,2.0,0.1,0.157,0.0745,0.3535,0
0.31,0.09,0.41,2.0,0.091,0.1635,0.061,0.3335,0
0.33,0.09,0.415,2.0,0.09,0.17,0.081,0.3595,0
0.32,0.115,0.42,2.0,0.1,0.169,0.092,0.376,0
0.315,0.1,0.42,2.0,0.09,0.157,0.0795,0.3435,0
0.34,0.1,0.425,2.0,0.1,0.164,0.096,0.382,0
0.315,0.1,0.425,2.0,0.105,0.1645,0.072,0.377,0
0.325,0.1,0.43,2.0,0.105,0.1575,0.0825,0.3645,0
0.325,0.09,0.43,2.0,0.095,0.217,0.087,0.425,0
0.325,0.12,0.435,2.0,0.1125,0.1815,0.061,0.3995,0
0.34,0.115,0.435,2.0,0.1145,0.1825,0.078,0.3925,0
0.345,0.13,0.44,2.0,0.134,0.209,0.0835,0.4495,0
0.325,0.09,0.44,2.0,0.105,0.148,0.067,0.35,0
0.335,0.11,0.445,1.0,0.1195,0.2025,0.1095,0.4355,0
0.35,0.13,0.445,2.0,0.1195,0.1695,0.0945,0.4195,0
0.36,0.13,0.45,2.0,0.137,0.191,0.127,0.478,0
0.355,0.105,0.45,2.0,0.1335,0.197,0.093,0.4445,0
0.345,0.11,0.45,2.0,0.1135,0.2355,0.0855,0.47,0
0.335,0.105,0.45,2.0,0.119,0.2335,0.153,0.447,0
0.355,0.125,0.455,2.0,0.1465,0.225,0.126,0.5325,0
0.375,0.12,0.455,2.0,0.1295,0.2355,0.1055,0.497,0
0.36,0.1,0.46,2.0,0.115,0.2325,0.093,0.4635,0
0.345,0.105,0.46,2.0,0.1265,0.196,0.0945,0.449,0
0.365,0.115,0.465,2.0,0.113,0.2315,0.0925,0.467,0
0.37,0.115,0.465,2.0,0.143,0.261,0.098,0.534,0
0.345,0.11,0.465,2.0,0.12,0.1755,0.0905,0.4415,0
0.35,0.125,0.465,1.0,0.1095,0.23,0.106,0.482,0
0.365,0.12,0.47,0.0,0.14,0.327,0.15,0.612,0
0.365,0.12,0.47,1.0,0.146,0.29,0.092,0.582,0
0.37,0.125,0.475,0.0,0.15,0.222,0.1215,0.537,0
0.36,0.12,0.475,1.0,0.127,0.3245,0.11,0.5915,0
0.375,0.115,0.48,0.0,0.17,0.3205,0.1065,0.6765,0
0.385,0.145,0.48,0.0,0.1575,0.2925,0.1405,0.64,0
0.36,0.1,0.48,0.0,0.115,0.194,0.099,0.439,0
0.365,0.12,0.48,0.0,0.14,0.312,0.117,0.6015,0
0.37,0.115,0.485,1.0,0.129,0.1995,0.0955,0.4785,0
0.385,0.125,0.49,0.0,0.1695,0.32,0.124,0.649,0
0.395,0.135,0.495,0.0,0.1495,0.3035,0.1295,0.6335,0
0.4,0.135,0.495,0.0,0.144,0.272,0.1435,0.61,0
0.39,0.135,0.5,0.0,0.1565,0.3145,0.1535,0.6595,0
0.385,0.12,0.5,2.0,0.135,0.2835,0.103,0.56,0
0.385,0.135,0.5,0.0,0.1535,0.3195,0.129,0.6425,0
0.4,0.125,0.5,0.0,0.1825,0.336,0.12,0.6725,0
0.39,0.13,0.505,1.0,0.1785,0.3165,0.141,0.674,0
0.39,0.15,0.505,2.0,0.156,0.362,0.131,0.685,0
0.41,0.125,0.505,0.0,0.155,0.289,0.133,0.642,0
0.355,0.125,0.505,2.0,0.185,0.25,0.1205,0.601,0
0.39,0.135,0.51,0.0,0.19,0.3935,0.1455,0.769,0
0.375,0.1,0.51,2.0,0.175,0.238,0.1225,0.5785,0
0.405,0.135,0.51,2.0,0.18,0.3655,0.1585,0.769,0
0.405,0.15,0.51,0.0,0.1885,0.347,0.134,0.7035,0
0.41,0.145,0.51,0.0,0.1955,0.3865,0.1815,0.796,0
0.43,0.14,0.515,1.0,0.23,0.367,0.2,0.834,0
0.39,0.155,0.515,0.0,0.155,0.3695,0.137,0.7125,0
0.415,0.14,0.525,1.0,0.175,0.3475,0.173,0.724,0
0.4,0.14,0.525,0.0,0.17,0.334,0.1575,0.7325,1
0.425,0.13,0.53,1.0,0.205,0.325,0.197,0.7585,0
0.425,0.15,0.53,1.0,0.202,0.328,0.232,0.8495,0
0.405,0.125,0.53,0.0,0.186,0.2715,0.1605,0.6515,0
0.4,0.135,0.535,1.0,0.205,0.3935,0.196,0.8215,0
0.43,0.14,0.535,0.0,0.2155,0.2855,0.1595,0.7165,0
0.435,0.14,0.535,0.0,0.2195,0.3735,0.229,0.874,0
0.445,0.155,0.55,1.0,0.218,0.544,0.178,0.9905,0
0.43,0.14,0.55,1.0,0.275,0.368,0.161,0.8105,0
0.455,0.16,0.56,1.0,0.274,0.4525,0.207,0.967,0
0.4,0.13,0.565,1.0,0.18,0.3075,0.1665,0.6975,0
0.45,0.155,0.57,0.0,0.295,0.5625,0.2565,1.195,1
0.45,0.155,0.57,0.0,0.343,0.513,0.21,1.1935,1
0.455,0.15,0.57,1.0,0.27,0.54,0.255,1.107,0
0.445,0.14,0.57,0.0,0.24,0.5265,0.2195,1.0635,0
0.46,0.17,0.57,0.0,0.214,0.4075,0.1935,0.9035,0
0.475,0.16,0.575,0.0,0.29,0.4955,0.2745,1.114,0
0.46,0.16,0.575,1.0,0.249,0.538,0.221,1.103,0
0.46,0.15,0.58,1.0,0.29,0.5575,0.2255,1.1155,0
0.46,0.18,0.58,1.0,0.276,0.4095,0.2595,1.0515,0
0.455,0.15,0.58,0.0,0.2835,0.4985,0.2115,1.012,1
0.45,0.145,0.58,1.0,0.29,0.5585,0.22,1.137,0
0.49,0.13,0.58,0.0,0.237,0.586,0.2565,1.1335,0
0.465,0.155,0.59,0.0,0.275,0.5245,0.2615,1.136,1
0.47,0.16,0.59,0.0,0.309,0.479,0.2425,1.206,0
0.455,0.145,0.59,1.0,0.25,0.5155,0.2445,1.063,0
0.47,0.155,0.595,1.0,0.155,0.4515,0.178,1.121,1
0.45,0.15,0.595,1.0,0.25,0.5865,0.2205,1.114,1
0.475,0.165,0.595,0.0,0.274,0.621,0.2435,1.213,0
0.46,0.14,0.595,1.0,0.2515,0.4655,0.2095,1.0045,0
0.455,0.15,0.595,0.0,0.27,0.518,0.2205,1.044,0
0.49,0.15,0.605,1.0,0.295,0.5265,0.2645,1.1345,0
0.475,0.155,0.605,0.0,0.275,0.572,0.2455,1.161,0
0.47,0.165,0.605,0.0,0.2925,0.6025,0.262,1.2315,1
0.47,0.15,0.61,0.0,0.3085,0.565,0.258,1.1625,1
0.475,0.155,0.61,0.0,0.3295,0.554,0.239,1.168,1
0.48,0.16,0.615,1.0,0.33,0.585,0.2595,1.2525,0
0.51,0.18,0.62,1.0,0.388,0.594,0.276,1.3315,1
0.48,0.17,0.625,1.0,0.365,0.6235,0.278,1.3525,1
0.49,0.175,0.625,0.0,0.405,0.5705,0.271,1.3325,1
0.475,0.175,0.625,1.0,0.349,0.4755,0.2475,1.1435,1
0.5,0.165,0.625,1.0,0.315,0.573,0.3035,1.288,0
0.485,0.2,0.625,1.0,0.401,0.5845,0.302,1.38,0
0.485,0.155,0.63,0.0,0.31,0.637,0.275,1.278,0
0.495,0.165,0.63,1.0,0.315,0.599,0.284,1.3075,1
0.48,0.15,0.63,0.0,0.3235,0.5185,0.248,1.1785,0
0.49,0.175,0.635,0.0,0.395,0.623,0.2705,1.375,1
0.525,0.185,0.635,0.0,0.3745,0.684,0.3,1.4065,1
0.505,0.155,0.64,0.0,0.335,0.705,0.2655,1.4025,1
0.5,0.17,0.64,1.0,0.409,0.693,0.326,1.5175,1
0.5,0.175,0.64,1.0,0.4,0.4935,0.291,1.394,1
0.5,0.155,0.645,1.0,0.3185,0.6145,0.236,1.2205,1
0.52,0.175,0.645,0.0,0.432,0.779,0.342,1.636,1
0.52,0.175,0.645,0.0,0.4,0.709,0.3555,1.561,0
0.505,0.165,0.645,1.0,0.336,0.684,0.308,1.4325,0
0.5,0.175,0.645,0.0,0.349,0.633,0.299,1.3385,1
0.5,0.16,0.645,1.0,0.3,0.5475,0.327,1.2465,1
0.515,0.15,0.645,1.0,0.385,0.515,0.2055,1.212,1
0.495,0.16,0.65,0.0,0.3725,0.57,0.312,1.304,0
0.52,0.21,0.65,0.0,0.46,0.6665,0.308,1.6785,1
0.525,0.185,0.65,0.0,0.477,0.6645,0.3225,1.622,1
0.46,0.16,0.655,1.0,0.1825,0.6895,0.331,1.494,0
0.51,0.175,0.655,1.0,0.403,0.8515,0.3365,1.6525,1
0.505,0.185,0.66,1.0,0.441,0.69,0.3025,1.528,1
0.535,0.19,0.66,0.0,0.5175,0.6425,0.297,1.5905,0
0.495,0.195,0.66,0.0,0.485,0.594,0.3595,1.6275,1
0.475,0.18,0.66,1.0,0.335,0.641,0.294,1.3695,0
0.525,0.165,0.67,0.0,0.4005,0.682,0.3145,1.6085,1
0.57,0.225,0.675,1.0,0.435,0.739,0.2995,1.587,1
0.565,0.195,0.675,1.0,0.553,0.7645,0.3615,1.8375,1
0.535,0.185,0.68,0.0,0.498,0.7245,0.3215,1.607,1
0.525,0.175,0.69,0.0,0.405,0.8255,0.362,1.7005,0
0.505,0.2,0.69,0.0,0.48,0.893,0.4015,1.872,1
0.535,0.175,0.695,1.0,0.503,0.8035,0.396,1.8385,1
0.535,0.18,0.705,1.0,0.4045,0.693,0.42,1.685,1
0.565,0.205,0.71,0.0,0.5475,1.012,0.5225,2.198,1
0.565,0.175,0.715,0.0,0.4135,0.7645,0.4185,1.9525,1
0.525,0.185,0.715,1.0,0.405,0.6655,0.383,1.56,1
0.6,0.22,0.735,1.0,0.6,1.1335,0.44,2.555,1
0.6,0.22,0.765,0.0,0.6205,1.007,0.509,2.302,1
0.13,0.045,0.185,2.0,0.0095,0.012,0.0075,0.029,0
0.15,0.045,0.195,2.0,0.011,0.018,0.006,0.0375,0
0.135,0.04,0.195,2.0,0.0095,0.0135,0.005,0.0325,0
0.155,0.04,0.2,2.0,0.007,0.0155,0.009,0.0435,0
0.165,0.055,0.225,2.0,0.015,0.027,0.0125,0.059,0
0.18,0.065,0.245,2.0,0.0215,0.03,0.013,0.071,0
0.18,0.065,0.25,2.0,0.0225,0.0245,0.0155,0.0685,0
0.195,0.055,0.265,2.0,0.025,0.0365,0.0175,0.084,0
0.195,0.065,0.275,2.0,0.028,0.054,0.02,0.106,0
0.21,0.085,0.28,2.0,0.034,0.0415,0.024,0.1075,0
0.22,0.065,0.285,2.0,0.03,0.0405,0.0205,0.096,0
0.22,0.08,0.3,2.0,0.039,0.055,0.0265,0.1255,0
0.235,0.055,0.315,2.0,0.039,0.065,0.027,0.151,0
0.225,0.085,0.32,2.0,0.0405,0.0675,0.0295,0.1415,0
0.265,0.08,0.34,2.0,0.055,0.09,0.0475,0.2015,0
0.28,0.1,0.37,2.0,0.0635,0.1165,0.0265,0.221,0
0.28,0.08,0.375,2.0,0.067,0.1125,0.0455,0.2345,0
0.275,0.1,0.375,2.0,0.065,0.1165,0.042,0.2325,0
0.29,0.08,0.385,2.0,0.065,0.122,0.0495,0.2485,0
0.32,0.095,0.4,2.0,0.087,0.194,0.053,0.348,0
0.3,0.11,0.405,2.0,0.093,0.172,0.044,0.32,0
0.3,0.1,0.41,2.0,0.0875,0.1255,0.057,0.282,0
0.325,0.1,0.41,2.0,0.106,0.132,0.072,0.3245,0
0.3,0.105,0.42,2.0,0.1035,0.1255,0.07,0.316,0
0.32,0.11,0.42,2.0,0.105,0.174,0.0635,0.3625,0
0.31,0.095,0.42,2.0,0.088,0.1255,0.051,0.279,0
0.325,0.115,0.425,2.0,0.1045,0.162,0.0865,0.3685,0
0.335,0.12,0.43,0.0,0.1035,0.1985,0.0865,0.397,0
0.33,0.11,0.435,2.0,0.096,0.2055,0.096,0.413,0
0.345,0.115,0.435,2.0,0.106,0.222,0.0735,0.418,0
0.33,0.11,0.44,2.0,0.12,0.1545,0.084,0.3705,0
0.345,0.105,0.445,2.0,0.117,0.1675,0.1015,0.409,0
0.34,0.145,0.445,2.0,0.13,0.1945,0.0905,0.434,0
0.335,0.11,0.445,2.0,0.109,0.1985,0.0935,0.411,0
0.365,0.125,0.45,2.0,0.1315,0.2135,0.0985,0.462,0
0.34,0.12,0.45,2.0,0.12,0.241,0.1075,0.4925,0
0.33,0.105,0.45,2.0,0.0975,0.1865,0.0785,0.3715,0
0.33,0.1,0.45,2.0,0.098,0.1945,0.1,0.411,0
0.33,0.11,0.45,2.0,0.102,0.16,0.0885,0.3685,0
0.35,0.115,0.46,2.0,0.1175,0.18,0.098,0.4155,0
0.36,0.105,0.47,0.0,0.129,0.27,0.1395,0.544,0
0.38,0.125,0.47,2.0,0.142,0.211,0.1075,0.4845,0
0.35,0.11,0.475,2.0,0.13,0.206,0.099,0.4565,0
0.35,0.1,0.475,2.0,0.115,0.2165,0.111,0.4545,0
0.38,0.125,0.48,2.0,0.1665,0.3395,0.1085,0.6245,0
0.465,0.125,0.49,0.0,0.141,0.235,0.13,0.5225,0
0.375,0.14,0.5,2.0,0.1585,0.248,0.112,0.5495,0
0.375,0.12,0.5,2.0,0.17,0.215,0.116,0.542,0
0.38,0.125,0.5,2.0,0.134,0.2485,0.1135,0.519,0
0.39,0.125,0.5,0.0,0.131,0.2485,0.117,0.5215,0
0.39,0.125,0.505,1.0,0.1405,0.246,0.15,0.5445,0
0.405,0.125,0.51,2.0,0.182,0.3465,0.1395,0.6795,0
0.4,0.125,0.51,1.0,0.1385,0.261,0.115,0.545,0
0.4,0.125,0.51,2.0,0.1525,0.2615,0.1195,0.5575,0
0.38,0.115,0.51,2.0,0.166,0.215,0.1135,0.5155,0
0.385,0.125,0.515,2.0,0.15,0.3175,0.1265,0.6115,0
0.4,0.145,0.52,0.0,0.185,0.3525,0.1845,0.7765,0
0.38,0.135,0.52,2.0,0.157,0.2295,0.133,0.5395,0
0.38,0.125,0.52,2.0,0.167,0.288,0.1295,0.5545,0
0.46,0.15,0.52,1.0,0.254,0.523,0.1985,1.019,0
0.4,0.13,0.525,2.0,0.17,0.325,0.1245,0.6455,0
0.4,0.14,0.525,2.0,0.1835,0.2625,0.1285,0.601,0
0.405,0.12,0.525,0.0,0.201,0.3755,0.1555,0.7555,0
0.395,0.12,0.525,2.0,0.1405,0.297,0.1395,0.608,0
0.4,0.125,0.53,2.0,0.19,0.279,0.127,0.617,0
0.39,0.125,0.535,2.0,0.169,0.2595,0.149,0.599,0
0.42,0.14,0.54,2.0,0.1895,0.3125,0.138,0.6665,1
0.39,0.135,0.545,0.0,0.156,0.4225,0.1815,0.7835,0
0.41,0.12,0.545,0.0,0.19,0.434,0.1405,0.793,0
0.415,0.14,0.545,0.0,0.218,0.4615,0.127,0.82,0
0.415,0.135,0.55,1.0,0.175,0.427,0.1855,0.8145,0
0.43,0.15,0.55,1.0,0.223,0.395,0.195,0.84,0
0.425,0.15,0.55,0.0,0.2165,0.411,0.1765,0.8315,1
0.43,0.145,0.56,0.0,0.234,0.464,0.1775,0.8995,0
0.445,0.16,0.56,0.0,0.2215,0.42,0.2175,0.8965,0
0.44,0.155,0.56,1.0,0.245,0.336,0.1765,0.6405,0
0.415,0.145,0.56,0.0,0.205,0.43,0.1885,0.852,0
0.455,0.15,0.565,0.0,0.23,0.4565,0.2395,0.9595,0
0.435,0.15,0.565,0.0,0.206,0.5795,0.1825,0.99,0
0.45,0.175,0.565,1.0,0.2645,0.447,0.2375,1.0095,0
0.46,0.15,0.57,0.0,0.25,0.5415,0.2035,1.0375,0
0.445,0.145,0.57,1.0,0.22,0.412,0.217,0.8775,0
0.44,0.15,0.57,2.0,0.224,0.3425,0.16,0.755,0
0.46,0.145,0.575,1.0,0.265,0.466,0.229,0.9945,0
0.45,0.16,0.575,1.0,0.2575,0.556,0.214,1.068,1
0.435,0.14,0.575,0.0,0.222,0.401,0.191,0.8455,0
0.47,0.165,0.575,1.0,0.238,0.435,0.197,0.869,0
0.455,0.135,0.575,0.0,0.26,0.4245,0.197,0.907,0
0.435,0.13,0.575,2.0,0.245,0.3155,0.2155,0.805,1
0.445,0.17,0.575,0.0,0.228,0.549,0.2175,1.0225,0
0.445,0.145,0.575,0.0,0.22,0.415,0.1945,0.847,0
0.455,0.15,0.58,0.0,0.265,0.4765,0.2155,1.114,0
0.455,0.195,0.58,0.0,0.441,0.945,0.426,1.859,0
0.445,0.135,0.58,0.0,0.22,0.3775,0.1915,0.814,0
0.45,0.14,0.58,0.0,0.253,0.486,0.1815,0.9615,0
0.45,0.145,0.58,0.0,0.2295,0.547,0.1975,1.0025,0
0.45,0.155,0.58,1.0,0.265,0.385,0.246,0.93,0
0.46,0.145,0.585,0.0,0.235,0.478,0.1825,0.9335,0
0.465,0.16,0.585,0.0,0.265,0.4595,0.236,0.9555,0
0.47,0.15,0.59,0.0,0.24,0.481,0.232,0.9955,0
0.475,0.16,0.6,1.0,0.2565,0.485,0.2495,1.0265,0
0.455,0.17,0.6,0.0,0.24,0.696,0.2395,1.1915,0
0.465,0.15,0.6,1.0,0.25,0.5455,0.262,1.1025,0
0.465,0.155,0.6,0.0,0.225,0.512,0.2465,1.0165,1
0.47,0.165,0.605,1.0,0.292,0.611,0.2275,1.1775,0
0.475,0.14,0.605,0.0,0.274,0.555,0.257,1.1175,0
0.48,0.17,0.605,0.0,0.317,0.582,0.2365,1.1835,1
0.475,0.165,0.605,1.0,0.357,0.433,0.2195,1.056,0
0.485,0.16,0.61,0.0,0.2415,0.5315,0.212,1.0145,0
0.485,0.145,0.61,0.0,0.2865,0.783,0.2255,1.3305,0
0.47,0.165,0.61,0.0,0.267,0.498,0.242,1.052,0
0.46,0.17,0.615,0.0,0.27,0.4815,0.272,1.0565,1
0.465,0.15,0.615,1.0,0.2415,0.4615,0.1825,0.923,0
0.475,0.155,0.615,1.0,0.285,0.447,0.25,1.027,0
0.47,0.135,0.62,0.0,0.2475,0.5315,0.2005,1.0195,0
0.45,0.2,0.62,0.0,0.2405,0.4285,0.1525,0.858,0
0.48,0.16,0.62,1.0,0.281,0.5635,0.2445,1.1125,0
0.485,0.175,0.625,1.0,0.332,0.7335,0.2715,1.3745,0
0.48,0.185,0.625,0.0,0.286,0.587,0.29,1.2065,0
0.47,0.155,0.63,0.0,0.287,0.589,0.211,1.1325,0
0.5,0.175,0.63,0.0,0.3425,0.5635,0.3065,1.2645,1
0.495,0.015,0.635,1.0,0.2885,0.5115,0.308,1.1565,0
0.515,0.165,0.64,0.0,0.358,0.632,0.3415,1.369,1
0.53,0.195,0.645,0.0,0.3735,0.6465,0.2945,1.39,1
0.48,0.17,0.645,1.0,0.305,0.528,0.254,1.1345,1
0.5,0.19,0.65,1.0,0.4245,0.6415,0.339,1.464,0
0.5,0.155,0.65,0.0,0.294,0.565,0.3135,1.202,1
0.515,0.16,0.655,0.0,0.345,0.553,0.369,1.31,1
0.51,0.175,0.655,1.0,0.364,0.5885,0.3725,1.415,1
0.53,0.185,0.66,1.0,0.476,0.546,0.2705,1.346,1
0.525,0.16,0.665,0.0,0.34,0.629,0.279,1.363,0
0.5,0.17,0.665,2.0,0.3595,0.6035,0.291,1.2975,0
0.505,0.205,0.67,1.0,0.353,0.6075,0.3025,1.3645,0
0.54,0.215,0.685,1.0,0.4735,0.664,0.3655,1.7025,1
0.52,0.165,0.685,0.0,0.4,0.699,0.3685,1.519,1
0.54,0.155,0.69,1.0,0.39,0.624,0.3105,1.454,0
0.53,0.21,0.69,0.0,0.3865,0.7355,0.405,1.583,1
0.53,0.17,0.69,1.0,0.3695,0.7945,0.3485,1.5535,0
0.56,0.185,0.695,0.0,0.4375,0.885,0.3715,1.74,1
0.565,0.18,0.7,0.0,0.446,0.895,0.3355,1.751,0
0.575,0.19,0.7,0.0,0.638,1.095,0.418,2.273,1
0.525,0.19,0.7,1.0,0.3995,0.8545,0.307,1.6465,0
0.55,0.17,0.705,1.0,0.301,0.6395,0.236,1.219,0
0.56,0.18,0.71,1.0,0.4525,0.735,0.381,1.652,1
0.55,0.19,0.715,0.0,0.5075,1.0465,0.407,2.0045,1
0.535,0.19,0.715,0.0,0.42,0.889,0.313,1.6755,1
0.58,0.195,0.72,1.0,0.5375,1.0265,0.48,2.103,1
0.55,0.2,0.72,1.0,0.5215,0.9035,0.469,1.9965,1
0.565,0.145,0.72,0.0,0.2685,0.691,0.1945,1.187,0
0.505,0.185,0.725,0.0,0.4505,1.026,0.4255,1.978,1
0.575,0.185,0.73,1.0,0.4825,0.931,0.38,1.8795,1
0.585,0.185,0.735,0.0,0.5,0.952,0.55,2.124,1
0.565,0.215,0.745,0.0,0.5,0.896,0.4585,1.931,1
0.57,0.21,0.75,1.0,0.545,1.109,0.5195,2.236,1
0.625,0.21,0.755,1.0,0.6785,1.1965,0.513,2.505,1
0.58,0.205,0.755,0.0,0.595,0.8295,0.4015,2.0065,1
0.63,0.215,0.78,1.0,0.586,1.488,0.4985,2.657,1
0.375,0.12,0.185,2.0,0.15,0.196,0.1045,0.4645,0
0.205,0.06,0.245,2.0,0.0215,0.034,0.014,0.0765,0
0.185,0.065,0.25,2.0,0.0225,0.0295,0.014,0.0685,0
0.19,0.065,0.25,2.0,0.025,0.039,0.015,0.0835,0
0.195,0.09,0.275,2.0,0.0355,0.0545,0.0295,0.1125,0
0.215,0.065,0.305,2.0,0.038,0.044,0.0205,0.1075,0
0.225,0.07,0.31,2.0,0.04,0.435,0.015,0.1055,0
0.23,0.08,0.315,2.0,0.0445,0.0545,0.031,0.1375,0
0.23,0.07,0.315,2.0,0.0385,0.046,0.0235,0.1145,0
0.225,0.075,0.325,2.0,0.09,0.0565,0.032,0.139,0
0.25,0.095,0.33,2.0,0.052,0.102,0.0395,0.2085,0
0.205,0.095,0.33,2.0,0.0435,0.077,0.032,0.1595,0
0.245,0.09,0.335,2.0,0.048,0.096,0.0405,0.2015,0
0.25,0.09,0.34,2.0,0.055,0.0775,0.033,0.179,0
0.255,0.095,0.345,2.0,0.055,0.0925,0.037,0.1945,0
0.255,0.085,0.345,2.0,0.05,0.105,0.037,0.2005,0
0.27,0.075,0.35,2.0,0.065,0.1,0.036,0.215,0
0.255,0.09,0.35,2.0,0.0525,0.0855,0.0305,0.1785,0
0.27,0.085,0.36,2.0,0.064,0.0875,0.035,0.196,0
0.27,0.085,0.365,2.0,0.058,0.081,0.042,0.1875,0
0.27,0.085,0.365,2.0,0.06,0.0825,0.0375,0.196,0
0.265,0.085,0.365,2.0,0.06,0.0945,0.049,0.213,0
0.29,0.09,0.37,2.0,0.075,0.089,0.0655,0.2445,0
0.28,0.085,0.37,2.0,0.062,0.1095,0.035,0.217,0
0.29,0.095,0.375,2.0,0.061,0.096,0.041,0.213,0
0.29,0.085,0.375,2.0,0.0695,0.118,0.045,0.2385,0
0.275,0.09,0.375,2.0,0.0755,0.093,0.0405,0.218,0
0.275,0.095,0.375,2.0,0.0775,0.11,0.0415,0.2465,0
0.28,0.08,0.375,2.0,0.065,0.0825,0.048,0.2025,0
0.27,0.085,0.375,2.0,0.07,0.0945,0.039,0.218,0
0.275,0.11,0.38,2.0,0.0755,0.11,0.0535,0.256,0
0.27,0.08,0.38,2.0,0.07,0.0865,0.042,0.2105,0
0.29,0.09,0.385,2.0,0.0745,0.111,0.0595,0.2615,0
0.28,0.085,0.385,2.0,0.067,0.097,0.038,0.2175,0
0.3,0.095,0.385,2.0,0.0735,0.152,0.0615,0.302,0
0.28,0.09,0.385,2.0,0.0655,0.1025,0.042,0.228,0
0.3,0.095,0.39,2.0,0.089,0.1665,0.0575,0.3265,0
0.305,0.105,0.395,2.0,0.0945,0.1135,0.0595,0.284,0
0.295,0.095,0.395,2.0,0.085,0.115,0.0625,0.2725,0
0.27,0.1,0.395,2.0,0.082,0.1445,0.061,0.2985,0
0.29,0.1,0.4,2.0,0.0765,0.1205,0.0605,0.2675,0
0.285,0.09,0.405,2.0,0.075,0.1265,0.0505,0.2645,0
0.335,0.11,0.41,2.0,0.17,0.157,0.0705,0.33,0
0.305,0.09,0.42,2.0,0.082,0.168,0.0615,0.328,0
0.325,0.11,0.425,2.0,0.1,0.173,0.045,0.3335,0
0.32,0.1,0.425,2.0,0.106,0.126,0.06,0.3055,0
0.31,0.09,0.425,2.0,0.08,0.1385,0.065,0.301,0
0.34,0.0,0.43,2.0,0.115,0.2065,0.086,0.428,0
0.315,0.095,0.43,2.0,0.1045,0.175,0.08,0.378,0
0.315,0.11,0.435,2.0,0.12,0.1615,0.0715,0.3685,0
0.34,0.12,0.44,2.0,0.12,0.2115,0.083,0.438,0
0.33,0.105,0.45,2.0,0.12,0.208,0.089,0.448,0
0.345,0.105,0.455,2.0,0.126,0.164,0.0755,0.4005,0
0.365,0.115,0.455,1.0,0.1245,0.184,0.108,0.4305,0
0.33,0.1,0.455,2.0,0.11,0.358,0.0775,0.372,0
0.36,0.105,0.46,2.0,0.11,0.2225,0.099,0.466,0
0.35,0.105,0.46,2.0,0.114,0.1575,0.077,0.3705,0
0.365,0.125,0.46,1.0,0.141,0.206,0.1045,0.4785,0
0.34,0.11,0.465,2.0,0.113,0.1425,0.073,0.346,1
0.365,0.1,0.47,2.0,0.135,0.175,0.0855,0.411,0
0.355,0.18,0.47,2.0,0.1505,0.2055,0.105,0.48,0
0.355,0.12,0.47,2.0,0.115,0.167,0.0885,0.393,0
0.355,0.1,0.475,2.0,0.14,0.2535,0.091,0.5035,0
0.38,0.12,0.475,2.0,0.1505,0.1785,0.0885,0.441,0
0.36,0.11,0.475,2.0,0.15,0.211,0.11,0.492,0
0.37,0.125,0.48,2.0,0.165,0.244,0.101,0.5435,0
0.355,0.115,0.48,2.0,0.132,0.2065,0.112,0.4725,0
0.365,0.1,0.48,2.0,0.135,0.2205,0.0835,0.461,0
0.355,0.12,0.495,2.0,0.1495,0.214,0.1045,0.4965,0
0.38,0.13,0.495,2.0,0.16,0.2185,0.116,0.5125,0
0.395,0.12,0.495,0.0,0.167,0.224,0.1375,0.553,0
0.38,0.135,0.5,2.0,0.1565,0.2945,0.104,0.594,0
0.42,0.135,0.5,0.0,0.2065,0.302,0.1415,0.6765,0
0.375,0.145,0.5,2.0,0.185,0.239,0.1375,0.5795,0
0.41,0.14,0.5,2.0,0.196,0.2585,0.1625,0.6615,0
0.375,0.125,0.5,2.0,0.157,0.259,0.124,0.5695,0
0.395,0.14,0.5,2.0,0.195,0.2925,0.1205,0.6215,0
0.405,0.13,0.505,2.0,0.18,0.3015,0.11,0.6015,0
0.38,0.12,0.505,2.0,0.18,0.2595,0.1435,0.594,0
0.395,0.105,0.505,2.0,0.171,0.248,0.103,0.551,0
0.38,0.12,0.515,2.0,0.16,0.3265,0.1295,0.625,0
0.42,0.135,0.515,2.0,0.205,0.337,0.144,0.711,1
0.4,0.135,0.515,2.0,0.175,0.32,0.1255,0.6965,0
0.4,0.13,0.52,2.0,0.18,0.233,0.1365,0.5825,1
0.395,0.125,0.52,2.0,0.1905,0.3005,0.131,0.663,0
0.4,0.125,0.525,2.0,0.164,0.369,0.1385,0.6965,0
0.42,0.155,0.525,0.0,0.2045,0.428,0.1415,0.842,0
0.415,0.13,0.53,2.0,0.167,0.3905,0.111,0.694,0
0.42,0.155,0.53,2.0,0.192,0.4725,0.111,0.81,1
0.415,0.11,0.53,2.0,0.189,0.2525,0.1235,0.5745,0
0.425,0.13,0.53,2.0,0.21,0.419,0.1205,0.7675,0
0.4,0.135,0.535,2.0,0.154,0.2895,0.121,0.6025,0
0.415,0.15,0.535,2.0,0.225,0.3595,0.135,0.5765,0
0.41,0.13,0.535,1.0,0.2075,0.335,0.144,0.7145,0
0.435,0.15,0.535,0.0,0.194,0.3475,0.1445,0.717,0
0.42,0.145,0.54,1.0,0.2175,0.4315,0.163,0.8655,1
0.42,0.14,0.54,2.0,0.229,0.3205,0.1445,0.7265,0
0.435,0.135,0.545,2.0,0.227,0.372,0.148,0.7715,0
0.445,0.15,0.545,1.0,0.207,0.3535,0.163,0.8,0
0.43,0.15,0.545,2.0,0.2545,0.302,0.1315,0.7285,1
0.405,0.135,0.545,2.0,0.185,0.27,0.1185,0.5945,0
0.43,0.145,0.55,2.0,0.223,0.3745,0.171,0.7895,1
0.405,0.125,0.55,1.0,0.2,0.2965,0.137,0.651,0
0.43,0.15,0.55,0.0,0.248,0.413,0.1905,0.8745,0
0.435,0.14,0.55,2.0,0.2325,0.3285,0.1555,0.7535,1
0.425,0.135,0.55,2.0,0.215,0.3325,0.1545,0.7305,0
0.44,0.14,0.555,0.0,0.255,0.407,0.156,0.8705,0
0.43,0.155,0.555,2.0,0.28,0.3135,0.1435,0.7395,1
0.43,0.14,0.555,2.0,0.23,0.341,0.165,0.7665,0
0.425,0.145,0.555,2.0,0.225,0.3485,0.1765,0.7905,0
0.425,0.135,0.56,2.0,0.236,0.3715,0.185,0.8205,0
0.425,0.145,0.56,2.0,0.2165,0.3095,0.1305,0.688,0
0.445,0.155,0.56,1.0,0.2695,0.5565,0.3225,1.224,1
0.455,0.145,0.56,2.0,0.235,0.547,0.1615,0.974,0
0.44,0.175,0.565,2.0,0.21,0.414,0.21,0.8735,1
0.45,0.145,0.565,1.0,0.225,0.4215,0.1685,0.8495,0
0.445,0.15,0.565,0.0,0.219,0.3635,0.184,0.796,0
0.39,0.125,0.565,0.0,0.1685,0.352,0.13,0.744,1
0.45,0.145,0.57,2.0,0.2215,0.2825,0.2195,0.751,1
0.45,0.135,0.57,2.0,0.245,0.3815,0.1415,0.794,0
0.46,0.135,0.57,1.0,0.2655,0.397,0.2525,0.9795,0
0.435,0.17,0.57,0.0,0.2705,0.382,0.183,0.873,1
0.44,0.13,0.57,2.0,0.202,0.347,0.1785,0.7665,1
0.435,0.125,0.57,0.0,0.275,0.383,0.1835,0.8965,0
0.42,0.135,0.575,1.0,0.2125,0.461,0.147,0.857,1
0.48,0.165,0.575,1.0,0.306,0.511,0.2095,1.078,0
0.46,0.155,0.575,0.0,0.22,0.4415,0.176,0.892,1
0.46,0.155,0.58,0.0,0.2955,0.6715,0.273,1.4395,1
0.455,0.135,0.58,0.0,0.204,0.405,0.167,0.7955,1
0.445,0.15,0.58,1.0,0.253,0.4,0.156,0.858,0
0.465,0.155,0.585,0.0,0.235,0.4555,0.1965,0.9145,0
0.49,0.185,0.585,0.0,0.335,0.522,0.2535,1.171,1
0.475,0.16,0.585,2.0,0.285,0.48,0.234,1.0505,1
0.46,0.165,0.585,0.0,0.274,0.5825,0.2345,1.1135,1
0.47,0.165,0.585,0.0,0.295,0.8,0.229,1.409,1
0.475,0.15,0.585,0.0,0.2885,0.5315,0.199,1.065,1
0.45,0.18,0.585,0.0,0.237,0.336,0.1855,0.7995,0
0.445,0.135,0.59,2.0,0.23,0.328,0.1745,0.7715,0
0.47,0.18,0.59,0.0,0.31,0.5985,0.227,1.187,0
0.455,0.155,0.59,0.0,0.275,0.388,0.188,0.8855,1
0.465,0.15,0.595,1.0,0.2255,0.4115,0.196,0.98,1
0.465,0.155,0.595,1.0,0.305,0.4645,0.112,1.026,1
0.475,0.17,0.6,0.0,0.309,0.508,0.272,1.1315,1
0.48,0.155,0.6,0.0,0.325,0.451,0.1885,1.014,1
0.475,0.15,0.6,2.0,0.27,0.565,0.2465,1.12,1
0.465,0.155,0.6,1.0,0.28,0.4755,0.25,1.04,1
0.455,0.145,0.6,1.0,0.269,0.419,0.1715,0.8895,1
0.46,0.155,0.6,0.0,0.295,0.4455,0.189,0.9595,1
0.485,0.15,0.605,2.0,0.33,0.6315,0.226,1.238,1
0.49,0.14,0.605,0.0,0.315,0.419,0.206,0.9755,1
0.435,0.13,0.605,2.0,0.26,0.432,0.174,0.9025,1
0.475,0.175,0.605,1.0,0.335,0.463,0.2195,1.076,0
0.47,0.16,0.605,1.0,0.275,0.5405,0.2215,1.0835,1
0.45,0.15,0.61,0.0,0.25,0.407,0.1835,0.871,1
0.48,0.165,0.61,0.0,0.305,0.6345,0.257,1.244,1
0.475,0.17,0.61,0.0,0.3035,0.435,0.2335,1.0265,1
0.465,0.15,0.61,2.0,0.286,0.4495,0.1725,0.9605,0
0.48,0.17,0.61,0.0,0.347,0.4565,0.29,1.137,1
0.46,0.16,0.61,0.0,0.275,0.494,0.197,1.0,1
0.475,0.155,0.615,1.0,0.2895,0.4475,0.193,1.004,1
0.47,0.165,0.615,0.0,0.34,0.4465,0.2195,1.128,1
0.5,0.17,0.615,0.0,0.295,0.4845,0.228,1.054,1
0.475,0.165,0.615,1.0,0.3035,0.4905,0.1955,1.023,1
0.475,0.17,0.615,0.0,0.3,0.4795,0.302,1.129,1
0.48,0.175,0.615,0.0,0.3,0.446,0.3195,1.118,0
0.475,0.155,0.615,1.0,0.355,0.484,0.2115,1.115,1
0.51,0.175,0.62,0.0,0.39,0.5715,0.2385,1.2815,1
0.495,0.18,0.62,0.0,0.355,0.5765,0.254,1.2555,1
0.5,0.15,0.62,1.0,0.354,0.596,0.3135,1.293,1
0.475,0.16,0.62,1.0,0.33,0.463,0.2685,1.1295,1
0.455,0.17,0.625,0.0,0.315,0.4955,0.2345,1.082,0
0.505,0.175,0.625,1.0,0.3045,0.5475,0.256,1.15,1
0.515,0.16,0.625,1.0,0.321,0.5715,0.326,1.264,0
0.48,0.155,0.625,1.0,0.3185,0.5865,0.239,1.2035,1
0.485,0.17,0.63,1.0,0.345,0.5945,0.345,1.3205,0
0.505,0.18,0.63,2.0,0.315,0.6025,0.295,1.272,1
0.485,0.145,0.63,0.0,0.3365,0.5065,0.1785,1.062,1
0.475,0.145,0.63,2.0,0.28,0.5165,0.2195,1.0605,1
0.495,0.16,0.63,0.0,0.315,0.497,0.221,1.093,1
0.49,0.16,0.635,0.0,0.3455,0.534,0.1865,1.101,1
0.5,0.165,0.635,1.0,0.39,0.705,0.2645,1.4595,0
0.495,0.175,0.635,1.0,0.323,0.707,0.2725,1.211,0
0.475,0.17,0.635,0.0,0.3665,0.5205,0.2695,1.1935,1
0.51,0.155,0.635,0.0,0.31,0.405,0.2255,0.986,1
0.565,0.23,0.64,0.0,0.406,0.644,0.372,1.521,1
0.525,0.18,0.64,0.0,0.4075,0.4865,0.2995,1.3135,1
0.51,0.16,0.645,0.0,0.345,0.556,0.2385,1.1835,1
0.5,0.195,0.645,0.0,0.3725,0.6165,0.3515,1.401,1
0.525,0.16,0.645,0.0,0.4325,0.7455,0.245,1.5075,1
0.505,0.165,0.65,1.0,0.349,0.4785,0.274,1.16,1
0.59,0.22,0.65,1.0,0.435,0.77,0.378,1.662,1
0.525,0.175,0.65,0.0,0.405,0.6865,0.3585,1.5365,1
0.51,0.19,0.65,0.0,0.375,0.7155,0.3735,1.542,0
0.51,0.17,0.65,1.0,0.391,0.7245,0.349,1.567,1
0.525,0.19,0.655,1.0,0.3985,0.564,0.3215,1.3595,1
0.535,0.205,0.655,0.0,0.46,0.7305,0.3595,1.6445,1
0.52,0.19,0.655,1.0,0.383,0.6,0.3865,1.4545,1
0.49,0.175,0.655,0.0,0.365,0.6395,0.294,1.3585,1
0.495,0.21,0.66,1.0,0.3925,0.724,0.3525,1.548,1
0.515,0.17,0.66,1.0,0.3575,0.615,0.3125,1.337,1
0.53,0.18,0.665,1.0,0.435,0.6345,0.342,1.491,1
0.53,0.225,0.67,1.0,0.3725,0.63,0.487,1.5615,1
0.505,0.175,0.67,1.0,0.3745,0.4375,0.271,1.0145,1
0.545,0.185,0.675,0.0,0.469,0.876,0.3135,1.7375,1
0.545,0.205,0.685,0.0,0.461,0.8145,0.416,1.7925,0
0.565,0.19,0.695,1.0,0.4975,0.7465,0.399,1.7635,1
0.545,0.13,0.7,1.0,0.195,0.6725,0.374,1.556,1
0.565,0.515,0.705,0.0,0.512,1.1075,0.4865,2.21,1
0.555,0.215,0.705,0.0,0.528,1.0465,0.383,2.141,1
0.57,0.18,0.705,1.0,0.43,0.96,0.4195,1.5345,1
0.55,0.17,0.71,1.0,0.45,0.743,0.345,1.614,1
0.575,0.17,0.72,1.0,0.51,0.913,0.389,1.9335,1
0.575,0.215,0.72,0.0,0.5365,0.9515,0.564,2.173,1
0.6,0.2,0.725,1.0,0.595,0.697,0.3585,1.737,1
0.58,0.19,0.73,1.0,0.52,0.6785,0.4345,1.7375,1
0.565,0.205,0.735,1.0,0.565,0.949,0.46,2.1275,1
0.57,0.215,0.745,1.0,0.558,1.1565,0.446,2.25,0
0.61,0.235,0.75,1.0,0.612,1.232,0.519,2.5085,1
0.65,0.25,0.815,1.0,0.7975,0.8905,0.42,2.255,1
0.105,0.035,0.14,2.0,0.004,0.0055,0.0025,0.014,0
0.165,0.06,0.23,2.0,0.036,0.019,0.0145,0.0515,0
0.265,0.135,0.365,2.0,0.0605,0.105,0.047,0.2215,0
0.255,0.08,0.365,2.0,0.053,0.0785,0.0345,0.1985,0
0.27,0.095,0.37,2.0,0.0615,0.1325,0.041,0.232,0
0.28,0.085,0.375,2.0,0.067,0.187,0.046,0.3155,0
0.3,0.09,0.385,2.0,0.0675,0.1225,0.044,0.247,0
0.295,0.09,0.395,2.0,0.0765,0.143,0.0665,0.3025,0
0.29,0.11,0.4,2.0,0.0825,0.188,0.0455,0.329,0
0.3,0.09,0.4,2.0,0.08,0.1185,0.061,0.2815,0
0.31,0.095,0.405,2.0,0.0855,0.1785,0.064,0.3425,0
0.29,0.09,0.405,2.0,0.0815,0.112,0.075,0.2825,0
0.3,0.105,0.405,2.0,0.0805,0.1455,0.061,0.304,0
0.32,0.095,0.41,2.0,0.073,0.141,0.063,0.2905,0
0.315,0.115,0.415,0.0,0.103,0.2015,0.065,0.3895,0
0.34,0.105,0.425,2.0,0.088,0.2015,0.0905,0.389,0
0.34,0.105,0.43,2.0,0.1075,0.2385,0.0745,0.4405,0
0.34,0.105,0.44,2.0,0.1015,0.164,0.08,0.369,0
0.32,0.12,0.44,0.0,0.1025,0.2435,0.092,0.4565,0
0.365,0.11,0.44,2.0,0.1135,0.213,0.089,0.4465,0
0.335,0.125,0.45,0.0,0.11,0.2165,0.126,0.4475,0
0.335,0.135,0.455,2.0,0.1065,0.274,0.0995,0.501,0
0.355,0.11,0.46,2.0,0.125,0.1975,0.096,0.436,0
0.345,0.14,0.47,2.0,0.116,0.229,0.1105,0.4615,0
0.35,0.125,0.47,2.0,0.1175,0.19,0.1165,0.4315,0
0.355,0.12,0.47,2.0,0.1365,0.126,0.0835,0.3685,0
0.37,0.125,0.475,0.0,0.142,0.347,0.136,0.649,0
0.365,0.115,0.475,2.0,0.1165,0.2175,0.093,0.459,0
0.365,0.115,0.475,1.0,0.1335,0.281,0.117,0.566,0
0.36,0.125,0.48,2.0,0.147,0.2795,0.1025,0.542,0
0.38,0.12,0.485,2.0,0.147,0.2075,0.1075,0.4725,0
0.39,0.085,0.485,0.0,0.198,0.2945,0.103,0.6435,0
0.37,0.13,0.485,0.0,0.1555,0.2485,0.105,0.526,0
0.38,0.12,0.495,1.0,0.144,0.2655,0.1285,0.573,0
0.385,0.105,0.505,0.0,0.1555,0.239,0.1245,0.5525,0
0.38,0.135,0.505,1.0,0.161,0.361,0.1565,0.6855,0
0.395,0.125,0.515,2.0,0.17,0.2695,0.096,0.556,0
0.425,0.145,0.515,0.0,0.2185,0.497,0.181,0.9365,0
0.4,0.125,0.515,2.0,0.17,0.25,0.1245,0.5625,0
0.4,0.125,0.52,0.0,0.149,0.254,0.139,0.559,0
0.4,0.14,0.525,0.0,0.1735,0.3685,0.145,0.7205,0
0.43,0.13,0.53,2.0,0.189,0.346,0.1415,0.7045,0
0.4,0.125,0.53,0.0,0.175,0.398,0.151,0.7575,0
0.41,0.14,0.545,1.0,0.203,0.3565,0.1775,0.7405,0
0.43,0.14,0.55,1.0,0.1945,0.375,0.218,0.84,0
0.425,0.16,0.55,0.0,0.215,0.343,0.2035,0.793,0
0.43,0.15,0.56,1.0,0.22,0.453,0.161,0.8745,0
0.435,0.15,0.56,1.0,0.1835,0.4755,0.1835,0.8715,0
0.445,0.15,0.57,0.0,0.249,0.504,0.207,0.9875,0
0.465,0.15,0.575,0.0,0.238,0.595,0.2065,1.08,0
0.46,0.165,0.575,0.0,0.2385,0.4005,0.2465,0.9155,0
0.46,0.175,0.58,1.0,0.3055,0.65,0.2205,1.165,0
0.435,0.14,0.58,1.0,0.2095,0.475,0.2165,0.953,0
0.455,0.15,0.585,0.0,0.2335,0.4095,0.23,0.906,0
0.44,0.15,0.59,0.0,0.245,0.387,0.215,0.8725,0
0.465,0.15,0.59,1.0,0.2515,0.613,0.239,1.151,0
0.46,0.145,0.59,1.0,0.275,0.453,0.2205,0.9905,0
0.455,0.16,0.595,1.0,0.288,0.452,0.2655,1.04,0
0.455,0.155,0.6,0.0,0.25,0.4365,0.2085,0.945,0
0.465,0.2,0.6,0.0,0.357,0.6405,0.1985,1.259,0
0.485,0.165,0.605,1.0,0.2765,0.4535,0.193,0.9515,1
0.485,0.16,0.605,1.0,0.38,0.417,0.2875,1.201,0
0.515,0.17,0.605,1.0,0.3315,0.6,0.2945,1.289,0
0.485,0.17,0.61,1.0,0.305,0.5125,0.229,1.1005,1
0.475,0.13,0.615,2.0,0.251,0.353,0.1915,0.8425,0
0.485,0.155,0.62,0.0,0.25,0.462,0.231,1.049,1
0.435,0.155,0.62,1.0,0.275,0.477,0.236,1.012,0
0.48,0.165,0.62,0.0,0.312,0.4815,0.235,1.0725,0
0.52,0.175,0.625,0.0,0.3465,0.691,0.322,1.4105,1
0.47,0.18,0.625,0.0,0.305,0.451,0.3245,1.136,1
0.47,0.145,0.63,0.0,0.276,0.52,0.26,1.1005,0
0.5,0.175,0.63,1.0,0.329,0.467,0.268,1.1105,1
0.455,0.15,0.63,0.0,0.305,0.481,0.2745,1.1315,0
0.48,0.15,0.63,0.0,0.31,0.6605,0.2425,1.271,1
0.49,0.225,0.63,1.0,0.3245,0.6805,0.259,1.336,1
0.505,0.145,0.635,1.0,0.315,0.505,0.2655,1.1345,1
0.51,0.185,0.635,0.0,0.377,0.544,0.318,1.308,0
0.515,0.205,0.64,1.0,0.4025,0.6635,0.3345,1.5335,0
0.515,0.175,0.645,1.0,0.415,0.7035,0.365,1.546,1
0.51,0.155,0.645,0.0,0.43,0.6405,0.3585,1.539,1
0.505,0.165,0.645,1.0,0.335,0.55,0.3015,1.318,1
0.545,0.175,0.65,1.0,0.495,0.59,0.326,1.5245,1
0.515,0.175,0.65,0.0,0.4,0.677,0.3045,1.466,1
0.5,0.16,0.65,1.0,0.3195,0.702,0.304,1.3825,0
0.485,0.14,0.65,0.0,0.215,0.475,0.2435,1.175,0
0.54,0.215,0.655,1.0,0.444,0.695,0.296,1.5555,1
0.51,0.215,0.655,0.0,0.4195,0.8885,0.4095,1.7835,1
0.505,0.165,0.66,0.0,0.345,0.589,0.351,1.374,1
0.515,0.18,0.665,1.0,0.395,0.5945,0.324,1.389,1
0.545,0.2,0.67,0.0,0.41,0.833,0.374,1.7025,1
0.51,0.175,0.67,0.0,0.345,0.651,0.4475,1.5265,1
0.5,0.19,0.67,0.0,0.415,0.616,0.388,1.519,1
0.5,0.185,0.68,1.0,0.4685,0.7665,0.3255,1.741,1
0.515,0.17,0.68,0.0,0.395,0.8415,0.306,1.6115,1
0.525,0.2,0.69,0.0,0.461,0.9165,0.3325,1.7825,1
0.55,0.17,0.7,1.0,0.32,0.7535,0.3265,1.684,1
0.555,0.2,0.7,0.0,0.595,0.73,0.3665,1.858,1
0.56,0.165,0.705,0.0,0.388,0.797,0.4095,1.675,1
0.565,0.2,0.72,0.0,0.494,1.017,0.363,2.1055,1
0.575,0.24,0.725,0.0,0.5015,1.351,0.413,2.21,1
0.57,0.18,0.74,0.0,0.446,0.9115,0.427,1.8725,1
0.55,0.18,0.75,0.0,0.445,0.942,0.397,1.893,1
0.17,0.045,0.21,2.0,0.013,0.019,0.011,0.0475,0
0.21,0.055,0.285,2.0,0.0335,0.0415,0.017,0.101,0
0.215,0.07,0.295,2.0,0.0405,0.047,0.0155,0.121,0
0.23,0.085,0.3,2.0,0.0415,0.05,0.0175,0.117,0
0.225,0.09,0.305,2.0,0.0415,0.063,0.034,0.1465,0
0.255,0.08,0.335,2.0,0.05,0.079,0.0355,0.168,0
0.26,0.075,0.35,2.0,0.055,0.09,0.0245,0.18,0
0.27,0.075,0.355,2.0,0.054,0.079,0.0315,0.1775,0
0.26,0.09,0.355,2.0,0.058,0.0715,0.0495,0.1985,0
0.27,0.095,0.36,2.0,0.061,0.073,0.056,0.2,0
0.275,0.075,0.36,2.0,0.066,0.0985,0.044,0.2205,0
0.265,0.075,0.36,2.0,0.055,0.083,0.0365,0.1845,0
0.27,0.085,0.365,2.0,0.066,0.0935,0.0525,0.2225,0
0.27,0.095,0.37,2.0,0.065,0.097,0.046,0.2175,0
0.28,0.08,0.375,2.0,0.07,0.0935,0.0925,0.2165,0
0.285,0.095,0.38,2.0,0.075,0.0895,0.0665,0.243,0
0.29,0.1,0.38,2.0,0.082,0.108,0.0395,0.237,0
0.29,0.09,0.385,2.0,0.076,0.1,0.0505,0.2365,0
0.28,0.095,0.385,2.0,0.07,0.119,0.059,0.257,0
0.3,0.09,0.385,2.0,0.0835,0.1525,0.056,0.308,0
0.3,0.09,0.39,2.0,0.08,0.1065,0.053,0.252,0
0.285,0.1,0.39,2.0,0.077,0.1275,0.062,0.281,0
0.29,0.1,0.39,2.0,0.073,0.095,0.0465,0.2225,0
0.3,0.09,0.41,2.0,0.0955,0.129,0.071,0.304,0
0.3,0.09,0.41,2.0,0.075,0.141,0.0575,0.28,0
0.325,0.1,0.415,2.0,0.0965,0.139,0.0625,0.313,0
0.325,0.11,0.425,2.0,0.09,0.135,0.048,0.317,0
0.315,0.08,0.425,2.0,0.095,0.131,0.0585,0.303,0
0.335,0.1,0.435,2.0,0.11,0.129,0.07,0.3295,0
0.325,0.11,0.435,2.0,0.105,0.1595,0.08,0.367,0
0.34,0.095,0.45,2.0,0.105,0.1385,0.064,0.3245,0
0.335,0.11,0.45,2.0,0.1345,0.181,0.085,0.4195,0
0.36,0.115,0.455,2.0,0.147,0.2085,0.0855,0.457,1
0.35,0.11,0.46,2.0,0.1205,0.176,0.083,0.4,0
0.355,0.11,0.46,2.0,0.13,0.2015,0.081,0.4255,0
0.37,0.12,0.465,2.0,0.147,0.188,0.0815,0.4365,0
0.345,0.11,0.465,2.0,0.12,0.1825,0.0735,0.393,0
0.355,0.125,0.47,2.0,0.155,0.21,0.0985,0.499,0
0.36,0.145,0.475,2.0,0.19,0.2825,0.137,0.6325,0
0.36,0.1,0.475,0.0,0.112,0.1965,0.099,0.4285,0
0.36,0.125,0.475,2.0,0.125,0.205,0.1305,0.4905,0
0.37,0.125,0.48,2.0,0.175,0.179,0.1035,0.474,0
0.37,0.12,0.48,2.0,0.15,0.251,0.114,0.536,0
0.355,0.16,0.48,0.0,0.239,0.221,0.106,0.464,0
0.375,0.13,0.485,2.0,0.16,0.2935,0.1285,0.6025,0
0.375,0.115,0.49,2.0,0.143,0.204,0.0945,0.4615,0
0.4,0.135,0.49,2.0,0.169,0.3035,0.1285,0.624,0
0.37,0.125,0.495,2.0,0.15,0.2075,0.091,0.4715,0
0.4,0.105,0.495,2.0,0.19,0.2505,0.1265,0.602,0
0.4,0.12,0.5,2.0,0.1935,0.261,0.143,0.616,0
0.39,0.12,0.5,2.0,0.173,0.2455,0.147,0.5955,0
0.375,0.14,0.5,2.0,0.169,0.2375,0.135,0.559,0
0.395,0.13,0.51,2.0,0.162,0.281,0.143,0.6025,0
0.375,0.11,0.515,1.0,0.15,0.3005,0.131,0.6065,0
0.36,0.125,0.515,2.0,0.138,0.1815,0.125,0.4725,0
0.35,0.105,0.515,2.0,0.1275,0.213,0.123,0.4745,1
0.395,0.125,0.515,2.0,0.17,0.32,0.14,0.6635,0
0.39,0.125,0.515,2.0,0.185,0.238,0.1265,0.5705,0
0.41,0.145,0.52,2.0,0.165,0.2965,0.1595,0.646,0
0.39,0.13,0.52,2.0,0.1895,0.2355,0.1095,0.5545,0
0.415,0.145,0.525,0.0,0.2875,0.3525,0.1635,0.845,0
0.39,0.12,0.525,2.0,0.178,0.3115,0.147,0.664,0
0.38,0.135,0.525,2.0,0.175,0.261,0.159,0.615,0
0.4,0.14,0.525,2.0,0.169,0.305,0.16,0.654,0
0.4,0.155,0.525,0.0,0.225,0.282,0.1605,0.707,0
0.42,0.12,0.53,2.0,0.177,0.2555,0.141,0.5965,0
0.43,0.135,0.53,2.0,0.2135,0.245,0.1455,0.6255,1
0.4,0.145,0.53,2.0,0.195,0.1935,0.1305,0.555,0
0.42,0.13,0.53,2.0,0.249,0.3745,0.167,0.8365,1
0.4,0.13,0.535,2.0,0.175,0.2835,0.162,0.657,0
0.43,0.17,0.54,2.0,0.24,0.3725,0.1815,0.836,0
0.425,0.14,0.54,2.0,0.25,0.32,0.1395,0.742,0
0.43,0.14,0.54,2.0,0.2295,0.3935,0.1725,0.8195,0
0.455,0.14,0.54,0.0,0.269,0.419,0.255,0.972,1
0.42,0.14,0.54,2.0,0.235,0.2505,0.1175,0.6275,0
0.425,0.13,0.54,2.0,0.225,0.2955,0.169,0.7205,1
0.425,0.135,0.54,2.0,0.213,0.3475,0.1545,0.686,0
0.4,0.13,0.545,2.0,0.18,0.3285,0.1455,0.686,0
0.375,0.12,0.545,2.0,0.1725,0.2375,0.1155,0.543,0
0.42,0.125,0.545,2.0,0.22,0.358,0.112,0.717,0
0.435,0.14,0.55,0.0,0.259,0.327,0.1685,0.7625,1
0.425,0.15,0.55,2.0,0.217,0.269,0.1345,0.639,0
0.42,0.135,0.55,2.0,0.23,0.3995,0.1485,0.816,1
0.415,0.145,0.55,2.0,0.2215,0.373,0.16,0.7815,0
0.425,0.15,0.55,2.0,0.21,0.339,0.176,0.7665,0
0.395,0.13,0.555,2.0,0.17,0.222,0.1245,0.5585,0
0.435,0.14,0.555,2.0,0.206,0.3945,0.15,0.765,0
0.46,0.145,0.555,2.0,0.2765,0.3845,0.158,0.9005,1
0.445,0.15,0.56,2.0,0.236,0.3685,0.187,0.8225,1
0.44,0.13,0.56,2.0,0.2,0.349,0.149,0.7235,0
0.425,0.135,0.56,0.0,0.2645,0.3265,0.221,0.849,1
0.42,0.155,0.565,2.0,0.231,0.31,0.186,0.743,0
0.44,0.15,0.565,1.0,0.27,0.435,0.149,0.863,0
0.44,0.125,0.565,0.0,0.215,0.3595,0.1825,0.802,0
0.43,0.15,0.565,0.0,0.219,0.4245,0.1735,0.831,1
0.45,0.135,0.57,1.0,0.21,0.3345,0.185,0.7805,0
0.45,0.14,0.57,0.0,0.245,0.3385,0.148,0.795,0
0.435,0.17,0.57,2.0,0.25,0.4,0.166,0.848,0
0.43,0.145,0.57,2.0,0.2815,0.354,0.144,0.833,1
0.445,0.155,0.57,2.0,0.28,0.3705,0.1705,0.867,0
0.445,0.145,0.57,2.0,0.1825,0.306,0.172,0.7405,1
0.455,0.165,0.575,0.0,0.268,0.3765,0.1805,0.867,0
0.425,0.135,0.575,2.0,0.239,0.364,0.196,0.7965,1
0.47,0.155,0.575,1.0,0.34,0.509,0.238,1.116,1
0.45,0.125,0.575,2.0,0.235,0.3275,0.188,0.78,0
0.47,0.185,0.575,0.0,0.355,0.3745,0.2175,0.985,1
0.465,0.195,0.575,1.0,0.47,0.417,0.247,0.9965,0
0.445,0.17,0.575,2.0,0.25,0.3475,0.1465,0.8015,0
0.45,0.135,0.575,2.0,0.254,0.3615,0.176,0.807,1
0.435,0.15,0.575,1.0,0.36,0.4605,0.218,1.0305,0
0.445,0.16,0.575,0.0,0.239,0.4005,0.198,0.839,0
0.44,0.16,0.575,0.0,0.275,0.483,0.166,0.9615,1
0.435,0.15,0.58,1.0,0.23,0.428,0.1515,0.834,0
0.46,0.155,0.58,0.0,0.295,0.469,0.2225,1.0335,1
0.43,0.13,0.58,0.0,0.2285,0.365,0.173,0.798,1
0.445,0.125,0.58,2.0,0.235,0.303,0.1405,0.7095,0
0.445,0.14,0.585,1.0,0.253,0.4305,0.2205,0.913,1
0.49,0.165,0.59,0.0,0.309,0.559,0.235,1.207,1
0.45,0.145,0.59,2.0,0.265,0.428,0.268,1.022,1
0.46,0.145,0.59,2.0,0.26,0.419,0.1785,0.9015,1
0.435,0.15,0.595,1.0,0.265,0.4175,0.17,0.9,0
0.45,0.14,0.595,0.0,0.217,0.3965,0.194,0.838,1
0.45,0.145,0.595,0.0,0.2535,0.463,0.2065,0.959,1
0.46,0.15,0.595,2.0,0.235,0.377,0.1925,0.8335,0
0.46,0.155,0.6,1.0,0.3,0.427,0.2045,0.9735,0
0.475,0.15,0.6,1.0,0.305,0.575,0.196,1.13,0
0.48,0.165,0.6,0.0,0.2725,0.4135,0.1965,0.9165,0
0.48,0.17,0.6,2.0,0.29,0.38,0.2225,0.9175,0
0.48,0.18,0.6,1.0,0.325,0.4495,0.2455,1.0645,1
0.47,0.165,0.6,0.0,0.275,0.504,0.241,1.059,0
0.47,0.16,0.6,0.0,0.2635,0.5625,0.3045,1.194,1
0.455,0.145,0.605,1.0,0.275,0.468,0.1775,0.9775,0
0.475,0.145,0.605,0.0,0.27,0.3835,0.1905,0.884,0
0.47,0.145,0.605,2.0,0.22,0.379,0.2265,0.8025,0
0.48,0.14,0.605,1.0,0.24,0.4735,0.2345,0.991,0
0.47,0.155,0.605,1.0,0.3345,0.393,0.224,0.974,0
0.505,0.18,0.605,1.0,0.431,0.7285,0.264,1.434,1
0.475,0.155,0.61,0.0,0.266,0.4565,0.228,0.983,1
0.465,0.16,0.61,1.0,0.28,0.4835,0.2515,1.0725,1
0.485,0.15,0.61,1.0,0.3085,0.6025,0.2915,1.2405,1
0.47,0.16,0.61,0.0,0.2945,0.449,0.2345,1.022,0
0.475,0.16,0.61,1.0,0.379,0.3835,0.223,1.1155,1
0.465,0.125,0.61,2.0,0.26,0.436,0.19,0.9225,0
0.47,0.17,0.61,0.0,0.31,0.5225,0.2405,1.1185,0
0.485,0.18,0.61,1.0,0.355,0.5735,0.2855,1.2795,0
0.47,0.16,0.615,0.0,0.28,0.473,0.2395,1.0175,1
0.475,0.175,0.615,0.0,0.311,0.6035,0.261,1.224,0
0.485,0.18,0.62,2.0,0.315,0.4935,0.256,1.154,1
0.515,0.155,0.62,1.0,0.335,0.6685,0.2605,1.3255,1
0.515,0.175,0.62,0.0,0.395,0.535,0.241,1.221,1
0.54,0.165,0.62,1.0,0.357,0.4995,0.2435,1.139,1
0.49,0.16,0.62,2.0,0.305,0.446,0.246,1.066,1
0.48,0.18,0.62,1.0,0.313,0.582,0.2695,1.2215,1
0.47,0.14,0.62,2.0,0.295,0.3595,0.16,0.8565,0
0.45,0.135,0.62,2.0,0.2965,0.358,0.2265,0.924,1
0.48,0.15,0.62,0.0,0.309,0.6285,0.2575,1.266,1
0.48,0.175,0.62,1.0,0.3,0.464,0.2225,1.0405,0
0.49,0.165,0.625,0.0,0.3325,0.4895,0.2615,1.1165,1
0.475,0.16,0.625,0.0,0.3105,0.5005,0.2355,1.0845,1
0.5,0.17,0.625,0.0,0.354,0.4645,0.22,1.0985,0
0.47,0.155,0.625,2.0,0.3145,0.643,0.2055,1.1955,1
0.485,0.175,0.625,1.0,0.3705,0.6765,0.2615,1.362,1
0.485,0.15,0.625,2.0,0.278,0.438,0.2865,1.044,0
0.505,0.17,0.63,0.0,0.3,0.4615,0.266,1.0915,0
0.5,0.18,0.63,1.0,0.3995,0.514,0.2325,1.1965,0
0.49,0.17,0.63,0.0,0.339,0.5255,0.273,1.1745,1
0.485,0.165,0.63,0.0,0.3035,0.6565,0.2315,1.233,1
0.495,0.175,0.63,0.0,0.328,0.605,0.271,1.2695,1
0.5,0.165,0.635,2.0,0.3615,0.715,0.3445,1.489,1
0.5,0.17,0.635,0.0,0.418,0.611,0.309,1.4345,1
0.49,0.175,0.635,1.0,0.305,0.5805,0.313,1.2435,1
0.49,0.17,0.635,1.0,0.38,0.5385,0.2665,1.2615,0
0.505,0.165,0.64,1.0,0.36,0.5215,0.2695,1.2235,1
0.515,0.18,0.64,0.0,0.3685,0.5475,0.2925,1.247,1
0.525,0.185,0.64,0.0,0.4435,0.763,0.4205,1.707,1
0.505,0.15,0.645,0.0,0.335,0.519,0.2615,1.1605,1
0.5,0.175,0.645,0.0,0.386,0.5645,0.288,1.286,1
0.5,0.19,0.645,0.0,0.3845,0.741,0.3715,1.5595,1
0.51,0.19,0.645,0.0,0.48,0.605,0.345,1.4745,0
0.51,0.195,0.645,0.0,0.3745,0.5885,0.2215,1.226,1
0.51,0.16,0.645,0.0,0.317,0.6665,0.309,1.33,0
0.51,0.16,0.645,1.0,0.315,0.5815,0.276,1.2415,0
0.5,0.175,0.645,0.0,0.415,0.554,0.308,1.3375,1
0.51,0.19,0.645,1.0,0.36,0.573,0.362,1.363,1
0.485,0.15,0.645,0.0,0.33,0.5695,0.2735,1.2215,0
0.48,0.19,0.645,1.0,0.35,0.6925,0.2905,1.371,1
0.495,0.155,0.65,1.0,0.335,0.615,0.3195,1.337,0
0.505,0.19,0.65,0.0,0.391,0.59,0.23,1.274,1
0.525,0.185,0.65,0.0,0.378,0.665,0.337,1.488,1
0.51,0.16,0.65,0.0,0.3665,0.6385,0.2905,1.3835,0
0.55,0.18,0.655,0.0,0.365,0.586,0.281,1.274,1
0.51,0.15,0.655,1.0,0.305,0.4795,0.223,1.043,0
0.505,0.19,0.655,1.0,0.425,0.5935,0.2745,1.3485,1
0.505,0.195,0.655,1.0,0.363,0.688,0.3805,1.4405,1
0.5,0.165,0.66,0.0,0.341,0.667,0.269,1.3195,0
0.535,0.175,0.66,1.0,0.415,0.711,0.3125,1.5175,1
0.53,0.195,0.66,0.0,0.495,0.6505,0.3295,1.5505,1
0.51,0.165,0.66,0.0,0.3925,0.7685,0.3545,1.6375,1
0.525,0.175,0.665,0.0,0.353,0.6635,0.3845,1.443,1
0.505,0.16,0.665,0.0,0.3665,0.6145,0.253,1.289,1
0.505,0.16,0.665,1.0,0.32,0.631,0.2925,1.2915,1
0.52,0.175,0.665,0.0,0.395,0.606,0.32,1.3725,1
0.5,0.175,0.665,0.0,0.315,0.6075,0.314,1.2975,0
0.505,0.16,0.67,0.0,0.308,0.6255,0.311,1.2585,1
0.52,0.165,0.67,0.0,0.3,0.711,0.2865,1.39,1
0.52,0.19,0.67,1.0,0.4275,0.5235,0.3095,1.32,1
0.55,0.155,0.67,1.0,0.354,0.858,0.339,1.566,1
0.54,0.195,0.67,1.0,0.465,0.74,0.3305,1.619,1
0.525,0.16,0.675,0.0,0.3545,0.572,0.2755,1.2835,1
0.51,0.195,0.675,1.0,0.3965,0.6045,0.3175,1.382,1
0.52,0.195,0.68,0.0,0.4125,0.592,0.391,1.4535,1
0.51,0.2,0.68,1.0,0.4705,0.714,0.339,1.6075,1
0.52,0.15,0.685,0.0,0.32,0.7185,0.293,1.3735,1
0.565,0.175,0.685,1.0,0.438,0.7775,0.375,1.638,1
0.55,0.2,0.69,1.0,0.46,0.687,0.3675,1.569,1
0.565,0.175,0.7,0.0,0.54,0.8445,0.3935,1.8565,1
0.535,0.175,0.7,1.0,0.512,0.6805,0.48,1.773,1
0.545,0.17,0.705,1.0,0.265,0.6435,0.4565,1.58,1
0.575,0.215,0.71,0.0,0.502,0.9895,0.4475,2.009,1
0.57,0.195,0.71,1.0,0.48,0.9925,0.4925,1.9805,1
0.54,0.205,0.71,1.0,0.435,0.802,0.287,1.5805,1
0.56,0.22,0.71,0.0,0.566,0.9215,0.454,2.015,1
0.57,0.2,0.72,0.0,0.485,0.919,0.366,1.8275,1
0.55,0.205,0.72,0.0,0.511,1.1455,0.4425,2.125,1
0.525,0.18,0.72,1.0,0.435,0.631,0.3215,1.445,0
0.565,0.21,0.725,1.0,0.503,1.03,0.487,2.1425,1
0.56,0.19,0.73,1.0,0.5655,0.799,0.5195,1.9425,1
0.59,0.215,0.735,0.0,0.557,0.7275,0.403,1.747,1
0.565,0.205,0.74,1.0,0.482,0.9655,0.5185,2.119,1
0.565,0.215,0.75,1.0,0.575,0.7735,0.4825,1.938,1
0.595,0.205,0.75,0.0,0.63,1.083,0.421,2.2205,1
0.62,0.195,0.77,0.0,0.642,1.1155,0.6415,2.5155,1
0.63,0.25,0.775,0.0,0.578,1.3485,0.76,2.7795,1
0.175,0.09,0.275,2.0,0.0705,0.096,0.057,0.2315,0
0.245,0.1,0.375,2.0,0.1125,0.166,0.091,0.394,0
0.27,0.135,0.375,1.0,0.1675,0.272,0.131,0.597,0
0.28,0.125,0.39,0.0,0.143,0.3035,0.0955,0.564,0
0.3,0.12,0.435,2.0,0.1645,0.259,0.139,0.5965,0
0.32,0.12,0.445,0.0,0.117,0.199,0.09,0.414,0
0.335,0.105,0.455,2.0,0.1,0.229,0.0865,0.422,0
0.325,0.135,0.455,2.0,0.211,0.4005,0.1715,0.82,0
0.345,0.11,0.455,2.0,0.1215,0.207,0.0855,0.434,0
0.325,0.14,0.465,2.0,0.209,0.362,0.1535,0.7615,1
0.36,0.115,0.465,0.0,0.12,0.295,0.1395,0.5795,0
0.365,0.105,0.485,2.0,0.182,0.195,0.123,0.5205,0
0.37,0.155,0.485,0.0,0.2365,0.419,0.2455,0.968,0
0.345,0.16,0.485,2.0,0.319,0.3085,0.185,0.869,0
0.355,0.16,0.49,1.0,0.2825,0.3485,0.215,0.8795,0
0.37,0.15,0.5,0.0,0.296,0.494,0.223,1.0615,0
0.35,0.155,0.515,0.0,0.273,0.4185,0.198,0.9225,0
0.395,0.135,0.515,0.0,0.252,0.472,0.2495,1.007,0
0.365,0.17,0.525,0.0,0.276,0.438,0.2225,0.9605,1
0.38,0.125,0.525,0.0,0.159,0.303,0.155,0.65,0
0.41,0.14,0.53,0.0,0.2105,0.3495,0.1715,0.7545,0
0.425,0.135,0.535,1.0,0.1795,0.3765,0.1815,0.771,0
0.385,0.18,0.535,2.0,0.304,0.4955,0.2295,1.0835,0
0.42,0.165,0.545,2.0,0.228,0.4235,0.2195,0.8935,0
0.415,0.2,0.545,1.0,0.403,0.567,0.318,1.358,1
0.385,0.15,0.545,1.0,0.2845,0.5425,0.2445,1.1185,0
0.38,0.165,0.55,1.0,0.3345,0.543,0.294,1.205,1
0.42,0.16,0.55,0.0,0.344,0.6325,0.311,1.3405,1
0.455,0.175,0.57,0.0,0.29,0.4805,0.2145,1.02,0
0.44,0.185,0.575,0.0,0.2485,0.5075,0.2245,1.025,1
0.45,0.13,0.575,2.0,0.213,0.403,0.1715,0.8145,1
0.43,0.17,0.58,1.0,0.4155,0.6535,0.324,1.48,1
0.455,0.145,0.585,0.0,0.258,0.3945,0.2685,0.953,1
0.45,0.15,0.585,2.0,0.253,0.3975,0.2035,0.8915,0
0.495,0.175,0.6,0.0,0.3285,0.6195,0.284,1.3005,1
0.465,0.165,0.6,0.0,0.251,0.4975,0.2205,1.038,0
0.475,0.175,0.605,0.0,0.343,0.5575,0.3055,1.2525,0
0.475,0.15,0.605,0.0,0.297,0.575,0.232,1.15,1
0.475,0.15,0.61,1.0,0.3005,0.5195,0.2575,1.1135,1
0.455,0.145,0.615,1.0,0.315,0.5045,0.238,1.1155,1
0.47,0.145,0.62,0.0,0.2565,0.511,0.2715,1.0865,1
0.495,0.175,0.625,0.0,0.3185,0.5815,0.286,1.254,0
0.49,0.185,0.625,0.0,0.344,0.5275,0.2535,1.169,1
0.495,0.195,0.635,0.0,0.3475,0.445,0.3115,1.172,1
0.475,0.15,0.635,1.0,0.291,0.533,0.307,1.1845,1
0.475,0.14,0.64,1.0,0.31,0.4895,0.2295,1.0725,0
0.5,0.16,0.645,0.0,0.315,0.672,0.326,1.3815,0
0.525,0.19,0.65,0.0,0.3965,0.777,0.3685,1.6125,1
0.485,0.16,0.65,0.0,0.3075,0.5715,0.2785,1.7395,1
0.52,0.2,0.655,1.0,0.466,0.713,0.314,1.5475,0
0.545,0.19,0.655,0.0,0.378,0.6325,0.333,1.4245,1
0.515,0.185,0.665,1.0,0.4375,0.5595,0.293,1.3405,1
0.53,0.175,0.675,1.0,0.389,0.6775,0.33,1.4465,1
0.535,0.175,0.685,1.0,0.4215,0.7175,0.3775,1.5845,0
0.55,0.185,0.695,1.0,0.3965,0.805,0.4015,1.679,1
0.53,0.19,0.695,0.0,0.455,0.7625,0.436,1.726,1
0.545,0.18,0.705,1.0,0.4645,0.6075,0.3675,1.5395,1
0.55,0.195,0.72,1.0,0.5015,1.0715,0.4265,2.073,0
0.56,0.18,0.72,0.0,0.4425,0.691,0.375,1.5865,1
0.575,0.21,0.73,0.0,0.643,0.9285,0.409,2.069,1
0.135,0.04,0.185,2.0,0.009,0.0105,0.0055,0.027,0
0.18,0.055,0.24,2.0,0.018,0.0235,0.013,0.0555,0
0.215,0.075,0.31,2.0,0.036,0.0565,0.0275,0.1275,0
0.26,0.085,0.34,2.0,0.06,0.0815,0.0335,0.1885,0
0.265,0.08,0.35,2.0,0.06,0.09,0.042,0.2,0
0.27,0.085,0.365,2.0,0.065,0.0815,0.0325,0.197,0
0.275,0.085,0.365,2.0,0.075,0.098,0.0375,0.223,0
0.27,0.075,0.365,2.0,0.07,0.095,0.0445,0.2215,0
0.31,0.105,0.39,2.0,0.081,0.1185,0.0525,0.2665,0
0.3,0.09,0.405,2.0,0.11,0.103,0.067,0.269,0
0.315,0.095,0.41,2.0,0.11,0.114,0.0345,0.2805,0
0.335,0.105,0.41,2.0,0.105,0.1405,0.064,0.3305,0
0.31,0.09,0.415,2.0,0.085,0.1245,0.0615,0.2815,0
0.31,0.1,0.415,2.0,0.0975,0.114,0.0565,0.2805,0
0.31,0.095,0.415,2.0,0.115,0.1125,0.0625,0.311,0
0.325,0.1,0.42,2.0,0.1135,0.1675,0.0625,0.368,1
0.34,0.1,0.43,2.0,0.12,0.1395,0.0665,0.3405,0
0.335,0.1,0.435,2.0,0.098,0.135,0.0785,0.3245,0
0.33,0.11,0.435,2.0,0.11,0.1515,0.0945,0.38,0
0.33,0.105,0.435,2.0,0.105,0.156,0.0555,0.335,0
0.345,0.12,0.435,2.0,0.1185,0.13,0.056,0.3215,0
0.33,0.11,0.445,2.0,0.1185,0.1525,0.067,0.358,0
0.37,0.11,0.465,2.0,0.166,0.1635,0.096,0.445,0
0.375,0.12,0.47,2.0,0.135,0.196,0.099,0.487,0
0.34,0.105,0.475,2.0,0.1465,0.203,0.08,0.4535,0
0.385,0.13,0.485,2.0,0.154,0.2505,0.178,0.568,0
0.36,0.12,0.485,2.0,0.147,0.2465,0.1025,0.5155,0
0.37,0.115,0.485,2.0,0.15,0.1885,0.0965,0.457,0
0.38,0.135,0.495,2.0,0.165,0.2065,0.1165,0.5095,0
0.38,0.145,0.495,2.0,0.1505,0.205,0.148,0.5,0
0.375,0.14,0.495,2.0,0.191,0.181,0.0975,0.494,0
0.38,0.11,0.5,2.0,0.15,0.28,0.106,0.5605,0
0.405,0.13,0.505,2.0,0.225,0.2245,0.1175,0.599,1
0.4,0.145,0.505,2.0,0.207,0.334,0.1425,0.7045,0
0.4,0.12,0.51,1.0,0.195,0.347,0.1105,0.7005,1
0.415,0.135,0.515,2.0,0.245,0.285,0.152,0.7125,1
0.42,0.15,0.515,2.0,0.235,0.2555,0.1335,0.6725,1
0.385,0.11,0.515,0.0,0.14,0.253,0.16,0.5785,0
0.41,0.11,0.52,2.0,0.184,0.2165,0.0915,0.5185,0
0.415,0.14,0.52,2.0,0.168,0.308,0.1335,0.6375,0
0.395,0.125,0.52,2.0,0.165,0.2445,0.146,0.5805,0
0.38,0.115,0.52,2.0,0.1425,0.3285,0.17,0.6645,0
0.385,0.115,0.52,2.0,0.143,0.2555,0.156,0.581,1
0.415,0.12,0.525,2.0,0.1695,0.2805,0.12,0.596,0
0.405,0.145,0.525,2.0,0.21,0.3045,0.1535,0.6965,0
0.4,0.145,0.525,2.0,0.175,0.248,0.159,0.6095,0
0.43,0.14,0.53,2.0,0.23,0.298,0.0965,0.677,0
0.43,0.16,0.53,2.0,0.24,0.321,0.1275,0.7245,0
0.395,0.13,0.53,2.0,0.183,0.247,0.115,0.575,0
0.405,0.12,0.53,2.0,0.1875,0.2715,0.148,0.632,0
0.455,0.14,0.535,2.0,0.244,0.53,0.1765,1.0015,0
0.425,0.16,0.54,1.0,0.295,0.3675,0.2005,0.9455,0
0.395,0.135,0.54,2.0,0.192,0.2705,0.155,0.6555,0
0.39,0.125,0.54,2.0,0.19,0.2525,0.158,0.6255,0
0.425,0.14,0.545,2.0,0.244,0.305,0.231,0.8145,1
0.43,0.14,0.545,2.0,0.25,0.2615,0.1405,0.687,0
0.435,0.14,0.55,2.0,0.238,0.295,0.1905,0.7995,1
0.45,0.13,0.55,2.0,0.23,0.3375,0.1405,0.804,0
0.435,0.14,0.555,0.0,0.214,0.341,0.1645,0.7495,0
0.41,0.125,0.555,0.0,0.194,0.2345,0.1465,0.599,0
0.4,0.13,0.555,0.0,0.18,0.332,0.1585,0.7075,0
0.45,0.175,0.555,2.0,0.22,0.304,0.1755,0.738,0
0.455,0.135,0.555,0.0,0.235,0.382,0.171,0.837,0
0.445,0.165,0.56,2.0,0.279,0.3455,0.179,0.832,0
0.445,0.125,0.565,1.0,0.23,0.3135,0.1785,0.8305,1
0.415,0.125,0.565,0.0,0.185,0.302,0.1545,0.667,0
0.455,0.155,0.565,0.0,0.26,0.421,0.183,0.9355,1
0.435,0.145,0.565,2.0,0.255,0.3975,0.158,0.8445,0
0.45,0.16,0.565,0.0,0.246,0.415,0.195,0.895,0
0.46,0.155,0.565,2.0,0.25,0.3755,0.215,0.8715,1
0.46,0.155,0.57,0.0,0.265,0.454,0.205,1.0005,1
0.455,0.155,0.57,0.0,0.277,0.3585,0.174,0.832,1
0.44,0.175,0.57,0.0,0.283,0.3805,0.2285,0.9415,0
0.415,0.13,0.57,0.0,0.238,0.4275,0.1955,0.88,1
0.44,0.12,0.57,1.0,0.234,0.382,0.1525,0.803,0
0.45,0.13,0.575,0.0,0.2265,0.318,0.193,0.785,0
0.45,0.155,0.575,0.0,0.235,0.495,0.2145,0.9765,0
0.435,0.135,0.575,0.0,0.239,0.432,0.2225,0.992,1
0.455,0.155,0.575,0.0,0.295,0.4685,0.2085,1.013,1
0.445,0.145,0.575,0.0,0.27,0.3795,0.1615,0.876,1
0.465,0.175,0.575,1.0,0.35,0.4735,0.202,1.099,0
0.45,0.135,0.575,2.0,0.225,0.45,0.162,0.8715,1
0.45,0.135,0.575,2.0,0.239,0.3375,0.2115,0.8245,1
0.43,0.155,0.575,1.0,0.22,0.3485,0.1925,0.7955,0
0.475,0.145,0.575,0.0,0.269,0.3665,0.173,0.857,0
0.45,0.195,0.58,1.0,0.225,0.4035,0.173,0.8265,0
0.5,0.165,0.58,1.0,0.3005,0.37,0.185,0.925,1
0.44,0.15,0.58,0.0,0.2795,0.518,0.2185,1.0465,1
0.44,0.145,0.58,2.0,0.242,0.3525,0.1645,0.7905,1
0.44,0.16,0.58,0.0,0.2485,0.3365,0.2005,0.8295,0
0.455,0.15,0.595,0.0,0.223,0.4315,0.201,0.886,1
0.47,0.135,0.6,1.0,0.264,0.4655,0.1955,0.97,1
0.46,0.17,0.6,0.0,0.329,0.456,0.337,1.1805,1
0.475,0.15,0.6,0.0,0.3105,0.386,0.2195,0.99,1
0.465,0.16,0.6,1.0,0.298,0.466,0.2885,1.133,1
0.49,0.165,0.605,2.0,0.352,0.482,0.1935,1.071,1
0.455,0.145,0.605,1.0,0.3,0.334,0.1985,0.862,0
0.47,0.18,0.605,0.0,0.321,0.479,0.2565,1.1155,1
0.48,0.14,0.61,0.0,0.27,0.4375,0.2615,1.031,0
0.46,0.145,0.61,1.0,0.2985,0.478,0.2945,1.1185,1
0.46,0.155,0.61,1.0,0.265,0.4255,0.1975,0.957,0
0.47,0.165,0.61,1.0,0.294,0.566,0.2785,1.1785,1
0.47,0.145,0.615,0.0,0.285,0.4435,0.2825,1.0285,1
0.47,0.15,0.615,0.0,0.2685,0.4975,0.283,1.0875,0
0.495,0.16,0.615,1.0,0.3225,0.5815,0.3195,1.255,1
0.495,0.2,0.615,0.0,0.3885,0.564,0.227,1.219,1
0.49,0.16,0.62,0.0,0.285,0.44,0.2525,1.035,1
0.49,0.15,0.62,0.0,0.355,0.4605,0.302,1.195,0
0.495,0.17,0.62,1.0,0.34,0.372,0.213,1.062,1
0.495,0.195,0.62,0.0,0.5195,0.579,0.346,1.5145,1
0.47,0.15,0.62,0.0,0.325,0.587,0.4405,1.309,0
0.485,0.155,0.62,0.0,0.335,0.425,0.2315,1.0295,1
0.495,0.155,0.625,0.0,0.3215,0.487,0.212,1.0485,1
0.515,0.17,0.625,0.0,0.361,0.5725,0.3005,1.331,0
0.505,0.185,0.625,0.0,0.3535,0.52,0.2405,1.1565,1
0.445,0.16,0.625,1.0,0.304,0.46,0.2965,1.09,1
0.52,0.18,0.625,1.0,0.375,0.4845,0.351,1.354,1
0.47,0.145,0.625,1.0,0.265,0.475,0.2,0.984,1
0.49,0.155,0.63,0.0,0.289,0.63,0.246,1.2525,0
0.485,0.165,0.635,1.0,0.3395,0.5635,0.3065,1.2695,1
0.52,0.165,0.635,1.0,0.412,0.5065,0.296,1.3405,1
0.505,0.155,0.635,1.0,0.345,0.594,0.314,1.2895,1
0.525,0.16,0.635,0.0,0.335,0.5435,0.246,1.195,1
0.5,0.165,0.635,0.0,0.365,0.6535,0.213,1.273,1
0.515,0.165,0.635,0.0,0.3535,0.5055,0.2975,1.229,1
0.53,0.165,0.64,0.0,0.35,0.4765,0.3,1.1895,1
0.48,0.145,0.64,1.0,0.34,0.508,0.24,1.1145,1
0.515,0.165,0.64,1.0,0.41,0.4945,0.2555,1.3115,1
0.49,0.135,0.64,2.0,0.2925,0.488,0.2505,1.1,1
0.49,0.155,0.64,0.0,0.34,0.477,0.269,1.1285,0
0.485,0.185,0.64,1.0,0.3255,0.6735,0.3465,1.4195,1
0.51,0.18,0.645,1.0,0.4675,0.7815,0.322,1.6195,1
0.49,0.175,0.645,0.0,0.3385,0.6525,0.2375,1.32,1
0.52,0.21,0.645,1.0,0.474,0.616,0.3655,1.5535,1
0.52,0.15,0.65,2.0,0.3305,0.5495,0.296,1.238,1
0.51,0.155,0.65,1.0,0.3645,0.483,0.278,1.189,1
0.51,0.185,0.65,1.0,0.3985,0.531,0.384,1.375,1
0.515,0.18,0.655,1.0,0.497,0.6195,0.2485,1.412,1
0.525,0.175,0.655,1.0,0.394,0.5855,0.2605,1.348,1
0.52,0.17,0.655,0.0,0.348,0.53,0.223,1.1445,0
0.535,0.205,0.66,1.0,0.49,0.5925,0.2775,1.4415,1
0.51,0.175,0.66,0.0,0.37,0.5055,0.303,1.218,1
0.5,0.15,0.665,1.0,0.3595,0.4625,0.2955,1.2475,1
0.515,0.2,0.665,0.0,0.436,0.5115,0.2675,1.2695,1
0.525,0.18,0.665,0.0,0.4,0.6715,0.29,1.429,1
0.53,0.205,0.67,1.0,0.416,0.643,0.2465,1.4015,1
0.515,0.15,0.675,0.0,0.4115,0.556,0.2845,1.312,1
0.51,0.185,0.675,1.0,0.4245,0.6295,0.3025,1.473,1
0.54,0.19,0.68,0.0,0.4715,0.7165,0.354,1.623,1
0.54,0.155,0.68,0.0,0.384,0.671,0.379,1.534,1
0.535,0.155,0.685,0.0,0.4075,0.6615,0.2145,1.3845,1
0.55,0.18,0.69,0.0,0.5,0.6655,0.402,1.6915,1
0.545,0.185,0.695,0.0,0.4505,0.6645,0.3835,1.5715,1
0.575,0.205,0.7,1.0,0.538,0.605,0.447,1.773,1
0.55,0.175,0.7,0.0,0.375,0.6565,0.2985,1.4405,1
0.55,0.195,0.7,0.0,0.535,0.675,0.347,1.6245,1
0.535,0.22,0.705,1.0,0.4395,0.929,0.3835,1.866,1
0.575,0.18,0.72,1.0,0.501,0.732,0.3605,1.6705,1
0.565,0.19,0.72,0.0,0.503,1.0815,0.4305,2.081,1
0.57,0.205,0.725,1.0,0.488,0.744,0.315,1.6195,1
0.55,0.195,0.75,1.0,0.44,0.83,0.366,1.8325,1
0.605,0.215,0.76,0.0,0.646,0.801,0.4915,2.173,1
0.13,0.04,0.135,2.0,0.008,0.0125,0.0065,0.029,0
0.11,0.025,0.16,2.0,0.006,0.0075,0.005,0.0195,0
0.15,0.055,0.21,2.0,0.015,0.017,0.012,0.0465,0
0.21,0.075,0.28,2.0,0.03,0.053,0.0265,0.1195,0
0.2,0.065,0.28,2.0,0.03,0.036,0.0185,0.0895,0
0.215,0.06,0.285,2.0,0.03,0.031,0.023,0.0935,0
0.21,0.07,0.29,2.0,0.03,0.048,0.0205,0.1115,0
0.21,0.06,0.29,2.0,0.03,0.056,0.0235,0.1195,0
0.21,0.065,0.29,2.0,0.03,0.0375,0.022,0.097,0
0.24,0.07,0.32,2.0,0.041,0.0585,0.0255,0.133,0
0.25,0.07,0.325,2.0,0.04,0.0875,0.0355,0.1745,0
0.25,0.08,0.335,2.0,0.0495,0.0695,0.044,0.1695,0
0.235,0.08,0.35,2.0,0.0495,0.0725,0.0465,0.17,0
0.25,0.07,0.35,2.0,0.046,0.0715,0.0335,0.1605,0
0.27,0.105,0.355,2.0,0.0735,0.1425,0.0525,0.271,0
0.27,0.085,0.36,2.0,0.062,0.1065,0.038,0.2185,0
0.27,0.085,0.36,2.0,0.053,0.0905,0.034,0.196,0
0.28,0.08,0.375,2.0,0.065,0.105,0.047,0.226,0
0.275,0.085,0.375,2.0,0.0605,0.109,0.05,0.22,0
0.29,0.095,0.395,2.0,0.078,0.158,0.068,0.3,0
0.25,0.09,0.405,2.0,0.0805,0.128,0.063,0.2875,0
0.325,0.11,0.415,2.0,0.0925,0.1385,0.0795,0.316,0
0.315,0.095,0.425,2.0,0.0985,0.1865,0.0675,0.3675,0
0.32,0.11,0.43,2.0,0.105,0.1675,0.102,0.3675,0
0.325,0.12,0.435,2.0,0.095,0.159,0.084,0.346,0
0.33,0.105,0.45,0.0,0.129,0.2575,0.082,0.4955,0
0.35,0.11,0.46,2.0,0.1375,0.2125,0.099,0.4675,0
0.365,0.135,0.47,0.0,0.145,0.2395,0.1525,0.522,1
0.375,0.105,0.47,2.0,0.145,0.167,0.0865,0.441,1
0.365,0.12,0.475,2.0,0.1365,0.268,0.1095,0.5185,0
0.39,0.12,0.505,0.0,0.167,0.3315,0.1385,0.653,0
0.395,0.135,0.505,0.0,0.185,0.288,0.1315,0.5915,1
0.385,0.115,0.505,0.0,0.1535,0.21,0.1035,0.4825,1
0.455,0.135,0.51,2.0,0.2035,0.2875,0.154,0.6855,0
0.4,0.14,0.515,0.0,0.168,0.288,0.145,0.6335,0
0.41,0.13,0.525,0.0,0.1765,0.3435,0.1495,0.6875,0
0.43,0.15,0.53,1.0,0.196,0.325,0.1855,0.741,0
0.405,0.13,0.53,1.0,0.185,0.2635,0.1565,0.6355,0
0.44,0.14,0.545,0.0,0.2385,0.356,0.1905,0.8395,1
0.47,0.15,0.55,1.0,0.2675,0.381,0.2435,0.9205,1
0.41,0.16,0.56,1.0,0.253,0.342,0.184,0.8215,0
0.445,0.145,0.565,0.0,0.2475,0.4345,0.212,0.9255,0
0.435,0.15,0.57,1.0,0.245,0.3875,0.156,0.8295,1
0.46,0.16,0.58,0.0,0.2625,0.513,0.2705,1.063,0
0.465,0.165,0.59,0.0,0.275,0.5165,0.273,1.115,1
0.45,0.14,0.6,1.0,0.2425,0.37,0.177,0.837,1
0.445,0.14,0.605,0.0,0.295,0.4295,0.2085,0.982,1
0.49,0.16,0.61,0.0,0.341,0.465,0.228,1.112,1
0.515,0.18,0.625,1.0,0.3925,0.5255,0.252,1.3485,1
0.515,0.195,0.66,0.0,0.386,0.7345,0.353,1.5655,0
0.19,0.06,0.255,2.0,0.025,0.04,0.0185,0.086,0
0.195,0.065,0.27,2.0,0.0285,0.0475,0.0225,0.1065,0
0.215,0.08,0.28,2.0,0.033,0.072,0.022,0.132,0
0.215,0.07,0.285,2.0,0.027,0.051,0.0225,0.1075,0
0.255,0.085,0.32,2.0,0.057,0.072,0.033,0.1745,0
0.24,0.07,0.325,2.0,0.054,0.0565,0.0305,0.152,0
0.28,0.1,0.385,2.0,0.0725,0.1305,0.061,0.2755,0
0.295,0.1,0.395,2.0,0.082,0.14,0.062,0.293,0
0.305,0.16,0.4,1.0,0.105,0.173,0.0705,0.368,0
0.31,0.09,0.405,2.0,0.087,0.138,0.06,0.312,0
0.305,0.12,0.415,2.0,0.0805,0.165,0.076,0.336,0
0.315,0.115,0.42,2.0,0.087,0.1895,0.065,0.355,0
0.305,0.115,0.44,2.0,0.11,0.162,0.091,0.379,0
0.32,0.12,0.445,2.0,0.12,0.152,0.0825,0.378,0
0.35,0.13,0.45,0.0,0.135,0.2075,0.1045,0.4655,0
0.355,1.13,0.455,1.0,0.1335,0.332,0.116,0.594,0
0.345,0.12,0.46,0.0,0.132,0.2435,0.1175,0.4935,0
0.345,0.11,0.46,0.0,0.116,0.235,0.0885,0.4595,0
0.36,0.11,0.465,0.0,0.121,0.2665,0.085,0.4955,0
0.355,0.09,0.465,2.0,0.1275,0.2005,0.074,0.4325,0
0.38,0.14,0.475,1.0,0.1955,0.3165,0.1315,0.689,0
0.35,0.135,0.48,2.0,0.158,0.2735,0.0995,0.5465,0
0.39,0.135,0.485,0.0,0.1635,0.25,0.1345,0.617,0
0.37,0.11,0.49,2.0,0.139,0.271,0.1035,0.538,0
0.39,0.135,0.5,0.0,0.2385,0.361,0.1575,0.7815,0
0.38,0.14,0.5,1.0,0.1785,0.277,0.143,0.6355,0
0.385,0.13,0.505,0.0,0.1515,0.3135,0.149,0.6435,0
0.385,0.1,0.525,0.0,0.1455,0.246,0.1005,0.5115,0
0.42,0.125,0.535,0.0,0.1795,0.355,0.1895,0.738,0
0.42,0.13,0.535,1.0,0.2035,0.3125,0.1565,0.699,0
0.385,0.14,0.54,1.0,0.2365,0.3265,0.116,0.7655,1
0.42,0.13,0.54,1.0,0.1845,0.368,0.1675,0.7505,0
0.43,0.16,0.545,1.0,0.231,0.3945,0.1855,0.844,0
0.41,0.13,0.55,0.0,0.213,0.4455,0.2115,0.8705,0
0.42,0.115,0.55,2.0,0.209,0.2925,0.137,0.668,1
0.44,0.135,0.565,1.0,0.238,0.393,0.1735,0.83,0
0.45,0.12,0.58,0.0,0.2605,0.418,0.1475,0.8685,0
0.435,0.15,0.58,1.0,0.192,0.3485,0.207,0.839,0
0.485,0.15,0.585,1.0,0.356,0.4145,0.2115,1.079,1
0.465,0.15,0.595,0.0,0.262,0.4335,0.1765,0.919,0
0.47,0.19,0.6,1.0,0.3375,0.492,0.2595,1.1345,1
0.43,0.14,0.61,1.0,0.22,0.438,0.2,0.909,0
0.48,0.165,0.61,0.0,0.372,0.5575,0.2675,1.2435,0
0.49,0.16,0.62,1.0,0.2725,0.493,0.244,1.056,0
0.495,0.15,0.645,0.0,0.339,0.603,0.2225,1.2095,0
0.5,0.14,0.65,0.0,0.32,0.6165,0.2355,1.238,0
0.525,0.21,0.665,1.0,0.4275,0.818,0.3395,1.644,1
0.55,0.2,0.685,0.0,0.49,0.813,0.387,1.7725,1
0.54,0.195,0.69,1.0,0.462,0.73,0.3975,1.2525,1
0.57,0.185,0.705,1.0,0.488,0.747,0.3725,1.761,1
0.5,0.15,0.71,1.0,0.28,0.6835,0.2815,1.3165,1
0.585,0.22,0.72,0.0,0.479,0.9155,0.448,1.914,1
0.575,0.215,0.72,1.0,0.602,0.8565,0.4825,2.1,1
0.555,0.18,0.73,1.0,0.4935,0.6555,0.1965,1.6895,1
0.57,0.22,0.775,0.0,0.6585,0.735,0.4755,2.032,1
0.39,0.115,0.505,1.0,0.175,0.3045,0.1555,0.66,0
0.425,0.13,0.53,0.0,0.245,0.2995,0.1355,0.7455,1
0.385,0.115,0.505,1.0,0.21,0.243,0.1075,0.616,1
0.305,0.09,0.405,2.0,0.095,0.114,0.0575,0.2825,0
0.3,0.1,0.415,0.0,0.095,0.1545,0.0685,0.3355,0
0.39,0.145,0.5,0.0,0.22,0.273,0.132,0.651,1
0.33,0.08,0.425,0.0,0.125,0.134,0.0825,0.361,0
0.35,0.1,0.47,0.0,0.175,0.1885,0.0885,0.4775,0
0.31,0.115,0.4,1.0,0.115,0.1475,0.0695,0.3465,1
0.29,0.1,0.37,2.0,0.085,0.1025,0.0505,0.25,1
0.38,0.155,0.5,0.0,0.215,0.2655,0.1365,0.66,1
0.31,0.11,0.41,2.0,0.095,0.124,0.082,0.315,0
0.29,0.1,0.375,0.0,0.085,0.1175,0.0565,0.276,0
0.385,0.125,0.49,1.0,0.165,0.2175,0.128,0.5395,1
0.48,0.185,0.585,0.0,0.285,0.434,0.265,1.04,1
0.455,0.155,0.595,0.0,0.365,0.416,0.2105,1.041,1
0.55,0.18,0.675,1.0,0.6,0.562,0.3705,1.6885,1
0.535,0.225,0.665,0.0,0.885,0.7535,0.391,2.1835,1
0.49,0.17,0.62,0.0,0.335,0.5185,0.2555,1.2105,1
0.25,0.055,0.325,2.0,0.045,0.076,0.051,0.166,0
0.355,0.08,0.455,2.0,0.125,0.2165,0.0995,0.452,0
0.405,0.13,0.525,0.0,0.175,0.3265,0.1975,0.7185,0
0.29,0.09,0.385,2.0,0.08,0.0855,0.0495,0.232,0
0.095,0.035,0.13,2.0,0.0035,0.005,0.0065,0.0105,0
0.13,0.045,0.18,2.0,0.009,0.0125,0.01,0.0275,0
0.225,0.05,0.31,2.0,0.045,0.0675,0.0385,0.1445,0
0.29,0.08,0.375,1.0,0.08,0.1405,0.0725,0.282,0
0.38,0.12,0.48,1.0,0.185,0.2705,0.1405,0.608,0
0.37,0.125,0.455,2.0,0.145,0.201,0.1265,0.433,0
0.325,0.1,0.425,0.0,0.11,0.1365,0.0725,0.3295,0
0.36,0.11,0.475,2.0,0.145,0.177,0.0965,0.4555,0
0.35,0.12,0.435,1.0,0.13,0.192,0.1,0.4585,1
0.21,0.075,0.29,1.0,0.035,0.113,0.0675,0.275,0
0.295,0.095,0.385,0.0,0.09,0.147,0.094,0.335,0
0.375,0.115,0.47,0.0,0.15,0.1685,0.0755,0.4265,0
0.4,0.125,0.5,1.0,0.185,0.2395,0.126,0.5765,1
0.31,0.1,0.4,2.0,0.085,0.106,0.071,0.127,0
0.51,0.175,0.62,0.0,0.4,0.4375,0.2265,1.1505,1
0.47,0.15,0.595,0.0,0.245,0.359,0.2105,0.8915,1
0.455,0.14,0.585,0.0,0.295,0.462,0.185,0.97,0
0.24,0.08,0.32,0.0,0.055,0.08,0.0385,0.18,0
0.41,0.125,0.52,1.0,0.215,0.2945,0.1625,0.6985,1
0.35,0.11,0.44,0.0,0.13,0.2,0.0885,0.4585,0
0.33,0.115,0.44,1.0,0.12,0.143,0.113,0.4005,0
0.425,0.1,0.565,0.0,0.18,0.3055,0.166,0.7145,1
0.425,0.125,0.56,1.0,0.335,0.361,0.213,0.932,0
0.455,0.175,0.59,1.0,0.31,0.391,0.2455,0.966,1
0.465,0.18,0.57,1.0,0.295,0.405,0.277,0.9995,1
0.53,0.205,0.68,0.0,0.465,0.5825,0.337,1.496,1
0.36,0.125,0.45,1.0,0.16,0.222,0.105,0.5065,1
0.24,0.075,0.32,2.0,0.05,0.076,0.0355,0.1735,0
0.35,0.11,0.46,2.0,0.125,0.1685,0.0865,0.3945,0
0.37,0.105,0.47,0.0,0.155,0.2025,0.1015,0.4665,1
0.35,0.105,0.455,0.0,0.135,0.1575,0.083,0.401,0
0.325,0.115,0.415,1.0,0.11,0.1405,0.0765,0.3455,0
0.35,0.12,0.465,0.0,0.185,0.2015,0.1625,0.5205,1
0.375,0.135,0.46,0.0,0.17,0.186,0.0845,0.4935,1
0.31,0.09,0.415,0.0,0.115,0.1305,0.0735,0.3245,0
0.195,0.07,0.27,0.0,0.036,0.0465,0.018,0.106,0
0.355,0.11,0.445,0.0,0.1505,0.1805,0.1035,0.4415,1
0.585,0.19,0.745,1.0,0.5855,0.8435,0.437,1.966,1
0.3,0.115,0.4,1.0,0.0935,0.1335,0.0465,0.3025,0
0.2,0.075,0.28,2.0,0.035,0.0545,0.0115,0.1225,0
0.44,0.135,0.55,0.0,0.265,0.368,0.2095,0.879,1
0.46,0.165,0.58,0.0,0.435,0.473,0.1965,1.2275,1
0.5,0.165,0.61,0.0,0.49,0.4915,0.185,1.2715,1
0.495,0.175,0.62,0.0,0.725,0.643,0.3285,1.806,1
0.42,0.195,0.56,0.0,0.285,0.3025,0.1795,0.8085,1
0.51,0.2,0.64,1.0,0.41,0.61,0.3315,1.3905,1
0.55,0.2,0.69,0.0,0.57,0.732,0.472,1.8465,1
0.565,0.24,0.715,1.0,0.885,0.7245,0.465,2.1995,1
0.565,0.195,0.71,1.0,0.49,0.785,0.492,1.817,1
0.47,0.15,0.55,1.0,0.29,0.377,0.184,0.897,0
0.305,0.09,0.375,0.0,0.095,0.1395,0.0565,0.3245,0
0.45,0.16,0.61,1.0,0.3,0.414,0.311,1.136,0
0.28,0.085,0.38,2.0,0.085,0.115,0.061,0.2735,0
0.275,0.085,0.37,1.0,0.07,0.104,0.0535,0.2405,0
0.235,0.085,0.335,0.0,0.045,0.066,0.0345,0.1545,0
0.115,0.015,0.165,2.0,0.005,0.0055,0.003,0.0145,0
0.21,0.075,0.285,0.0,0.04,0.055,0.0285,0.1185,0
0.13,0.03,0.19,2.0,0.01,0.0155,0.015,0.0295,0
0.15,0.03,0.215,2.0,0.01,0.0115,0.005,0.0385,0
0.465,0.125,0.595,0.0,0.23,0.3245,0.2,0.799,1
0.5,0.17,0.645,1.0,0.355,0.4805,0.274,1.1845,1
0.45,0.185,0.575,0.0,0.35,0.342,0.197,0.925,1
0.45,0.17,0.57,1.0,0.405,0.414,0.187,1.098,1
0.45,0.235,0.58,1.0,0.395,0.3,0.206,1.071,1
0.48,0.2,0.595,1.0,0.34,0.358,0.2035,0.975,1
0.47,0.25,0.595,1.0,0.445,0.462,0.2475,1.283,1
0.42,0.165,0.625,1.0,0.445,0.358,0.165,1.0595,1
0.42,0.165,0.535,0.0,0.26,0.3355,0.1985,0.9195,1
0.43,0.16,0.55,0.0,0.355,0.317,0.1735,0.9295,1
0.4,0.155,0.495,0.0,0.35,0.2345,0.1155,0.8085,0
0.235,0.08,0.32,2.0,0.045,0.064,0.031,0.1485,0
0.34,0.12,0.445,0.0,0.13,0.193,0.1035,0.4475,0
0.4,0.125,0.52,1.0,0.185,0.295,0.1715,0.6865,0
0.385,0.135,0.495,0.0,0.26,0.2,0.1225,0.6335,1
0.37,0.135,0.47,0.0,0.17,0.222,0.1325,0.547,1
0.37,0.14,0.49,1.0,0.195,0.243,0.115,0.585,1
0.47,0.165,0.58,0.0,0.315,0.3215,0.1985,0.927,1
0.495,0.185,0.645,0.0,0.455,0.5265,0.2785,1.4935,1
0.485,0.165,0.575,1.0,0.3,0.419,0.264,1.0405,1
0.17,0.055,0.215,2.0,0.02,0.0205,0.014,0.0605,0
0.325,0.11,0.43,2.0,0.12,0.1355,0.0935,0.3675,1
0.215,0.08,0.26,2.0,0.045,0.037,0.0255,0.099,0
0.28,0.09,0.37,2.0,0.07,0.0905,0.0545,0.233,1
0.305,0.105,0.405,2.0,0.125,0.1565,0.0705,0.3625,1
0.19,0.08,0.27,2.0,0.03,0.0265,0.0195,0.081,0
0.55,0.2,0.68,1.0,0.585,0.525,0.4075,1.596,1
0.515,0.195,0.65,1.0,0.44,0.5195,0.36,1.4005,1
0.49,0.215,0.645,1.0,0.51,0.4265,0.2285,1.406,1
0.405,0.16,0.57,0.0,0.295,0.3445,0.2185,0.9245,1
0.48,0.19,0.615,0.0,0.47,0.5305,0.2375,1.36,1
0.345,0.105,0.42,0.0,0.13,0.175,0.096,0.43,0
0.22,0.08,0.275,2.0,0.042,0.0565,0.0285,0.1365,0
0.225,0.075,0.29,1.0,0.04,0.0515,0.0235,0.14,0
0.34,0.115,0.42,0.0,0.135,0.175,0.093,0.4215,0
0.525,0.215,0.625,1.0,0.665,0.5115,0.2595,1.5765,1
0.465,0.18,0.55,1.0,0.525,0.3245,0.205,1.2125,1
0.505,0.2,0.66,0.0,0.61,0.4865,0.297,1.6305,1
0.47,0.195,0.565,0.0,0.35,0.387,0.258,1.142,1
0.495,0.235,0.595,1.0,0.52,0.5065,0.219,1.366,1
0.51,0.23,0.63,0.0,0.57,0.5635,0.2815,1.539,1
0.325,0.12,0.43,1.0,0.155,0.165,0.0995,0.445,0
0.35,0.14,0.455,1.0,0.175,0.1965,0.1325,0.5725,1
0.26,0.08,0.33,2.0,0.065,0.0765,0.0385,0.19,0
0.415,0.13,0.515,1.0,0.25,0.276,0.196,0.764,1
0.39,0.15,0.495,0.0,0.27,0.3285,0.189,0.853,1
0.375,0.145,0.485,1.0,0.19,0.2385,0.1155,0.5885,1
0.46,0.145,0.535,1.0,0.2,0.3395,0.2005,0.7875,0
0.465,0.175,0.58,0.0,0.385,0.401,0.1865,1.035,1
0.525,0.195,0.625,1.0,0.53,0.4505,0.2445,1.352,1
0.455,0.18,0.555,1.0,0.39,0.296,0.195,0.958,1
0.425,0.145,0.55,1.0,0.265,0.297,0.15,0.797,0
0.475,0.155,0.59,0.0,0.28,0.356,0.174,0.857,1
0.28,0.11,0.355,2.0,0.08,0.0815,0.0525,0.2235,0
0.2,0.075,0.275,2.0,0.03,0.0305,0.019,0.086,0
0.39,0.175,0.505,1.0,0.215,0.267,0.15,0.692,1
0.28,0.095,0.37,0.0,0.075,0.0805,0.051,0.2225,0
0.43,0.165,0.555,0.0,0.275,0.2735,0.1635,0.7575,1
0.4,0.165,0.505,1.0,0.25,0.2675,0.155,0.729,0
0.445,0.18,0.56,1.0,0.295,0.3575,0.2045,0.903,0
0.475,0.17,0.595,0.0,0.35,0.419,0.229,1.0965,1
0.45,0.165,0.57,1.0,0.295,0.3305,0.1845,0.903,1
0.48,0.175,0.6,0.0,0.415,0.4125,0.2735,1.229,1
0.435,0.185,0.56,1.0,0.33,0.422,0.2435,1.106,1
0.465,0.19,0.585,0.0,0.4,0.3905,0.2355,1.171,1
0.335,0.11,0.46,2.0,0.11,0.225,0.0745,0.444,0
0.36,0.115,0.46,1.0,0.16,0.2105,0.105,0.4755,0
0.315,0.125,0.415,0.0,0.125,0.068,0.09,0.388,1
0.32,0.12,0.435,1.0,0.125,0.152,0.0915,0.3785,1
0.38,0.135,0.475,1.0,0.185,0.1735,0.07,0.486,0
0.36,0.13,0.465,0.0,0.165,0.2105,0.1185,0.5265,1
0.28,0.1,0.355,2.0,0.085,0.0935,0.0455,0.2275,1
0.375,0.14,0.46,0.0,0.205,0.192,0.1045,0.5105,0
0.325,0.11,0.38,1.0,0.105,0.12,0.074,0.3105,1
0.365,0.12,0.47,1.0,0.15,0.2295,0.1495,0.543,0
0.27,0.09,0.36,0.0,0.075,0.083,0.053,0.2225,0
0.455,0.165,0.585,1.0,0.315,0.345,0.2495,0.998,1
0.59,0.2,0.655,0.0,0.415,0.654,0.3765,1.5455,1
0.485,0.175,0.6,0.0,0.38,0.4995,0.2815,1.2675,1
0.46,0.17,0.57,1.0,0.38,0.4125,0.2205,1.1,1
0.5,0.2,0.645,1.0,0.36,0.639,0.305,1.4285,1
0.495,0.18,0.65,0.0,0.53,0.8005,0.339,1.793,1
0.395,0.145,0.51,0.0,0.24,0.216,0.1385,0.6185,1
0.38,0.135,0.52,0.0,0.175,0.2505,0.1565,0.5825,0
0.415,0.165,0.495,0.0,0.285,0.264,0.134,0.7485,1
0.335,0.115,0.43,0.0,0.135,0.166,0.0935,0.406,0
0.465,0.16,0.59,1.0,0.295,0.506,0.2525,1.1005,1
0.46,0.175,0.55,0.0,0.32,0.3155,0.1825,0.869,1
0.43,0.16,0.585,0.0,0.27,0.3625,0.176,0.955,1
0.455,0.16,0.58,1.0,0.3,0.312,0.196,0.9215,1
0.51,0.15,0.62,1.0,0.32,0.581,0.2875,1.456,1
0.45,0.16,0.59,2.0,0.345,0.2745,0.2185,0.893,1
0.575,0.215,0.72,1.0,0.62,0.8955,0.405,2.226,1
0.51,0.175,0.635,1.0,0.36,0.5735,0.261,1.2125,1
0.48,0.175,0.61,1.0,0.42,0.391,0.216,1.0675,1
0.445,0.175,0.545,1.0,0.295,0.3465,0.189,0.8525,1
0.45,0.16,0.57,0.0,0.255,0.3725,0.2175,0.8615,1
0.475,0.18,0.6,1.0,0.32,0.511,0.2675,1.162,1
0.41,0.17,0.52,1.0,0.25,0.3735,0.219,0.8705,1
0.51,0.21,0.635,0.0,0.58,0.6535,0.2835,1.598,1
0.52,0.15,0.67,1.0,0.37,0.519,0.348,1.406,1
0.57,0.2,0.695,0.0,0.685,0.751,0.4255,2.033,1
0.525,0.185,0.655,0.0,0.445,0.487,0.2215,1.259,1
0.48,0.23,0.62,1.0,0.355,0.403,0.245,1.0935,1
0.475,0.18,0.6,1.0,0.425,0.4345,0.2475,1.1805,1
0.405,0.13,0.51,0.0,0.17,0.3725,0.158,0.7175,0
0.405,0.135,0.525,0.0,0.195,0.3305,0.216,0.7575,1
0.375,0.13,0.44,0.0,0.155,0.226,0.0965,0.487,0
0.415,0.14,0.485,2.0,0.185,0.25,0.134,0.5705,0
0.385,0.13,0.495,1.0,0.175,0.3125,0.179,0.6905,1
0.345,0.12,0.435,2.0,0.125,0.221,0.112,0.4475,0
0.315,0.105,0.405,2.0,0.1,0.1605,0.0785,0.347,0
0.33,0.1,0.42,2.0,0.1,0.1635,0.089,0.352,0
0.395,0.15,0.5,1.0,0.195,0.3235,0.173,0.7145,0
0.305,0.105,0.385,1.0,0.1,0.1365,0.0745,0.3315,0
0.265,0.09,0.33,2.0,0.06,0.068,0.036,0.18,0
0.475,0.155,0.58,1.0,0.285,0.4305,0.23,0.974,1
0.27,0.1,0.325,2.0,0.065,0.08,0.0435,0.185,0
0.375,0.12,0.475,0.0,0.185,0.2525,0.1205,0.563,1
0.3,0.09,0.38,1.0,0.095,0.1545,0.075,0.3215,0
0.26,0.09,0.34,2.0,0.055,0.076,0.0525,0.179,0
0.425,0.12,0.525,0.0,0.22,0.3335,0.1465,0.702,1
0.415,0.145,0.52,1.0,0.285,0.3325,0.1725,0.8045,1
0.45,0.135,0.535,1.0,0.25,0.322,0.181,0.8075,1
0.36,0.12,0.475,0.0,0.17,0.2825,0.12,0.578,0
0.325,0.1,0.415,2.0,0.125,0.167,0.08,0.385,0
0.385,0.125,0.495,2.0,0.165,0.2755,0.1235,0.585,0
0.405,0.13,0.48,1.0,0.21,0.277,0.1445,0.6375,1
0.425,0.15,0.52,1.0,0.23,0.385,0.2015,0.813,1
0.375,0.13,0.46,0.0,0.195,0.2505,0.119,0.5735,0
0.455,0.12,0.58,1.0,0.265,0.399,0.257,0.94,1
0.49,0.135,0.59,0.0,0.285,0.422,0.2245,1.008,1
0.415,0.135,0.55,1.0,0.26,0.302,0.179,0.775,1
0.5,0.165,0.65,1.0,0.365,0.485,0.218,1.1445,1
0.375,0.135,0.465,1.0,0.23,0.2225,0.129,0.6,1
0.355,0.13,0.455,0.0,0.175,0.2,0.1275,0.515,1
0.375,0.13,0.47,0.0,0.195,0.2145,0.164,0.5795,1
0.35,0.11,0.435,1.0,0.125,0.143,0.1005,0.384,1
0.265,0.11,0.35,0.0,0.085,0.1365,0.063,0.2965,0
0.24,0.07,0.315,2.0,0.04,0.0545,0.0315,0.137,0
0.47,0.145,0.595,0.0,0.34,0.4035,0.1505,0.991,1
0.475,0.135,0.58,1.0,0.275,0.391,0.165,0.925,1
0.435,0.15,0.575,0.0,0.27,0.293,0.1625,0.805,1
0.435,0.155,0.535,0.0,0.25,0.3415,0.177,0.8915,1
0.42,0.14,0.515,0.0,0.29,0.2505,0.154,0.769,1
0.385,0.135,0.505,1.0,0.2,0.251,0.1175,0.6185,1
0.395,0.145,0.505,1.0,0.205,0.2695,0.153,0.6515,1
0.31,0.1,0.4,2.0,0.095,0.1145,0.0635,0.2875,1
0.395,0.135,0.49,0.0,0.215,0.213,0.0925,0.5545,1
0.435,0.135,0.53,0.0,0.22,0.3275,0.1315,0.7365,1
0.325,0.105,0.395,2.0,0.095,0.111,0.0735,0.306,0
0.535,0.19,0.665,1.0,0.475,0.5775,0.2815,1.496,1
0.305,0.105,0.415,1.0,0.1,0.12,0.082,0.3605,1
0.345,0.115,0.43,0.0,0.12,0.0925,0.055,0.3045,1
0.395,0.135,0.475,0.0,0.2,0.2465,0.1645,0.592,1
0.425,0.145,0.525,1.0,0.24,0.3345,0.209,0.7995,1
0.39,0.145,0.48,2.0,0.255,0.2315,0.121,0.5825,1
0.345,0.115,0.42,2.0,0.115,0.1515,0.0795,0.3435,0
0.46,0.155,0.59,0.0,0.335,0.327,0.1485,0.906,1
0.42,0.135,0.515,1.0,0.215,0.2815,0.127,0.6295,0
0.55,0.22,0.695,0.0,0.445,0.566,0.3835,1.5515,1
0.63,0.195,0.8,1.0,0.62,0.933,0.59,2.526,1
0.49,0.15,0.61,0.0,0.36,0.425,0.2025,1.103,1
0.48,0.175,0.565,1.0,0.275,0.3885,0.215,0.957,1
0.455,0.165,0.56,0.0,0.245,0.4015,0.1695,0.86,1
0.485,0.195,0.655,0.0,0.485,0.6275,0.358,1.62,1
0.52,0.2,0.64,0.0,0.455,0.566,0.304,1.407,1
0.47,0.17,0.59,1.0,0.25,0.355,0.1905,0.9,1
0.24,0.09,0.31,2.0,0.045,0.0605,0.0315,0.1455,0
0.185,0.07,0.255,2.0,0.025,0.028,0.018,0.075,0
0.125,0.055,0.17,2.0,0.008,0.009,0.0055,0.0235,0
0.55,0.17,0.67,0.0,0.4,0.472,0.2455,1.247,1
0.565,0.195,0.71,1.0,0.565,0.638,0.3365,1.7265,1
0.43,0.125,0.56,1.0,0.263,0.313,0.1715,0.8025,1
0.4,0.13,0.505,0.0,0.2175,0.3035,0.189,0.764,1
0.43,0.165,0.525,0.0,0.2515,0.376,0.1945,0.8645,1
0.36,0.105,0.45,1.0,0.149,0.2035,0.0935,0.4715,0
0.435,0.17,0.515,1.0,0.216,0.2765,0.111,0.631,1
0.475,0.16,0.59,0.0,0.27,0.3815,0.184,0.9455,1
0.53,0.19,0.7,0.0,0.42,0.548,0.233,1.3185,1
0.56,0.175,0.72,1.0,0.525,0.637,0.3415,1.7265,1
0.495,0.15,0.635,0.0,0.31,0.4825,0.242,1.081,1
0.44,0.135,0.555,0.0,0.28,0.3805,0.2105,0.9025,1
0.47,0.15,0.575,0.0,0.4,0.4515,0.204,1.1415,1
0.455,0.125,0.585,0.0,0.25,0.391,0.212,1.027,1
0.485,0.21,0.61,1.0,0.515,0.535,0.2205,1.3445,1
0.525,0.2,0.645,1.0,0.505,0.601,0.2565,1.449,1
0.44,0.175,0.545,1.0,0.265,0.2985,0.1875,0.7745,1
0.45,0.155,0.55,0.0,0.25,0.343,0.159,0.7895,1
0.525,0.205,0.66,1.0,0.41,0.5005,0.291,1.3665,1
0.475,0.195,0.57,0.0,0.305,0.4635,0.1905,1.0295,1
0.47,0.2,0.6,1.0,0.29,0.392,0.2035,1.031,1
0.505,0.165,0.63,1.0,0.315,0.4595,0.216,1.065,1
0.57,0.23,0.695,0.0,0.5,0.8665,0.435,1.885,1
0.545,0.16,0.65,0.0,0.48,0.487,0.296,1.2425,1
0.595,0.225,0.72,1.0,0.66,0.8045,0.423,1.969,1
0.44,0.17,0.56,2.0,0.3,0.3545,0.2175,0.9445,1
0.325,0.115,0.42,2.0,0.105,0.1625,0.064,0.354,0
0.125,0.05,0.18,0.0,0.01,0.0085,0.0055,0.023,0
0.325,0.11,0.405,1.0,0.11,0.145,0.0725,0.3575,1
0.405,0.15,0.5,1.0,0.185,0.253,0.126,0.5965,1
0.335,0.11,0.435,2.0,0.135,0.1555,0.0675,0.383,1
0.275,0.09,0.34,0.0,0.07,0.0725,0.043,0.2065,1
0.34,0.11,0.43,1.0,0.109,0.154,0.0955,0.382,0
0.41,0.155,0.535,2.0,0.1815,0.2745,0.1415,0.6315,1
0.325,0.115,0.415,2.0,0.106,0.1405,0.051,0.3285,1
0.265,0.09,0.36,1.0,0.0735,0.096,0.037,0.2165,1
0.135,0.04,0.175,0.0,0.01,0.011,0.0075,0.0305,0
0.115,0.025,0.155,0.0,0.0075,0.009,0.005,0.024,0
0.43,0.15,0.525,2.0,0.215,0.3225,0.161,0.7365,1
0.39,0.135,0.525,1.0,0.21,0.2265,0.131,0.6005,1
0.345,0.105,0.44,1.0,0.132,0.165,0.083,0.4285,1
0.345,0.115,0.45,1.0,0.14,0.1905,0.117,0.496,1
0.365,0.14,0.485,1.0,0.177,0.2595,0.1445,0.6195,1
0.35,0.135,0.47,2.0,0.1525,0.2315,0.1465,0.567,1
0.375,0.14,0.515,2.0,0.2215,0.2495,0.141,0.6505,1
0.34,0.125,0.42,0.0,0.144,0.165,0.1125,0.4495,1
0.35,0.125,0.455,1.0,0.1335,0.1585,0.102,0.4485,1
0.29,0.09,0.37,0.0,0.069,0.11,0.045,0.241,1
0.25,0.09,0.33,0.0,0.0605,0.085,0.041,0.197,1
0.22,0.09,0.3,2.0,0.043,0.057,0.0335,0.1425,0
0.46,0.16,0.625,2.0,0.38,0.55,0.273,1.2395,1
0.475,0.17,0.61,2.0,0.32,0.4435,0.241,1.0385,1
0.465,0.155,0.625,2.0,0.35,0.404,0.1845,0.972,1
0.505,0.19,0.635,2.0,0.435,0.5805,0.252,1.3315,1
0.385,0.155,0.5,2.0,0.19,0.3795,0.161,0.762,1
0.43,0.17,0.53,1.0,0.235,0.35,0.152,0.775,1
0.33,0.1,0.445,2.0,0.17,0.163,0.0755,0.437,1
0.415,0.155,0.585,1.0,0.195,0.3,0.146,0.6985,1
0.355,0.165,0.44,2.0,0.14,0.159,0.105,0.435,1
0.225,0.08,0.29,0.0,0.045,0.0535,0.026,0.1295,1
0.455,0.17,0.555,2.0,0.3,0.309,0.1905,0.8435,1
0.515,0.145,0.655,2.0,0.315,0.5265,0.283,1.25,1
0.46,0.185,0.58,1.0,0.32,0.3515,0.2,1.017,1
0.43,0.175,0.625,2.0,0.395,0.572,0.297,1.411,1
0.485,0.17,0.62,2.0,0.33,0.4805,0.3045,1.208,1
0.5,0.15,0.64,1.0,0.36,0.371,0.2705,1.0705,0
0.375,0.115,0.505,1.0,0.167,0.2635,0.12,0.5895,1
0.395,0.12,0.5,2.0,0.1785,0.2165,0.1085,0.537,0
0.245,0.095,0.31,0.0,0.048,0.0525,0.034,0.15,0
0.38,0.145,0.505,1.0,0.17,0.2935,0.19,0.651,1
0.305,0.11,0.42,2.0,0.0955,0.094,0.0785,0.28,0
0.315,0.105,0.4,0.0,0.113,0.1135,0.037,0.287,1
0.315,0.125,0.425,0.0,0.13,0.1135,0.0565,0.3525,1
0.235,0.06,0.31,0.0,0.04,0.0415,0.033,0.12,1
0.35,0.13,0.465,1.0,0.155,0.1945,0.103,0.494,1
0.36,0.12,0.465,1.0,0.16,0.192,0.1125,0.4765,1
0.255,0.085,0.35,0.0,0.06,0.1,0.0465,0.2145,1
0.415,0.16,0.52,2.0,0.26,0.2105,0.142,0.595,1
0.365,0.13,0.475,1.0,0.1475,0.1905,0.114,0.4805,1
0.315,0.11,0.41,1.0,0.095,0.1255,0.0655,0.321,1
0.2,0.065,0.26,0.0,0.03,0.044,0.027,0.096,0
0.45,0.17,0.575,2.0,0.26,0.358,0.2145,0.9315,1
0.435,0.155,0.565,2.0,0.285,0.2715,0.168,0.782,1
0.19,0.075,0.26,0.0,0.03,0.0445,0.02,0.0945,0
0.385,0.125,0.53,1.0,0.18,0.289,0.151,0.6695,1
0.255,0.095,0.34,0.0,0.07,0.081,0.034,0.213,0
0.38,0.14,0.52,2.0,0.185,0.1775,0.115,0.525,1
0.5,0.18,0.635,1.0,0.485,0.529,0.2485,1.312,1
0.485,0.165,0.61,1.0,0.38,0.4255,0.232,1.087,1
0.515,0.18,0.66,1.0,0.555,0.54,0.3365,1.523,1
0.5,0.18,0.635,2.0,0.49,0.5485,0.292,1.319,1
0.38,0.135,0.465,1.0,0.22,0.208,0.1095,0.579,1
0.4,0.16,0.515,0.0,0.3,0.2515,0.156,0.8175,1
0.24,0.095,0.335,2.0,0.055,0.062,0.039,0.17,0
0.4,0.17,0.515,1.0,0.28,0.258,0.1755,0.796,1
0.255,0.1,0.345,1.0,0.06,0.071,0.051,0.197,0
0.355,0.125,0.465,0.0,0.145,0.2025,0.135,0.5255,1
0.415,0.17,0.54,0.0,0.255,0.339,0.208,0.879,1
0.355,0.125,0.475,0.0,0.145,0.186,0.107,0.4625,0
0.335,0.14,0.445,1.0,0.14,0.1785,0.114,0.4565,1
0.355,0.14,0.5,0.0,0.14,0.2125,0.149,0.528,0
0.38,0.135,0.5,0.0,0.18,0.2295,0.1265,0.5835,1
0.435,0.17,0.55,1.0,0.28,0.2875,0.1645,0.884,1
0.205,0.08,0.275,2.0,0.03,0.036,0.0185,0.096,0
0.265,0.09,0.35,1.0,0.06,0.0745,0.0415,0.1855,0
0.285,0.105,0.37,1.0,0.0835,0.1125,0.0585,0.27,0
0.33,0.125,0.42,1.0,0.145,0.186,0.11,0.463,1
0.26,0.09,0.35,0.0,0.06,0.0725,0.056,0.198,1
0.305,0.105,0.395,0.0,0.096,0.0975,0.065,0.282,0
0.2,0.08,0.325,2.0,0.032,0.0395,0.0225,0.0995,0
0.2,0.065,0.275,2.0,0.027,0.0385,0.0235,0.092,0
0.17,0.065,0.235,2.0,0.022,0.023,0.014,0.0625,0
0.18,0.06,0.25,2.0,0.0225,0.028,0.017,0.073,0
0.185,0.065,0.25,2.0,0.0225,0.027,0.0185,0.071,0
0.145,0.05,0.2,2.0,0.011,0.0125,0.008,0.036,0
0.47,0.17,0.585,1.0,0.358,0.3975,0.2325,1.099,1
0.35,0.14,0.445,0.0,0.19,0.2025,0.158,0.5905,1
0.385,0.13,0.5,1.0,0.27,0.2625,0.095,0.768,1
0.325,0.08,0.44,0.0,0.13,0.144,0.1015,0.413,0
0.405,0.14,0.515,0.0,0.315,0.312,0.146,0.8505,1
0.405,0.14,0.52,1.0,0.215,0.276,0.137,0.6915,1
0.39,0.13,0.5,0.0,0.18,0.275,0.168,0.709,1
0.325,0.12,0.425,0.0,0.105,0.142,0.1065,0.3755,0
0.415,0.14,0.51,0.0,0.235,0.3025,0.2155,0.8185,1
0.275,0.08,0.37,1.0,0.07,0.093,0.0625,0.227,0
0.415,0.13,0.54,0.0,0.24,0.272,0.226,0.8245,1
0.475,0.17,0.615,0.0,0.24,0.474,0.2895,1.1825,1
0.44,0.175,0.565,0.0,0.375,0.393,0.2,1.122,1
0.515,0.175,0.645,0.0,0.385,0.6745,0.384,1.6115,1
0.47,0.175,0.615,1.0,0.32,0.5135,0.343,1.2985,1
0.49,0.145,0.605,0.0,0.31,0.517,0.3285,1.3,1
0.455,0.165,0.59,1.0,0.28,0.38,0.2455,1.161,1
0.485,0.155,0.645,0.0,0.38,0.5915,0.312,1.489,1
0.42,0.155,0.57,0.0,0.34,0.377,0.193,1.008,1
0.355,0.18,0.47,1.0,0.135,0.1525,0.1165,0.441,0
0.44,0.155,0.5,1.0,0.2115,0.2025,0.2005,0.742,1
0.425,0.145,0.52,1.0,0.24,0.207,0.1905,0.7,1
0.285,0.095,0.39,0.0,0.08,0.11,0.06,0.271,0
0.4,0.165,0.52,0.0,0.21,0.2745,0.201,0.8565,1
0.415,0.175,0.54,1.0,0.275,0.275,0.241,0.8975,1
0.36,0.135,0.46,0.0,0.235,0.1955,0.107,0.6105,1
0.26,0.09,0.355,2.0,0.065,0.077,0.038,0.1925,0
0.4,0.145,0.49,1.0,0.2515,0.21,0.1295,0.6635,1
0.51,0.185,0.63,1.0,0.3065,0.5115,0.349,1.235,1
0.385,0.145,0.5,0.0,0.204,0.246,0.195,0.7615,1
0.39,0.135,0.49,0.0,0.1835,0.242,0.096,0.592,1
0.325,0.115,0.44,0.0,0.113,0.163,0.087,0.39,0
0.395,0.165,0.515,1.0,0.3205,0.1905,0.17,0.7565,1
0.38,0.145,0.475,1.0,0.187,0.167,0.118,0.57,1
0.31,0.1,0.42,2.0,0.085,0.115,0.0735,0.2865,0
0.305,0.13,0.4,0.0,0.105,0.096,0.0675,0.2935,0
0.36,0.16,0.45,0.0,0.225,0.174,0.1245,0.567,1
0.4,0.13,0.52,1.0,0.17,0.215,0.2065,0.6245,1
0.4,0.155,0.505,0.0,0.285,0.2715,0.1775,0.8415,1
0.4,0.14,0.495,0.0,0.25,0.2015,0.18,0.7775,1
0.41,0.145,0.54,0.0,0.355,0.2815,0.213,0.989,1
0.39,0.125,0.48,1.0,0.2,0.219,0.155,0.6905,1
0.26,0.08,0.33,1.0,0.07,0.0625,0.05,0.2,0
0.21,0.07,0.285,2.0,0.033,0.044,0.0265,0.109,0
0.23,0.075,0.3,2.0,0.0345,0.052,0.03,0.127,0
0.24,0.105,0.31,2.0,0.083,0.118,0.065,0.2885,0
0.255,0.075,0.34,2.0,0.0525,0.0745,0.04,0.18,0
0.3,0.075,0.375,2.0,0.044,0.059,0.03,0.144,0
0.325,0.1,0.415,2.0,0.114,0.2285,0.1065,0.4665,0
0.315,0.105,0.415,2.0,0.095,0.1405,0.0705,0.33,0
0.315,0.09,0.415,2.0,0.093,0.175,0.0835,0.3625,0
0.32,0.1,0.42,2.0,0.0945,0.1745,0.05,0.34,0
0.31,0.105,0.425,2.0,0.105,0.159,0.0825,0.365,0
0.375,0.11,0.465,0.0,0.1505,0.21,0.113,0.5,0
0.35,0.135,0.465,1.0,0.175,0.259,0.1445,0.6265,0
0.37,0.11,0.47,2.0,0.163,0.25,0.115,0.5555,0
0.375,0.12,0.47,1.0,0.135,0.2765,0.1455,0.6015,0
0.365,0.12,0.475,2.0,0.1625,0.2505,0.0975,0.53,1
0.37,0.135,0.48,0.0,0.161,0.3445,0.1015,0.6315,0
0.4,0.13,0.5,0.0,0.211,0.37,0.16,0.7715,0
0.39,0.185,0.505,2.0,0.172,0.267,0.142,0.6125,0
0.425,0.19,0.525,0.0,0.199,0.4625,0.1725,0.872,0
0.42,0.12,0.54,0.0,0.2235,0.392,0.1455,0.8115,0
0.45,0.15,0.545,0.0,0.2625,0.387,0.15,0.8795,1
0.44,0.15,0.565,1.0,0.2485,0.4475,0.2355,0.983,0
0.46,0.18,0.58,0.0,0.325,0.48,0.277,1.145,1
0.455,0.16,0.59,0.0,0.292,0.5,0.2215,1.09,0
0.48,0.16,0.59,0.0,0.335,0.5685,0.2725,1.262,0
0.49,0.185,0.595,0.0,0.361,0.482,0.2015,1.185,1
0.475,0.135,0.6,1.0,0.3175,0.5885,0.191,1.4405,0
0.5,0.155,0.6,1.0,0.35,0.6235,0.2835,1.332,0
0.485,0.165,0.6,1.0,0.288,0.587,0.2175,1.1405,0
0.475,0.175,0.605,0.0,0.309,0.5395,0.275,1.201,1
0.49,0.155,0.625,1.0,0.33,0.6675,0.259,1.33,1
0.5,0.185,0.63,0.0,0.384,0.5785,0.3125,1.362,1
0.585,0.195,0.64,0.0,0.471,0.7225,0.331,1.647,1
0.5,0.18,0.64,1.0,0.431,0.593,0.314,1.4995,1
0.545,0.165,0.655,1.0,0.513,0.6555,0.299,1.6225,1
0.525,0.215,0.66,2.0,0.4065,0.6725,0.3615,1.786,1
0.535,0.2,0.66,0.0,0.54,0.733,0.318,1.791,1
0.555,0.205,0.675,1.0,0.4535,0.713,0.358,1.925,1
0.55,0.175,0.675,1.0,0.474,0.694,0.371,1.689,1
0.55,0.18,0.69,1.0,0.4395,0.8715,0.2655,1.659,0
0.53,0.2,0.695,1.0,0.6095,0.75,0.4195,2.0475,1
0.525,0.19,0.7,1.0,0.43,0.707,0.365,1.6015,1
0.57,0.165,0.73,1.0,0.435,1.0685,0.418,2.0165,1
0.15,0.065,0.205,2.0,0.013,0.02,0.011,0.04,0
0.17,0.07,0.225,2.0,0.016,0.024,0.013,0.0565,0
0.18,0.05,0.23,2.0,0.02,0.0215,0.0135,0.064,0
0.195,0.07,0.275,2.0,0.0255,0.0345,0.022,0.0875,0
0.21,0.055,0.28,2.0,0.031,0.0415,0.0265,0.106,0
0.22,0.08,0.28,2.0,0.03,0.066,0.024,0.1315,0
0.22,0.07,0.295,2.0,0.035,0.0515,0.0275,0.126,0
0.225,0.075,0.31,2.0,0.0365,0.065,0.037,0.155,0
0.235,0.07,0.315,2.0,0.047,0.058,0.0325,0.149,0
0.265,0.07,0.34,2.0,0.07,0.0625,0.0395,0.185,0
0.29,0.08,0.37,2.0,0.07,0.108,0.0565,0.2545,0
0.285,0.085,0.38,2.0,0.07,0.115,0.0405,0.237,0
0.295,0.1,0.39,2.0,0.08,0.1155,0.059,0.279,0
0.31,0.065,0.405,2.0,0.088,0.1575,0.066,0.3205,0
0.325,0.1,0.415,2.0,0.095,0.1445,0.0715,0.3335,0
0.335,0.11,0.44,2.0,0.111,0.175,0.0835,0.3885,0
0.345,0.115,0.44,2.0,0.1305,0.269,0.111,0.545,0
0.325,0.1,0.44,2.0,0.11,0.185,0.0865,0.4165,0
0.355,0.12,0.44,2.0,0.125,0.231,0.11,0.495,0
0.35,0.125,0.45,2.0,0.118,0.2235,0.089,0.4775,0
0.35,0.12,0.45,2.0,0.1325,0.2005,0.1065,0.468,0
0.35,0.12,0.455,1.0,0.1375,0.1945,0.1045,0.4555,0
0.35,0.115,0.46,1.0,0.1165,0.2025,0.1115,0.46,0
0.345,0.12,0.46,2.0,0.107,0.198,0.0885,0.4155,0
0.345,0.115,0.46,2.0,0.111,0.1895,0.102,0.4215,0
0.355,0.11,0.465,2.0,0.12,0.23,0.1005,0.474,0
0.34,0.105,0.465,0.0,0.1225,0.231,0.1035,0.486,0
0.385,0.11,0.475,2.0,0.136,0.311,0.1025,0.5735,0
0.355,0.105,0.475,2.0,0.12,0.201,0.1115,0.468,0
0.37,0.1,0.48,0.0,0.135,0.243,0.1015,0.5135,0
0.375,0.145,0.5,0.0,0.1485,0.274,0.166,0.6215,0
0.38,0.11,0.5,2.0,0.1325,0.218,0.09,0.494,0
0.385,0.12,0.505,2.0,0.185,0.239,0.142,0.6005,0
0.395,0.12,0.515,0.0,0.172,0.285,0.1365,0.646,0
0.415,0.135,0.525,0.0,0.202,0.394,0.189,0.7945,0
0.425,0.125,0.525,0.0,0.195,0.4035,0.1705,0.812,0
0.42,0.17,0.53,1.0,0.1505,0.41,0.208,0.828,0
0.41,0.14,0.53,0.0,0.1835,0.3095,0.1415,0.681,0
0.405,0.15,0.53,1.0,0.215,0.4055,0.2275,0.889,0
0.435,0.14,0.54,0.0,0.213,0.33,0.1595,0.7345,0
0.425,0.125,0.55,1.0,0.215,0.5475,0.159,0.964,0
0.425,0.14,0.555,1.0,0.24,0.44,0.224,0.963,0
0.445,0.15,0.57,1.0,0.2505,0.504,0.185,0.995,0
0.435,0.14,0.57,1.0,0.2295,0.3905,0.196,0.8585,0
0.45,0.155,0.575,0.0,0.259,0.429,0.206,0.948,0
0.445,0.145,0.58,1.0,0.2425,0.41,0.1815,0.888,0
0.45,0.16,0.585,1.0,0.2335,0.405,0.2215,0.9045,0
0.465,0.14,0.59,0.0,0.263,0.4695,0.263,1.046,0
0.47,0.155,0.595,1.0,0.31,0.542,0.269,1.1775,0
0.465,0.15,0.595,1.0,0.287,0.491,0.22,1.0765,0
0.465,0.15,0.595,1.0,0.289,0.412,0.2745,1.0255,1
0.46,0.145,0.6,1.0,0.248,0.3985,0.2245,0.9325,0
0.46,0.15,0.6,1.0,0.29,0.6025,0.274,1.235,0
0.46,0.15,0.6,0.0,0.29,0.5335,0.2735,1.247,0
0.48,0.15,0.61,0.0,0.264,0.564,0.274,1.1495,0
0.485,0.16,0.615,1.0,0.315,0.5005,0.2495,1.1575,1
0.5,0.165,0.615,1.0,0.355,0.6,0.3015,1.327,1
0.47,0.155,0.615,0.0,0.292,0.5085,0.32,1.2,0
0.51,0.175,0.62,1.0,0.3225,0.5415,0.323,1.2705,0
0.485,0.175,0.62,1.0,0.345,0.545,0.253,1.2155,1
0.475,0.16,0.62,1.0,0.3275,0.6865,0.233,1.3245,0
0.48,0.17,0.625,0.0,0.3385,0.671,0.268,1.3555,1
0.49,0.165,0.625,1.0,0.3185,0.477,0.2365,1.127,0
0.49,0.175,0.625,1.0,0.3595,0.4485,0.2165,1.1075,0
0.495,0.2,0.63,1.0,0.38,0.659,0.336,1.4255,1
0.495,0.145,0.63,1.0,0.2885,0.5455,0.266,1.147,0
0.48,0.165,0.63,0.0,0.35,0.604,0.271,1.286,0
0.495,0.18,0.635,1.0,0.37,0.617,0.317,1.596,1
0.495,0.195,0.635,1.0,0.37,0.556,0.2985,1.297,1
0.49,0.16,0.645,0.0,0.3165,0.5355,0.3345,1.251,0
0.5,0.175,0.645,0.0,0.3775,0.6735,0.3755,1.5105,1
0.5,0.185,0.65,1.0,0.341,0.741,0.2955,1.4415,0
0.52,0.19,0.67,0.0,0.391,0.8115,0.369,1.6385,0
0.545,0.205,0.69,1.0,0.498,0.7855,0.429,1.933,1
0.54,0.185,0.69,0.0,0.4325,0.7725,0.3855,1.71,0
0.55,0.155,0.695,1.0,0.4175,0.767,0.442,1.8495,1
0.525,0.175,0.695,0.0,0.505,0.696,0.389,1.742,1
0.575,0.205,0.7,1.0,0.5165,0.7295,0.3935,1.7975,1
0.56,0.205,0.705,1.0,0.624,0.9915,0.5005,2.381,1
0.585,0.18,0.765,0.0,0.5335,1.128,0.512,2.398,1
0.6,0.215,0.77,0.0,0.584,1.0515,0.482,2.1945,1
0.16,0.05,0.22,2.0,0.015,0.0215,0.01,0.049,0
0.205,0.07,0.275,2.0,0.0315,0.495,0.019,0.1055,0
0.21,0.06,0.29,2.0,0.035,0.0415,0.022,0.1045,0
0.24,0.075,0.33,2.0,0.048,0.0745,0.033,0.163,0
0.285,0.095,0.355,2.0,0.0715,0.0955,0.0475,0.2275,0
0.29,0.1,0.375,2.0,0.075,0.0925,0.038,0.219,0
0.315,0.1,0.415,2.0,0.095,0.1765,0.0795,0.3645,0
0.33,0.115,0.425,2.0,0.103,0.1315,0.077,0.3265,0
0.34,0.1,0.425,2.0,0.094,0.1625,0.082,0.3515,0
0.32,0.1,0.43,2.0,0.09,0.1635,0.08,0.3465,0
0.34,0.1,0.44,2.0,0.103,0.209,0.0735,0.407,0
0.335,0.115,0.44,2.0,0.113,0.173,0.0765,0.4215,0
0.345,0.11,0.46,2.0,0.125,0.1525,0.058,0.3755,0
0.37,0.12,0.46,2.0,0.1345,0.2645,0.108,0.5335,0
0.355,0.105,0.465,2.0,0.1185,0.2085,0.0975,0.442,0
0.365,0.1,0.475,2.0,0.123,0.2025,0.0875,0.1315,0
0.375,0.115,0.475,2.0,0.1455,0.233,0.119,0.5205,0
0.375,0.13,0.485,2.0,0.157,0.266,0.112,0.5535,0
0.375,0.125,0.49,2.0,0.13,0.279,0.115,0.5445,0
0.38,0.11,0.49,0.0,0.15,0.2935,0.1005,0.554,0
0.38,0.12,0.495,2.0,0.136,0.233,0.1205,0.512,0
0.39,0.125,0.5,2.0,0.1605,0.294,0.132,0.583,0
0.38,0.12,0.5,0.0,0.145,0.273,0.135,0.5765,0
0.4,0.135,0.505,0.0,0.178,0.377,0.149,0.723,0
0.395,0.155,0.51,2.0,0.167,0.2465,0.1085,0.5395,0
0.385,0.15,0.51,2.0,0.1725,0.3095,0.119,0.625,0
0.4,0.125,0.515,2.0,0.168,0.265,0.1175,0.5925,0
0.395,0.135,0.52,2.0,0.175,0.2985,0.1295,0.633,0
0.43,0.14,0.545,1.0,0.201,0.4355,0.17,0.832,0
0.42,0.145,0.545,0.0,0.205,0.3745,0.1545,0.778,0
0.42,0.12,0.545,0.0,0.17,0.403,0.185,0.7865,0
0.4,0.14,0.545,1.0,0.18,0.368,0.215,0.778,0
0.42,0.13,0.55,2.0,0.1755,0.294,0.144,0.636,0
0.44,0.135,0.55,1.0,0.185,0.434,0.1995,0.8435,0
0.425,0.13,0.555,2.0,0.2105,0.2835,0.133,0.648,0
0.43,0.13,0.565,0.0,0.213,0.3495,0.1885,0.784,0
0.45,0.18,0.57,1.0,0.255,0.4015,0.217,0.908,0
0.45,0.135,0.57,0.0,0.25,0.546,0.204,1.02,0
0.43,0.16,0.57,1.0,0.2285,0.3875,0.159,0.811,0
0.48,0.15,0.575,1.0,0.248,0.4235,0.1905,0.897,0
0.455,0.13,0.58,0.0,0.225,0.41,0.1725,0.852,0
0.45,0.15,0.585,1.0,0.225,0.467,0.203,0.938,0
0.435,0.14,0.585,1.0,0.2245,0.3085,0.129,0.6955,0
0.47,0.15,0.59,0.0,0.249,0.413,0.164,0.861,0
0.46,0.14,0.59,0.0,0.26,0.496,0.2165,1.004,0
0.46,0.16,0.59,1.0,0.2565,0.445,0.2615,1.0115,0
0.465,0.15,0.595,1.0,0.265,0.5415,0.166,1.1005,0
0.47,0.165,0.595,0.0,0.3345,0.4915,0.2325,1.108,0
0.46,0.14,0.595,0.0,0.227,0.4215,0.2255,0.852,0
0.49,0.21,0.6,0.0,0.491,1.005,0.419,1.9875,1
0.48,0.15,0.605,1.0,0.293,0.4505,0.2835,1.079,1
0.475,0.17,0.615,1.0,0.2345,0.543,0.246,1.055,0
0.45,0.15,0.615,0.0,0.2505,0.707,0.2095,1.198,0
0.47,0.155,0.615,1.0,0.246,0.5885,0.209,1.084,0
0.475,0.175,0.615,0.0,0.2725,0.4635,0.3095,1.103,1
0.49,0.155,0.62,0.0,0.31,0.505,0.2475,1.1,0
0.48,0.15,0.62,0.0,0.305,0.4965,0.243,1.1015,1
0.495,0.185,0.625,0.0,0.345,0.7105,0.3005,1.3835,1
0.49,0.155,0.625,1.0,0.3095,0.484,0.277,1.115,0
0.48,0.145,0.625,0.0,0.327,0.4645,0.2445,1.085,1
0.505,0.15,0.63,0.0,0.37,0.6325,0.2465,1.3165,1
0.51,0.175,0.63,0.0,0.375,0.6575,0.262,1.3415,1
0.465,0.15,0.63,0.0,0.176,0.537,0.188,1.027,0
0.515,0.16,0.645,0.0,0.335,0.506,0.311,1.1845,0
0.48,0.15,0.645,0.0,0.285,0.6055,0.2595,1.192,0
0.52,0.18,0.645,1.0,0.317,0.5775,0.352,1.285,0
0.515,0.125,0.65,0.0,0.3275,0.5235,0.283,1.1805,0
0.52,0.175,0.65,0.0,0.336,0.615,0.2775,1.2655,0
0.535,0.175,0.65,1.0,0.344,0.6095,0.2765,1.2895,1
0.51,0.155,0.65,0.0,0.335,0.7215,0.298,1.407,0
0.49,0.155,0.65,1.0,0.3055,0.545,0.228,1.122,0
0.515,0.165,0.66,0.0,0.3755,0.694,0.298,1.4465,1
0.505,0.165,0.665,1.0,0.36,0.5985,0.3175,1.349,0
0.5,0.2,0.67,0.0,0.351,0.576,0.2985,1.269,1
0.51,0.18,0.67,0.0,0.3935,0.926,0.2975,1.68,1
0.55,0.19,0.675,1.0,0.412,0.7105,0.3685,1.551,1
0.52,0.165,0.68,0.0,0.406,0.724,0.279,1.4775,1
0.53,0.18,0.68,0.0,0.4025,0.7635,0.3115,1.529,1
0.525,0.175,0.7,0.0,0.47,0.8745,0.3615,1.7585,1
0.55,0.2,0.7,0.0,0.4405,0.693,0.306,1.523,1
0.53,0.19,0.725,1.0,0.405,0.83,0.398,1.7315,1
0.55,0.2,0.725,0.0,0.5085,0.8735,0.4265,1.51,0
0.57,0.175,0.735,0.0,0.488,0.9095,0.387,1.88,1
0.575,0.22,0.74,1.0,0.471,0.8915,0.5265,2.012,1
0.555,0.215,0.75,0.0,0.5285,1.0615,0.5235,2.201,1
0.14,0.03,0.19,2.0,0.0105,0.0125,0.005,0.0315,0
0.15,0.045,0.21,2.0,0.0105,0.0135,0.008,0.04,0
0.175,0.06,0.25,2.0,0.02,0.0275,0.008,0.0635,0
0.215,0.065,0.29,2.0,0.031,0.0425,0.021,0.0985,0
0.25,0.08,0.335,2.0,0.0575,0.0675,0.0325,0.167,0
0.245,0.085,0.34,2.0,0.053,0.1005,0.038,0.2015,0
0.255,0.095,0.345,2.0,0.06,0.075,0.0385,0.183,0
0.255,0.08,0.355,2.0,0.058,0.078,0.0505,0.187,0
0.26,0.08,0.36,2.0,0.06,0.074,0.0315,0.1795,0
0.275,0.09,0.37,2.0,0.058,0.096,0.0395,0.2065,0
0.29,0.14,0.375,2.0,0.0825,0.14,0.0625,0.3,0
0.275,0.095,0.375,2.0,0.066,0.095,0.0545,0.2295,0
0.3,0.125,0.385,2.0,0.081,0.1705,0.0735,0.343,0
0.285,0.085,0.385,2.0,0.068,0.1215,0.0445,0.244,0
0.32,0.1,0.395,2.0,0.09,0.149,0.0535,0.3075,0
0.305,0.1,0.4,2.0,0.0865,0.176,0.0625,0.3415,0
0.305,0.1,0.405,2.0,0.091,0.0965,0.061,0.271,0
0.31,0.11,0.405,2.0,0.0995,0.416,0.2075,0.91,0
0.305,0.1,0.405,2.0,0.085,0.1145,0.053,0.268,0
0.3,0.09,0.405,2.0,0.0765,0.138,0.0635,0.2885,0
0.315,0.1,0.41,2.0,0.1,0.124,0.0575,0.3,0
0.325,0.11,0.41,2.0,0.101,0.1325,0.075,0.326,0
0.335,0.1,0.415,2.0,0.105,0.169,0.067,0.358,0
0.325,0.115,0.42,2.0,0.1,0.1295,0.0635,0.314,0
0.315,0.11,0.42,2.0,0.1015,0.1855,0.083,0.4025,0
0.34,0.11,0.43,2.0,0.105,0.159,0.0855,0.3645,0
0.36,0.11,0.445,2.0,0.14,0.182,0.0765,0.4235,0
0.325,0.115,0.45,0.0,0.1155,0.2235,0.0785,0.4305,0
0.335,0.095,0.45,2.0,0.1185,0.1615,0.0625,0.3505,0
0.34,0.115,0.455,2.0,0.1315,0.261,0.0655,0.486,0
0.35,0.1,0.46,2.0,0.123,0.252,0.077,0.471,0
0.345,0.105,0.46,2.0,0.11,0.187,0.087,0.415,0
0.355,0.115,0.475,2.0,0.1325,0.279,0.088,0.5195,0
0.375,0.12,0.48,0.0,0.172,0.2535,0.128,0.5895,1
0.38,0.125,0.485,2.0,0.16,0.2215,0.118,0.5215,0
0.365,0.14,0.485,2.0,0.2305,0.1895,0.0925,0.4475,0
0.365,0.125,0.49,2.0,0.1615,0.252,0.126,0.5585,1
0.385,0.125,0.505,2.0,0.21,0.245,0.097,0.596,0
0.38,0.135,0.505,2.0,0.165,0.2645,0.095,0.5385,0
0.385,0.145,0.51,2.0,0.1805,0.3985,0.14,0.7665,0
0.395,0.135,0.515,1.0,0.162,0.2015,0.132,0.516,0
0.41,0.14,0.515,0.0,0.2,0.3065,0.137,0.7355,0
0.39,0.11,0.515,2.0,0.1615,0.2415,0.098,0.531,0
0.385,0.13,0.525,2.0,0.195,0.2355,0.125,0.607,0
0.415,0.15,0.525,1.0,0.199,0.329,0.147,0.7055,1
0.4,0.13,0.525,2.0,0.2,0.345,0.1285,0.6445,0
0.375,0.12,0.525,2.0,0.19,0.3045,0.114,0.6315,0
0.43,0.155,0.535,0.0,0.245,0.3285,0.169,0.7845,1
0.44,0.15,0.545,1.0,0.275,0.366,0.239,0.9475,0
0.43,0.145,0.55,2.0,0.225,0.3025,0.152,0.712,1
0.425,0.145,0.55,2.0,0.236,0.4325,0.171,0.89,1
0.42,0.155,0.55,2.0,0.205,0.495,0.1805,0.912,0
0.425,0.135,0.55,2.0,0.203,0.257,0.17,0.656,1
0.465,0.15,0.55,2.0,0.2435,0.481,0.174,0.936,0
0.435,0.145,0.555,2.0,0.24,0.262,0.1575,0.6975,1
0.445,0.175,0.555,1.0,0.2785,0.551,0.244,1.1465,0
0.44,0.14,0.56,2.0,0.245,0.402,0.139,0.825,1
0.435,0.135,0.56,2.0,0.251,0.329,0.103,0.72,1
0.43,0.15,0.565,2.0,0.29,0.332,0.1685,0.8215,1
0.445,0.155,0.57,1.0,0.265,0.5265,0.2025,1.017,1
0.435,0.155,0.575,1.0,0.23,0.4115,0.2325,0.8975,0
0.44,0.175,0.58,0.0,0.3265,0.5405,0.2705,1.2255,1
0.465,0.145,0.58,1.0,0.25,0.47,0.2155,0.9865,1
0.425,0.15,0.58,1.0,0.2705,0.3645,0.185,0.844,0
0.46,0.145,0.585,2.0,0.295,0.339,0.167,0.8465,1
0.465,0.165,0.585,0.0,0.274,0.4025,0.1625,0.885,1
0.42,0.145,0.585,2.0,0.22,0.2895,0.1345,0.6735,0
0.455,0.13,0.585,1.0,0.225,0.411,0.2065,0.8755,0
0.47,0.145,0.59,0.0,0.254,0.4545,0.173,0.9235,0
0.475,0.14,0.59,0.0,0.275,0.4625,0.2025,0.977,1
0.475,0.14,0.595,0.0,0.278,0.4925,0.217,1.0305,1
0.48,0.09,0.6,0.0,0.28,0.457,0.2685,1.05,0
0.495,0.185,0.6,0.0,0.367,0.5055,0.2635,1.1145,1
0.45,0.145,0.6,0.0,0.24,0.4325,0.155,0.877,0
0.51,0.185,0.6,0.0,0.315,0.6095,0.2745,1.285,0
0.48,0.185,0.61,0.0,0.29,0.6895,0.2915,1.3065,1
0.45,0.13,0.61,1.0,0.272,0.389,0.1715,0.8725,1
0.46,0.15,0.615,1.0,0.2745,0.4935,0.201,1.0265,1
0.465,0.14,0.62,1.0,0.307,0.6005,0.2195,1.1605,0
0.48,0.165,0.62,1.0,0.324,0.5325,0.4365,1.0125,1
0.5,0.14,0.625,0.0,0.295,0.5445,0.2165,1.096,1
0.49,0.165,0.625,0.0,0.3465,0.5175,0.3105,1.205,1
0.505,0.175,0.63,0.0,0.34,0.555,0.252,1.221,1
0.475,0.155,0.63,1.0,0.265,0.452,0.252,1.0005,1
0.47,0.15,0.63,0.0,0.3115,0.539,0.2325,1.1355,1
0.525,0.195,0.63,0.0,0.465,0.4935,0.2565,1.3135,1
0.505,0.155,0.64,0.0,0.346,0.5565,0.211,1.1955,1
0.485,0.15,0.64,0.0,0.3175,0.5195,0.222,1.098,1
0.495,0.17,0.64,0.0,0.285,0.5395,0.282,1.139,1
0.495,0.17,0.64,1.0,0.2875,0.49,0.377,1.2265,1
0.515,0.08,0.64,0.0,0.175,0.515,0.1755,1.042,1
0.52,0.155,0.65,0.0,0.365,0.6185,0.288,1.368,0
0.51,0.175,0.65,0.0,0.45,0.6485,0.2705,1.446,1
0.505,0.19,0.66,1.0,0.3745,0.6255,0.3375,1.4045,0
0.525,0.2,0.66,1.0,0.422,0.6525,0.2995,1.463,1
0.525,0.17,0.675,1.0,0.475,0.8365,0.352,1.711,0
0.54,0.205,0.7,0.0,0.4865,0.7885,0.373,1.74,1
0.54,0.205,0.705,1.0,0.461,0.8265,0.417,1.757,0
0.565,0.2,0.71,0.0,0.45,0.706,0.321,1.601,1
0.55,0.205,0.72,0.0,0.404,1.1055,0.525,2.165,1
0.57,0.19,0.725,0.0,0.52,1.253,0.541,2.3305,0
0.17,0.05,0.24,2.0,0.0155,0.0205,0.016,0.0545,0
0.195,0.055,0.255,2.0,0.021,0.0285,0.017,0.0725,0
0.2,0.055,0.275,2.0,0.026,0.038,0.021,0.0925,0
0.235,0.09,0.32,2.0,0.042,0.098,0.0335,0.183,0
0.24,0.075,0.325,2.0,0.043,0.072,0.0645,0.1525,0
0.225,0.075,0.33,2.0,0.0425,0.0945,0.0395,0.187,0
0.27,0.09,0.36,2.0,0.056,0.12,0.0435,0.232,0
0.265,0.095,0.375,2.0,0.0585,0.085,0.042,0.196,0
0.285,0.09,0.375,2.0,0.0675,0.119,0.0595,0.2545,0
0.29,0.09,0.39,2.0,0.077,0.117,0.054,0.2625,0
0.335,0.105,0.45,2.0,0.1095,0.1575,0.0795,0.362,0
0.35,0.105,0.455,2.0,0.1115,0.213,0.107,0.4445,0
0.365,0.115,0.46,2.0,0.123,0.2365,0.118,0.511,0
0.375,0.12,0.495,2.0,0.1405,0.3075,0.1215,0.589,0
0.365,0.13,0.5,0.0,0.1535,0.309,0.1085,0.5945,0
0.375,0.12,0.5,2.0,0.16,0.2235,0.123,0.529,0
0.4,0.105,0.52,0.0,0.1985,0.4515,0.1615,0.872,0
0.395,0.145,0.52,2.0,0.1895,0.424,0.142,0.77,0
0.43,0.135,0.525,1.0,0.1815,0.4325,0.18,0.8435,0
0.405,0.14,0.535,0.0,0.189,0.402,0.1715,0.818,0
0.42,0.14,0.54,1.0,0.21,0.38,0.1805,0.8035,0
0.415,0.15,0.54,1.0,0.2035,0.3875,0.1875,0.8115,0
0.425,0.13,0.57,1.0,0.1965,0.3695,0.1745,0.782,0
0.42,0.14,0.57,0.0,0.25,0.416,0.165,0.8745,0
0.445,0.16,0.58,0.0,0.27,0.49,0.201,0.984,0
0.445,0.135,0.58,1.0,0.2325,0.484,0.182,0.95,0
0.47,0.155,0.59,0.0,0.2595,0.6245,0.233,1.1735,0
0.455,0.15,0.59,1.0,0.2765,0.465,0.2055,0.976,1
0.485,0.155,0.59,0.0,0.31,0.4535,0.2435,1.0785,0
0.435,0.16,0.595,0.0,0.31,0.4255,0.224,1.057,0
0.475,0.175,0.6,0.0,0.285,0.5105,0.256,1.11,0
0.45,0.16,0.6,0.0,0.307,0.539,0.225,1.142,1
0.475,0.19,0.605,0.0,0.26,0.59,0.247,1.1255,1
0.48,0.17,0.62,1.0,0.287,0.535,0.25,1.1045,1
0.475,0.175,0.625,0.0,0.337,0.656,0.283,1.3405,1
0.5,0.13,0.625,0.0,0.25,0.5785,0.2045,1.082,0
0.485,0.16,0.625,1.0,0.3485,0.591,0.259,1.254,0
0.49,0.165,0.63,0.0,0.294,0.575,0.273,1.2005,1
0.485,0.16,0.63,0.0,0.3,0.623,0.275,1.243,1
0.51,0.185,0.635,1.0,0.4105,0.526,0.295,1.286,1
0.49,0.16,0.645,1.0,0.299,0.4935,0.3155,1.1665,0
0.49,0.16,0.645,1.0,0.319,0.5015,0.289,1.144,0
0.525,0.19,0.65,1.0,0.405,0.8875,0.3095,1.385,1
0.515,0.155,0.655,1.0,0.385,0.524,0.346,1.309,1
0.515,0.17,0.655,1.0,0.331,0.8485,0.2635,1.527,1
0.515,0.19,0.665,0.0,0.371,0.831,0.3575,1.6385,1
0.54,0.195,0.695,0.0,0.4755,0.768,0.363,1.691,1
0.565,0.18,0.72,1.0,0.3875,0.8465,0.407,1.719,1
0.55,0.18,0.72,1.0,0.435,0.637,0.325,1.52,1
0.565,0.17,0.72,1.0,0.4945,0.723,0.3255,1.613,1
0.57,0.21,0.735,0.0,0.5315,1.1705,0.463,2.2355,1
0.595,0.19,0.74,0.0,0.505,1.1495,0.5115,2.3235,1
0.23,0.07,0.31,2.0,0.038,0.0505,0.0265,0.1245,0
0.235,0.075,0.315,2.0,0.0405,0.051,0.028,0.1285,0
0.205,0.08,0.32,2.0,0.0495,0.088,0.034,0.181,0
0.25,0.075,0.325,2.0,0.0455,0.075,0.0305,0.1585,0
0.26,0.09,0.335,2.0,0.056,0.0875,0.041,0.1965,0
0.28,0.085,0.37,2.0,0.058,0.0805,0.0455,0.198,0
0.27,0.09,0.37,2.0,0.065,0.07,0.0425,0.1855,0
0.28,0.085,0.375,2.0,0.072,0.0855,0.0485,0.2145,0
0.315,0.09,0.4,2.0,0.088,0.151,0.073,0.3245,0
0.305,0.095,0.41,2.0,0.09,0.1,0.0515,0.2625,0
0.34,0.1,0.425,2.0,0.115,0.15,0.0865,0.371,0
0.335,0.095,0.435,2.0,0.115,0.109,0.058,0.298,0
0.31,0.09,0.445,2.0,0.0855,0.1555,0.09,0.336,0
0.36,0.14,0.46,2.0,0.16,0.161,0.087,0.447,0
0.35,0.11,0.465,1.0,0.131,0.165,0.102,0.4085,0
0.385,0.13,0.47,2.0,0.174,0.264,0.117,0.587,0
0.375,0.11,0.475,2.0,0.1545,0.211,0.109,0.494,0
0.375,0.12,0.495,2.0,0.161,0.2855,0.1365,0.614,0
0.39,0.13,0.5,2.0,0.1755,0.2115,0.104,0.5075,0
0.37,0.12,0.5,2.0,0.152,0.249,0.1065,0.5445,0
0.425,0.125,0.505,2.0,0.2,0.245,0.1375,0.6115,0
0.4,0.125,0.505,2.0,0.17,0.2255,0.1435,0.5605,0
0.365,0.115,0.505,0.0,0.15,0.25,0.096,0.521,0
0.4,0.145,0.51,2.0,0.177,0.231,0.143,0.5775,0
0.4,0.125,0.51,2.0,0.204,0.239,0.13,0.5935,0
0.4,0.11,0.52,2.0,0.16,0.2935,0.1155,0.597,0
0.465,0.15,0.52,0.0,0.255,0.456,0.199,0.9505,0
0.38,0.125,0.53,2.0,0.185,0.292,0.113,0.616,0
0.405,0.15,0.53,0.0,0.2525,0.352,0.187,0.8315,1
0.445,0.125,0.535,1.0,0.24,0.417,0.199,0.8725,0
0.425,0.13,0.54,2.0,0.246,0.3675,0.1365,0.8155,1
0.415,0.11,0.54,2.0,0.1765,0.2755,0.15,0.619,1
0.43,0.13,0.545,2.0,0.2055,0.358,0.153,0.7595,0
0.43,0.15,0.545,2.0,0.208,0.3525,0.158,0.742,1
0.435,0.165,0.55,2.0,0.244,0.34,0.194,0.804,0
0.425,0.13,0.55,2.0,0.21,0.2695,0.163,0.664,0
0.435,0.14,0.55,1.0,0.2265,0.347,0.174,0.745,0
0.43,0.13,0.56,2.0,0.2175,0.3355,0.1435,0.728,0
0.435,0.13,0.56,2.0,0.222,0.354,0.173,0.777,0
0.425,0.15,0.575,1.0,0.228,0.455,0.18,0.8765,0
0.455,0.16,0.575,2.0,0.246,0.495,0.195,0.9895,0
0.45,0.165,0.575,0.0,0.23,0.498,0.19,0.9655,0
0.465,0.15,0.58,0.0,0.29,0.371,0.1965,0.9065,0
0.46,0.15,0.58,0.0,0.305,0.5205,0.1935,1.049,1
0.45,0.17,0.58,1.0,0.248,0.4615,0.232,0.9705,0
0.45,0.15,0.58,1.0,0.2895,0.393,0.212,0.92,0
0.445,0.15,0.58,0.0,0.287,0.4315,0.1945,0.9525,1
0.44,0.125,0.58,1.0,0.195,0.363,0.1955,0.7855,1
0.45,0.135,0.585,2.0,0.26,0.3795,0.187,0.855,0
0.5,0.15,0.59,0.0,0.345,0.485,0.265,1.142,0
0.46,0.125,0.59,2.0,0.238,0.334,0.15,0.755,0
0.475,0.145,0.59,2.0,0.259,0.4675,0.207,0.9745,1
0.47,0.155,0.595,0.0,0.265,0.492,0.3865,1.2015,1
0.46,0.17,0.595,0.0,0.265,0.57,0.2555,1.1295,1
0.445,0.135,0.6,2.0,0.253,0.445,0.2035,0.9205,0
0.48,0.17,0.6,1.0,0.3135,0.4575,0.2435,1.056,1
0.45,0.195,0.6,0.0,0.3605,0.617,0.3255,1.34,1
0.45,0.15,0.6,1.0,0.2775,0.4375,0.2225,0.9625,0
0.465,0.165,0.6,0.0,0.315,0.465,0.2345,1.0475,1
0.495,0.17,0.605,1.0,0.335,0.4365,0.2715,1.0915,1
0.49,0.18,0.605,0.0,0.3745,0.457,0.29,1.167,0
0.48,0.155,0.605,2.0,0.3,0.425,0.1985,0.9995,1
0.425,0.155,0.61,2.0,0.274,0.507,0.1955,1.0485,1
0.47,0.195,0.61,1.0,0.398,0.469,0.3315,1.2735,1
0.48,0.14,0.61,0.0,0.2915,0.516,0.225,1.0625,1
0.49,0.16,0.61,2.0,0.2915,0.5865,0.2385,1.1545,1
0.475,0.175,0.615,1.0,0.3165,0.559,0.259,1.194,1
0.515,0.135,0.615,1.0,0.29,0.545,0.2305,1.1215,0
0.455,0.15,0.615,0.0,0.2615,0.382,0.247,0.9335,1
0.495,0.165,0.615,1.0,0.3185,0.5415,0.2865,1.198,1
0.475,0.15,0.62,1.0,0.277,0.455,0.1865,0.9545,0
0.475,0.195,0.62,0.0,0.3745,0.5935,0.3365,1.3585,1
0.495,0.175,0.625,0.0,0.3525,0.531,0.281,1.2075,1
0.515,0.165,0.625,0.0,0.3115,0.667,0.2065,1.217,1
0.5,0.16,0.625,1.0,0.355,0.5725,0.207,1.217,1
0.49,0.145,0.625,1.0,0.28,0.437,0.1735,0.92,1
0.49,0.12,0.625,0.0,0.233,0.456,0.18,0.8765,1
0.48,0.165,0.63,1.0,0.3885,0.5505,0.277,1.2615,1
0.53,0.18,0.63,0.0,0.315,0.618,0.256,1.2795,0
0.485,0.185,0.63,1.0,0.34,0.548,0.2485,1.167,1
0.51,0.17,0.63,0.0,0.348,0.4915,0.3065,1.1885,0
0.485,0.19,0.635,1.0,0.406,0.634,0.2885,1.3765,1
0.52,0.175,0.635,0.0,0.367,0.6,0.269,1.292,1
0.485,0.18,0.635,0.0,0.355,0.4785,0.2775,1.1795,1
0.5,0.19,0.635,1.0,0.352,0.593,0.3045,1.29,0
0.515,0.16,0.635,0.0,0.345,0.5385,0.282,1.2075,1
0.505,0.18,0.64,0.0,0.363,0.59,0.3125,1.297,1
0.575,0.175,0.64,0.0,0.4395,0.625,0.266,1.4585,1
0.485,0.15,0.645,1.0,0.293,0.5935,0.2315,1.151,1
0.52,0.17,0.645,1.0,0.317,0.526,0.2925,1.197,1
0.495,0.19,0.645,0.0,0.445,0.6115,0.408,1.539,1
0.52,0.195,0.65,0.0,0.47,0.693,0.44,1.676,1
0.565,0.2,0.65,1.0,0.43,0.753,0.367,1.6645,1
0.5,0.205,0.655,1.0,0.4535,0.6215,0.3725,1.528,1
0.515,0.2,0.655,1.0,0.405,0.7255,0.309,1.494,1
0.525,0.16,0.66,1.0,0.394,0.4975,0.319,1.277,1
0.525,0.18,0.66,1.0,0.3605,0.7765,0.397,1.5965,1
0.51,0.175,0.665,1.0,0.325,0.675,0.2985,1.3805,1
0.485,0.175,0.67,2.0,0.386,0.5355,0.322,1.2565,0
0.525,0.19,0.67,1.0,0.44,0.5755,0.353,1.527,1
0.525,0.17,0.67,0.0,0.387,0.715,0.3025,1.4005,0
0.525,0.195,0.67,0.0,0.425,0.6595,0.2675,1.4405,0
0.54,0.175,0.67,0.0,0.365,0.739,0.2925,1.482,1
0.515,0.16,0.68,0.0,0.325,0.618,0.2625,1.2345,1
0.505,0.17,0.68,1.0,0.355,0.657,0.297,1.3435,1
0.505,0.19,0.685,0.0,0.41,0.667,0.4055,1.533,1
0.515,0.18,0.69,0.0,0.341,0.9815,0.4655,1.8445,1
0.55,0.175,0.715,0.0,0.44,0.938,0.3805,1.825,1
0.58,0.19,0.72,0.0,0.5305,0.9955,0.478,2.0885,1
0.59,0.205,0.735,0.0,0.625,0.909,0.474,2.087,1
0.575,0.2,0.745,0.0,0.495,0.954,0.336,1.884,1
0.215,0.095,0.32,2.0,0.0885,0.14,0.067,0.305,0
0.345,0.115,0.43,2.0,0.109,0.212,0.108,0.4295,0
0.33,0.1,0.43,2.0,0.097,0.254,0.0825,0.449,0
0.365,0.155,0.485,0.0,0.313,0.4235,0.2285,1.029,0
0.355,0.155,0.49,0.0,0.2505,0.465,0.2015,0.981,0
0.37,0.115,0.5,2.0,0.141,0.306,0.112,0.5745,0
0.38,0.13,0.505,1.0,0.1515,0.391,0.1195,0.693,0
0.37,0.21,0.51,1.0,0.343,0.508,0.292,1.183,0
0.41,0.135,0.525,1.0,0.177,0.4065,0.198,0.7905,0
0.4,0.15,0.535,1.0,0.2875,0.618,0.275,1.224,1
0.4,0.135,0.535,2.0,0.2055,0.368,0.208,0.775,0
0.405,0.175,0.535,0.0,0.337,0.548,0.3265,1.2705,1
0.405,0.19,0.555,0.0,0.389,0.6115,0.342,1.406,1
0.425,0.15,0.555,0.0,0.1965,0.4625,0.1845,0.873,0
0.425,0.135,0.56,0.0,0.1975,0.509,0.2015,0.9415,0
0.44,0.14,0.59,1.0,0.2925,0.4775,0.2105,1.007,0
0.485,0.15,0.595,0.0,0.276,0.5305,0.231,1.0835,0
0.43,0.165,0.595,2.0,0.2725,0.4525,0.207,0.9845,0
0.43,0.21,0.595,1.0,0.41,0.653,0.396,1.5245,1
0.475,0.175,0.61,0.0,0.322,0.409,0.261,1.024,0
0.485,0.17,0.61,0.0,0.33,0.597,0.3035,1.281,0
0.5,0.17,0.62,1.0,0.3315,0.5475,0.22,1.148,1
0.49,0.11,0.625,1.0,0.2925,0.5265,0.1915,1.136,0
0.51,0.17,0.635,1.0,0.354,0.532,0.271,1.2235,0
0.525,0.18,0.635,1.0,0.363,0.634,0.318,1.3695,1
0.485,0.16,0.64,0.0,0.2835,0.456,0.2245,1.006,0
0.495,0.165,0.64,0.0,0.266,0.678,0.292,1.307,1
0.505,0.185,0.645,0.0,0.416,0.592,0.3905,1.463,1
0.505,0.175,0.655,1.0,0.326,0.6205,0.2965,1.2905,1
0.515,0.17,0.67,1.0,0.37,0.6605,0.3395,1.4265,1
0.54,0.21,0.68,0.0,0.437,0.8345,0.408,1.7885,1
0.545,0.185,0.7,0.0,0.3685,0.75,0.4035,1.6135,1
0.585,0.225,0.73,0.0,0.563,1.2395,0.422,2.2305,1
0.615,0.205,0.75,1.0,0.726,0.821,0.423,2.2635,1
0.185,0.065,0.255,2.0,0.02,0.0305,0.0165,0.074,0
0.26,0.08,0.375,2.0,0.07,0.09,0.0415,0.2075,0
0.285,0.09,0.375,2.0,0.08,0.106,0.0395,0.237,0
0.3,0.1,0.39,2.0,0.084,0.1105,0.059,0.2665,0
0.28,0.09,0.39,2.0,0.079,0.0845,0.034,0.215,0
0.3,0.09,0.395,2.0,0.075,0.1155,0.05,0.253,0
0.32,0.11,0.42,2.0,0.0945,0.115,0.0645,0.309,0
0.335,0.105,0.435,2.0,0.1135,0.156,0.05,0.3535,0
0.325,0.105,0.435,2.0,0.115,0.136,0.065,0.335,0
0.32,0.105,0.44,2.0,0.12,0.1755,0.074,0.3875,0
0.33,0.115,0.45,2.0,0.1245,0.14,0.0825,0.365,0
0.34,0.125,0.45,2.0,0.1345,0.171,0.07,0.4045,0
0.355,0.105,0.455,2.0,0.135,0.138,0.0765,0.372,0
0.37,0.11,0.46,2.0,0.1455,0.1485,0.0855,0.3965,0
0.375,0.125,0.47,2.0,0.162,0.2265,0.104,0.5225,0
0.375,0.11,0.475,2.0,0.16,0.182,0.099,0.456,0
0.33,0.1,0.495,2.0,0.15,0.177,0.095,0.44,0
0.375,0.115,0.495,2.0,0.15,0.241,0.103,0.507,0
0.38,0.135,0.5,2.0,0.209,0.226,0.123,0.5285,0
0.385,0.125,0.515,2.0,0.165,0.237,0.1435,0.572,0
0.41,0.14,0.52,2.0,0.196,0.2775,0.1555,0.6625,1
0.395,0.115,0.52,2.0,0.186,0.3155,0.1245,0.6445,1
0.4,0.11,0.525,2.0,0.18,0.3015,0.126,0.6275,0
0.42,0.145,0.535,2.0,0.237,0.273,0.1515,0.6885,0
0.41,0.12,0.535,0.0,0.159,0.3125,0.1655,0.6835,0
0.42,0.19,0.54,0.0,0.38,0.293,0.163,0.6855,1
0.405,0.15,0.55,2.0,0.21,0.3015,0.1465,0.6755,1
0.445,0.145,0.55,2.0,0.265,0.3045,0.157,0.783,1
0.45,0.145,0.56,0.0,0.264,0.3885,0.2095,0.894,0
0.44,0.135,0.565,2.0,0.2475,0.3305,0.1385,0.768,0
0.45,0.145,0.57,0.0,0.2845,0.4005,0.2235,0.95,1
0.47,0.14,0.57,1.0,0.2315,0.385,0.211,0.871,1
0.47,0.15,0.575,0.0,0.276,0.4505,0.196,0.9785,0
0.43,0.13,0.575,2.0,0.22,0.2895,0.2005,0.7425,0
0.445,0.14,0.575,0.0,0.237,0.325,0.1405,0.737,1
0.445,0.16,0.575,2.0,0.24,0.45,0.1935,0.9175,0
0.435,0.155,0.58,1.0,0.2425,0.425,0.1685,0.8785,1
0.45,0.175,0.585,0.0,0.335,0.4925,0.262,1.1275,1
0.435,0.165,0.59,0.0,0.235,0.4525,0.2395,0.9765,0
0.47,0.145,0.59,2.0,0.289,0.453,0.236,0.974,0
0.405,0.15,0.59,0.0,0.245,0.326,0.2615,0.853,0
0.47,0.175,0.595,0.0,0.5,0.382,0.2395,0.991,1
0.48,0.14,0.595,0.0,0.289,0.4095,0.1825,0.9125,0
0.46,0.16,0.595,1.0,0.2875,0.4005,0.2025,0.921,0
0.45,0.14,0.6,1.0,0.291,0.3425,0.195,0.869,1
0.45,0.15,0.6,0.0,0.255,0.3695,0.1955,0.8665,1
0.495,0.16,0.61,1.0,0.384,0.469,0.198,1.089,1
0.485,0.215,0.615,0.0,0.29,0.422,0.176,0.9615,1
0.49,0.17,0.615,0.0,0.343,0.4915,0.208,1.145,1
0.475,0.16,0.62,2.0,0.3075,0.371,0.167,0.907,1
0.515,0.155,0.625,1.0,0.355,0.4875,0.259,1.1635,1
0.515,0.175,0.63,0.0,0.37,0.492,0.247,1.1955,1
0.495,0.18,0.63,0.0,0.4695,0.495,0.295,1.31,1
0.505,0.165,0.635,1.0,0.3825,0.577,0.227,1.251,1
0.49,0.155,0.635,1.0,0.3155,0.4775,0.3035,1.145,0
0.5,0.18,0.635,0.0,0.387,0.4405,0.2315,1.154,0
0.485,0.145,0.64,1.0,0.3015,0.5525,0.2505,1.1335,1
0.5,0.15,0.64,1.0,0.3355,0.559,0.231,1.2015,0
0.505,0.17,0.65,0.0,0.395,0.695,0.3515,1.5595,1
0.51,0.175,0.65,0.0,0.364,0.6345,0.2605,1.3165,1
0.54,0.165,0.655,0.0,0.42,0.6955,0.2385,1.403,1
0.49,0.16,0.655,1.0,0.3225,0.5455,0.2615,1.204,0
0.455,0.17,0.655,1.0,0.3415,0.587,0.3165,1.2895,1
0.53,0.18,0.66,1.0,0.401,0.7765,0.302,1.5175,1
0.525,0.155,0.665,0.0,0.4485,0.5325,0.3045,1.3575,1
0.52,0.145,0.675,0.0,0.385,0.557,0.3405,1.3645,1
0.52,0.185,0.68,1.0,0.406,0.615,0.3935,1.494,1
0.56,0.195,0.68,1.0,0.545,0.58,0.3855,1.664,1
0.51,0.165,0.685,0.0,0.4055,0.686,0.3775,1.545,1
0.535,0.2,0.695,1.0,0.471,0.667,0.334,1.5855,1
0.555,0.22,0.7,1.0,0.455,0.647,0.4285,1.666,1
0.56,0.175,0.71,0.0,0.4625,0.566,0.4575,1.724,1
0.55,0.205,0.73,1.0,0.5965,0.5415,0.3565,1.908,1
0.575,0.2,0.755,1.0,0.48,1.0135,0.4655,2.073,1
0.17,0.05,0.225,2.0,0.017,0.019,0.012,0.0515,0
0.17,0.05,0.23,2.0,0.016,0.026,0.013,0.057,0
0.185,0.06,0.255,2.0,0.025,0.039,0.021,0.0925,0
0.27,0.075,0.355,2.0,0.0595,0.3045,0.046,0.204,0
0.31,0.095,0.425,2.0,0.093,0.139,0.0745,0.3075,0
0.32,0.085,0.425,2.0,0.0725,0.1235,0.067,0.262,0
0.35,0.11,0.455,0.0,0.1305,0.2,0.111,0.458,0
0.355,0.14,0.46,0.0,0.174,0.207,0.115,0.491,1
0.38,0.12,0.495,0.0,0.1545,0.197,0.1065,0.474,1
0.395,0.125,0.51,0.0,0.188,0.244,0.1335,0.5805,1
0.43,0.15,0.52,1.0,0.235,0.302,0.1575,0.728,1
0.4,0.13,0.525,0.0,0.184,0.2655,0.147,0.622,0
0.415,0.12,0.53,0.0,0.1345,0.3355,0.1635,0.706,0
0.395,0.115,0.53,1.0,0.161,0.249,0.1375,0.5685,0
0.435,0.145,0.545,0.0,0.345,0.3685,0.1245,0.9385,1
0.43,0.15,0.55,1.0,0.221,0.2635,0.122,0.655,0
0.48,0.15,0.575,0.0,0.2505,0.4355,0.2605,0.9465,0
0.43,0.125,0.58,0.0,0.121,0.446,0.2075,0.9115,1
0.455,0.145,0.595,0.0,0.277,0.43,0.182,0.942,1
0.465,0.18,0.6,0.0,0.3055,0.5145,0.315,1.193,0
0.5,0.18,0.645,0.0,0.439,0.5985,0.2425,1.461,1
0.525,0.2,0.66,0.0,0.421,0.6065,0.3795,1.489,1
0.215,0.06,0.29,2.0,0.032,0.053,0.0185,0.1115,0
0.22,0.065,0.3,2.0,0.0315,0.059,0.026,0.1235,0
0.275,0.1,0.37,2.0,0.068,0.1505,0.0505,0.2815,0
0.285,0.08,0.375,2.0,0.0725,0.0975,0.04,0.226,0
0.29,0.085,0.38,2.0,0.075,0.088,0.0465,0.2285,0
0.3,0.12,0.395,2.0,0.0895,0.1265,0.068,0.2995,0
0.325,0.105,0.41,2.0,0.103,0.1605,0.0665,0.361,0
0.32,0.115,0.415,2.0,0.094,0.1215,0.0735,0.3045,0
0.325,0.105,0.425,2.0,0.1175,0.1815,0.081,0.3975,0
0.34,0.1,0.44,2.0,0.101,0.1725,0.0815,0.379,0
0.34,0.12,0.44,2.0,0.1185,0.2965,0.0945,0.4995,0
0.405,0.135,0.465,0.0,0.1455,0.436,0.1715,0.7775,1
0.36,0.1,0.47,1.0,0.1385,0.1635,0.089,0.4705,0
0.415,0.145,0.51,0.0,0.203,0.3295,0.1835,0.751,0
0.4,0.135,0.525,1.0,0.208,0.318,0.138,0.714,1
0.4,0.13,0.525,1.0,0.223,0.3115,0.131,0.6995,0
0.425,0.14,0.55,1.0,0.2185,0.4895,0.1945,0.952,0
0.42,0.15,0.56,0.0,0.2315,0.44,0.1965,0.8755,0
0.45,0.135,0.575,0.0,0.2365,0.354,0.209,0.9215,0
0.45,0.135,0.575,1.0,0.236,0.362,0.1655,0.8285,1
0.46,0.15,0.585,0.0,0.323,0.581,0.216,1.206,1
0.495,0.155,0.615,0.0,0.3245,0.435,0.293,1.2865,1
0.485,0.155,0.62,1.0,0.352,0.5105,0.271,1.1945,0
0.495,0.19,0.63,1.0,0.1625,0.536,0.2115,1.1655,1
0.49,0.17,0.63,1.0,0.3105,0.4625,0.2045,1.2155,1
0.515,0.165,0.67,0.0,0.316,0.526,0.285,1.1735,1
0.505,0.16,0.675,0.0,0.3815,0.74,0.357,1.532,1
0.53,0.17,0.685,1.0,0.3725,0.7385,0.3525,1.5105,1
0.39,0.1,0.485,1.0,0.185,0.2215,0.1155,0.5565,0
0.36,0.125,0.46,0.0,0.19,0.2165,0.1105,0.547,0
0.35,0.125,0.46,0.0,0.185,0.1885,0.1145,0.5165,0
0.42,0.125,0.535,0.0,0.265,0.312,0.1505,0.764,1
0.36,0.105,0.465,0.0,0.19,0.188,0.0845,0.488,1
0.4,0.14,0.51,0.0,0.23,0.259,0.151,0.6905,1
0.26,0.09,0.335,2.0,0.065,0.078,0.024,0.1835,1
0.425,0.16,0.55,0.0,0.48,0.2885,0.139,0.97,1
0.135,0.08,0.18,2.0,0.01,0.0145,0.007,0.033,0
0.165,0.055,0.215,2.0,0.0185,0.0265,0.0125,0.059,0
0.15,0.04,0.2,2.0,0.0065,0.021,0.007,0.046,0
0.48,0.2,0.625,1.0,0.355,0.6075,0.3055,1.3235,0
0.42,0.17,0.55,0.0,0.245,0.336,0.2405,0.8465,1
0.45,0.15,0.585,0.0,0.315,0.4315,0.276,1.047,1
0.5,0.18,0.645,1.0,0.345,0.5345,0.2995,1.2785,1
0.53,0.195,0.71,1.0,0.6855,0.6755,0.4065,1.8745,1
0.54,0.215,0.7,1.0,0.71,0.6675,0.3125,1.978,1
0.505,0.165,0.655,1.0,0.396,0.5835,0.3515,1.367,1
0.5,0.175,0.665,1.0,0.725,0.595,0.3025,1.742,1
0.375,0.105,0.47,1.0,0.13,0.232,0.142,0.513,1
0.335,0.1,0.425,0.0,0.135,0.1755,0.092,0.4085,0
0.41,0.13,0.54,0.0,0.175,0.2375,0.1065,0.56,0
0.395,0.125,0.505,0.0,0.175,0.29,0.1555,0.635,0
0.44,0.165,0.535,0.0,0.3,0.279,0.18,0.875,1
0.35,0.09,0.43,1.0,0.12,0.1575,0.089,0.397,0
0.435,0.11,0.55,0.0,0.215,0.3415,0.203,0.806,0
0.255,0.085,0.34,1.0,0.05,0.097,0.021,0.204,0
0.2,0.065,0.275,2.0,0.035,0.0565,0.013,0.1165,0
0.22,0.07,0.335,1.0,0.05,0.076,0.0365,0.17,0
0.49,0.14,0.64,0.0,0.375,0.4445,0.238,1.194,1
0.44,0.125,0.55,1.0,0.245,0.33,0.2125,0.765,0
0.475,0.19,0.64,1.0,0.3805,0.4365,0.281,1.151,1
0.41,0.115,0.545,1.0,0.22,0.29,0.158,0.6765,0
0.54,0.175,0.64,1.0,0.475,0.627,0.271,1.571,1
0.49,0.155,0.605,0.0,0.295,0.503,0.2505,1.153,1
0.47,0.115,0.605,0.0,0.31,0.3925,0.291,1.114,1
0.45,0.155,0.56,0.0,0.35,0.3595,0.271,0.9125,1
0.465,0.155,0.57,1.0,0.285,0.3245,0.239,0.872,1
0.405,0.16,0.525,0.0,0.28,0.316,0.1455,0.792,1
0.405,0.18,0.505,1.0,0.18,0.239,0.1235,0.606,1
0.265,0.09,0.35,0.0,0.065,0.0995,0.0575,0.2265,0
0.355,0.12,0.45,0.0,0.145,0.147,0.0765,0.3955,0
0.405,0.12,0.51,2.0,0.235,0.229,0.131,0.61,1
0.38,0.13,0.49,1.0,0.165,0.229,0.1355,0.539,1
0.41,0.135,0.505,1.0,0.195,0.291,0.133,0.657,1
0.3,0.1,0.38,0.0,0.0775,0.106,0.0535,0.2505,0
0.195,0.07,0.27,2.0,0.034,0.045,0.0135,0.102,0
0.295,0.1,0.37,1.0,0.0835,0.1165,0.056,0.2685,0
0.385,0.135,0.5,0.0,0.206,0.2245,0.0715,0.551,1
0.505,0.165,0.645,0.0,0.52,0.4335,0.262,1.307,1
0.44,0.115,0.565,0.0,0.29,0.404,0.1785,0.9185,1
0.545,0.175,0.67,1.0,0.575,0.6995,0.387,1.707,1
0.415,0.15,0.59,1.0,0.235,0.3645,0.234,0.8805,1
0.36,0.11,0.47,1.0,0.13,0.237,0.127,0.4965,0
0.385,0.135,0.51,1.0,0.17,0.282,0.145,0.632,0
0.575,0.23,0.72,0.0,0.665,0.8835,0.3985,2.2695,1
0.405,0.15,0.55,0.0,0.24,0.412,0.2135,0.9235,0
0.145,0.025,0.2,2.0,0.01,0.011,0.0075,0.0345,0
0.515,0.18,0.65,0.0,0.405,0.5665,0.347,1.3315,1
0.405,0.115,0.525,1.0,0.2,0.3105,0.1915,0.72,1
0.435,0.185,0.565,0.0,0.31,0.354,0.2045,1.032,1
0.47,0.16,0.61,1.0,0.32,0.426,0.2255,1.017,1
0.405,0.175,0.545,1.0,0.38,0.2585,0.207,0.98,1
0.245,0.075,0.325,2.0,0.045,0.0605,0.033,0.1495,0
0.235,0.075,0.31,2.0,0.05,0.056,0.0315,0.1515,0
0.335,0.14,0.45,0.0,0.16,0.1865,0.115,0.478,1
0.38,0.155,0.49,1.0,0.18,0.2395,0.1255,0.578,0
0.405,0.16,0.505,1.0,0.215,0.271,0.145,0.6835,1
0.3,0.1,0.385,1.0,0.08,0.1115,0.057,0.2725,0
0.485,0.22,0.62,1.0,0.51,0.5095,0.284,1.511,1
0.505,0.185,0.635,1.0,0.41,0.501,0.295,1.3035,1
0.53,0.185,0.665,1.0,0.49,0.456,0.3205,1.3955,1
0.265,0.095,0.335,0.0,0.07,0.0795,0.0375,0.1975,0
0.215,0.075,0.295,2.0,0.04,0.037,0.0295,0.116,0
0.38,0.125,0.48,2.0,0.175,0.2105,0.1045,0.523,1
0.25,0.08,0.32,2.0,0.06,0.057,0.034,0.1565,0
0.34,0.125,0.43,2.0,0.146,0.1375,0.061,0.384,1
0.45,0.14,0.565,0.0,0.265,0.3785,0.244,1.0055,1
0.48,0.165,0.6,1.0,0.335,0.4535,0.27,1.1345,1
0.46,0.17,0.585,1.0,0.325,0.3745,0.326,1.0835,1
0.42,0.14,0.555,1.0,0.21,0.33,0.243,0.868,1
0.495,0.16,0.57,1.0,0.315,0.452,0.275,1.0915,1
0.485,0.175,0.62,1.0,0.37,0.531,0.3075,1.271,1
0.51,0.19,0.63,0.0,0.545,0.4125,0.3075,1.4985,1
0.34,0.12,0.425,0.0,0.125,0.149,0.087,0.388,1
0.505,0.19,0.64,1.0,0.365,0.4435,0.3105,1.2355,1
0.525,0.175,0.675,0.0,0.465,0.483,0.3205,1.402,1
0.4,0.145,0.5,0.0,0.21,0.216,0.138,0.6025,1
0.305,0.09,0.385,0.0,0.1,0.109,0.0515,0.2775,0
0.435,0.195,0.52,0.0,0.355,0.2985,0.2135,0.973,1
0.415,0.175,0.52,0.0,0.255,0.258,0.171,0.753,0
0.525,0.2,0.64,0.0,0.47,0.44,0.3075,1.3765,1
0.35,0.12,0.44,2.0,0.115,0.1425,0.0965,0.375,0
0.32,0.13,0.42,1.0,0.119,0.1645,0.106,0.4135,1
0.35,0.135,0.45,1.0,0.145,0.231,0.137,0.56,1
0.325,0.125,0.42,2.0,0.115,0.1575,0.1025,0.3915,0
0.505,0.19,0.64,1.0,0.4,0.4835,0.328,1.2765,1
0.455,0.15,0.57,0.0,0.275,0.387,0.2385,0.96,1
0.325,0.12,0.41,0.0,0.125,0.158,0.081,0.3745,1
0.41,0.15,0.485,0.0,0.265,0.2405,0.1625,0.696,1
0.48,0.19,0.61,1.0,0.365,0.5215,0.3225,1.2955,1
0.485,0.205,0.59,1.0,0.42,0.4525,0.238,1.2315,1
0.535,0.155,0.665,0.0,0.485,0.596,0.2565,1.383,1
0.285,0.1,0.345,2.0,0.075,0.0865,0.058,0.2225,0
0.51,0.155,0.635,0.0,0.315,0.428,0.289,1.156,1
0.53,0.15,0.695,0.0,0.43,0.6375,0.3025,1.477,1
0.54,0.185,0.69,1.0,0.47,0.6935,0.318,1.5715,1
0.435,0.135,0.555,0.0,0.29,0.377,0.1585,0.858,1
0.525,0.19,0.65,0.0,0.395,0.6265,0.4005,1.4995,1
0.48,0.19,0.635,0.0,0.42,0.5825,0.303,1.467,1
0.51,0.16,0.655,1.0,0.37,0.396,0.2825,1.092,1
0.555,0.205,0.69,1.0,0.515,0.7785,0.4395,1.8165,1
0.55,0.16,0.695,1.0,0.44,0.694,0.3005,1.6365,1
0.435,0.16,0.55,0.0,0.295,0.342,0.219,0.906,1
0.495,0.19,0.61,1.0,0.365,0.464,0.306,1.213,1
0.5,0.165,0.595,0.0,0.275,0.402,0.28,1.06,1
0.24,0.09,0.3,0.0,0.05,0.0725,0.039,0.161,0
0.35,0.125,0.435,1.0,0.145,0.197,0.1145,0.459,0
0.375,0.125,0.455,2.0,0.185,0.233,0.106,0.533,0
0.38,0.13,0.48,0.0,0.175,0.3,0.142,0.6175,1
0.35,0.105,0.43,2.0,0.11,0.1705,0.0855,0.366,0
0.35,0.105,0.435,1.0,0.13,0.194,0.1005,0.4195,0
0.23,0.075,0.3,2.0,0.045,0.0605,0.042,0.15,0
0.48,0.15,0.575,1.0,0.29,0.375,0.193,0.8745,1
0.385,0.11,0.505,0.0,0.185,0.3185,0.15,0.655,0
0.375,0.125,0.455,0.0,0.165,0.2155,0.102,0.484,0
0.505,0.165,0.64,0.0,0.39,0.6145,0.3035,1.4435,1
0.435,0.125,0.56,1.0,0.29,0.3345,0.2145,0.8775,1
0.52,0.19,0.645,1.0,0.37,0.58,0.288,1.3105,1
0.485,0.145,0.595,1.0,0.33,0.5035,0.2925,1.2515,1
0.45,0.115,0.565,0.0,0.29,0.398,0.197,0.9085,1
0.5,0.14,0.655,1.0,0.285,0.5405,0.3175,1.1705,1
0.38,0.135,0.48,0.0,0.16,0.2,0.1395,0.528,1
0.385,0.135,0.495,1.0,0.185,0.3005,0.1635,0.6625,1
0.335,0.115,0.4,1.0,0.12,0.2105,0.1205,0.4335,1
0.31,0.125,0.41,0.0,0.115,0.1415,0.0885,0.3595,1
0.465,0.145,0.595,1.0,0.31,0.402,0.2415,1.107,1
0.475,0.13,0.625,1.0,0.24,0.3195,0.1775,0.8595,1
0.425,0.155,0.52,0.0,0.255,0.297,0.123,0.7735,1
0.36,0.125,0.465,0.0,0.145,0.169,0.1075,0.4365,1
0.375,0.14,0.475,1.0,0.175,0.192,0.1175,0.501,1
0.405,0.14,0.5,1.0,0.25,0.265,0.124,0.6735,1
0.355,0.11,0.46,0.0,0.13,0.215,0.082,0.415,1
0.385,0.125,0.485,0.0,0.17,0.2,0.0785,0.4775,1
0.39,0.14,0.465,1.0,0.215,0.213,0.1075,0.5555,1
0.415,0.16,0.525,0.0,0.22,0.26,0.1575,0.6445,1
0.53,0.19,0.655,1.0,0.565,0.493,0.318,1.428,1
0.54,0.185,0.69,0.0,0.555,0.533,0.353,1.6195,1
0.45,0.17,0.55,0.0,0.22,0.317,0.157,0.81,1
0.475,0.165,0.58,1.0,0.305,0.414,0.26,1.0385,1
0.475,0.155,0.59,1.0,0.28,0.371,0.235,0.9715,1
0.44,0.155,0.565,0.0,0.26,0.348,0.217,0.868,1
0.57,0.185,0.665,1.0,0.405,0.6965,0.3025,1.522,1
0.51,0.175,0.62,1.0,0.315,0.4985,0.227,1.1255,1
0.46,0.13,0.55,0.0,0.205,0.305,0.1455,0.7085,1
0.475,0.145,0.605,1.0,0.27,0.4695,0.225,1.0185,1
0.42,0.16,0.535,0.0,0.225,0.275,0.164,0.72,1
0.395,0.12,0.51,1.0,0.193,0.262,0.122,0.6175,1
0.405,0.13,0.53,0.0,0.193,0.2845,0.17,0.738,0
0.375,0.15,0.495,1.0,0.178,0.2615,0.135,0.597,1
0.455,0.185,0.575,0.0,0.295,0.5525,0.243,1.156,1
0.5,0.16,0.63,1.0,0.345,0.4905,0.3,1.22,1
0.45,0.12,0.59,0.0,0.22,0.3345,0.1315,0.7485,1
0.485,0.165,0.605,1.0,0.33,0.437,0.205,1.0735,1
0.5,0.19,0.645,0.0,0.395,0.524,0.278,1.229,1
0.5,0.175,0.62,1.0,0.39,0.477,0.23,1.146,1
0.485,0.175,0.605,0.0,0.405,0.4325,0.27,1.145,1
0.5,0.205,0.615,1.0,0.39,0.4445,0.227,1.1055,1
0.525,0.19,0.66,1.0,0.49,0.6525,0.4875,1.67,1
0.575,0.175,0.71,1.0,0.52,0.6465,0.3705,1.555,1
0.45,0.185,0.565,1.0,0.265,0.302,0.1805,0.9285,1
0.435,0.14,0.57,1.0,0.22,0.3235,0.183,0.8085,1
0.445,0.175,0.6,2.0,0.355,0.383,0.216,1.057,1
0.3,0.115,0.41,2.0,0.08,0.097,0.0515,0.2595,1
0.325,0.135,0.45,1.0,0.11,0.1805,0.1165,0.438,0
0.2,0.08,0.275,0.0,0.03,0.037,0.024,0.099,0
0.355,0.12,0.485,2.0,0.135,0.21,0.122,0.5085,0
0.485,0.165,0.62,1.0,0.355,0.483,0.238,1.166,1
0.38,0.135,0.48,1.0,0.155,0.1915,0.1365,0.507,1
0.41,0.15,0.505,1.0,0.215,0.243,0.1335,0.6345,1
0.31,0.11,0.4,0.0,0.1,0.138,0.057,0.314,1
0.355,0.115,0.45,2.0,0.1125,0.184,0.108,0.4385,1
0.26,0.09,0.35,0.0,0.0655,0.0745,0.041,0.195,0
0.35,0.14,0.44,0.0,0.184,0.171,0.0705,0.451,1
0.2,0.065,0.265,0.0,0.03,0.034,0.0105,0.084,0
0.125,0.04,0.165,0.0,0.008,0.0095,0.0045,0.0245,0
0.555,0.2,0.705,1.0,0.52,0.4715,0.3235,1.4685,1
0.425,0.155,0.535,1.0,0.25,0.302,0.1565,0.7765,1
0.385,0.14,0.49,2.0,0.175,0.198,0.127,0.5425,1
0.37,0.13,0.48,1.0,0.1595,0.2475,0.1505,0.5885,1
0.3,0.105,0.395,1.0,0.098,0.1435,0.0755,0.3375,1
0.28,0.1,0.375,2.0,0.0725,0.1165,0.0585,0.2565,1
0.265,0.09,0.345,0.0,0.0485,0.0615,0.037,0.163,1
0.415,0.135,0.55,2.0,0.28,0.2985,0.2015,0.8095,1
0.48,0.2,0.635,2.0,0.425,0.6255,0.2595,1.3655,1
0.475,0.17,0.575,2.0,0.275,0.3775,0.284,0.967,1
0.435,0.15,0.545,1.0,0.225,0.2905,0.145,0.6855,1
0.305,0.125,0.385,1.0,0.08,0.146,0.0555,0.314,1
0.34,0.18,0.51,1.0,0.2,0.312,0.165,0.7005,1
0.34,0.125,0.44,2.0,0.2,0.1735,0.0875,0.4895,1
0.36,0.125,0.45,2.0,0.145,0.191,0.0865,0.45,1
0.3,0.105,0.39,2.0,0.085,0.0955,0.038,0.259,0
0.325,0.135,0.425,1.0,0.14,0.1465,0.079,0.382,1
0.35,0.125,0.45,1.0,0.145,0.185,0.09,0.4435,1
0.525,0.18,0.66,2.0,0.42,0.6025,0.4005,1.6935,1
0.525,0.175,0.685,1.0,0.58,0.5415,0.309,1.71,1
0.475,0.185,0.585,1.0,0.275,0.3465,0.1785,0.8575,1
0.435,0.145,0.54,2.0,0.264,0.4285,0.22,0.97,1
0.39,0.135,0.49,1.0,0.1845,0.215,0.125,0.59,1
0.33,0.095,0.43,0.0,0.112,0.1315,0.085,0.34,1
0.365,0.11,0.455,1.0,0.1345,0.166,0.046,0.385,1
0.38,0.145,0.495,2.0,0.212,0.175,0.098,0.515,1
0.38,0.145,0.48,1.0,0.23,0.232,0.141,0.59,1
0.4,0.16,0.47,2.0,0.198,0.1615,0.073,0.51,1
0.32,0.1,0.415,0.0,0.104,0.1215,0.0575,0.3005,1
0.385,0.115,0.49,2.0,0.165,0.3265,0.1615,0.683,1
0.375,0.105,0.47,2.0,0.17,0.1665,0.108,0.468,1
0.345,0.13,0.445,2.0,0.18,0.1365,0.0645,0.4075,1
0.38,0.13,0.51,1.0,0.185,0.224,0.1355,0.584,1
0.405,0.145,0.52,1.0,0.205,0.3535,0.1685,0.829,1
0.365,0.14,0.475,2.0,0.158,0.171,0.118,0.4545,0
0.36,0.11,0.455,1.0,0.125,0.206,0.098,0.4385,1
0.34,0.11,0.435,2.0,0.13,0.1685,0.073,0.407,1
0.3,0.1,0.39,2.0,0.085,0.1385,0.0735,0.3085,0
0.285,0.1,0.375,2.0,0.07,0.105,0.0555,0.239,0
0.215,0.075,0.285,0.0,0.035,0.0415,0.023,0.106,0
0.445,0.17,0.58,2.0,0.315,0.3935,0.2165,1.178,1
0.44,0.175,0.58,1.0,0.335,0.4005,0.2345,1.073,1
0.315,0.095,0.41,0.0,0.09,0.121,0.0735,0.306,0
0.3,0.1,0.41,0.0,0.09,0.124,0.069,0.301,0
0.405,0.15,0.54,2.0,0.19,0.307,0.2075,0.7585,1
0.245,0.085,0.33,0.0,0.055,0.0655,0.0365,0.171,1
0.31,0.115,0.44,2.0,0.12,0.134,0.082,0.3625,1
0.21,0.065,0.28,0.0,0.03,0.035,0.02,0.0905,0
0.465,0.195,0.59,2.0,0.375,0.3685,0.187,1.0885,1
0.48,0.165,0.61,2.0,0.335,0.4215,0.264,1.097,1
0.46,0.17,0.61,2.0,0.37,0.41,0.257,1.278,1
0.345,0.125,0.455,0.0,0.135,0.169,0.1065,0.44,1
0.235,0.09,0.33,0.0,0.055,0.0615,0.034,0.163,1
0.33,0.135,0.44,2.0,0.195,0.17,0.0905,0.522,1
0.405,0.155,0.54,0.0,0.29,0.3225,0.194,0.9715,1
0.375,0.125,0.475,1.0,0.155,0.237,0.1715,0.588,1
0.33,0.15,0.46,1.0,0.125,0.2085,0.1805,0.5325,1
0.235,0.09,0.31,2.0,0.04,0.048,0.031,0.127,0
0.19,0.07,0.255,2.0,0.031,0.028,0.016,0.0815,0
0.255,0.075,0.335,0.0,0.057,0.0615,0.0345,0.1635,0
0.21,0.08,0.295,2.0,0.031,0.038,0.026,0.1,0
0.13,0.045,0.19,2.0,0.009,0.009,0.005,0.0265,0
0.435,0.165,0.545,0.0,0.325,0.3245,0.2665,0.9955,1
0.4,0.12,0.495,0.0,0.19,0.2605,0.161,0.6605,1
0.375,0.13,0.5,0.0,0.22,0.3055,0.1725,0.721,1
0.225,0.07,0.305,1.0,0.045,0.0585,0.0335,0.1485,0
0.35,0.115,0.475,1.0,0.125,0.194,0.1455,0.487,1
0.4,0.125,0.515,0.0,0.26,0.341,0.2535,0.955,1
0.41,0.145,0.545,0.0,0.31,0.3035,0.196,0.873,1
0.535,0.185,0.74,0.0,0.335,0.734,0.4505,1.65,1
0.465,0.15,0.565,0.0,0.33,0.377,0.3525,1.1285,1
0.44,0.16,0.56,0.0,0.26,0.5035,0.2785,1.1115,1
0.42,0.125,0.545,0.0,0.305,0.353,0.174,0.9745,1
0.515,0.185,0.645,0.0,0.41,0.5835,0.3155,1.4605,1
0.435,0.13,0.575,0.0,0.32,0.368,0.222,1.0105,1
0.48,0.16,0.62,0.0,0.3,0.412,0.253,1.0765,1
0.45,0.165,0.605,1.0,0.385,0.357,0.202,1.2225,1
0.475,0.16,0.605,0.0,0.34,0.5495,0.332,1.616,1
0.375,0.15,0.475,1.0,0.1945,0.1955,0.1215,0.559,1
0.285,0.085,0.365,0.0,0.07,0.0855,0.0515,0.2205,0
0.35,0.115,0.46,1.0,0.13,0.19,0.1025,0.44,0
0.43,0.135,0.53,0.0,0.25,0.28,0.2165,0.879,1
0.395,0.15,0.48,0.0,0.2495,0.2145,0.1405,0.6815,1
0.345,0.15,0.455,0.0,0.215,0.1685,0.125,0.5795,1
0.265,0.11,0.35,2.0,0.075,0.066,0.059,0.209,0
0.28,0.105,0.37,0.0,0.075,0.0815,0.0575,0.224,0
0.25,0.075,0.34,2.0,0.05,0.0785,0.0405,0.1765,0
0.28,0.075,0.35,2.0,0.064,0.082,0.04,0.196,0
0.265,0.08,0.35,2.0,0.053,0.081,0.0465,0.192,0
0.315,0.09,0.39,2.0,0.09,0.147,0.05,0.3095,0
0.31,0.095,0.395,2.0,0.093,0.131,0.072,0.313,0
0.31,0.105,0.415,2.0,0.0915,0.167,0.083,0.3595,0
0.32,0.1,0.43,2.0,0.1,0.192,0.0745,0.3855,0
0.355,0.115,0.48,2.0,0.184,0.25,0.106,0.5785,0
0.395,0.12,0.49,0.0,0.185,0.3325,0.1235,0.674,0
0.37,0.105,0.49,1.0,0.148,0.249,0.1005,0.5265,0
0.465,0.16,0.56,1.0,0.337,0.432,0.2025,1.0315,0
0.45,0.14,0.56,0.0,0.218,0.472,0.182,0.9,0
0.46,0.15,0.58,0.0,0.265,0.491,0.221,1.0165,0
0.48,0.18,0.58,1.0,0.371,0.4945,0.27,1.2495,0
0.47,0.135,0.59,0.0,0.28,0.539,0.279,1.1685,0
0.475,0.165,0.595,1.0,0.37,0.444,0.214,1.148,1
0.475,0.15,0.6,0.0,0.292,0.5195,0.223,1.089,1
0.47,0.155,0.61,0.0,0.2785,0.497,0.2175,1.0325,0
0.475,0.15,0.63,1.0,0.316,0.536,0.254,1.172,1
0.51,0.17,0.64,0.0,0.409,0.567,0.307,1.3715,1
0.545,0.185,0.65,1.0,0.43,0.6565,0.341,1.5055,1
0.55,0.2,0.71,0.0,0.5,0.882,0.44,1.9045,1
0.605,0.2,0.74,0.0,0.5235,1.1455,0.575,2.4925,1
0.18,0.065,0.25,2.0,0.0215,0.0345,0.0185,0.0805,0
0.21,0.065,0.28,2.0,0.03,0.0425,0.0285,0.111,0
0.24,0.075,0.325,2.0,0.045,0.065,0.0305,0.152,0
0.265,0.095,0.35,2.0,0.06,0.073,0.049,0.199,0
0.27,0.09,0.36,2.0,0.065,0.097,0.0405,0.219,0
0.27,0.105,0.365,2.0,0.063,0.0915,0.0475,0.2155,0
0.28,0.09,0.37,2.0,0.0645,0.1255,0.0645,0.2565,0
0.285,0.09,0.375,2.0,0.075,0.1045,0.062,0.257,0
0.275,0.095,0.38,2.0,0.075,0.0945,0.0655,0.2505,0
0.3,0.09,0.395,2.0,0.075,0.134,0.049,0.279,0
0.335,0.105,0.43,2.0,0.09,0.188,0.0785,0.378,0
0.35,0.125,0.44,2.0,0.131,0.21,0.0955,0.456,0
0.37,0.1,0.465,2.0,0.14,0.234,0.11,0.5055,0
0.355,0.115,0.465,1.0,0.126,0.1955,0.118,0.4705,0
0.37,0.13,0.48,0.0,0.135,0.349,0.1155,0.643,0
0.37,0.1,0.485,2.0,0.13,0.219,0.1075,0.513,0
0.4,0.115,0.49,1.0,0.145,0.256,0.1325,0.569,0
0.4,0.145,0.495,2.0,0.1645,0.2545,0.1305,0.578,0
0.385,0.11,0.5,2.0,0.151,0.3015,0.104,0.596,0
0.39,0.12,0.505,1.0,0.146,0.2555,0.1325,0.5725,0
0.39,0.12,0.52,0.0,0.161,0.2885,0.157,0.6435,0
0.395,0.125,0.52,0.0,0.2,0.4035,0.166,0.8115,0
0.44,0.125,0.525,1.0,0.1915,0.3205,0.159,0.7115,0
0.44,0.155,0.55,0.0,0.25,0.3645,0.195,0.9155,0
0.44,0.145,0.555,1.0,0.2155,0.43,0.1975,0.8815,0
0.42,0.11,0.555,1.0,0.225,0.4445,0.171,0.931,0
0.46,0.165,0.575,1.0,0.2815,0.4985,0.2145,1.065,0
0.475,0.155,0.6,0.0,0.31,0.502,0.2295,1.1385,0
0.48,0.16,0.61,1.0,0.315,0.598,0.238,1.234,1
0.495,0.175,0.61,1.0,0.3455,0.53,0.315,1.2635,1
0.47,0.16,0.61,1.0,0.29,0.4925,0.236,1.0745,0
0.505,0.19,0.615,0.0,0.365,0.6715,0.2925,1.403,0
0.485,0.165,0.62,0.0,0.2825,0.5235,0.2505,1.1325,0
0.495,0.16,0.625,1.0,0.345,0.4495,0.2825,1.1115,1
0.47,0.17,0.625,1.0,0.405,0.525,0.2415,1.255,1
0.485,0.17,0.625,0.0,0.475,0.5855,0.293,1.437,1
0.495,0.155,0.635,0.0,0.295,0.583,0.2985,1.3635,1
0.48,0.195,0.64,1.0,0.353,0.4915,0.2345,1.1435,0
0.5,0.17,0.64,0.0,0.354,0.642,0.3575,1.4545,0
0.525,0.18,0.66,0.0,0.372,0.5815,0.381,1.478,1
0.52,0.165,0.665,1.0,0.4265,0.7295,0.407,1.6885,1
0.585,0.23,0.715,1.0,0.565,0.8655,0.4095,2.0725,1
0.565,0.2,0.72,0.0,0.529,0.718,0.385,1.787,1
0.58,0.185,0.725,1.0,0.4375,0.8045,0.3595,1.523,0
0.12,0.05,0.165,2.0,0.014,0.0075,0.0045,0.021,0
0.15,0.055,0.21,2.0,0.013,0.02,0.0065,0.0455,0
0.265,0.085,0.355,2.0,0.06,0.122,0.0525,0.2435,0
0.315,0.085,0.4,2.0,0.0765,0.116,0.0585,0.2675,0
0.29,0.1,0.4,2.0,0.0815,0.104,0.059,0.258,0
0.3,0.11,0.4,2.0,0.075,0.1375,0.071,0.2985,0
0.335,0.11,0.435,2.0,0.1,0.2025,0.0945,0.411,0
0.33,0.11,0.44,2.0,0.09,0.197,0.079,0.38,0
0.34,0.105,0.45,2.0,0.12,0.21,0.0925,0.4385,0
0.345,0.105,0.465,2.0,0.109,0.242,0.0345,0.4015,0
0.355,0.145,0.47,2.0,0.123,0.156,0.102,0.4485,0
0.355,0.115,0.47,2.0,0.139,0.167,0.084,0.4155,0
0.42,0.16,0.475,2.0,0.1845,0.35,0.1505,0.7095,0
0.37,0.115,0.485,2.0,0.128,0.38,0.1335,0.637,0
0.475,0.16,0.505,1.0,0.3065,0.509,0.239,1.1155,0
0.405,0.13,0.51,2.0,0.1485,0.3065,0.1155,0.599,0
0.38,0.13,0.52,2.0,0.1535,0.2375,0.122,0.5345,0
0.42,0.14,0.53,1.0,0.183,0.2905,0.1165,0.627,0
0.42,0.16,0.535,0.0,0.2185,0.348,0.1515,0.7465,1
0.44,0.16,0.55,0.0,0.27,0.4645,0.201,0.985,0
0.44,0.145,0.555,0.0,0.23,0.4165,0.1685,0.85,0
0.44,0.15,0.555,0.0,0.23,0.4155,0.146,0.838,0
0.43,0.135,0.555,1.0,0.2215,0.4055,0.163,0.812,0
0.415,0.13,0.56,0.0,0.1955,0.3695,0.17,0.7615,0
0.44,0.145,0.575,0.0,0.225,0.3945,0.2195,0.87,0
0.45,0.145,0.585,1.0,0.22,0.4845,0.242,0.9835,0
0.46,0.145,0.59,0.0,0.255,0.38,0.24,0.929,1
0.47,0.165,0.595,1.0,0.289,0.491,0.1905,1.0155,0
0.41,0.145,0.6,0.0,0.268,0.4475,0.196,0.939,0
0.475,0.16,0.6,0.0,0.335,0.5045,0.2635,1.164,1
0.47,0.175,0.61,0.0,0.325,0.5315,0.2835,1.214,1
0.49,0.19,0.615,1.0,0.348,0.4695,0.257,1.1345,1
0.51,0.18,0.62,1.0,0.322,0.592,0.274,1.233,1
0.495,0.18,0.625,0.0,0.3135,0.4715,0.254,1.0815,1
0.47,0.175,0.625,0.0,0.271,0.605,0.258,1.179,0
0.5,0.165,0.64,1.0,0.32,0.554,0.239,1.1635,1
0.475,0.175,0.64,1.0,0.288,0.4865,0.341,1.1545,0
0.52,0.175,0.645,1.0,0.355,0.667,0.2665,1.3345,1
0.505,0.18,0.65,0.0,0.38,0.7115,0.3335,1.469,0
0.52,0.18,0.655,0.0,0.355,0.7185,0.36,1.492,1
0.54,0.175,0.655,1.0,0.385,0.7285,0.402,1.5585,1
0.5,0.175,0.66,1.0,0.4085,0.556,0.2805,1.3275,0
0.525,0.18,0.67,0.0,0.43,0.8005,0.3645,1.6615,1
0.525,0.19,0.69,1.0,0.42,0.6425,0.3905,1.492,1
0.575,0.2,0.7,1.0,0.461,0.7755,0.3965,1.7365,1
0.56,0.175,0.7,1.0,0.398,0.8605,0.3275,1.6605,1
0.57,0.195,0.71,0.0,0.4535,0.8985,0.4435,1.348,1
0.545,0.18,0.715,0.0,0.449,0.871,0.347,1.7405,1
0.545,0.185,0.72,1.0,0.468,0.7925,0.401,1.7185,1
0.15,0.055,0.215,2.0,0.0125,0.015,0.009,0.041,0
0.185,0.06,0.24,2.0,0.02,0.0295,0.0005,0.0655,0
0.205,0.07,0.26,2.0,0.0305,0.0415,0.019,0.097,0
0.24,0.085,0.32,2.0,0.038,0.0615,0.0265,0.131,0
0.23,0.085,0.33,2.0,0.0505,0.079,0.026,0.1695,0
0.26,0.085,0.335,2.0,0.054,0.097,0.03,0.192,0
0.26,0.09,0.35,2.0,0.0575,0.072,0.0355,0.1765,0
0.265,0.085,0.35,2.0,0.056,0.0775,0.034,0.1735,0
0.265,0.075,0.36,2.0,0.054,0.0785,0.035,0.1785,0
0.265,0.09,0.36,2.0,0.0585,0.096,0.037,0.2055,0
0.275,0.09,0.365,2.0,0.0625,0.108,0.051,0.2345,0
0.285,0.09,0.38,2.0,0.0775,0.1005,0.039,0.2305,0
0.31,0.115,0.4,2.0,0.087,0.1545,0.0595,0.314,0
0.315,0.09,0.4,2.0,0.08,0.151,0.068,0.33,0
0.265,0.1,0.4,2.0,0.08,0.1245,0.0605,0.2775,0
0.325,0.11,0.425,2.0,0.1065,0.1695,0.092,0.405,0
0.325,0.105,0.43,2.0,0.098,0.119,0.08,0.309,0
0.335,0.11,0.435,0.0,0.1315,0.2075,0.0715,0.4385,0
0.34,0.12,0.435,2.0,0.125,0.1775,0.081,0.396,0
0.355,0.095,0.445,2.0,0.12,0.1415,0.0785,0.3615,0
0.35,0.11,0.45,2.0,0.14,0.253,0.1045,0.514,0
0.435,0.11,0.455,2.0,0.1205,0.195,0.09,0.4265,0
0.34,0.09,0.46,2.0,0.11,0.1795,0.068,0.384,0
0.355,0.125,0.475,2.0,0.142,0.2155,0.1105,0.4865,0
0.36,0.135,0.475,2.0,0.125,0.196,0.0925,0.4355,0
0.35,0.115,0.475,2.0,0.14,0.2375,0.099,0.498,0
0.355,0.125,0.48,2.0,0.15,0.2385,0.0835,0.494,0
0.37,0.12,0.495,1.0,0.1375,0.28,0.11,0.594,0
0.365,0.125,0.5,2.0,0.1645,0.229,0.103,0.528,0
0.39,0.115,0.505,0.0,0.1535,0.2575,0.119,0.5585,0
0.4,0.135,0.515,2.0,0.1855,0.3055,0.1215,0.636,0
0.39,0.105,0.525,2.0,0.16,0.2875,0.1075,0.567,0
0.405,0.13,0.53,2.0,0.19,0.2945,0.1395,0.6615,0
0.42,0.13,0.53,2.0,0.198,0.296,0.1245,0.658,0
0.415,0.135,0.535,0.0,0.2365,0.3165,0.169,0.78,0
0.41,0.13,0.535,2.0,0.1975,0.268,0.1225,0.6075,0
0.41,0.135,0.54,2.0,0.2,0.31,0.177,0.7025,0
0.425,0.155,0.55,2.0,0.2425,0.412,0.187,0.8725,1
0.45,0.175,0.565,1.0,0.308,0.5305,0.2455,1.2365,1
0.47,0.155,0.57,0.0,0.277,0.6355,0.2315,1.186,1
0.42,0.13,0.57,2.0,0.2365,0.3535,0.1505,0.7745,0
0.42,0.16,0.57,1.0,0.223,0.4315,0.1915,0.8875,0
0.455,0.155,0.575,2.0,0.285,0.349,0.2095,0.8725,0
0.44,0.125,0.575,2.0,0.1965,0.4555,0.1715,0.8515,0
0.475,0.16,0.575,1.0,0.271,0.3605,0.221,0.895,0
0.45,0.155,0.575,0.0,0.2575,0.3605,0.211,0.886,0
0.46,0.14,0.58,2.0,0.27,0.4135,0.1845,0.9265,1
0.46,0.14,0.58,2.0,0.238,0.3915,0.165,0.8295,1
0.47,0.15,0.58,2.0,0.2445,0.444,0.1855,0.907,1
0.47,0.165,0.58,0.0,0.279,0.54,0.166,1.041,0
0.465,0.165,0.585,1.0,0.259,0.4035,0.2275,0.9355,0
0.46,0.165,0.585,1.0,0.294,0.486,0.25,1.058,0
0.465,0.145,0.595,1.0,0.2425,0.3425,0.1795,0.7955,1
0.47,0.17,0.6,1.0,0.3205,0.4995,0.2245,1.0805,0
0.47,0.15,0.6,0.0,0.275,0.4225,0.183,0.928,0
0.475,0.155,0.6,1.0,0.39,0.441,0.19,1.059,1
0.475,0.23,0.6,0.0,0.36,0.522,0.2235,1.157,1
0.475,0.17,0.6,1.0,0.31,0.4905,0.2475,1.088,1
0.485,0.145,0.6,1.0,0.239,0.3545,0.1585,0.776,0
0.48,0.165,0.62,1.0,0.31,0.4835,0.221,1.043,1
0.48,0.16,0.625,0.0,0.29,0.5795,0.2145,1.1415,0
0.475,0.16,0.625,1.0,0.319,0.605,0.2875,1.3335,1
0.5,0.175,0.625,1.0,0.374,0.564,0.302,1.273,0
0.49,0.165,0.625,0.0,0.39,0.517,0.2375,1.1835,1
0.485,0.16,0.625,0.0,0.302,0.631,0.2235,1.2135,0
0.465,0.15,0.63,2.0,0.325,0.4265,0.24,1.0315,1
0.495,0.17,0.635,0.0,0.365,0.657,0.3055,1.3695,1
0.515,0.185,0.65,0.0,0.369,0.75,0.1805,1.3745,1
0.515,0.18,0.65,0.0,0.4115,0.658,0.3135,1.463,1
0.52,0.195,0.65,1.0,0.432,0.689,0.3905,1.6275,1
0.475,0.165,0.65,1.0,0.3095,0.58,0.3485,1.3875,0
0.525,0.16,0.655,0.0,0.405,0.686,0.311,1.46,1
0.53,0.165,0.655,1.0,0.4,0.583,0.1255,1.2835,0
0.5,0.155,0.66,1.0,0.335,0.6485,0.288,1.3765,1
0.515,0.2,0.66,0.0,0.401,0.749,0.422,1.6465,1
0.515,0.145,0.675,0.0,0.325,0.6025,0.299,1.265,1
0.53,0.17,0.685,0.0,0.465,0.647,0.383,1.56,1
0.52,0.18,0.715,0.0,0.445,0.708,0.3525,1.6,1
0.555,0.22,0.735,0.0,0.6195,1.2395,0.3645,2.333,1
0.125,0.04,0.175,2.0,0.009,0.0095,0.008,0.028,0
0.285,0.095,0.37,2.0,0.0675,0.1135,0.0515,0.226,0
0.3,0.09,0.395,2.0,0.077,0.1385,0.0625,0.2855,0
0.325,0.11,0.42,2.0,0.1025,0.1245,0.0755,0.325,0
0.37,0.11,0.455,2.0,0.126,0.2385,0.1235,0.514,0
0.375,0.115,0.495,2.0,0.1395,0.31,0.1145,0.5755,0
0.375,0.11,0.51,1.0,0.148,0.2865,0.118,0.5805,0
0.39,0.14,0.515,0.0,0.119,0.341,0.1325,0.678,0
0.43,0.155,0.545,0.0,0.228,0.409,0.144,0.8035,0
0.405,0.12,0.555,1.0,0.2065,0.4585,0.196,0.913,0
0.45,0.16,0.58,0.0,0.215,0.3935,0.221,0.8675,0
0.465,0.17,0.59,1.0,0.27,0.4635,0.24,1.0425,1
0.46,0.18,0.6,0.0,0.365,0.423,0.2575,1.14,1
0.49,0.17,0.61,1.0,0.3045,0.7045,0.25,1.3475,1
0.475,0.155,0.615,0.0,0.31,0.4375,0.2585,1.0735,1
0.475,0.19,0.615,0.0,0.3285,0.7315,0.305,1.4335,0
0.495,0.2,0.615,0.0,0.371,0.5795,0.3115,1.304,1
0.46,0.16,0.62,0.0,0.228,0.4915,0.2,0.9505,0
0.515,0.17,0.63,0.0,0.38,0.6355,0.2955,1.385,1
0.5,0.17,0.64,1.0,0.32,0.4955,0.2645,1.12,1
0.5,0.17,0.64,1.0,0.315,0.565,0.3375,1.2645,0
0.455,0.17,0.655,1.0,0.333,0.583,0.303,1.275,0
0.505,0.165,0.655,0.0,0.335,0.6035,0.262,1.27,1
0.53,0.175,0.66,0.0,0.405,0.7395,0.3505,1.583,1
0.5,0.175,0.665,1.0,0.37,0.643,0.345,1.4355,0
0.525,0.195,0.67,1.0,0.3905,0.573,0.368,1.42,1
0.53,0.19,0.69,0.0,0.48,0.678,0.331,1.5955,1
0.525,0.2,0.715,0.0,0.4305,0.95,0.436,1.89,1
0.565,0.225,0.735,1.0,0.5675,0.87,0.5145,2.037,1
0.205,0.05,0.27,2.0,0.029,0.03,0.0185,0.084,0
0.225,0.07,0.285,2.0,0.035,0.0425,0.0185,0.1005,0
0.22,0.085,0.295,2.0,0.0365,0.0585,0.027,0.1285,0
0.225,0.075,0.3,2.0,0.044,0.057,0.028,0.1345,0
0.22,0.065,0.3,2.0,0.035,0.052,0.0155,0.1195,0
0.265,0.085,0.36,2.0,0.055,0.0725,0.0515,0.1895,0
0.275,0.095,0.37,2.0,0.0825,0.1015,0.055,0.257,0
0.29,0.09,0.39,2.0,0.078,0.135,0.0455,0.2745,0
0.325,0.1,0.435,2.0,0.105,0.1335,0.0835,0.342,0
0.34,0.105,0.44,2.0,0.125,0.123,0.081,0.344,0
0.32,0.095,0.44,2.0,0.1,0.1495,0.059,0.3275,0
0.345,0.12,0.445,2.0,0.13,0.169,0.0825,0.4035,0
0.37,0.115,0.465,2.0,0.1455,0.1515,0.0935,0.4075,0
0.355,0.12,0.465,2.0,0.14,0.2375,0.099,0.4975,0
0.345,0.12,0.47,2.0,0.125,0.1525,0.0615,0.3685,0
0.365,0.105,0.475,2.0,0.127,0.1645,0.099,0.4175,0
0.335,0.1,0.475,2.0,0.135,0.1895,0.086,0.4425,0
0.35,0.125,0.475,2.0,0.1355,0.1905,0.079,0.4225,0
0.365,0.125,0.485,2.0,0.151,0.163,0.0965,0.426,0
0.39,0.12,0.49,2.0,0.1745,0.2205,0.103,0.511,0
0.405,0.13,0.515,2.0,0.195,0.213,0.134,0.573,0
0.415,0.14,0.52,2.0,0.171,0.2945,0.1405,0.6385,0
0.405,0.125,0.525,2.0,0.168,0.2985,0.1505,0.657,1
0.425,0.14,0.525,1.0,0.2225,0.4205,0.182,0.8735,1
0.425,0.13,0.53,2.0,0.215,0.3905,0.2005,0.781,0
0.42,0.14,0.53,2.0,0.208,0.256,0.1855,0.6765,0
0.41,0.125,0.53,0.0,0.215,0.346,0.173,0.769,0
0.395,0.125,0.53,2.0,0.195,0.2975,0.108,0.6235,1
0.405,0.14,0.535,0.0,0.19,0.336,0.156,0.7315,0
0.45,0.155,0.535,2.0,0.2595,0.3655,0.148,0.8075,1
0.41,0.14,0.545,0.0,0.212,0.349,0.15,0.737,0
0.41,0.125,0.545,1.0,0.205,0.2945,0.1315,0.654,1
0.415,0.15,0.55,2.0,0.236,0.3535,0.176,0.7915,1
0.45,0.14,0.55,2.0,0.24,0.3445,0.1325,0.753,0
0.4,0.135,0.55,2.0,0.221,0.3315,0.1495,0.717,0
0.43,0.15,0.555,2.0,0.247,0.345,0.1755,0.783,0
0.45,0.145,0.575,2.0,0.217,0.4675,0.18,0.872,0
0.44,0.15,0.575,2.0,0.239,0.486,0.215,0.983,0
0.42,0.155,0.585,1.0,0.32,0.437,0.2225,1.034,1
0.465,0.145,0.585,1.0,0.2845,0.4325,0.2145,0.9855,1
0.46,0.14,0.585,2.0,0.265,0.326,0.153,0.7635,0
0.465,0.135,0.59,0.0,0.28,0.4235,0.199,0.9895,0
0.47,0.135,0.595,2.0,0.287,0.434,0.184,0.9365,1
0.44,0.135,0.595,1.0,0.2575,0.5005,0.1715,0.964,1
0.46,0.155,0.595,1.0,0.3085,0.4565,0.24,1.0455,1
0.45,0.165,0.595,1.0,0.279,0.49,0.2525,1.081,1
0.47,0.16,0.6,0.0,0.305,0.441,0.2015,1.012,1
0.5,0.16,0.6,1.0,0.309,0.5095,0.256,1.122,1
0.49,0.165,0.605,0.0,0.3555,0.492,0.222,1.1245,1
0.49,0.15,0.605,1.0,0.35,0.4305,0.2525,1.1345,1
0.45,0.19,0.61,0.0,0.2935,0.517,0.2495,1.0805,1
0.495,0.165,0.61,1.0,0.317,0.4525,0.273,1.0835,0
0.47,0.175,0.615,0.0,0.317,0.5675,0.287,1.242,1
0.5,0.18,0.62,0.0,0.332,0.726,0.2795,1.3915,1
0.525,0.155,0.62,0.0,0.35,0.454,0.1965,1.085,1
0.47,0.155,0.62,2.0,0.284,0.447,0.171,0.966,1
0.48,0.165,0.62,0.0,0.305,0.481,0.2575,1.0855,1
0.485,0.135,0.625,1.0,0.3605,0.61,0.2675,1.3025,1
0.485,0.16,0.625,2.0,0.3315,0.5255,0.257,1.15,1
0.49,0.17,0.63,2.0,0.31,0.5515,0.212,1.217,1
0.505,0.195,0.63,1.0,0.375,0.516,0.3305,1.306,0
0.5,0.175,0.64,0.0,0.405,0.5065,0.2925,1.273,1
0.51,0.19,0.645,0.0,0.425,0.6445,0.296,1.4865,1
0.52,0.17,0.65,0.0,0.36,0.6155,0.2885,1.3655,1
0.495,0.17,0.65,0.0,0.399,0.6215,0.2305,1.276,1
0.495,0.16,0.65,0.0,0.32,0.55,0.2695,1.2075,1
0.52,0.195,0.65,1.0,0.3825,0.5985,0.246,1.281,1
0.525,0.205,0.65,0.0,0.4355,0.69,0.306,1.4275,1
0.51,0.175,0.65,0.0,0.385,0.4955,0.2025,1.155,1
0.51,0.175,0.65,1.0,0.3885,0.575,0.3155,1.35,1
0.525,0.19,0.65,0.0,0.4,0.5975,0.296,1.3685,1
0.53,0.17,0.66,1.0,0.398,0.622,0.309,1.431,1
0.51,0.18,0.66,0.0,0.339,0.5,0.2335,1.261,1
0.54,0.195,0.665,1.0,0.47,0.8505,0.3615,1.764,1
0.51,0.155,0.67,1.0,0.358,0.5605,0.3045,1.278,1
0.54,0.195,0.67,0.0,0.3315,0.532,0.2735,1.217,1
0.54,0.2,0.67,1.0,0.4165,0.6435,0.328,1.46,0
0.535,0.185,0.675,1.0,0.4,0.7035,0.402,1.5575,1
0.51,0.17,0.675,0.0,0.341,0.809,0.318,1.527,1
0.53,0.195,0.675,1.0,0.425,0.62,0.375,1.4985,0
0.55,0.19,0.685,0.0,0.4895,0.89,0.41,1.885,1
0.535,0.175,0.685,0.0,0.46,0.637,0.247,1.432,1
0.55,0.21,0.705,0.0,0.462,0.655,0.3255,1.4385,1
0.53,0.17,0.705,1.0,0.44,0.612,0.394,1.564,1
0.555,0.175,0.71,0.0,0.434,1.2455,0.3725,2.14,1
0.56,0.185,0.725,1.0,0.435,0.873,0.367,1.792,1
0.6,0.21,0.78,0.0,0.6745,1.1945,0.5745,2.548,1
0.13,0.075,0.235,2.0,0.0465,0.0685,0.037,0.1585,0
0.25,0.1,0.35,2.0,0.1255,0.1725,0.063,0.4015,0
0.25,0.115,0.36,2.0,0.128,0.21,0.1055,0.465,0
0.28,0.095,0.38,2.0,0.067,0.165,0.0435,0.2885,0
0.32,0.115,0.38,1.0,0.164,0.323,0.1325,0.6475,0
0.31,0.13,0.43,0.0,0.184,0.2735,0.163,0.6485,0
0.36,0.105,0.465,2.0,0.1035,0.22,0.159,0.452,0
0.355,0.12,0.47,2.0,0.1325,0.1765,0.1125,0.4915,0
0.365,0.15,0.485,1.0,0.273,0.4145,0.199,0.9145,0
0.375,0.155,0.495,0.0,0.2475,0.45,0.2285,0.976,0
0.395,0.145,0.5,2.0,0.2455,0.332,0.1815,0.7865,0
0.4,0.15,0.505,0.0,0.185,0.3445,0.157,0.775,0
0.375,0.15,0.51,2.0,0.255,0.3845,0.156,0.8415,1
0.38,0.135,0.51,0.0,0.17,0.3435,0.142,0.681,0
0.37,0.115,0.515,0.0,0.146,0.3415,0.155,0.6145,0
0.415,0.18,0.55,1.0,0.311,0.502,0.301,1.1655,0
0.42,0.19,0.575,1.0,0.4095,0.914,0.377,1.764,1
0.455,0.16,0.605,0.0,0.271,0.533,0.273,1.1215,1
0.505,0.165,0.615,0.0,0.345,0.4895,0.2955,1.167,1
0.475,0.15,0.615,0.0,0.283,0.476,0.2325,1.0375,0
0.48,0.18,0.625,0.0,0.3375,0.565,0.2975,1.223,1
0.47,0.15,0.625,0.0,0.287,0.556,0.2315,1.124,0
0.505,0.17,0.635,1.0,0.355,0.512,0.322,1.2635,0
0.525,0.165,0.65,1.0,0.3005,0.647,0.2485,1.238,0
0.5,0.17,0.65,1.0,0.3235,0.694,0.318,1.4045,1
0.525,0.195,0.67,1.0,0.407,0.6065,0.2955,1.37,1
0.525,0.205,0.695,1.0,0.4525,0.819,0.4025,1.8185,1
0.555,0.195,0.705,1.0,0.516,0.7105,0.4215,1.7525,1
0.205,0.065,0.275,2.0,0.034,0.041,0.021,0.101,0
0.205,0.07,0.285,2.0,0.034,0.039,0.0285,0.106,0
0.265,0.085,0.36,2.0,0.0615,0.0675,0.037,0.1865,0
0.29,0.1,0.385,2.0,0.086,0.1,0.061,0.2575,0
0.315,0.1,0.4,2.0,0.091,0.143,0.0735,0.3225,0
0.33,0.095,0.43,2.0,0.123,0.118,0.065,0.32,0
0.375,0.11,0.435,2.0,0.145,0.17,0.076,0.4155,0
0.335,0.115,0.45,2.0,0.11,0.195,0.071,0.3935,0
0.355,0.135,0.475,2.0,0.1435,0.2145,0.09,0.4775,0
0.36,0.11,0.475,2.0,0.13,0.191,0.099,0.452,0
0.37,0.14,0.485,2.0,0.1465,0.2425,0.088,0.5065,0
0.395,0.105,0.51,2.0,0.165,0.234,0.127,0.5525,0
0.39,0.12,0.515,2.0,0.179,0.235,0.135,0.565,0
0.41,0.14,0.52,2.0,0.1945,0.3395,0.129,0.699,1
0.4,0.14,0.525,2.0,0.21,0.2605,0.108,0.6055,0
0.425,0.155,0.53,0.0,0.2595,0.307,0.171,0.7905,0
0.425,0.13,0.53,0.0,0.22,0.2975,0.1395,0.702,0
0.42,0.135,0.53,0.0,0.1825,0.294,0.156,0.675,1
0.395,0.115,0.53,2.0,0.148,0.2025,0.101,0.475,0
0.41,0.15,0.53,2.0,0.1895,0.2435,0.1525,0.612,1
0.4,0.145,0.535,2.0,0.22,0.3065,0.1365,0.705,1
0.45,0.135,0.535,2.0,0.265,0.2845,0.1845,0.728,0
0.44,0.14,0.555,1.0,0.2735,0.346,0.1715,0.846,1
0.46,0.16,0.555,0.0,0.275,0.3345,0.1935,0.86,1
0.465,0.145,0.56,0.0,0.2695,0.3345,0.22,0.8875,0
0.43,0.145,0.56,1.0,0.245,0.3895,0.2325,0.898,0
0.43,0.125,0.565,2.0,0.21,0.2815,0.139,0.6545,0
0.45,0.145,0.575,2.0,0.26,0.364,0.1505,0.795,1
0.465,0.12,0.575,0.0,0.235,0.516,0.2185,1.0535,0
0.46,0.15,0.575,1.0,0.2985,0.333,0.207,0.927,0
0.42,0.14,0.58,2.0,0.2255,0.3285,0.102,0.701,0
0.45,0.155,0.58,0.0,0.2445,0.321,0.1975,0.8275,0
0.42,0.155,0.585,1.0,0.2875,0.442,0.2155,0.9845,1
0.47,0.145,0.585,0.0,0.265,0.4025,0.2365,0.9565,0
0.45,0.125,0.59,2.0,0.245,0.437,0.1515,0.86,0
0.48,0.185,0.595,0.0,0.314,0.526,0.2975,1.1785,1
0.48,0.185,0.615,0.0,0.33,0.4985,0.315,1.2205,1
0.455,0.13,0.615,0.0,0.2655,0.49,0.182,0.9685,1
0.5,0.175,0.62,1.0,0.343,0.4895,0.24,1.107,1
0.48,0.18,0.62,2.0,0.306,0.5285,0.2655,1.1305,1
0.48,0.155,0.62,0.0,0.3175,0.527,0.374,1.2555,1
0.495,0.155,0.625,0.0,0.345,0.5055,0.278,1.177,0
0.5,0.185,0.625,0.0,0.335,0.5995,0.248,1.2425,1
0.49,0.16,0.63,0.0,0.354,0.407,0.224,1.09,1
0.475,0.15,0.63,1.0,0.315,0.433,0.2975,1.072,0
0.51,0.155,0.645,1.0,0.342,0.5015,0.24,1.129,1
0.505,0.175,0.65,1.0,0.39,0.5105,0.262,1.2075,1
0.495,0.175,0.65,1.0,0.37,0.528,0.258,1.227,1
0.52,0.175,0.655,1.0,0.45,0.6275,0.27,1.472,1
0.525,0.18,0.665,1.0,0.456,0.678,0.229,1.5785,1
0.52,0.175,0.67,0.0,0.374,0.6275,0.379,1.4755,1
0.54,0.175,0.675,0.0,0.512,0.6645,0.278,1.5545,1
0.54,0.21,0.675,1.0,0.45,0.686,0.318,1.593,1
0.58,0.2,0.695,0.0,0.5295,0.675,0.478,1.8995,1
0.535,0.175,0.695,1.0,0.465,0.5465,0.2815,1.361,1
0.56,0.17,0.705,1.0,0.44,0.607,0.318,1.4575,1
0.58,0.205,0.74,0.0,0.488,0.8155,0.4695,2.381,1
0.155,0.045,0.205,2.0,0.014,0.0235,0.011,0.0495,0
0.23,0.075,0.305,2.0,0.05,0.0595,0.0305,0.1455,0
0.23,0.06,0.32,2.0,0.0355,0.0615,0.0275,0.129,0
0.27,0.1,0.355,2.0,0.064,0.11,0.042,0.2255,0
0.305,0.11,0.425,0.0,0.0975,0.173,0.0875,0.359,0
0.31,0.095,0.425,2.0,0.1,0.1645,0.071,0.3505,0
0.365,0.115,0.45,1.0,0.1325,0.318,0.121,0.5885,0
0.385,0.13,0.515,0.0,0.175,0.2855,0.1285,0.623,1
0.375,0.135,0.52,1.0,0.17,0.221,0.117,0.5375,0
0.4,0.125,0.525,2.0,0.175,0.2435,0.119,0.5655,0
0.445,0.13,0.555,0.0,0.24,0.4225,0.155,0.8625,0
0.49,0.17,0.61,1.0,0.344,0.4605,0.2825,1.137,1
0.26,0.095,0.35,2.0,0.07,0.0985,0.043,0.221,0
0.275,0.095,0.38,2.0,0.21,0.106,0.0485,0.2425,0
0.34,0.1,0.46,2.0,0.0965,0.1805,0.0875,0.386,0
0.355,0.12,0.465,0.0,0.1395,0.2725,0.097,0.5315,0
0.385,0.12,0.475,0.0,0.153,0.289,0.0905,0.562,0
0.445,0.14,0.565,0.0,0.2245,0.406,0.1605,0.836,0
0.45,0.14,0.57,0.0,0.2515,0.477,0.1605,0.9275,0
0.44,0.145,0.57,0.0,0.2735,0.3605,0.1955,0.8815,1
0.46,0.155,0.595,0.0,0.3305,0.4275,0.207,1.03,1
0.48,0.175,0.605,1.0,0.356,0.4815,0.2305,1.1685,0
0.455,0.135,0.615,1.0,0.274,0.4735,0.263,1.059,0
0.46,0.17,0.62,0.0,0.296,0.535,0.2635,1.127,0
0.47,0.17,0.625,0.0,0.3945,0.4605,0.2565,1.1665,1
0.52,0.185,0.68,1.0,0.4575,0.5985,0.395,1.541,1
0.54,0.195,0.68,0.0,0.4285,0.5565,0.3235,1.7825,1
0.52,0.175,0.68,0.0,0.374,0.7525,0.351,1.543,1
0.555,0.17,0.71,1.0,0.431,0.5375,0.38,1.47,1
0.385,0.12,0.5,0.0,0.235,0.2305,0.125,0.6335,1
0.42,0.175,0.545,1.0,0.275,0.256,0.1775,0.754,1
0.365,0.115,0.46,1.0,0.17,0.165,0.083,0.4485,1
0.41,0.15,0.535,0.0,0.24,0.345,0.187,0.8105,1
0.26,0.075,0.335,0.0,0.085,0.0855,0.04,0.22,0
0.35,0.1,0.425,1.0,0.175,0.175,0.0755,0.4425,0
0.325,0.1,0.41,0.0,0.105,0.146,0.072,0.3555,0
0.105,0.035,0.17,2.0,0.005,0.012,0.0085,0.034,0
0.25,0.095,0.335,2.0,0.055,0.0795,0.0495,0.185,0
0.425,0.125,0.52,0.0,0.19,0.372,0.205,0.79,0
0.41,0.145,0.53,1.0,0.245,0.375,0.204,0.8255,0
0.42,0.125,0.5,0.0,0.205,0.255,0.15,0.62,1
0.475,0.145,0.615,1.0,0.32,0.3915,0.195,0.9525,0
0.45,0.16,0.575,0.0,0.27,0.44,0.1685,0.955,1
0.45,0.155,0.57,0.0,0.355,0.326,0.1895,0.91,1
0.35,0.105,0.455,0.0,0.145,0.1625,0.097,0.416,1
0.275,0.085,0.37,2.0,0.08,0.096,0.056,0.2045,0
0.37,0.125,0.445,0.0,0.159,0.2495,0.087,0.515,0
0.535,0.22,0.675,1.0,0.453,0.6175,0.4255,1.604,1
0.3,0.115,0.385,0.0,0.1025,0.1645,0.085,0.3435,0
0.295,0.11,0.375,1.0,0.1035,0.1255,0.0575,0.3005,0
0.44,0.13,0.56,0.0,0.285,0.2425,0.202,0.8255,1
0.41,0.15,0.55,0.0,0.275,0.282,0.186,0.785,1
0.465,0.155,0.57,1.0,0.255,0.446,0.261,0.9685,0
0.4,0.155,0.485,1.0,0.255,0.236,0.183,0.731,1
0.335,0.115,0.41,0.0,0.135,0.19,0.085,0.4405,0
0.255,0.085,0.335,2.0,0.055,0.071,0.0405,0.1785,0
0.515,0.2,0.655,0.0,0.49,0.443,0.3375,1.373,1
0.45,0.165,0.565,1.0,0.37,0.322,0.244,0.9765,1
0.44,0.19,0.57,1.0,0.265,0.447,0.207,1.018,0
0.465,0.15,0.55,1.0,0.19,0.3575,0.194,1.082,1
0.475,0.175,0.63,1.0,0.49,0.4155,0.3385,1.423,1
0.37,0.125,0.475,0.0,0.185,0.266,0.1725,0.655,1
0.5,0.18,0.655,1.0,0.445,0.508,0.314,1.4155,1
0.235,0.065,0.32,2.0,0.05,0.058,0.0225,0.1385,0
0.395,0.165,0.525,0.0,0.285,0.285,0.1405,0.782,1
0.43,0.165,0.525,1.0,0.195,0.289,0.1745,0.717,1
0.39,0.13,0.5,1.0,0.195,0.2505,0.1635,0.6355,1
0.34,0.135,0.44,1.0,0.135,0.1505,0.0945,0.3975,0
0.385,0.16,0.49,1.0,0.205,0.2455,0.171,0.656,0
0.44,0.165,0.545,0.0,0.25,0.2875,0.204,0.744,1
0.36,0.11,0.45,1.0,0.13,0.203,0.082,0.447,1
0.4,0.115,0.515,1.0,0.17,0.191,0.1445,0.578,0
0.25,0.075,0.33,2.0,0.05,0.056,0.035,0.1405,0
0.41,0.15,0.525,1.0,0.25,0.274,0.151,0.708,1
0.225,0.09,0.295,0.0,0.05,0.048,0.046,0.1385,0
0.45,0.16,0.545,0.0,0.365,0.2925,0.1545,0.8615,1
0.5,0.225,0.645,1.0,0.41,0.587,0.4055,1.626,1
0.355,0.115,0.45,0.0,0.155,0.18,0.1185,0.478,1
0.49,0.17,0.61,1.0,0.295,0.5655,0.2385,1.1775,1
0.3,0.1,0.38,2.0,0.09,0.1305,0.056,0.286,0
0.455,0.13,0.565,1.0,0.3,0.439,0.2645,1.058,1
0.545,0.16,0.67,1.0,0.495,0.5985,0.2565,1.5415,1
0.425,0.12,0.54,0.0,0.195,0.2945,0.153,0.817,1
0.225,0.075,0.29,2.0,0.045,0.071,0.059,0.152,0
0.33,0.105,0.41,2.0,0.11,0.1525,0.074,0.335,0
0.375,0.12,0.46,1.0,0.17,0.2205,0.088,0.4915,0
0.44,0.155,0.56,1.0,0.255,0.4315,0.263,0.9705,0
0.45,0.1,0.575,1.0,0.235,0.431,0.222,0.9315,1
0.5,0.2,0.62,0.0,0.43,0.4605,0.263,1.221,1
0.4,0.14,0.515,0.0,0.185,0.2955,0.184,0.7365,1
0.46,0.18,0.56,1.0,0.355,0.342,0.196,0.97,1
0.4,0.15,0.5,1.0,0.295,0.273,0.112,0.8085,1
0.355,0.125,0.435,2.0,0.165,0.1535,0.074,0.4075,0
0.38,0.135,0.495,0.0,0.215,0.263,0.1425,0.6295,1
0.5,0.18,0.595,1.0,0.39,0.4405,0.192,1.053,1
0.575,0.19,0.76,0.0,0.56,0.7035,0.386,1.829,1
0.5,0.165,0.615,1.0,0.345,0.488,0.244,1.1765,1
0.46,0.15,0.565,1.0,0.275,0.3455,0.1925,0.8765,1
0.105,0.035,0.14,2.0,0.005,0.005,0.0035,0.0145,0
0.345,0.14,0.445,0.0,0.1085,0.2055,0.1015,0.476,1
0.43,0.125,0.525,1.0,0.1775,0.3315,0.166,0.813,1
0.12,0.02,0.16,2.0,0.005,0.0075,0.0045,0.018,0
0.48,0.235,0.635,0.0,0.36,0.413,0.228,1.064,1
0.47,0.165,0.575,0.0,0.35,0.292,0.179,0.853,1
0.27,0.095,0.38,0.0,0.07,0.0835,0.0515,0.219,0
0.18,0.065,0.245,0.0,0.02,0.0245,0.0135,0.0635,0
0.39,0.15,0.48,2.0,0.185,0.276,0.134,0.6275,1
0.365,0.135,0.455,2.0,0.145,0.1515,0.1165,0.441,0
0.375,0.125,0.455,1.0,0.12,0.1985,0.111,0.458,1
0.355,0.135,0.455,0.0,0.168,0.1865,0.0935,0.4745,1
0.27,0.1,0.355,2.0,0.075,0.083,0.037,0.216,1
0.405,0.14,0.52,2.0,0.205,0.2865,0.146,0.6765,1
0.4,0.145,0.54,2.0,0.215,0.315,0.181,0.757,1
0.39,0.14,0.52,2.0,0.26,0.2415,0.144,0.7325,1
0.445,0.165,0.56,2.0,0.275,0.4535,0.253,1.0285,1
0.41,0.16,0.52,1.0,0.225,0.2845,0.153,0.712,1
0.46,0.19,0.615,2.0,0.33,0.4335,0.226,1.066,1
0.49,0.19,0.645,1.0,0.345,0.479,0.3565,1.3065,1
0.43,0.135,0.565,2.0,0.275,0.321,0.1775,0.8545,1
0.23,0.085,0.295,0.0,0.043,0.042,0.0285,0.125,0
0.28,0.095,0.375,0.0,0.08,0.0875,0.043,0.2225,1
0.4,0.14,0.525,2.0,0.253,0.2405,0.16,0.6955,1
0.28,0.08,0.395,0.0,0.09,0.0995,0.066,0.266,1
0.4,0.165,0.5,1.0,0.225,0.27,0.1455,0.7105,1
0.35,0.115,0.47,1.0,0.155,0.1955,0.127,0.487,0
0.42,0.16,0.58,2.0,0.19,0.2725,0.19,0.728,1
0.38,0.155,0.5,2.0,0.18,0.2745,0.156,0.6675,1
0.55,0.22,0.725,2.0,0.655,0.7735,0.4405,2.0495,1
0.515,0.215,0.65,1.0,0.425,0.564,0.323,1.498,1
0.535,0.185,0.67,1.0,0.47,0.6275,0.35,1.597,1
0.44,0.165,0.55,2.0,0.3,0.312,0.169,0.8605,1
0.37,0.115,0.49,1.0,0.185,0.171,0.1175,0.541,1
0.18,0.06,0.235,2.0,0.018,0.022,0.0145,0.058,0
0.175,0.08,0.235,2.0,0.0215,0.0215,0.0175,0.0645,0
0.41,0.115,0.52,0.0,0.26,0.263,0.157,0.77,1
0.4,0.115,0.475,1.0,0.21,0.186,0.1025,0.541,1
0.425,0.11,0.53,0.0,0.295,0.237,0.161,0.739,1
0.275,0.065,0.35,1.0,0.07,0.0745,0.0465,0.205,1
0.42,0.145,0.555,0.0,0.25,0.3075,0.2575,0.8695,1
0.39,0.105,0.505,0.0,0.19,0.2595,0.18,0.6555,1
0.44,0.16,0.54,1.0,0.355,0.391,0.2295,1.0905,1
0.4,0.115,0.525,1.0,0.18,0.2555,0.144,0.6295,1
0.45,0.175,0.55,0.0,0.4,0.3765,0.215,1.0985,1
0.44,0.16,0.55,0.0,0.375,0.348,0.168,0.991,1
0.175,0.065,0.235,2.0,0.019,0.0205,0.02,0.0615,0
0.41,0.165,0.525,0.0,0.25,0.2635,0.1985,0.8005,1
0.365,0.14,0.475,0.0,0.19,0.202,0.1445,0.6175,1
0.4,0.165,0.53,1.0,0.23,0.2855,0.1975,0.772,1
0.415,0.15,0.525,1.0,0.27,0.2355,0.171,0.7155,1
0.425,0.13,0.53,1.0,0.255,0.2115,0.166,0.717,1
0.39,0.11,0.465,1.0,0.225,0.1815,0.157,0.6355,1
0.235,0.08,0.315,2.0,0.047,0.08,0.045,0.18,0
0.355,0.12,0.465,2.0,0.184,0.255,0.0915,0.5805,0
0.385,0.105,0.485,0.0,0.133,0.296,0.104,0.556,0
0.385,0.12,0.49,2.0,0.1775,0.271,0.1125,0.591,0
0.395,0.14,0.515,1.0,0.22,0.281,0.1255,0.686,1
0.44,0.155,0.555,1.0,0.263,0.4935,0.1855,1.016,1
0.5,0.18,0.61,1.0,0.3345,0.5185,0.3735,1.438,0
0.55,0.19,0.68,1.0,0.515,0.8225,0.3655,1.807,1
0.55,0.195,0.69,0.0,0.4305,0.769,0.38,1.777,1
0.55,0.205,0.695,0.0,0.496,1.133,0.4665,2.173,1
0.575,0.195,0.72,1.0,0.585,1.0745,0.382,2.1505,1
0.205,0.075,0.27,2.0,0.0305,0.059,0.031,0.118,0
0.19,0.06,0.27,2.0,0.03,0.0445,0.017,0.099,0
0.22,0.07,0.295,2.0,0.035,0.0575,0.0295,0.1365,0
0.22,0.065,0.295,2.0,0.035,0.052,0.028,0.1295,0
0.23,0.07,0.315,2.0,0.045,0.0625,0.04,0.164,0
0.29,0.095,0.375,2.0,0.08,0.123,0.0605,0.2875,0
0.3,0.09,0.38,2.0,0.082,0.1655,0.0625,0.277,0
0.285,0.09,0.385,2.0,0.07,0.0935,0.066,0.248,0
0.295,0.095,0.4,2.0,0.066,0.1105,0.0575,0.252,0
0.315,0.12,0.415,0.0,0.097,0.199,0.087,0.4015,0
0.33,0.1,0.415,2.0,0.1025,0.1925,0.0755,0.3905,0
0.32,0.115,0.42,2.0,0.105,0.2055,0.0935,0.409,0
0.33,0.135,0.44,2.0,0.119,0.163,0.1005,0.4095,0
0.35,0.135,0.45,2.0,0.1405,0.2205,0.0945,0.494,0
0.35,0.12,0.475,2.0,0.135,0.2035,0.13,0.4905,0
0.39,0.12,0.485,0.0,0.169,0.251,0.1345,0.599,0
0.375,0.115,0.495,0.0,0.155,0.282,0.143,0.6245,0
0.41,0.115,0.525,1.0,0.18,0.416,0.163,0.7745,0
0.455,0.15,0.565,0.0,0.275,0.444,0.205,0.9795,0
0.435,0.15,0.58,2.0,0.2515,0.363,0.1925,0.8915,0
0.45,0.125,0.585,1.0,0.225,0.3545,0.2075,0.874,0
0.465,0.155,0.6,0.0,0.33,0.6245,0.2455,1.262,1
0.48,0.185,0.63,0.0,0.322,0.53,0.2555,1.21,1
0.525,0.17,0.645,1.0,0.34,0.6135,0.283,1.37,1
0.545,0.185,0.655,1.0,0.547,0.6865,0.313,1.759,1
0.515,0.165,0.665,0.0,0.3445,0.621,0.302,1.3855,0
0.52,0.195,0.67,1.0,0.5055,0.758,0.3735,1.8065,1
0.51,0.2,0.67,0.0,0.4505,0.6705,0.3845,1.5945,1
0.51,0.18,0.685,0.0,0.3725,0.6315,0.3105,1.4545,0
0.6,0.23,0.7,0.0,0.5755,0.8105,0.4045,2.003,1
0.6,0.235,0.72,0.0,0.621,0.984,0.411,2.2385,1
0.135,0.045,0.185,2.0,0.01,0.011,0.0065,0.032,0
0.175,0.055,0.245,2.0,0.02,0.04,0.018,0.0785,0
0.23,0.0,0.315,2.0,0.3505,0.0575,0.0285,0.134,0
0.27,0.09,0.36,2.0,0.062,0.098,0.039,0.2075,0
0.28,0.08,0.375,2.0,0.055,0.115,0.043,0.2235,0
0.31,0.095,0.415,2.0,0.083,0.181,0.057,0.34,0
0.35,0.135,0.455,2.0,0.1325,0.2855,0.0855,0.5365,0
0.35,0.105,0.48,2.0,0.135,0.352,0.127,0.635,0
0.375,0.125,0.485,2.0,0.1525,0.2505,0.1345,0.562,0
0.39,0.125,0.51,2.0,0.1555,0.293,0.1265,0.597,0
0.395,0.125,0.52,0.0,0.17,0.2565,0.1265,0.5815,1
0.43,0.14,0.555,1.0,0.2015,0.3525,0.1835,0.7545,0
0.465,0.15,0.585,0.0,0.247,0.4315,0.2545,0.98,0
0.46,0.15,0.585,1.0,0.2515,0.503,0.2105,1.0035,1
0.455,0.155,0.585,0.0,0.305,0.5515,0.223,1.133,1
0.49,0.16,0.61,0.0,0.265,0.597,0.246,1.146,0
0.475,0.15,0.61,0.0,0.245,0.62,0.237,1.142,0
0.53,0.17,0.615,0.0,0.286,0.5775,0.2095,1.12,0
0.465,0.14,0.62,1.0,0.255,0.479,0.2385,1.011,0
0.505,0.175,0.625,0.0,0.323,0.5425,0.2265,1.131,0
0.48,0.175,0.625,0.0,0.285,0.4865,0.259,1.065,1
0.48,0.145,0.635,0.0,0.225,0.665,0.229,1.181,1
0.525,0.175,0.64,1.0,0.37,0.646,0.3115,1.382,0
0.505,0.19,0.66,0.0,0.178,0.6775,0.285,1.4385,1
0.485,0.155,0.66,0.0,0.3,0.61,0.274,1.2275,0
0.515,0.155,0.66,0.0,0.335,0.7055,0.3555,1.4415,1
0.55,0.175,0.68,1.0,0.4295,0.713,0.282,1.473,1
0.58,0.195,0.69,1.0,0.4715,0.708,0.3615,1.658,1
0.545,0.195,0.72,0.0,0.4705,0.8215,0.383,1.7475,1
0.2,0.07,0.275,2.0,0.03,0.037,0.0225,0.096,0
0.245,0.065,0.33,2.0,0.0505,0.058,0.032,0.1445,0
0.26,0.085,0.33,2.0,0.055,0.0915,0.0425,0.1965,0
0.28,0.09,0.365,2.0,0.0605,0.0865,0.036,0.196,0
0.27,0.09,0.365,2.0,0.0655,0.1005,0.049,0.2155,0
0.31,0.1,0.42,2.0,0.0925,0.1125,0.0615,0.2805,0
0.335,0.11,0.435,2.0,0.0965,0.1355,0.0775,0.334,0
0.325,0.1,0.435,2.0,0.109,0.174,0.0725,0.366,0
0.325,0.11,0.44,2.0,0.1075,0.258,0.1195,0.4965,0
0.365,0.09,0.485,2.0,0.18,0.3165,0.132,0.651,0
0.385,0.125,0.495,2.0,0.172,0.2075,0.1155,0.5125,1
0.405,0.125,0.51,0.0,0.1805,0.327,0.155,0.6925,0
0.41,0.14,0.52,2.0,0.182,0.242,0.1375,0.5995,1
0.42,0.14,0.54,2.0,0.1985,0.3595,0.159,0.74,0
0.415,0.155,0.54,2.0,0.19,0.322,0.167,0.702,1
0.445,0.125,0.55,2.0,0.21,0.288,0.1365,0.672,1
0.44,0.155,0.56,2.0,0.235,0.3685,0.178,0.811,1
0.45,0.12,0.575,1.0,0.275,0.447,0.169,0.9585,1
0.45,0.15,0.575,2.0,0.215,0.449,0.166,0.858,1
0.46,0.165,0.575,1.0,0.236,0.4815,0.1945,0.9575,1
0.46,0.135,0.58,1.0,0.275,0.4025,0.208,0.926,0
0.425,0.155,0.58,1.0,0.239,0.3615,0.249,0.873,1
0.45,0.16,0.59,0.0,0.301,0.445,0.214,0.998,0
0.46,0.155,0.6,0.0,0.269,0.285,0.149,0.6655,1
0.485,0.145,0.62,0.0,0.28,0.4655,0.2195,1.003,1
0.495,0.16,0.625,1.0,0.35,0.6335,0.192,1.234,1
0.495,0.155,0.625,0.0,0.34,0.46,0.1945,1.025,0
0.495,0.175,0.625,0.0,0.355,0.5805,0.317,1.2935,0
0.5,0.175,0.625,0.0,0.305,0.4615,0.258,1.0565,1
0.47,0.145,0.625,0.0,0.3245,0.675,0.247,1.7855,1
0.485,0.165,0.625,1.0,0.36,0.5075,0.296,1.2255,1
0.5,0.18,0.635,1.0,0.35,0.539,0.292,1.2565,1
0.5,0.15,0.645,1.0,0.31,0.4675,0.3355,1.159,0
0.51,0.165,0.645,0.0,0.4545,0.5755,0.2515,1.403,1
0.535,0.185,0.69,1.0,0.499,0.797,0.409,1.826,1
0.56,0.185,0.695,1.0,0.437,0.8195,0.331,1.7715,1
0.39,0.12,0.515,0.0,0.1415,0.302,0.1365,0.6125,0
0.405,0.13,0.545,2.0,0.174,0.327,0.1445,0.658,0
0.465,0.145,0.62,0.0,0.278,0.375,0.2145,0.911,1
0.49,0.15,0.63,0.0,0.3,0.5845,0.257,1.1955,0
0.515,0.16,0.63,1.0,0.35,0.553,0.3205,1.336,1
0.49,0.18,0.64,1.0,0.305,0.653,0.347,1.36,0
0.275,0.08,0.37,2.0,0.072,0.093,0.056,0.2325,0
0.31,0.085,0.395,2.0,0.0935,0.153,0.0505,0.317,0
0.3,0.115,0.4,2.0,0.0935,0.1335,0.0725,0.318,0
0.305,0.1,0.41,2.0,0.085,0.1,0.0655,0.2645,0
0.335,0.105,0.455,2.0,0.1185,0.175,0.092,0.4055,0
0.335,0.125,0.48,2.0,0.145,0.246,0.1095,0.524,0
0.375,0.11,0.485,2.0,0.149,0.2015,0.09,0.464,0
0.36,0.12,0.5,2.0,0.1305,0.1875,0.1055,0.439,0
0.395,0.125,0.515,2.0,0.19,0.2365,0.1075,0.5805,0
0.4,0.14,0.52,2.0,0.169,0.278,0.1455,0.622,0
0.45,0.15,0.545,0.0,0.216,0.3795,0.1625,0.7805,0
0.43,0.14,0.545,2.0,0.2615,0.289,0.19,0.772,0
0.435,0.125,0.55,2.0,0.206,0.348,0.1585,0.741,0
0.43,0.18,0.55,0.0,0.225,0.4405,0.159,0.8265,1
0.385,0.13,0.55,0.0,0.19,0.343,0.1625,0.7275,0
0.43,0.125,0.555,2.0,0.2095,0.3395,0.1355,0.7005,0
0.45,0.145,0.56,0.0,0.2725,0.425,0.1645,0.9355,1
0.465,0.15,0.565,2.0,0.3095,0.581,0.2215,1.1815,0
0.445,0.16,0.57,0.0,0.3,0.516,0.164,1.0145,1
0.48,0.17,0.575,1.0,0.31,0.506,0.2485,1.1,1
0.51,0.16,0.585,0.0,0.3,0.639,0.241,1.218,1
0.45,0.155,0.59,0.0,0.24,0.369,0.2135,0.874,0
0.475,0.155,0.595,2.0,0.2755,0.4865,0.184,0.984,1
0.47,0.13,0.6,0.0,0.298,0.423,0.219,1.0105,0
0.365,0.155,0.61,0.0,0.27,0.488,0.249,1.0765,0
0.475,0.205,0.615,0.0,0.37,0.5995,0.2815,1.337,1
0.5,0.18,0.625,0.0,0.3705,0.645,0.303,1.3705,1
0.49,0.19,0.625,1.0,0.3855,0.7465,0.4105,1.7015,1
0.485,0.18,0.63,0.0,0.37,0.5175,0.308,1.2435,1
0.53,0.175,0.63,0.0,0.3555,0.667,0.2945,1.4135,1
0.485,0.155,0.635,1.0,0.35,0.467,0.1975,1.073,1
0.5,0.175,0.635,1.0,0.39,0.684,0.3005,1.477,1
0.5,0.18,0.635,0.0,0.37,0.594,0.2695,1.2915,0
0.495,0.16,0.65,1.0,0.355,0.577,0.3315,1.3105,0
0.525,0.18,0.67,0.0,0.381,0.728,0.343,1.4915,0
0.52,0.175,0.675,1.0,0.37,0.7365,0.3055,1.494,0
0.51,0.15,0.675,1.0,0.386,0.475,0.304,1.1965,1
0.545,0.185,0.68,0.0,0.48,0.7075,0.364,1.672,1
0.545,0.215,0.7,0.0,0.506,0.8825,0.4385,1.9125,1
0.545,0.175,0.71,1.0,0.475,0.8725,0.4565,1.907,1
0.565,0.18,0.715,1.0,0.5385,0.844,0.3535,1.79,0
0.59,0.205,0.72,1.0,0.48,0.7755,0.4225,1.7495,1
0.305,0.1,0.42,2.0,0.086,0.1645,0.0775,0.3415,0
0.35,0.1,0.48,2.0,0.126,0.2365,0.1275,0.519,0
0.365,0.13,0.48,0.0,0.139,0.2405,0.127,0.5305,0
0.41,0.155,0.51,0.0,0.3795,0.569,0.291,1.2825,0
0.4,0.14,0.515,2.0,0.1785,0.3495,0.1595,0.7165,0
0.42,0.18,0.56,1.0,0.4525,0.7755,0.35,1.6645,0
0.42,0.14,0.56,2.0,0.2,0.414,0.214,0.837,0
0.45,0.15,0.57,1.0,0.209,0.531,0.189,0.9645,0
0.465,0.155,0.605,1.0,0.2585,0.547,0.2665,1.1,1
0.48,0.16,0.625,0.0,0.2785,0.6575,0.2625,1.2415,0
0.505,0.175,0.64,1.0,0.3315,0.6185,0.302,1.3185,0
0.525,0.185,0.65,0.0,0.3865,0.586,0.278,1.3455,0
0.215,0.05,0.3,2.0,0.042,0.048,0.0225,0.1185,0
0.265,0.09,0.35,0.0,0.077,0.073,0.0365,0.197,0
0.35,0.13,0.455,2.0,0.15,0.215,0.0745,0.4725,0
0.365,0.11,0.46,2.0,0.15,0.1755,0.102,0.4495,0
0.375,0.115,0.49,2.0,0.1765,0.2275,0.1335,0.557,0
0.385,0.12,0.5,2.0,0.165,0.197,0.1305,0.516,0
0.415,0.135,0.54,2.0,0.185,0.3195,0.174,0.709,0
0.42,0.145,0.55,0.0,0.252,0.321,0.1485,0.7385,1
0.445,0.11,0.55,2.0,0.26,0.378,0.142,0.7935,1
0.435,0.145,0.555,0.0,0.255,0.404,0.2275,0.9205,0
0.425,0.14,0.57,2.0,0.24,0.331,0.14,0.7655,1
0.45,0.14,0.58,0.0,0.263,0.3465,0.1765,0.824,1
0.425,0.145,0.58,2.0,0.2575,0.379,0.1605,0.83,1
0.47,0.17,0.585,2.0,0.315,0.3695,0.2395,0.985,1
0.45,0.15,0.585,0.0,0.251,0.4055,0.283,0.997,1
0.455,0.14,0.595,1.0,0.271,0.3895,0.2225,0.914,0
0.5,0.17,0.6,1.0,0.335,0.4405,0.267,1.13,1
0.495,0.155,0.615,1.0,0.32,0.52,0.19,1.0805,0
0.505,0.155,0.63,0.0,0.325,0.492,0.226,1.105,1
0.49,0.155,0.63,0.0,0.335,0.535,0.29,1.229,1
0.495,0.175,0.635,1.0,0.347,0.5205,0.3085,1.2355,1
0.535,0.19,0.645,1.0,0.424,0.468,0.2385,1.2395,1
0.505,0.165,0.65,1.0,0.43,0.5725,0.281,1.357,1
0.525,0.18,0.655,0.0,0.365,0.624,0.2935,1.402,1
0.5,0.22,0.655,1.0,0.405,0.642,0.3255,1.359,1
0.535,0.19,0.67,0.0,0.508,0.7465,0.2935,1.669,1
0.525,0.2,0.67,0.0,0.657,0.6205,0.297,1.7405,1
0.53,0.21,0.695,0.0,0.385,0.664,0.4095,1.51,1
0.55,0.195,0.695,0.0,0.445,0.727,0.36,1.6645,1
0.605,0.175,0.77,0.0,0.355,0.8005,0.526,2.0505,1
0.215,0.07,0.28,2.0,0.03,0.063,0.0215,0.124,0
0.23,0.08,0.33,2.0,0.046,0.0565,0.0365,0.14,0
0.25,0.075,0.35,2.0,0.041,0.0835,0.0355,0.1695,0
0.28,0.09,0.37,2.0,0.0615,0.0995,0.0545,0.218,0
0.315,0.115,0.43,2.0,0.11,0.1885,0.0715,0.384,0
0.33,0.095,0.435,2.0,0.0885,0.219,0.075,0.393,0
0.35,0.11,0.44,2.0,0.115,0.1575,0.0895,0.3805,0
0.37,0.11,0.475,0.0,0.146,0.2185,0.107,0.4895,0
0.36,0.14,0.475,0.0,0.155,0.241,0.1045,0.5135,0
0.355,0.11,0.48,2.0,0.14,0.201,0.089,0.4495,0
0.44,0.135,0.56,1.0,0.259,0.35,0.1615,0.8025,0
0.475,0.165,0.585,1.0,0.3,0.458,0.217,1.053,1
0.455,0.17,0.585,1.0,0.2845,0.4255,0.263,0.9945,1
0.255,0.1,0.385,0.0,0.092,0.137,0.068,0.3175,0
0.31,0.085,0.39,2.0,0.079,0.181,0.0695,0.344,0
0.29,0.1,0.39,2.0,0.081,0.1255,0.0635,0.2845,0
0.3,0.085,0.405,2.0,0.088,0.15,0.0505,0.3035,0
0.365,0.115,0.475,2.0,0.156,0.232,0.0885,0.499,1
0.38,0.125,0.5,0.0,0.1535,0.269,0.1265,0.577,0
0.4,0.125,0.515,1.0,0.1765,0.2865,0.123,0.615,0
0.385,0.165,0.52,0.0,0.1815,0.375,0.18,0.791,1
0.43,0.13,0.55,0.0,0.2405,0.3155,0.1955,0.8395,1
0.43,0.155,0.56,0.0,0.229,0.4,0.172,0.8675,0
0.45,0.165,0.565,1.0,0.249,0.37,0.239,0.887,1
0.44,0.135,0.59,0.0,0.2605,0.439,0.2145,0.966,1
0.475,0.205,0.6,0.0,0.308,0.5255,0.2875,1.176,0
0.485,0.15,0.625,1.0,0.296,0.531,0.261,1.0945,1
0.555,0.195,0.71,0.0,0.495,0.9455,0.3765,1.9485,1

```
Page 13/16FirstPrevNextLast